/* ============================================================
   service.css — shared styles for Miriam Simon service pages
   Built on the home-a (Direction A) dark system. Links after
   colors_and_type.css. Vanilla, Wix-portable.
   ============================================================ */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
html, body { margin: 0; max-width: 100%; overflow-x: hidden; }
body { background: var(--black); color: var(--fg); --font-body: var(--font-head); }
img { display: block; max-width: 100%; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: 40px; }
.eyebrow { font-family: var(--font-head); font-size: 13px; font-weight: 700; letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--accent); }

/* ---- buttons ---- */
.btn { font-family: var(--font-head); font-weight: 700; font-size: 15px; border-radius: var(--r-pill); padding: 15px 30px; border: 1.5px solid transparent; cursor: pointer; transition: all var(--dur) var(--ease); display: inline-flex; align-items: center; justify-content: center; gap: 10px; text-decoration: none; line-height: 1; white-space: nowrap; }
.btn-primary { background: var(--coral); color: #fff; box-shadow: var(--shadow-coral); }
.btn-primary:hover { background: var(--coral-400); transform: translateY(-2px); box-shadow: 0 18px 40px rgba(232,84,109,0.38); color: #fff; }
.btn-primary:active { background: var(--coral-700); transform: translateY(0); }
.btn-ghost { background: transparent; color: #b1b0b3; border-color: rgba(255,255,255,0.14); font-weight: 600; }
.btn-ghost:hover { border-color: var(--coral); color: var(--coral-400); }
.btn .arr { transition: transform var(--dur) var(--ease); }
.btn:hover .arr { transform: translateX(3px); }
.btn-lg { padding: 18px 38px; font-size: 16px; }
/* closing CTA band (no form) */
.cta-close { text-align: center; }
.cta-close-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-close h2 { margin: 14px 0 18px; }
.cta-close .cta-lead { margin: 0 auto 32px; }
.link-coral { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--coral); display: inline-flex; align-items: center; gap: 9px; cursor: pointer; transition: color var(--dur) var(--ease); text-decoration: none; }
.link-coral:hover { color: var(--coral-400); }
.link-coral .arr { transition: transform var(--dur) var(--ease); }
.link-coral:hover .arr { transform: translateX(4px); }

/* ---- header ---- */
.js-header { position: fixed; inset: 0 0 auto 0; z-index: 80; border-bottom: 1px solid transparent; transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.js-header.is-scrolled { background: rgba(8,8,9,0.72); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border-soft); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 86px; gap: 24px; }
.logo { display: flex; align-items: center; }
.logo img { height: 40px; width: auto; }
.nav { display: flex; align-items: center; gap: 34px; }
.nav a.navlink { font-family: var(--font-head); font-size: 14.5px; font-weight: 600; letter-spacing: .01em; color: var(--fg-2); transition: color var(--dur) var(--ease); text-decoration: none; }
.nav a.navlink:hover { color: var(--fg); }

/* ---- nav dropdown (Work with me) ---- */
.nav-item { position: relative; display: inline-flex; align-items: center; gap: 3px; padding-block: 32px; }
.nav-caret { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; padding: 0; background: none; border: 0; color: var(--fg-2); cursor: pointer; border-radius: 4px; transition: color var(--dur) var(--ease), transform var(--dur) var(--ease); }
.nav-caret svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.nav-item:hover .nav-caret, .nav-item:focus-within .nav-caret, .nav-item.is-open .nav-caret { color: var(--fg); transform: rotate(180deg); }
.nav-menu { position: absolute; top: 100%; left: -10px; min-width: 276px; margin: 0; padding: 10px; background: rgba(13,13,15,0.97); backdrop-filter: blur(18px); border: 1px solid var(--border-soft); border-radius: var(--r-md); box-shadow: var(--shadow-lg); display: flex; flex-direction: column; gap: 2px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur); z-index: 90; }
.nav-item:hover .nav-menu, .nav-item:focus-within .nav-menu, .nav-item.is-open .nav-menu { opacity: 1; visibility: visible; transform: none; }
.nav-menu-link { display: block; padding: 12px 14px; border-radius: var(--r-sm); font-family: var(--font-head); font-size: 14.5px; font-weight: 600; letter-spacing: .01em; color: var(--fg-2); white-space: nowrap; text-decoration: none; transition: background var(--dur) var(--ease), color var(--dur) var(--ease); }
.nav-menu-link:hover, .nav-menu-link:focus-visible { background: var(--coral-tint); color: var(--coral-400); }
.nav-toggle { display: none; align-items: center; justify-content: center; flex-direction: column; gap: 6px; width: 44px; height: 44px; padding: 0; background: rgba(30,30,34,0.96); border: 1px solid rgba(255,255,255,0.7); border-radius: 11px; box-shadow: 0 2px 14px rgba(0,0,0,0.55); cursor: pointer; }
.nav-toggle span { width: 28px; height: 3px; background: #ffffff; opacity: 1; border-radius: 2px; transition: transform var(--dur) var(--ease); }
.js-mobile-nav { display: none; }

/* ---- section scaffolding ---- */
section { position: relative; }
.band { padding: var(--sp-9) 0; }
.band-ink { background: var(--ink-850); }
.sec-head { max-width: 62ch; }
.sec-head h2 { font-size: clamp(30px, 3.4vw, 46px); font-weight: 700; letter-spacing: -0.02em; margin: 16px 0 0; line-height: 1.08; }
.sec-head h2 .muted { color: var(--fg); }

/* ---- frame / image ---- */
.frame { position: relative; padding: 16px; }
.frame .br { position: absolute; width: 30px; height: 30px; border: 2px solid var(--coral); }
.frame .tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.frame .tr { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.frame .bl { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.frame .brr { bottom: 0; right: 0; border-left: 0; border-top: 0; }
.framed-photo { aspect-ratio: 4/4.4; border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--border-soft); background: var(--ink-800); }
.framed-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.28) brightness(0.92); }

/* ---- service hero ---- */
.svc-hero { position: relative; padding: 170px 0 96px; overflow: hidden; }
.svc-hero::before { content: ""; position: absolute; top: -120px; right: -160px; width: 720px; max-width: 100vw; height: 720px; background: radial-gradient(circle at center, rgba(232,84,109,0.28), rgba(232,84,109,0.05) 42%, transparent 68%); pointer-events: none; z-index: 0; }
.svc-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 64px; align-items: center; }
.crumb { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 12.5px; font-weight: 700; letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--fg-muted); margin-bottom: 24px; }
.crumb a { color: var(--fg-muted); text-decoration: none; transition: color var(--dur) var(--ease); }
.crumb a:hover { color: var(--coral); }
.crumb .sep { color: var(--ink-500); }
.crumb .here { color: var(--coral); }
.svc-hero h1 { font-size: clamp(40px, 4.9vw, 68px); font-weight: 800; line-height: 1.03; letter-spacing: -0.025em; margin: 0 0 22px; }
.svc-hero h1 em { font-style: normal; color: var(--coral); }
.svc-for { font-size: var(--text-md); font-weight: 300; color: var(--fg-2); line-height: var(--lh-relaxed); max-width: 46ch; margin: 0 0 32px; }
.svc-for b { color: var(--fg); font-weight: 600; }
.svc-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- prose / lead ---- */
.prose { max-width: 64ch; }
.prose .big { font-size: clamp(20px, 1.9vw, 25px); font-weight: 400; line-height: 1.5; color: var(--fg); letter-spacing: -0.01em; margin: 0 0 22px; }
.prose p { color: var(--fg-2); font-size: var(--text-md); line-height: var(--lh-relaxed); margin: 0 0 18px; }
.prose p:last-child { margin-bottom: 0; }

