/* =========================================================
   Redolence Decor — Stylesheet
   Palette: Deep botanical green, warm ivory, soft champagne
   Type: Cormorant Garamond (display/serif), Jost (nav/labels)
   ========================================================= */

:root {
  --green-950: #1c2b22;
  --green-900: #21311f;
  --green-800: #2c3f2a;
  --cream-100: #faf7f0;
  --cream-200: #f4efe4;
  --sand-300: #e9e0cd;
  --ink: #262620;
  --ink-soft: #55564c;
  --gold: #b79b62;
  --gold-light: #d8c79a;
  --radius-img: 2px;

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Jost", sans-serif;
  --font-script: "Dancing Script", cursive;

  --container: 1300px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream-100);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  margin: 0;
  line-height: 1.15;
}

p { margin: 0; line-height: 1.7; color: var(--ink-soft); }

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

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ---------- shared utilities ---------- */

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
  font-weight: 400;
  line-height: 1.7;
}
.eyebrow-dark { color: var(--gold); }

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 0.95em 2.1em;
  border-radius: 999px;
  transition: background .35s ease, color .35s ease, border-color .35s ease;
}
.btn-outline {
  border: 1px solid var(--gold-light);
  color: inherit;
}
.hero-panel .btn-outline,
.floral-banner-content .btn-outline,
.cta-content .btn-outline { color: var(--cream-200); border-color: rgba(216,199,154,.6); }
.hero-panel .btn-outline:hover,
.floral-banner-content .btn-outline:hover,
.cta-content .btn-outline:hover { background: var(--gold-light); color: var(--green-950); }
.header-cta.btn-outline { color: var(--cream-100); border-color: var(--gold); }
.header-cta.btn-outline:hover { background: var(--gold-light); color: var(--green-950); border-color: var(--gold-light); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--font-sans);
  font-size: .85rem;
  letter-spacing: .04em;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: gap .3s ease, opacity .3s ease;
}
.text-link:hover { gap: .85em; opacity: .75; }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green-950);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: .7rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo { display: flex; align-items: center; gap: .6rem; line-height: 1; }
.logo-mark { width: 108px; height: 66px; object-fit: contain; flex-shrink: 0; }

.main-nav > ul {
  list-style: none;
  display: flex;
  gap: 2.1rem;
  margin: 0;
  padding: 0;
}
.main-nav a {
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--cream-200);
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }
.main-nav a.is-active { color: var(--gold-light); }
.main-nav a.is-active::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 22px; height: 1.5px; background: var(--cream-200); }

/* ---------- services mega-menu ---------- */

.nav-has-dropdown { position: relative; }
.nav-has-dropdown > a { display: inline-flex; align-items: center; gap: .4em; }
.nav-caret { width: 9px; height: 9px; transition: transform .25s ease; }
.nav-has-dropdown:hover .nav-caret,
.nav-has-dropdown:focus-within .nav-caret { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 400px;
  max-width: 92vw;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--cream-100);
  border-radius: 10px;
  box-shadow: 0 26px 60px rgba(0,0,0,.25);
  padding: .6rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  z-index: 200;
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-list {
  list-style: none; margin: 0 0 .5rem; padding: 0;
  display: flex;
  flex-direction: column;
  gap: .05rem;
}
.nav-dropdown-list a {
  display: flex; align-items: center; gap: .7rem;
  min-width: 0;
  padding: .45rem .55rem;
  border-radius: 6px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
}
.nav-dropdown-list a::after { display: none; }
.nav-dropdown-list a:hover { background: var(--cream-200); }
.nav-dropdown-list a > span:last-child { min-width: 0; }
.nav-dropdown-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--cream-200);
  color: var(--green-950);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-dropdown-icon svg { width: 15px; height: 15px; }
.nav-dropdown-list h4 { font-family: var(--font-sans); font-size: .8rem; font-weight: 500; color: var(--ink); margin-bottom: .15rem; }
.nav-dropdown-list p { font-size: .73rem; line-height: 1.4; color: var(--ink-soft); }
.nav-dropdown-all {
  display: flex; align-items: center; justify-content: center;
  padding: .7rem;
  background: var(--green-950); color: var(--cream-100);
  border-radius: 6px;
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  transition: background .3s;
}
.nav-dropdown-all:hover { background: var(--green-900); }

/* ---------- hero ---------- */

.hero {
  display: grid;
  grid-template-columns: 1.75fr 1fr;
  min-height: 94vh;
}
.hero-image { position: relative; overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: 58% 42%; min-height: 94vh; }
.hero-tagwrap { position: absolute; top: 2.2rem; left: 2.2rem; }
.hero-tag {
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 2;
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
}

.hero-panel {
  background: var(--green-950);
  background-image: radial-gradient(circle at 85% 90%, rgba(183,155,98,.12), transparent 55%);
  color: var(--cream-200);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem clamp(2rem, 4vw, 4rem);
  position: relative;
}
.hero-panel h1 {
  font-size: clamp(2.1rem, 3vw, 2.9rem);
  font-weight: 400;
  color: var(--cream-100);
  margin-bottom: 1.4rem;
}
.hero-copy { font-family: var(--font-sans); font-weight: 300; font-size: .92rem; color: rgba(250,247,240,.72); max-width: 34ch; margin-bottom: 2.2rem; }
.hero-panel-foot {
  position: absolute;
  right: clamp(1.5rem, 3vw, 3rem);
  bottom: 2.5rem;
  font-family: var(--font-sans);
  font-size: .66rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: right;
  color: rgba(250,247,240,.55);
  line-height: 1.7;
}

