/* ============================================================
   Cranio — Barbara Mendoza · craniosacrale Arbeit
   Design system: Palette C (water) · Schibsted Grotesk + Hanken Grotesk
   ============================================================ */

:root {
  --bg:      #f3f4f4;
  --bg-warm: #f6f6f4;
  --cream:   #fafbfb;
  --panel:   #eaeded;
  --ink:     #232728;
  --ink-soft:#3a4244;
  --sub:     #5f6e73;
  --mute:    #8a999e;
  --line:    #dde1e2;
  --line-2:  #e7eaea;
  --accent:  #52717b;
  --accent-dk:#3b565f;
  --accent-ink:#2c454d;
  --mid:     #9bb0b6;

  --display: 'Schibsted Grotesk', system-ui, sans-serif;
  --body:    'Hanken Grotesk', system-ui, sans-serif;

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 4px;

  /* v2 tweak defaults */
  --t-body: 22px;
  --t-kicker: 22px;
  --t-nav: 22px;
  --t-hero-kicker: 25px;
  --t-hero-tag: 18px;
  --t-scrollcue: 16px;
  --t-lang: 13px;
  --t-cta: 15px;
  --t-masthead: 52px;
  --t-faq: 22px;
  --t-faq-ans: 18px;

  --shadow-sm: 0 1px 2px rgba(20,30,33,.04), 0 4px 16px -8px rgba(20,30,33,.12);
  --shadow-md: 0 18px 50px -24px rgba(20,30,33,.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  font-size: var(--t-body);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; letter-spacing: -.02em; margin: 0; }
p { margin: 0; text-wrap: pretty; }

/* ---------- shared rhythm ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.section { padding: clamp(72px, 11vw, 148px) 0; }
section[id], header[id] { scroll-margin-top: 76px; }
.kicker {
  font-family: var(--body);
  font-weight: 600;
  font-size: var(--t-kicker);
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--accent);
}
.kicker.on-dark { color: rgba(238,242,242,.85); }
.eyebrow-rule { display: inline-flex; align-items: center; gap: 14px; }
.eyebrow-rule::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity: .5; }

.lede { font-size: clamp(20px, 2.3vw, 26px); line-height: 1.5; color: var(--ink-soft); font-weight: 400; }
.muted { color: var(--sub); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--body); font-weight: 600; font-size: var(--t-cta); letter-spacing: .01em;
  padding: 13px 26px; border-radius: 999px; cursor: pointer; border: 1px solid transparent;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease, color .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 24px -14px rgba(59,86,95,.9); }
.btn-primary:hover { background: var(--accent-dk); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--accent); padding-left: 0; padding-right: 0; }
.btn-ghost .arrow { transition: transform .25s ease; }
.btn-ghost:hover .arrow { transform: translateX(4px); }

.txtlink { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--accent); border-bottom: 1.5px solid transparent; padding-bottom: 1px; transition: border-color .2s; }
.txtlink:hover { border-color: var(--accent); }
.txtlink .arrow { transition: transform .25s ease; }
.txtlink:hover .arrow { transform: translateX(4px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  color: #f1f5f5;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; filter: var(--hero-filter-top, none); }
.hero__veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(18,28,31,.55) 0%, rgba(18,28,31,.12) 26%, rgba(18,28,31,.18) 54%, rgba(18,28,31,.74) 100%);
}
.hero > .topnav, .hero > .hero__center, .hero > .hero__footer { position: relative; z-index: 2; }

/* top nav inside hero */
.topnav {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px var(--gutter) 0;
}
.topnav .nav-links { display: flex; gap: 26px; }
.topnav .nav-links a, .site-header .nav-links a { white-space: nowrap; }
.topnav .nav-links a {
  font-weight: 500; font-size: var(--t-nav); color: rgba(241,245,245,.92);
  position: relative; padding-bottom: 3px;
}
.topnav .nav-links a::after { content:""; position:absolute; left:0; bottom:0; width:0; height:1.5px; background: currentColor; transition: width .25s ease; }
.topnav .nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.lang { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: var(--t-lang); letter-spacing: .04em; }
.lang button { background: none; border: none; color: inherit; font: inherit; cursor: pointer; opacity: .6; padding: 2px; transition: opacity .2s; }
.lang button.is-active { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }
.lang .sep { opacity: .4; }

/* hero center masthead */
.hero__center {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 40px var(--gutter); gap: 0;
}
.hero__kicker { letter-spacing: .24em; font-size: var(--t-hero-kicker); text-transform: uppercase; font-weight: 600; color: rgba(241,245,245,.88); margin-bottom: 22px; max-width: 100%; }
.masthead { font-size: max(38px, min(var(--t-masthead), 12vw)); font-weight: 600; line-height: 1; letter-spacing: -.03em; }
.masthead-sub { margin-top: 18px; font-family: var(--body); font-weight: 600; font-size: clamp(12px, 1.4vw, 15px); letter-spacing: .42em; text-transform: uppercase; color: rgba(241,245,245,.82); padding-left: .42em; }
.hero__divider { width: 48px; height: 1px; background: rgba(241,245,245,.5); margin: 32px 0; }
.hero__tag { font-size: var(--t-hero-tag); max-width: 30ch; line-height: 1.55; color: rgba(241,245,245,.94); }

/* hero footer row: scroll cue centered, CTA bottom-right */
.hero__footer { position: relative; padding: 0 var(--gutter) 30px; min-height: 64px; display: flex; align-items: flex-end; }
.scroll-cue {
  position: absolute; left: 0; right: 0; bottom: 30px; margin: auto; width: max-content;
  font-weight: 600; font-size: var(--t-scrollcue); letter-spacing: .2em; text-transform: uppercase; color: rgba(241,245,245,.8);
  display: inline-flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-cue .dash { width: 1px; height: 26px; background: rgba(241,245,245,.5); animation: cue 2.4s ease-in-out infinite; transform-origin: top; }
@keyframes cue { 0%,100% { transform: scaleY(.4); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }
@media (prefers-reduced-motion: reduce){ .scroll-cue .dash { animation: none; } }
.hero__cta { margin-left: auto; }

/* ============================================================
   STICKY HEADER (appears after hero)
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: rgba(250,251,251,.86); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transform: translateY(-102%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.site-header.is-visible { transform: translateY(0); }
.site-header .bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 12px var(--gutter); }
.site-header .nav-links { display: flex; gap: 24px; }
.site-header .nav-links a { font-weight: 500; font-size: var(--t-nav); color: var(--ink-soft); position: relative; padding-bottom: 3px; }
.site-header .nav-links a::after { content:""; position:absolute; left:0; bottom:0; width:0; height:1.5px; background: var(--accent); transition: width .25s ease; }
.site-header .nav-links a:hover::after { width: 100%; }
.site-header .nav-right { display: flex; align-items: center; gap: 18px; }
.site-header .lang { color: var(--sub); }

/* wordmark */
.wordmark { display: inline-flex; flex-direction: column; line-height: 1; }
.wordmark .wm-name { font-family: var(--display); font-weight: 600; font-size: 17px; letter-spacing: -.01em; color: var(--ink); }
.wordmark .wm-disc { font-family: var(--body); font-size: 8.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--accent); margin-top: 5px; padding-left: .26em; }

/* hamburger */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: currentColor; margin: 5px 0; transition: transform .3s, opacity .3s; }

/* mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 70; background: var(--accent-ink); color: #f1f5f5;
  display: flex; flex-direction: column; padding: 28px var(--gutter);
  opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity .3s, transform .3s;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-menu .mm-top { display: flex; align-items: center; justify-content: space-between; }
.mobile-menu .mm-close { background: none; border: none; color: inherit; font-size: 30px; cursor: pointer; line-height: 1; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 6px; margin-top: auto; margin-bottom: auto; }
.mobile-menu nav a { font-family: var(--display); font-weight: 600; font-size: clamp(28px,9vw,44px); letter-spacing: -.02em; padding: 6px 0; }
.mobile-menu .mm-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

/* ============================================================
   GENERIC SECTION PIECES
   ============================================================ */
.section-head { max-width: 760px; }
.section-head .kicker { display: inline-block; margin-bottom: 18px; }
.h2 { font-size: clamp(30px, 4.4vw, 50px); line-height: 1.06; }
.section-head .h2 { margin-bottom: 22px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 88px); align-items: center; }
.two-col.narrow-text { grid-template-columns: 1.05fr .95fr; }
.prose p + p { margin-top: 18px; }
.prose .h3 { font-size: clamp(20px, 2.4vw, 26px); margin-bottom: 12px; }

