@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400&family=Jost:wght@400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #F7F5F0;
  --linen: #EDEAE3;
  --paper: #FAFAF8;
  --teal: #1F6F6A;
  --teal-dark: #145550;
  --teal-soft: #E8F2F1;
  --teal-muted: #3d7d78;
  --gold: #C9A962;
  --gold-dark: #A88B3D;
  --gold-soft: #F5EDD8;
  --bark: #1f1c18;
  --text-dark: #1f1c18;
  --text-mid: #454039;
  --text-light: #6d665a;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text-dark);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  overflow-x: hidden;
  padding-top: var(--nav-h);
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 3rem;
  min-height: var(--nav-h);
  background: rgba(247, 245, 240, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(31, 111, 106, 0.12);
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--bark);
  text-decoration: none;
  flex-shrink: 0;
}

.logo span {
  font-weight: 300;
  font-style: italic;
  color: var(--teal);
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.25rem 1.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links > li { position: relative; }

.nav-links a {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-mid);
  transition: color 0.25s;
  display: inline-block;
  padding: 0.35rem 0;
}

.nav-links a:hover,
.nav-links a.is-active { color: var(--teal); }

.nav-links .has-sub > a { padding-right: 0.15rem; }

.nav-cta {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  background: var(--teal);
  padding: 0.6rem 1.35rem;
  border-radius: 2px;
  transition: background 0.25s;
  flex-shrink: 0;
}

.nav-cta:hover { background: var(--teal-dark); }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0.5rem);
  min-width: 220px;
  padding: 0.65rem 0;
  background: var(--paper);
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: 2px;
  box-shadow: 0 12px 40px rgba(44, 40, 36, 0.08);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
}

.has-sub:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0.35rem);
}

.nav-dropdown a {
  display: block;
  padding: 0.45rem 1.1rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.nav-dropdown a:hover { background: var(--teal-soft); color: var(--teal-dark); }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--bark);
  transition: transform 0.2s, opacity 0.2s;
}

body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 1024px) {
  .site-nav { padding: 0.85rem 1.25rem; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    bottom: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 1.5rem 2rem;
    gap: 0;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    justify-content: flex-start;
  }
  body.nav-open .nav-links { transform: translateX(0); }
  .nav-links > li { border-bottom: 1px solid rgba(31, 111, 106, 0.08); }
  .nav-links a { padding: 1rem 0; }
  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    padding: 0 0 0.5rem 0.75rem;
    display: none;
  }
  .has-sub.open .nav-dropdown { display: block; }
  .nav-cta { margin-left: auto; }
}

/* HERO */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem 4rem 3rem;
}

.eyebrow {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-muted);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.75rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--bark);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--teal);
}

.hero-desc {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 420px;
  margin-bottom: 2.25rem;
}

.hero-actions { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; }

.btn-primary {
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  background: var(--teal);
  padding: 0.95rem 2rem;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.25s;
  display: inline-block;
}

.btn-primary:hover { background: var(--teal-dark); }

.btn-ghost {
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-mid);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.25s;
}

.btn-ghost:hover { color: var(--teal); }

.hero-right {
  position: relative;
  background: var(--linen);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-illustration { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero-badge {
  position: relative;
  z-index: 2;
  margin: auto 2rem 2rem auto;
  max-width: 200px;
  background: rgba(247, 245, 240, 0.92);
  border: 1px solid rgba(201, 169, 98, 0.35);
  border-radius: 4px;
  padding: 1.1rem 1.4rem;
}

.hero-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.35rem;
  font-weight: 300;
  color: var(--bark);
  line-height: 1;
}

.hero-badge-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.25rem;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 280px; order: -1; }
  .hero-badge { margin: 1.5rem; }
}

/* INTRO STRIP */
.intro-strip {
  background: var(--teal-dark);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.intro-strip-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  color: #faf9f7;
  line-height: 1.42;
  flex: 1;
  min-width: 240px;
}

.intro-divider {
  width: 1px;
  height: 52px;
  background: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
}

.intro-stats { display: flex; gap: 2.5rem; flex-shrink: 0; flex-wrap: wrap; }

.stat-item { text-align: center; }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--gold-soft);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 249, 247, 0.82);
  margin-top: 0.4rem;
  font-weight: 500;
}

/* PLAYGROUND — interactive homepage */
.playground {
  padding: 5rem 3rem;
  background: var(--paper);
  border-top: 1px solid rgba(31, 111, 106, 0.08);
  border-bottom: 1px solid rgba(31, 111, 106, 0.08);
}

.playground-header { max-width: 520px; margin-bottom: 2rem; }

.playground .section-eyebrow { margin-bottom: 0.65rem; }

.playground-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--bark);
  line-height: 1.15;
}

.playground-title em { font-style: italic; color: var(--teal); }

