/* ============================================================
   RESONANT CHOICES — GLOBAL STYLESHEET
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,700;1,9..144,300;1,9..144,700&family=Outfit:wght@300;400;500&display=swap');

/* --- Variables --- */
:root {
  --white:    #FFFFFF;
  --beige:    #F7F5F3;
  --pink:     #FFF8F8;
  --section:  #2A2A2E;
  --deep:     #1E1E24;
  --coral:    #FF5E6C;
  --coral-dk: #E04050;

  --f-head: 'Fraunces', Georgia, serif;
  --f-body: 'Outfit', system-ui, sans-serif;

  --nav-h:  72px;
  --cw:     1200px;
  --px:     clamp(1.5rem, 5vw, 4rem);
  --py:     clamp(5rem, 9vw, 9rem);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  font-weight: 300;
  color: var(--deep);
  background: var(--white);
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-h);
}
img { display: block; max-width: 100%; }
a { color: inherit; }
ul { list-style: none; }

/* --- Layout --- */
.container {
  max-width: var(--cw);
  margin: 0 auto;
  padding-left: var(--px);
  padding-right: var(--px);
}
.section { padding-top: var(--py); padding-bottom: var(--py); }

/* --- Backgrounds --- */
.bg-white   { background: var(--white); }
.bg-beige   { background: var(--beige); }
.bg-section { background: var(--section); }
.bg-deep    { background: var(--deep); }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--f-head);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
p { line-height: 1.9; text-wrap: pretty; }
p + p { margin-top: 1.2em; }

.light-italic {
  font-weight: 300;
  font-style: italic;
}
.overline {
  display: block;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1.25rem;
}

/* Dark section text */
.bg-section h1, .bg-section h2, .bg-section h3 { color: var(--white); }
.bg-section p  { color: rgba(255,255,255,0.72); }
.bg-deep    h1, .bg-deep h2, .bg-deep h3    { color: var(--white); }
.bg-deep    p  { color: rgba(255,255,255,0.60); }
.bg-section .overline { color: var(--coral); }
.bg-deep    .overline { color: var(--coral); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 0.77rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2.1rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-coral  { background: var(--coral); color: var(--white); }
.btn-coral:hover { background: var(--coral-dk); }

.btn-outline {
  background: transparent;
  color: var(--deep);
  border: 1.5px solid rgba(30,30,36,0.28);
}
.btn-outline:hover { background: var(--deep); color: var(--white); border-color: var(--deep); }

.btn-outline-wh {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline-wh:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn-sm { padding: 0.65rem 1.3rem; font-size: 0.72rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--deep);
  transition: color 0.2s;
}
.link-arrow:hover { color: var(--coral); }
.link-arrow-wh { color: rgba(255,255,255,0.8); }
.link-arrow-wh:hover { color: var(--white); }
.link-arrow-coral { color: var(--coral); }
.link-arrow-coral:hover { color: var(--coral-dk); }

/* --- Navigation --- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: box-shadow 0.3s;
}
.site-nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.07); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--cw);
  margin: 0 auto;
  padding: 0 var(--px);
  gap: 2rem;
}
.nav-logo {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--deep);
  text-decoration: none;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}
.nav-links > li > a {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--deep);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--coral); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}
.nav-dropdown > a::after {
  content: '';
  display: block;
  width: 8px;
  height: 5px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: currentColor;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.nav-dropdown:hover > a::after { transform: rotate(180deg); }
.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  min-width: 230px;
  padding: 0.5rem;
  z-index: 10;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}
/* Invisible bridge fills the gap so the cursor never loses the hover zone */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -0.85rem;
  left: 0;
  right: 0;
  height: 0.85rem;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  font-family: var(--f-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--deep);
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:hover { background: var(--beige); color: var(--coral); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--deep);
  transition: all 0.3s;
}

/* Mobile accordion (Services inside mobile menu) */
.mobile-accordion { border-bottom: 1px solid rgba(0,0,0,0.08); }
.mobile-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  font-family: var(--f-head);
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--deep);
  padding: 1rem 0;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.mobile-accordion-trigger:hover { color: var(--coral); }
