:root {
  --sand: #f6f1e9;
  --sand-deep: #ece3d6;
  --cream: #fbf8f3;
  --ink: #2e2a26;
  --ink-soft: #5c544c;
  --sage: #7d8c6b;
  --sage-deep: #5f6e50;
  --terra: #c08a5a;
  --gold: #c9a24a;
  --rose: #d8a7a0;
  --shadow: 0 18px 50px rgba(60, 50, 40, 0.12);
  --radius: 22px;
  --max: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Jost", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 0.4em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.5rem; }

p { margin: 0 0 1em; }

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

em { font-style: italic; color: var(--terra); }

.eyebrow {
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--sage-deep);
  margin-bottom: 1rem;
}
.eyebrow.center { text-align: center; }
.center { text-align: center; }

section { padding: clamp(4rem, 9vw, 7.5rem) clamp(1.4rem, 5vw, 3rem); }

/* ---------- HEADER / NAV ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 243, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(125, 140, 107, 0.15);
}
.nav {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem clamp(1.4rem, 5vw, 3rem);
}
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-logo {
  width: 52px; height: 52px;
  object-fit: contain;
}
.brand-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.05;
  display: flex;
  flex-direction: column;
}
.brand-text small {
  font-family: "Jost", sans-serif;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--sage-deep);
  font-weight: 400;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--sage-deep); }
.nav-cta {
  background: var(--ink);
  color: var(--cream) !important;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  transition: background 0.25s, transform 0.25s;
}
.nav-cta:hover { background: var(--sage-deep); transform: translateY(-1px); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}

/* ---------- HERO ---------- */
.hero {
  display: flex;
  min-height: 100vh;
  overflow: hidden;
}
.hero-left {
  flex: 1 1 50%;
  background: var(--ink);
  background-image: radial-gradient(rgba(201,162,74,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  display: flex;
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 6vw, 5rem);
}
.hero-left-inner { max-width: 500px; }
.hero-logo {
  width: min(130px, 30vw);
  height: auto;
  display: block;
  margin-bottom: 1.6rem;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,0.55)) brightness(1.15);
}
.hero-eyebrow {
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero-left h1 {
  color: var(--cream);
  margin-bottom: 1rem;
}
.hero-left h1 em { color: var(--gold); }
.hero-lede {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(246,241,233,0.72);
  margin-bottom: 2.2rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-signature {
  margin-top: 2.4rem;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.4rem;
  color: rgba(246,241,233,0.5);
}
.hero-right {
  flex: 1 1 50%;
  position: relative;
  min-height: 520px;
}
.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.hero-right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(46,42,38,0.45) 0%, transparent 35%);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  font-weight: 400;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s, color 0.25s;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--sage-deep); transform: translateY(-2px); }
.btn-ghost {
  border-color: var(--sage-deep);
  color: var(--sage-deep);
  background: transparent;
}
.btn-ghost:hover { background: var(--sage-deep); color: var(--cream); transform: translateY(-2px); }
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  font-weight: 500;
}
.btn-gold:hover { background: #b8912e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,162,74,0.35); }
.btn-outline-cream {
  border-color: rgba(246,241,233,0.55);
  color: var(--cream);
  background: transparent;
}
.btn-outline-cream:hover { background: rgba(246,241,233,0.12); transform: translateY(-2px); }

/* ---------- QUOTE BAND ---------- */
.quote-band {
  background: var(--sage-deep);
  color: var(--cream);
  text-align: center;
}
.quote-band p {
  max-width: 760px;
  margin: 0 auto;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  font-style: italic;
  line-height: 1.35;
  margin-bottom: 0;
}
.quote-band em { color: var(--gold); font-style: italic; }

/* ---------- ABOUT ---------- */
.about {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about-portrait { display: grid; place-items: center; }
.portrait-ring {
  width: min(320px, 70vw);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(216,167,160,0.6), transparent 60%),
    linear-gradient(150deg, var(--sand-deep), var(--sage));
  box-shadow: var(--shadow);
  position: relative;
}
.portrait-ring::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(125, 140, 107, 0.4);
}
.portrait-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}
.about-tags {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.about-tags li {
  background: var(--sand);
  border: 1px solid rgba(125,140,107,0.25);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ---------- MISSION ---------- */
.mission { background: var(--sand); }
.mission-inner { max-width: var(--max); margin: 0 auto; text-align: center; }
.mission-statement {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: var(--ink-soft);
}
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  text-align: left;
}
.pillar {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  box-shadow: 0 10px 30px rgba(60,50,40,0.06);
  border: 1px solid rgba(125,140,107,0.12);
  transition: transform 0.3s, box-shadow 0.3s;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pillar-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  color: var(--terra);
  display: block;
  margin-bottom: 0.4rem;
}
.pillar p { margin: 0; color: var(--ink-soft); }

/* ---------- FOCUS AREAS ---------- */
.focus { background: var(--sand); }
.focus h2, .focus .eyebrow, .focus-intro { max-width: var(--max); margin-left: auto; margin-right: auto; }
.focus-intro {
  color: var(--ink-soft);
  max-width: 620px;
  margin-bottom: 3rem;
}
.focus-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.6rem;
}
.focus-card {
  background: var(--cream);
  border: 1px solid rgba(125,140,107,0.16);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.focus-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.focus-card h3 { font-size: 1.4rem; margin-bottom: 1rem; }
.focus-card ul {
  list-style: none;
  margin: 0; padding: 0;
}
.focus-card li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.6rem;
  color: var(--ink-soft);
  font-size: 0.96rem;
}
.focus-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--terra);
  font-size: 1.1rem;
  line-height: 1.3;
}
.focus-card-corporate {
  background: linear-gradient(160deg, var(--sage), var(--sage-deep));
  border-color: transparent;
}
.focus-card-corporate h3 { color: var(--cream); }
.focus-card-corporate li { color: rgba(246,241,233,0.9); }
.focus-card-corporate li::before { color: var(--gold); }