/* ---------- about ---------- */

.about {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.15fr 0.55fr;
  gap: 2.5rem;
  align-items: center;
}
.about-text h2 { font-size: clamp(1.9rem, 2.6vw, 2.5rem); margin-bottom: 1.3rem; }
.about-text p { margin-bottom: 1.6rem; max-width: 40ch; font-size: .92rem; }

.about-collage {
  position: relative;
  height: clamp(360px, 38vw, 460px);
  display: flex;
  justify-content: center;
}
.collage-main {
  position: absolute;
  top: 8%;
  left: 8%;
  width: 62%;
  height: 92%;
  object-fit: cover;
  border-radius: var(--radius-img);
  box-shadow: 0 30px 60px rgba(0,0,0,.14);
  z-index: 1;
}
.collage-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 46%;
  object-fit: cover;
  border-radius: var(--radius-img);
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
  z-index: 2;
}
.collage-script {
  position: absolute;
  left: 2%;
  bottom: 6%;
  font-family: var(--font-script);
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--gold);
  z-index: 3;
  transform: rotate(-3deg);
}

.about-side {
  font-family: var(--font-sans);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-left: 1.5rem;
  border-left: 1px solid var(--sand-300);
}
.about-side p { margin-bottom: .65rem; color: var(--ink-soft); font-size: .72rem; letter-spacing: .12em; }
.about-side blockquote {
  margin: 1.4rem 0 0;
  font-style: normal;
  font-family: var(--font-sans);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  padding-top: 1.2rem;
  border-top: 1px solid var(--sand-300);
  line-height: 1.9;
}

/* ---------- services ---------- */

.services {
  background: var(--cream-200);
  padding: clamp(4rem, 8vw, 6rem) var(--gutter);
}
.services-head {
  max-width: var(--container);
  margin: 0 auto 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}
.services-sub {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 400;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: right;
  max-width: 34ch;
}
.services-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.service-img { overflow: hidden; border-radius: var(--radius-img); margin-bottom: 1.3rem; aspect-ratio: 4/5; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-card:hover .service-img img { transform: scale(1.06); }
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: .6rem;
  line-height: 1.35;
}
.service-card p { font-size: .85rem; margin-bottom: 1.1rem; max-width: 26ch; }
.round-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid var(--ink-soft);
  border-radius: 50%;
  font-size: .9rem;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.round-link:hover { background: var(--green-950); border-color: var(--green-950); color: #fff; }

/* ---------- stories ---------- */

.stories {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  display: grid;
  grid-template-columns: 0.75fr 1.6fr;
  gap: 3rem;
  align-items: center;
}
.stories-text h2 { font-size: clamp(1.9rem, 2.6vw, 2.5rem); margin: 1rem 0 1.6rem; }

.stories-collage {
  position: relative;
  height: clamp(320px, 34vw, 400px);
}
.stories-collage img {
  position: absolute;
  object-fit: cover;
  border-radius: var(--radius-img);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}
.stories-collage .s1 {
  left: 0; top: 4%;
  width: 25%; height: 90%;
  filter: grayscale(1) contrast(1.05);
  z-index: 1;
}
.stories-collage .s2 {
  left: 27%; top: 0;
  width: 28%; height: 100%;
  filter: grayscale(1) contrast(1.05);
  z-index: 2;
}
.stories-collage .s3 {
  left: 58%; top: 12%;
  width: 19%; height: 44%;
  filter: sepia(.4) grayscale(.15) contrast(1.05);
  z-index: 2;
}
.stories-collage .s4 {
  left: 56%; top: 60%;
  width: 44%; height: 44%;
  z-index: 3;
}
.stories-script {
  position: absolute;
  top: -2.4rem; right: 2%;
  font-family: var(--font-script);
  font-weight: 600;
  color: var(--gold);
  font-size: 1.5rem;
  transform: rotate(-3deg);
}

/* ---------- floral banner ---------- */

.floral-banner { position: relative; min-height: 78vh; overflow: hidden; }
.floral-banner img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.floral-banner::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,43,34,.25), rgba(28,43,34,.55));
}
.floral-banner-content {
  position: relative;
  z-index: 1;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.floral-banner-content h2 {
  color: #fff;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  max-width: 16ch;
  margin: .6rem 0 2rem;
}

/* ---------- process ---------- */

.process {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6rem) var(--gutter);
}
.process-head {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  border-bottom: 1px solid var(--sand-300);
  padding-bottom: 2rem;
}
.process-title { display: flex; flex-direction: column; }
.process-title .eyebrow { margin-bottom: .7rem; }
.process-title h2 { font-size: clamp(1.6rem, 2.2vw, 2.1rem); }
.process-note-wrap { display: flex; align-items: flex-end; gap: .4rem; }
.process-note {
  font-style: italic;
  font-family: var(--font-display);
  font-size: .92rem;
  color: var(--ink-soft);
  text-align: right;
  line-height: 1.5;
}
.process-leaf {
  width: 42px;
  height: auto;
  color: var(--ink-soft);
  opacity: .5;
  flex-shrink: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
.process-step { position: relative; padding-top: 1.5rem; border-top: 1px solid var(--sand-300); }
.step-num {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: .9rem;
}
.process-step h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: .6rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--ink);
}
.process-step p { font-size: .85rem; max-width: 22ch; }

