/* ==========================================================================
   Wando Productions — site stylesheet
   Design tokens first. Change a value here and it changes everywhere.
   ========================================================================== */

:root {
  color-scheme: dark;   /* native checkboxes, selects and scrollbars render dark */

  /* Colour — drawn from the logo: navy #03192E, cream #FCF9F2, harbour blue */
  --bg:           #060E17;   /* page background (navy-black) */
  --bg-deep:      #030910;   /* recessed bands */
  --surface:      #0C1721;   /* cards */
  --surface-warm: #0B1B2A;   /* featured card */
  --line:         rgba(226, 236, 245, 0.09);
  --line-strong:  rgba(226, 236, 245, 0.17);

  --text:         #F5F2EC;   /* headlines — the logo's cream */
  --text-soft:    #EFEDE7;
  --text-muted:   #A3AEB9;   /* body copy */
  --text-dim:     #7B8896;   /* captions */
  --text-faint:   #5A6673;   /* legal, meta */

  --accent:       #93B7D4;   /* harbour blue, lifted from the water in the mark */
  --accent-hover: #B8D3E8;
  --accent-ink:   #05121F;   /* text on accent */
  --accent-line:  rgba(147, 183, 212, 0.30);

  /* Type
     --font-display  big statements only (h1, h2, pull quotes, gallery names)
     --font-ui       small headings and labels, where a hairline serif gets thin
     --font-body     running text                                              */
  --font-display: 'Bodoni Moda', 'Didot', 'Bodoni MT', Georgia, serif;
  --font-ui:      'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --gutter: clamp(20px, 4.4vw, 64px);
  --maxw: 1440px;
  --radius: 3px;
}

/* --------------------------------------------------------------- reset -- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-soft);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }

/* Author display rules (.tile, .lightbox, .nav__links) otherwise beat the
   browser's own [hidden] rule, leaving "hidden" elements on screen. */
[hidden] { display: none !important; }
h1, h2 { margin: 0; font-family: var(--font-display); font-weight: 700; letter-spacing: -0.005em; line-height: 1.02; color: var(--text); text-wrap: balance; }
h3, h4 { margin: 0; font-family: var(--font-ui); font-weight: 500; letter-spacing: -0.01em; line-height: 1.2; color: var(--text); }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

a { color: var(--accent); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--accent-hover); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--accent); color: var(--accent-ink);
  padding: 12px 20px; font-size: 14px;
}
.skip:focus { left: 12px; top: 12px; }

/* ------------------------------------------------------------ utilities -- */

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.eyebrow {
  font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase;
  color: #8B96A2; font-weight: 400; line-height: 1.4;
}
.body   { color: var(--text-muted); font-size: 17px; line-height: 1.7; }
.body--sm { font-size: 15px; }

.h-xl { font-size: clamp(38px, 6.6vw, 96px); line-height: 1.0; }
.h-lg { font-size: clamp(32px, 5vw, 72px); }
.h-md { font-size: clamp(28px, 3.9vw, 56px); }
.h-sm { font-size: clamp(22px, 2.4vw, 30px); }

.section { padding-block: clamp(64px, 8vw, 128px); }
.section--band { background: var(--bg-deep); border-block: 1px solid var(--line); }
.section--tight { padding-block: clamp(48px, 6vw, 96px); }

/* Headline lines: stacked on wide screens, reflowing prose on narrow ones */
.ln { display: block; }
@media (max-width: 760px) { .ln { display: inline; } }

/* placeholder chip */
.ph {
  display: inline-block;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: #8B96A2; border: 1px dashed rgba(147, 183, 212, 0.45);
  padding: 5px 9px; border-radius: 2px; line-height: 1.3;
  background: rgba(5, 12, 19, 0.55);
}

/* --------------------------------------------------------------- buttons -- */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 56px; padding: 0 clamp(24px, 3vw, 38px);
  border-radius: 2px; border: 1px solid transparent;
  font-size: 13px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; transition: background .18s ease, border-color .18s ease, color .18s ease;
  text-align: center; background: transparent; font-family: var(--font-body);
}
.btn--primary { background: var(--accent); color: var(--accent-ink); }
.btn--primary:hover { background: var(--accent-hover); color: var(--accent-ink); }
.btn--ghost { background: transparent; border-color: var(--line-strong); color: var(--text-soft); }
.btn--ghost:hover { border-color: rgba(226,236,245,0.4); color: var(--text); }
.btn--block { width: 100%; }