/* ---- process steps ---- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
.step { background: var(--ink-900); border: 1px solid var(--border-soft); border-radius: var(--r-md); padding: 34px 30px; transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.step:hover { transform: translateY(-4px); border-color: var(--ink-700); }
.step-num { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-head); font-size: 13px; font-weight: 700; letter-spacing: .08em; color: var(--fg-muted); margin-bottom: 18px; }
.step-num::before { content: ""; width: 9px; height: 9px; border: 2px solid var(--coral); transform: rotate(45deg); }
.step h3 { font-size: var(--text-lg); font-weight: 700; letter-spacing: -0.01em; margin: 0 0 10px; }
.step p { color: var(--fg-2); font-size: 15px; line-height: var(--lh-relaxed); margin: 0; }

/* ---- include checklist ---- */
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 44px; margin: 44px 0 0; padding: 0; list-style: none; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; font-family: var(--font-head); font-weight: 500; font-size: 16.5px; color: var(--fg); line-height: 1.4; }
.checklist li::before { content: ""; width: 24px; height: 24px; border-radius: 50%; background: var(--coral-tint); border: 1.5px solid var(--coral); flex: none; margin-top: 1px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 24 24' fill='none' stroke='%23e8546d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }

/* ---- outcomes ---- */
.outcomes { display: flex; flex-wrap: wrap; gap: 16px 32px; margin: 44px 0 0; padding: 0; list-style: none; }
.outcomes li { display: flex; gap: 13px; align-items: center; font-family: var(--font-head); font-weight: 600; font-size: 16.5px; color: var(--fg); }
.outcomes li::before { content: ""; width: 10px; height: 10px; border: 2px solid var(--coral); transform: rotate(45deg); flex: none; }