.playground-hint {
  margin-top: 0.75rem;
  font-size: 0.98rem;
  color: var(--text-mid);
  max-width: 520px;
  line-height: 1.65;
}

.play-area-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.play-area {
  position: relative;
  height: min(420px, 55vh);
  min-height: 300px;
  background: linear-gradient(160deg, var(--teal-soft) 0%, var(--cream) 45%, var(--gold-soft) 100%);
  border-radius: 4px;
  border: 1px solid rgba(201, 169, 98, 0.28);
  overflow: hidden;
  touch-action: none;
}

.play-area::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border: 1px dashed rgba(31, 111, 106, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.play-token {
  position: absolute;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bark);
  font-weight: 500;
  background: rgba(255, 255, 255, 0.88);
  border: 1.5px solid var(--gold);
  box-shadow: 0 8px 24px rgba(44, 40, 36, 0.08);
  cursor: grab;
  user-select: none;
  z-index: 2;
  transition: box-shadow 0.2s, border-color 0.2s;
  padding: 0.5rem;
  line-height: 1.35;
}

.play-token:active { cursor: grabbing; }

.play-token.is-near-center {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(31, 111, 106, 0.2), 0 12px 32px rgba(44, 40, 36, 0.1);
}

.play-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
}

.play-result {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.22rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text-mid);
  flex: 1;
  min-width: 200px;
}

.btn-secondary {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: transparent;
  border: 1px solid var(--teal);
  padding: 0.55rem 1.1rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-secondary:hover {
  background: var(--teal);
  color: var(--cream);
}

/* SECTIONS */
.services { padding: 5.5rem 3rem; background: var(--cream); }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-muted);
  margin-bottom: 0.65rem;
  font-weight: 500;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.4vw, 3.15rem);
  font-weight: 400;
  color: var(--bark);
  line-height: 1.15;
}

.section-title em { font-style: italic; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201, 169, 98, 0.35);
}

.service-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  transition: background 0.25s;
}

.service-card:hover { background: var(--teal-soft); }

.service-icon { width: 40px; height: 40px; margin-bottom: 1.25rem; }

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: var(--gold-dark);
  margin-bottom: 0.4rem;
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--bark);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.service-desc {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-mid);
}

.service-link {
  display: inline-flex;
  margin-top: 1.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
}

.service-link:hover { color: var(--teal-dark); }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
}

.philosophy {
  background: var(--linen);
  padding: 5.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.philosophy-image {
  aspect-ratio: 4/5;
  background: var(--gold-soft);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.philosophy-body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
}

.philosophy-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 400;
  color: var(--teal-dark);
  border-left: 2px solid var(--gold);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .philosophy { grid-template-columns: 1fr; }
}

.process { padding: 5.5rem 3rem; background: var(--cream); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0;
  margin-top: 3rem;
}

.process-step { padding: 2rem 1.5rem; position: relative; }

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 2.5rem;
  right: 0;
  width: 1px;
  height: 36px;
  background: rgba(201, 169, 98, 0.4);
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 300;
  color: rgba(31, 111, 106, 0.2);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.22rem;
  font-weight: 500;
  color: var(--bark);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-mid);
}

@media (max-width: 900px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step:not(:last-child)::after { display: none; }
}

@media (max-width: 560px) {
  .process-steps { grid-template-columns: 1fr; }
}

.testimonial {
  background: var(--teal-dark);
  padding: 5rem 3rem;
  text-align: center;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.45rem, 2.3vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: #faf9f7;
  max-width: 720px;
  margin: 0 auto 1.5rem;
  line-height: 1.45;
}

.testimonial-author {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 2rem;
}

.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(201, 169, 98, 0.45);
  cursor: pointer;
  transition: background 0.2s;
}

.dot.active { background: var(--gold-soft); }

.contact {
  padding: 5.5rem 3rem;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-top: 1.25rem;
  margin-bottom: 2rem;
}

.contact-info { display: flex; flex-direction: column; gap: 0.85rem; }

.contact-info-item {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  font-size: 1rem;
  color: var(--text-mid);
}

.contact-info-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  min-width: 56px;
  font-weight: 500;
}

.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-field { display: flex; flex-direction: column; gap: 0.35rem; }

.form-field label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(201, 169, 98, 0.45);
  padding: 0.55rem 0;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-bottom-color: var(--teal); }

.form-field textarea { resize: vertical; min-height: 72px; }

.form-submit {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--teal);
  border: none;
  padding: 0.95rem 2.2rem;
  border-radius: 2px;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.25s;
}

.form-submit:hover { background: var(--teal-dark); }

