/* ============================================================
   NIDHOGG STUDIOS — "Stories with teeth."
   Dark cinematic theme. Ember accent on near-black.
   ============================================================ */

:root {
  --ink: #07090c;            /* page background — near black, blue-cold */
  --ink-2: #0d1117;          /* raised panels */
  --ink-3: #141a22;          /* cards */
  --line: #1f2832;           /* hairline borders */
  --bone: #e9e4d8;           /* primary text — warm bone white */
  --bone-dim: #9aa3ad;       /* secondary text — cold steel */
  --ember: #ff5a36;          /* accent — molten ember */
  --ember-deep: #c23a1d;
  --gold: #c9a86a;           /* secondary accent — aged brass */
  --max: 1200px;
  --font-display: "Archivo", sans-serif;
  --font-body: "Archivo", sans-serif;
  --font-accent: "Cormorant Garamond", serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* film-grain overlay across the whole site */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

::selection { background: var(--ember); color: var(--ink); }

img, video { max-width: 100%; display: block; }

a { color: var(--ember); text-decoration: none; }
a:hover { color: var(--bone); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- typography ---------- */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.05;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.6rem, 7vw, 5.4rem); }
h2 { font-size: clamp(1.9rem, 4.5vw, 3.2rem); }
h3 { font-size: 1.15rem; letter-spacing: .04em; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 18px;
}
.kicker::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--ember);
}

.accent-line {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--gold);
}

.lede {
  color: var(--bone-dim);
  font-size: 1.15rem;
  max-width: 62ch;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  border: 1px solid var(--ember);
  color: var(--bone);
  background: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .3s;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ember);
  transform: translateX(-101%);
  transition: transform .35s cubic-bezier(.7,0,.2,1);
  z-index: -1;
}
.btn:hover { color: var(--ink); }
.btn:hover::before { transform: translateX(0); }

.btn--solid { background: var(--ember); color: var(--ink); }
.btn--solid::before { background: var(--bone); }

.btn--ghost { border-color: var(--line); }

/* ---------- header / nav ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(7, 9, 12, .88);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: 1320px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bone);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo:hover { color: var(--bone); }
.logo svg,
.logo-dragon {
  width: 46px;
  height: 34px;
  display: block;
  flex: 0 0 46px;
  object-fit: contain;
}
.logo span em {
  font-style: normal;
  color: var(--ember);
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav a {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bone-dim);
  position: relative;
}
.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 1px;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}
.nav a:not(.btn):hover,
.nav a.active { color: var(--bone); }
.nav a:not(.btn):hover::after,
.nav a.active::after { transform: scaleX(1); }

.nav .btn { padding: 11px 22px; font-size: .75rem; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px; height: 40px;
  position: relative;
  z-index: 102;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--bone);
  margin: 5px auto;
  transition: transform .3s, opacity .3s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 0;
    background: var(--ink);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transform: translateY(-100%);
    transition: transform .4s cubic-bezier(.7,0,.2,1);
    z-index: 101;
  }
  .nav.open { transform: translateY(0); }
  .nav a { font-size: 1.2rem; }
}

/* ---------- hero ---------- */

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 140px 0 80px;
  background:
    radial-gradient(ellipse 90% 60% at 70% 110%, rgba(255,90,54,.13), transparent 60%),
    radial-gradient(ellipse 60% 50% at 15% -10%, rgba(38,58,82,.35), transparent 65%),
    var(--ink);
}

/* serpent root lines crawling up from the bottom of the hero */
.hero-roots {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .5;
}
.hero-roots path {
  fill: none;
  stroke: var(--ember);
  stroke-width: 1.2;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: drawroot 4s ease-out forwards;
  opacity: .35;
}
.hero-roots path:nth-child(2) { animation-delay: .5s; stroke: var(--gold); opacity: .2; }
.hero-roots path:nth-child(3) { animation-delay: 1s; opacity: .18; }
@keyframes drawroot { to { stroke-dashoffset: 0; } }

.hero .wrap { position: relative; z-index: 2; }

.hero h1 .row { display: block; }
.hero h1 .outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--bone);
}
@supports not (-webkit-text-stroke: 1px #fff) {
  .hero h1 .outline { color: var(--bone-dim); }
}
.hero h1 .ember { color: var(--ember); }

.hero .lede { margin: 28px 0 40px; }

.hero-cta { display: flex; gap: 18px; flex-wrap: wrap; }

