:root {
  --ink: #09090d;
  --ink-soft: #111116;
  --paper: #f1ecdf;
  --white: #fffdf7;
  --pink: #ff3366;
  --pink-dark: #c81548;
  --gold: #e6c27a;
  --muted: #9e9b99;
  --line: rgba(255, 255, 255, 0.17);
  --display: "Bebas Neue", "Arial Narrow", sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

::selection { color: var(--ink); background: var(--pink); }

a { color: inherit; text-decoration: none; }

button, input, textarea, select { font: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 16px;
  color: var(--ink);
  background: var(--gold);
  font-weight: 700;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 0 clamp(24px, 5vw, 76px);
  border-bottom: 1px solid transparent;
  transition: background 250ms ease, border-color 250ms ease, min-height 250ms ease;
}

.site-header.scrolled {
  min-height: 66px;
  background: rgba(9, 9, 13, 0.88);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.wordmark {
  display: flex;
  gap: 11px;
  align-items: center;
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: 0.13em;
}

.wordmark-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 13px var(--pink), 0 0 28px var(--pink);
  animation: blink 2.4s steps(1) infinite;
}

.site-nav { display: flex; align-items: center; gap: clamp(24px, 3vw, 48px); }

.site-nav > a:not(.nav-cta) {
  position: relative;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--pink);
  transition: transform 220ms ease;
}

.site-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  padding: 12px 17px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  transition: color 180ms ease, background 180ms ease;
}

.nav-cta span { margin-left: 12px; }
.nav-cta:hover { color: var(--ink); background: var(--gold); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  align-items: center;
  padding: 132px clamp(24px, 7vw, 112px) 52px;
  isolation: isolate;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 22%;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,.65));
}

.hero-grid {
  position: absolute;
  inset: 53% -10% -28%;
  z-index: -3;
  background-image: linear-gradient(rgba(255,51,102,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,51,102,.18) 1px, transparent 1px);
  background-size: 62px 40px;
  transform: perspective(430px) rotateX(62deg) scale(1.25);
  transform-origin: center top;
  mask-image: linear-gradient(to bottom, transparent, black 22%, black 82%, transparent);
}

.hero-glow { position: absolute; z-index: -2; border-radius: 50%; filter: blur(1px); }

.hero-glow-one {
  width: 42vw;
  height: 42vw;
  top: -24vw;
  left: 22vw;
  border: 2px solid rgba(255,51,102,.35);
  box-shadow: 0 0 80px rgba(255,51,102,.18), inset 0 0 80px rgba(255,51,102,.12);
}

.hero-glow-two {
  width: 430px;
  height: 430px;
  right: -330px;
  bottom: 8%;
  background: var(--gold);
  opacity: .07;
  filter: blur(60px);
}

.hero-copy { position: relative; z-index: 3; max-width: 760px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 23px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.eyebrow > span { width: 28px; height: 1px; background: currentColor; }

h1, h2, .footer-logo {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: .8;
  text-transform: uppercase;
}

h1 { font-size: clamp(86px, 10vw, 174px); }
h1 em, h2 em, .footer-logo em { color: var(--pink); font-family: var(--serif); font-weight: 400; text-transform: none; }

.hero-intro {
  max-width: 500px;
  margin: 30px 0 34px;
  color: rgba(255,255,255,.67);
  font-size: clamp(16px, 1.25vw, 19px);
}

.hero-actions { display: flex; align-items: center; gap: 32px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 190px;
  padding: 16px 18px;
  border: 0;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover { transform: translateY(-3px); }
.button-primary { color: var(--white); background: var(--pink); box-shadow: 0 0 0 rgba(255,51,102,0); }
.button-primary:hover { box-shadow: 5px 6px 0 var(--gold), 0 0 30px rgba(255,51,102,.35); }

.text-link {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.34);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.text-link span { color: var(--pink); transition: transform 180ms ease; }
.text-link:hover span { transform: translate(3px, -3px); }

.hero-mark {
  position: relative;
  z-index: 2;
  width: min(46vw, 650px);
  aspect-ratio: 1;
  justify-self: end;
  display: grid;
  place-items: center;
}

.hero-mark img {
  position: relative;
  z-index: 2;
  width: 88%;
  height: 88%;
  filter: drop-shadow(0 0 24px rgba(255,51,102,.2));
}

.mark-halo {
  position: absolute;
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,51,102,.18), rgba(255,51,102,.03) 50%, transparent 72%);
  box-shadow: inset 0 0 46px rgba(255,51,102,.13);
}

