:root {
  --forest: #1a2e22;
  --forest-mid: #243b2d;
  --forest-light: #2f4d3a;
  --cream: #f5f0e8;
  --cream-warm: #ede6d8;
  --gold: #c9a84c;
  --gold-light: #e0c278;
  --sage: #7a9e87;
  --text: #1a1a1a;
  --text-mid: #3a3a3a;
  --text-light: #5a5a5a;
  --white: #ffffff;
  --focus-ring: #c9a84c;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

/* PAGE IDENTITY — clients page uses white base + cream-warm sections for warmth distinct from homepage */

/* ACCESSIBILITY */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--gold);
  color: var(--forest);
  padding: 0.6rem 1.2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 1rem;
}
*:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1.2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(26, 46, 34, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.05em;
  text-decoration: none;
}
.nav-logo span {
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: rgba(245, 240, 232, 0.72);
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--gold);
}
.nav-cta {
  background: var(--gold);
  color: var(--forest);
  padding: 0.55rem 1.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--gold-light);
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition:
    transform 0.3s,
    opacity 0.3s;
  border-radius: 2px;
}
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-drawer {
  position: fixed;
  top: 0;
  left: unset;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--forest);
  z-index: 300;
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
  overflow-y: scroll;
}
.mobile-drawer.open {
  right: 0;
}
.drawer-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: none;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  z-index: 400;
}
.drawer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.drawer-nav li a {
  display: block;
  padding: 1rem 0;
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.75);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  transition: color 0.2s;
}
.drawer-nav li a:hover {
  color: var(--gold);
}
.drawer-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 2rem;
}
.drawer-cta-primary {
  background: var(--gold);
  color: var(--forest);
  padding: 0.9rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  text-align: center;
}
.drawer-cta-secondary {
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--gold);
  padding: 0.9rem 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  text-align: center;
}
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 250;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* PAGE HERO — clients: cream hero with forest text, reversed from homepage */
#page-hero {
  min-height: 70vh;
  background: var(--cream-warm);
  display: flex;
  align-items: center;
  padding: 9rem 4rem 5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--gold);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
    45deg,
    var(--forest) 0,
    var(--forest) 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 20px 20px;
  pointer-events: none;
}
.hero-accent {
  position: absolute;
  bottom: -60px;
  right: -40px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.15);
  pointer-events: none;
}
.hero-accent-2 {
  position: absolute;
  bottom: -100px;
  right: -80px;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.08);
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.hero-breadcrumb a {
  color: var(--forest);
  text-decoration: none;
  font-weight: 600;
}
.hero-breadcrumb a:hover {
  color: var(--gold);
}
.page-hero-content h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--forest);
}
.page-hero-content h1 em {
  font-style: italic;
  color: var(--gold);
}
.page-hero-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 520px;
  margin-top: 1.2rem;
}
.hero-cta-row {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.btn-hero-primary {
  background: var(--forest);
  color: var(--cream);
  padding: 0.9rem 2.2rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  display: inline-block;
  transition: background 0.2s;
}
.btn-hero-primary:hover {
  background: var(--forest-light);
}
.btn-hero-outline {
  border: 2px solid var(--forest);
  color: var(--forest);
  padding: 0.9rem 2.2rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  display: inline-block;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.btn-hero-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* SECTION HELPERS */
section {
  padding: 6rem 4rem;
}
.section-label {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.section-label::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.section-label.dark {
  color: var(--forest);
}
.section-label.dark::before {
  background: var(--forest);
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--forest);
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
}

/* QUOTE BAR */
.quote-bar {
  background: var(--gold);
  padding: 2.5rem 4rem;
}
.quote-bar blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--forest);
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.55;
}
.quote-bar blockquote strong {
  font-weight: 700;
}

