/* GenTech UK, shared stylesheet. Tokens and shapes carried from the June 2026 build (kept on Govi's word, 10 Sept). Type and space on a golden ratio ladder: 11 / 13 / 17 / 28 / 44 / 72 and 21 / 34 / 56 / 90 / 146. */
:root {
  --jade: #1A6B6C; --jade-dk: #0F4445; --jade-darker: #0A2D2E;
  --cream: #F5EFE0; --cream-soft: #FAF6EC;
  --ink: #0F1714; --grey-dk: #4A5550; --grey: #6B7670;
  --border: rgba(26, 107, 108, 0.15); --rule: rgba(15, 23, 20, 0.12);
  --s1: 8px; --s2: 13px; --s3: 21px; --s4: 34px; --s5: 56px; --s6: 90px; --s7: 146px;
  --pad-y: var(--s6); --pad-x: var(--s5); --max: 1240px; --nav-h: 85px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--jade-dk); background: var(--cream); line-height: 1.55; -webkit-font-smoothing: antialiased; text-wrap: pretty; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad-x); }
.mono { font-family: 'JetBrains Mono', monospace; }
.serif { font-family: 'Fraunces', serif; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
em { font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; }

/* ───── NAV ───── */
nav.site-nav { position: sticky; top: 0; z-index: 100; padding: var(--s3) var(--pad-x); background: rgba(245, 239, 224, 0.94); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; transition: padding 0.4s ease, background 0.3s ease; }
.nav-logo { display: flex; align-items: baseline; gap: var(--s1); text-decoration: none; flex-shrink: 0; }
.nav-logo .name { font-size: 19px; font-weight: 600; color: var(--jade-dk); letter-spacing: -0.5px; }
.nav-logo .uk { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 3px; color: var(--jade); opacity: 0.7; }
.nav-links { display: flex; gap: 30px; align-items: center; flex-shrink: 0; }
.nav-links a { color: var(--jade-dk); text-decoration: none; font-size: 14px; font-weight: 500; white-space: nowrap; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 0.65; }
.nav-links a[aria-current="page"] { text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 1.5px; }
.nav-links a:focus-visible { outline: 2px solid var(--jade); outline-offset: 4px; border-radius: 2px; }
.nav-cta { background: var(--jade); color: var(--cream) !important; padding: 10px 20px; border-radius: 4px; text-decoration: none; white-space: nowrap; font-size: 13px !important; font-weight: 600 !important; letter-spacing: 0.5px; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--jade-dk); opacity: 1 !important; }
.nav-ticker { flex: 1 1 auto; min-width: 0; margin: 0 clamp(24px, 4vw, 56px); overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%); transition: opacity 0.45s ease, transform 0.45s ease; }
.nav-ticker-track { display: inline-block; white-space: nowrap; animation: scroll-x 48s linear infinite; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--jade); }
.nav-ticker:hover .nav-ticker-track { animation-play-state: paused; }
.nav-ticker-track > span { padding: 0 20px; opacity: 0.7; }
.nav-ticker-track > span.alt { opacity: 0.35; }
@keyframes scroll-x { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
nav.site-nav.scrolled { padding-top: 14px; padding-bottom: 14px; background: rgba(245, 239, 224, 0.98); }
nav.site-nav.scrolled .nav-ticker { opacity: 0; transform: translateY(-6px); pointer-events: none; }
.nav-right { display: none; }
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; padding: 9px; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 100%; height: 2px; border-radius: 2px; background: var(--jade-dk); transition: transform 0.3s ease, opacity 0.2s ease; }
nav.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
nav.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 920px) {
  nav.site-nav { flex-wrap: wrap; row-gap: 0; }
  .nav-ticker { order: 3; flex-basis: 100%; margin: 12px 0 0; max-height: 26px; transition: max-height 0.4s ease, opacity 0.45s ease, margin 0.4s ease; }
  nav.site-nav.scrolled .nav-ticker { max-height: 0; margin-top: 0; }
  .nav-right { display: flex; align-items: center; gap: var(--s2); }
  .nav-toggle { display: flex; }
  .nav-links { position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; align-items: flex-start; gap: 0; background: var(--cream); border-bottom: 1px solid var(--border); padding: var(--s2) var(--pad-x) var(--s3); display: none; }
  nav.menu-open .nav-links { display: flex; }
  .nav-links a { font-size: 17px; padding: var(--s2) 0; width: 100%; border-bottom: 1px solid var(--rule); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links .nav-cta { display: none; }
}
@media (prefers-reduced-motion: reduce) { .nav-ticker-track { animation: none; } }

/* ───── SHARED ───── */
.section { padding: var(--pad-y) var(--pad-x); }
.section-head { max-width: var(--max); margin: 0 auto var(--s5); }
.section-head .display, .section-head .section-tag, .section-head .eyebrow { max-width: 880px; }
.eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 14px; letter-spacing: 3.6px; color: var(--jade); opacity: 1; text-transform: uppercase; margin-bottom: var(--s3); display: inline-flex; gap: 12px; align-items: center; }
.eyebrow .roman { font-family: 'Fraunces', serif; font-size: 17px; font-style: italic; letter-spacing: 0; opacity: 1; text-transform: none; }
.display { font-size: clamp(36px, 4.6vw, 72px); font-weight: 600; letter-spacing: -2px; line-height: 1.02; color: var(--ink); margin-bottom: var(--s3); }
.display em { color: var(--jade); letter-spacing: -1.5px; }
.section-tag { font-size: 17px; line-height: 1.65; color: var(--grey-dk); max-width: 640px; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 28px; border-radius: 4px; font-size: 15px; font-weight: 600; letter-spacing: 0.3px; text-decoration: none; transition: all 0.2s; cursor: pointer; border: none; font-family: inherit; }
.btn-primary { background: var(--jade); color: var(--cream); }
.btn-primary:hover { background: var(--jade-dk); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--jade-dk); border: 1px solid var(--border); }
.btn-secondary:hover { background: rgba(26, 107, 108, 0.05); border-color: var(--jade); }
.btn:focus-visible { outline: 2px solid var(--jade); outline-offset: 4px; }
.on-dark .btn-primary { background: var(--cream); color: var(--jade-dk); }
.on-dark .btn-primary:hover { background: #fff; }
.on-dark .btn-secondary { color: var(--cream); border-color: rgba(245, 239, 224, 0.5); }
.on-dark .btn-secondary:hover { background: rgba(245, 239, 224, 0.08); border-color: var(--cream); }
.on-dark .btn:focus-visible { outline-color: var(--cream); }
.link { color: var(--jade-dk); text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; font-weight: 500; }
.link:hover { color: var(--jade); }
.breath { padding: 0 var(--pad-x); }
.breath-rule { max-width: var(--max); margin: 0 auto; height: 1px; background: var(--rule); }
.meta-row { display: flex; flex-wrap: wrap; gap: var(--s3); font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 2.5px; color: var(--jade); text-transform: uppercase; padding-top: var(--s3); border-top: 1px solid var(--rule); }

/* ───── HOME HERO: the question and two doors ───── */
#hero { min-height: min(calc(100svh - var(--nav-h)), 820px); padding: clamp(44px, 7vh, 84px) var(--pad-x) clamp(40px, 6vh, 64px); background: var(--jade); color: var(--cream); position: relative; overflow: hidden; display: flex; flex-direction: column; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.22; pointer-events: none; z-index: 0; }
#hero::after { content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, rgba(15, 68, 69, 0.50) 0%, rgba(15, 68, 69, 0.62) 58%, rgba(15, 68, 69, 0.88) 100%); }
@media (prefers-reduced-motion: reduce) { .hero-video { display: none; } }
.hero-inner { max-width: var(--max); margin: 0 auto; width: 100%; position: relative; z-index: 2; flex: 1; display: flex; flex-direction: column; justify-content: space-between; gap: clamp(34px, 6vh, 90px); }
.hero-eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 4px; opacity: 0.7; margin-bottom: var(--s3); text-transform: uppercase; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-eyebrow .sep { width: 4px; height: 4px; background: var(--cream); border-radius: 50%; opacity: 0.6; }
.hero-headline { font-size: clamp(38px, 6vw, 92px); font-weight: 700; letter-spacing: -2px; line-height: 0.98; max-width: 1100px; overflow-wrap: break-word; }
.hero-headline em { letter-spacing: -2px; color: rgba(245, 239, 224, 0.62); }
.doors { display: grid; grid-template-columns: 1fr 1fr; border-top: 2px solid rgba(245, 239, 224, 0.85); border-bottom: 2px solid rgba(245, 239, 224, 0.85); }
.door { display: grid; grid-template-columns: 1fr auto; gap: var(--s3); align-items: start; padding: var(--s4) var(--s4) var(--s4) 0; text-decoration: none; color: var(--cream); position: relative; transition: background 0.3s ease; }
.door + .door { border-left: 1px solid rgba(245, 239, 224, 0.28); padding-left: var(--s4); }
.door:hover { background: rgba(245, 239, 224, 0.06); }
.door:focus-visible { outline: 2px solid var(--cream); outline-offset: -6px; }
.door-num { font-family: 'Fraunces', serif; font-style: italic; font-size: 17px; opacity: 0.7; padding-top: 6px; }
.door-title, .door-copy { display: block; }
.door-title { font-size: clamp(28px, 3.4vw, 44px); font-weight: 600; letter-spacing: -1.4px; line-height: 1.02; margin-bottom: var(--s2); }
.door-copy { font-size: 15px; line-height: 1.6; color: rgba(245, 239, 224, 0.82); max-width: 420px; }
.door-arrow { width: 34px; height: 34px; flex-shrink: 0; color: var(--cream); transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1); margin-top: 4px; }
.door:hover .door-arrow { transform: translateX(8px); }
@media (max-width: 760px) {
  #hero { min-height: 0; }
  .doors { grid-template-columns: 1fr; }
  .door { padding: var(--s3) 0; grid-template-columns: 1fr auto; }
  .door + .door { border-left: none; border-top: 1px solid rgba(245, 239, 224, 0.28); padding-left: 0; }
  .door-arrow { width: 26px; height: 26px; }
}