/* ---------- HOW WE WORK ---------- */
.work { max-width: var(--max); margin: 0 auto; }
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.6rem;
  margin-top: 3rem;
}
.card {
  position: relative;
  background: var(--cream);
  border: 1px solid rgba(125,140,107,0.18);
  border-radius: var(--radius);
  padding: 2.2rem 1.9rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-featured {
  background: linear-gradient(160deg, var(--sage), var(--sage-deep));
  color: var(--cream);
  border-color: transparent;
}
.card-featured h3, .card-featured .card-meta { color: var(--cream); }
.card-meta {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--terra);
  margin-bottom: 0.8rem;
}
.card-badge {
  position: absolute;
  top: -12px; left: 1.9rem;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  font-weight: 500;
}

/* ---------- CORPORATE COACHING ---------- */
.corporate { background: var(--sand); }
.corporate-inner { max-width: var(--max); margin: 0 auto; }
.corporate h2 { margin-bottom: 0.5rem; }
.corporate-lede {
  color: var(--ink-soft);
  max-width: 660px;
  margin: 0 auto 3.5rem;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
}

/* Audience cards */
.corp-audience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-bottom: 3.5rem;
}
.corp-card {
  background: var(--cream);
  border: 1px solid rgba(125,140,107,0.18);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.corp-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.corp-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--terra);
  margin-bottom: 0.7rem;
}
.corp-card h3 { font-size: 1.35rem; margin-bottom: 0.6rem; }
.corp-card p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }

/* Section sub-labels */
.corp-section-label { margin-bottom: 1.6rem; }
.corp-section-label .eyebrow { margin-bottom: 0.3rem; text-align: left; }
.corp-section-note { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

/* Programs */
.corp-programs { display: flex; flex-direction: column; margin-bottom: 3.5rem; border-top: 1px solid rgba(125,140,107,0.2); }
.corp-program {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.6rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(125,140,107,0.18);
  align-items: start;
}
.corp-program-idx {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--terra);
  padding-top: 0.5rem;
  line-height: 1;
}
.corp-program-meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sage);
  margin-bottom: 0.3rem;
}
.corp-program-body h3 { font-size: 1.5rem; margin-bottom: 0.7rem; }
.corp-program-body p { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 0.7rem; }
.corp-program-body ul { margin: 0; padding-left: 1.2rem; color: var(--ink-soft); font-size: 0.93rem; }
.corp-program-body li { margin-bottom: 0.35rem; }

/* Steps */
.corp-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  margin-bottom: 3.5rem;
}
.corp-step {
  flex: 1;
  min-width: 180px;
  padding: 1.4rem;
  background: var(--cream);
  border: 1px solid rgba(125,140,107,0.18);
  border-radius: var(--radius);
}
.corp-step-arrow {
  flex: 0 0 auto;
  font-size: 1.3rem;
  color: var(--gold);
  padding: 1.5rem 0.5rem 0;
  align-self: flex-start;
}
.corp-step-n {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: var(--terra);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.corp-step h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
  color: var(--ink);
}
.corp-step p { font-size: 0.88rem; color: var(--ink-soft); margin: 0; line-height: 1.55; }

/* Case study */
.corp-case {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: var(--ink);
  border-radius: var(--radius);
  padding: 3rem;
  margin-bottom: 3rem;
}
.corp-case-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.corp-case-story h3 { color: var(--cream); font-size: 1.8rem; margin-bottom: 1rem; }
.corp-case-story p { color: rgba(246,241,233,0.8); font-size: 0.95rem; }
.corp-stats { display: flex; gap: 2.5rem; margin-top: 1.5rem; flex-wrap: wrap; }
.corp-stat-num {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
}
.corp-stat-lbl { font-size: 0.82rem; color: rgba(246,241,233,0.6); }
.corp-case-quote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 2px solid var(--gold);
  padding-left: 2rem;
}
.corp-case-quote blockquote {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--cream);
}
.corp-case-attr {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin: 0;
}

/* Credentials */
.corp-creds {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(125,140,107,0.2);
  border-bottom: 1px solid rgba(125,140,107,0.2);
  margin-bottom: 3.5rem;
}
.corp-cred { display: flex; align-items: baseline; gap: 0.7rem; }
.corp-cred-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--terra);
  line-height: 1;
}
.corp-cred-lbl { font-size: 0.88rem; color: var(--ink-soft); max-width: 140px; }

