:root {
  --navy: #0d203a;
  --teal: #6f9199;
  --soft-teal: #8ba9af;
  --gold: #b39156;
  --cream: #f7f3ee;
  --ivory: #fbfaf7;
  --sand: #e7ded3;
  --taupe: #c9b9a6;
  --ink: #16243a;
  --muted: #5f6268;
  --line: #ddd5cb;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  height: 106px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7vw;
  background: rgba(251, 250, 247, 0.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-mark {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.wordmark {
  font-size: 17px;
  letter-spacing: 8px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
}

.wordmark span {
  display: block;
  font-size: 13px;
  letter-spacing: 4px;
  text-align: center;
  margin-top: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 54px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}

.nav a {
  color: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: var(--navy);
  color: #ffffff;
  padding: 15px 32px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  min-width: 175px;
  transition: 0.25s ease;
}

.btn:hover {
  background: #163454;
}

.btn-light {
  background: #ffffff;
  color: var(--navy);
}

.section {
  padding: 78px 7vw;
  border-bottom: 1px solid var(--line);
}

.kicker {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 20px;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 1.05;
  color: var(--navy);
}

h1 {
  font-size: clamp(42px, 5.2vw, 76px);
}

h2 {
  font-size: clamp(34px, 3.5vw, 54px);
}

h3 {
  font-size: 30px;
}

em {
  color: var(--teal);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
}

.gold-line {
  width: 66px;
  height: 2px;
  background: var(--gold);
  margin: 28px 0 32px;
}

.hero {
  min-height: 625px;
  display: grid;
  grid-template-columns: 46% 54%;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, var(--ivory) 0%, #fbfaf7 45%, transparent 100%);
}

.hero-copy {
  padding: 120px 4vw 90px 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.hero-sub {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  font-weight: 600;
  line-height: 2.2;
  margin-bottom: 34px;
  color: var(--navy);
}

.hero-image,
.image-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background:
    linear-gradient(120deg, rgba(251, 250, 247, 0.18), rgba(251, 250, 247, 0.08)),
    url("https://images.unsplash.com/photo-1517842645767-c639042777db?auto=format&fit=crop&w=1600&q=85") center / cover;
}

.hero-image::after,
.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251, 250, 247, 0.45), transparent 45%);
}

.intro {
  text-align: center;
}

.intro h2 {
  font-size: clamp(30px, 3vw, 45px);
  margin-bottom: 18px;
}

.intro p {
  max-width: 620px;
  margin: 0 auto 58px;
  color: var(--muted);
  font-size: 15px;
}

.three-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}

.pillar {
  padding: 22px 54px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.pillar:last-child {
  border-right: 0;
}

.icon {
  font-size: 42px;
  color: var(--teal);
  margin-bottom: 24px;
  font-family: "Cormorant Garamond", serif;
}

.pillar h4,
.process-step h4 {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
}

.pillar p,
.process-step p {
  color: var(--muted);
  font-size: 13px;
}

.featured {
  display: grid;
  grid-template-columns: 28% 1fr;
  gap: 60px;
  align-items: center;
}

.featured-copy p {
  color: var(--muted);
  font-size: 14px;
  margin: 22px 0 30px;
}

.portfolio-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-img {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
}

.portfolio-img:nth-child(1) {
  background-image: url("https://images.unsplash.com/photo-1513519245088-0e12902e5a38?auto=format&fit=crop&w=900&q=85");
}

.portfolio-img:nth-child(2) {
  background-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=900&q=85");
}

.portfolio-img:nth-child(3) {
  background-image: url("https://images.unsplash.com/photo-1544717305-2782549b5136?auto=format&fit=crop&w=900&q=85");
}

.process {
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1180px;
  margin: 55px auto 0;
}

.process-step {
  padding: 0 32px;
  border-right: 1px solid var(--line);
}

.process-step:last-child {
  border-right: 0;
}

.testimonial {
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: stretch;
  padding: 0;
  background: var(--cream);
}

.quote-box {
  padding: 82px 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 70px;
  color: var(--teal);
  line-height: 0.6;
  margin-bottom: 16px;
}

.quote-box p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--navy);
  max-width: 440px;
  margin-bottom: 26px;
}

.quote-name {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}

.dots {
  display: flex;
  gap: 14px;
  margin-top: 30px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--teal);
}

.dot.active {
  background: var(--navy);
  border-color: var(--navy);
}

.testimonial-image {
  min-height: 360px;
  background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1500&q=85") center / cover;
}

.cta-band {
  background: linear-gradient(90deg, #0c263c, #113b4b);
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 38px 7vw;
}

.cta-band p:first-child {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  line-height: 1.1;
}

.cta-band span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.footer {
  padding: 54px 7vw 34px;
  background: var(--ivory);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr) 1.5fr;
  gap: 55px;
  align-items: start;
}

.footer h5 {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 18px;
}

.footer a,
.footer p {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
}

.email-signup {
  display: flex;
  border: 1px solid var(--teal);
  margin-top: 18px;
}

.email-signup input {
  flex: 1;
  padding: 14px;
  border: 0;
  background: transparent;
  outline: none;
  font-family: inherit;
}

.email-signup button {
  width: 52px;
  border: 0;
  background: var(--teal);
  color: #ffffff;
  font-size: 18px;
}

.copyright {
  text-align: center;
  margin-top: 46px;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .site-header {
    height: auto;
    padding: 24px 6vw;
  }

  .nav {
    display: none;
  }

  .hero,
  .featured,
  .testimonial {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 70px 6vw;
  }

  .hero-image {
    min-height: 360px;
  }

  .three-grid,
  .process-grid,
  .portfolio-preview,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .pillar,
  .process-step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 35px 20px;
  }

  .cta-band {
    flex-direction: column;
    gap: 22px;
    text-align: center;
  }
<<<<<<< HEAD
}
=======
}
>>>>>>> 8f1d08259c4be4a7b4b4b621d7e87e8877a14cff
