@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --white: #fbfaf5;
  --ivory: #f3ecdc;
  --sand: #ddd1bb;
  --graphite: #171d1b;
  --green: #123b32;
  --olive: #26342e;
  --brass: #b89145;
  --steel: #60737a;
  --clay: #9b684e;
  --ink: #1c211f;
  --muted: #59645f;
  --rule: rgba(18, 59, 50, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--green);
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1;
}

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  min-height: 78px;
  padding: 12px clamp(20px, 4vw, 50px);
  background: rgba(251, 250, 245, 0.96);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(16px);
  transition: min-height 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(251, 250, 245, 0.98);
  box-shadow: 0 16px 40px rgba(23, 29, 27, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 192px;
}

.brand img {
  width: 126px;
  height: auto;
  transition: width 180ms ease;
}

.site-header.is-scrolled .brand img {
  width: 112px;
}

.site-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.site-menu > a,
.nav-parent {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 11px;
  color: #31413b;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.site-menu > a:hover,
.nav-parent:hover {
  color: var(--green);
}

.nav-parent::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 7px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}

.nav-group {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(720px, calc(100vw - 56px));
  padding: 12px;
  background: var(--green);
  border: 1px solid rgba(184, 145, 69, 0.42);
  box-shadow: 0 24px 74px rgba(23, 29, 27, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.dropdown::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}

.nav-group:hover .dropdown,
.nav-group:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown a {
  display: grid;
  gap: 7px;
  min-height: 92px;
  padding: 15px;
  border: 1px solid rgba(251, 250, 245, 0.11);
  background: rgba(251, 250, 245, 0.07);
  color: var(--white);
}

.dropdown a:hover {
  background: rgba(184, 145, 69, 0.16);
}

.dropdown strong {
  color: var(--white);
  font-size: 14px;
  line-height: 1.2;
}

.dropdown span {
  color: rgba(251, 250, 245, 0.68);
  font-size: 11px;
  line-height: 1.35;
}

.quote-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.quote-link,
.button.primary {
  color: var(--white);
  background: var(--green);
}

.button.secondary {
  color: var(--green);
  background: transparent;
  border-color: rgba(18, 59, 50, 0.24);
}

.menu-toggle {
  display: none;
  min-height: 42px;
  border: 1px solid var(--rule);
  background: transparent;
  color: var(--green);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .quote-link {
    display: none;
  }
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: stretch;
  min-height: 620px;
  padding: clamp(38px, 6vw, 74px) clamp(20px, 4vw, 50px);
  background: linear-gradient(90deg, rgba(221, 209, 187, 0.44), transparent 48%), var(--white);
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--brass);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(56px, 7.4vw, 102px);
}

.lead {
  max-width: 720px;
  margin-top: 22px;
  color: var(--graphite);
  font-size: clamp(19px, 1.9vw, 28px);
  font-weight: 800;
  line-height: 1.18;
}

.hero-copy > p:not(.eyebrow):not(.lead) {
  max-width: 730px;
  margin-top: 22px;
  color: var(--muted);
  line-height: 1.82;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-media {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid rgba(18, 59, 50, 0.14);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(251, 250, 245, 0.03), rgba(18, 59, 50, 0.22));
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 600ms ease;
}

.hero-media:hover img {
  transform: scale(1.055);
}

.media-note {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 18px;
  background: rgba(251, 250, 245, 0.92);
  color: var(--green);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 2.7vw, 38px);
  font-weight: 600;
  line-height: 1.05;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: linear-gradient(135deg, var(--green), var(--graphite));
  border-top: 1px solid rgba(184, 145, 69, 0.34);
  border-bottom: 1px solid rgba(184, 145, 69, 0.34);
}

.proof-strip article {
  min-height: 142px;
  padding: 24px;
  border-right: 1px solid rgba(251, 250, 245, 0.12);
  color: var(--white);
}

.proof-strip strong {
  display: block;
  color: var(--brass);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1;
}

.proof-strip span {
  display: block;
  max-width: 260px;
  margin-top: 14px;
  color: rgba(251, 250, 245, 0.75);
  font-size: 13px;
}

.section {
  padding: clamp(34px, 4.8vw, 58px) clamp(20px, 4vw, 50px);
}

.section h2,
.cta-band h2 {
  max-width: 980px;
  font-size: clamp(38px, 4.8vw, 64px);
}

.page-hero h1 {
  max-width: 1040px;
  font-size: clamp(38px, 4.6vw, 58px);
}

.intro-grid,
.section-head,
.detail-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 52px);
}

.intro-grid p:not(.eyebrow),
.page-hero p,
.detail-layout li {
  color: var(--muted);
  line-height: 1.8;
}

.intro-grid p + p {
  margin-top: 18px;
}

.section-head {
  align-items: end;
  margin-bottom: 30px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.visual-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 0 clamp(20px, 4vw, 50px) clamp(34px, 4.8vw, 58px);
  background: var(--white);
}