@media (max-width: 900px) {
  .contact { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* Inner pages */
.page-hero {
  padding: 3.5rem 3rem 2.5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 400;
  color: var(--bark);
  line-height: 1.12;
  margin-bottom: 1.1rem;
  letter-spacing: -0.01em;
}

.page-hero h1 em { font-style: italic; color: var(--teal); }

.page-lead {
  font-size: 1.08rem;
  line-height: 1.72;
  color: var(--text-mid);
  max-width: 38em;
}

.breadcrumb {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.page-hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(2rem, 5vw, 3.75rem);
  align-items: center;
  padding: 2.5rem 3rem 0;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero-split .page-hero {
  padding: 0;
  margin: 0;
  max-width: none;
}

@media (max-width: 960px) {
  .page-hero-split {
    grid-template-columns: 1fr;
    padding-bottom: 1rem;
  }
  .page-hero-split .media-frame { max-width: 520px; margin: 0 auto; }
}

.media-frame {
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 98, 0.35);
  box-shadow: 0 24px 60px rgba(31, 28, 24, 0.07);
  background: var(--linen);
}

.media-frame img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.section-band {
  padding: clamp(3rem, 6vw, 5.25rem) 3rem;
}

.section-band.linen { background: var(--linen); }
.section-band.paper { background: var(--paper); }
.section-band.teal-soft { background: var(--teal-soft); }

.content-wide {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.split-row.reverse .split-row__text { order: 2; }
.split-row.reverse .split-row__visual { order: 1; }

@media (max-width: 860px) {
  .split-row {
    grid-template-columns: 1fr;
  }
  .split-row.reverse .split-row__text,
  .split-row.reverse .split-row__visual { order: unset; }
}

.stat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 2.75rem;
  margin-top: 2rem;
  padding-top: 0.5rem;
}

.stat-chip strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  font-weight: 400;
  color: var(--teal-dark);
  line-height: 1.15;
}

.stat-chip span {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.35rem;
}

.quote-strip {
  margin: 2.5rem 3rem;
  padding: 2.25rem 2.5rem;
  border-left: 3px solid var(--gold);
  background: linear-gradient(105deg, var(--teal-soft) 0%, rgba(247, 245, 240, 0.4) 70%);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.quote-strip p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-style: italic;
  font-weight: 400;
  color: var(--teal-dark);
  line-height: 1.45;
  max-width: 52ch;
}

.breadcrumb a { color: var(--teal-muted); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

.content-block {
  padding: 0 3rem 4rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.content-block.wide { max-width: 1040px; }

.prose p {
  font-size: 1.05rem;
  line-height: 1.78;
  color: var(--text-mid);
  margin-bottom: 1.35rem;
}

.prose h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.45rem, 2.2vw, 1.75rem);
  font-weight: 500;
  color: var(--bark);
  margin: 2.25rem 0 0.85rem;
  letter-spacing: -0.02em;
}

.prose ul { margin: 0 0 1.35rem 1.25rem; color: var(--text-mid); font-size: 1.05rem; line-height: 1.75; }

.prose li { margin-bottom: 0.45rem; }

.split-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.panel {
  background: var(--linen);
  border: 1px solid rgba(31, 111, 106, 0.1);
  padding: 1.75rem;
  border-radius: 2px;
}

.panel h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--bark);
  margin-bottom: 0.5rem;
}

.panel p { font-size: 1rem; color: var(--text-mid); line-height: 1.68; margin: 0; }

@media (max-width: 700px) {
  .split-panels { grid-template-columns: 1fr; }
}

.service-list-page {
  padding: 0 3rem 5rem;
  display: grid;
  gap: 1px;
  background: rgba(201, 169, 98, 0.3);
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.service-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  background: var(--cream);
  padding: 1.75rem 2rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}

.service-row:hover { background: var(--teal-soft); }

.service-row-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--gold-dark);
}

.service-row h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.service-row p { font-size: 0.98rem; color: var(--text-mid); line-height: 1.6; }

.service-row-arrow {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

@media (max-width: 640px) {
  .service-row { grid-template-columns: 1fr; }
}

.faq-item {
  border-bottom: 1px solid rgba(31, 111, 106, 0.12);
  padding: 1.35rem 0;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--bark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0;
}

.faq-item button span.icon {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-panel { max-height: 480px; }

.faq-panel p {
  padding-top: 0.75rem;
  font-size: 1.02rem;
  line-height: 1.72;
  color: var(--text-mid);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2rem;
}

.team-card {
  background: var(--linen);
  border: 1px solid rgba(201, 169, 98, 0.28);
  padding: 0;
  border-radius: 3px;
  overflow: hidden;
}

.team-card .team-photo {
  aspect-ratio: 4/5;
  background: var(--gold-soft);
  overflow: hidden;
}

.team-card .team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card-body { padding: 1.35rem 1.35rem 1.6rem; }

.team-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.28rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.team-card .role {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-muted);
  margin-bottom: 0.85rem;
  font-weight: 500;
}

.team-card p { font-size: 1rem; line-height: 1.65; color: var(--text-mid); margin: 0; }

.page-subhead {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-muted);
  font-weight: 500;
  margin-bottom: 0.65rem;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 2.25rem;
}