.orbit { position: absolute; border: 1px solid rgba(230,194,122,.3); border-radius: 50%; }
.orbit::before { content: ""; position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px var(--gold); }
.orbit-one { width: 80%; height: 80%; animation: orbit 18s linear infinite; }
.orbit-one::before { top: 11%; left: 15%; }
.orbit-two { width: 99%; height: 62%; transform: rotate(-21deg); animation: orbit-alt 23s linear infinite; }
.orbit-two::before { right: 6%; bottom: 20%; background: var(--pink); box-shadow: 0 0 12px var(--pink); }

.stamp {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 70px;
  aspect-ratio: 1;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  background: var(--ink);
  font-family: var(--display);
  font-size: 16px;
  line-height: .9;
  letter-spacing: .07em;
  text-align: center;
}

.stamp-left { left: 4%; bottom: 18%; transform: rotate(-11deg); }
.stamp-right { top: 17%; right: 2%; transform: rotate(9deg); color: var(--pink); border-color: var(--pink); }

.hero-meta {
  position: absolute;
  right: clamp(24px, 7vw, 112px);
  bottom: 30px;
  left: clamp(24px, 7vw, 112px);
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 150px);
  gap: 24px;
}

.hero-meta > div { display: flex; gap: 11px; align-items: flex-start; }
.meta-number { color: var(--pink); font-family: var(--display); font-size: 13px; }
.hero-meta p { margin: 0; color: rgba(255,255,255,.45); font-size: 10px; font-weight: 600; line-height: 1.5; letter-spacing: .12em; text-transform: uppercase; }

.ticker {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-block: 1px solid rgba(9,9,13,.25);
  color: var(--ink);
  background: var(--gold);
  transform: rotate(-1.1deg) scale(1.02);
}

.ticker-track {
  width: max-content;
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 12px 0 10px;
  animation: marquee 28s linear infinite;
  font-family: var(--display);
  font-size: 22px;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ticker i { color: var(--pink); font-family: serif; font-style: normal; font-size: 15px; }

.section-shell { padding: clamp(96px, 11vw, 180px) clamp(24px, 7vw, 112px); }

.section-heading { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 72px; }
.section-heading h2, .studio h2, .booking h2 { font-size: clamp(72px, 8vw, 132px); }
.section-heading > p { max-width: 390px; margin: 0 0 5px; color: rgba(255,255,255,.55); }

.studio { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 820px; color: var(--ink); background: var(--gold); }

.studio-visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 700px;
  background: var(--pink);
}

.studio-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.08) 25%, transparent 25%) 0 0 / 16px 16px;
  mix-blend-mode: multiply;
  opacity: .22;
}

.sun-disc {
  --dial-angle: 0deg;
  position: relative;
  z-index: 1;
  width: min(68%, 520px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 17px 19px 0 var(--ink);
  cursor: grab;
  touch-action: none;
  user-select: none;
  transition: filter 180ms ease, box-shadow 180ms ease;
}

.sun-disc:hover { filter: brightness(1.04); }
.sun-disc.is-grabbing { cursor: grabbing; filter: brightness(1.08) drop-shadow(0 0 18px rgba(230,194,122,.45)); }
.sun-disc:focus-visible { outline: 4px solid var(--white); outline-offset: 8px; }

.sun-disc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to bottom, transparent 0 12%, var(--pink) 12.5% 15%);
}

.sun-disc::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 13%;
  width: 26%;
  height: 50%;
  transform: translateX(-50%) rotate(var(--dial-angle));
  /* Pivot on the widest centre line of the needle's central rhombus. */
  transform-origin: 50% 48%;
  background: var(--ink);
  clip-path: polygon(46% 0, 54% 0, 58% 32%, 67% 48%, 58% 58%, 63% 100%, 37% 100%, 42% 58%, 33% 48%, 42% 32%);
  will-change: transform;
}