/* ---- AI note (leadership / commercial framing) ---- */
.ai-note { margin: 34px 0 0; max-width: 64ch; background: var(--ink-900); border: 1px solid var(--border-soft); border-radius: var(--r-md); padding: 26px 30px; }
.band-ink .ai-note { background: var(--black); }
.ai-note-label { font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--accent); margin: 0 0 10px; }
.ai-note p { margin: 0; font-size: var(--text-md); line-height: var(--lh-relaxed); color: var(--fg); }
.ai-note p b { color: var(--coral); font-weight: 600; }

/* ---- testimonials ---- */
.tq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 50px; }
.tq { background: var(--ink-900); border: 1px solid var(--border-soft); border-radius: var(--r-md); padding: 38px; }
.band-ink .tq { background: var(--black); }
.tq .mark { font-family: var(--font-head); font-size: 56px; line-height: .6; color: var(--coral); height: 30px; }
.tq blockquote { margin: 0 0 22px; font-family: var(--font-head); font-weight: 500; font-size: var(--text-lg); line-height: 1.45; letter-spacing: -0.01em; color: var(--fg); }
.tq cite { font-style: normal; display: flex; flex-direction: column; gap: 3px; }
.tq cite b { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--fg); }
.tq cite span { font-size: 13.5px; color: var(--fg-muted); }