.visual-rail figure {
  position: relative;
  min-height: 250px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 59, 50, 0.14);
  background: var(--ivory);
}

.visual-rail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 560ms ease, filter 560ms ease;
}

.visual-rail figure:hover img {
  transform: scale(1.04);
  filter: saturate(1.04) contrast(1.02);
}

.visual-rail figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 10px 12px;
  color: var(--green);
  background: rgba(251, 250, 245, 0.88);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-head a {
  justify-self: end;
  color: var(--brass);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-grid,
.contact-grid {
  display: grid;
  gap: 16px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr) minmax(0, 0.94fr);
}

.card,
.service-card {
  min-height: 168px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.card::before,
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(184, 145, 69, 0.12), transparent 34%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.card:hover,
.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 145, 69, 0.5);
  background: #fffdf7;
}

.card:hover::before,
.service-card:hover::before {
  opacity: 1;
}

.card span,
.service-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.card h2,
.card h3,
.service-card h3 {
  font-size: clamp(26px, 2.35vw, 34px);
}

.card p,
.service-card p {
  margin-top: 10px;
  color: var(--muted);
}

.card a,
.service-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.contact-grid .card {
  min-height: auto;
}

.compact-card {
  min-height: 118px;
  display: flex;
  align-items: center;
}

.dark-band {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.82fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background: linear-gradient(135deg, var(--green), var(--graphite));
  color: var(--white);
}

.dark-band h2 {
  color: var(--white);
}

.pill-grid {
  display: grid;
  gap: 10px;
}

.pill-grid a {
  padding: 18px;
  color: rgba(251, 250, 245, 0.9);
  background: rgba(251, 250, 245, 0.08);
  border: 1px solid rgba(251, 250, 245, 0.12);
  font-weight: 800;
}

.clients-teaser {
  background: var(--ivory);
}

.mini-wall,
.client-wall {
  display: grid;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.mini-wall {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.client-wall {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mini-wall span,
.client-wall span {
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 16px;
  background: rgba(251, 250, 245, 0.7);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  color: var(--green);
  font-weight: 800;
  line-height: 1.35;
}

.clients-teaser .button {
  margin-top: 26px;
}

.cta-band {
  padding: clamp(38px, 5vw, 64px) clamp(20px, 4vw, 50px);
  background: var(--graphite);
  color: var(--white);
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 22px;
}

.page-hero {
  padding: clamp(30px, 4.8vw, 56px) clamp(20px, 4vw, 50px);
  background: linear-gradient(90deg, rgba(221, 209, 187, 0.56), transparent 52%), var(--white);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.65;
}

.detail-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  padding: 13px 16px;
  background: #fff;
  border: 1px solid var(--rule);
}

.quote-section {
  background: var(--green);
  color: var(--white);
}

.quote-section blockquote {
  max-width: 980px;
  margin: 0;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.08;
}

.quote-section p {
  margin-top: 24px;
  color: rgba(251, 250, 245, 0.75);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  padding: 46px clamp(20px, 4vw, 56px);
  background: var(--green);
  color: rgba(251, 250, 245, 0.74);
}

.site-footer h3,
.footer-brand {
  color: var(--white);
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 700;
}

.site-footer p {
  margin-top: 8px;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
  }

  .site-menu {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    display: none;
    align-items: stretch;
    justify-content: start;
    flex-direction: column;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--rule);
    overflow-x: hidden;
  }

  .site-menu.is-open {
    display: flex;
  }

  .nav-group {
    width: 100%;
  }

  .dropdown {
    position: static;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 100%;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    grid-template-columns: 1fr;
    display: none;
    box-shadow: none;
    padding: 6px 0 10px 14px;
    background: transparent;
    border: 0;
  }

  .nav-group:hover .dropdown,
  .nav-group:focus-within .dropdown,
  .site-menu.is-open .dropdown {
    display: grid;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .dropdown a {
    min-height: auto;
    padding: 9px 10px;
    background: transparent;
    border-color: rgba(18, 59, 50, 0.1);
    color: var(--green);
  }

  .dropdown strong {
    color: var(--green);
    font-size: 13px;
  }

  .dropdown span {
    display: none;
  }

  .quote-link {
    justify-self: end;
  }

  .hero,
  .visual-rail,
  .intro-grid,
  .section-head,
  .dark-band,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .section-head a {
    justify-self: start;
  }

  .card-grid.three,
  .card-grid.two,
  .contact-grid,
  .mini-wall,
  .client-wall,
  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .brand img {
    width: 112px;
  }

  .quote-link {
    display: none;
  }

  .hero h1 {
    font-size: clamp(50px, 15vw, 70px);
  }

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

  .visual-rail {
    grid-template-columns: 1fr;
  }

  .card-grid.three,
  .card-grid.two,
  .contact-grid,
  .mini-wall,
  .client-wall,
  .proof-strip,
  .site-footer {
    grid-template-columns: 1fr;
  }
}