.sun-disc span { position: absolute; z-index: 2; width: 8px; height: 8px; border-radius: 50%; background: var(--ink); }
.sun-disc span:nth-child(1) { top: 20%; left: 25%; }
.sun-disc span:nth-child(2) { top: 29%; right: 20%; width: 13px; height: 13px; }
.sun-disc span:nth-child(3) { top: 45%; left: 15%; }
.sun-disc span:nth-child(4) { top: 51%; right: 13%; }
.sun-disc span:nth-child(5) { top: 10%; left: 51%; width: 5px; height: 5px; }

.sun-disc .dial-pivot {
  position: absolute;
  z-index: 5;
  top: 61%;
  left: 50%;
  width: 14px;
  height: 14px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--pink);
  box-shadow: none;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.sun-disc .dial-pivot::before,
.sun-disc .dial-pivot::after {
  content: none;
}

.dial-ui {
  position: absolute;
  z-index: 4;
  top: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  color: var(--ink);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.dial-hint { opacity: .62; }
.dial-readout { color: var(--white); font-family: var(--display); font-size: 19px; letter-spacing: .08em; text-shadow: 2px 2px 0 var(--ink); }
.studio-visual.dial-hot .studio-quote { box-shadow: 8px 8px 0 var(--gold), 0 0 34px rgba(230,194,122,.58); }

.vertical-note {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 22px;
  margin: 0;
  transform: translate(-45%, -50%) rotate(-90deg);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .25em;
}

.studio-quote {
  position: absolute;
  z-index: 3;
  right: 5%;
  bottom: 6%;
  max-width: 360px;
  padding: 22px 28px 24px 56px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 8px 8px 0 var(--gold);
  transform: rotate(-2deg);
}

.studio-quote p { margin: 0; font-family: var(--serif); font-size: clamp(21px, 2.2vw, 31px); font-style: italic; line-height: 1.15; }
.quote-mark { position: absolute; top: 2px; left: 16px; color: var(--pink); font-family: var(--serif); font-size: 65px; line-height: 1; }

.studio-copy { align-self: center; padding: clamp(68px, 8vw, 132px); }
.studio-copy .eyebrow { color: var(--pink-dark); }
.studio-copy h2 em { color: var(--pink-dark); }
.studio-lead { max-width: 540px; margin: 38px 0 20px; font-family: var(--serif); font-size: clamp(25px, 2.3vw, 36px); line-height: 1.08; }
.studio-copy > p:not(.eyebrow):not(.studio-lead) { max-width: 560px; color: rgba(9,9,13,.67); }
.signature { margin: 30px 0 18px; color: var(--pink-dark); font-family: var(--serif); font-size: 41px; font-style: italic; transform: rotate(-5deg); transform-origin: left; }
.signature span { font-size: 20px; }
.studio-copy .text-link { border-color: rgba(9,9,13,.35); }
.studio-copy .text-link span { color: var(--pink-dark); }

.process { background: var(--ink-soft); }
.section-heading.compact { margin-bottom: 54px; }
.section-heading.compact h2 { font-size: clamp(67px, 7vw, 110px); }

.process-list { border-top: 1px solid var(--line); }
.process-item {
  display: grid;
  grid-template-columns: .32fr 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 34px 18px;
  border-bottom: 1px solid var(--line);
  transition: color 240ms ease, padding 240ms ease, background 240ms ease;
}
.process-item:hover { padding-inline: 34px; color: var(--ink); background: var(--gold); }
.process-number { color: var(--pink); font-family: var(--display); font-size: 20px; letter-spacing: .09em; }
.process-item:hover .process-number { color: var(--pink-dark); }
.process-item > div { display: grid; grid-template-columns: minmax(220px, .55fr) 1fr; align-items: center; gap: 48px; }
.process-item h3 { margin: 0; font-family: var(--display); font-size: clamp(33px, 3vw, 48px); font-weight: 400; line-height: 1; letter-spacing: .02em; text-transform: uppercase; }
.process-item p { max-width: 480px; margin: 0; color: rgba(255,255,255,.5); }
.process-item:hover p { color: rgba(9,9,13,.67); }
.process-icon { color: var(--pink); font-family: var(--serif); font-size: 42px; }
.process-item:hover .process-icon { color: var(--pink-dark); }

.booking { position: relative; overflow: hidden; background: var(--ink); }
.booking::before { content: ""; position: absolute; width: 580px; height: 580px; right: -340px; top: -260px; border: 1px solid rgba(255,51,102,.35); border-radius: 50%; box-shadow: 0 0 80px rgba(255,51,102,.12); }
.booking-panel { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(58px, 9vw, 150px); padding: clamp(46px, 6vw, 82px); border: 1px solid rgba(230,194,122,.43); background: linear-gradient(135deg, rgba(230,194,122,.04), transparent 50%); }
.booking-copy h2 { font-size: clamp(64px, 6.8vw, 112px); }
.booking-copy > p:not(.eyebrow) { max-width: 440px; margin-top: 34px; color: rgba(255,255,255,.55); }
.booking-details { display: flex; flex-direction: column; gap: 8px; margin-top: 38px; font-size: 13px; }
.booking-details a { color: var(--pink); text-decoration: underline; text-underline-offset: 5px; }
.booking-details span { color: rgba(255,255,255,.42); }

.booking-form { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.booking-form label { display: flex; flex-direction: column; gap: 8px; }
.booking-form label > span { color: var(--gold); font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.booking-form input, .booking-form textarea, .booking-form select {
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.27);
  border-radius: 0;
  outline: none;
  color: var(--white);
  background: transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.booking-form textarea { min-height: 102px; resize: vertical; }
.booking-form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--pink) 50%), linear-gradient(135deg, var(--pink) 50%, transparent 50%); background-position: calc(100% - 12px) 50%, calc(100% - 7px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.booking-form option { color: var(--ink); background: var(--white); }
.booking-form input:focus, .booking-form textarea:focus, .booking-form select:focus { border-color: var(--pink); box-shadow: 0 4px 0 -3px var(--pink); }
.booking-form ::placeholder { color: rgba(255,255,255,.29); }
.submit-button { width: 100%; margin-top: 8px; }
.form-note { margin: -10px 0 0; color: rgba(255,255,255,.35); font-size: 10px; letter-spacing: .06em; text-align: center; }
.form-note.success { color: var(--gold); }

.site-footer { padding: 75px clamp(24px, 7vw, 112px) 24px; color: var(--ink); background: var(--pink); }
.footer-top { display: grid; grid-template-columns: 1.8fr .6fr auto; align-items: start; gap: 40px; padding-bottom: 70px; }
.footer-logo { width: min-content; font-size: clamp(82px, 10vw, 158px); }
.footer-logo em { color: var(--ink); }
.footer-links { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.footer-links p { margin: 0 0 7px; font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; opacity: .55; }
.footer-links a { width: fit-content; border-bottom: 1px solid transparent; font-size: 13px; }
.footer-links a:hover { border-color: currentColor; }
.back-to-top { display: grid; place-items: center; width: 48px; height: 48px; margin-top: 8px; border: 1px solid var(--ink); font-size: 22px; transition: color 180ms ease, background 180ms ease, transform 180ms ease; }
.back-to-top:hover { color: var(--pink); background: var(--ink); transform: translateY(-4px); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 20px; border-top: 1px solid rgba(9,9,13,.28); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1); transition-delay: var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes orbit-alt { from { transform: rotate(-21deg); } to { transform: rotate(-381deg); } }
@keyframes blink { 0%, 88%, 100% { opacity: 1; } 90%, 94% { opacity: .2; } }

@media (max-width: 1180px) {
  .hero { grid-template-columns: 1fr .88fr; padding-inline: 52px; }
  h1 { font-size: clamp(85px, 11.5vw, 136px); }
  .hero-mark { width: 48vw; }
  .hero-meta { left: 52px; right: 52px; }
  .studio-copy { padding: 68px; }
  .booking-panel { grid-template-columns: 1fr; }
  .booking-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; }
  .booking-copy .eyebrow, .booking-copy h2 { grid-column: 1; }
  .booking-copy > p:not(.eyebrow), .booking-details { grid-column: 2; }
  .booking-copy > p:not(.eyebrow) { grid-row: 1 / span 2; align-self: end; }
}

@media (max-width: 820px) {
  .site-header { min-height: 68px; padding-inline: 22px; }
  .site-header.scrolled { backdrop-filter: none; }
  .menu-toggle { position: relative; z-index: 3; display: grid; align-content: center; width: 42px; height: 42px; padding: 9px; border: 1px solid var(--line); color: var(--white); background: transparent; }
  .menu-toggle span { display: block; width: 100%; height: 1px; margin: 4px 0; background: currentColor; transition: transform 220ms ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; z-index: 2; width: 100vw; height: 100dvh; display: flex; flex-direction: column; justify-content: center; align-items: stretch; gap: 0; padding: 90px 25px 25px; background: var(--ink); transform: translateX(100%); transition: transform 300ms cubic-bezier(.2,.8,.2,1); }
  .site-nav.open { transform: translateX(0); }
  .site-nav > a:not(.nav-cta) { padding: 18px 4px; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 42px; font-weight: 400; letter-spacing: .03em; }
  .site-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 28px; padding: 18px; text-align: center; }
  .hero { display: flex; flex-direction: column; justify-content: center; align-items: stretch; min-height: auto; padding: 126px 24px 76px; }
  .hero-copy { z-index: 4; }
  h1 { font-size: clamp(78px, 21vw, 130px); }
  .hero-intro { max-width: 420px; margin-top: 25px; }
  .hero-actions { align-items: flex-start; }
  .hero-mark { width: min(100%, 540px); margin: -40px auto -35px; justify-self: auto; }
  .hero-mark img { width: 94%; height: 94%; }
  .hero-meta { position: relative; inset: auto; grid-template-columns: repeat(3, 1fr); margin-top: 8px; }
  .hero-grid { inset: 44% -50% -5%; }
  .section-shell { padding-inline: 24px; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 28px; }
  .section-heading > p { max-width: 520px; }
  .studio { grid-template-columns: 1fr; }
  .studio-visual { min-height: 640px; }
  .studio-copy { padding: 90px 24px; }
  .process-item { grid-template-columns: 60px 1fr auto; gap: 16px; padding-inline: 0; }
  .process-item:hover { padding-inline: 12px; }
  .process-item > div { grid-template-columns: 1fr; gap: 10px; }
  .booking-copy { display: block; }
  .booking-panel { padding: 42px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-logo { grid-column: 1 / -1; }
  .back-to-top { position: absolute; right: 24px; }
}

@media (max-width: 560px) {
  .hero-actions { flex-direction: column; gap: 18px; }
  .button { width: 100%; }
  .hero-mark { margin-top: -15px; }
  .stamp { width: 58px; font-size: 13px; }
  .hero-meta { gap: 8px; }
  .hero-meta > div { display: block; }
  .hero-meta p { margin-top: 5px; font-size: 8px; }
  .ticker-track { font-size: 18px; }
  .section-heading h2, .studio h2, .booking h2 { font-size: clamp(65px, 19vw, 100px); }
  .studio-visual { min-height: 520px; }
  .sun-disc { width: 74%; box-shadow: 11px 12px 0 var(--ink); }
  .dial-ui { top: 22px; right: 18px; }
  .studio-quote { right: 4%; bottom: 5%; max-width: 88%; padding: 18px 20px 20px 48px; }
  .process-item { grid-template-columns: 44px 1fr; padding-block: 26px; }
  .process-icon { display: none; }
  .process-item h3 { font-size: 30px; }
  .process-item p { font-size: 13px; }
  .booking { padding-inline: 13px; }
  .booking-panel { gap: 45px; padding-inline: 18px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-logo { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}

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