/* Proposal form */
.corp-contact {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.corp-contact-copy h3 { font-size: 2rem; margin-bottom: 0.8rem; }
.corp-contact-copy p { color: var(--ink-soft); font-size: 0.96rem; margin: 0; }
.corp-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.corp-form .field select {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(125,140,107,0.35);
  border-radius: 14px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  appearance: auto;
}
.corp-form .field select:focus {
  outline: none;
  border-color: var(--sage-deep);
  box-shadow: 0 0 0 3px rgba(125,140,107,0.18);
}
.corp-form .btn { grid-column: 1 / -1; justify-self: start; margin-top: 0.5rem; }
.corp-form .form-note { grid-column: 1 / -1; text-align: left; }

/* Corporate responsive */
@media (max-width: 860px) {
  .corp-audience { grid-template-columns: 1fr; }
  .corp-steps { flex-direction: column; }
  .corp-step-arrow { display: none; }
  .corp-step { min-width: 0; }
  .corp-case { grid-template-columns: 1fr; padding: 2rem; gap: 2rem; }
  .corp-case-quote { border-left: none; border-top: 2px solid var(--gold); padding-left: 0; padding-top: 1.5rem; }
  .corp-contact { grid-template-columns: 1fr; gap: 2rem; }
  .corp-form { grid-template-columns: 1fr; }
}

/* ---------- TESTIMONIALS ---------- */
.testimonials { max-width: var(--max); margin: 0 auto; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--cream);
  border: 1px solid rgba(125,140,107,0.16);
  border-radius: var(--radius);
  padding: 2.2rem 1.9rem;
  margin: 0;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.testimonial-card blockquote {
  margin: 0 0 1.2rem;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.5;
}
.testimonial-card figcaption {
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: var(--sage-deep);
}
.quote-mark {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 4.5rem;
  line-height: 0.8;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-style: normal;
}

.testimonial-share {
  margin-top: 3rem;
  text-align: center;
}
.testimonial-form {
  max-width: 640px;
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  text-align: left;
}
.testimonial-form[hidden] { display: none; }
.testimonial-form-note {
  grid-column: 1 / -1;
  color: var(--ink-soft);
  font-size: 0.9rem;
  background: var(--sand);
  border: 1px solid rgba(125,140,107,0.25);
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  margin: 0;
}
.testimonial-form .btn { grid-column: 1 / -1; justify-self: center; margin-top: 0.5rem; }

/* ---------- PHILOSOPHY ---------- */
.philosophy { background: var(--ink); color: var(--sand); }
.philosophy-inner { max-width: var(--max); margin: 0 auto; text-align: center; }
.philosophy h2 { color: var(--cream); }
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
  text-align: left;
}
.philosophy-grid h3 { color: var(--gold); font-size: 1.9rem; }
.philosophy-grid p { color: rgba(246, 241, 233, 0.78); margin: 0; }

/* ---------- CONTACT ---------- */
.contact { background: var(--sand); }
.contact-inner { max-width: 720px; margin: 0 auto; }
.contact-lede { color: var(--ink-soft); max-width: 560px; margin: 0 auto 2.5rem; }
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.hp-field {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.field { display: flex; flex-direction: column; }
.field-full { grid-column: 1 / -1; }
.field label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 0.4rem;
}
.field input, .field textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(125,140,107,0.35);
  border-radius: 14px;
  background: var(--cream);
  color: var(--ink);
  resize: vertical;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--sage-deep);
  box-shadow: 0 0 0 3px rgba(125,140,107,0.18);
}
.contact-form .btn { grid-column: 1 / -1; justify-self: center; margin-top: 0.5rem; }
.form-note {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--sage-deep);
  font-size: 0.95rem;
  min-height: 1.2em;
  margin: 0;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--sage-deep);
  color: var(--sand);
  padding: 3.5rem clamp(1.4rem, 5vw, 3rem) 2rem;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-logo {
  width: 76px; height: 76px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--cream);
  padding: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}
.footer-brand p { margin: 0; font-family: "Cormorant Garamond", serif; font-size: 1.25rem; }
.footer-brand small { font-family: "Jost", sans-serif; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.8; }
.footer-tag { margin: 0; font-style: italic; font-family: "Cormorant Garamond", serif; font-size: 1.2rem; color: var(--gold); }
.footer-copy {
  max-width: var(--max);
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(246,241,233,0.18);
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.75;
}

/* ---------- REVEAL ANIMATION ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(125,140,107,0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .nav-links.open { max-height: 360px; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links li a { display: block; padding: 1rem; }
  .nav-cta { border-radius: 0; }
  .hero { flex-direction: column; min-height: auto; }
  .hero-right { flex: none; width: 100%; min-height: 55vw; max-height: 480px; order: -1; }
  .hero-left { flex: none; width: 100%; padding: 2.8rem 1.6rem; }
  .hero-left-inner { max-width: 100%; }
  .about { grid-template-columns: 1fr; text-align: center; }
  .about-tags { justify-content: center; }
  .pillars, .cards, .philosophy-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .contact-form, .testimonial-form { grid-template-columns: 1fr; }
}
