/* ==========================================================================
   RCT Consultancy - rctconsultancy.uk
   UK boutique management consultancy
   --------------------------------------------------------------------------
   Palette: Oxford navy + soft blush + cream
   Tone: Quietly editorial, slightly understated, magazine-like
   ========================================================================== */

:root {
  --navy:       #1B2D4A;
  --navy-deep:  #0E1A2E;
  --navy-soft:  #3B4F71;
  --blush:      #D6A597;
  --blush-deep: #A8746A;
  --blush-soft: #EBD3CA;
  --cream:      #F5EFE1;
  --cream-warm: #E7DDC4;
  --rule:       #CFC4A7;
  --ink:        #1B2D4A;
  --ink-soft:   #5A6680;
  --white:      #FFFFFF;

  --radius: 2px;
  --radius-lg: 4px;
  --shadow-sm: 0 1px 2px rgba(14,26,46,0.05);
  --shadow-md: 0 4px 18px rgba(14,26,46,0.08);

  --font-display: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-sans:    'Inter Tight', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --container: 1160px;
}

*, *::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.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a {
  color: var(--blush-deep);
  text-decoration: underline;
  text-decoration-color: var(--blush-soft);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color .2s ease, text-decoration-color .2s ease;
}
a:hover {
  color: var(--navy);
  text-decoration-color: var(--blush);
}
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 500;
  line-height: 1.18;
  margin: 0 0 .6em;
  letter-spacing: -0.012em;
}
h1 { font-size: clamp(2.5rem, 5.4vw, 3.9rem); font-weight: 500; }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.55rem); font-weight: 500; }
h3 { font-size: 1.35rem; font-weight: 500; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { margin: 0 0 1.05em; color: var(--ink-soft); }

em, i { font-style: italic; }

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

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush-deep);
  margin-bottom: 1.2rem;
}
.eyebrow.on-dark { color: var(--blush); }

.sub-italic {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--navy-soft);
  margin-top: .35rem;
  letter-spacing: -0.005em;
}

.blush-rule {
  display: block;
  width: 56px;
  height: 1.5px;
  background: var(--blush);
  margin: 1.4rem 0;
}
.blush-rule.centered { margin-left: auto; margin-right: auto; }

.section-title {
  text-align: center;
  margin-bottom: 3.2rem;
}
.section-title .blush-rule { margin: 1rem auto 1.4rem; }
.section-title h2 { margin-bottom: .4rem; }
.section-title .sub-italic { margin-bottom: 1rem; }
.section-title p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.04rem;
  color: var(--ink-soft);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: 14px 28px;
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: all .25s ease;
  cursor: pointer;
  text-align: center;
  border: 1px solid transparent;
  text-decoration: none;
  font-family: var(--font-sans);
}
.btn-primary {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
  position: relative;
}
.btn-primary:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: var(--cream);
  text-decoration: none;
  box-shadow: inset 0 -2px 0 var(--blush);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--cream);
  text-decoration: none;
}
.btn-outline.on-dark { color: var(--cream); border-color: rgba(245,239,225,0.5); }
.btn-outline.on-dark:hover { background: var(--cream); color: var(--navy); border-color: var(--cream); }
.btn-large { padding: 16px 34px; font-size: 0.98rem; }

/* Topbar */
.topbar {
  background: var(--navy-deep);
  color: var(--cream);
  font-size: 0.84rem;
  border-bottom: 1px solid rgba(245,239,225,0.06);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 28px;
  gap: 24px;
}
.topbar-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.04em;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 0.92rem;
}
.topbar-tagline svg { width: 14px; height: 14px; color: var(--blush); }
.topbar-meta {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}
.topbar-meta span,
.topbar-meta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cream);
  text-decoration: none;
}
.topbar-meta a:hover { color: var(--blush); }
.topbar-meta svg { width: 14px; height: 14px; color: var(--blush); }

/* Nav */
.nav {
  background: var(--cream);
  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(--navy);
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--blush);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: var(--radius);
  letter-spacing: -0.02em;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.brand-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--navy-soft);
  letter-spacing: 0.01em;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.94rem;
  padding: 6px 2px;
  position: relative;
  text-decoration: none;
}
.nav-menu a.active,
.nav-menu a:hover { color: var(--blush-deep); }
.nav-menu a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1.5px;
  background: var(--blush);
}
.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(--navy);
}
.hamburger svg { width: 22px; height: 22px; }

/* Mobile drawer */
.scrim {
  position: fixed;
  inset: 0;
  background: rgba(14,26,46,0.55);
  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(--cream);
  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(--navy);
  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: 4px;
}
.drawer ul a {
  display: block;
  padding: 12px 6px;
  color: var(--navy);
  font-weight: 500;
  font-size: 1rem;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
}
.drawer-cta { width: 100%; margin-bottom: 28px; }
.drawer-meta {
  margin-top: auto;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
  font-family: var(--font-display);
  font-style: italic;
}
.drawer-meta strong {
  font-family: var(--font-sans);
  font-style: normal;
  color: var(--navy);
}