.mobile-accordion-arrow {
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
  color: var(--coral);
  transition: transform 0.25s ease;
  margin-left: 0.5rem;
  flex-shrink: 0;
}
.mobile-accordion.open .mobile-accordion-arrow { transform: rotate(90deg); }
.mobile-accordion-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.28s ease;
}
.mobile-accordion.open .mobile-accordion-panel { max-height: 200px; }
.mobile-menu .mobile-accordion-panel a {
  font-size: 1.25rem;
  padding: 0.6rem 0 0.6rem 1.1rem;
  border-bottom: none;
  color: rgba(30,30,36,0.62);
}
.mobile-menu .mobile-accordion-panel a:last-child { padding-bottom: 1.1rem; }
.mobile-menu .mobile-accordion-panel a:hover { color: var(--coral); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 190;
  display: flex;
  flex-direction: column;
  padding: 6rem 2.5rem 3rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  overflow-y: auto;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--f-head);
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--deep);
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--coral); }
.mobile-menu .mobile-cta {
  margin-top: 2rem;
  border-bottom: none !important;
  font-family: var(--f-body) !important;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--coral);
  color: var(--white) !important;
  padding: 1rem 2rem;
  border-radius: 4px;
  text-align: center;
}
.mobile-menu-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--deep);
  padding: 0.5rem;
  line-height: 1;
}

/* --- Quote block --- */
.quote-block {
  border-left: 3px solid var(--coral);
  background: var(--pink);
  padding: 1.75rem 1.5rem 1.75rem 2rem;
}
.quote-block p {
  font-family: var(--f-head);
  font-weight: 300;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--deep);
}
.quote-block cite {
  display: block;
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-top: 0.85rem;
}

/* --- Photo placeholder --- */
.photo-ph {
  background: linear-gradient(150deg, #EDE8E1 0%, #CFC8BF 100%);
  border-radius: 4px;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
}
.photo-ph::after {
  content: 'Photo';
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.22);
}

/* --- Hero --- */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  padding-top: clamp(4rem, 6vw, 6rem);
  padding-bottom: clamp(4rem, 6vw, 6rem);
}
.hero-content { max-width: 860px; }
.hero-split {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: stretch;
  min-height: calc(100vh - var(--nav-h) - clamp(4rem, 6vw, 6rem) * 2);
}
.hero-split .hero-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-photo {
  width: 100%;
  display: flex;
  align-items: stretch;
}
.hero-photo image-slot {
  flex: 1;
  min-height: 480px;
}
@media (max-width: 680px) {
  .hero-split { grid-template-columns: 1fr; min-height: unset; }
  .hero-photo { max-width: 280px; margin: 0 auto; }
  .hero-photo image-slot { min-height: 320px; }
}
.hero-h1 {
  font-family: var(--f-head);
  font-size: clamp(2.6rem, 6.5vw, 5.75rem);
  font-weight: 700;
  line-height: 1.07;
  color: var(--deep);
  margin-bottom: 0.75rem;
}
.hero-h1 .li { display: block; font-weight: 300; font-style: italic; }
.hero-sub {
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(30,30,36,0.45);
  margin-bottom: 2.25rem;
}
.hero-body { font-size: 1.05rem; max-width: 640px; color: rgba(30,30,36,0.72); }
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* Hero entrance */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
.hero .overline   { animation: fadeUp 0.6s ease both; }
.hero .hero-h1    { animation: fadeUp 0.6s ease 0.12s both; }
.hero .hero-sub   { animation: fadeUp 0.6s ease 0.22s both; }
.hero .hero-body  { animation: fadeUp 0.6s ease 0.32s both; }
.hero .hero-ctas  { animation: fadeUp 0.6s ease 0.44s both; }