/* ---- speaking: formats + showreel ---- */
.formats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
.format { background: var(--ink-900); border: 1px solid var(--border-soft); border-radius: var(--r-md); padding: 32px 30px; }
.format h3 { font-size: var(--text-lg); font-weight: 700; margin: 0 0 8px; letter-spacing: -0.01em; }
.format p { color: var(--fg-2); font-size: 14.5px; line-height: var(--lh-relaxed); margin: 0; }
.showreel { position: relative; margin-top: 50px; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border-soft); }
.showreel > img { width: 100%; height: auto; display: block; filter: grayscale(0.3) brightness(0.74); aspect-ratio: 16/7; object-fit: cover; }
.showreel .play-wrap { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.play-btn { width: 86px; height: 86px; border-radius: 50%; background: var(--coral); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-coral); transition: transform var(--dur) var(--ease), background var(--dur) var(--ease); }
.showreel:hover .play-btn { transform: scale(1.06); background: var(--coral-400); }
.play-btn svg { width: 30px; height: 30px; margin-left: 5px; }
.showreel .cap { position: absolute; left: 0; bottom: 0; padding: 24px 28px; font-family: var(--font-head); font-weight: 600; font-size: 15px; color: #fff; text-shadow: 0 1px 12px rgba(0,0,0,0.6); }

/* ---- final CTA / enquiry ---- */
.cta { position: relative; padding: var(--sp-9) 0 var(--sp-10); overflow: hidden; }
.cta::before { content: ""; position: absolute; left: 50%; top: 40px; transform: translateX(-50%); width: 900px; max-width: 100vw; height: 600px; background: radial-gradient(circle at center, rgba(232,84,109,0.22), transparent 62%); pointer-events: none; }
.cta-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.cta h2 { font-size: clamp(38px, 4.6vw, 64px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.02; margin: 18px 0 22px; }
.cta h2 em { font-style: normal; color: var(--coral); }
.cta-lead { color: var(--fg-2); font-size: var(--text-md); line-height: var(--lh-relaxed); max-width: 44ch; }
.reassure { margin-top: 30px; display: flex; flex-direction: column; gap: 14px; }
.reassure span { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--fg); }
.reassure span::before { content: ""; width: 22px; height: 22px; border-radius: 50%; background: var(--coral-tint); border: 1.5px solid var(--coral); flex: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23e8546d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.enquiry-card { background: var(--ink-850); border: 1px solid var(--border-soft); border-radius: var(--r-lg); padding: 40px; box-shadow: var(--shadow-lg); }
.enquiry-card h3 { font-size: var(--text-xl); font-weight: 700; margin: 0 0 6px; }
.enquiry-card .ec-sub { color: var(--fg-muted); font-size: 14.5px; margin: 0 0 26px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-family: var(--font-head); font-size: 12.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--fg-2); }
.field input, .field textarea { background: var(--ink-900); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 14px 16px; color: var(--fg); font-family: var(--font-body); font-size: 15px; outline: none; transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease); resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--coral); box-shadow: 0 0 0 3px var(--coral-tint); }
.field input.has-error, .field textarea.has-error { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(232,84,109,0.18); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.enquiry-card .btn-primary { width: 100%; margin-top: 8px; padding: 17px; box-shadow: none; }
.enquiry-card .privacy { margin: 16px 0 0; font-size: 12.5px; color: var(--fg-muted); text-align: center; }
.enquiry-success { text-align: center; padding: 30px 8px; }
.enquiry-success .tick { width: 64px; height: 64px; border-radius: 50%; background: var(--coral); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.enquiry-success h3 { margin: 0 0 10px; }
.enquiry-success p { color: var(--fg-2); margin: 0 auto; max-width: 36ch; }
.enquiry-error { text-align: center; padding: 30px 8px; }
.enquiry-error h3 { margin: 0 0 10px; }
.enquiry-error p { color: var(--fg-2); margin: 0 auto; max-width: 42ch; }
.enquiry-error a { color: var(--coral); }
/* visually-hidden honeypot for Netlify Forms (kept in the layout flow, off-screen) */
.hp-field { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---- footer ---- */
.footer { background: #050506; border-top: 1px solid var(--border-soft); padding-top: var(--sp-8); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.4fr; gap: 48px; padding-bottom: var(--sp-7); }
.footer-logo { height: 30px; margin-bottom: 20px; }
.footer-brand p { color: var(--fg-2); max-width: 34ch; margin: 0 0 22px; font-size: 14.5px; }
.social { display: flex; gap: 12px; }
.social a, .social .soc-off { width: 44px; height: 44px; border-radius: var(--r-sm); background: var(--ink-900); border: 1px solid var(--border-soft); display: flex; align-items: center; justify-content: center; color: #fff; transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.social a:hover { transform: translateY(-3px); border-color: var(--coral); }
.social .soc-off { cursor: default; opacity: 0.45; }
.social svg { width: 22px; height: 22px; display: block; }
.footer-col h4 { font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--fg); margin: 0 0 18px; }
.footer-col a { display: block; color: var(--fg-2); font-size: 14.5px; padding: 7px 0; transition: color var(--dur) var(--ease); text-decoration: none; }
.footer-col a:hover { color: var(--coral); }
.footer-news p { color: var(--fg-2); font-size: 14px; margin: 0 0 14px; max-width: 30ch; }
.news-form { display: flex; gap: 8px; }
.news-form input { flex: 1; min-width: 0; background: var(--ink-850); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 12px 14px; color: var(--fg); font-family: var(--font-body); font-size: 14px; outline: none; }
.news-form input:focus { border-color: var(--coral); }
.news-form button { background: var(--coral); color: #fff; border: 0; border-radius: var(--r-sm); padding: 0 16px; font-family: var(--font-head); font-weight: 700; font-size: 14px; cursor: pointer; transition: background var(--dur) var(--ease); }
.news-form button:hover { background: var(--coral-400); }
.news-done { font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--coral); }
.news-substack { display: inline-flex; align-items: center; gap: 9px; background: var(--coral); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 14px; border-radius: var(--r-pill); padding: 13px 22px; text-decoration: none; transition: background var(--dur) var(--ease), transform var(--dur) var(--ease); }
.news-substack:hover { background: var(--coral-400); transform: translateY(-2px); }
.news-substack .arr { transition: transform var(--dur) var(--ease); }
.news-substack:hover .arr { transform: translateX(3px); }
.footer-base { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; border-top: 1px solid var(--border-soft); color: var(--fg-muted); font-size: 13px; font-family: var(--font-head); flex-wrap: wrap; gap: 10px; }
.footer-base a { color: var(--fg-muted); text-decoration: none; }
.footer-base a:hover { color: var(--coral); }

/* ---- approach: lead ---- */
.appr-lead { max-width: 30ch; }
.appr-lead .big { font-size: clamp(21px, 2vw, 27px); }

/* ---- approach: experience groups ---- */
.exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 50px; }
.exp-group h3 { font-family: var(--font-head); font-size: 13px; font-weight: 700; letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--coral); margin: 0 0 8px; }
.exp-group > p { color: var(--fg-2); font-size: 15px; line-height: var(--lh-relaxed); margin: 0 0 22px; max-width: 40ch; }
.chips { display: flex; flex-wrap: wrap; gap: 12px; padding: 0; margin: 0; list-style: none; }
.chips li { font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--fg); background: var(--ink-800); border: 1px solid rgba(255,255,255,0.16); border-radius: var(--r-pill); padding: 11px 20px; transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease); }
.chips li:hover { border-color: var(--coral); transform: translateY(-2px); }

