/* ==========================================================================
   Install-Maintain-Report Ltd
   Palette: door black, blush white, the logo's cerise, and the white of the gap.
   Type: Newsreader (display, echoes the wordmark) + Hanken Grotesk (body).
   ========================================================================== */

:root {
  --ink: #0a0809;
  --coal: #1a1619;
  --ash: #2b262a;
  --smoke: #a39aa0;
  --blush: #f7f2f3;
  --blush-2: #eee4e8;
  --blush-3: #e4d6dc;
  --cerise: #b70452;
  --cerise-deep: #82043b;
  --cerise-soft: #f3d3e0;
  --light: #ffffff;
  --text: #1b1519;
  --text-2: #5c5158;

  --font-display: 'Newsreader', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Hanken Grotesk', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --wrap-pad: clamp(20px, 4.5vw, 72px);
  --wrap-max: 1600px;
  --nav-h: 76px;
  --radius: 6px;
  --ease-door: cubic-bezier(.77, 0, .18, 1);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }
html:not(.motion) { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--blush);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
@media (min-width: 1200px) { body { font-size: 18px; } }
img, video, canvas, svg { display: block; max-width: 100%; }
img { height: auto; }
picture { display: block; }
a { color: inherit; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; }
strong { font-weight: 600; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
::selection { background: var(--cerise); color: #fff; }
:focus-visible { outline: 2px solid var(--cerise); outline-offset: 3px; border-radius: 2px; }
.on-dark :focus-visible, .hero :focus-visible, .nav :focus-visible, .doors :focus-visible, .compliance :focus-visible, .areas :focus-visible, .contact :focus-visible, .footer :focus-visible { outline-color: #fff; }

.skip { position: absolute; left: 16px; top: -60px; z-index: 200; padding: 10px 16px; background: var(--cerise); color: #fff; border-radius: 4px; text-decoration: none; }
.skip:focus { top: 16px; }

.wrap { width: 100%; max-width: var(--wrap-max); margin-inline: auto; padding-inline: var(--wrap-pad); }

/* Display type -------------------------------------------------------------- */
.display {
  font-family: var(--font-display);
  font-weight: 450;
  font-variation-settings: 'opsz' 72;
  letter-spacing: -0.015em;
  line-height: 1.04;
  margin: 0 0 .5em;
  text-wrap: balance;
}
.display em { font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
h2.display { font-size: clamp(2.2rem, 4.4vw, 4.3rem); }
h3.display { font-size: clamp(1.6rem, 2.4vw, 2.2rem); }

/* The split-line masks. Padded outward and pulled back with negative margins so
   descenders, italic tails and overhangs are never clipped. */
.mask { display: block; overflow: hidden; padding: .22em .2em .34em; margin: -.22em -.2em -.34em; }
.mask > * { display: block; }
.motion .hero__title { visibility: hidden; }
.motion.ready .hero__title { visibility: visible; }

/* Buttons: a sliver of light at the left edge that opens across the button, like the door. */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 30px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1;
  letter-spacing: .01em;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition: color .4s var(--ease-door), border-color .4s, transform .25s;
  white-space: nowrap;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: scaleX(.035);
  transform-origin: left center;
  transition: transform .55s var(--ease-door);
}
.btn:hover::before, .btn:focus-visible::before { transform: scaleX(1); }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--cerise); color: #fff; }
.btn--primary::before { background: #fff; }
.btn--primary:hover, .btn--primary:focus-visible { color: var(--cerise); }
.btn--ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.4); }
.btn--ghost::before { background: #fff; }
.btn--ghost:hover, .btn--ghost:focus-visible { color: var(--ink); border-color: #fff; }
.btn--light { background: #fff; color: var(--ink); }
.btn--light::before { background: var(--cerise); }
.btn--light:hover, .btn--light:focus-visible { color: #fff; }
.btn--sm { padding: 12px 20px; font-size: 14px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; color: var(--cerise); text-decoration: none;
  padding-bottom: 3px; border-bottom: 1.5px solid transparent;
  transition: border-color .3s, gap .3s;
}
.link-arrow::after { content: ""; width: 18px; height: 10px; background: currentColor; -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 10'><path d='M0 5h16M12 1l4 4-4 4' fill='none' stroke='black' stroke-width='1.6'/></svg>") center/contain no-repeat; mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 10'><path d='M0 5h16M12 1l4 4-4 4' fill='none' stroke='black' stroke-width='1.6'/></svg>") center/contain no-repeat; }
.link-arrow:hover { border-color: currentColor; gap: 16px; }

/* Tick lists: the logo's oval dot as the bullet. */
.ticks { list-style: none; display: grid; gap: 10px; }
.ticks li { position: relative; padding-left: 28px; }
.ticks li::before { content: ""; position: absolute; left: 4px; top: .62em; width: 9px; height: 13px; border-radius: 50%; background: var(--cerise); transform: rotate(-24deg); }
.ticks--two { grid-template-columns: 1fr 1fr; gap: 12px 28px; }
.on-dark .ticks li::before, .pack--dark .ticks li::before { background: #fff; }

/* Framed image composition ---------------------------------------------------- */
.frame { position: relative; margin: 0; isolation: isolate; }
.frame__media { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--blush-3); }
.frame--tall .frame__media { aspect-ratio: 4 / 5; }
.frame--wide .frame__media { aspect-ratio: 16 / 10; }
.frame__media picture { height: 100%; }
.frame__media img { width: 100%; height: 100%; object-fit: cover; }
.frame__outline { position: absolute; inset: 0; z-index: -1; border: 1.5px solid var(--cerise); border-radius: var(--radius); transform: translate(20px, 20px); pointer-events: none; }
.frame--tall .frame__outline { bottom: 44px; }
.frame__dots { position: absolute; z-index: 2; top: -30px; left: -36px; width: 150px; height: 138px; background: url("../img/logo-mark-cerise.png") center / contain no-repeat; opacity: .5; pointer-events: none; }
.frame__caption { margin-top: 14px; font-size: 14.5px; color: var(--text-2); }
.on-dark .frame__caption { color: var(--smoke); }
.on-dark .frame__outline { border-color: rgba(255,255,255,.35); }

/* Page-load curtain: two black panels part down a seam of light. */
.curtain { position: fixed; inset: 0; z-index: 120; pointer-events: none; }
.curtain__panel { position: absolute; top: 0; bottom: 0; width: 50.5%; background: var(--ink); }
.curtain__panel--l { left: 0; }
.curtain__panel--r { right: 0; }
.curtain__seam { position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; margin-left: -1px; background: #fff; box-shadow: 0 0 34px 10px rgba(255,255,255,.75); opacity: 0; }
html:not(.motion) .curtain { display: none; }
/* Safety net: if scripts fail the curtain still clears. */
.curtain { animation: curtain-clear 0s 3.2s forwards; }
@keyframes curtain-clear { to { visibility: hidden; } }

/* Navigation ---------------------------------------------------------------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 90; color: #fff; transition: background .4s, border-color .4s, backdrop-filter .4s; }
.nav::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,8,9,.78), rgba(10,8,9,0)); pointer-events: none; opacity: 1; transition: opacity .4s; }
.nav.is-scrolled { background: rgba(10,8,9,.84); -webkit-backdrop-filter: blur(16px) saturate(140%); backdrop-filter: blur(16px) saturate(140%); border-bottom: 1px solid rgba(255,255,255,.08); }
.nav.is-scrolled::before { opacity: 0; }
.nav__inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 24px; height: var(--nav-h); max-width: var(--wrap-max); margin-inline: auto; padding-inline: var(--wrap-pad); }
.nav__brand { display: block; flex: 0 0 auto; }
.nav__brand img { height: 34px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: 28px; flex: 1 1 auto; justify-content: flex-end; }
.nav__list { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav__item { position: relative; }
.nav__link { display: inline-flex; align-items: center; gap: 6px; padding: 10px 12px; font-size: 15px; font-weight: 500; color: rgba(255,255,255,.86); text-decoration: none; border-radius: 4px; transition: color .25s, background .25s; }
.nav__link:hover, .nav__link:focus-visible, .has-sub.is-open > .nav__link { color: #fff; background: rgba(255,255,255,.08); }
.nav__chev { transition: transform .3s; }
.has-sub:hover .nav__chev, .has-sub.is-open .nav__chev, .has-sub:focus-within .nav__chev { transform: rotate(180deg); }
.nav__sub {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 320px;
  padding: 10px; background: rgba(20,16,19,.96); border: 1px solid rgba(255,255,255,.1); border-radius: 8px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.7);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-out), visibility 0s .3s;
}
.nav__sub::before { content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }
.has-sub:hover .nav__sub, .has-sub:focus-within .nav__sub, .has-sub.is-open .nav__sub { opacity: 1; visibility: visible; transform: translateY(0); transition-delay: 0s; }
.nav__subitem { display: grid; gap: 2px; padding: 12px 14px; border-radius: 6px; text-decoration: none; color: #fff; transition: background .25s; }
.nav__subitem strong { font-family: var(--font-display); font-weight: 450; font-size: 22px; letter-spacing: -.01em; line-height: 1.1; }
.nav__subitem span { font-size: 14px; color: var(--smoke); }
.nav__subitem:hover, .nav__subitem:focus-visible { background: rgba(255,255,255,.08); }
.nav__subitem:hover strong { color: var(--cerise-soft); }
.nav__actions { display: flex; align-items: center; gap: 18px; }
.nav__phone { font-weight: 600; font-size: 15px; color: #fff; text-decoration: none; font-variant-numeric: tabular-nums; }
.nav__phone:hover { color: var(--cerise-soft); }
.nav__burger { display: none; position: relative; z-index: 2; width: 44px; height: 44px; flex-direction: column; align-items: center; justify-content: center; gap: 6px; border-radius: 6px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: #fff; transition: transform .35s var(--ease-door), opacity .25s; }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Opening: hero + statement share one sticky stage while motion is on. ------ */
.opening { position: relative; background: var(--ink); }
.motion .opening { height: 220vh; }
.motion .opening__stage { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; }
.motion .opening__stage .hero, .motion .opening__stage .statement { position: absolute; inset: 0; }
.motion .opening__stage .hero { z-index: 2; --gap: 0%; }
.motion .opening__stage .hero.is-masking {
  -webkit-mask-image: linear-gradient(90deg, #000 calc(50% - var(--gap)), transparent calc(50% - var(--gap)), transparent calc(50% + var(--gap)), #000 calc(50% + var(--gap)));
  mask-image: linear-gradient(90deg, #000 calc(50% - var(--gap)), transparent calc(50% - var(--gap)), transparent calc(50% + var(--gap)), #000 calc(50% + var(--gap)));
}
.motion .opening__stage .hero.is-done { visibility: hidden; pointer-events: none; }
.motion .opening__stage .statement { z-index: 1; display: grid; align-items: center; }

/* Hero */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: grid; align-items: end; background: var(--ink); color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; overflow: hidden; }
.hero__video, .hero__poster img {
  position: absolute; top: 0; left: 0;
  width: 140%; height: 100%;
  object-fit: cover; object-position: 50% 22%;
}
.hero__poster { position: absolute; inset: 0; z-index: 0; }
.hero__video, .hero__poster img { max-width: none; }
.hero__video { z-index: 1; opacity: 0; transition: opacity .8s; }
.hero__video.is-playing { opacity: 1; }
html:not(.motion) .hero__video { display: none; }
.hero__scrim { position: absolute; inset: 0; z-index: 2; background:
  linear-gradient(rgba(10,8,9,.14), rgba(10,8,9,.14)),
  linear-gradient(180deg, rgba(10,8,9,.82) 0%, rgba(10,8,9,.38) 11%, rgba(10,8,9,0) 28%),
  linear-gradient(90deg, rgba(10,8,9,.9) 0%, rgba(10,8,9,.7) 34%, rgba(10,8,9,.3) 50%, rgba(10,8,9,0) 63%),
  linear-gradient(0deg, rgba(10,8,9,.85) 0%, rgba(10,8,9,0) 45%); }
.hero__content { position: relative; z-index: 3; width: 100%; max-width: var(--wrap-max); margin-inline: auto; padding: calc(var(--nav-h) + 8vh) var(--wrap-pad) 11vh; }
.hero__title { font-size: clamp(2.5rem, 4.7vw, 4.6rem); max-width: min(53%, 780px); margin-bottom: .45em; }
.hero__lede { max-width: 560px; font-size: clamp(1rem, 1.2vw, 1.2rem); color: rgba(255,255,255,.82); margin-bottom: 2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 3.2rem; }
.hero__facts { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 0; font-size: 14.5px; color: rgba(255,255,255,.72); }
.hero__facts li { display: flex; align-items: center; }
.hero__facts li + li::before { content: ""; width: 7px; height: 10px; border-radius: 50%; background: var(--cerise); transform: rotate(-24deg); margin: 0 16px; flex: 0 0 auto; }
.hero__scroll { position: absolute; z-index: 3; right: var(--wrap-pad); bottom: 11vh; width: 2px; height: 64px; background: rgba(255,255,255,.2); overflow: hidden; }
.hero__scroll span { position: absolute; left: 0; top: -40%; width: 100%; height: 40%; background: #fff; animation: scroll-cue 2.2s var(--ease-door) infinite; }
@keyframes scroll-cue { 0% { top: -40%; } 60%, 100% { top: 110%; } }
html:not(.motion) .hero__scroll span { animation: none; top: 30%; }

/* Statement */
.statement { position: relative; background: var(--blush); color: var(--text); overflow: hidden; }
html:not(.motion) .statement { padding: 16vh 0; }
.statement__inner { position: relative; z-index: 2; width: 100%; max-width: var(--wrap-max); margin-inline: auto; padding-inline: var(--wrap-pad); }
.statement__title { font-size: clamp(2.1rem, 4.9vw, 5rem); margin-bottom: .6em; }
.statement__text { max-width: none; column-count: 2; column-gap: 56px; font-size: clamp(1rem, 1.15vw, 1.15rem); color: var(--text-2); }
.statement__seam { position: absolute; left: 50%; top: 0; bottom: 0; z-index: 1; width: 2px; margin-left: -1px; background: #fff; box-shadow: 0 0 60px 18px rgba(255,255,255,.95), 0 0 140px 50px rgba(183,4,82,.25); opacity: 0; pointer-events: none; }
html:not(.motion) .statement__seam { display: none; }

/* Sensor dot-field canvas (the logo's grid, reacting to the visitor like a door sensor). */
.dotfield { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; pointer-events: none; }

/* Intro ------------------------------------------------------------------------ */
.intro { position: relative; padding: clamp(80px, 11vw, 160px) 0; background: var(--blush); }
.intro__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(40px, 6vw, 110px); align-items: start; }
.intro__grid .frame { margin-top: 12px; }
.intro__title { margin-bottom: .55em; }
.intro__body p { font-size: clamp(1rem, 1.15vw, 1.15rem); color: var(--text-2); }
.facts { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 2.4rem; }
.fact { position: relative; display: grid; gap: 8px; padding: 26px 24px 26px; background: #fff; border-radius: var(--radius); border: 1px solid var(--blush-3); align-content: start; }
.fact__mark { display: block; width: 34px; margin-bottom: 8px; opacity: .9; }
.fact strong { font-family: var(--font-display); font-weight: 450; font-size: 1.35rem; line-height: 1.15; letter-spacing: -.01em; }
.fact span:last-child { font-size: 15px; color: var(--text-2); line-height: 1.5; }

/* Services --------------------------------------------------------------------- */
.services { position: relative; background: var(--blush-2); padding-top: clamp(80px, 10vw, 150px); padding-bottom: clamp(40px, 6vw, 90px); }
.services__head { display: grid; grid-template-columns: minmax(0, 8fr) minmax(0, 4fr); gap: 40px; align-items: end; margin-bottom: clamp(30px, 4vw, 60px); }
.services__head p { font-size: clamp(1rem, 1.15vw, 1.15rem); color: var(--text-2); padding-bottom: .6rem; }
.pillar { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 100px); align-items: start; max-width: var(--wrap-max); margin-inline: auto; padding-inline: var(--wrap-pad); min-height: 100vh; }
.pillar__media { position: sticky; top: calc(var(--nav-h) + 4vh); height: calc(100vh - var(--nav-h) - 8vh); margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--blush-3); }
.pillar__media picture { height: 100%; }
.pillar__media img { width: 100%; height: 118%; object-fit: cover; will-change: transform; }
.pillar__body { padding: 16vh 0 14vh; }
.pillar:nth-child(odd) .pillar__media { order: 2; }
.pillar__title { font-size: clamp(3rem, 6.4vw, 6rem); margin-bottom: .2em; }
.pillar__lede { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: clamp(1.35rem, 1.9vw, 1.8rem); line-height: 1.25; letter-spacing: -.01em; color: var(--cerise); margin-bottom: 1.2em; }
.pillar__body > p:not(.pillar__lede) { font-size: clamp(1rem, 1.15vw, 1.15rem); color: var(--text-2); }
.pillar .ticks { margin: 1.8rem 0 2rem; font-size: 16.5px; }

/* Doors gallery: a pinned full-screen stage with crossfade and slow zoom. -------- */
.doors { position: relative; background: var(--ink); color: #fff; padding-top: clamp(80px, 10vw, 150px); }
.doors__head { margin-bottom: clamp(32px, 4vw, 64px); }
.doors__head h2 { max-width: none; }
.doors__stage { position: relative; height: 100vh; height: 100svh; overflow: hidden; }
.doors__slides { position: absolute; inset: 0; list-style: none; }
.slide { position: absolute; inset: 0; opacity: 0; }
.slide.is-active { opacity: 1; }
.slide picture, .slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,8,9,.9) 0%, rgba(10,8,9,.35) 38%, rgba(10,8,9,0) 62%), linear-gradient(90deg, rgba(10,8,9,.35), rgba(10,8,9,0) 50%); }
.slide__caption { position: absolute; z-index: 2; left: var(--wrap-pad); right: var(--wrap-pad); bottom: 12vh; max-width: 680px; }
.slide__caption h3 { font-size: clamp(2rem, 3.6vw, 3.4rem); margin-bottom: .3em; }
.slide__caption p { font-size: clamp(1rem, 1.2vw, 1.2rem); color: rgba(255,255,255,.85); max-width: 560px; }
.doors__ui { position: absolute; z-index: 3; right: var(--wrap-pad); bottom: 12vh; display: grid; justify-items: end; gap: 18px; }
.doors__progress { width: 160px; height: 2px; background: rgba(255,255,255,.2); overflow: hidden; }
.doors__bar { display: block; width: 100%; height: 100%; background: #fff; transform: scaleX(0); transform-origin: left; }
.doors__dots { display: flex; gap: 10px; }
.doors__dots button { width: 10px; height: 14px; border-radius: 50%; background: rgba(255,255,255,.3); transform: rotate(-24deg); transition: background .3s, transform .3s; pointer-events: auto; }
.doors__dots button.is-active { background: #fff; transform: rotate(-24deg) scale(1.25); }
.doors__count { font-family: var(--font-display); font-size: 1.4rem; color: rgba(255,255,255,.85); font-variant-numeric: tabular-nums; }
.doors__count .doors__total::before { content: "/"; margin: 0 .25em; color: rgba(255,255,255,.4); }
.doors__makes { padding-top: clamp(40px, 5vw, 72px); padding-bottom: clamp(80px, 10vw, 150px); font-size: clamp(1rem, 1.2vw, 1.2rem); color: var(--smoke); max-width: none; }
.doors__makes strong { color: #fff; }
/* Clean stacked fallback for reduced motion or no script */
html:not(.motion) .doors__stage { height: auto; }
html:not(.motion) .doors__slides { position: static; display: grid; gap: 4px; }
html:not(.motion) .slide { position: relative; opacity: 1; background: var(--coal); }
html:not(.motion) .slide picture { position: relative; inset: auto; height: auto; aspect-ratio: 16 / 9; max-height: 80vh; }
html:not(.motion) .slide::after { display: none; }
html:not(.motion) .slide__caption { position: static; max-width: none; padding: 20px var(--wrap-pad) 36px; }
html:not(.motion) .slide__caption p { max-width: 720px; }
html:not(.motion) .doors__ui { display: none; }

/* Compliance ---------------------------------------------------------------- */
.compliance { position: relative; background: var(--ink); color: #fff; padding: clamp(80px, 10vw, 150px) 0; overflow: hidden; }
.compliance .wrap { position: relative; z-index: 1; }
.compliance__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(36px, 5vw, 90px) clamp(40px, 6vw, 110px); align-items: center; }
.compliance__intro p { font-size: clamp(1rem, 1.15vw, 1.15rem); color: rgba(255,255,255,.78); margin-bottom: 1.8rem; }
.compliance__photo { margin-top: 12px; }
.limits { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-self: start; }
.limit { display: grid; gap: 10px; padding: 28px 26px 30px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.035); border-radius: var(--radius); align-content: start; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.limit__figure { font-size: clamp(3rem, 4.6vw, 4.4rem); line-height: .95; margin: 0 0 6px; color: #fff; }
.limit__figure small { font-size: .38em; font-style: italic; margin-left: .12em; color: var(--cerise-soft); }
.limit strong { font-size: 1.05rem; }
.limit span:last-child { font-size: 15px; color: rgba(255,255,255,.7); line-height: 1.55; }
.report-card { align-self: start; background: #fff; color: var(--text); border-radius: 10px; padding: 26px 28px 24px; box-shadow: 0 40px 80px -30px rgba(0,0,0,.8); position: relative; }
.report-card::before { content: ""; position: absolute; inset: 10px; border: 1px solid var(--blush-3); border-radius: 6px; pointer-events: none; }
.report-card__head { display: flex; align-items: center; gap: 14px; padding-bottom: 18px; border-bottom: 1px solid var(--blush-3); margin-bottom: 8px; }
.report-card__head img { width: 42px; }
.report-card__head strong { display: block; font-family: var(--font-display); font-weight: 450; font-size: 1.5rem; line-height: 1.05; }
.report-card__head span { font-size: 14px; color: var(--text-2); }
.report-card__rows { list-style: none; }
.report-card__rows li { display: grid; grid-template-columns: 26px 1fr auto; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--blush-2); font-size: 15.5px; }
.report-card__rows li:last-child { border-bottom: 0; }
.report-card__rows svg { width: 22px; height: 22px; }
.report-card__rows .tick { fill: none; stroke: var(--cerise); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 24; stroke-dashoffset: 0; }
.motion .report-card__rows .tick { stroke-dashoffset: 24; }
.report-card__rows em { font-style: normal; font-weight: 600; color: var(--cerise); font-size: 14px; }
.report-card__foot { padding-top: 16px; display: flex; justify-content: flex-end; }
.report-card__stamp { display: inline-block; padding: 8px 14px; border: 1.5px solid var(--cerise); color: var(--cerise); border-radius: 3px; font-weight: 600; font-size: 13.5px; transform: rotate(-3deg); }

/* Packages ------------------------------------------------------------------ */
.packages { background: var(--blush); }
.packages__band { position: relative; color: #fff; padding: clamp(90px, 11vw, 170px) 0 calc(clamp(90px, 11vw, 170px) + 120px); overflow: hidden; background: var(--ink); }
.packages__bg { position: absolute; inset: 0; }
.packages__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .8; }
.packages__band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,8,9,.9) 0%, rgba(10,8,9,.55) 55%, rgba(10,8,9,.25) 100%); }
.packages__band .wrap { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 40px; align-items: end; }
.packages__band p { font-size: clamp(1rem, 1.2vw, 1.2rem); color: rgba(255,255,255,.8); padding-bottom: .6rem; }
.packages__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: -120px; position: relative; z-index: 2; }
.pack { display: grid; gap: 18px; align-content: start; padding: clamp(28px, 3vw, 44px); background: #fff; border-radius: 10px; box-shadow: 0 30px 60px -30px rgba(27,21,25,.35); }
.pack h3 { margin: 0; }
.pack > p { color: var(--text-2); }
.pack .ticks { margin: 4px 0 10px; }
.pack .btn { justify-self: start; }
.pack--dark { background: var(--coal); color: #fff; }
.pack--dark > p { color: rgba(255,255,255,.75); }
.packages__guide { padding: clamp(70px, 9vw, 130px) var(--wrap-pad) clamp(80px, 10vw, 150px); }
.packages__guide > p { max-width: none; color: var(--text-2); font-size: clamp(1rem, 1.15vw, 1.15rem); margin-bottom: 2rem; }
.guide { width: 100%; border-collapse: collapse; font-size: 16px; }
.guide th { text-align: left; font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-2); font-weight: 600; padding: 0 18px 14px 0; border-bottom: 1px solid var(--blush-3); }
.guide td { padding: 20px 18px 20px 0; border-bottom: 1px solid var(--blush-3); vertical-align: top; }
.guide td:first-child { font-family: var(--font-display); font-size: 1.3rem; line-height: 1.15; letter-spacing: -.01em; width: 34%; }
.guide td:nth-child(2) { color: var(--text-2); }
.guide td:last-child { font-weight: 600; color: var(--cerise); width: 24%; }
.guide__note { margin-top: 22px; font-size: 15px; color: var(--text-2); }

/* At home ------------------------------------------------------------------- */
.home { position: relative; background: var(--blush-2); padding: clamp(80px, 10vw, 150px) 0; overflow: hidden; }
.home__grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(40px, 6vw, 120px); align-items: center; }
.home__body p { font-size: clamp(1rem, 1.15vw, 1.15rem); color: var(--text-2); }
.home__body .ticks { margin: 1.8rem 0 2.2rem; }
.frame--offset { margin-right: 20px; }

/* About + areas -------------------------------------------------------------- */
.areas { position: relative; background: var(--ink); color: #fff; padding: clamp(90px, 11vw, 170px) 0; overflow: hidden; }
.areas__bg { position: absolute; inset: 0; }
.areas__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.areas::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,8,9,.94) 0%, rgba(10,8,9,.78) 50%, rgba(10,8,9,.55) 100%), linear-gradient(0deg, rgba(10,8,9,.9), rgba(10,8,9,0) 40%); }
.areas .wrap { position: relative; z-index: 1; }
.areas__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(40px, 6vw, 110px); align-items: start; }
.areas__intro p { font-size: clamp(1rem, 1.15vw, 1.15rem); color: rgba(255,255,255,.8); }
.founder { display: grid; grid-template-columns: 56px 1fr; gap: 20px; margin-top: 2.4rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.15); }
.founder__mark { width: 56px; opacity: .9; }
.founder strong { display: block; font-family: var(--font-display); font-weight: 450; font-size: 1.5rem; margin-bottom: .4rem; }
.founder p { font-size: 16px; color: rgba(255,255,255,.72); }
.regions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding-top: 10px; }
.region h3 { font-size: clamp(1.5rem, 2.2vw, 2.1rem); padding-bottom: 14px; margin-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.18); }
.towns { list-style: none; display: grid; gap: 8px; }
.towns li { position: relative; padding-left: 20px; color: rgba(255,255,255,.82); font-size: 16px; }
.towns li::before { content: ""; position: absolute; left: 0; top: .6em; width: 7px; height: 10px; border-radius: 50%; background: var(--cerise); transform: rotate(-24deg); }

/* FAQ ------------------------------------------------------------------------ */
.faq { background: var(--blush); padding: clamp(80px, 10vw, 150px) 0; }
.faq__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(40px, 6vw, 110px); align-items: start; }
.faq__side { position: sticky; top: calc(var(--nav-h) + 24px); }
.faq__side .frame { margin-top: 2rem; }
.qa { border-bottom: 1px solid var(--blush-3); }
.qa:first-child { border-top: 1px solid var(--blush-3); }
.qa summary { list-style: none; cursor: pointer; display: grid; grid-template-columns: 1fr 28px; align-items: center; gap: 20px; padding: 22px 0; font-family: var(--font-display); font-weight: 450; font-size: clamp(1.25rem, 1.6vw, 1.55rem); line-height: 1.2; letter-spacing: -.01em; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after { content: ""; width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--cerise); background: linear-gradient(var(--cerise), var(--cerise)) center / 12px 1.5px no-repeat, linear-gradient(var(--cerise), var(--cerise)) center / 1.5px 12px no-repeat; transition: transform .4s var(--ease-door), background-size .3s; }
.qa[open] summary::after { transform: rotate(45deg); }
.qa summary:hover { color: var(--cerise); }
.qa__body { overflow: hidden; }
.qa__body p { padding: 0 44px 24px 0; color: var(--text-2); font-size: 16.5px; }