.figure { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.figure img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.figure.wide img { aspect-ratio: 3/2; }
.figure:hover img { transform: scale(1.04); }
.figure .cap { position: absolute; left: 14px; bottom: 12px; font-family: var(--body); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #eef3f3; background: rgba(20,30,33,.42); backdrop-filter: blur(4px); padding: 5px 10px; border-radius: 3px; }

.tint { background: var(--cream); }
.tint-warm { background: var(--bg-warm); }

/* willkommen */
.welcome { text-align: center; }
.welcome .lede { max-width: 22ch; margin: 0 auto; font-size: clamp(24px, 3.4vw, 38px); line-height: 1.3; color: var(--ink); font-family: var(--display); font-weight: 600; letter-spacing: -.02em; }
.welcome .sub { max-width: 56ch; margin: 26px auto 0; color: var(--sub); font-size: 18px; }

/* method note card */
.note {
  border-left: 2px solid var(--accent); padding: 4px 0 4px 22px; margin-top: 26px;
  font-style: italic; color: var(--sub); font-size: 15.5px; line-height: 1.6; max-width: 60ch;
}

/* ============================================================
   ANWENDUNG (audience grid)
   ============================================================ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-top: 56px; }
.card { background: var(--cream); padding: 34px 30px; display: flex; flex-direction: column; gap: 12px; transition: background .3s; }
.card:hover { background: #fff; }
.card .num { font-family: var(--display); font-size: 13px; font-weight: 600; color: var(--mid); letter-spacing: .04em; }
.card h3 { font-size: 21px; letter-spacing: -.01em; }
.card p { color: var(--sub); font-size: 15.5px; line-height: 1.6; }

/* ============================================================
   ABLAUF (steps)
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 48px); margin-top: 56px; counter-reset: step; }
.step { position: relative; }
.step .idx { font-family: var(--display); font-size: 15px; font-weight: 600; color: var(--accent); letter-spacing: .1em; }
.step .bar { height: 1px; background: var(--line); margin: 16px 0 18px; position: relative; }
.step .bar::before { content:""; position:absolute; left:0; top:0; width: 38px; height: 1px; background: var(--accent); }
.step h3 { font-size: 22px; margin-bottom: 10px; }
.step p { color: var(--sub); font-size: 15.5px; }
.meta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 52px; }
.chip { display: inline-flex; align-items: baseline; gap: 10px; background: var(--cream); border: 1px solid var(--line); border-radius: 999px; padding: 11px 20px; font-size: 15px; }
.chip b { font-family: var(--display); font-weight: 600; }
.chip .lbl { color: var(--mute); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin-top: 48px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--display); font-weight: 600; font-size: var(--t-faq); color: var(--ink); letter-spacing: -.01em; padding: 26px 48px 26px 0; position: relative; display: block; }
.faq-q .ic { position: absolute; right: 6px; top: 50%; width: 16px; height: 16px; transform: translateY(-50%); transition: transform .35s; }
.faq-q .ic::before, .faq-q .ic::after { content:""; position:absolute; background: var(--accent); border-radius: 2px; }
.faq-q .ic::before { left: 0; top: 7px; width: 16px; height: 2px; }
.faq-q .ic::after { left: 7px; top: 0; width: 2px; height: 16px; transition: transform .35s; }
.faq-item.open .faq-q .ic::after { transform: scaleY(0); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .4s ease; }
.faq-a-inner { padding: 0 48px 28px 0; color: var(--sub); font-size: var(--t-faq-ans); line-height: 1.65; }

/* ============================================================
   ÜBER MICH
   ============================================================ */
.about-portrait { position: relative; }
.about-portrait .figure img { aspect-ratio: 4/5; }
.about-portrait .badge { position: absolute; right: -18px; bottom: 28px; background: var(--accent); color: #fff; border-radius: var(--radius); padding: 18px 22px; box-shadow: var(--shadow-md); max-width: 210px; }
.about-portrait .badge .big { font-family: var(--display); font-weight: 600; font-size: 30px; line-height: 1; }
.about-portrait .badge .lbl { font-size: 13px; opacity: .85; margin-top: 6px; }
.sig { font-family: var(--display); font-weight: 600; font-size: 24px; letter-spacing: -.01em; color: var(--ink); margin-top: 26px; }

/* ============================================================
   KONTAKT
   ============================================================ */
.contact { position: relative; }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(36px, 7vw, 90px); align-items: start; margin-top: 8px; }
.contact-details { display: flex; flex-direction: column; gap: 22px; margin-top: 10px; }
.detail { }
.detail .lbl { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--mute); margin-bottom: 6px; }
.detail .val { font-size: 18px; color: var(--ink); }
.detail .val a { border-bottom: 1px solid var(--line); padding-bottom: 1px; transition: border-color .2s; }
.detail .val a:hover { border-color: var(--accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--accent-ink); color: rgba(241,245,245,.8); padding: 56px 0 40px; }
.footer .top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 32px; align-items: flex-start; }
.footer .wm-name { color: #fff; }
.footer .wm-disc { color: rgba(241,245,245,.6); }
.footer nav { display: flex; flex-wrap: wrap; gap: 22px; }
.footer nav a { font-size: 14.5px; color: rgba(241,245,245,.82); }
.footer nav a:hover { color: #fff; }
.footer .rule { height: 1px; background: rgba(241,245,245,.16); margin: 36px 0 24px; }
.footer .bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; font-size: 13px; color: rgba(241,245,245,.55); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .topnav .nav-links { display: none; }
  .topnav .lang { display: none; }
  .site-header .nav-links { display: none; }
  .site-header .nav-right .lang { display: none; }
  .hamburger { display: block; }
  .two-col, .two-col.narrow-text { grid-template-columns: 1fr; gap: 36px; }
  .cards { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-portrait .badge { right: 16px; }
  .figure img, .figure.wide img { aspect-ratio: 3/2; }
}
@media (max-width: 560px) {
  body { font-size: var(--t-body); }
  .cards { grid-template-columns: 1fr; }
  .hero__cta { display: none; }
  .hero__footer { justify-content: center; }
}

/* sticky-header CTA hide on small */
@media (max-width: 700px){ .site-header .nav-right .btn { display: none; } }

/* ============================================================
   V2 ADDITIONS — full-width editorial text, no body images
   ============================================================ */
/* hero CTA inside the top nav (H2 masthead style) */
.topnav .btn-hero {
  background: rgba(255,255,255,.94); color: var(--ink);
  padding: 9px 18px; font-size: var(--t-cta);
}
.tw-cta { font-size: var(--t-cta); }
.topnav .btn-hero:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* readable measure for article copy */
.measure { max-width: 860px; }
.prose.lg p { font-size: var(--t-body); line-height: 1.72; }
.prose .subhead { font-family: var(--display); font-weight: 600; font-size: clamp(21px, 2.6vw, 28px); letter-spacing: -.01em; margin: 44px 0 14px; color: var(--ink); }
.prose .first { font-size: clamp(19px, 2.1vw, 23px); line-height: 1.55; color: var(--ink-soft); }

/* intro lede under a section heading */
.section-intro { font-size: clamp(20px, 2.4vw, 27px); line-height: 1.45; color: var(--ink-soft); font-weight: 400; max-width: 30ch; }

/* Stress & Trauma as stacked full-width blocks */
.block + .block { margin-top: 52px; padding-top: 52px; border-top: 1px solid var(--line); }
.block .subhead { margin-top: 0; }

/* Leitbild list */
.leitbild { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 14px; max-width: 860px; }
.leitbild li { position: relative; padding-left: 30px; color: var(--sub); font-size: 16.5px; line-height: 1.6; }
.leitbild li::before { content: ""; position: absolute; left: 0; top: 11px; width: 16px; height: 1px; background: var(--accent); }
.lead-statement { font-family: var(--display); font-weight: 600; font-size: clamp(20px,2.6vw,26px); letter-spacing: -.01em; color: var(--ink); margin-bottom: 8px; }

/* inline text toggle (reveals Leitbild from within the bio) */
.inline-link { background: none; border: none; padding: 0; font: inherit; color: var(--accent); cursor: pointer; border-bottom: 1px solid var(--accent); vertical-align: baseline; transition: color .2s, border-color .2s; }
.inline-link:hover { color: var(--accent-dk); border-color: var(--accent-dk); }
.leitbild-panel { max-height: 0; overflow: hidden; transition: max-height .55s cubic-bezier(.4,0,.2,1); }
.leitbild-inner { padding-top: 28px; }

/* collapsible disclosure (Leitbild) */
.disclosure { max-width: 860px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.disclosure > summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 26px 0; font-family: var(--display); font-weight: 600; font-size: clamp(20px, 2.6vw, 28px); letter-spacing: -.01em; color: var(--ink); }
.disclosure > summary::-webkit-details-marker { display: none; }
.disclosure > summary::marker { content: ""; }
.disclosure .ic { position: relative; width: 16px; height: 16px; flex: none; }
.disclosure .ic::before, .disclosure .ic::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; }
.disclosure .ic::before { left: 0; top: 7px; width: 16px; height: 2px; }
.disclosure .ic::after { left: 7px; top: 0; width: 2px; height: 16px; transition: transform .3s; }
.disclosure[open] .ic::after { transform: scaleY(0); }
.disclosure-a { padding: 0 0 30px; }
.disclosure-a .lead-statement { margin-top: 0; }

/* Stress & Trauma side-by-side: first subhead flush to top */
.two-col .prose .subhead:first-child { margin-top: 0; }

/* Über mich — portrait + bio two column */
.about-grid { display: grid; grid-template-columns: minmax(0, 320px) 1fr; gap: clamp(32px, 5vw, 60px); align-items: start; }
.about-portrait-fig { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.about-portrait-fig img { width: 100%; aspect-ratio: 725 / 1084; object-fit: cover; object-position: center top; display: block; }
.about-grid .prose .subhead { margin-top: 0; }
@media (max-width: 760px) {
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-portrait-fig { max-width: 300px; }
}

/* wide image for Über mich (the one allowed body image) */
.about-figure { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 40px; }
.about-figure img { width: 100%; height: clamp(220px, 34vw, 380px); object-fit: cover; object-position: center 42%; display: block; }

/* pricing emphasis inside FAQ answers */
.price-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 14px; }
.price { display: inline-flex; align-items: baseline; gap: 10px; background: var(--cream); border: 1px solid var(--line); border-radius: 999px; padding: 9px 18px; font-size: 15px; }
.price b { font-family: var(--display); font-weight: 600; font-size: 17px; color: var(--ink); }

/* contact info quick row */
.contact .detail .val a { word-break: break-word; }

/* ============================================================
   HERO — LOWER-HALF IMAGE LAYER (baked split banner)
   ============================================================ */
.hero__bg-bot {
  filter: var(--hero-filter-bot, none);
  -webkit-mask-image: linear-gradient(to bottom, transparent 18%, black 58%);
  mask-image: linear-gradient(to bottom, transparent 18%, black 58%);
}

/* ============================================================
   READ-MORE COLLAPSE
   ============================================================ */
.read-more-wrap {
  overflow: hidden;
  max-height: 0;
  transition: max-height .55s cubic-bezier(.4,0,.2,1);
}
.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: none;
  border-bottom: 1.5px solid var(--accent);
  padding: 1px 0 2px;
  cursor: pointer;
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  color: var(--accent);
  margin-top: 20px;
  transition: color .2s, border-color .2s;
  line-height: 1.2;
}
.read-more-btn:hover { color: var(--accent-dk); border-color: var(--accent-dk); }
.read-more-btn .rm-arrow {
  display: inline-block;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  font-size: 13px;
}
.read-more-btn.expanded .rm-arrow { transform: rotate(180deg); }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form { display: grid; gap: 18px; }
.cf-row { display: grid; gap: 7px; }
.cf-label {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 600;
}
.cf-input {
  font-family: var(--body);
  font-size: 16px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 11px 14px;
  width: 100%;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}
.cf-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(82,113,123,.1);
}
.cf-textarea { resize: vertical; min-height: 128px; line-height: 1.6; }
.cf-footer {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.cf-note {
  font-size: 12.5px;
  color: var(--mute);
  margin: 0;
}
.cf-success {
  color: var(--accent);
  font-weight: 600;
  font-size: 15px;
  margin: 0;
  padding-top: 4px;
}
.cf-success[hidden] { display: none; }