/* SERVICES — white background */
#services {
  background: var(--white);
}
.services-intro {
  max-width: 640px;
  margin-bottom: 4rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.svc-card {
  background: var(--cream-warm);
  border-bottom: 3px solid transparent;
  padding: 2.8rem 2.4rem;
  transition:
    border-color 0.3s,
    transform 0.2s;
}
.svc-card:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-4px);
}
.svc-card.featured {
  border-bottom-color: var(--gold);
  background: var(--forest);
}
.svc-badge {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 0.25rem 0.8rem;
  border-radius: 1px;
}
.svc-card.featured .svc-badge {
  background: var(--gold);
  color: var(--forest);
  border-color: transparent;
}
.svc-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--forest);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.svc-card.featured h3 {
  color: var(--cream);
}
.svc-card h3 em {
  font-style: italic;
}
.svc-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 1.8rem;
}
.svc-card.featured .svc-desc {
  color: rgba(245, 240, 232, 0.65);
}
.svc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.svc-features li {
  font-size: 0.875rem;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.55;
}
.svc-card.featured .svc-features li {
  color: rgba(245, 240, 232, 0.65);
}
.svc-features li::before {
  content: "—";
  color: var(--gold);
  flex-shrink: 0;
}
.svc-price {
  padding-top: 1.8rem;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}
.svc-price .from {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
}
.svc-card.featured .svc-price .from {
  color: rgba(245, 240, 232, 0.45);
}
.svc-price .amount {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--forest);
  line-height: 1.2;
  margin: 0.2rem 0;
}
.svc-card.featured .svc-price .amount {
  color: var(--gold);
}
.svc-price .note {
  font-size: 0.82rem;
  color: var(--text-light);
}
.svc-card.featured .svc-price .note {
  color: rgba(245, 240, 232, 0.45);
}
.svc-note {
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: var(--cream-warm);
  border-left: 3px solid var(--gold);
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* WHY — forest background */
#why {
  background: var(--forest);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.diff-card {
  padding: 1.6rem;
  background: rgba(245, 240, 232, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.12);
  transition: background 0.25s;
}
.diff-card:hover {
  background: rgba(245, 240, 232, 0.07);
}
.diff-initial {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.8rem;
  aria-hidden: true;
}
.diff-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.diff-card p {
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.7;
}

/* PROCESS — cream-warm */
#process {
  background: var(--cream-warm);
}
.process-header {
  max-width: 560px;
  margin-bottom: 4rem;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid rgba(26, 46, 34, 0.1);
}
.step {
  background: var(--cream);
  padding: 2.5rem 2rem;
  position: relative;
}
.step-n {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(26, 46, 34, 0.07);
  line-height: 1;
  margin-bottom: 0.5rem;
  aria-hidden: true;
}
.step h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.6rem;
}
.step p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
}
.step-divider {
  position: absolute;
  top: 3rem;
  right: -1px;
  width: 2px;
  height: 32px;
  background: var(--gold);
  opacity: 0.4;
  aria-hidden: true;
}
.intake-note {
  margin-top: 2.5rem;
  padding: 2rem 2.5rem;
  background: var(--forest);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
}
.intake-icon {
  font-size: 1.6rem;
  aria-hidden: true;
}
.intake-note h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.intake-note p {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.75;
}

/* HIGH TOUCH — white */
#hightouch {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.ht-panel {
  background: var(--forest);
  padding: 2.8rem;
}
.ht-panel h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1.2rem;
  line-height: 1.3;
}
.ht-panel h3 em {
  font-style: italic;
  color: var(--gold);
}
.ht-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.ht-list li {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.65;
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}
.ht-list li::before {
  content: "—";
  color: var(--gold);
  flex-shrink: 0;
}
.ht-note {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(245, 240, 232, 0.38);
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 168, 76, 0.18);
}

/* CLIENT INQUIRY — forest-mid, Tally embed */
#inquiry {
  background: var(--forest-mid);
  padding: 6rem 4rem;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}
.inquiry-inner {
  max-width: 820px;
  margin: 0 auto;
}
.inquiry-inner .section-label {
  justify-content: center;
}
.inquiry-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  text-align: center;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.inquiry-title em {
  font-style: italic;
  color: var(--gold);
}
.inquiry-sub {
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.55);
  text-align: center;
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}
.tally-wrap {
  background: rgba(245, 240, 232, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 2.5rem;
}
.tally-wrap iframe {
  width: 100%;
  border: none;
  display: block;
  min-height: 500px;
}

/* NEWSLETTER — cream-warm */
#newsletter {
  background: var(--cream-warm);
  padding: 5rem 4rem;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}