/* ------------------------------------------------------------------- nav -- */

.nav { position: absolute; inset: 0 0 auto 0; z-index: 40; }
.nav--solid { position: relative; background: var(--bg); border-bottom: 1px solid var(--line); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding-block: clamp(14px, 1.8vw, 22px);
}
.logo { display: inline-flex; align-items: center; gap: 14px; color: var(--text-soft); }
.logo:hover { color: var(--text); }
.logo img { flex-shrink: 0; width: auto; height: 96px; }
@media (max-width: 520px) { .logo img { height: 72px; } }

/* full lockup, where there is room to read it */
.logomark { display: block; width: auto; }
.logomark--footer { height: 124px; }
.logomark--auth { height: 140px; }
.logomark--admin { height: 56px; opacity: .72; }

.nav__links { display: flex; align-items: center; gap: clamp(20px, 2.6vw, 40px); }
.nav__link {
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-dim); font-weight: 400;
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--text-soft); }

.nav__cta {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 22px;
  border: 1px solid rgba(147, 183, 212, 0.5); border-radius: 2px;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent);
}
.nav__cta:hover { background: rgba(147, 183, 212, 0.12); }

.nav__toggle {
  display: none; align-items: center; justify-content: center;
  width: 46px; height: 46px; background: none; border: 1px solid var(--line-strong);
  border-radius: 2px; cursor: pointer; color: var(--text-soft);
}

@media (max-width: 860px) {
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: absolute; top: 100%; left: var(--gutter); right: var(--gutter);
    flex-direction: column; align-items: stretch; gap: 0;
    background: #091420; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 8px; box-shadow: 0 24px 60px rgba(0,0,0,.6);
  }
  .nav__links[hidden] { display: none; }
  .nav__link { padding: 16px 14px; font-size: 14px; border-bottom: 1px solid var(--line); }
  .nav__links .nav__cta { margin: 10px 4px 4px; justify-content: center; }
}

/* ------------------------------------------------------------------ hero -- */

.hero { position: relative; min-height: min(900px, 92vh); display: flex; align-items: flex-end; overflow: hidden; }
.hero__media { position: absolute; inset: 0; background: radial-gradient(120% 90% at 50% 0%, #12283C 0%, #091521 48%, #050C13 100%); }
.hero__media video, .hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__scan { position: absolute; inset: 0; background: repeating-linear-gradient(0deg, rgba(255,255,255,.018) 0 1px, transparent 1px 3px); }
.hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,12,19,.6) 0%, rgba(5,12,19,0) 35%, rgba(5,12,19,.94) 100%); }
.hero__chip { position: absolute; top: clamp(84px, 12vw, 124px); right: var(--gutter); z-index: 2; }

.hero__inner { position: relative; z-index: 2; width: 100%; padding-block: clamp(56px, 9vw, 132px); }
.hero__stack { display: flex; flex-direction: column; gap: clamp(20px, 2.4vw, 30px); max-width: 1140px; }
.hero__sub { max-width: 560px; font-size: clamp(16px, 1.4vw, 19px); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 6px; }