/* ---- approach: credentials ---- */
.creds { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 50px; }
.cred-card { background: var(--black); border: 1px solid var(--border-soft); border-radius: var(--r-md); padding: 32px 26px; }
.cred-card .cred-ico { width: 50px; height: 50px; border-radius: var(--r-sm); background: var(--ink-900); border: 1px solid var(--border-soft); display: flex; align-items: center; justify-content: center; color: #fff; margin-bottom: 22px; }
.cred-card .cred-ico svg { width: 26px; height: 26px; }
.cred-card h3 { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 8px; line-height: 1.25; }
.cred-card p { color: var(--fg-2); font-size: 14px; line-height: var(--lh-relaxed); margin: 0; }

/* ---- approach: values ---- */
.values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 44px; margin-top: 44px; padding: 0; list-style: none; }
.values li { display: flex; gap: 16px; align-items: flex-start; }
.values .v-mark { width: 38px; height: 38px; flex: none; border-radius: 50%; border: 1.5px solid var(--coral); background: var(--coral-tint); display: flex; align-items: center; justify-content: center; color: var(--coral); }
.values .v-mark svg { width: 19px; height: 19px; }
.values h3 { font-family: var(--font-head); font-size: 16.5px; font-weight: 700; margin: 4px 0 6px; letter-spacing: -0.01em; }
.values p { color: var(--fg-2); font-size: 14.5px; line-height: var(--lh-relaxed); margin: 0; }

/* ---- contact page ---- */
.contact-page { padding-block: 150px var(--sp-9); }
.contact-intro { max-width: 60ch; }
.contact-intro h1 { font-size: clamp(38px, 4.6vw, 62px); font-weight: 800; line-height: 1.04; letter-spacing: -0.025em; margin: 18px 0 22px; }
.contact-intro h1 em { font-style: normal; color: var(--coral); }
.contact-intro .lead { font-size: var(--text-md); font-weight: 300; line-height: var(--lh-relaxed); color: var(--fg-2); margin: 0; }
.contact-intro .lead b { color: var(--fg); font-weight: 600; }

/* two-column grid inside the shared .contact-page container.
   minmax(0, fr) caps each track to its fr share, so the form column can never
   overflow the container at any viewport width or with any field content. */
.contact-grid { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); gap: 64px; align-items: start; margin-top: 56px; }
.contact-grid > *, .contact-grid .field { min-width: 0; }
.contact-grid .field input,
.contact-grid .field select,
.contact-grid .field textarea { min-width: 0; width: 100%; }

