@charset "utf-8";
/* ==========================================================================
   The Mac People — "Anodised"
   Near-black, cinematic, geometric. Built from the brand already in use:
   the mint wordmark, the Futura-adjacent display face, the iridescent screen
   glow of the hero photography.
   ========================================================================== */

/* --- Fonts ---------------------------------------------------------- */

@font-face {
  font-family: 'Jost';
  src: url('../fonts/jost-latin.woff2') format('woff2');
  font-weight: 400 700;
  font-display: swap;
}
@font-face { font-family: 'Poppins'; src: url('../fonts/poppins-300.woff2') format('woff2'); font-weight: 300; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('../fonts/poppins-400.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('../fonts/poppins-500.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('../fonts/poppins-600.woff2') format('woff2'); font-weight: 600; font-display: swap; }

/* --- Tokens --------------------------------------------------------- */

:root {
  --void:   #08090c;
  --deep:   #0c0e13;
  --panel:  #12161d;
  --raised: #171c25;

  --line:      rgba(255, 255, 255, 0.085);
  --line-soft: rgba(255, 255, 255, 0.045);

  --text:  #edf0f3;
  --muted: #929aa4;
  --dim:   #626a75;

  --mint:   #5fe3b0;
  --blue:   #2f86ff;
  --violet: #8b7bff;

  /* The screen-glow in the hero photography, reduced to three stops. */
  --iridescent: linear-gradient(100deg, var(--mint) 0%, var(--blue) 48%, var(--violet) 100%);

  --display: 'Jost', 'Futura', 'Century Gothic', system-ui, sans-serif;
  --sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --wrap: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --band: clamp(72px, 10vw, 150px);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Base ----------------------------------------------------------- */

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

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

body {
  margin: 0;
  background: var(--void);
  color: var(--text);
  font-family: var(--sans);
  font-size: clamp(15.5px, 0.4vw + 14.5px, 17px);
  font-weight: 300;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

p { margin: 0 0 1.15em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

strong { font-weight: 500; color: #fff; }

main a:not(.btn):not(.idx__link) {
  color: var(--mint);
  text-decoration: none;
  box-shadow: inset 0 -1px 0 rgba(95, 227, 176, 0.35);
  transition: box-shadow 0.25s var(--ease), color 0.25s var(--ease);
}
main a:not(.btn):not(.idx__link):hover {
  color: #fff;
  box-shadow: inset 0 -2px 0 var(--mint);
}

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

::selection { background: var(--mint); color: var(--void); }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 99;
  background: var(--mint); color: var(--void); padding: 12px 20px;
  font-size: 14px; font-weight: 500;
}
.skip:focus { left: 12px; top: 12px; }

/* --- Scroll reveal -------------------------------------------------- */

.reveal { opacity: 0; transform: translateY(26px); }
.reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-in > * { animation: none; }

/* --- Masthead ------------------------------------------------------- */

.masthead {
  position: sticky; top: 0; z-index: 30;
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease),
              backdrop-filter 0.35s var(--ease);
}
.masthead.is-stuck {
  background: rgba(8, 9, 12, 0.82);
  border-bottom-color: var(--line);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
}

.masthead__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding-block: 20px;
}

.wordmark { display: grid; justify-items: start; text-decoration: none; line-height: 1; }
.wordmark picture { display: block; }
.wordmark img {
  display: block;
  width: clamp(267px, 28.5vw, 375px);   /* 50% up on the original 178–250 */
  height: auto;
}
@media (max-width: 900px) {
  /* Half the header width on a phone, so it never crowds the menu button. */
  .wordmark img { width: min(56vw, 250px); }
}
.wordmark__est {
  font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--dim); font-weight: 400;
}

.nav { display: flex; align-items: center; gap: clamp(20px, 2.6vw, 38px); }
.nav ul { display: flex; gap: clamp(18px, 2.4vw, 34px); list-style: none; margin: 0; padding: 0; }
.nav a {
  position: relative;
  text-decoration: none; font-size: 13px; font-weight: 400;
  color: var(--muted); padding-block: 8px;
  transition: color 0.25s var(--ease);
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: 2px;
  width: 100%; height: 1px; background: var(--mint);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav a:hover { color: #fff; }
.nav a:hover::after, .nav a[aria-current='page']::after { transform: scaleX(1); transform-origin: left; }
.nav a[aria-current='page'] { color: #fff; }

.nav__phone {
  font-family: var(--display); font-size: 16px; font-weight: 500;
  letter-spacing: 0.02em; text-decoration: none; white-space: nowrap;
  padding: 9px 20px; border: 1px solid var(--line); border-radius: 2px;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease),
              box-shadow 0.3s var(--ease);
}
.nav__phone:hover {
  border-color: var(--mint); color: var(--mint);
  box-shadow: 0 0 0 1px rgba(95, 227, 176, 0.25), 0 0 26px -6px rgba(95, 227, 176, 0.5);
}

.navtoggle { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.burger { display: none; }

/* --- Hero ----------------------------------------------------------- */

.hero { position: relative; padding-top: clamp(56px, 8vw, 104px); overflow: hidden; }
.hero--home { min-height: min(92vh, 900px); display: flex; align-items: center; padding-top: 0; }

/* A photograph behind the hero. It drifts very slowly, which gives the frame
   life without anything moving fast enough to distract from the headline. */
.hero__photo { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__photo picture, .hero__photo img { display: block; width: 100%; height: 100%; }
.hero__photo img {
  object-fit: cover;
  object-position: 62% 46%;
  transform: scale(1.06);
  animation: drift 34s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to   { transform: scale(1.13) translate3d(-1.4%, -1%, 0); }
}

/* Over a photograph the veil has to work harder on the left, where the text is. */
.hero__veil--photo {
  background:
    linear-gradient(95deg, var(--void) 4%, rgba(8, 9, 12, 0.86) 34%, rgba(8, 9, 12, 0.30) 66%, rgba(8, 9, 12, 0.55) 100%),
    linear-gradient(to bottom, rgba(8, 9, 12, 0.55) 0%, transparent 26%, transparent 68%, var(--void) 100%);
}

/* On a phone the text runs the full width, so the veil has to darken the
   whole frame rather than just the left of it. */
@media (max-width: 760px) {
  .hero__veil--photo {
    background:
      linear-gradient(to bottom,
        rgba(8, 9, 12, 0.78) 0%,
        rgba(8, 9, 12, 0.58) 22%,
        rgba(8, 9, 12, 0.82) 62%,
        var(--void) 100%);
  }
  /* And knock the photograph itself back — a gradient alone cannot beat a
     bright highlight sitting directly behind a paragraph. */
  .hero__photo img {
    object-position: 66% 40%;
    filter: brightness(0.62) saturate(0.92);
  }
}

/* The ambient field: a slow iridescent wash, like light moving across
   anodised aluminium. Canvas so it costs one element and no images. */
.hero__field {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  opacity: 0.85;
  pointer-events: none;
}
.hero__veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(120% 90% at 78% 18%, transparent 0%, var(--void) 72%),
    linear-gradient(to bottom, transparent 40%, var(--void) 96%);
}
.hero .wrap { position: relative; z-index: 2; }

.hero__grid {
  display: grid; grid-template-columns: minmax(0, 1fr);
  gap: clamp(36px, 5vw, 72px);
  padding-block: clamp(56px, 8vw, 110px);
}
@media (min-width: 940px) {
  .hero__grid { grid-template-columns: minmax(0, 7.6fr) minmax(0, 3.2fr); align-items: end; }
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted); font-weight: 400; margin-bottom: 1.9em;
}
.hero__eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--mint); box-shadow: 0 0 12px var(--mint);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.hero h1 {
  font-size: clamp(2.15rem, 4.6vw, 3.9rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 19ch;
}

/* The rotating speciality — their existing device, rebuilt.
   The words are stacked over an invisible sizer, so nothing is clipped and
   the line cannot jump about as the word changes. */
.rot { display: inline-grid; vertical-align: bottom; }
.rot__item {
  grid-area: 1 / 1;
  white-space: nowrap;
  padding-bottom: 0.22em;
  margin-bottom: -0.22em;
  background: var(--iridescent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  transform: translateY(0.32em);
}
/* The outgoing word clears out first; the incoming one waits for it. Without
   the delay both are half-visible at once and the line looks double-exposed. */
.rot__item.is-out {
  opacity: 0; transform: translateY(-0.26em);
  transition: opacity 0.26s var(--ease), transform 0.3s var(--ease);
}
.rot__item.is-in {
  opacity: 1; transform: none;
  transition: opacity 0.42s var(--ease) 0.26s, transform 0.5s var(--ease) 0.26s;
}
/* If JavaScript never runs, the first word simply stays put. */
.no-js .rot__item:not(.is-in) { display: none; }

@media (max-width: 620px) {
  /* Narrow screens: let a long speciality wrap rather than run off the edge.
     The words stay stacked in one grid cell so they still slide — hiding the
     inactive ones outright turned the change into a jump cut on a phone. */
  .rot { display: grid; }
  .rot__item { white-space: normal; }
}

.hero__stand {
  margin-top: clamp(24px, 3vw, 36px);
  max-width: 54ch; color: var(--muted); font-size: 1.05em;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: clamp(28px, 3.6vw, 44px); }

.hero__side { align-self: end; }
.hero__marks { list-style: none; margin: 0; padding: 0; }
.hero__marks li {
  border-top: 1px solid var(--line-soft);
  padding: 14px 0 14px 22px;
  position: relative;
  font-size: 13px; color: var(--muted); letter-spacing: 0.01em;
}
.hero__marks li:last-child { border-bottom: 1px solid var(--line-soft); }
.hero__marks li::before {
  content: ''; position: absolute; left: 0; top: 1.55em;
  width: 9px; height: 1px; background: var(--mint);
}

.hero__rule { display: none; }

/* --- Buttons -------------------------------------------------------- */

.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 2px; border: 1px solid transparent;
  font-family: var(--sans); font-size: 12.5px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none;
  cursor: pointer;
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease),
              box-shadow 0.35s var(--ease);
}
.btn--solid { background: var(--iridescent); color: var(--void); font-weight: 600; }
.btn--solid::after {
  content: ''; position: absolute; inset: 0;
  background: #fff; opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.btn--solid:hover::after { opacity: 0.18; }
.btn--solid:hover { box-shadow: 0 0 34px -8px rgba(95, 227, 176, 0.65); }
.btn--solid > * { position: relative; z-index: 1; }

.btn--ghost {
  border-color: var(--line); color: var(--text);
  font-family: var(--display); font-size: 16px; font-weight: 500;
  letter-spacing: 0.02em; text-transform: none;
}
.btn--ghost:hover { border-color: var(--mint); color: var(--mint); }

/* --- Bands ---------------------------------------------------------- */

.band { position: relative; padding-block: var(--band); }
.band + .band { border-top: 1px solid var(--line-soft); }

.split { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(28px, 4vw, 64px); }
@media (min-width: 940px) {
  .split { grid-template-columns: minmax(0, 3.4fr) minmax(0, 7.4fr); }
}

.split__aside h2 {
  font-size: clamp(1.55rem, 2.5vw, 2.1rem);
  position: sticky; top: 116px;
}
@media (max-width: 939px) { .split__aside h2 { position: static; } }

.split__main h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
.split__main h3 {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem); font-weight: 500;
  margin-top: 2em; color: #fff;
}
.split__main > *:first-child { margin-top: 0; }

.kicker {
  display: flex; align-items: center; gap: 12px;
  font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--dim); margin-bottom: 1.7em; font-weight: 400;
}
.kicker__num {
  color: var(--mint); font-variant-numeric: tabular-nums;
  font-family: var(--display); font-weight: 500; letter-spacing: 0.1em;
}
.kicker::after { content: ''; flex: 1; height: 1px; background: var(--line); }

.lead {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.1vw, 1.6rem);
  font-weight: 400; line-height: 1.35; letter-spacing: -0.015em;
  color: #fff; margin-bottom: 1.1em;
}
.lead--wide { max-width: 44ch; }