.hero--short { min-height: auto; padding-top: clamp(120px, 16vw, 190px); align-items: flex-start; }
.hero--short .hero__media { background: radial-gradient(110% 100% at 70% 10%, #12283C 0%, #0A1622 50%, #050C13 100%); }

.scrollcue { display: inline-flex; align-items: center; gap: 12px; margin-top: 28px; color: #6B7784; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; }
@media (max-width: 860px) { .scrollcue { display: none; } }

/* --------------------------------------------------------- client strip -- */

.strip { border-block: 1px solid var(--line); background: var(--bg-deep); }
.strip__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px 40px; padding-block: 26px; }
.strip__label { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-dim); }
.strip__list { display: flex; flex-wrap: wrap; gap: 20px clamp(24px, 3.4vw, 52px); }
.strip__client { font-family: var(--font-ui); font-weight: 500; font-size: 14px; letter-spacing: 0.14em; color: #93A0AC; }
.strip__client--tbd { color: #3E4A56; }

/* ------------------------------------------------------------- sections -- */

.split { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 28px 48px; }
.split__aside { max-width: 360px; }

.stack { display: flex; flex-direction: column; gap: clamp(16px, 2vw, 22px); }

.grid { display: grid; gap: clamp(16px, 1.6vw, 24px); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 980px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: minmax(0, 1fr); } }

.card {
  display: flex; flex-direction: column; gap: 18px;
  padding: clamp(28px, 3vw, 40px) clamp(24px, 2.6vw, 36px) clamp(32px, 3.2vw, 44px);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
}
.card--featured { background: var(--surface-warm); border-color: var(--accent-line); }
.card__price { font-size: 14px; letter-spacing: .04em; color: var(--accent); }

.step { display: flex; flex-direction: column; gap: 14px; padding-top: 26px; border-top: 1px solid var(--line-strong); }
.step--first { border-top-color: rgba(147, 183, 212, 0.45); }
.step__n { font-family: var(--font-ui); font-weight: 500; font-size: 15px; letter-spacing: 0.2em; color: var(--accent); }

/* one photo of the pair, with who-is-who alongside it */
.team { display: grid; grid-template-columns: 5fr 6fr; gap: clamp(28px, 3.6vw, 60px); align-items: center; }
@media (max-width: 900px) { .team { grid-template-columns: minmax(0, 1fr); } }

.team__photo {
  position: relative; margin: 0; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 3 / 4; background: radial-gradient(90% 85% at 40% 25%, #13304A 0%, #0C1D2C 55%, #060D14 100%);
  border: 1px solid var(--line);
}
.team__photo img { width: 100%; height: 100%; object-fit: cover; }
.team__photo .ph { position: absolute; top: 20px; right: 20px; }

.team__people { display: flex; flex-direction: column; }
.person { display: flex; flex-direction: column; gap: 10px; padding-block: clamp(22px, 2.6vw, 32px); border-top: 1px solid var(--line); }
.person:first-child { border-top: 0; padding-top: 0; }
.person:last-child { padding-bottom: 0; }
.person h3 { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.person__side {
  font-family: var(--font-ui); font-size: 11px; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-faint);
}
.person__side::before { content: "in the photo, "; }

.person__title {
  align-self: flex-start; display: inline-block;
  padding: 5px 12px; border: 1px solid var(--accent-line); border-radius: 999px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent);
}
.person__role { font-size: 14px; letter-spacing: 0.02em; color: var(--text-dim); }

.kit { display: flex; flex-direction: column; gap: 10px; padding: 28px 26px; background: #0B1620; border: 1px solid rgba(226,236,245,.07); border-radius: var(--radius); }
.kit__label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); }
.kit__value { font-size: 16px; color: #BCC6D0; }

/* ------------------------------------------------------------ media tile -- */

.tile {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--radius); min-height: 340px;
  /* default tone: harbor */
  background: radial-gradient(90% 85% at 40% 25%, #13304A 0%, #0C1D2C 55%, #060D14 100%);
}
.tile[data-tone="dusk"]   { background: radial-gradient(90% 85% at 55% 25%, #23203C 0%, #161528 55%, #090913 100%); }
.tile[data-tone="marsh"]  { background: radial-gradient(90% 85% at 45% 30%, #1A2E27 0%, #111D18 55%, #070E0B 100%); }
.tile[data-tone="sand"]   { background: radial-gradient(90% 85% at 55% 25%, #322819 0%, #1C1710 55%, #0B0907 100%); }
.tile[data-tone="storm"]  { background: radial-gradient(90% 85% at 40% 28%, #1E2A34 0%, #141C23 55%, #080D11 100%); }

.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tile--photo::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 62%; z-index: 1;
  background: linear-gradient(to top, rgba(4, 9, 15, .93) 0%, rgba(4, 9, 15, .55) 45%, rgba(4, 9, 15, 0) 100%);
}
.tile--photo:hover img { transform: scale(1.02); }
.tile img { transition: transform .5s ease; }
.tile--wide { grid-column: span 2; min-height: 480px; }
.tile--tall { min-height: 480px; }
@media (max-width: 640px) { .tile--wide { grid-column: span 1; } .tile, .tile--wide, .tile--tall { min-height: 280px; } }

.tile__chip { position: absolute; top: 20px; right: 20px; z-index: 2; }
.tile__play { position: absolute; top: 20px; left: 20px; z-index: 2; opacity: .75; }
.tile__cap {
  position: absolute; left: clamp(18px, 2vw, 30px); right: clamp(18px, 2vw, 30px); bottom: clamp(20px, 2vw, 30px);
  display: flex; flex-direction: column; gap: 7px; z-index: 2;
}
.tile__kind { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); }
.tile__client { font-family: var(--font-display); font-weight: 700; font-size: clamp(20px, 2vw, 30px); color: var(--text); line-height: 1.1; }
.tile__note { font-size: 14px; color: #8D99A5; }

/* --------------------------------------------------------------- filters -- */

.filters { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; min-height: 46px; padding: 0 22px;
  border: 1px solid var(--line-strong); border-radius: 999px; background: none;
  font-family: var(--font-body); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-dim); cursor: pointer; transition: all .18s ease;
}
.chip:hover { color: var(--text-soft); border-color: rgba(226,236,245,.34); }
.chip[aria-pressed="true"] { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }

/* ------------------------------------------------------------ testimonial -- */

.quote { display: flex; gap: clamp(24px, 4vw, 64px); align-items: flex-start; }
.quote__mark { flex-shrink: 0; }
@media (max-width: 640px) { .quote__mark { display: none; } }
.quote__text { font-family: var(--font-display); font-weight: 600; font-size: clamp(22px, 2.9vw, 38px); line-height: 1.3; color: var(--text); letter-spacing: -0.01em; }
.quote__who { display: flex; align-items: center; gap: 16px; }
.quote__avatar { width: 46px; height: 46px; border-radius: 50%; background: #162635; border: 1px solid rgba(226,236,245,.12); flex-shrink: 0; }

/* --------------------------------------------------------------- cta box -- */

.ctabox {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 32px 48px;
  padding: clamp(40px, 5.6vw, 88px) clamp(28px, 4.6vw, 72px);
  border: 1px solid var(--accent-line); border-radius: 4px;
  background: linear-gradient(120deg, #102437 0%, #0A1724 60%, #070F18 100%);
}
.ctabox__text { display: flex; flex-direction: column; gap: 18px; max-width: 660px; }

.cta-center { display: flex; flex-direction: column; align-items: center; gap: 30px; text-align: center; }
.cta-center h2 { max-width: 820px; }

/* ---------------------------------------------------------------- forms -- */

.label { display: block; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: #8B96A2; margin-bottom: 10px; }

.input, .select, .textarea {
  width: 100%; font-family: var(--font-body); font-size: 16px; font-weight: 300;
  color: var(--text-soft); background: #08121B;
  border: 1px solid rgba(226,236,245,.12); border-radius: 2px;
  padding: 0 18px; min-height: 54px;
  transition: border-color .18s ease;
}
.textarea { padding: 16px 18px; min-height: 132px; line-height: 1.6; resize: vertical; }
.input::placeholder, .textarea::placeholder { color: #5A6673; }
.input:focus, .select:focus, .textarea:focus { border-color: var(--accent-line); outline: none; }

.select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%238B96A2' stroke-width='1.5' stroke-linecap='round'%3E%3Cpath d='M3 5.5 L7 9.5 L11 5.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 18px center;
  padding-right: 44px;
}
.select option { background: #08121B; color: var(--text-soft); }

.formcard {
  display: flex; flex-direction: column; gap: 26px;
  padding: clamp(28px, 3.4vw, 48px) clamp(24px, 3.2vw, 46px) clamp(32px, 3.6vw, 52px);
  background: #08121B; border: 1px solid rgba(226,236,245,.09); border-radius: 4px;
}
.formrow { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
@media (max-width: 640px) { .formrow { grid-template-columns: minmax(0, 1fr); } }

.formfoot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; margin-top: 6px; }
.formfoot span { font-size: 13px; color: #6B7784; max-width: 260px; line-height: 1.5; }

/* honeypot — off-screen rather than display:none, which some bots skip */
.pot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.sent { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center;
  padding: clamp(36px, 6vw, 72px) clamp(24px, 4vw, 48px); }
.sent p { max-width: 380px; }

.note {
  display: flex; flex-direction: column; gap: 14px;
  padding: 30px 32px; background: var(--surface);
  border-left: 2px solid var(--accent); border-radius: 0 var(--radius) var(--radius) 0;
}
.note__label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); }

.contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(32px, 4vw, 64px); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: minmax(0, 1fr); } }

.contactline { display: flex; align-items: center; gap: 16px; font-size: 17px; color: #DFE5EB; }
.contactline svg { flex-shrink: 0; }
.contactline a { color: #DFE5EB; }
.contactline a:hover { color: var(--accent); }

/* ---------------------------------------------------------------- auth -- */

.auth { display: grid; grid-template-columns: 690fr 750fr; min-height: 100vh; }
@media (max-width: 900px) { .auth { grid-template-columns: minmax(0, 1fr); min-height: auto; } }

.auth__panel { position: relative; overflow: hidden; padding: clamp(32px, 5vw, 56px); display: flex; flex-direction: column; justify-content: space-between; gap: 48px; min-height: 340px; background: radial-gradient(100% 90% at 30% 20%, #163049 0%, #0C1B29 55%, #050C13 100%); }
.auth__panel > .logo,
.auth__panel > .auth__panelcopy { position: relative; z-index: 3; }
.auth__panelcopy { display: flex; flex-direction: column; gap: 22px; max-width: 480px; }
.auth__points { display: flex; flex-wrap: wrap; gap: 16px 30px; padding-top: 10px; }
.auth__point { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #8D99A5; }

.auth__form { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 5vw, 72px) clamp(24px, 5vw, 96px); border-left: 1px solid rgba(226,236,245,.07); }
.auth__stack { display: flex; flex-direction: column; gap: 26px; width: 100%; max-width: 420px; margin-inline: auto; }

.checkline { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text-muted); cursor: pointer; }
.checkline input { width: 18px; height: 18px; accent-color: var(--accent); flex-shrink: 0; }

.rule { display: flex; align-items: center; gap: 16px; }
.rule::before, .rule::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.rule span { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-faint); }

.stub {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 16px 18px; border: 1px dashed var(--accent-line); border-radius: 2px;
  font-size: 14px; line-height: 1.55; color: #93A0AC; background: rgba(147,183,212,.05);
}

/* admin — deliberately colder than the public site */
.admin { display: flex; align-items: center; justify-content: center; min-height: 100vh; padding: 72px var(--gutter) 48px; background: #04090F; position: relative; overflow: hidden; }
.admin__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(226,236,245,.028) 1px, transparent 1px), linear-gradient(90deg, rgba(226,236,245,.028) 1px, transparent 1px); background-size: 56px 56px; }
.admin__glow { position: absolute; inset: 0; background: radial-gradient(70% 60% at 50% 40%, #0B151F 0%, #060D14 60%, #04090F 100%); }
.admin__mark { position: absolute; top: 26px; left: var(--gutter); z-index: 3; display: flex; align-items: center; gap: 11px; }
.admin__tag { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: #3B454F; padding-left: 10px; border-left: 1px solid #1E2932; }
.admin__card {
  position: relative; z-index: 3; width: 100%; max-width: 460px;
  padding: clamp(32px, 4vw, 52px) clamp(24px, 3.4vw, 48px) clamp(28px, 3.4vw, 44px);
  background: #081119; border: 1px solid rgba(226,236,245,.1); border-radius: 4px;
  display: flex; flex-direction: column; gap: 26px;
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
}
.admin .label { color: #77848F; }
.admin .input { background: #081119; border-color: rgba(226,236,245,.13); }
.admin__lock { display: flex; align-items: center; justify-content: center; width: 46px; height: 46px; border: 1px solid rgba(147,183,212,.35); border-radius: 3px; background: rgba(147,183,212,.09); }
.admin__code { display: flex; gap: 8px; }
.admin__code input {
  flex: 0 0 auto; width: 52px; height: 56px; min-height: 0; padding: 0; text-align: center;
  font-size: 20px; color: var(--text-soft); background: #081119;
  border: 1px solid rgba(226,236,245,.13); border-radius: 2px;
}
.admin__foot { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; padding-top: 18px; border-top: 1px solid rgba(226,236,245,.07); }

/* --------------------------------------------------------------- footer -- */

.footer { border-top: 1px solid var(--line); padding-block: clamp(44px, 5vw, 64px) clamp(36px, 4vw, 52px); }
.footer__top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px 48px; }
.footer__brand { display: flex; flex-direction: column; gap: 16px; max-width: 320px; }
.footer__col { display: flex; flex-direction: column; gap: 14px; }
.footer__link { font-size: 15px; color: var(--text-dim); }
.footer__link:hover { color: var(--text-soft); }
.footer__meta { font-size: 15px; color: var(--text-muted); }

.social { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text-dim); }
.social:hover { color: var(--text-soft); }
.social svg { flex-shrink: 0; }
.social__handle { font-size: 13px; color: var(--text-faint); }
.social--soon { color: var(--text-faint); }
@media (max-width: 560px) { .social__handle { display: none; } }
.footer__bar { margin-top: clamp(32px, 4vw, 56px); padding-top: 26px; border-top: 1px solid rgba(226,236,245,.06); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 13px; color: var(--text-faint); }

/* ----------------------------------------------------------- reduced UI -- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ------------------------------------------------------------- lightbox -- */

button.tile { padding: 0; border: 0; font: inherit; color: inherit; cursor: pointer; text-align: left; width: 100%; }

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px; padding: clamp(16px, 4vw, 48px);
  background: rgba(3, 8, 13, 0.94);
}
.lightbox__stage { display: flex; align-items: center; justify-content: center; max-width: 100%; min-height: 0; flex: 1 1 auto; }
.lightbox video {
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  border-radius: var(--radius); background: #000;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .7);
}
.lightbox__cap { flex: 0 0 auto; text-align: center; font-size: 14px; color: var(--text-dim); letter-spacing: .04em; }
.lightbox__cap strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--text); letter-spacing: 0; margin-bottom: 4px; }
.lightbox__close {
  position: absolute; top: clamp(12px, 2vw, 24px); right: clamp(12px, 2vw, 24px);
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(239, 237, 231, .08); border: 1px solid var(--line-strong);
  color: var(--text-soft); cursor: pointer;
}
.lightbox__close:hover { background: rgba(239, 237, 231, .16); }

/* ---- service pages --------------------------------------------------- */
.prose { max-width: 68ch; }
.prose h2 { margin-top: clamp(34px, 4vw, 52px); }
.prose h2:first-child { margin-top: 0; }
.prose p + p, .prose h2 + p { margin-top: 16px; }

.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; max-width: 70ch; }
.ticks li { position: relative; padding-left: 34px; color: var(--text-soft); font-size: 16px; line-height: 1.6; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .52em;
  width: 16px; height: 9px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg) translateY(-2px);
}

.faq { max-width: 78ch; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 0; cursor: pointer; list-style: none;
  font-size: clamp(16px, 1.5vw, 18px); color: var(--text); font-weight: 500;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ""; flex-shrink: 0; width: 11px; height: 11px;
  border-right: 1.6px solid var(--accent); border-bottom: 1.6px solid var(--accent);
  transform: rotate(45deg) translate(-3px, -3px); transition: transform .2s ease;
}
.faq__item[open] summary::after { transform: rotate(225deg) translate(-3px, -3px); }
.faq__item summary:hover { color: var(--accent); }
.faq__item > p { padding: 0 0 24px; max-width: 68ch; color: var(--text-dim); }

.rel {
  display: block; width: 100%; padding: 0; border: 1px solid var(--line); border-radius: 4px;
  overflow: hidden; background: var(--surface); cursor: pointer; text-align: left; position: relative;
}
.rel img { display: block; width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.rel__meta { display: block; padding: 14px 16px 16px; }
.rel__meta b { display: block; color: var(--text); font-weight: 500; font-size: 15px; }
.rel__meta i { display: block; margin-top: 4px; font-style: normal; font-size: 13px; color: var(--text-dim); }
.rel:hover { border-color: var(--accent-line); }
.rel::after {
  content: ""; position: absolute; top: 14px; left: 14px; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(6,14,23,.6); border: 1px solid rgba(245,242,236,.35);
}
.rel::before {
  content: ""; position: absolute; top: 25px; left: 27px; z-index: 2;
  border-left: 10px solid var(--text); border-top: 6px solid transparent; border-bottom: 6px solid transparent;
}

.endcta {
  display: flex; align-items: center; justify-content: space-between; gap: clamp(20px, 4vw, 48px);
  flex-wrap: wrap; padding: clamp(28px, 4vw, 46px); border: 1px solid var(--line); border-radius: 6px;
  background: linear-gradient(135deg, rgba(147,183,212,.07), transparent 60%);
}
.endcta h2 { max-width: 32ch; }
.card--link { text-decoration: none; display: flex; flex-direction: column; }
.card--link:hover { border-color: var(--accent-line); }
.card__more { margin-top: auto; padding-top: 18px; font-size: 13px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent); }
.card--link:hover .card__more { color: var(--text); }