/* Contact ------------------------------------------------------------------- */
.contact { position: relative; background: var(--ink); color: #fff; padding: clamp(90px, 11vw, 170px) 0; overflow: hidden; }
.contact__bg { position: absolute; inset: 0; }
.contact__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; opacity: .9; }
.contact::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,8,9,.96) 0%, rgba(10,8,9,.86) 38%, rgba(10,8,9,.5) 62%, rgba(10,8,9,.28) 100%), linear-gradient(0deg, rgba(10,8,9,.9) 0%, rgba(10,8,9,0) 38%); }
@media (min-width: 901px) { .contact__bg { left: 18%; right: -42%; } }
.contact .wrap { position: relative; z-index: 1; }
.contact__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(40px, 6vw, 110px); align-items: start; }
.contact__intro p { font-size: clamp(1rem, 1.15vw, 1.15rem); color: rgba(255,255,255,.8); }
.contact__details { list-style: none; display: grid; gap: 18px; margin: 2.2rem 0; }
.contact__details li { display: grid; gap: 4px; }
.contact__details li > span { font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--smoke); }
.contact__details a { font-family: var(--font-display); font-size: clamp(1.4rem, 2vw, 1.9rem); line-height: 1.1; text-decoration: none; letter-spacing: -.01em; word-break: break-word; transition: color .25s; }
.contact__details a:hover { color: var(--cerise-soft); }
.contact__details strong { font-family: var(--font-display); font-weight: 450; font-size: clamp(1.2rem, 1.6vw, 1.5rem); line-height: 1.15; }
.contact__photo-tip { font-size: 15.5px; color: rgba(255,255,255,.65); border-left: 2px solid var(--cerise); padding-left: 16px; }
.form { display: grid; gap: 18px; padding: clamp(24px, 3vw, 40px); background: rgba(26,22,25,.92); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.form__row--two { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field > span { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.85); }
.field small { font-weight: 400; color: var(--smoke); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 16px; color: #fff;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); border-radius: 5px;
  padding: 14px 16px; transition: border-color .25s, box-shadow .25s, background .25s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--cerise); box-shadow: 0 0 0 3px rgba(183,4,82,.3); background: rgba(255,255,255,.09); }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.4); }