/* ───── PAGE HERO (inner pages) ───── */
.page-hero { background: var(--jade); color: var(--cream); padding: clamp(56px, 9vh, 110px) var(--pad-x) clamp(44px, 7vh, 80px); position: relative; overflow: hidden; }
.page-hero-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.618fr 1fr; gap: clamp(34px, 5vw, 80px); align-items: end; }
.page-hero h1 { font-size: clamp(40px, 6vw, 92px); font-weight: 700; letter-spacing: -2.4px; line-height: 0.98; }
.page-hero h1 em { color: rgba(245, 239, 224, 0.62); letter-spacing: -2px; }
.page-hero .lead { font-size: clamp(16px, 1.2vw, 19px); line-height: 1.6; opacity: 0.88; max-width: 560px; }
.page-hero .lead + .hero-ctas { margin-top: var(--s3); }
.hero-ctas { display: flex; gap: var(--s2); flex-wrap: wrap; }
@media (max-width: 900px) { .page-hero-inner { grid-template-columns: 1fr; gap: var(--s3); align-items: start; } }

/* ───── SERVICES: accordion rectangles (kept shape) ───── */
#services { background: var(--cream); padding: var(--pad-y) 0; }
#services .section-head { padding: 0 var(--pad-x); }
.services-list { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad-x); display: flex; flex-direction: column; gap: 14px; }
.service-acc { border: 1px solid var(--rule); background: var(--cream); transition: border-color 0.35s ease, background 0.35s ease; }
.service-acc:hover, .service-acc.open { border-color: var(--jade); background: rgba(26, 107, 108, 0.03); }
.service-head { display: flex; align-items: center; gap: 28px; width: 100%; padding: 28px 34px; background: none; border: none; cursor: pointer; text-align: left; color: inherit; font: inherit; }
.service-head:focus-visible { outline: 2px solid var(--jade); outline-offset: -3px; }
.service-head .service-index { font-family: 'Fraunces', serif; font-style: italic; font-size: 17px; color: var(--jade); width: 34px; flex-shrink: 0; }
.service-head .service-glyph { width: 46px; height: 46px; flex-shrink: 0; color: var(--jade); transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.service-acc:hover .service-glyph, .service-acc.open .service-glyph { transform: scale(1.07); }
.service-head h3 { font-size: clamp(22px, 2.6vw, 36px); font-weight: 600; letter-spacing: -1.2px; line-height: 1.05; margin: 0; }
.service-head h3 em { color: var(--jade); letter-spacing: -0.8px; }
.service-toggle { margin-left: auto; position: relative; width: 22px; height: 22px; flex-shrink: 0; transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1); }
.service-toggle::before, .service-toggle::after { content: ''; position: absolute; top: 50%; left: 50%; background: var(--jade); transform: translate(-50%, -50%); }
.service-toggle::before { width: 20px; height: 2px; }
.service-toggle::after { width: 2px; height: 20px; }
.service-acc:hover .service-toggle, .service-acc.open .service-toggle { transform: rotate(45deg); }
.service-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.service-acc:hover .service-body, .service-acc.open .service-body { grid-template-rows: 1fr; }
.service-body-inner { overflow: hidden; }
.service-body-pad { padding: 2px 34px 34px 142px; display: grid; grid-template-columns: 1.618fr 1fr; gap: var(--s4); align-items: start; }
.service-copy p { font-size: 17px; line-height: 1.65; color: var(--grey-dk); margin: 0; }
.service-copy .meta-row { margin-top: var(--s3); }
.service-aside { border-left: 1px solid var(--rule); padding-left: var(--s3); font-size: 15px; line-height: 1.6; color: var(--grey-dk); }
.service-aside .link { display: inline-block; margin-top: var(--s2); }
@media (max-width: 760px) {
  .service-head { gap: 14px; padding: 22px 20px; }
  .service-head .service-index { width: 22px; font-size: 15px; }
  .service-head .service-glyph { width: 34px; height: 34px; }
  .service-body-pad { grid-template-columns: 1fr; gap: var(--s3); padding: 2px 20px 26px 20px; }
  .service-aside { border-left: none; padding-left: 0; border-top: 1px solid var(--rule); padding-top: var(--s2); }
}