.newsletter-inner {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-inner .section-label {
  justify-content: center;
}
.nl-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.nl-title em {
  font-style: italic;
  color: var(--gold);
}
.nl-sub {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto 2.5rem;
}
.nl-tally {
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 2rem;
}
.nl-tally iframe {
  width: 100%;
  border: none;
  display: block;
  min-height: 180px;
}

/* CONTACT CTA */
#contact {
  background: var(--forest);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: "DELEGATE";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Cormorant Garamond", serif;
  font-size: 18rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.05em;
  aria-hidden: true;
}
.contact-body {
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.55);
  max-width: 460px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}
.contact-actions {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--forest);
  padding: 0.9rem 2.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  display: inline-block;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.btn-outline {
  border: 1px solid rgba(245, 240, 232, 0.3);
  color: var(--cream);
  padding: 0.9rem 2.4rem;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  display: inline-block;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* FOOTER */
footer {
  background: #111d15;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}
.f-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.25rem;
}
.f-logo span {
  color: var(--gold);
}
.f-full {
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.3);
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.45);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}
.footer-tagline {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  display: block;
}
.social-links {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 240, 232, 0.5);
  text-decoration: none;
  border-radius: 2px;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}
.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}
footer h6 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(245, 240, 232, 0.35);
  font-weight: 500;
  margin-bottom: 1.2rem;
}
footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
footer ul a {
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}
footer ul a:hover {
  color: var(--gold);
}
.footer-bottom {
  background: #0d1710;
  padding: 1.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.25);
  letter-spacing: 0.04em;
}

/* ANIMATIONS */
/* fade-up: content visible by default; animation only applies once JS marks html.js-ready */
.fade-up {
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
html.js-ready .fade-up {
  opacity: 0;
  transform: translateY(28px);
}
html.js-ready .fade-up.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html.js-ready .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ACCORDION */
.svc-features-acc {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.svc-features-acc.open {
  max-height: 400px;
}
.svc-toggle {
  width: 100%;
  background: none;
  border: none;
  border-top: 1px solid rgba(26, 46, 34, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0 0;
  margin-top: 1rem;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.svc-card.featured .svc-toggle {
  border-color: rgba(245, 240, 232, 0.15);
  color: var(--cream);
}
.svc-toggle:hover {
  color: var(--gold);
}
.svc-toggle-icon {
  width: 22px;
  height: 22px;
  border: 1px solid currentColor;
  border-radius: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  flex-shrink: 0;
}
.svc-toggle-icon svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform 0.3s;
}
.svc-toggle[aria-expanded="true"] .svc-toggle-icon svg {
  transform: rotate(180deg);
}

/* STEP ACCORDION (cream bg) */
.step-accordion {
  border-bottom: 1px solid rgba(26, 46, 34, 0.1);
}
.step-acc-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 0;
  text-align: left;
}
.step-acc-trigger:hover .step-acc-title {
  color: var(--gold);
}
.step-acc-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.6;
  min-width: 36px;
  line-height: 1;
}
.step-acc-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--forest);
  flex: 1;
  transition: color 0.2s;
}
.step-acc-icon {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(26, 46, 34, 0.2);
  border-radius: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.step-acc-icon svg {
  width: 11px;
  height: 11px;
  stroke: var(--forest);
  fill: none;
  stroke-width: 2;
  transition: transform 0.3s;
}
.step-acc-trigger[aria-expanded="true"] .step-acc-icon {
  background: rgba(26, 46, 34, 0.06);
}
.step-acc-trigger[aria-expanded="true"] .step-acc-icon svg {
  transform: rotate(180deg);
}
.step-acc-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.step-acc-body.open {
  max-height: 300px;
}
.step-acc-body-inner {
  padding: 0.2rem 0 1.4rem 3rem;
}
.step-acc-body-inner p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
}
/* MOBILE */
@media (max-width: 960px) {
  nav {
    padding: 1rem 1.5rem;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  section {
    padding: 4rem 1.5rem;
  }
  #page-hero {
    padding: 7rem 1.5rem 4rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  #why {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 1.5rem;
  }
  .diff-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  #hightouch {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  #inquiry {
    padding: 4rem 1.5rem;
  }
  .tally-wrap {
    padding: 1.5rem 1rem;
  }
  #newsletter {
    padding: 4rem 1.5rem;
  }
  .quote-bar {
    padding: 2rem 1.5rem;
  }
  footer {
    grid-template-columns: 1fr 1fr;
    padding: 3rem 1.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  .hero-cta-row {
    flex-direction: column;
  }
}