/* ---------- testimonials ---------- */

.testimonials {
  background: var(--cream-200);
  padding: clamp(4rem, 8vw, 6rem) var(--gutter);
  display: grid;
  grid-template-columns: 0.75fr 0.85fr 1.4fr 0.75fr;
  gap: 2rem;
  align-items: center;
}
.testimonials img { border-radius: 6px; aspect-ratio: 4/5; object-fit: cover; }

.test-label h3 { font-size: 1.5rem; margin: .5rem 0 1.5rem; font-weight: 400; }
.test-label .test-controls { justify-content: flex-start; margin-top: 0; }

.test-card {
  background: #fff;
  border-radius: 14px;
  padding: 2.6rem 3rem 2.2rem;
  text-align: center;
  box-shadow: 0 10px 35px rgba(28,43,34,.06);
  position: relative;
  max-width: 520px;
  margin: 0 auto;
}
.quote-mark {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: .6rem;
}

.test-slider { position: relative; min-height: 8.5rem; }
.test-slide {
  margin: 0;
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease;
}
.test-slide.active { opacity: 1; visibility: visible; position: relative; }
.test-slide p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
  max-width: 32ch;
  margin: 0 auto 1.3rem;
  line-height: 1.6;
}
.test-slide cite {
  display: block;
  font-style: normal;
  font-size: .82rem;
  letter-spacing: .03em;
  color: var(--ink);
}
.test-slide cite span { display: block; font-size: .78rem; margin-top: .2rem; color: var(--ink-soft); }

.test-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.test-controls button {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--sand-300);
  background: transparent;
  cursor: pointer;
  font-size: .85rem;
  color: var(--ink-soft);
  transition: background .3s, color .3s;
}
.test-controls button:hover { background: var(--green-950); color: #fff; border-color: var(--green-950); }

.test-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.5rem; }
.test-dots span {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--sand-300);
  cursor: pointer;
  transition: background .3s, transform .3s;
}
.test-dots span.active { background: var(--gold); transform: scale(1.25); }

/* ---------- cta ---------- */

.cta {
  position: relative;
  background-color: var(--green-950);
  background-image:
    linear-gradient(to right, var(--green-950) 0%, var(--green-950) 42%, rgba(28,43,34,.55) 62%, rgba(28,43,34,0) 100%),
    url("../images/cta-leaves.jpg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%, cover;
  color: var(--cream-100);
  min-height: 55vh;
  display: flex;
  align-items: center;
  padding: 3rem var(--gutter);
  overflow: hidden;
}
.cta-content { max-width: 40ch; position: relative; z-index: 1; }
.cta-content h2 { color: var(--cream-100); font-size: clamp(2rem, 3vw, 2.7rem); margin-bottom: 1rem; }
.cta-content p { color: rgba(250,247,240,.72); margin-bottom: 2rem; }
.cta-script {
  position: absolute;
  right: 6%; bottom: 15%;
  font-family: var(--font-script);
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.3;
  text-align: right;
  color: var(--gold-light);
  z-index: 1;
}

/* ---------- footer ---------- */

.site-footer {
  position: relative;
  background-color: var(--green-950);
  background-image:
    linear-gradient(rgba(28,43,34,.55), rgba(28,43,34,.72)),
    url("../images/footer-bg.jpg");
  background-size: cover;
  background-position: center;
  color: rgba(250,247,240,.82);
  padding: clamp(2.4rem, 4vw, 3.4rem) var(--gutter) 1.4rem;
}
.footer-inner { max-width: var(--container); margin: 0 auto; position: relative; z-index: 1; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr 0.9fr 0.95fr 1.3fr;
  gap: 2rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(216,199,154,.2);
}

.footer-logo-mark { width: 96px; height: 59px; object-fit: contain; margin-bottom: .5rem; }
.footer-tagline {
  font-size: .62rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(250,247,240,.55);
  margin: .35rem 0 .8rem;
}
.footer-script {
  font-family: var(--font-script);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--gold);
  margin-bottom: .8rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid rgba(216,199,154,.2);
}
.footer-desc { font-size: .82rem; color: rgba(250,247,240,.65); max-width: 30ch; margin-bottom: 1rem; }

.footer-social { display: flex; gap: .6rem; }
.footer-social a {
  width: 30px; height: 30px;
  border: 1px solid rgba(216,199,154,.4);
  color: var(--gold-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, color .3s;
}
.footer-social a svg { width: 15px; height: 15px; }
.footer-social a:hover { background: var(--gold); color: var(--green-950); }

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream-100);
  font-weight: 500;
  margin-bottom: .7rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid rgba(216,199,154,.3);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .55rem; }
.footer-col a { font-size: .82rem; color: rgba(250,247,240,.72); transition: color .3s; }
.footer-col a:hover { color: var(--gold-light); }