/* ───── PACKAGE CARDS ───── */
#packages { background: var(--cream-soft); padding: var(--pad-y) var(--pad-x); border-top: 1px solid var(--border); }
.fit-repeat { max-width: var(--max); margin: 0 auto var(--s5); display: grid; grid-template-columns: 1.618fr 1fr; gap: var(--s4); align-items: end; }
.fit-repeat .display { margin-bottom: 0; }
@media (max-width: 900px) { .fit-repeat { grid-template-columns: 1fr; gap: var(--s3); } }
.cards { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.card { padding: var(--s4) var(--s4) var(--s4) 0; display: flex; flex-direction: column; gap: var(--s2); }
.card + .card { border-left: 1px solid var(--rule); padding-left: var(--s4); }
.card-kicker { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--jade); opacity: 0.85; }
.card h3 { font-size: clamp(26px, 2.6vw, 36px); font-weight: 600; letter-spacing: -1.2px; line-height: 1.05; color: var(--ink); }
.card h3 em { color: var(--jade); }
.card p { font-size: 15px; line-height: 1.6; color: var(--grey-dk); }
.card-price { margin-top: auto; padding-top: var(--s3); border-top: 1px solid var(--rule); display: flex; flex-wrap: wrap; gap: var(--s1) var(--s3); align-items: baseline; }
.card-price .v { font-family: 'Fraunces', serif; font-size: clamp(30px, 2.8vw, 40px); font-weight: 500; letter-spacing: -1.4px; color: var(--jade-dk); line-height: 1; }
.card-price .l { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--grey); }
.card-price .plus { font-size: 15px; color: var(--grey-dk); }
.card .link { margin-top: var(--s1); }
.vat-line { max-width: var(--max); margin: var(--s3) auto 0; font-size: 13px; color: var(--grey); display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--s2); }
@media (max-width: 900px) {
  .cards { grid-template-columns: 1fr; }
  .card { padding: var(--s3) 0; }
  .card + .card { border-left: none; border-top: 1px solid var(--rule); padding-left: 0; }
}