/* next steps (vertical numbered) */
.next-list { list-style: none; margin: 36px 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.next-list li { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 18px 0; align-items: start; }
.next-list li + li { border-top: 1px solid var(--border-soft); }
.next-num { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--coral); background: var(--coral-tint); color: var(--coral); font-family: var(--font-head); font-weight: 800; font-size: 17px; display: flex; align-items: center; justify-content: center; }
.next-list h3 { font-family: var(--font-head); font-size: 16.5px; font-weight: 700; margin: 9px 0 5px; letter-spacing: -0.01em; }
.next-list p { color: var(--fg-2); font-size: 14.5px; line-height: var(--lh-relaxed); margin: 0; }

/* reassurance card with photo + direct contact */
.contact-card-aside { margin-top: 40px; background: var(--ink-900); border: 1px solid var(--border-soft); border-radius: var(--r-lg); padding: 28px; display: flex; flex-direction: column; gap: 22px; }
.cca-person { display: flex; align-items: center; gap: 18px; }
.cca-photo { width: 74px; height: 74px; border-radius: 50%; overflow: hidden; flex: none; border: 1px solid var(--border-soft); }
.cca-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: grayscale(0.2); }
.cca-person .who b { display: block; font-family: var(--font-head); font-size: 16px; font-weight: 700; }
.cca-person .who span { font-size: 13.5px; color: var(--fg-muted); }
.cca-response { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 600; font-size: 14.5px; color: var(--fg); padding: 14px 16px; background: var(--coral-tint); border: 1px solid rgba(232,84,109,0.3); border-radius: var(--r-sm); }
.cca-response svg { width: 19px; height: 19px; color: var(--coral); flex: none; }
.cca-direct { display: flex; flex-direction: column; gap: 4px; }
.cca-direct a { display: flex; align-items: center; gap: 13px; padding: 11px 0; font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--fg); text-decoration: none; transition: color var(--dur) var(--ease); }
.cca-direct a + a { border-top: 1px solid var(--border-soft); }
.cca-direct a:hover { color: var(--coral); }
.cca-direct svg { width: 18px; height: 18px; color: var(--coral); flex: none; }

/* contact form fills its column */
.contact-grid .enquiry-card { margin: 0; }
.field select { background: var(--ink-900); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 14px 16px; color: var(--fg); font-family: var(--font-body); font-size: 15px; outline: none; transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease); appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23e8546d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 42px; }
.field select:focus { border-color: var(--coral); box-shadow: 0 0 0 3px var(--coral-tint); }
.field .optional { font-weight: 600; color: var(--fg-muted); text-transform: none; letter-spacing: 0; }

/* ---- legal / privacy page ---- */
.legal-hero { padding: 150px 0 0; overflow: hidden; }
.legal-hero h1 { font-size: clamp(38px, 4.4vw, 58px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.04; margin: 16px 0 0; }
.legal-meta { color: var(--fg-muted); margin: 18px 0 0; font-size: 14.5px; line-height: var(--lh-relaxed); max-width: 64ch; }
.legal-layout { display: grid; grid-template-columns: 248px 1fr; gap: 64px; padding: 52px 0 var(--sp-9); align-items: start; }
.legal-toc { position: sticky; top: 108px; }
.legal-toc h4 { font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--coral); margin: 0 0 14px; }
.legal-toc a { display: block; color: var(--fg-2); font-size: 13.5px; line-height: 1.35; padding: 7px 0 7px 14px; border-left: 1px solid var(--border-soft); text-decoration: none; transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.legal-toc a:hover { color: var(--coral); border-color: var(--coral); }
.legal-content { max-width: 74ch; }
.legal-part { margin: 0 0 8px; }
.legal-part:not(:first-child) { margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--border); }
.legal-part > .eyebrow { display: block; }
.legal-part h2.part-title { font-size: clamp(26px, 2.6vw, 34px); font-weight: 800; letter-spacing: -0.02em; margin: 12px 0 0; }
.legal-section { padding: 30px 0; border-top: 1px solid var(--border-soft); }
.legal-section h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 14px; }
.legal-section p { color: var(--fg-2); font-size: 15.5px; line-height: 1.72; margin: 0 0 14px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul { margin: 4px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 13px; }
.legal-section ul li { position: relative; padding-left: 24px; color: var(--fg-2); font-size: 15.5px; line-height: 1.65; }
.legal-section ul li::before { content: ""; position: absolute; left: 2px; top: 9px; width: 8px; height: 8px; border: 2px solid var(--coral); transform: rotate(45deg); }
.legal-section ul li b { color: var(--fg); font-weight: 700; }
.legal-section ul.sub-list { margin-top: 13px; padding-left: 24px; gap: 9px; }
.legal-section ul.sub-list li { padding-left: 20px; font-size: 14.5px; }
.legal-section ul.sub-list li::before { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); border: 0; top: 8px; transform: none; }
.legal-section a { color: var(--coral); text-decoration: none; }
.legal-section a:hover { color: var(--coral-400); }