.footer-newsletter p { font-size: .82rem; color: rgba(250,247,240,.65); margin-bottom: .9rem; max-width: 32ch; }
.newsletter-form {
  display: flex;
  align-items: center;
  border: 1px solid rgba(216,199,154,.4);
  border-radius: 999px;
  padding: .25rem .25rem .25rem 1.1rem;
  margin-bottom: 1.1rem;
}
.newsletter-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--cream-100);
  font-family: var(--font-sans);
  font-size: .8rem;
  padding: .42rem 0;
}
.newsletter-form input::placeholder { color: rgba(250,247,240,.45); }
.newsletter-form button {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: none;
  background: var(--gold-light);
  color: var(--green-950);
  font-size: .85rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .3s;
}
.newsletter-form button:hover { background: var(--gold); }

.footer-badges { display: flex; gap: 1rem; }
.footer-badge { text-align: center; flex: 1; }
.footer-badge svg { width: 20px; height: 20px; color: var(--gold); margin-bottom: .4rem; }
.footer-badge span {
  display: block;
  font-size: .58rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(250,247,240,.7);
  line-height: 1.3;
}

.footer-divider { display: flex; align-items: center; gap: 1rem; margin-top: 1.4rem; }
.footer-divider-line { flex: 1; height: 1px; background: rgba(216,199,154,.25); }
.footer-divider-mark { width: 18px; height: auto; flex-shrink: 0; }
.footer-motto {
  text-align: center;
  font-size: .64rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(250,247,240,.55);
  margin-top: .7rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
  font-size: .73rem;
  color: rgba(250,247,240,.5);
}
.footer-credit span { color: var(--gold-light); }

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1080px) {
  .about { grid-template-columns: 1fr 1fr; }
  .about-side { grid-column: 1 / -1; border-left: none; border-top: 1px solid var(--sand-300); padding-left: 0; padding-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0 2rem; }
  .about-side blockquote { flex-basis: 100%; border-top: none; padding-top: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stories { grid-template-columns: 1fr; }
  .stories-collage { height: clamp(300px, 72vw, 360px); }
  .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 3rem; }
  .testimonials { grid-template-columns: 1fr; text-align: center; }
  .testimonials img { display: none; }
  .test-label .test-controls { justify-content: center; }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .header-actions { display: none; }
  .nav-toggle { display: flex; }
  .logo-mark { width: 82px; height: 50px; }
  .hero { grid-template-columns: 1fr; }
  .hero-image img { min-height: 60vh; }
  .hero-panel { padding: 3rem var(--gutter); }
}

@media (max-width: 640px) {
  .about { grid-template-columns: 1fr; padding-top: 3rem; }
  .about-collage { height: clamp(300px, 90vw, 380px); }
  .services-head { flex-direction: column; align-items: flex-start; }
  .services-sub { text-align: left; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-head { flex-direction: column; align-items: flex-start; }
  .process-note { text-align: left; }
  .process-note-wrap { align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

/* ---------- mobile nav drawer ---------- */

@media (max-width: 860px) {
  .main-nav.open {
    display: block;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream-100);
    border-bottom: 1px solid var(--sand-300);
    max-height: calc(100vh - 100%);
    overflow-y: auto;
  }
  .main-nav.open > ul { flex-direction: column; padding: 1.5rem var(--gutter); gap: 1.2rem; }
  .main-nav.open a { color: var(--ink); }
  .main-nav.open a.is-active { color: var(--gold); }

  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    width: auto;
    max-width: none;
    background: transparent;
    box-shadow: none;
    padding: .6rem 0 0 1rem;
    margin-top: .8rem;
    border-left: 1px solid var(--sand-300);
  }
  .nav-dropdown-list { gap: .3rem; }
  .nav-dropdown-icon { width: 30px; height: 30px; }
  .nav-caret { display: none; }
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */

.btn-outline-dark {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid var(--ink-soft);
  border-radius: 999px;
  padding: .95em 2.1em;
  color: var(--ink);
  transition: background .3s, color .3s, border-color .3s;
}
.btn-outline-dark:hover { background: var(--green-950); color: #fff; border-color: var(--green-950); }

/* ---- ap-hero ---- */
.ap-hero { position: relative; min-height: 62vh; overflow: hidden; }
.ap-hero img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.ap-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(28,43,34,.82) 40%, rgba(28,43,34,.35) 100%); }
.ap-hero-content {
  position: relative; z-index: 1;
  min-height: 62vh;
  max-width: var(--container);
  margin: 0 auto;
  padding: 3rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.ap-hero-text { max-width: 46ch; }
.ap-hero-text h1 { color: var(--cream-100); font-size: clamp(2rem, 3.2vw, 2.7rem); margin-bottom: 1.1rem; }
.ap-hero-copy { color: rgba(250,247,240,.72); margin-bottom: 1.6rem; max-width: 40ch; }
.ap-hero-actions { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }
.ap-play-link {
  display: inline-flex; align-items: center; gap: .8rem;
  color: var(--cream-100);
  font-family: var(--font-sans); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
}
.ap-play-icon {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(216,199,154,.6);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
}
.ap-hero-script {
  font-family: var(--font-script);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.35;
  color: var(--gold-light);
  text-align: right;
  border-right: 1px solid rgba(216,199,154,.4);
  padding-right: 1.2rem;
  flex-shrink: 0;
}

/* ---- ap-intro ---- */
.ap-intro {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 5.5rem) var(--gutter);
  display: grid;
  grid-template-columns: 0.85fr 1.3fr 0.85fr;
  gap: 2rem;
  align-items: center;
}
.ap-intro-img { position: relative; border-radius: var(--radius-img); overflow: hidden; }
.ap-intro-img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.ap-badge {
  position: absolute; left: 0; bottom: 0; right: 0;
  background: rgba(28,43,34,.85);
  color: var(--cream-100);
  font-size: .68rem; letter-spacing: .08em; text-transform: uppercase;
  padding: 1rem 1.1rem;
  line-height: 1.5;
}
.ap-badge-light { background: rgba(233,224,205,.9); color: var(--ink); }

.ap-intro-text h2 { font-size: clamp(1.7rem, 2.4vw, 2.2rem); margin: .8rem 0 1.1rem; }
.ap-intro-text p { font-size: .9rem; margin-bottom: 1rem; max-width: 46ch; }

.ap-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem 2rem;
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--sand-300);
}
.ap-stat-num { display: block; font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); }
.ap-stat-label { font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }

/* ---- ap-philosophy ---- */
.ap-philosophy { position: relative; overflow: hidden; }
.ap-philosophy img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.ap-philosophy::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, var(--green-950) 45%, rgba(28,43,34,.55) 100%); }
.ap-philosophy-inner {
  position: relative; z-index: 1;
  max-width: var(--container); margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 3.5rem) var(--gutter);
  display: flex; flex-wrap: wrap; gap: 2.5rem;
  align-items: center; justify-content: space-between;
}
.ap-philosophy-text { max-width: 42ch; }
.ap-philosophy-text h2 { color: var(--cream-100); font-size: clamp(1.5rem, 2.2vw, 2rem); margin: .6rem 0 .8rem; }
.ap-philosophy-text p { color: rgba(250,247,240,.68); font-size: .9rem; }
.ap-philosophy-icons { display: flex; gap: 2.2rem; }
.ap-icon-item { text-align: center; color: var(--cream-100); }
.ap-icon-item svg { width: 30px; height: 30px; color: var(--gold); margin-bottom: .6rem; }
.ap-icon-item span { display: block; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: rgba(250,247,240,.75); }

/* ---- ap-values ---- */
.ap-values { max-width: var(--container); margin: 0 auto; padding: clamp(3.5rem, 7vw, 5.5rem) var(--gutter); }
.ap-values-head { max-width: 60ch; margin-bottom: 3rem; }
.ap-values-head h2 { font-size: clamp(1.7rem, 2.4vw, 2.2rem); margin: .6rem 0 .8rem; }
.ap-values-copy { font-size: .92rem; }
.ap-values-body { display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem; align-items: stretch; }
.ap-values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.ap-value-card svg { width: 28px; height: 28px; color: var(--gold); margin-bottom: .9rem; }
.ap-value-card h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.ap-value-card p { font-size: .85rem; }

.ap-quote-block {
  background: var(--cream-200);
  border-radius: 6px;
  padding: 2rem;
  position: relative;
}
.ap-quote-mark { font-family: var(--font-display); font-size: 2.4rem; color: var(--gold); line-height: 1; display: block; margin-bottom: .4rem; }
.ap-quote-block p { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: var(--ink); margin-bottom: .8rem; }
.ap-quote-block cite { font-size: .78rem; color: var(--ink-soft); display: block; margin-bottom: 1.4rem; }
.ap-quote-img { position: relative; border-radius: 4px; overflow: hidden; }
.ap-quote-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.ap-quote-img span {
  position: absolute; left: 0; bottom: 0; right: 0;
  background: rgba(28,43,34,.8); color: var(--cream-100);
  font-size: .66rem; letter-spacing: .08em; text-transform: uppercase;
  padding: .8rem 1rem;
}

/* ---- ap-process ---- */
.ap-process { position: relative; overflow: hidden; min-height: 50vh; display: flex; align-items: center; }
.ap-process img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.ap-process::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(28,43,34,.75), rgba(28,43,34,.88)); }
.ap-process-inner { position: relative; z-index: 1; max-width: var(--container); margin: 0 auto; padding: clamp(3rem, 6vw, 4.5rem) var(--gutter); width: 100%; }
.ap-process-inner h2 { color: var(--cream-100); font-size: clamp(1.6rem, 2.4vw, 2.1rem); margin: .6rem 0 2.5rem; }
.ap-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.ap-timeline::before {
  content: ""; position: absolute; top: 18px; left: 5%; right: 5%; height: 1px;
  background: rgba(216,199,154,.35);
}
.ap-timeline-dot {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--gold-light);
  color: var(--gold-light);
  font-family: var(--font-display); font-size: .85rem;
  background: var(--green-950);
  position: relative; z-index: 1;
  margin-bottom: 1rem;
}
.ap-timeline-step h4 { color: var(--cream-100); font-family: var(--font-sans); font-weight: 600; font-size: .85rem; text-transform: uppercase; letter-spacing: .04em; margin-bottom: .4rem; }
.ap-timeline-step p { color: rgba(250,247,240,.6); font-size: .8rem; max-width: 20ch; }
.ap-process-card {
  position: absolute; right: clamp(1rem,4vw,3rem); bottom: 2.5rem;
  background: rgba(28,43,34,.85);
  border: 1px solid rgba(216,199,154,.3);
  color: var(--gold-light);
  font-family: var(--font-script);
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.4;
  text-align: center;
  padding: 1.2rem 1.6rem;
  border-radius: 4px;
  z-index: 1;
}

