/* ==========================================================================
   Believe Life Coaching, believelifecoach.co.uk
   UK life & leadership coaching for adults at meaningful turning points.
   --------------------------------------------------------------------------
   Palette: Pastoral, Moss green + dusty rose + ivory
   Calm, journal-like, considered. Adult, not motivational, not therapy.
   ========================================================================== */

:root {
  --ink:           #2A2823;
  --ink-soft:      #5A554B;
  --ink-mute:      #837D70;
  --moss:          #5C6E48;
  --moss-deep:     #3D4B30;
  --moss-soft:     #8FA478;
  --rose:          #C29080;
  --rose-deep:     #965A4A;
  --rose-soft:     #E4C5BA;
  --ivory:         #F5EFE0;
  --ivory-warm:    #E9DEC4;
  --rule:          #CFC5A6;
  --rule-soft:     #DCD3B5;
  --white:         #FFFFFF;

  --radius: 2px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 2px rgba(42,40,35,0.04), 0 2px 6px rgba(42,40,35,0.03);
  --shadow-md: 0 4px 14px rgba(42,40,35,0.05), 0 12px 28px rgba(42,40,35,0.04);

  --font-display: 'Petrona', Georgia, serif;
  --font-sans:    'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --container: 1120px;
  --reading:   720px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a {
  color: var(--rose-deep);
  text-decoration: none;
  border-bottom: 1px solid rgba(150,90,74,0.25);
  transition: border-color .2s ease, color .2s ease;
}
a:hover { color: var(--rose); border-bottom-color: var(--rose); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--moss-deep);
  font-weight: 300;
  line-height: 1.22;
  margin: 0 0 .7em;
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(2.2rem, 4.8vw, 3.4rem); font-weight: 300; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.35rem); font-weight: 300; }
h3 { font-size: 1.22rem; font-weight: 500; color: var(--moss-deep); }
h4 { font-size: 1rem; font-weight: 600; color: var(--moss-deep); }
p  { margin: 0 0 1.1em; color: var(--ink); }

em, .italic { font-family: var(--font-display); font-style: italic; font-weight: 300; }

.container {
  width: 100%;
  max-width: var(--container);
  padding: 0 28px;
  margin: 0 auto;
}

/* Eyebrow */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 1.2rem;
  border: none;
}
.eyebrow.on-dark { color: var(--rose-soft); }

/* Section title */
.section-title {
  max-width: var(--reading);
  margin: 0 auto 3.4rem;
}
.section-title.center { text-align: center; }
.section-title h2 { margin-bottom: .8rem; }
.section-title p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
}

/* Ornament divider */
.ornament {
  display: block;
  margin: 0 auto 2.2rem;
  width: 56px;
  height: 28px;
  color: var(--rose);
  opacity: 0.7;
}
.ornament svg { width: 100%; height: 100%; }
.ornament.center { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: 14px 30px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all .25s ease;
  text-align: center;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--moss-deep);
  color: var(--ivory);
  border-color: var(--moss-deep);
}
.btn-primary:hover { background: var(--moss); border-color: var(--moss); color: var(--ivory); }
.btn-outline {
  background: transparent;
  color: var(--moss-deep);
  border-color: var(--moss-deep);
}
.btn-outline:hover { background: var(--moss-deep); color: var(--ivory); }
.btn-outline.on-dark { color: var(--ivory); border-color: rgba(245,239,224,0.5); }
.btn-outline.on-dark:hover { background: var(--ivory); color: var(--moss-deep); border-color: var(--ivory); }
.btn-large { padding: 16px 36px; font-size: 0.95rem; }
.btn { border-bottom: 1px solid transparent; }
.btn-primary, .btn-outline { border-bottom-color: currentColor; }
.btn-primary { border-bottom-color: var(--moss-deep); }
.btn-primary:hover { border-bottom-color: var(--moss); }

/* Topbar */
.topbar {
  background: var(--moss-deep);
  color: var(--ivory);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 28px;
  gap: 24px;
}
.topbar-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 0.88rem;
  letter-spacing: 0;
}
.topbar-tagline svg { width: 14px; height: 14px; color: var(--rose-soft); }
.topbar-meta {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}
.topbar-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ivory);
}
.topbar-meta svg { width: 13px; height: 13px; color: var(--rose-soft); }

/* Nav */
.nav {
  background: var(--ivory);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--moss-deep);
  border: none;
}
.brand:hover { color: var(--moss); }
.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--moss-deep);
  color: var(--rose-soft);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.4rem;
  border-radius: 50%;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.18rem;
  color: var(--moss-deep);
  letter-spacing: -0.005em;
}
.brand-sub {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  color: var(--moss-deep);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 6px 2px;
  position: relative;
  border: none;
}
.nav-menu a:hover { color: var(--rose-deep); }
.nav-menu a.active { color: var(--rose-deep); }
.nav-menu a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--rose);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--moss-deep);
}
.hamburger svg { width: 22px; height: 22px; }