.band__title { font-size: clamp(2rem, 4.2vw, 3.2rem); max-width: 18ch; }

.bullets { list-style: none; margin: 0 0 1.3em; padding: 0; }
.bullets li { position: relative; padding-left: 28px; margin-bottom: 0.7em; color: var(--muted); }
.bullets li::before {
  content: ''; position: absolute; left: 2px; top: 0.78em;
  width: 10px; height: 1px; background: var(--mint);
}

.smallprint { font-size: 13px; line-height: 1.65; color: var(--dim); margin-top: 1.8em; }

/* --- Services index ------------------------------------------------- */

.idx { list-style: none; margin: 0; padding: 0; }
.idx__row { border-top: 1px solid var(--line); }
.idx__row:last-child { border-bottom: 1px solid var(--line); }

.idx__link {
  position: relative; isolation: isolate;
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center; gap: clamp(16px, 3vw, 40px);
  padding: clamp(22px, 2.8vw, 34px) clamp(4px, 1.4vw, 18px);
  text-decoration: none;
  transition: padding-inline 0.5s var(--ease);
}
/* A gradient wipes across the row from the left on hover. */
.idx__link::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(95, 227, 176, 0.13), rgba(47, 134, 255, 0.05) 60%, transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s var(--ease);
}
.idx__link:hover::before { transform: scaleX(1); }
.idx__link:hover { padding-inline: clamp(14px, 2.2vw, 28px) clamp(4px, 1.4vw, 18px); }