/* --- Scroll fade-in --- */
.fi {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fi.on { opacity: 1; transform: none; }
.fi.d1 { transition-delay: 0.1s; }
.fi.d2 { transition-delay: 0.2s; }
.fi.d3 { transition-delay: 0.3s; }
.fi.d4 { transition-delay: 0.4s; }

/* --- Problem grid (text + side quote) --- */
.problem-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 720px;
}
.side-quote {
  position: absolute;
  right: -5rem;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.side-quote-line {
  width: 1.5px;
  height: 100%;
  background: var(--coral);
  opacity: 0.35;
  flex-shrink: 0;
}
.side-quote-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: var(--f-head);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: var(--coral);
  letter-spacing: 0.04em;
  white-space: nowrap;
  opacity: 0.8;
}
@media (max-width: 1100px) {
  .side-quote { right: -3rem; }
}
@media (max-width: 960px) {
  .side-quote { display: none; }
  .side-quote-mobile {
    display: block;
    font-family: var(--f-head);
    font-weight: 300;
    font-style: italic;
    font-size: 1rem;
    color: var(--coral);
    border-left: 1.5px solid var(--coral);
    padding-left: 1rem;
    margin-top: 2rem;
    opacity: 0.85;
  }
}
@media (min-width: 961px) {
  .side-quote-mobile { display: none; }
}
.pivot {
  font-family: var(--f-head);
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  font-weight: 300;
  font-style: italic;
  color: var(--deep);
  margin-top: 2.25rem;
  line-height: 1.3;
}

/* --- Service cards grid --- */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.s-card {
  border: 1px solid rgba(30,30,36,0.1);
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}
.s-card:hover {
  border-color: var(--coral);
  box-shadow: 0 8px 32px rgba(255,94,108,0.07);
}
.s-card-num {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
}
.s-card h3 { font-size: clamp(1.2rem, 2.5vw, 1.55rem); line-height: 1.2; }
.s-card p  { font-size: 0.96rem; flex: 1; }

/* --- About grid (photo + text) --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: stretch;
}
.about-photo { aspect-ratio: 4/5; }

/* --- Checklist (dark sections) --- */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2.5rem 0;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  font-family: var(--f-head);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}
.checklist li::before {
  content: '—';
  color: var(--coral);
  font-style: normal;
  flex-shrink: 0;
  line-height: 1.5;
}

/* --- Courage / full-width dark centred --- */
.courage-wrap {
  text-align: center;
  padding: clamp(6rem, 12vw, 12rem) var(--px);
}
.courage-h {
  font-family: var(--f-head);
  font-size: clamp(2rem, 5.5vw, 4.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.15;
}
.courage-sub {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.55);
  max-width: 460px;
  margin: 1.75rem auto 0;
}

/* --- About page hero (full split) --- */
.about-hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 2fr 3fr;
}
.about-hero-photo {
  background: linear-gradient(155deg, #EDE8E1 0%, #C5BBB1 100%);
  min-height: 500px;
  position: relative;
}
.about-hero-photo::after {
  content: 'Photo';
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  font-family: var(--f-body);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.2);
}
.about-hero-text {
  padding: clamp(3rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.about-hero-text h1 {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  margin-bottom: 1.75rem;
}

/* --- Journey chapters --- */
.journey { display: flex; flex-direction: column; gap: 0; }
.chapter {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 3rem;
  padding: 3rem 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.chapter:last-child { border-bottom: 1px solid rgba(0,0,0,0.08); }
.chapter-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: stretch;
}
.chapter-body > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.chapter-body image-slot {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
}
@media (max-width: 760px) {
  .chapter-body { grid-template-columns: 1fr; }
}
.chapter-label {
  font-family: var(--f-head);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--deep);
  line-height: 1.1;
  padding-top: 0.25rem;
}
.chapter-label span {
  display: block;
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
  margin-top: 0.5rem;
}

/* --- Beliefs grid --- */
.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.belief-card {
  border: 1px solid rgba(30,30,36,0.1);
  padding: 2rem 1.75rem;
  background: var(--white);
}
.belief-card p {
  font-family: var(--f-head);
  font-weight: 300;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--deep);
}