/* Mobile drawer */
.scrim {
  position: fixed;
  inset: 0;
  background: rgba(42,40,35,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 90;
}
.scrim.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(320px, 86vw);
  background: var(--ivory);
  padding: 32px 28px;
  transform: translateX(110%);
  transition: transform .3s ease;
  z-index: 100;
  display: flex;
  flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-close {
  align-self: flex-end;
  color: var(--moss-deep);
  margin-bottom: 14px;
}
.drawer-close svg { width: 22px; height: 22px; }
.drawer ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.drawer ul a {
  display: block;
  padding: 14px 4px;
  color: var(--moss-deep);
  font-weight: 500;
  font-size: 1rem;
  border: none;
  border-bottom: 1px solid var(--rule-soft);
}
.drawer-cta { width: 100%; margin-bottom: 28px; }
.drawer-meta {
  margin-top: auto;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
}

/* Hero */
.hero {
  background: var(--ivory);
  padding: 110px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, var(--rose-soft) 0%, transparent 70%);
  opacity: 0.45;
  pointer-events: none;
  border-radius: 50%;
}
.hero::after {
  content: "";
  position: absolute;
  left: -160px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(143,164,120,0.35) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.hero h1 {
  color: var(--moss-deep);
  margin-bottom: 1.2rem;
  font-weight: 300;
}
.hero h1 .italic {
  color: var(--rose-deep);
  font-style: italic;
}
.hero-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.3rem;
  color: var(--ink-soft);
  margin: 0 auto 1.6rem;
  max-width: 620px;
  line-height: 1.55;
}
.hero-lead {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 auto 2.2rem;
  max-width: 620px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 0;
}
.hero-actions.left { justify-content: flex-start; }

/* Trust strip */
.trust {
  background: var(--ivory-warm);
  padding: 44px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  text-align: center;
}
.trust-item .label {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--moss-deep);
  margin-bottom: 4px;
}
.trust-item .desc {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

/* Sections */
.section-light  { background: var(--ivory);      padding: 110px 0; }
.section-warm   { background: var(--ivory-warm); padding: 110px 0; }
.section-dark   { background: var(--moss-deep);  color: var(--ivory); padding: 120px 0; position: relative; overflow: hidden; }
.section-dark h2, .section-dark h3 { color: var(--ivory); }
.section-dark p { color: rgba(245,239,224,0.86); }
.section-dark .eyebrow { color: var(--rose-soft); }

/* Coaching offers, vertical sequence with hairlines */
.offers {
  max-width: 820px;
  margin: 0 auto;
}
.offer {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 36px;
  padding: 36px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.offer:last-child { border-bottom: 1px solid var(--rule); }
.offer-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 2.4rem;
  color: var(--rose-deep);
  line-height: 1;
  letter-spacing: -0.01em;
}
.offer h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.45rem;
  color: var(--moss-deep);
  margin-bottom: 0.8rem;
}
.offer p { margin: 0 0 0.6rem; color: var(--ink); font-size: 1rem; line-height: 1.75; }
.offer p:last-child { margin-bottom: 0; }
.offer .for {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  color: var(--ink-soft);
  font-size: 0.98rem;
  display: block;
  margin-top: 6px;
}

/* Engagement shapes */
.shapes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  max-width: 980px;
  margin: 0 auto;
}
.shape {
  text-align: center;
  padding: 36px 28px;
  background: var(--ivory);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  position: relative;
}
.shape .term {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--rose-deep);
  letter-spacing: 0;
  margin-bottom: 14px;
  display: block;
}
.shape h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
  margin-bottom: 12px;
}
.shape p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }

/* Process, small rose circles */
.process {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}
.process::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--rule);
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--rose-soft);
  color: var(--moss-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  margin: 0 auto 20px;
  border: 1px solid var(--rose);
}
.process-step h3 { margin-bottom: 8px; font-size: 1.15rem; font-family: var(--font-display); font-weight: 400; }
.process-step p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; line-height: 1.65; }

/* Pull quote section */
.pullquote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.pullquote .mark {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 4rem;
  color: var(--rose-soft);
  line-height: 1;
  margin-bottom: -10px;
}
.pullquote blockquote {
  margin: 0 0 1.4rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1.45;
  color: var(--ivory);
}
.pullquote cite {
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-soft);
}