/* ---- ap-team ---- */
.ap-team {
  max-width: var(--container); margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 5.5rem) var(--gutter);
  display: grid;
  grid-template-columns: 0.9fr 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.ap-team-img { position: relative; border-radius: var(--radius-img); overflow: hidden; }
.ap-team-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.ap-team-text h2 { font-size: clamp(1.5rem, 2.2vw, 2rem); margin: .6rem 0 .9rem; }
.ap-team-text p { font-size: .9rem; margin-bottom: 1.4rem; max-width: 34ch; }
.ap-team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.ap-team-card { text-align: center; }
.ap-team-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 4px; margin-bottom: .6rem; }
.ap-team-card span { font-size: .68rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); }

/* ---- ap-testimonials ---- */
.ap-testimonials {
  background: var(--cream-200);
  padding: clamp(3rem, 6vw, 4rem) var(--gutter);
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.ap-testimonials-head h3 { font-size: 1.4rem; margin: .5rem 0 1.2rem; font-weight: 400; }
.ap-quote-card {
  background: #fff;
  border-radius: 6px;
  padding: 1.8rem 1.8rem;
  box-shadow: 0 10px 30px rgba(28,43,34,.05);
  position: relative;
}
.ap-avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green-950); color: var(--gold-light);
  font-family: var(--font-sans); font-size: .72rem; letter-spacing: .04em;
  margin-bottom: 1rem;
}
.ap-quote-card p { font-family: var(--font-display); font-style: italic; font-size: .98rem; color: var(--ink); margin-bottom: .8rem; }
.ap-quote-card cite { font-style: normal; font-size: .78rem; color: var(--ink); }
.ap-quote-card cite span { display: block; font-size: .72rem; color: var(--ink-soft); margin-top: .1rem; }

/* ---- about page responsive ---- */
@media (max-width: 1080px) {
  .ap-hero-content { flex-direction: column; align-items: flex-start; }
  .ap-hero-script { border-right: none; text-align: left; padding-right: 0; }
  .ap-intro { grid-template-columns: 1fr; }
  .ap-values-body { grid-template-columns: 1fr; }
  .ap-team { grid-template-columns: 1fr; }
  .ap-team-grid { grid-template-columns: repeat(3, 1fr); }
  .ap-testimonials { grid-template-columns: 1fr; }
  .ap-philosophy-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .ap-stats { grid-template-columns: 1fr; }
  .ap-values-grid { grid-template-columns: 1fr; }
  .ap-timeline { grid-template-columns: repeat(2, 1fr); row-gap: 2rem; }
  .ap-timeline::before { display: none; }
  .ap-team-grid { grid-template-columns: 1fr; }
  .ap-process-card { position: static; margin-top: 2rem; display: inline-block; }
}

/* =========================================================
   SERVICES PAGE
   ========================================================= */

.sv-services {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  display: flex;
  flex-direction: column;
  gap: clamp(4rem, 7vw, 6rem);
}
.sv-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  scroll-margin-top: 110px;
}
.sv-row:nth-child(even) .sv-row-img { order: 2; }
.sv-row-img { position: relative; overflow: hidden; border-radius: var(--radius-img); aspect-ratio: 4 / 3; }
.sv-row-img img { width: 100%; height: 100%; object-fit: cover; }
.sv-row-icon {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--cream-200); color: var(--green-950);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.3rem;
}
.sv-row-icon svg { width: 23px; height: 23px; }
.sv-row-text h2 { font-size: clamp(1.8rem, 2.6vw, 2.3rem); margin-bottom: 1rem; }
.sv-row-text > p { margin-bottom: .3rem; max-width: 44ch; }
.sv-row-list { list-style: none; margin: 1.3rem 0 1.7rem; padding: 0; display: flex; flex-direction: column; gap: .65rem; }
.sv-row-list li { display: flex; align-items: center; gap: .65rem; font-size: .88rem; color: var(--ink-soft); }
.sv-row-list li svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

@media (max-width: 860px) {
  .sv-row { grid-template-columns: 1fr; }
  .sv-row:nth-child(even) .sv-row-img { order: 0; }
}

/* ---- individual service page ---- */

.svp-section-head { text-align: center; max-width: 620px; margin: 0 auto clamp(2.5rem, 5vw, 3.5rem); }

/* -- portfolio gallery -- */
.svp-gallery-wrap { max-width: var(--container); margin: 0 auto; padding: clamp(4rem, 8vw, 6rem) var(--gutter) 0; scroll-margin-top: 110px; }
.svp-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
.svp-gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-img); aspect-ratio: 3 / 4; }

/* -- why choose us -- */
.svp-why {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6rem) var(--gutter);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.svp-why-img { border-radius: var(--radius-img); overflow: hidden; aspect-ratio: 4 / 5; }
.svp-why-img img { width: 100%; height: 100%; object-fit: cover; }
.svp-why-list { display: flex; flex-direction: column; gap: 1.8rem; }
.svp-why-item { display: flex; gap: 1rem; align-items: flex-start; }
.svp-why-item .sv-row-icon { margin-bottom: 0; }
.svp-why-item h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.svp-why-item p { font-size: .88rem; max-width: 42ch; }

/* -- what's included -- */
.svp-included { max-width: 640px; margin: 0 auto; padding: 0 var(--gutter) clamp(4rem, 8vw, 6rem); text-align: center; }
.svp-included .sv-row-icon { margin: 0 auto 1.3rem; }
.svp-included .sv-row-list { text-align: left; max-width: 380px; margin: 1.3rem auto 1.7rem; }
.svp-included > p { max-width: 50ch; margin: 0 auto; }