/* ───── HIERARCHY DIAGRAM ───── */
#structure { background: var(--cream); padding: var(--pad-y) var(--pad-x); }
.diagram { max-width: 980px; margin: 0 auto; }
.diagram { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.diagram svg { width: 100%; min-width: 720px; height: auto; display: block; }
.diagram .node { fill: none; stroke: var(--ink); stroke-width: 1.6; }
.diagram .node.root { fill: var(--jade); stroke: var(--jade); }
.diagram .node.branch { stroke: var(--jade); stroke-width: 2; }
.diagram .edge { fill: none; stroke: var(--jade); stroke-width: 1.4; }
.diagram text { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 15px; fill: var(--ink); letter-spacing: -0.2px; }
.diagram text.root { fill: var(--cream); font-size: 20px; font-weight: 700; }
.diagram text.branch { fill: var(--jade-dk); font-size: 17px; }
.diagram text.leaf { font-weight: 500; font-size: 13.5px; fill: var(--grey-dk); }
.diagram text.k { font-family: 'JetBrains Mono', monospace; font-weight: 500; font-size: 9.5px; letter-spacing: 2px; fill: var(--jade); }
.diagram .price { font-family: 'Fraunces', serif; font-weight: 500; font-size: 13px; fill: var(--jade-dk); }
.diagram a { cursor: pointer; }
.diagram a:hover .node { stroke-width: 2.4; }

/* ───── LOGO WALLS (no boxes, no backgrounds, one tone) ───── */
#vendors { background: var(--cream); padding: var(--pad-y) var(--pad-x); border-top: 1px solid var(--border); }
#partners { background: var(--cream-soft); padding: var(--pad-y) var(--pad-x); border-top: 1px solid var(--border); }
.wall-group { max-width: var(--max); margin: 0 auto; padding: var(--s3) 0; border-top: 1px solid var(--rule); display: grid; grid-template-columns: 220px 1fr; gap: var(--s3) var(--s4); align-items: start; }
.wall-group:last-child { border-bottom: 1px solid var(--rule); }
.wall-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--jade); font-weight: 500; padding-top: 14px; line-height: 1.7; }
.wall-count { margin-left: 10px; font-family: 'Fraunces', serif; font-style: italic; font-size: 14px; letter-spacing: 0; text-transform: none; color: var(--grey); }
.wall { list-style: none; display: flex; flex-wrap: wrap; gap: var(--s2) var(--s4); align-items: center; }
.mark { display: flex; align-items: center; min-height: 52px; }
.mark-img { display: block; max-width: 100%; background-color: var(--jade-dk); -webkit-mask: var(--m) no-repeat center / contain; mask: var(--m) no-repeat center / contain; opacity: 0.82; transition: opacity 0.25s; }
.mark:hover .mark-img { opacity: 1; }
.mark-text span { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 17px; letter-spacing: -0.4px; color: var(--jade-dk); opacity: 0.82; }
.wall-partners { max-width: var(--max); margin: 0 auto; padding: var(--s3) 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); gap: var(--s3) var(--s5); }
.wall-partners .mark { min-height: 60px; }

.partner-list { max-width: var(--max); margin: var(--s4) auto 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s2) var(--s4); }
.partner-list div { padding: var(--s2) 0; border-top: 1px solid var(--rule); display: grid; grid-template-columns: 200px 1fr; gap: var(--s2); font-size: 15px; line-height: 1.55; color: var(--grey-dk); }
.partner-list strong { font-weight: 600; color: var(--jade-dk); }
@media (max-width: 760px) {
  .wall-group { grid-template-columns: 1fr; gap: var(--s2); }
  .wall { gap: var(--s2) var(--s3); }
  .mark-img { zoom: 0.82; }
  .partner-list { grid-template-columns: 1fr; }
  .partner-list div { grid-template-columns: 1fr; gap: 4px; }
}

/* ───── MEET GOVI ───── */
#govi { background: var(--cream-soft); padding: var(--pad-y) var(--pad-x); border-top: 1px solid var(--border); }
.about-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.618fr; gap: var(--s5); align-items: center; }
.about-media { aspect-ratio: 4 / 5; border: 1px solid var(--rule); border-radius: 2px; overflow: hidden; }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-copy .display { margin-bottom: var(--s3); }
.about-copy p { font-size: 17px; line-height: 1.7; color: var(--grey-dk); max-width: 620px; }
.about-copy .meta-row { margin-top: var(--s3); }
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; gap: var(--s4); } .about-media { aspect-ratio: 16 / 10; max-width: 440px; } }

/* ───── WHY (dark) ───── */
#why { background: var(--jade-darker); color: var(--cream); padding: var(--pad-y) var(--pad-x); }
#why .display { color: var(--cream); }
#why .display em { color: rgba(245, 239, 224, 0.55); }
#why .section-tag { color: rgba(245, 239, 224, 0.78); }
#why .eyebrow { color: rgba(245, 239, 224, 0.6); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s5) var(--s6); max-width: var(--max); margin: 0 auto; }
.why-item h4 { font-size: 26px; font-weight: 600; margin-bottom: var(--s2); color: var(--cream); letter-spacing: -0.7px; line-height: 1.2; }
.why-item h4 em { color: rgba(245, 239, 224, 0.65); }
.why-item p { font-size: 16px; line-height: 1.65; color: rgba(245, 239, 224, 0.78); }
.why-item .num { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 3.5px; color: rgba(245, 239, 224, 0.55); margin-bottom: var(--s2); display: flex; gap: 10px; align-items: baseline; text-transform: uppercase; }
.why-item .num .roman { font-family: 'Fraunces', serif; font-style: italic; font-size: 16px; letter-spacing: 0; color: var(--cream); }
@media (max-width: 720px) { .why-grid { grid-template-columns: 1fr; gap: var(--s4); } }