.field select { appearance: none; -webkit-appearance: none; padding-right: 44px; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 12 12'><path d='M2 4l4 4 4-4' fill='none' stroke='%23ffffff' stroke-width='1.6' stroke-linecap='round'/></svg>"); background-repeat: no-repeat; background-position: right 16px center; }
.field select option { color: var(--text); background: #fff; }
.field.is-invalid input, .field.is-invalid select { border-color: #ff5c8a; }
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 28px; }
.form__consent { font-size: 13.5px; color: var(--smoke); }
.form__status { min-height: 1.4em; font-size: 15.5px; color: var(--cerise-soft); }
.form__status.is-ok { color: #9be3b9; }
.form__status.is-error { color: #ff9ab8; }
.form.is-sent .form__row, .form.is-sent .field, .form.is-sent .form__foot { display: none; }
.form.is-sent .form__status { font-family: var(--font-display); font-size: 1.6rem; line-height: 1.2; color: #fff; }

/* Footer ---------------------------------------------------------------------- */
.footer { background: var(--ink); color: rgba(255,255,255,.78); border-top: 1px solid rgba(255,255,255,.08); padding: clamp(56px, 7vw, 96px) 0 0; }
.footer__grid { display: grid; grid-template-columns: minmax(0, 5fr) repeat(3, minmax(0, 2.4fr)); gap: 40px; padding-bottom: clamp(40px, 5vw, 72px); }
.footer__logo { width: 250px; margin-bottom: 22px; }
.footer__brand p { font-size: 15.5px; max-width: none; color: var(--smoke); }
.footer__col { display: grid; gap: 10px; align-content: start; }
.footer__col h2 { font-family: var(--font-display); font-weight: 450; font-size: 1.35rem; color: #fff; margin: 0 0 8px; }
.footer__col a { text-decoration: none; color: rgba(255,255,255,.78); font-size: 15.5px; transition: color .25s; word-break: break-word; }
.footer__col a:hover { color: var(--cerise-soft); }
.footer__legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 30px; padding-block: 22px 26px; border-top: 1px solid rgba(255,255,255,.08); font-size: 14px; color: var(--smoke); }
.footer__legal a { color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.3); }
.footer__legal a:hover { border-color: #fff; }

/* Mobile call bar ------------------------------------------------------------- */
.callbar { display: none; }

/* Responsive ------------------------------------------------------------------ */
@media (max-width: 1180px) {
  .intro__grid, .home__grid, .compliance__grid, .areas__grid, .faq__grid, .contact__grid { gap: clamp(32px, 5vw, 60px); }
  .regions { gap: 20px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .hero__title { max-width: min(62%, 700px); }
  .services__head { grid-template-columns: 1fr; gap: 12px; }
  .facts { grid-template-columns: 1fr; }
  .limits { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --nav-h: 64px; }
  .nav__brand img { height: 30px; }
  .nav__burger { display: flex; }
  .nav__menu {
    position: fixed; inset: 0; z-index: 1; display: flex; flex-direction: column; justify-content: center; align-items: stretch; gap: 32px;
    padding: calc(var(--nav-h) + 24px) var(--wrap-pad) 40px; background: rgba(10,8,9,.97);
    -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
    clip-path: inset(0 0 100% 0); transition: clip-path .6s var(--ease-door); overflow-y: auto;
  }
  .nav.is-open .nav__menu { clip-path: inset(0 0 0 0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__item { border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav__link { width: 100%; justify-content: space-between; padding: 16px 0; font-family: var(--font-display); font-weight: 450; font-size: 1.9rem; letter-spacing: -.01em; border-radius: 0; }
  .nav__link:hover, .nav__link:focus-visible, .has-sub.is-open > .nav__link { background: none; }
  .nav__sub { position: static; min-width: 0; padding: 0 0 12px; background: none; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; display: none; gap: 2px; transition: none; }
  .has-sub.is-open .nav__sub { display: grid; }
  .nav__subitem { padding: 10px 0 10px 18px; border-left: 1.5px solid var(--cerise); border-radius: 0; }
  .nav__subitem strong { font-size: 1.25rem; }
  .nav__actions { flex-direction: column; align-items: stretch; gap: 14px; }
  .nav__phone { font-family: var(--font-display); font-size: 1.6rem; text-align: center; }
  .nav__actions .btn { justify-content: center; padding: 16px 20px; font-size: 15.5px; }

  .motion .opening { height: 200vh; }
  .hero__video, .hero__poster img { width: 100%; object-position: 50% 40%; }
  .hero__scrim { background: linear-gradient(rgba(10,8,9,.5), rgba(10,8,9,.5)), linear-gradient(180deg, rgba(10,8,9,.88) 0%, rgba(10,8,9,.45) 12%, rgba(10,8,9,0) 30%), linear-gradient(0deg, rgba(10,8,9,.96) 0%, rgba(10,8,9,.6) 45%, rgba(10,8,9,.15) 70%, rgba(10,8,9,0) 100%); }
  .hero__content { padding-bottom: 16vh; }
  .hero__title { max-width: none; font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .hero__lede { font-size: 15.5px; margin-bottom: 1.5rem; }
  .hero__cta { margin-bottom: 2rem; }
  .hero__cta .btn { flex: 1 1 100%; }
  .hero__facts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 14px; font-size: 13.5px; line-height: 1.35; }
  .hero__facts li { align-items: flex-start; }
  .hero__facts li::before, .hero__facts li + li::before { content: ""; width: 7px; height: 10px; border-radius: 50%; background: var(--cerise); transform: rotate(-24deg); margin: 4px 10px 0 0; flex: 0 0 auto; }
  .hero__scroll { display: none; }
  .statement__title { font-size: clamp(1.9rem, 7.4vw, 2.6rem); }
  .statement__text { column-count: 1; font-size: 1rem; }
  .motion .opening__stage .statement { align-items: center; }

  .intro__grid, .home__grid, .compliance__grid, .areas__grid, .faq__grid, .contact__grid { grid-template-columns: 1fr; }
  .intro__grid .frame { max-width: 520px; margin-top: 0; }
  .home__grid .frame { order: -1; max-width: 520px; }
  .frame--offset { margin-right: 0; }
  .pillar { grid-template-columns: 1fr; gap: 26px; min-height: 0; padding-bottom: 20px; }
  .pillar__media { position: relative; top: auto; height: auto; aspect-ratio: 16 / 10; }
  .pillar__media img { height: 100%; }
  .pillar:nth-child(odd) .pillar__media { order: 0; }
  .pillar__body { padding: 0 0 48px; }
  .pillar__title { font-size: clamp(2.6rem, 12vw, 4rem); }
  .doors__stage { height: 100svh; }
  .slide__caption { bottom: 178px; right: var(--wrap-pad); }
  .doors__ui { bottom: 96px; right: var(--wrap-pad); left: var(--wrap-pad); grid-template-columns: 1fr auto; justify-items: start; align-items: center; gap: 12px 16px; }
  .doors__progress { width: 100%; grid-column: 1 / -1; }
  .compliance__grid { align-items: start; }
  .limits { grid-template-columns: 1fr 1fr; gap: 12px; }
  .limit { padding: 20px 18px 22px; }
  .limit__figure { font-size: 2.6rem; }
  .packages__band .wrap { grid-template-columns: 1fr; gap: 10px; }
  .packages__band { padding-bottom: calc(clamp(90px, 11vw, 170px) + 60px); }
  .packages__cards { grid-template-columns: 1fr; margin-top: -60px; }
  .guide, .guide thead, .guide tbody, .guide tr, .guide td { display: block; }
  .guide thead { display: none; }
  .guide tr { padding: 18px 0; border-bottom: 1px solid var(--blush-3); }
  .guide td { padding: 0 0 6px; border: 0; width: auto !important; }
  .guide td:last-child::before { content: "Visits we suggest: "; font-weight: 400; color: var(--text-2); }
  .regions { grid-template-columns: 1fr; gap: 26px; }
  .faq__side { position: static; }
  .faq__side .frame { max-width: 560px; }
  .form__row--two { grid-template-columns: 1fr; }
  .contact__bg img { object-position: 82% 50%; opacity: .7; }
  .contact::before { background: linear-gradient(180deg, rgba(10,8,9,.97) 0%, rgba(10,8,9,.88) 40%, rgba(10,8,9,.72) 100%); }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__legal { flex-direction: column; align-items: flex-start; }

  .callbar { position: fixed; z-index: 80; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 1.4fr 1fr; gap: 1px; background: rgba(255,255,255,.12); border-top: 1px solid rgba(255,255,255,.12); transform: translateY(0); transition: transform .4s var(--ease-door); padding-bottom: env(safe-area-inset-bottom); }
  .callbar.is-hidden { transform: translateY(110%); }
  .callbar a { display: flex; align-items: center; justify-content: center; padding: 16px 12px; font-weight: 600; font-size: 15px; text-decoration: none; }
  .callbar__call { background: var(--cerise); color: #fff; }
  .callbar__enq { background: var(--ink); color: #fff; }
  .footer { padding-bottom: 64px; }
}

@media (max-width: 560px) {
  .ticks--two { grid-template-columns: 1fr; }
  .limits { grid-template-columns: 1fr; }
  .fact { padding: 22px 20px; }
  .frame__dots { width: 110px; height: 100px; top: -22px; left: -18px; }
  .report-card { padding: 22px 20px 20px; }
  .guide td:first-child { font-size: 1.15rem; }
  .doors__count { font-size: 1.15rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