/* FAQ */
.faq-wrap {
  max-width: 780px;
  margin: 0 auto;
}
.faq {
  border-bottom: 1px solid var(--rule);
  padding: 4px 0;
}
.faq:first-child { border-top: 1px solid var(--rule); }
.faq summary {
  padding: 22px 40px 22px 4px;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--moss-deep);
  cursor: pointer;
  list-style: none;
  position: relative;
  font-family: var(--font-display);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-right: 1.5px solid var(--rose-deep);
  border-bottom: 1.5px solid var(--rose-deep);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .25s ease;
}
.faq[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq-body {
  padding: 0 4px 22px;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.8;
}
.faq-body p { margin: 0; color: var(--ink); }

/* CTA */
.cta-banner {
  background: var(--ivory-warm);
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.cta-banner h2 {
  max-width: 700px;
  margin: 0 auto 1rem;
  font-weight: 300;
}
.cta-banner p {
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.15rem;
}
.cta-banner .hero-actions { justify-content: center; }

/* Page hero (inner pages) */
.page-hero {
  background: var(--ivory);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -180px;
  transform: translateX(-50%);
  width: 720px;
  height: 360px;
  background: radial-gradient(ellipse, var(--rose-soft) 0%, transparent 65%);
  opacity: 0.35;
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.page-hero h1 {
  margin-bottom: 1rem;
  font-weight: 300;
}
.page-hero h1 .italic { color: var(--rose-deep); }
.page-hero p {
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.2rem;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.55;
}

/* Prose */
.prose {
  max-width: var(--reading);
  margin: 0 auto;
  font-size: 1.04rem;
  line-height: 1.85;
}
.prose h2 {
  margin-top: 2.6rem;
  margin-bottom: 0.9rem;
  font-weight: 400;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  margin-top: 1.8rem;
  margin-bottom: 0.6rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.2rem;
}
.prose p { color: var(--ink); }
.prose ul {
  color: var(--ink);
  padding-left: 0;
  list-style: none;
  margin-bottom: 1.4rem;
}
.prose ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 0.7rem;
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 10px;
  height: 1px;
  background: var(--rose);
}
.prose blockquote {
  margin: 2rem 0;
  padding: 0 0 0 24px;
  border-left: 2px solid var(--rose);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.18rem;
  color: var(--moss-deep);
  line-height: 1.55;
}

/* Two-column: who is / who isn't */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 920px;
  margin: 0 auto;
}
.who-col h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--rule);
}
.who-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.who-col li {
  position: relative;
  padding: 10px 0 10px 24px;
  font-size: 0.98rem;
  color: var(--ink);
}
.who-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 12px;
  height: 1px;
  background: var(--rose);
}
.who-col.is li::before { background: var(--moss-soft); }
.who-col.isnt li::before { background: var(--rose); }

/* Contact */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-info h2 { margin-bottom: 1.2rem; font-weight: 400; }
.contact-info p { font-size: 1rem; margin-bottom: 1.6rem; color: var(--ink); }
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}
.contact-row:last-child { border-bottom: 0; }
.contact-row svg { width: 20px; height: 20px; color: var(--rose-deep); flex-shrink: 0; margin-top: 4px; }
.contact-row strong {
  display: block;
  color: var(--moss-deep);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-row span { color: var(--ink); font-size: 0.98rem; }
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-sm);
}
.form-card iframe {
  width: 100%;
  border: 0;
  min-height: 750px;
  display: block;
  border-radius: 0;
}
.intro-call {
  background: var(--ivory-warm);
  border: 1px solid var(--rule);
  padding: 28px;
  border-radius: var(--radius-lg);
  margin-top: 28px;
}
.intro-call h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.intro-call p { margin: 0; font-size: 0.96rem; color: var(--ink); }

/* Footer */
.footer {
  background: var(--moss-deep);
  color: rgba(245,239,224,0.78);
  padding: 80px 0 32px;
}
.footer a { color: rgba(245,239,224,0.78); border-bottom: none; }
.footer a:hover { color: var(--rose-soft); }
.footer h4 {
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer .brand .brand-name { color: var(--ivory); }
.footer .brand .brand-sub  { color: rgba(245,239,224,0.6); }
.footer .brand .brand-mark { background: var(--rose-deep); color: var(--ivory); }
.footer .brand:hover { color: var(--rose-soft); }
.footer p { color: rgba(245,239,224,0.7); font-size: 0.92rem; margin: 14px 0; line-height: 1.7; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 9px; }
.footer ul a { font-size: 0.92rem; }
.footer-meta {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(245,239,224,0.7);
}
.footer-meta-row svg { width: 14px; height: 14px; color: var(--rose-soft); }
.footer-bottom {
  border-top: 1px solid rgba(245,239,224,0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(245,239,224,0.55);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
}

/* Responsive */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .process { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .process::before { display: none; }
  .who-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 780px) {
  .topbar-tagline { display: none; }
  .topbar-meta { gap: 14px; }
  .nav-menu { display: none; }
  .hamburger { display: inline-flex; }
  .nav-cta .btn { display: none; }
  .hero { padding: 80px 0 80px; }
  .section-light, .section-warm, .section-dark, .cta-banner { padding: 80px 0; }
  .offer { grid-template-columns: 56px 1fr; gap: 22px; padding: 30px 0; }
  .offer-num { font-size: 1.8rem; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-actions .btn { flex: 1; }
  .topbar-meta span:not(:last-child) { display: none; }
  .process { grid-template-columns: 1fr; }
  .hero-sub { font-size: 1.1rem; }
}