/* Hero - quiet editorial */
.hero {
  background: var(--cream);
  padding: 110px 0 100px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.hero-glyph {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  opacity: 0.12;
  pointer-events: none;
  color: var(--blush-deep);
}
.hero-glyph svg { width: 100%; height: 100%; }
.hero-inner { position: relative; z-index: 2; max-width: 780px; }
.hero h1 {
  color: var(--navy);
  margin-bottom: .5rem;
  font-weight: 500;
}
.hero h1 .accent { font-style: italic; color: var(--navy-soft); font-weight: 400; }
.hero .sub-italic { margin-bottom: 1.2rem; font-size: 1.25rem; }
.hero .blush-rule { margin: 1.2rem 0; }
.hero-lead {
  color: var(--ink-soft);
  font-size: 1.12rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 640px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 2.4rem;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-style: italic;
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.hero-meta svg { width: 15px; height: 15px; color: var(--blush-deep); }

/* Sections */
.section-light { background: var(--cream); padding: 100px 0; }
.section-warm { background: var(--cream-warm); padding: 100px 0; }
.section-blush { background: var(--blush-soft); padding: 100px 0; }
.section-dark { background: var(--navy-deep); color: var(--cream); padding: 100px 0; position: relative; overflow: hidden; }
.section-dark h2,
.section-dark h3 { color: var(--cream); }
.section-dark .section-title p,
.section-dark p { color: rgba(245,239,225,0.78); }
.section-dark .sub-italic { color: var(--blush); }

/* Trust strip */
.trust {
  background: var(--cream-warm);
  padding: 50px 0;
  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-size: 1.18rem;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 4px;
}
.trust-item .desc {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* Services - vertical sequence, no card boxes, thin navy hairlines */
.services-list {
  max-width: 880px;
  margin: 0 auto;
}
.service-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-top: 1px solid var(--navy);
  align-items: start;
}
.service-row:last-child { border-bottom: 1px solid var(--navy); }
.service-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--blush-deep);
  letter-spacing: 0.04em;
  padding-top: 6px;
}
.service-num strong {
  display: block;
  font-style: normal;
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.service-body h3 { margin-bottom: 10px; font-size: 1.45rem; }
.service-body p { font-size: 1rem; margin-bottom: 12px; color: var(--ink-soft); }
.service-body .tags {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--navy-soft);
}
.service-body .tags li::before {
  content: "·";
  margin-right: 8px;
  color: var(--blush);
}
.service-body .tags li:first-child::before { display: none; }

/* Engagement formats - three column */
.formats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.format {
  background: var(--cream);
  padding: 30px 28px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  position: relative;
}
.format::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  width: 32px;
  height: 1.5px;
  background: var(--blush);
}
.format .duration {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--blush-deep);
  margin-bottom: 10px;
  margin-top: 14px;
}
.format h3 { margin-bottom: 10px; font-size: 1.25rem; }
.format p { margin: 0; font-size: 0.96rem; }

/* Process - small navy circles with blush numerals */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.process-step {
  text-align: center;
  padding: 8px 12px;
}
.process-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--blush);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.45rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.process-step h3 { margin-bottom: 8px; font-size: 1.2rem; }
.process-step p { font-size: 0.95rem; margin: 0; }

/* Who-we-work-with cards */
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.who-card {
  background: var(--cream);
  padding: 30px 28px;
  border-top: 2px solid var(--blush);
  border-bottom: 1px solid var(--rule);
}
.who-card .who-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--blush-deep);
  margin-bottom: 14px;
}
.who-card .who-icon svg { width: 28px; height: 28px; }
.who-card h3 { margin-bottom: 8px; font-size: 1.2rem; }
.who-card p { margin: 0; font-size: 0.95rem; }

/* Specialisms - simple list with hairlines */
.specialisms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.specialism {
  padding: 18px 22px;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--navy);
}
.specialism:last-child,
.specialism:nth-last-child(2):nth-child(odd) { border-bottom: 1px solid var(--rule); }
.specialism::before {
  content: "–";
  color: var(--blush-deep);
  font-style: italic;
}

/* Timeline */
.timeline {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: var(--rule);
}
.timeline-item {
  position: relative;
  padding: 0 0 36px 60px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: 6px;
  top: 4px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--blush);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.timeline-item h3 { margin-bottom: 6px; font-size: 1.18rem; }
.timeline-item .week {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--blush-deep);
  margin-bottom: 4px;
  display: block;
}
.timeline-item p { font-size: 0.96rem; margin: 0; }