.idx__num {
  font-family: var(--display); font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; color: var(--dim);
  font-variant-numeric: tabular-nums;
  transition: color 0.4s var(--ease);
}
.idx__link:hover .idx__num { color: var(--mint); }

.idx__title {
  display: block; font-family: var(--display);
  font-size: clamp(1.3rem, 2.4vw, 1.85rem); font-weight: 500;
  letter-spacing: -0.025em; line-height: 1.12; color: var(--text);
  transition: color 0.4s var(--ease);
}
.idx__link:hover .idx__title { color: #fff; }
.idx__summary {
  display: block; margin-top: 8px; font-size: 14px;
  color: var(--dim); max-width: 58ch;
}
.idx__arrow {
  font-size: 19px; color: var(--mint);
  opacity: 0; transform: translateX(-10px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.idx__link:hover .idx__arrow { opacity: 1; transform: none; }

/* --- Ledger --------------------------------------------------------- */

.ledger { margin: 0; }
.ledger__row {
  display: grid; grid-template-columns: minmax(0, 1fr); gap: 3px 28px;
  padding: 17px 0; border-top: 1px solid var(--line-soft);
}
.ledger__row:last-child { border-bottom: 1px solid var(--line-soft); }
@media (min-width: 620px) {
  .ledger__row { grid-template-columns: 11rem minmax(0, 1fr); }
  .split__aside .ledger__row { grid-template-columns: minmax(0, 1fr); }
}
.ledger dt {
  font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--dim); padding-top: 5px;
}
.ledger dd { margin: 0; color: var(--text); }

/* --- Steps ---------------------------------------------------------- */

.steps { list-style: none; margin: 0; padding: 0; counter-reset: s; }
.steps__item {
  display: grid; grid-template-columns: 3.4rem minmax(0, 1fr); gap: 6px 22px;
  padding: clamp(22px, 2.6vw, 32px) 0; border-top: 1px solid var(--line-soft);
}
.steps__item:last-child { border-bottom: 1px solid var(--line-soft); }
.steps__num {
  grid-row: 1 / span 2;
  font-family: var(--display); font-size: 13px; font-weight: 500;
  letter-spacing: 0.1em; color: var(--mint);
  padding-top: 0.5em; font-variant-numeric: tabular-nums;
}
.steps__item h3 { margin: 0 0 0.45em; }
.steps__item p { color: var(--muted); font-size: 0.97em; }

/* --- Pricing -------------------------------------------------------- */

.tiers {
  display: grid; grid-template-columns: minmax(0, 1fr); gap: 1px;
  margin-top: clamp(38px, 5vw, 62px);
  background: var(--line-soft); border: 1px solid var(--line-soft);
}
@media (min-width: 820px) { .tiers { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.tier {
  position: relative; background: var(--deep);
  padding: clamp(28px, 3.6vw, 44px);
  display: flex; flex-direction: column;
  transition: background 0.45s var(--ease);
}
.tier::before {
  content: ''; position: absolute; inset-inline: 0; top: 0; height: 2px;
  background: var(--iridescent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s var(--ease);
}
.tier:hover { background: var(--panel); }
.tier:hover::before { transform: scaleX(1); }

.tier__name {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--dim);
  margin-bottom: 1.6em;
}
.tier__price {
  font-family: var(--display); font-size: clamp(2.2rem, 3.6vw, 3rem);
  font-weight: 500; line-height: 1; letter-spacing: -0.035em;
  margin-bottom: 0.5em; color: #fff;
}
.tier__unit {
  display: block; margin-top: 10px; font-family: var(--sans);
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dim);
}
.tier__summary { font-size: 0.94em; color: var(--muted); }
.tier__points {
  list-style: none; margin: 1.5em 0 0; padding: 1.5em 0 0;
  border-top: 1px solid var(--line-soft); font-size: 0.9em;
}
.tier__points li { position: relative; padding-left: 22px; margin-bottom: 0.6em; color: var(--muted); }
.tier__points li::before {
  content: ''; position: absolute; left: 0; top: 0.72em;
  width: 8px; height: 1px; background: var(--mint);
}

/* --- FAQ ------------------------------------------------------------ */

.qa { padding: clamp(22px, 2.6vw, 30px) 0; border-top: 1px solid var(--line-soft); }
.qa:last-child { border-bottom: 1px solid var(--line-soft); }
.qa__q { font-size: clamp(1.05rem, 1.6vw, 1.25rem); font-weight: 500; margin: 0 0 0.6em; color: #fff; }
.qa__a { color: var(--muted); font-size: 0.96em; }

/* --- Quote ---------------------------------------------------------- */

.band--quote { background: var(--deep); }
.pull { margin: 0; max-width: 26ch; }
.pull blockquote {
  margin: 0; font-family: var(--display);
  font-size: clamp(1.8rem, 3.8vw, 2.9rem); font-weight: 400;
  line-height: 1.14; letter-spacing: -0.03em;
  background: var(--iridescent);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pull figcaption {
  margin-top: 1.8em; font-size: 10.5px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--dim);
}

/* --- Areas ---------------------------------------------------------- */

.areas { list-style: none; margin: 1.8em 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 9px; }
.areas li {
  font-size: 12px; letter-spacing: 0.05em; padding: 7px 15px;
  border: 1px solid var(--line); border-radius: 2px; color: var(--muted);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.areas li:hover { border-color: var(--mint); color: var(--mint); }

/* --- Credentials strip ---------------------------------------------- */

.band--marks { padding-block: clamp(28px, 3.4vw, 46px); }
.band--marks + .band { border-top: 1px solid var(--line-soft); }
.marks {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 1px;
  grid-template-columns: minmax(0, 1fr);
  background: var(--line-soft);
  border-block: 1px solid var(--line-soft);
}
@media (min-width: 700px)  { .marks { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1060px) { .marks { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
.marks li {
  background: var(--void);
  padding: 18px 20px 18px 0;
  font-size: 12.5px; line-height: 1.5; color: var(--muted);
  position: relative; padding-left: 22px;
}
.marks li::before {
  content: ''; position: absolute; left: 0; top: 1.55em;
  width: 10px; height: 1px; background: var(--mint);
}

/* --- Photographs ---------------------------------------------------- */

.band--figure { padding-block: clamp(44px, 5vw, 76px); }
.band--figure + .band { border-top: 0; }
.hero + .band--figure { padding-top: 0; }
.figure { margin: 0; position: relative; }
.figure picture { display: block; overflow: hidden; }
.figure img {
  display: block; width: 100%; height: auto; background: var(--panel);
  filter: saturate(0.85) contrast(1.06) brightness(0.86);
}
/* A map has to be legible, so it keeps its own contrast. */
.band--figure-plain .figure img { filter: none; }
.figure__cap {
  margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line-soft);
  font-size: 11.5px; letter-spacing: 0.06em; color: var(--dim); max-width: 58ch;
}
.band--figure-full .wrap { max-width: none; padding-inline: 0; }
.band--figure-full .figure__cap {
  margin-inline: var(--gutter); max-width: calc(var(--wrap) - var(--gutter) * 2);
}
@media (min-width: 940px) {
  .band--figure-inset .figure { margin-left: calc((3.4 / 10.8) * 100% + clamp(28px, 4vw, 64px)); }
}

/* --- CTA ------------------------------------------------------------ */

.band--cta { position: relative; overflow: hidden; background: var(--deep); }
.band--cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(70% 140% at 12% 110%, rgba(95, 227, 176, 0.16), transparent 62%),
              radial-gradient(60% 120% at 88% -20%, rgba(47, 134, 255, 0.14), transparent 60%);
  pointer-events: none;
}
.band--cta .wrap { position: relative; }
.band--cta h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); max-width: 16ch; color: #fff; }
.band--cta p { color: var(--muted); }
.cta { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(30px, 4vw, 60px); align-items: end; }
@media (min-width: 940px) { .cta { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); } }
.cta__text p { max-width: 46ch; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* --- Forms ---------------------------------------------------------- */

.hp { position: absolute; left: -9999px; }

.form { max-width: 40rem; }
.form__row { margin-bottom: 26px; }
.form label {
  display: block; font-size: 10.5px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--dim); margin-bottom: 10px;
}
.form .opt { text-transform: none; letter-spacing: 0.02em; }
.form input, .form textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--text);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line); border-radius: 2px;
  padding: 13px 15px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.form input::placeholder, .form textarea::placeholder { color: var(--dim); }
.form input:focus, .form textarea:focus {
  outline: none; border-color: var(--mint);
  background: rgba(95, 227, 176, 0.04);
}
.form textarea { resize: vertical; }
.form .btn { margin-top: 10px; }

.notice {
  padding: 16px 20px; border: 1px solid var(--line);
  border-left: 2px solid var(--mint); background: var(--panel);
  font-size: 0.94em; margin-bottom: 2em;
}
.notice--bad { border-left-color: #ff6b57; }

/* --- Footer --------------------------------------------------------- */

.foot {
  background: var(--void); border-top: 1px solid var(--line);
  color: var(--muted); padding-block: clamp(60px, 7vw, 96px) 44px; font-size: 14px;
}
.foot__grid {
  display: grid; grid-template-columns: minmax(0, 1fr);
  gap: clamp(34px, 4vw, 60px);
  padding-bottom: clamp(38px, 4vw, 58px); border-bottom: 1px solid var(--line-soft);
}
@media (min-width: 800px) { .foot__grid { grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(0, 1fr)); } }
.foot__mark {
  font-family: var(--display); font-size: 1.45rem; font-weight: 500;
  letter-spacing: -0.03em; color: #fff; margin-bottom: 0.8em;
}
.foot__mark em { font-style: normal; color: var(--mint); }
.foot__by { font-size: 0.5em; color: var(--mint); vertical-align: super; margin-left: 5px; }
.foot__creds {
  list-style: none; margin: 0 0 1.6em; padding: 0;
  display: flex; flex-wrap: wrap; gap: 6px 8px;
}
.foot__creds li {
  font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--line);
  border-radius: 2px; padding: 5px 10px;
}
.foot address { font-style: normal; line-height: 1.85; }
.foot__h {
  font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--dim); margin-bottom: 1.6em;
}
.foot ul { list-style: none; margin: 0; padding: 0; }
.foot li { margin-bottom: 0.7em; }
.foot a { text-decoration: none; transition: color 0.25s var(--ease); }
.foot a:hover { color: var(--mint); }
.foot__legal { margin-top: 28px; font-size: 11.5px; line-height: 1.75; color: var(--dim); max-width: 78ch; }