/* ───── CTA ───── */
#cta { background: var(--cream-soft); padding: var(--pad-y) var(--pad-x); text-align: center; border-top: 1px solid var(--border); }
#cta .eyebrow { justify-content: center; }
#cta .display { margin: 0 auto var(--s3); }
#cta .section-tag { margin: 0 auto; }
.cta-row { display: flex; gap: var(--s2); justify-content: center; flex-wrap: wrap; margin-top: var(--s4); }
.cta-phone { margin-top: var(--s3); font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 2px; color: var(--grey); }
.cta-phone a { color: var(--jade-dk); text-decoration: none; }

/* ───── FOOTER ───── */
footer.site-footer { background: var(--jade-darker); color: var(--cream); padding: var(--pad-y) var(--pad-x) var(--s5); }
.footer-signature { max-width: var(--max); margin: 0 auto var(--s5); text-align: center; }
.footer-signature h2 { font-family: 'Inter', sans-serif; font-weight: 800; font-size: clamp(64px, 12vw, 180px); letter-spacing: -4px; line-height: 0.95; color: var(--cream); }
.footer-nav { max-width: var(--max); margin: 0 auto var(--s4); display: flex; flex-wrap: wrap; gap: var(--s2) var(--s4); justify-content: center; }
.footer-nav a { color: rgba(245, 239, 224, 0.85); text-decoration: none; font-size: 14px; }
.footer-nav a:hover { color: var(--cream); text-decoration: underline; text-underline-offset: 4px; }
.footer-meta { max-width: var(--max); margin: 0 auto; padding-top: var(--s4); border-top: 1px solid rgba(245, 239, 224, 0.15); display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--s2); font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 2.5px; color: rgba(245, 239, 224, 0.7); text-transform: uppercase; }
.footer-meta a { color: inherit; text-decoration: none; }
.footer-cookies { text-decoration: underline !important; text-underline-offset: 3px; }

/* ───── ENTERPRISE SERVICE SECTIONS ───── */
.svc { padding: var(--pad-y) var(--pad-x); border-top: 1px solid var(--rule); }
.svc:nth-of-type(even) { background: var(--cream-soft); }
.svc-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.618fr; gap: var(--s5); align-items: start; }
.svc-side { position: sticky; top: calc(var(--nav-h) + var(--s3)); }
.svc-side .eyebrow { margin-bottom: var(--s2); }
.svc-side h2 { font-size: clamp(30px, 3.4vw, 48px); font-weight: 600; letter-spacing: -1.6px; line-height: 1.04; color: var(--ink); }
.svc-side h2 em { color: var(--jade); }
.svc-side .service-glyph { width: 56px; height: 56px; color: var(--jade); margin-bottom: var(--s3); }
.svc-body > p { font-size: 18px; line-height: 1.65; color: var(--grey-dk); max-width: 680px; }
.svc-body > p + p { margin-top: var(--s2); }
.feature-grid { margin-top: var(--s4); display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s3) var(--s4); }
.feature { padding-top: var(--s2); border-top: 1px solid var(--rule); }
.feature h3 { font-size: 16px; font-weight: 600; letter-spacing: -0.3px; color: var(--jade-dk); margin-bottom: var(--s1); }
.feature ul { list-style: none; }
.feature li { font-size: 14.5px; line-height: 1.55; color: var(--grey-dk); padding: 4px 0 4px 16px; position: relative; }
.feature li::before { content: ''; position: absolute; left: 0; top: 12px; width: 6px; height: 6px; border-radius: 50%; background: var(--jade); }
.plain-list { margin-top: var(--s3); list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px var(--s3); }
.plain-list li { font-size: 15px; line-height: 1.55; color: var(--grey-dk); padding: 6px 0 6px 16px; position: relative; border-bottom: 1px solid var(--rule); }
.plain-list li::before { content: ''; position: absolute; left: 0; top: 15px; width: 6px; height: 6px; border-radius: 50%; background: var(--jade); }
.svc-body .meta-row { margin-top: var(--s4); }
@media (max-width: 900px) { .svc-inner { grid-template-columns: 1fr; gap: var(--s3); } .svc-side { position: static; } .feature-grid, .plain-list { grid-template-columns: 1fr; } }