/* --- Credentials --- */
.creds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}
.cred-group h4 {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1.25rem;
  font-style: normal;
}
.cred-group ul { display: flex; flex-direction: column; gap: 0.6rem; }
.cred-group li {
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.65);
  padding-left: 1rem;
  position: relative;
}
.cred-group li::before {
  content: '·';
  color: var(--coral);
  position: absolute;
  left: 0;
}

/* --- Process steps --- */
.steps { display: flex; flex-direction: column; gap: 0; margin-top: 3rem; }
.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 2rem;
  padding: 2.25rem 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid rgba(0,0,0,0.08); }
.step-num {
  font-family: var(--f-head);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(30,30,36,0.12);
  line-height: 1;
  padding-top: 0.2rem;
}
.step h4 {
  font-family: var(--f-head);
  font-size: 1.2rem;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 0.5rem;
}

/* --- Insights placeholder --- */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  opacity: 0.45;
}
.insight-ph {
  border: 1px solid rgba(30,30,36,0.12);
  border-radius: 4px;
  overflow: hidden;
}
.insight-ph-img {
  background: var(--beige);
  height: 200px;
}
.insight-ph-body { padding: 1.5rem; }
.insight-ph-body .line {
  height: 10px;
  background: rgba(30,30,36,0.1);
  border-radius: 2px;
  margin-bottom: 0.75rem;
}
.insight-ph-body .line.short { width: 60%; }

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
  margin-top: 3.5rem;
}
.contact-info p { font-size: 1rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.contact-item:last-child { border-bottom: 1px solid rgba(0,0,0,0.08); }
.contact-label {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  min-width: 80px;
  padding-top: 0.1rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-form input,
.contact-form textarea {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--deep);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(30,30,36,0.2);
  padding: 0.75rem 0;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
  line-height: 1.6;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(30,30,36,0.35); }
.contact-form input:focus,
.contact-form textarea:focus { border-bottom-color: var(--coral); }
.contact-form label {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(30,30,36,0.45);
  display: block;
  margin-bottom: 0.15rem;
}
.form-group { display: flex; flex-direction: column; }

/* --- Footer --- */
.site-footer {
  background: var(--deep);
  padding: clamp(3rem, 6vw, 5rem) var(--px);
}
.footer-inner {
  max-width: var(--cw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
}
.footer-logo {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 1rem;
}
.footer-desc {
  font-size: 0.82rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.38);
  margin-bottom: 1.75rem;
}
.footer-social { display: flex; gap: 0.75rem; margin-bottom: 2rem; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--coral); color: var(--coral); }
.footer-legal {
  font-size: 0.7rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.25);
}
.footer-legal a {
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--coral); }
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a {
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--coral); }

/* --- Page header (inner pages) --- */
.page-header {
  padding: 0 0 clamp(3rem, 5vw, 5rem);
}
.page-header h1 {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  max-width: 760px;
  margin-top: 1rem;
}
.page-header p {
  max-width: 580px;
  font-size: 1.05rem;
  margin-top: 1.5rem;
  color: rgba(30,30,36,0.72);
}

/* --- Divider --- */
.rule { border: none; border-top: 1px solid rgba(0,0,0,0.08); margin: 0; }
.rule-coral { border-top-color: var(--coral); border-top-width: 2px; max-width: 48px; }

/* --- Testimonial --- */
.testimonial-wrap {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-open {
  font-family: var(--f-head);
  font-size: 5rem;
  font-weight: 700;
  color: var(--coral);
  opacity: 0.18;
  line-height: 0.7;
  display: block;
  margin-bottom: 1.25rem;
}
.testimonial-text {
  font-family: var(--f-head);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.8;
  color: var(--deep);
}
.testimonial-attr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #EDE8E1 0%, #C8BFB5 100%);
  flex-shrink: 0;
}
.testimonial-person strong {
  display: block;
  font-family: var(--f-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--deep);
}
.testimonial-person span {
  font-family: var(--f-body);
  font-size: 0.78rem;
  color: rgba(30,30,36,0.48);
}