/* -- perfect for these moments -- */
.svp-occasions { background: var(--cream-200); padding: clamp(4rem, 8vw, 6rem) var(--gutter); }
.svp-occasions-inner { max-width: var(--container); margin: 0 auto; }
.svp-occasions-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.svp-occasion-card { background: var(--cream-100); border-radius: 8px; padding: 1.7rem 1.3rem; text-align: center; }
.svp-occasion-card h4 { font-size: .9rem; margin-bottom: .55rem; }
.svp-occasion-card p { font-size: .78rem; }

/* -- testimonial -- */
.svp-testimonial { max-width: 720px; margin: 0 auto; padding: clamp(4rem, 8vw, 6rem) var(--gutter); text-align: center; }
.svp-testimonial-stars { color: var(--gold); font-size: 1rem; letter-spacing: .25em; margin-bottom: 1.3rem; }
.svp-testimonial blockquote { font-family: var(--font-display); font-style: italic; font-size: clamp(1.3rem, 2.4vw, 1.7rem); color: var(--ink); line-height: 1.5; margin-bottom: 1.4rem; }
.svp-testimonial cite { font-family: var(--font-sans); font-style: normal; font-size: .8rem; color: var(--ink-soft); }
.svp-testimonial cite span { display: block; font-size: .7rem; color: var(--gold); text-transform: uppercase; letter-spacing: .1em; margin-top: .25rem; }

/* -- faq -- */
.svp-faq { max-width: 760px; margin: 0 auto; padding: clamp(4rem, 8vw, 6rem) var(--gutter); }
.svp-faq-item { border-bottom: 1px solid var(--sand-300); }
.svp-faq-item summary {
  cursor: pointer; list-style: none;
  padding: 1.3rem 0;
  font-family: var(--font-sans); font-weight: 500; font-size: .95rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.svp-faq-item summary::-webkit-details-marker { display: none; }
.svp-faq-item summary::after { content: "+"; font-size: 1.3rem; color: var(--gold); flex-shrink: 0; transition: transform .3s ease; }
.svp-faq-item[open] summary::after { transform: rotate(45deg); }
.svp-faq-item p { padding: 0 0 1.3rem; max-width: 62ch; }

/* -- related services -- */
.svp-related {
  background: var(--cream-200);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
}
.svp-related-inner { max-width: var(--container); margin: 0 auto; }
.svp-related-head { text-align: center; margin-bottom: 2.5rem; }
.svp-related-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.svp-related-card {
  background: var(--cream-100);
  border-radius: 8px;
  padding: 1.6rem 1.2rem;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.svp-related-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(0,0,0,.08); }
.svp-related-card .sv-row-icon { margin: 0 auto .9rem; }
.svp-related-card h4 { font-family: var(--font-sans); font-size: .82rem; font-weight: 500; letter-spacing: .02em; }

/* -- final cta phone line -- */
.cta-phone { margin-top: 1rem; font-size: .85rem; color: rgba(250,247,240,.75); }
.cta-phone a { text-decoration: underline; color: var(--gold-light); }

@media (max-width: 1080px) {
  .svp-related-grid { grid-template-columns: repeat(3, 1fr); }
  .svp-occasions-grid { grid-template-columns: repeat(3, 1fr); }
  .svp-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .svp-why { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .svp-related-grid { grid-template-columns: repeat(2, 1fr); }
  .svp-occasions-grid { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */

.header-actions { display: flex; align-items: center; gap: 1.1rem; }
.header-divider { width: 1px; height: 22px; background: var(--sand-300); }
.icon-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: none;
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .3s;
}
.icon-btn:hover { background: var(--cream-200); }
.icon-btn svg { width: 17px; height: 17px; }

/* ---- hero ---- */
.co-hero { position: relative; overflow: hidden; background: var(--green-950); }
.co-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.co-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, var(--green-950) 32%, rgba(28,43,34,.45) 68%, rgba(28,43,34,.25) 100%);
}
.co-hero-inner {
  position: relative; z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 4.5rem) var(--gutter);
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.co-hero-text { max-width: 46ch; flex-shrink: 0; }
.co-hero-text h1 { color: var(--cream-100); font-size: clamp(2rem, 3.2vw, 2.7rem); margin: .6rem 0 1.1rem; }
.co-hero-copy { color: rgba(250,247,240,.72); max-width: 42ch; }
.co-hero-script {
  font-family: var(--font-script);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.35;
  color: var(--gold-light);
  text-align: center;
  flex: 1;
}
.co-hero-list {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  padding-left: 1.6rem;
  border-left: 1px solid rgba(216,199,154,.3);
  flex-shrink: 0;
}
.co-hero-list p {
  color: rgba(250,247,240,.75);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ---- main grid ---- */
.co-main {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 5.5rem) var(--gutter);
  display: grid;
  grid-template-columns: 0.85fr 1.3fr 0.95fr;
  gap: 3rem;
  align-items: start;
}
.co-info h2, .co-form-wrap h2, .co-location h2 { font-size: clamp(1.5rem, 2vw, 1.9rem); margin: .5rem 0 1.8rem; }

.co-info-list { list-style: none; margin: 0 0 1.8rem; padding: 0; display: flex; flex-direction: column; gap: 1.5rem; }
.co-info-list li { display: flex; gap: 1rem; align-items: center; }
.co-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-950); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.co-icon svg { width: 18px; height: 18px; }
.co-info-list h4 { font-size: .98rem; font-weight: 500; font-family: var(--font-sans); margin-bottom: .25rem; }
.co-info-list p { font-size: .88rem; color: var(--ink); margin-bottom: .15rem; }
.co-info-list span { font-size: .78rem; color: var(--ink-soft); }