/* ───── QUESTIONNAIRE ───── */
#fit { background: var(--jade-darker); color: var(--cream); padding: var(--pad-y) var(--pad-x); }
#fit .display { color: var(--cream); }
#fit .display em { color: rgba(245, 239, 224, 0.55); }
#fit .eyebrow { color: rgba(245, 239, 224, 0.6); }
#fit .section-tag { color: rgba(245, 239, 224, 0.78); }
.quiz { max-width: 880px; margin: 0 auto; border-top: 2px solid rgba(245, 239, 224, 0.85); padding-top: var(--s3); }
.quiz-progress { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(245, 239, 224, 0.6); margin-bottom: var(--s3); display: flex; justify-content: space-between; }
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-q { font-size: clamp(24px, 2.8vw, 36px); font-weight: 600; letter-spacing: -1px; line-height: 1.1; margin-bottom: var(--s3); }
.quiz-options { list-style: none; display: grid; gap: 0; border-top: 1px solid rgba(245, 239, 224, 0.2); }
.quiz-options button { width: 100%; text-align: left; background: none; border: 0; border-bottom: 1px solid rgba(245, 239, 224, 0.2); color: var(--cream); font: inherit; font-size: 17px; padding: var(--s2) 0; display: flex; justify-content: space-between; gap: var(--s2); cursor: pointer; transition: padding-left 0.25s ease, color 0.2s; }
.quiz-options button:hover, .quiz-options button:focus-visible { padding-left: 10px; color: #fff; outline: none; }
.quiz-options button::after { content: '→'; opacity: 0.5; }
.quiz-back { margin-top: var(--s3); background: none; border: 0; color: rgba(245, 239, 224, 0.7); font: inherit; font-size: 14px; text-decoration: underline; text-underline-offset: 4px; cursor: pointer; }
.quiz-result { display: none; }
.quiz-result.active { display: block; }
.quiz-result .res-kicker { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(245, 239, 224, 0.6); margin-bottom: var(--s2); }
.quiz-result h3 { font-size: clamp(30px, 3.6vw, 52px); font-weight: 600; letter-spacing: -1.6px; line-height: 1.02; margin-bottom: var(--s2); }
.quiz-result h3 em { color: rgba(245, 239, 224, 0.62); }
.quiz-result p { font-size: 17px; line-height: 1.65; color: rgba(245, 239, 224, 0.82); max-width: 620px; }
.quiz-result .res-price { margin: var(--s3) 0; font-family: 'Fraunces', serif; font-size: 28px; letter-spacing: -1px; }
.quiz-result .res-price small { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(245, 239, 224, 0.6); margin-left: 8px; }
.quiz-result .hero-ctas { margin-top: var(--s3); }
.quiz-result .quiz-back { display: inline-block; }

/* ───── PACKAGE PAGES ───── */
.pk-hero { background: var(--jade); color: var(--cream); padding: clamp(56px, 9vh, 110px) var(--pad-x) clamp(44px, 7vh, 80px); }
.pk-hero-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.618fr 1fr; gap: var(--s5); align-items: end; }
.pk-hero h1 { font-size: clamp(40px, 6vw, 92px); font-weight: 700; letter-spacing: -2.4px; line-height: 0.98; margin-bottom: var(--s3); }
.pk-hero h1 em { color: rgba(245, 239, 224, 0.62); }
.pk-hero .lead { font-size: clamp(16px, 1.2vw, 19px); line-height: 1.6; opacity: 0.88; max-width: 620px; }
.pk-price-block { border-top: 2px solid rgba(245, 239, 224, 0.85); padding-top: var(--s3); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s3) var(--s4); }
.pk-price-block .pk-price:only-child { grid-column: 1 / -1; }
.pk-price .v { display: block; font-family: 'Fraunces', serif; font-size: clamp(34px, 3.6vw, 56px); font-weight: 500; letter-spacing: -2px; line-height: 1; }
.pk-price .l { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: 2.5px; text-transform: uppercase; opacity: 0.7; display: block; margin-bottom: 6px; }
.pk-rates .v { font-size: clamp(30px, 3vw, 44px); margin-bottom: 4px; white-space: nowrap; }
.pk-rates .v small { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.75; margin-left: 6px; }
.pk-price .n { font-size: 14px; line-height: 1.5; opacity: 0.8; margin-top: 6px; max-width: 320px; }
@media (max-width: 900px) { .pk-hero-inner { grid-template-columns: 1fr; gap: var(--s4); } }
.pk-section { padding: var(--pad-y) var(--pad-x); border-top: 1px solid var(--rule); }
.pk-section:nth-of-type(even) { background: var(--cream-soft); }
.pk-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.618fr; gap: var(--s5); align-items: start; }
.pk-inner h2 { font-size: clamp(28px, 3.2vw, 44px); font-weight: 600; letter-spacing: -1.4px; line-height: 1.05; color: var(--ink); position: sticky; top: calc(var(--nav-h) + var(--s3)); }
.pk-inner h2 em { color: var(--jade); }
.get-list { list-style: none; border-top: 2px solid var(--ink); }
.get-list li { padding: var(--s3) 0; border-bottom: 1px solid var(--rule); display: grid; grid-template-columns: 40px 1fr; gap: var(--s2); }
.get-list .i { font-family: 'Fraunces', serif; font-style: italic; color: var(--jade); font-size: 17px; padding-top: 2px; }
.get-list h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.4px; color: var(--jade-dk); margin-bottom: 6px; }
.get-list p { font-size: 15.5px; line-height: 1.6; color: var(--grey-dk); }
.rates { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
.rates-col h3 { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--jade); font-weight: 500; margin-bottom: var(--s2); }
.rate-big { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s2); margin-bottom: var(--s2); }
.rate-big div { border-top: 2px solid var(--ink); padding-top: var(--s2); }
.rate-big .v { display: block; font-family: 'Fraunces', serif; font-size: clamp(36px, 4vw, 56px); font-weight: 500; letter-spacing: -2px; line-height: 1; color: var(--jade-dk); }
.rate-big .l { display: block; font-size: 13px; color: var(--grey-dk); margin-top: 6px; }
.rate-rows { list-style: none; }
.rate-rows li { display: flex; justify-content: space-between; gap: var(--s2); padding: 9px 0; border-bottom: 1px solid var(--rule); font-size: 14.5px; color: var(--grey-dk); }
.rate-rows li span:last-child { font-weight: 600; color: var(--jade-dk); text-align: right; }
.rates-note { grid-column: 1 / -1; font-size: 14px; line-height: 1.6; color: var(--grey-dk); border-top: 1px solid var(--rule); padding-top: var(--s2); }
@media (max-width: 900px) { .pk-inner { grid-template-columns: 1fr; gap: var(--s3); } .pk-inner h2 { position: static; } .rates { grid-template-columns: 1fr; } }
.pk-note p { font-size: 17px; line-height: 1.65; color: var(--grey-dk); max-width: 640px; }
.pk-note p + p { margin-top: var(--s2); }
.two-lanes { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
.lane h3 { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--jade); font-weight: 500; margin-bottom: var(--s2); border-top: 2px solid var(--ink); padding-top: var(--s2); }
.lane ul { list-style: none; }
.lane li { font-size: 15.5px; line-height: 1.6; color: var(--grey-dk); padding: 8px 0 8px 16px; border-bottom: 1px solid var(--rule); position: relative; }
.lane li::before { content: ''; position: absolute; left: 0; top: 17px; width: 6px; height: 6px; border-radius: 50%; background: var(--jade); }
@media (max-width: 760px) { .two-lanes { grid-template-columns: 1fr; } }
.steps { list-style: none; counter-reset: s; display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--s3); }
.steps li { border-top: 2px solid var(--ink); padding-top: var(--s2); }
.steps .k { font-family: 'Fraunces', serif; font-style: italic; color: var(--jade); font-size: 17px; margin-bottom: 6px; display: block; }
.steps h3 { font-size: 17px; font-weight: 600; letter-spacing: -0.3px; color: var(--jade-dk); margin-bottom: 6px; }
.steps p { font-size: 14px; line-height: 1.55; color: var(--grey-dk); }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.ask { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.ask > div { padding: var(--s4) 0; }
.ask > div + div { border-left: 1px solid var(--rule); padding-left: var(--s4); }
.ask .v { font-family: 'Fraunces', serif; font-size: clamp(36px, 4vw, 56px); font-weight: 500; letter-spacing: -2px; line-height: 1; color: var(--jade-dk); margin-bottom: var(--s2); }
.ask p { font-size: 15.5px; line-height: 1.6; color: var(--grey-dk); }
@media (max-width: 760px) { .ask { grid-template-columns: 1fr; } .ask > div + div { border-left: none; border-top: 1px solid var(--rule); padding-left: 0; } }

/* ───── FAQ ───── */
.faq { padding: var(--pad-y) var(--pad-x); border-top: 1px solid var(--border); background: var(--cream); }
.faq-list { max-width: var(--max); margin: 0 auto; border-top: 2px solid var(--ink); }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item summary { list-style: none; cursor: pointer; padding: var(--s3) var(--s4) var(--s3) 0; font-size: 19px; font-weight: 600; letter-spacing: -0.4px; color: var(--jade-dk); position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 0; top: var(--s3); font-family: 'Fraunces', serif; font-size: 24px; line-height: 1; color: var(--jade); transition: transform 0.3s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:focus-visible { outline: 2px solid var(--jade); outline-offset: 4px; }
.faq-item p { padding: 0 0 var(--s3); max-width: 720px; font-size: 16px; line-height: 1.65; color: var(--grey-dk); }
@media (max-width: 720px) { .faq-item summary { font-size: 17px; } }

/* ───── PACKAGE BAND: what is in the package, shown (leaflet V5 imagery) ───── */
.pk-hero-inner { align-items: start; }
.pk-band { margin-top: var(--s4); padding-top: var(--s3); border-top: 1px solid rgba(245, 239, 224, 0.22); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s3); align-items: end; }
.pk-item { margin: 0; display: flex; flex-direction: column; align-items: center; gap: var(--s2); min-width: 0; }
.pk-item figcaption { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 2.2px; text-transform: uppercase; color: rgba(245, 239, 224, 0.82); text-align: center; line-height: 1.6; }
.pk-item > :first-child { height: 132px; display: flex; align-items: flex-end; justify-content: center; }
.dv-lap { width: 100%; max-width: 230px; }
.dv-lap .scr { background: #0d1418; border: 2px solid #2a3138; border-bottom: none; border-radius: 6px 6px 0 0; padding: 2px 2px 0; overflow: hidden; }
.dv-lap .scr img { width: 100%; height: 104px; object-fit: cover; object-position: top left; border-radius: 3px 3px 0 0; }
.dv-lap .base { height: 8px; width: 112%; margin-left: -6%; background: linear-gradient(180deg, #4a535c 0%, #2b323a 55%, #161b20 100%); border-radius: 0 0 9px 9px; position: relative; }
.dv-lap .base::after { content: ''; position: absolute; left: 50%; top: 0; transform: translateX(-50%); width: 26%; height: 3px; background: #11161a; border-radius: 0 0 4px 4px; }
.dv-tab { background: #181d23; border-radius: 9px; padding: 5px; box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28); width: 100%; max-width: 196px; }
.dv-tab img { width: 100%; aspect-ratio: 16 / 10; height: auto; object-fit: cover; object-position: top left; border-radius: 5px; }
img.dv-prod { width: auto; max-width: 100%; height: 132px; object-fit: contain; filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.35)); }
img.dv-photo { width: 100%; max-width: 240px; height: 112px; object-fit: cover; border-radius: 3px; }
.pk-item > img.dv-prod, .pk-item > img.dv-photo { align-self: center; }
@media (max-width: 900px) { .pk-band { max-width: 640px; } }
@media (max-width: 520px) {
  .pk-band { gap: var(--s2); }
  .pk-item > :first-child { height: 84px; }
  .dv-lap .scr img { height: 62px; }
  img.dv-prod { height: 84px; }
  img.dv-photo { height: 70px; }
  .pk-item figcaption { font-size: 8.5px; letter-spacing: 1.4px; }
}

/* ───── CTA + ENQUIRY FORM ───── */
#cta { text-align: left; }
.cta-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: var(--s5); align-items: start; }
#cta .cta-call .eyebrow { justify-content: flex-start; }
#cta .cta-call .display { margin: 0 0 var(--s3); font-size: clamp(32px, 3.6vw, 56px); }
#cta .cta-call .section-tag { margin: 0; }
#cta .cta-row { justify-content: flex-start; }
.enquiry { border-top: 2px solid var(--ink); padding-top: var(--s3); display: grid; gap: var(--s2); }
.enquiry h3 { font-size: 21px; font-weight: 600; letter-spacing: -0.4px; color: var(--jade-dk); }
.enquiry .f-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s2); }
.enquiry label { display: grid; gap: 6px; }
.enquiry label span { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--grey); }
.enquiry input, .enquiry select, .enquiry textarea { font: inherit; font-size: 16px; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid rgba(15, 23, 20, 0.35); border-radius: 0; padding: 8px 0; width: 100%; }
.enquiry textarea { resize: vertical; min-height: 96px; }
.enquiry select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--jade) 50%), linear-gradient(135deg, var(--jade) 50%, transparent 50%); background-position: calc(100% - 12px) 55%, calc(100% - 7px) 55%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 24px; }
.enquiry input:focus, .enquiry select:focus, .enquiry textarea:focus { outline: none; border-bottom: 2px solid var(--jade); }
.enquiry [aria-invalid="true"] { border-bottom-color: #a33a2b; }
.f-trap { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.f-note { font-size: 13px; color: var(--grey); }
.f-actions { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s2); }
.f-status { font-size: 14px; color: var(--grey-dk); }
.f-status a { color: var(--jade-dk); }
.enquiry.sent .f-status { color: var(--jade-dk); font-weight: 500; }
@media (max-width: 900px) { .cta-grid { grid-template-columns: 1fr; gap: var(--s4); } }
@media (max-width: 520px) { .enquiry .f-row { grid-template-columns: 1fr; } }

/* ───── GALLERY + VIDEOS (render only when files exist) ───── */
.gallery, .videos { padding: var(--pad-y) var(--pad-x); border-top: 1px solid var(--border); }
.gal-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: var(--s2); }
.gal-item, .vid-item { margin: 0; }
.gal-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 2px; }
.vid-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: var(--s3); }
.vid-item video { width: 100%; aspect-ratio: 16 / 9; background: var(--jade-darker); border-radius: 2px; display: block; }
.gal-item figcaption, .vid-item figcaption { margin-top: var(--s1); font-size: 13px; color: var(--grey-dk); }