/* --- Service card icon --- */
.s-card-icon {
  width: 32px;
  height: 32px;
  color: var(--coral);
  opacity: 0.65;
  flex-shrink: 0;
}

/* --- Belief card icon --- */
.belief-icon {
  width: 22px;
  height: 22px;
  color: var(--coral);
  opacity: 0.55;
  margin-bottom: 0.75rem;
  flex-shrink: 0;
}

/* ===== CHOSEN QUOTE STYLES ===== */

/* B — Bold Statement (section-level) */
.q-bold-wrap {
  padding: clamp(3rem, 6vw, 5rem) 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: start;
}
.q-bold-wrap .q-num {
  font-family: var(--f-head);
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 700;
  color: rgba(30,30,36,0.06);
  line-height: 0.85;
  flex-shrink: 0;
}
.q-bold-wrap .q-text {
  font-family: var(--f-head);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.75rem);
  line-height: 1.3;
  color: var(--deep);
}
@media (max-width: 760px) {
  .q-bold-wrap { grid-template-columns: 1fr; }
  .q-bold-wrap .q-num { display: none; }
}

/* 02 — Serif Statement (inline) */
.q-serif { padding: 0.25rem 0; }
.q-serif .q-rule {
  width: 36px;
  height: 2px;
  background: var(--coral);
  margin-bottom: 1.25rem;
}
.q-serif p {
  font-family: var(--f-head);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  line-height: 1.55;
  color: var(--deep);
}

/* 05 — Ruled Pull (inline/centered) */
.q-ruled {
  padding: 1.75rem 0;
  border-top: 1.5px solid var(--coral);
  border-bottom: 1.5px solid var(--coral);
  text-align: center;
}
.q-ruled p {
  font-family: var(--f-head);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  line-height: 1.6;
  color: var(--deep);
}

/* A — Dark Immersive (section) */
.q-dark-section {
  background: var(--section);
  padding: clamp(5rem, 10vw, 10rem) var(--px);
  text-align: center;
}
.q-dark-section .q-coral-mark {
  font-family: var(--f-head);
  font-size: 4rem;
  font-weight: 700;
  color: var(--coral);
  opacity: 0.45;
  line-height: 0.8;
  display: block;
  margin-bottom: 1.25rem;
}
.q-dark-section p {
  font-family: var(--f-head);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  line-height: 1.3;
  color: var(--white);
  max-width: 740px;
  margin: 0 auto;
}

/* B — Bold Statement (section) */
.q-bold-section {
  background: var(--white);
  padding: clamp(4rem, 8vw, 8rem) var(--px);
}
.q-bold-section .q-inner {
  max-width: var(--cw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}
.q-bold-section .q-bigmark {
  font-family: var(--f-head);
  font-size: clamp(6rem, 12vw, 11rem);
  font-weight: 700;
  color: rgba(30,30,36,0.07);
  line-height: 0.8;
  user-select: none;
  flex-shrink: 0;
}
.q-bold-section p {
  font-family: var(--f-head);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  line-height: 1.3;
  color: var(--deep);
  padding-top: 0.4rem;
}
@media (max-width: 600px) {
  .q-bold-section .q-inner { grid-template-columns: 1fr; }
  .q-bold-section .q-bigmark { display: none; }
}

/* --- Responsive --- */
@media (max-width: 960px) {
  .problem-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 320px; }
  .about-hero { grid-template-columns: 1fr; }
  .about-hero-photo { min-height: 400px; }
  .beliefs-grid { grid-template-columns: 1fr 1fr; }
  .creds-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .chapter { grid-template-columns: 1fr; gap: 1rem; }
  .chapter-label { font-size: 1.6rem; }
}

@media (max-width: 700px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { flex-direction: row; flex-wrap: wrap; gap: 0.75rem 1.5rem; }
  .beliefs-grid { grid-template-columns: 1fr; }
  .creds-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
}