/* --- Mobile navigation ---------------------------------------------- */

@media (max-width: 900px) {
  .burger {
    display: flex; flex-direction: column; justify-content: center;
    align-items: flex-end; gap: 6px; width: 44px; height: 44px;
    margin-right: -8px; cursor: pointer;
  }
  .burger span {
    display: block; width: 26px; height: 1.5px; background: var(--text);
    transition: transform 0.4s var(--ease), opacity 0.25s var(--ease), width 0.4s var(--ease);
  }
  .burger span:nth-child(2) { width: 17px; }
  .navtoggle:checked + .burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .navtoggle:checked + .burger span:nth-child(2) { opacity: 0; }
  .navtoggle:checked + .burger span:nth-child(3) { width: 26px; transform: translateY(-7.5px) rotate(-45deg); }

  .masthead { background: rgba(8, 9, 12, 0.9); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }

  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--deep); border-block: 1px solid var(--line);
    padding: 10px var(--gutter) 30px;
  }
  .navtoggle:checked ~ .nav { display: flex; }
  .nav ul { flex-direction: column; gap: 0; }
  .nav li { border-bottom: 1px solid var(--line-soft); }
  .nav ul a { display: block; padding: 17px 0; font-size: 15px; color: var(--text); }
  .nav__phone { margin-top: 22px; text-align: center; }
  .hero--home { min-height: 0; padding-top: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__photo img { animation: none; transform: scale(1.04); }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__field { display: none; }

  /* The speciality still changes — it is the content of the headline. It just
     cross-fades in place instead of moving. */
  .rot__item { transform: none !important; }
  .rot__item.is-in,
  .rot__item.is-out { transition-duration: 0.25s !important; }
}

@media print {
  .masthead, .band--cta, .foot__grid, .skip, .hero__field, .hero__veil { display: none; }
  body { background: #fff; color: #000; font-size: 11pt; }
}