.hero-meta {
  position: absolute;
  bottom: 36px; left: 0; right: 0;
  z-index: 2;
}
.hero-meta .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.hero-meta .scroll-hint {
  display: inline-flex; align-items: center; gap: 10px;
}
.hero-meta .scroll-hint::after {
  content: "";
  width: 1px; height: 38px;
  background: linear-gradient(var(--ember), transparent);
  animation: drip 1.8s ease-in-out infinite;
}
@keyframes drip {
  0%, 100% { transform: scaleY(.4); transform-origin: top; opacity: .4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ---------- sections ---------- */

section { padding: 110px 0; position: relative; }
.section-dark { background: var(--ink-2); border-block: 1px solid var(--line); }

.section-head { margin-bottom: 60px; }
.section-head.split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  flex-wrap: wrap;
}

/* ---------- scroll reveal ---------- */

/* hidden state only applies when JS is confirmed running (html.js set inline in <head>),
   so content stays visible if scripts fail to load */
html.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}
html.js .reveal.in,
.reveal.in { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal, .reveal { opacity: 1; transform: none; transition: none; }
  .hero-roots path { animation: none; stroke-dashoffset: 0; }
  .hero-meta .scroll-hint::after { animation: none; }
}

a:focus-visible, .btn:focus-visible, summary:focus-visible, .work-card:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 3px;
}

/* ---------- services ---------- */

.services-list { border-top: 1px solid var(--line); }
.service-row {
  display: grid;
  grid-template-columns: 90px 1fr 1.2fr auto;
  gap: 30px;
  align-items: center;
  padding: 38px 10px;
  border-bottom: 1px solid var(--line);
  color: var(--bone);
  transition: background .25s, padding-left .25s;
  position: relative;
}
.service-row:hover {
  background: var(--ink-3);
  padding-left: 22px;
}
.service-row .num {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold);
}
.service-row h3 { font-size: clamp(1.2rem, 2.4vw, 1.7rem); }
.service-row p { color: var(--bone-dim); font-size: .98rem; max-width: 48ch; }
.service-row .arrow {
  font-size: 1.6rem;
  color: var(--ember);
  transition: transform .25s;
}
.service-row:hover .arrow { transform: translateX(8px); }
@media (max-width: 800px) {
  .service-row { grid-template-columns: 1fr; gap: 10px; }
  .service-row .num { font-size: 1.2rem; }
  .service-row .arrow { display: none; }
}

/* ---------- work grid ---------- */

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}
.work-card {
  grid-column: span 4;
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink-3);
  border: 1px solid var(--line);
  display: block;
  color: var(--bone);
}
.work-card--wide { grid-column: span 8; }
@media (max-width: 900px) {
  .work-card, .work-card--wide { grid-column: span 12; }
}

.work-card .ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--bone-dim);
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,90,54,.10), transparent 55%),
    linear-gradient(160deg, #161d26, #0b0f14);
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.work-card img.ph-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.work-card:hover .ph,
.work-card:hover img.ph-img { transform: scale(1.05); }

.work-card .meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px;
  background: linear-gradient(transparent, rgba(7,9,12,.92));
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
}
.work-card .meta h3 { font-size: 1.05rem; }
.work-card .meta .tag {
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ember);
  white-space: nowrap;
}

.work-card .play {
  position: absolute;
  top: 50%; left: 50%;
  width: 64px; height: 64px;
  transform: translate(-50%, -50%) scale(.85);
  border: 1px solid var(--ember);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s, transform .3s;
  background: rgba(7,9,12,.55);
}
.work-card .play::after {
  content: "";
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent var(--ember);
  margin-left: 4px;
}
.work-card:hover .play { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* ---------- process ---------- */

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.process-step {
  background: var(--ink-2);
  padding: 34px 26px 40px;
  transition: background .25s;
}
.process-step:hover { background: var(--ink-3); }
.process-grid--three { grid-template-columns: repeat(3, 1fr); }
.process-step .num {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 2.2rem;
  color: var(--ember);
  display: block;
  margin-bottom: 16px;
}
.process-step h3 { font-size: .95rem; margin-bottom: 10px; }
.process-step p { color: var(--bone-dim); font-size: .9rem; }
@media (max-width: 1000px) { .process-grid, .process-grid--three { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .process-grid, .process-grid--three { grid-template-columns: 1fr; } }

/* ---------- stats / trust band ---------- */

.band {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 70px;
  justify-content: space-between;
  padding: 50px 0;
  border-block: 1px solid var(--line);
}
.band .stat strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--bone);
  line-height: 1;
}
.band .stat span {
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

/* ---------- two-column feature (WB show, about) ---------- */

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
@media (max-width: 900px) { .feature { grid-template-columns: 1fr; gap: 40px; } }

.feature-media {
  position: relative;
  aspect-ratio: 16 / 11;
  background: var(--ink-3);
  border: 1px solid var(--line);
  overflow: hidden;
}
.feature-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(201,168,106,.12), transparent 60%),
    linear-gradient(200deg, #18202b, #0a0e13);
}
.feature-media img.feature-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.feature-media img.feature-img ~ .corner { z-index: 2; }