.co-socials { display: flex; gap: .7rem; }
.co-socials a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--sand-300);
  color: var(--ink-soft);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, color .3s;
}
.co-socials a svg { width: 16px; height: 16px; }
.co-socials a:hover { background: var(--green-950); color: #fff; border-color: var(--green-950); }

/* ---- form ---- */
.co-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.co-field { display: flex; }
.co-form input[type="text"],
.co-form input[type="email"],
.co-form input[type="tel"],
.co-form select,
.co-form textarea {
  width: 100%;
  background: var(--cream-200);
  border: 1px solid transparent;
  border-radius: 4px;
  padding: .9rem 1rem;
  font-family: var(--font-sans);
  font-size: .88rem;
  color: var(--ink);
  outline: none;
  transition: border-color .3s;
}
.co-form input:focus,
.co-form select:focus,
.co-form textarea:focus { border-color: var(--gold); }
.co-form textarea { resize: vertical; min-height: 130px; margin-bottom: 1.4rem; }
.co-form select { appearance: none; cursor: pointer; }

.co-phone-field {
  display: flex; align-items: stretch; flex: 1;
  background: var(--cream-200);
  border: 1px solid transparent;
  border-radius: 4px;
  transition: border-color .3s;
}
.co-phone-field:focus-within { border-color: var(--gold); }
.co-phone-field select,
.co-phone-field input[type="tel"] {
  background: transparent !important;
  border: none !important;
}
.co-country-wrap { position: relative; display: flex; align-items: center; flex-shrink: 0; }
.co-country-flag {
  position: absolute;
  left: .8rem; top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 15px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(0,0,0,.1);
  pointer-events: none;
}
.co-country-select {
  width: 98px;
  padding-left: 2.15rem !important;
  padding-right: .4rem !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.co-phone-divider { width: 1px; align-self: center; height: 55%; background: var(--sand-300); flex-shrink: 0; }
.co-phone-field input[type="tel"] { flex: 1; min-width: 0; padding-left: .6rem !important; }

.co-form-footer { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; margin-top: .3rem; }
.co-submit {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--green-950);
  color: var(--cream-100);
  border: none;
  font-family: var(--font-sans);
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .95em 1.9em;
  border-radius: 999px;
  cursor: pointer;
  transition: background .3s;
}
.co-submit:hover { background: var(--ink); }
.co-disclaimer { font-size: .78rem; color: var(--ink-soft); max-width: 32ch; }
.co-disclaimer a { text-decoration: underline; color: var(--ink); }

.co-form-status { margin-top: 1rem; font-size: .85rem; min-height: 1.2em; }
.co-form-status.is-success { color: #3f6b4a; }
.co-form-status.is-error { color: #a34a3d; }

/* ---- map / location ---- */
.co-map { border-radius: 6px; overflow: hidden; margin-bottom: 1.2rem; box-shadow: 0 10px 30px rgba(0,0,0,.06); }
.co-map iframe { width: 100%; height: 230px; border: 0; display: block; }
.co-map-tip {
  display: flex; gap: .9rem;
  background: var(--cream-200);
  border-radius: 6px;
  padding: 1.2rem 1.3rem;
}
.co-tip-icon { color: var(--green-950); flex-shrink: 0; }
.co-tip-icon svg { width: 20px; height: 20px; }
.co-map-tip h4 { font-size: .9rem; font-weight: 500; font-family: var(--font-sans); margin-bottom: .3rem; }
.co-map-tip p { font-size: .8rem; }

/* ---- faq band ---- */
.co-faq-band { position: relative; overflow: hidden; }
.co-faq-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.co-faq-band::after { content: ""; position: absolute; inset: 0; background: rgba(28,43,34,.72); }
.co-faq-inner {
  position: relative; z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(2.2rem, 4vw, 3rem) var(--gutter);
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.co-faq-script {
  font-family: var(--font-script);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.35;
  color: var(--gold-light);
  text-align: center;
}
.co-faq-divider { width: 1px; align-self: stretch; background: rgba(216,199,154,.3); }
.co-faq-text { flex: 1; min-width: 220px; }
.co-faq-text .eyebrow { margin-bottom: .5rem; }
.co-faq-copy { color: rgba(250,247,240,.7); font-size: .88rem; max-width: 42ch; }

/* ---- responsive ---- */
@media (max-width: 1080px) {
  .co-hero-inner { flex-direction: column; align-items: flex-start; }
  .co-hero-script { text-align: left; }
  .co-hero-list { flex-direction: row; flex-wrap: wrap; border-left: none; padding-left: 0; gap: 1rem 1.4rem; }
  .co-main { grid-template-columns: 1fr; }
  .co-faq-inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .co-faq-divider { display: none; }
}
@media (max-width: 640px) {
  .co-form-row { grid-template-columns: 1fr; }
  .co-country-select { max-width: 100px; }
}