/* FAQ */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.faq {
  border-bottom: 1px solid var(--rule);
  padding: 4px 0;
}
.faq summary {
  padding: 22px 0;
  font-weight: 500;
  font-size: 1.08rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  position: relative;
  font-family: var(--font-display);
  padding-right: 40px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--blush-deep);
  transition: transform .2s ease;
  font-weight: 400;
  font-family: var(--font-display);
}
.faq[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-body {
  padding: 0 0 22px;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.faq-body p { margin: 0; }

/* CTA banner */
.cta-banner {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 36px;
  transform: translateX(-50%);
  width: 60px;
  height: 1.5px;
  background: var(--blush);
}
.cta-banner h2 {
  color: var(--cream);
  max-width: 720px;
  margin: 0 auto 1rem;
  font-weight: 500;
}
.cta-banner .sub-italic { color: var(--blush); margin-bottom: 1rem; }
.cta-banner p {
  color: rgba(245,239,225,0.82);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.04rem;
}
.cta-banner .hero-actions { justify-content: center; margin: 0; }

/* Page hero (about, services, contact) */
.page-hero {
  background: var(--cream);
  padding: 90px 0 70px;
  text-align: center;
  border-bottom: 1px solid var(--rule);
}
.page-hero h1 {
  color: var(--navy);
  margin-bottom: .4rem;
}
.page-hero .sub-italic {
  max-width: 720px;
  margin: 0 auto .8rem;
  font-size: 1.2rem;
}
.page-hero .blush-rule { margin: 1.2rem auto 1.4rem; }
.page-hero p {
  color: var(--ink-soft);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.08rem;
}

/* Prose */
.prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.04rem;
}
.prose h2 {
  margin-top: 2.6rem;
  font-size: 1.7rem;
}
.prose h2:first-child { margin-top: 0; }
.prose h2 + .sub-italic { margin-top: -0.4rem; margin-bottom: 1rem; }
.prose p { color: var(--ink-soft); }
.prose ul {
  color: var(--ink-soft);
  padding-left: 0;
  margin-bottom: 1.4rem;
  list-style: none;
}
.prose ul li {
  margin-bottom: 0.7rem;
  padding-left: 22px;
  position: relative;
}
.prose ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--blush-deep);
}
.prose strong { color: var(--navy); font-weight: 600; }
.prose .blush-rule { margin: 2rem 0; }

/* Contact */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 { margin-bottom: .8rem; }
.contact-info .sub-italic { margin-bottom: 1.4rem; }
.contact-info p { font-size: 1.02rem; margin-bottom: 1.4rem; }
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
}
.contact-row:first-of-type { border-top: 1px solid var(--rule); }
.contact-row svg { width: 18px; height: 18px; color: var(--blush-deep); flex-shrink: 0; margin-top: 4px; }
.contact-row strong {
  display: block;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 2px;
  font-family: var(--font-sans);
}
.contact-row span { color: var(--ink-soft); font-size: 0.95rem; }
.form-card {
  background: var(--cream);
  border: 1px solid var(--rule);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.form-card iframe {
  width: 100%;
  border: 0;
  min-height: 770px;
  display: block;
}
.reassurance {
  margin-top: 30px;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1rem;
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  background: var(--navy-deep);
  color: rgba(245,239,225,0.75);
  padding: 70px 0 30px;
}
.footer h4 {
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: var(--font-sans);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer .brand .brand-name,
.footer .brand .brand-sub { color: var(--cream); }
.footer .brand .brand-sub { color: rgba(245,239,225,0.7); }
.footer .brand .brand-mark { background: var(--blush); color: var(--navy-deep); }
.footer p { color: rgba(245,239,225,0.72); font-size: 0.94rem; margin: 16px 0; font-family: var(--font-display); font-style: italic; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: rgba(245,239,225,0.72);
  font-size: 0.92rem;
  text-decoration: none;
}
.footer ul a:hover { color: var(--blush); }
.footer-meta {
  margin-top: 20px;
  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,225,0.72);
  font-family: var(--font-sans);
  font-style: normal;
}
.footer-meta-row svg { width: 15px; height: 15px; color: var(--blush); }
.footer-bottom {
  border-top: 1px solid rgba(245,239,225,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.84rem;
  color: rgba(245,239,225,0.55);
  font-family: var(--font-display);
  font-style: italic;
}

/* Responsive */
@media (max-width: 920px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 780px) {
  .topbar-tagline { display: none; }
  .nav-menu { display: none; }
  .hamburger { display: inline-flex; }
  .nav-cta .btn { display: none; }
  .hero { padding: 70px 0 80px; }
  .hero-glyph { opacity: 0.06; }
  .section-light, .section-warm, .section-blush, .section-dark { padding: 72px 0; }
  .page-hero { padding: 70px 0 56px; }
  .service-row { grid-template-columns: 1fr; gap: 16px; padding: 30px 0; }
  .service-num { padding-top: 0; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-meta { gap: 14px; }
  .hero-actions .btn { width: 100%; }
  .topbar-meta { gap: 14px; font-size: 0.78rem; }
}