/* ---- reveal ---- */
@keyframes msRise { from { transform: translateY(16px); } to { transform: none; } }
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] { animation: msRise var(--dur-slow) var(--ease) both; }
}

/* ---- responsive ---- */
@media (max-width: 980px) {
  .wrap { padding-inline: 24px; }
  .nav { display: none; }
  .nav-toggle { display: flex; flex: none; }
  .header-inner { gap: 12px; }
  .logo { min-width: 0; }
  .logo img { height: 32px; max-width: 100%; }
  .svc-hero { padding: 132px 0 72px; }
  .svc-grid, .cta-grid { grid-template-columns: 1fr; gap: 44px; }
  .contact-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 40px; }
  .legal-layout { grid-template-columns: 1fr; gap: 32px; padding-top: 40px; }
  .legal-toc { position: static; }
  .legal-toc-inner { display: flex; flex-wrap: wrap; gap: 4px 8px; }
  .legal-toc a { border-left: 0; border: 1px solid var(--border-soft); border-radius: var(--r-pill); padding: 8px 14px; }
  .svc-media { max-width: 440px; }
  .steps, .formats, .tq-grid, .checklist { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; gap: 40px; }
  .creds { grid-template-columns: 1fr 1fr; }
  .values { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-news { grid-column: 1 / -1; }
  .js-mobile-nav[data-open] { display: flex; flex-direction: column; gap: 4px; padding: 14px 24px 22px; background: #0a0a0b; border-bottom: 1px solid var(--border-soft); position: fixed; top: 86px; left: 0; right: 0; z-index: 79; }
  .js-mobile-nav a { font-family: var(--font-head); font-weight: 600; color: var(--fg-2); padding: 14px 0; border-bottom: 1px solid var(--border-soft); font-size: 16px; text-decoration: none; }
  .js-mobile-nav a.btn-primary { color: #fff; }
  .js-mobile-nav .btn { margin-top: 14px; }
  .js-mobile-nav .m-nav-item { display: block; border-bottom: 1px solid var(--border-soft); }
  .js-mobile-nav .m-nav-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
  .js-mobile-nav .m-nav-row a { flex: 1; border-bottom: 0; }
  .m-nav-caret { flex: none; width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; background: none; border: 0; color: var(--fg-2); cursor: pointer; border-radius: var(--r-sm); }
  .m-nav-caret svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; transition: transform var(--dur) var(--ease); }
  .m-nav-item.is-open .m-nav-caret { color: var(--fg); }
  .m-nav-item.is-open .m-nav-caret svg { transform: rotate(180deg); }
  .js-mobile-nav .m-sub { max-height: 0; overflow: hidden; background: rgba(255,255,255,0.02); border-radius: var(--r-sm); transition: max-height var(--dur-slow) var(--ease); }
  .m-nav-item.is-open .m-sub { max-height: 280px; }
  .js-mobile-nav .m-sub a { display: block; padding: 13px 0 13px 22px; font-size: 15px; font-weight: 600; color: var(--fg-2); border-bottom: 0; }
  .js-mobile-nav .m-sub a + a { border-top: 1px solid var(--border-soft); }
  .js-mobile-nav .m-sub a:hover, .js-mobile-nav .m-sub a:active { color: var(--coral); }
}
@media (max-width: 560px) {
  .wrap { padding-inline: 18px; }
  .field-row { grid-template-columns: 1fr; }
  .creds { grid-template-columns: 1fr; }
  .enquiry-card { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .svc-hero-cta .btn { flex: 1; }
  .showreel > img { aspect-ratio: 4/3; }
}