.experience-card {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.experience-card__visual img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.experience-card__body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--bark);
  margin-bottom: 0.45rem;
}

.experience-card__body p {
  font-size: 1.02rem;
  line-height: 1.68;
  color: var(--text-mid);
  margin: 0;
}

@media (max-width: 768px) {
  .experience-grid { grid-template-columns: 1fr; }
}

.contact-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem 3rem 4.5rem;
}

.contact-page__grid {
  display: grid;
  grid-template-columns: minmax(260px, 400px) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.25rem);
  align-items: start;
}

.contact-page__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

.contact-page__visual {
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
}

@media (max-width: 960px) {
  .contact-page__grid { grid-template-columns: 1fr; }
  .contact-page__visual { position: static; max-width: 480px; margin: 0 auto; }
  .contact-page__body { grid-template-columns: 1fr; }
}

@media (max-width: 800px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* FOOTER */
footer {
  background: var(--bark);
  padding: 3.5rem 3rem 1.75rem;
  color: var(--gold-soft);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--linen);
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(247, 245, 240, 0.55);
  max-width: 260px;
}

.footer-col-title {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }

.footer-col ul a {
  text-decoration: none;
  font-size: 0.82rem;
  color: rgba(247, 245, 240, 0.55);
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--gold-soft); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.72rem;
  color: rgba(247, 245, 240, 0.45);
}

.footer-bottom a { color: rgba(247, 245, 240, 0.55); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold-soft); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 500px) {
  .footer-top { grid-template-columns: 1fr; }
}

.ornament {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.ornament-line { width: 36px; height: 1px; background: var(--gold); }

.ornament-diamond {
  width: 5px; height: 5px;
  background: var(--teal);
  transform: rotate(45deg);
  opacity: 0.7;
}

.cta-strip {
  margin: 3rem 3rem 0;
  padding: 2.5rem 2rem;
  background: var(--teal-dark);
  color: var(--linen);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  border-radius: 2px;
}

.cta-strip p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-style: italic;
  font-weight: 400;
  max-width: 36ch;
}

.cta-strip .btn-primary { background: var(--gold); color: var(--bark); }
.cta-strip .btn-primary:hover { background: var(--gold-soft); color: var(--bark); }

/* Auréva Group — services & pricing */
.service-category {
  margin-bottom: 3.5rem;
}

.service-category__title {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-category__title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(31, 111, 106, 0.2);
  max-width: 120px;
}

.service-card-pro {
  background: var(--paper);
  border: 1px solid rgba(31, 111, 106, 0.12);
  border-radius: 3px;
  padding: 1.75rem 1.85rem;
  margin-bottom: 1.25rem;
}

.service-card-pro h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--bark);
  margin-bottom: 1rem;
}

.service-card-pro .svc-meta {
  display: grid;
  gap: 0.85rem;
}

.service-card-pro .svc-meta dt {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-muted);
  font-weight: 600;
  margin-top: 0.35rem;
}

.service-card-pro .svc-meta dd {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-mid);
  margin: 0;
}

.service-card-pro ul {
  margin: 0.5rem 0 0.75rem 1.1rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-mid);
}

.service-card-pro > ul:first-of-type {
  margin-top: 0;
}

.pricing-hero { text-align: center; max-width: 760px; margin: 0 auto; padding: 2.5rem 1.5rem 2rem; }

.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3rem 2.5rem;
}

.pricing-tier {
  background: var(--linen);
  border: 1px solid rgba(201, 169, 98, 0.35);
  border-radius: 3px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-tier h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.28rem;
  font-weight: 500;
  color: var(--bark);
}

.pricing-tier .tier-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-muted);
  font-weight: 600;
}

.pricing-tier .tier-price {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--teal-dark);
}

.pricing-tier ul {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-mid);
  margin: 0.25rem 0 0 1rem;
}

.retainer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  max-width: 1040px;
  margin: 2rem auto 0;
  padding: 0 3rem;
}

.retainer-card {
  background: var(--teal-soft);
  border: 1px solid rgba(31, 111, 106, 0.2);
  padding: 1.35rem 1.25rem;
  border-radius: 3px;
}

.retainer-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  color: var(--bark);
}

.retainer-card .amt {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 0.5rem;
}

.global-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.global-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(31, 111, 106, 0.1);
  font-size: 1.02rem;
  color: var(--text-mid);
  padding-left: 0.5rem;
}

.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.hero h1.hero-title-lg {
  font-size: clamp(1.85rem, 3.8vw, 3.15rem);
  line-height: 1.12;
  max-width: 20ch;
}

@media (min-width: 901px) {
  .hero h1.hero-title-lg { max-width: 22ch; }
}
