/* ============================================================
   Orlestudio - design system
   Palette: cool monochrome + cobalt. Light only. Sharp corners.
   Type: Bricolage Grotesque (display) + Figtree (text)
   ============================================================ */

:root {
  --bg: #f3f4f2;
  --bg-2: #e6e8e5;
  --bg-3: #d9dcd8;
  --ink: #16181b;
  --ink-2: #2c3036;
  --muted: #5c6168;
  --line: #c9cdc8;
  --accent: #1f3fff;
  --accent-ink: #1531c7;
  --accent-soft: #dfe4ff;
  --white: #fbfbfa;

  --font-display: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  --font-text: "Figtree", "Helvetica Neue", Arial, sans-serif;

  --wrap: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow: 0 30px 60px -30px rgba(22, 24, 27, 0.35);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 0.5em;
  font-variation-settings: "opsz" 96;
}
h1 { font-size: clamp(2.6rem, 6.2vw, 5.4rem); font-weight: 700; letter-spacing: -0.035em; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
h4 { font-size: 1.05rem; font-family: var(--font-text); font-weight: 600; letter-spacing: 0; }
.lead { font-size: clamp(1.1rem, 1.5vw, 1.3rem); color: var(--ink-2); max-width: 60ch; }
.muted { color: var(--muted); }
.accent { color: var(--accent); }
strong { font-weight: 600; }
ul, ol { padding-left: 1.2em; }

.wrap { width: min(var(--wrap), 100% - 2 * var(--gutter)); margin-inline: auto; }
.skip { position: absolute; left: -999px; top: 0; background: var(--ink); color: var(--white); padding: 8px 14px; z-index: 100; }
.skip:focus { left: 12px; top: 12px; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* Buttons - sharp, solid ink or cobalt */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px;
  font-family: var(--font-text); font-weight: 600; font-size: 0.95rem;
  border: 1.5px solid var(--ink); background: transparent; color: var(--ink);
  cursor: pointer; white-space: nowrap; line-height: 1;
  transition: transform .2s var(--ease), background .2s, color .2s, border-color .2s;
}
.btn:hover { background: var(--ink); color: var(--white); }
.btn:active { transform: translateY(1px) scale(.985); }
.btn-solid { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-solid:hover { background: var(--accent-ink); border-color: var(--accent-ink); color: #fff; }
.btn-ink { background: var(--ink); color: var(--white); }
.btn-ink:hover { background: var(--accent); border-color: var(--accent); }
.btn-arrow::after { content: "→"; font-size: 1.1em; transition: transform .25s var(--ease); }
.btn-arrow:hover::after { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(243, 244, 242, 0.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.head-row { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.brand img { height: 34px; width: auto; }
.nav { display: flex; align-items: center; gap: 30px; font-weight: 500; font-size: 0.95rem; }
.nav a:not(.btn) { position: relative; padding: 6px 0; }
.nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--accent);
  transition: right .3s var(--ease);
}
.nav a:not(.btn):hover::after, .nav a[aria-current="page"]::after { right: 0; }
.nav-cta { padding: 11px 18px; margin-left: 8px; }
.burger { display: none; width: 44px; height: 44px; background: none; border: 0; cursor: pointer; padding: 10px; flex-direction: column; justify-content: center; gap: 7px; }
.burger span { display: block; height: 2px; background: var(--ink); transition: transform .3s var(--ease); }
.burger[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

/* ---------- Hero: asymmetric, diagonal cobalt block ---------- */
.hero {
  position: relative;
  min-height: calc(100dvh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  align-items: center;
  column-gap: 40px;
  padding-block: clamp(40px, 6vh, 80px) clamp(40px, 8vh, 100px);
  overflow: visible;
}
.hero::before {
  content: "";
  position: absolute; inset: 0 calc(-1 * var(--gutter)) 0 auto;
  width: 46vw; max-width: 720px;
  background: var(--accent);
  clip-path: polygon(38% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { max-width: 12ch; margin-bottom: 0.4em; }
.hero-copy h1 em { font-style: italic; font-weight: 500; color: var(--accent); }
.hero-copy .lead { margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { position: relative; z-index: 1; align-self: end; margin-bottom: calc(-1 * clamp(40px, 8vh, 100px) - 40px); }
.hero-visual img {
  width: 100%; max-width: 440px; aspect-ratio: 2 / 3; object-fit: cover;
  margin-left: auto; box-shadow: var(--shadow);
}
.hero-visual .hero-tag {
  position: absolute; left: -24px; bottom: 15%;
  background: var(--bg); padding: 14px 18px; border-left: 4px solid var(--accent);
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; line-height: 1.25;
  box-shadow: 0 16px 40px -20px rgba(22,24,27,.4);
}
.hero-tag span { display: block; color: var(--muted); font-family: var(--font-text); font-weight: 400; font-size: .8rem; margin-top: 2px; }

/* Hero staggered load */
@media (prefers-reduced-motion: no-preference) {
  .hero-copy > *, .hero-visual { opacity: 0; transform: translateY(22px); animation: rise .9s var(--ease) forwards; }
  .hero-copy > :nth-child(1) { animation-delay: .05s; }
  .hero-copy > :nth-child(2) { animation-delay: .15s; }
  .hero-copy > :nth-child(3) { animation-delay: .25s; }
  .hero-visual { animation-delay: .2s; }
  .hero::before { transform: translateX(40px); opacity: 0; animation: slide 1s var(--ease) .1s forwards; }
}
@keyframes rise { to { opacity: 1; transform: none; } }
@keyframes slide { to { opacity: 1; transform: none; } }

/* ---------- Sections ---------- */
.section { padding-block: clamp(72px, 9vw, 130px); }
.section-tight { padding-block: clamp(48px, 6vw, 80px); }
.section-ink { background: var(--ink); color: var(--white); }
.section-ink .muted { color: #aeb3b9; }
.section-ink h2, .section-ink h3 { color: var(--white); }
.section-2 { background: var(--bg-2); }
.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.section-head { max-width: 62ch; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head p { color: var(--muted); font-size: 1.1rem; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Services bento ---------- */
.bento {
  display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: minmax(200px, auto); gap: 16px;
}
.bento > * { position: relative; overflow: hidden; background: var(--bg-2); padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; }
.bento .b-photo { grid-column: span 7; grid-row: span 2; min-height: 420px; padding: 0; }
.bento .b-video { grid-column: span 5; grid-row: span 2; min-height: 420px; padding: 0; }
.bento .b-photo img, .bento .b-video img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.bento .b-photo:hover img, .bento .b-video:hover img { transform: scale(1.04); }
.bento .b-cap {
  position: relative; z-index: 1; margin: auto 0 0; padding: 24px 28px;
  background: linear-gradient(to top, rgba(22,24,27,.85), rgba(22,24,27,0)); color: var(--white);
}
.bento .b-cap h3 { color: var(--white); margin-bottom: 4px; }
.bento .b-cap p { margin: 0; color: #d5d8dd; font-size: .95rem; }
.bento .b-text { grid-column: span 4; }
.bento .b-text h3 { font-size: 1.25rem; margin-bottom: 6px; }
.bento .b-text p { margin: 0; color: var(--muted); font-size: .95rem; }
.bento .b-accent { grid-column: span 4; background: var(--accent); color: #fff; }
.bento .b-accent h3 { color: #fff; }
.bento .b-accent p { color: #dbe1ff; }
.bento .b-accent .btn { border-color: #fff; color: #fff; align-self: flex-start; margin-top: 14px; }
.bento .b-accent .btn:hover { background: #fff; color: var(--accent); }
.bento .b-num { font-family: var(--font-display); font-size: 3rem; font-weight: 700; line-height: 1; letter-spacing: -.03em; }

/* ---------- Broken-grid feature ---------- */
.broken {
  display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); align-items: center; row-gap: 40px;
}
.broken .bk-img-a { width: 100%; grid-column: 1 / 7; grid-row: 1; aspect-ratio: 3 / 2; object-fit: cover; }
.broken .bk-img-b { width: 100%; grid-column: 5 / 9; grid-row: 1; position: relative; aspect-ratio: 3 / 4; object-fit: cover; margin-top: 28%; box-shadow: var(--shadow); z-index: 1; }
.broken .bk-copy { grid-column: 9 / 13; grid-row: 1; align-self: start; padding-left: 24px; position: relative; z-index: 2; }
.broken .bk-copy h2 { margin-bottom: .6em; }
.broken.flip .bk-img-a { grid-column: 7 / 13; }
.broken.flip .bk-img-b { grid-column: 5 / 9; }
.broken.flip .bk-copy { grid-column: 1 / 5; padding-left: 0; padding-right: 24px; }

/* ---------- Masonry portfolio ---------- */
.masonry { columns: 3; column-gap: 18px; }
.masonry figure { break-inside: avoid; margin: 0 0 18px; position: relative; overflow: hidden; background: var(--bg-2); }
.masonry img { width: 100%; transition: transform 1s var(--ease); }
.masonry figure:hover img { transform: scale(1.03); }
.masonry figcaption { padding: 14px 0 6px; font-size: .95rem; }
.masonry figcaption strong { display: block; font-family: var(--font-display); font-size: 1.1rem; }
.masonry figcaption span { color: var(--muted); }
.masonry figure.hide { display: none; }
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.filters button {
  font: inherit; font-weight: 500; font-size: .9rem; padding: 9px 16px; background: transparent;
  border: 1.5px solid var(--line); cursor: pointer; color: var(--ink); transition: .2s;
}
.filters button:hover { border-color: var(--ink); }
.filters button[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--white); }

/* ---------- Process timeline ---------- */
.timeline { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.timeline-sticky { position: sticky; top: 100px; }
.steps { list-style: none; padding: 0; margin: 0; counter-reset: step; }
.steps li { position: relative; padding: 28px 0 28px 84px; border-top: 1px solid var(--line); counter-increment: step; }
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps li::before {
  content: counter(step, decimal-leading-zero); position: absolute; left: 0; top: 24px;
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 300; color: var(--accent); line-height: 1; letter-spacing: -.03em;
}
.steps h3 { font-size: 1.3rem; margin-bottom: .3em; }
.steps p { margin: 0; color: var(--muted); }

/* ---------- Stats strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid rgba(255,255,255,.15); }
.stats > div { padding: 40px 28px 40px 0; border-right: 1px solid rgba(255,255,255,.15); }
.stats > div:not(:first-child) { padding-left: 28px; }
.stats > div:last-child { border-right: 0; }
.stats b { display: block; font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 4.4rem); font-weight: 700; letter-spacing: -.04em; line-height: 1; margin-bottom: 8px; }
.stats b sup { font-size: .45em; color: var(--accent); vertical-align: top; top: .2em; position: relative; }
.stats span { color: #aeb3b9; font-size: .95rem; }

/* ---------- Testimonials: offset two-column ---------- */
.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.quotes blockquote { margin: 0; padding: 36px; background: var(--white); border-top: 3px solid var(--accent); }
.quotes blockquote:nth-child(even) { margin-top: 56px; }
.quotes p { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; line-height: 1.35; letter-spacing: -.01em; margin-bottom: 20px; }
.quotes footer { font-size: .9rem; color: var(--muted); }
.quotes footer b { color: var(--ink); font-weight: 600; display: block; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 820px; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 48px 22px 0; position: relative;
  font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; letter-spacing: -.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-weight: 300; font-size: 1.8rem; color: var(--accent); transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { color: var(--muted); padding-bottom: 22px; margin: 0; max-width: 70ch; }

/* ---------- Lead form ---------- */
.lead-block { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.lead-block .lead-side h2 { margin-bottom: .5em; }
.lead-side ul { list-style: none; padding: 0; margin: 28px 0 0; }
.lead-side li { padding: 12px 0 12px 28px; border-top: 1px solid var(--line); position: relative; }
.lead-side li::before { content: ""; position: absolute; left: 0; top: 20px; width: 14px; height: 2px; background: var(--accent); }
.lead-side .contact-mini { margin-top: 32px; font-size: .95rem; color: var(--muted); }
.lead-side .contact-mini a { color: var(--ink); font-weight: 500; display: block; }
.form { background: var(--white); padding: clamp(24px, 3.5vw, 44px); border-top: 4px solid var(--accent); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; padding: 13px 14px; border: 1.5px solid var(--line);
  background: var(--bg); color: var(--ink); transition: border-color .2s; border-radius: 0; -webkit-appearance: none; appearance: none;
}
.field select { background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 40px; }
.field textarea { min-height: 130px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #7d838b; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field .err { display: none; color: #b3261e; font-size: .85rem; margin-top: 5px; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #b3261e; }
.field.has-error .err { display: block; }
.field-check { display: flex; gap: 12px; align-items: flex-start; font-size: .9rem; color: var(--muted); }
.field-check input { width: 18px; height: 18px; margin-top: 3px; flex: none; accent-color: var(--accent); }
.field-check a { color: var(--ink); text-decoration: underline; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-msg { margin-top: 18px; padding: 14px 16px; display: none; font-weight: 500; }
.form-msg.ok { display: block; background: #e3f4e8; color: #17603a; }
.form-msg.ko { display: block; background: #fbe6e4; color: #8f1d15; }
.btn[disabled] { opacity: .6; cursor: progress; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: clamp(56px, 8vw, 110px) 0 clamp(40px, 5vw, 70px); position: relative; }
.page-hero h1 { max-width: 16ch; }
.page-hero .lead { max-width: 56ch; }
.page-hero::after { content: ""; display: block; width: 88px; height: 5px; background: var(--accent); margin-top: 28px; }
.page-hero-img { position: relative; }
.page-hero-img img { aspect-ratio: 21 / 9; object-fit: cover; width: 100%; }
.page-hero-img::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 18%; background: var(--accent); clip-path: polygon(0 0, 100% 0, 40% 100%, 0 100%); mix-blend-mode: multiply; opacity: .9; }

/* ---------- Service detail rows ---------- */
.svc-list { display: grid; gap: 0; }
.svc {
  display: grid; grid-template-columns: 1fr 1fr 1.4fr; gap: 40px; padding: 48px 0; border-top: 1px solid var(--line); align-items: start;
}
.svc:last-child { border-bottom: 1px solid var(--line); }
.svc h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); margin: 0; }
.svc h3 small { display: block; font-family: var(--font-text); font-weight: 500; font-size: .85rem; color: var(--accent); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 10px; }
.svc .svc-meta { color: var(--muted); font-size: .95rem; }
.svc .svc-meta dt { font-weight: 600; color: var(--ink); margin-top: 12px; }
.svc .svc-meta dd { margin: 0; }
.svc .svc-body p { color: var(--ink-2); }
.svc .svc-body p:last-child { margin: 0; }

/* Two-column split with tall photo */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.split img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.split .split-copy h2 { margin-bottom: .6em; }
.split .split-copy p { color: var(--ink-2); }

/* ---------- Pricing 2+1 ---------- */
.plans { display: grid; grid-template-columns: 1fr 1fr 1.15fr; gap: 20px; align-items: stretch; }
.plan { background: var(--white); padding: 36px 32px; display: flex; flex-direction: column; border-top: 3px solid var(--line); }
.plan.featured { background: var(--ink); color: var(--white); border-top-color: var(--accent); }
.plan.featured h3, .plan.featured .price { color: var(--white); }
.plan h3 { font-size: 1.6rem; margin-bottom: 4px; }
.plan .plan-for { color: var(--muted); font-size: .95rem; margin-bottom: 22px; }
.plan.featured .plan-for { color: #aeb3b9; }
.plan .price { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; letter-spacing: -.03em; line-height: 1; }
.plan .price small { font-family: var(--font-text); font-weight: 400; font-size: .9rem; color: var(--muted); letter-spacing: 0; }
.plan.featured .price small { color: #aeb3b9; }
.plan ul { list-style: none; padding: 0; margin: 24px 0 28px; flex: 1; }
.plan li { padding: 10px 0 10px 24px; position: relative; border-top: 1px solid rgba(128,128,128,.2); font-size: .95rem; }
.plan li::before { content: ""; position: absolute; left: 0; top: 19px; width: 12px; height: 2px; background: var(--accent); }
.plan .btn { justify-content: center; }
.plan.featured .btn { border-color: var(--white); color: var(--white); }
.plan.featured .btn:hover { background: var(--white); color: var(--ink); }
.extras { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 48px; }
.extras div { display: flex; justify-content: space-between; gap: 20px; padding: 16px 0; border-top: 1px solid var(--line); }
.extras div span:last-child { font-weight: 600; white-space: nowrap; font-family: var(--font-display); }

/* ---------- Team ---------- */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team article { border-top: 2px solid var(--ink); padding-top: 16px; }
.team article:nth-child(2) { margin-top: 40px; }
.team article:nth-child(4) { margin-top: 40px; }
.team h3 { font-size: 1.2rem; margin-bottom: 2px; }
.team .role { color: var(--accent); font-weight: 500; font-size: .9rem; margin-bottom: 10px; display: block; }
.team p { color: var(--muted); font-size: .95rem; margin: 0; }

/* Equipment grid */
.gear { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gear div { padding: 26px; background: var(--white); }
.gear h4 { margin-bottom: 8px; font-family: var(--font-display); font-size: 1.15rem; }
.gear ul { list-style: none; padding: 0; margin: 0; color: var(--muted); font-size: .95rem; }
.gear li { padding: 5px 0; border-top: 1px solid var(--bg-2); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.contact-info dl { margin: 0; }
.contact-info dt { font-weight: 600; margin-top: 22px; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.contact-info dd { margin: 4px 0 0; font-size: 1.1rem; }
.contact-info dd a:hover { color: var(--accent); }
.map { position: relative; aspect-ratio: 16 / 9; background: var(--bg-2); overflow: hidden; }
.map img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); opacity: .5; }
.map .map-pin { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -100%); background: var(--ink); color: var(--white); padding: 12px 16px; font-size: .9rem; font-weight: 500; white-space: nowrap; }
.map .map-pin::after { content: ""; position: absolute; left: 50%; bottom: -8px; width: 16px; height: 16px; background: var(--ink); transform: translateX(-50%) rotate(45deg); }

/* ---------- Legal pages ---------- */
.legal { max-width: 820px; }
.legal h2 { font-size: 1.6rem; margin-top: 2.2em; }
.legal h3 { font-size: 1.15rem; margin-top: 1.6em; }
.legal p, .legal li { color: var(--ink-2); }
.legal table { width: 100%; border-collapse: collapse; font-size: .95rem; margin: 1em 0 2em; }
.legal th, .legal td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.legal th { font-weight: 600; background: var(--bg-2); }
.legal .updated { color: var(--muted); font-size: .9rem; }
.legal-box { background: var(--white); padding: 24px 28px; border-left: 4px solid var(--accent); margin: 1.5em 0; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--accent); color: #fff; }
.cta-band .wrap { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 32px; padding-block: clamp(48px, 6vw, 80px); }
.cta-band h2 { color: #fff; margin: 0 0 .3em; }
.cta-band p { color: #dbe1ff; margin: 0; max-width: 55ch; }
.cta-band .btn { background: var(--ink); border-color: var(--ink); color: var(--white); }
.cta-band .btn:hover { background: var(--white); border-color: var(--white); color: var(--ink); }

/* ---------- Footer ---------- */
.site-foot { background: var(--bg-2); border-top: 1px solid var(--line); margin-top: 0; }
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr; gap: 40px; padding: clamp(48px, 6vw, 80px) 0 40px; }
.foot-brand img { height: 36px; width: auto; margin-bottom: 18px; }
.foot-brand p { color: var(--muted); max-width: 34ch; font-size: .95rem; }
.foot-col h4 { margin-bottom: 14px; }
.foot-col a, .foot-col span, .foot-col address { display: block; font-style: normal; font-size: .95rem; color: var(--ink-2); padding: 4px 0; }
.foot-col a:hover { color: var(--accent); }
.foot-bottom { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 22px 0 32px; border-top: 1px solid var(--line); font-size: .85rem; color: var(--muted); }
.foot-bottom p { margin: 0; }
.foot-bottom nav { display: flex; gap: 20px; flex-wrap: wrap; }
.foot-bottom nav a:hover { color: var(--accent); }

/* Cookie bar */
.cookie {
  position: fixed; left: 20px; bottom: 20px; z-index: 60; max-width: 520px;
  background: var(--ink); color: var(--white); padding: 20px 24px;
  display: flex; gap: 20px; align-items: center; box-shadow: var(--shadow);
}
.cookie[hidden] { display: none; }
.cookie p { margin: 0; font-size: .9rem; }
.cookie a { text-decoration: underline; }
.cookie .btn { flex: none; padding: 11px 16px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .nav { gap: 22px; font-size: .9rem; }
  .bento .b-photo { grid-column: span 12; }
  .bento .b-video { grid-column: span 12; }
  .bento .b-text, .bento .b-accent { grid-column: span 6; }
}
@media (max-width: 900px) {
  .nav {
    position: fixed; inset: 72px 0 auto 0; background: var(--bg); flex-direction: column; align-items: flex-start;
    padding: 20px var(--gutter) 28px; gap: 16px; border-bottom: 1px solid var(--line); display: none;
  }
  .nav.open { display: flex; }
  .nav-cta { margin: 8px 0 0; }
  .burger { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: 0; padding-top: 32px; padding-bottom: 60px; row-gap: 40px; }
  .hero::before { width: 60vw; clip-path: polygon(50% 0, 100% 0, 100% 100%, 0 100%); inset: auto calc(-1 * var(--gutter)) 0 auto; height: 60%; }
  .hero-visual { margin-bottom: 0; }
  .hero-visual img { max-width: 78%; }
  .hero-visual .hero-tag { left: 0; }

  .broken { display: flex; flex-direction: column; }
  .broken .bk-img-b { display: none; }
  .broken .bk-copy { padding: 0 !important; }
  .broken .bk-img-a { width: 100%; }

  .masonry { columns: 2; }
  .timeline, .split, .lead-block, .contact-grid { grid-template-columns: 1fr; }
  .timeline-sticky { position: static; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stats > div:nth-child(2n) { border-right: 0; }
  .stats > div { border-bottom: 1px solid rgba(255,255,255,.15); }
  .quotes { grid-template-columns: 1fr; }
  .quotes blockquote:nth-child(even) { margin-top: 0; }
  .svc { grid-template-columns: 1fr; gap: 20px; padding: 36px 0; }
  .plans { grid-template-columns: 1fr; }
  .team { grid-template-columns: 1fr 1fr; }
  .team article:nth-child(2), .team article:nth-child(4) { margin-top: 0; }
  .gear { grid-template-columns: 1fr; }
  .extras { grid-template-columns: 1fr; }
  .cta-band .wrap { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-visual img { max-width: 100%; }
  .bento { grid-auto-rows: minmax(180px, auto); }
  .bento .b-text, .bento .b-accent { grid-column: span 12; }
  .masonry { columns: 1; }
  .form-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stats > div { border-right: 0; padding-left: 0 !important; }
  .team { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; gap: 28px; }
  .cookie { left: 12px; right: 12px; flex-direction: column; align-items: stretch; }
}