/* ───── REVEAL (js-ready guarded) ───── */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
body.js-ready [data-reveal].in { opacity: 1; transform: translateY(0); }
body:not(.js-ready) [data-reveal] { opacity: 1; transform: none; }

/* ───── COOKIE CONSENT (GDPR/PECR): analytics load only after "Accept all" ───── */
.cookie-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; padding: 0 16px 16px; }
.cookie-inner { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; padding: 20px; background: rgba(250, 246, 236, 0.97); border: 1px solid var(--border); backdrop-filter: blur(8px); }
.cookie-text { margin: 0; font-size: 14px; line-height: 1.55; color: var(--grey-dk); }
.cookie-actions { display: flex; align-items: center; gap: 22px; flex-shrink: 0; }
.cookie-actions .cookie-essential { background: none; border: 0; padding: 0; font: inherit; font-size: 14px; color: var(--grey-dk); text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.cookie-actions .cookie-essential:hover { color: var(--ink); }
.cookie-actions .btn { font-size: 14px; padding: 11px 20px; }
@media (min-width: 640px) { .cookie-bar { padding: 0 24px 24px; } .cookie-inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 32px; } }

/* ───── MOBILE ───── */
@media (max-width: 720px) {
  :root { --pad-y: var(--s5); --pad-x: 21px; }
  #hero { padding: var(--s4) var(--pad-x) var(--s4); }
  nav.site-nav { padding: 14px var(--pad-x); }
  .nav-logo .name { font-size: 18px; }
  .hero-eyebrow { letter-spacing: 2px; gap: 10px; font-size: 10px; }
  .hero-headline { font-size: clamp(32px, 9vw, 46px); letter-spacing: -1.4px; }
  .display { font-size: clamp(30px, 8vw, 40px); letter-spacing: -1.2px; }
  .section-head { margin-bottom: var(--s4); }
  .eyebrow { font-size: 12px; letter-spacing: 3px; }
  .page-hero h1, .pk-hero h1 { font-size: clamp(34px, 9.5vw, 48px); letter-spacing: -1.6px; }
}