.feature-media .frame-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.feature-media .corner {
  position: absolute;
  width: 26px; height: 26px;
  border: 1px solid var(--ember);
}
.feature-media .corner.tl { top: 14px; left: 14px; border-right: 0; border-bottom: 0; }
.feature-media .corner.tr { top: 14px; right: 14px; border-left: 0; border-bottom: 0; }
.feature-media .corner.bl { bottom: 14px; left: 14px; border-right: 0; border-top: 0; }
.feature-media .corner.br { bottom: 14px; right: 14px; border-left: 0; border-top: 0; }

.feature-copy h2 { margin-bottom: 22px; }
.feature-copy p { color: var(--bone-dim); margin-bottom: 18px; }
.feature-copy .btn { margin-top: 14px; }

/* ---------- team ---------- */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
  gap: 26px;
}
.team-card {
  background: var(--ink-3);
  border: 1px solid var(--line);
  overflow: hidden;
}
.team-card .photo {
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(255,90,54,.08), transparent 60%),
    linear-gradient(180deg, #1a222d, #0b0f14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--bone-dim);
  position: relative;
}
.team-card .photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.team-card .info { padding: 26px; }
.team-card .info h3 { margin-bottom: 4px; }
.team-card .role {
  font-size: .74rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ember);
  display: block;
  margin-bottom: 14px;
}
.team-card .info p { color: var(--bone-dim); font-size: .94rem; }

/* ---------- testimonials / quotes ---------- */

.quote {
  border-left: 2px solid var(--ember);
  padding-left: 28px;
  margin: 30px 0;
}
.quote p {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.45rem;
  color: var(--bone);
  line-height: 1.4;
}
.quote cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

/* ---------- FAQ ---------- */

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 6px 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--ember);
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform .25s;
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--bone-dim); padding: 0 0 22px; max-width: 70ch; }

/* ---------- contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 44px; } }

.contact-info .item { margin-bottom: 30px; }
.contact-info .item .label {
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bone-dim);
  display: block;
  margin-bottom: 6px;
}
.contact-info .item a, .contact-info .item span.value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--bone);
  overflow-wrap: anywhere;
}
.contact-info .item a:hover { color: var(--ember); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

label {
  display: block;
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 8px;
}
input, select, textarea {
  width: 100%;
  background: var(--ink-3);
  border: 1px solid var(--line);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 16px;
  transition: border-color .25s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--ember);
}
textarea { min-height: 140px; resize: vertical; }

/* ---------- big CTA ---------- */

.cta-final {
  text-align: center;
  padding: 140px 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 120%, rgba(255,90,54,.16), transparent 65%),
    var(--ink-2);
  border-top: 1px solid var(--line);
}
.cta-final h2 { font-size: clamp(2.2rem, 6vw, 4.4rem); margin-bottom: 24px; }
.cta-final p { color: var(--bone-dim); max-width: 54ch; margin: 0 auto 40px; }

/* ---------- footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 70px 0 40px;
  background: var(--ink);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer .footer-h {
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 18px;
  font-weight: 700;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; }
.site-footer li a { color: var(--bone); font-size: .95rem; }
.site-footer li a:hover { color: var(--ember); }
.footer-tag {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold);
  margin-top: 14px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: .78rem;
  color: var(--bone-dim);
  letter-spacing: .06em;
}

/* ---------- inner-page hero ---------- */

.page-hero {
  padding: 190px 0 90px;
  background:
    radial-gradient(ellipse 70% 60% at 80% 0%, rgba(38,58,82,.3), transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 110%, rgba(255,90,54,.1), transparent 60%),
    var(--ink);
  border-bottom: 1px solid var(--line);
}
.page-hero .lede { margin-top: 24px; }

/* ---------- service detail blocks ---------- */

.svc-detail {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  padding: 70px 0;
  border-bottom: 1px solid var(--line);
}
.svc-detail:last-of-type { border-bottom: 0; }
@media (max-width: 850px) { .svc-detail { grid-template-columns: 1fr; gap: 24px; } }
.svc-detail h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.svc-detail .who {
  margin-top: 18px;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}
.svc-detail .body p { color: var(--bone-dim); margin-bottom: 16px; }
.svc-detail ul {
  list-style: none;
  margin: 22px 0;
}
.svc-detail ul li {
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--line);
  color: var(--bone);
  font-size: .98rem;
  position: relative;
}
.svc-detail ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--ember);
}

/* ---------- video embed ---------- */

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ink-3);
  border: 1px solid var(--line);
}
.video-embed iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ---------- utility ---------- */

.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.center { text-align: center; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ember);
  color: var(--ink);
  padding: 10px 18px;
  z-index: 200;
}
.skip-link:focus { left: 0; }
