:root {
  --bg: #f8f5f1;
  --paper: #fffdf9;
  --paper-soft: rgba(255, 253, 249, .72);
  --ink: #141210;
  --muted: #6f6760;
  --line: rgba(20, 18, 16, .14);
  --accent: #d6c0a8;
  --accent-dark: #8c735f;
  --shadow: 0 28px 80px rgba(42, 34, 28, .11);
  --max: 1440px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(214, 192, 168, .28), transparent 34rem),
    linear-gradient(135deg, #fffdf9 0%, var(--bg) 52%, #efe8df 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(20,18,16,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,18,16,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

body.menu-open { overflow: hidden; }

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

img {
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 30;
  transform: translateY(-150%);
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fffdf9;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .2s ease;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 4px;
}

.site-header {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 26px clamp(18px, 5vw, 72px);
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: padding .28s ease, background-color .28s ease, border-color .28s ease, box-shadow .28s ease, backdrop-filter .28s ease;
}

.site-header.is-scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom-color: rgba(140,115,95,.16);
  background: rgba(255,253,249,.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 34px rgba(42,34,28,.045);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: clamp(210px, 25vw, 322px);
  height: auto;
  transition: width .28s ease;
}

.site-header.is-scrolled .brand-logo {
  width: clamp(196px, 22vw, 286px);
}

.brand span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.8vw, 42px);
}

.desktop-nav a,
.header-cta,
.language-switch,
.text-link,
.footer-meta,
.site-footer nav,
.mobile-social {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent-dark);
  transition: transform .25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,253,249,.42);
  color: var(--ink);
  transition: background-color .28s ease, border-color .28s ease, min-height .28s ease;
}

.site-header.is-scrolled .header-cta {
  min-height: 38px;
  border-color: rgba(20,18,16,.18);
  background: rgba(255,253,249,.74);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.language-switch button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.language-switch button[aria-pressed="true"] {
  color: var(--ink);
  border-bottom: 1px solid rgba(140,115,95,.55);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,253,249,.68);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform .25s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 15;
  padding: 120px 24px 28px;
  background: rgba(255,253,249,.94);
  backdrop-filter: blur(22px);
  opacity: 0;
  transform: translateY(-14px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-menu nav {
  display: grid;
  gap: 18px;
  margin-bottom: 30px;
}

.mobile-menu nav a {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.05rem, 9.5vw, 4.1rem);
  line-height: 1;
}

.mobile-menu .button { width: 100%; }
.mobile-social { display: inline-block; margin-top: 28px; }

main {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 72px) clamp(60px, 9vw, 118px);
}

.hero,
.page-hero,
.section,
.intro-band,
.cta-section,
.service-list,
.media-board,
.booking-layout,
.legal-wrap {
  position: relative;
  z-index: 1;
}

.hero {
  min-height: calc(100vh - 96px);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0;
  align-items: center;
  padding: clamp(18px, 3.5vw, 48px) 0 clamp(38px, 5.5vw, 74px);
}

.home-hero {
  min-height: clamp(510px, calc(100vh - 210px), 680px);
  padding-top: clamp(10px, 2vw, 30px);
  padding-bottom: clamp(18px, 3vw, 42px);
}

.hero-copy,
.page-hero > div:first-child {
  max-width: 860px;
}

.home-hero .hero-copy {
  grid-column: 1 / 8;
  grid-row: 1;
  max-width: none;
  position: relative;
  z-index: 4;
  padding-right: clamp(18px, 4vw, 58px);
}

.home-hero h1 {
  max-width: 760px;
  font-size: clamp(2.55rem, 4.25vw, 4.7rem);
  line-height: .98;
}

.layered-title {
  position: relative;
}

.layered-title span {
  display: block;
}

.layered-title .title-line {
  max-width: 520px;
  position: relative;
  z-index: 4;
}

.layered-title .title-accent {
  width: max-content;
  margin-top: -.04em;
  transform: translateX(clamp(78px, 12vw, 168px));
  color: rgba(20, 18, 16, .94);
  text-shadow: 0 1px 0 rgba(255,253,249,.54);
  position: relative;
  z-index: 1;
}

.home-hero .lead {
  max-width: 470px;
  margin-top: 22px;
  position: relative;
  z-index: 5;
}

.home-hero .actions {
  margin-top: 26px;
  position: relative;
  z-index: 5;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--accent-dark);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 7.4vw, 7.6rem);
  line-height: .94;
}

.narrow-hero h1,
.contact-hero h1 {
  max-width: 1050px;
  font-size: clamp(2.8rem, 6.8vw, 6.8rem);
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.35vw, 4.7rem);
  line-height: 1.02;
}

h3 {
  margin: 0;
  font-size: clamp(1.42rem, 2.15vw, 2.08rem);
  line-height: 1.08;
}

.lead {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.22rem);
  line-height: 1.72;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 23px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fffdf9;
  cursor: pointer;
  font: inherit;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #2a2520;
}

.text-link {
  color: var(--ink);
  border-bottom: 1px solid rgba(140,115,95,.42);
  padding-bottom: 5px;
}

.hero-card,
.feature-image,
.media-tile,
.media-panel {
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  background: #f4eee7;
  box-shadow:
    -18px 18px 0 rgba(214,192,168,.11),
    0 26px 70px rgba(42,34,28,.10);
}

.hero-card {
  aspect-ratio: 4 / 5;
  min-height: 0;
  height: min(650px, calc(100vh - 172px));
  border-radius: 230px 230px 28px 28px;
  z-index: 2;
}

.home-hero .hero-card {
  grid-column: 6 / -1;
  grid-row: 1;
  justify-self: end;
  width: min(44vw, 540px);
  height: min(590px, calc(100vh - 230px));
  border-radius: 230px 230px 28px 28px;
  transform: none;
  border-color: rgba(20,18,16,.10);
  background:
    linear-gradient(180deg, rgba(255,253,249,.42), rgba(244,238,231,.76));
  box-shadow:
    -10px 16px 0 rgba(214,192,168,.08),
    0 22px 58px rgba(42,34,28,.085);
}

.home-hero .image-card img {
  object-position: 50% 42%;
}

.hero-card::after,
.feature-image::after,
.media-tile::after,
.media-panel::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,253,249,.28);
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}

.image-card picture,
.feature-image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.image-card img,
.feature-image img,
.media-tile img,
.media-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  display: block;
  filter: saturate(.9) contrast(1.025);
  transition: transform .6s ease, filter .6s ease;
}

.feature-image .about-portrait {
  object-position: 52% 42%;
}

.about-hero-card {
  aspect-ratio: 4 / 5;
  min-height: 0;
  height: min(650px, calc(100vh - 172px));
  border-radius: 230px 230px 28px 28px;
}

.about-hero-card .about-portrait {
  object-position: 50% 34%;
}

.card-overlay {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  padding: 18px 22px;
  border: 1px solid rgba(255,253,249,.42);
  border-radius: 22px;
  background: rgba(255,253,249,.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 44px rgba(42,34,28,.12);
  display: grid;
  gap: 10px;
}

.home-hero .card-overlay {
  left: 34px;
  right: 34px;
  bottom: 30px;
  background: rgba(255,253,249,.58);
  box-shadow: 0 16px 34px rgba(42,34,28,.09);
}

.card-overlay span {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.intro-band {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: clamp(44px, 7vw, 84px) 0;
  text-align: center;
}

.trust-bar {
  margin: clamp(4px, 1.2vw, 16px) auto clamp(34px, 6vw, 74px);
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  flex-wrap: wrap;
  color: var(--accent-dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.video-feature {
  width: min(1040px, 100%);
  margin: 0 auto clamp(34px, 6vw, 76px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 120px 18px 18px 18px;
  background: #141210;
  box-shadow:
    18px 18px 0 rgba(214,192,168,.09),
    0 18px 60px rgba(42,34,28,.08);
  position: relative;
}

.video-feature::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,253,249,.14);
  border-radius: inherit;
  pointer-events: none;
}

.video-feature iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.intro-band h2 {
  font-size: clamp(1.85rem, 3.1vw, 3.15rem);
  line-height: 1.12;
}

.intro-band p:last-child {
  max-width: 560px;
  margin: 20px auto 0;
  font-size: .96rem;
  line-height: 1.72;
}

.section {
  padding: clamp(62px, 9vw, 118px) 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 280px;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255,253,249,.52);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .25s ease, background .25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  background: rgba(255,253,249,.82);
}

.service-card span,
.service-detail > span,
.media-panel span,
.media-tile span,
.contact-facts span {
  color: var(--accent-dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.service-card p { margin: 20px 0 0; }

.home-hero + .trust-bar + .video-feature + .section {
  padding-top: clamp(28px, 5vw, 66px);
  padding-bottom: clamp(44px, 7vw, 86px);
}

.home-hero + .trust-bar + .video-feature + .section .section-heading {
  margin-bottom: 22px;
}

.home-hero + .trust-bar + .video-feature + .section .section-heading h2 {
  font-size: clamp(1.9rem, 3.2vw, 3.45rem);
}

.home-hero + .trust-bar + .video-feature + .section .service-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.home-hero + .trust-bar + .video-feature + .section .service-card {
  min-height: 180px;
  padding: 18px;
}

.split-feature,
.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
  padding: clamp(58px, 9vw, 118px) 0;
}

.about-hero {
  min-height: clamp(510px, calc(100vh - 210px), 680px);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0;
  padding-top: clamp(10px, 2vw, 30px);
  padding-bottom: clamp(18px, 3vw, 42px);
}

.about-hero .hero-copy {
  grid-column: 1 / 7;
  grid-row: 1;
  max-width: none;
  position: relative;
  z-index: 4;
  padding-right: clamp(18px, 4vw, 58px);
}

.about-hero h1 {
  max-width: 620px;
  font-size: clamp(2.55rem, 4.25vw, 4.7rem);
  line-height: .98;
}

.about-hero .lead {
  max-width: 470px;
  margin-top: 22px;
  position: relative;
  z-index: 5;
}

.about-hero .about-hero-card {
  grid-column: 7 / -1;
  grid-row: 1;
  justify-self: end;
  width: min(44vw, 540px);
  height: min(590px, calc(100vh - 230px));
  border-radius: 230px 230px 28px 28px;
  border-color: rgba(20,18,16,.10);
  background:
    linear-gradient(180deg, rgba(255,253,249,.42), rgba(244,238,231,.76));
  box-shadow:
    -10px 16px 0 rgba(214,192,168,.08),
    0 22px 58px rgba(42,34,28,.085);
}

.about-hero .about-portrait {
  object-fit: contain;
  object-position: 50% 50%;
  background: #050505;
}

.services-hero {
  min-height: clamp(510px, calc(100vh - 210px), 680px);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0;
  padding-top: clamp(10px, 2vw, 30px);
  padding-bottom: clamp(18px, 3vw, 42px);
}

.services-hero .services-hero-card {
  grid-column: 1 / 7;
  grid-row: 1;
  justify-self: start;
  width: min(44vw, 540px);
  height: min(590px, calc(100vh - 230px));
  border-radius: 230px 230px 28px 28px;
  border-color: rgba(20,18,16,.10);
  background:
    linear-gradient(180deg, rgba(255,253,249,.42), rgba(244,238,231,.76));
  box-shadow:
    10px 16px 0 rgba(214,192,168,.08),
    0 22px 58px rgba(42,34,28,.085);
}

.services-hero .services-hero-card img {
  object-position: 50% 42%;
}

.services-hero .hero-copy {
  grid-column: 7 / -1;
  grid-row: 1;
  max-width: none;
  position: relative;
  z-index: 4;
  padding-left: clamp(18px, 4vw, 58px);
}

.services-hero h1 {
  max-width: 680px;
  font-size: clamp(2.55rem, 4.25vw, 4.7rem);
  line-height: .98;
}

.services-hero .lead {
  max-width: 520px;
  margin-top: 22px;
  position: relative;
  z-index: 5;
}

.media-hero {
  min-height: clamp(510px, calc(100vh - 210px), 680px);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0;
  padding-top: clamp(10px, 2vw, 30px);
  padding-bottom: clamp(18px, 3vw, 42px);
}

.media-hero .hero-copy {
  grid-column: 1 / 7;
  grid-row: 1;
  max-width: none;
  position: relative;
  z-index: 4;
  padding-right: clamp(18px, 4vw, 58px);
}

.media-hero h1 {
  max-width: 680px;
  font-size: clamp(2.55rem, 4.25vw, 4.7rem);
  line-height: .98;
}

.media-hero .lead {
  max-width: 470px;
  margin-top: 22px;
  position: relative;
  z-index: 5;
}

.media-hero .media-hero-card {
  grid-column: 7 / -1;
  grid-row: 1;
  justify-self: end;
  width: min(44vw, 540px);
  height: min(590px, calc(100vh - 230px));
  border-radius: 230px 230px 28px 28px;
  border-color: rgba(20,18,16,.10);
  background:
    linear-gradient(180deg, rgba(255,253,249,.42), rgba(244,238,231,.76));
  box-shadow:
    -10px 16px 0 rgba(214,192,168,.08),
    0 22px 58px rgba(42,34,28,.085);
}

.media-hero .media-hero-card img {
  object-position: 50% 42%;
}

.feature-image {
  aspect-ratio: 5 / 6;
  border-radius: 190px 190px 24px 24px;
}

.two-column-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 6vw, 86px);
}

.two-column-copy article,
.legal-card,
.booking-form,
.contact-facts {
  border: 1px solid var(--line);
  background: var(--paper-soft);
  box-shadow: 0 18px 60px rgba(42,34,28,.07);
}

.two-column-copy article {
  padding: clamp(28px, 4vw, 48px);
}

.about-story {
  display: grid;
  grid-template-columns: minmax(240px, 390px) minmax(0, 760px);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
  padding-top: clamp(12px, 3vw, 38px);
}

.story-kicker {
  position: sticky;
  top: 110px;
}

.story-kicker h2 {
  font-size: clamp(2rem, 3.4vw, 3.55rem);
  line-height: 1.08;
}

.story-copy {
  padding: clamp(30px, 5vw, 58px);
  border-left: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255,253,249,.56), rgba(255,253,249,0));
}

.story-copy p {
  max-width: 680px;
  margin: 0;
  font-size: clamp(1rem, 1.25vw, 1.08rem);
  line-height: 1.82;
}

.story-copy p + p {
  margin-top: 22px;
}

.skating-accent {
  width: min(1180px, 100%);
  margin: clamp(18px, 4vw, 46px) auto clamp(48px, 8vw, 92px);
}

.skating-accent picture {
  display: block;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 120px 18px 18px 18px;
  background: #141210;
  box-shadow:
    18px 18px 0 rgba(214,192,168,.10),
    0 18px 60px rgba(42,34,28,.08);
  position: relative;
}

.skating-accent picture::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,253,249,.16);
  border-radius: inherit;
  pointer-events: none;
}

.skating-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 48%;
  display: block;
  opacity: .9;
  filter: sepia(.08) contrast(.98) brightness(1.05);
}

.skating-accent figcaption {
  margin: 14px 0 0;
  color: var(--accent-dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.quote-section {
  max-width: 1020px;
  margin: 0 auto;
  padding: clamp(58px, 9vw, 108px) 0;
  text-align: center;
}

.quote-section p {
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.9rem, 4.25vw, 4.25rem);
  line-height: 1.08;
}

.about-quote {
  max-width: 860px;
  padding: clamp(34px, 5vw, 64px) 0;
}

.about-quote p {
  font-size: clamp(1.45rem, 2.6vw, 2.65rem);
  line-height: 1.14;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 18px;
}

.media-tile,
.media-panel {
  min-height: 280px;
  border-radius: 120px 120px 18px 18px;
  aspect-ratio: 4 / 5;
}

.media-tile:nth-child(even),
.media-panel:nth-child(even) {
  border-radius: 18px 120px 18px 18px;
}

.media-tile:nth-child(3n),
.media-panel:nth-child(3n) {
  border-radius: 120px 18px 18px 18px;
}

.media-tile span,
.media-panel div {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
}

.media-tile::before,
.media-panel::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(to top, rgba(20,18,16,.22), transparent);
  pointer-events: none;
  z-index: 1;
}

.placeholder-tile,
.placeholder-panel {
  background:
    linear-gradient(145deg, rgba(255,253,249,.76), rgba(239,232,223,.94)),
    radial-gradient(circle at 28% 18%, rgba(214,192,168,.34), transparent 22rem);
}

.placeholder-tile::before,
.placeholder-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(140,115,95,.24);
  background: none;
  height: auto;
}

.cta-section {
  width: min(1100px, 100%);
  margin: clamp(30px, 6vw, 78px) auto 0;
  padding: clamp(46px, 7vw, 84px);
  border: 1px solid var(--line);
  background: rgba(20,18,16,.94);
  color: #fffdf9;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-section h2,
.cta-section p {
  color: #fffdf9;
}

.cta-section p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px auto 28px;
  color: rgba(255,253,249,.72);
}

.cta-section .button {
  border-color: #fffdf9;
  background: #fffdf9;
  color: var(--ink);
}

.service-list {
  display: grid;
  gap: 16px;
  padding-bottom: clamp(48px, 8vw, 100px);
}

.service-detail {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: clamp(22px, 5vw, 74px);
  padding: clamp(28px, 5vw, 62px);
  border-top: 1px solid var(--line);
  background: rgba(255,253,249,.36);
}

.service-detail:last-child {
  border-bottom: 1px solid var(--line);
}

.service-detail p {
  max-width: 780px;
}

.service-points {
  max-width: 780px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.service-points li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

.service-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .78em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.fit {
  margin-top: 22px;
  color: var(--accent-dark);
  font-weight: 600;
}

.media-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding-bottom: clamp(54px, 8vw, 100px);
}

.media-panel {
  min-height: 360px;
}

.image-panel {
  grid-row: span 2;
  min-height: 736px;
  aspect-ratio: 4 / 5;
  border-radius: 210px 210px 24px 24px;
}

.media-panel h2 {
  margin-top: 8px;
  font-size: clamp(1.6rem, 2.6vw, 2.6rem);
}

.media-work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  padding-bottom: clamp(54px, 8vw, 100px);
}

.media-work-card {
  min-height: 390px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255,253,249,.78), rgba(239,232,223,.5)),
    radial-gradient(circle at 18% 12%, rgba(214,192,168,.22), transparent 20rem);
  box-shadow: 0 18px 60px rgba(42,34,28,.07);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.media-work-card:nth-child(1),
.media-work-card:nth-child(5) {
  border-radius: 120px 18px 18px 18px;
}

.media-work-card:nth-child(2),
.media-work-card:nth-child(4) {
  border-radius: 18px 120px 18px 18px;
}

.media-work-card:nth-child(3) {
  border-radius: 18px;
}

.media-work-card.media-work-card-arched {
  border-radius: 120px 18px 18px 18px;
}

.media-work-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(140,115,95,.16);
  pointer-events: none;
}

.media-work-card-feature {
  background:
    linear-gradient(145deg, rgba(20,18,16,.94), rgba(64,51,41,.88)),
    radial-gradient(circle at 82% 16%, rgba(214,192,168,.28), transparent 18rem);
  color: #fffdf9;
}

.media-work-card-feature h2,
.media-work-card-feature p {
  color: #fffdf9;
}

.media-work-card-feature p {
  color: rgba(255,253,249,.76);
}

.media-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--accent-dark);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.media-work-card-feature .media-card-meta {
  color: rgba(255,253,249,.68);
}

.media-work-card h2 {
  max-width: 720px;
  margin: clamp(34px, 5vw, 58px) 0 20px;
  font-size: clamp(1.75rem, 3.2vw, 3.4rem);
  line-height: 1.02;
}

.media-work-card p {
  max-width: 720px;
  color: var(--muted);
}

.media-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 30px;
}

.media-tags span,
.media-credit {
  width: fit-content;
  border: 1px solid rgba(140,115,95,.26);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--accent-dark);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.media-work-card-feature .media-tags span,
.media-work-card-feature .media-credit {
  border-color: rgba(255,253,249,.22);
  color: rgba(255,253,249,.72);
}

.media-credit {
  display: inline-flex;
  margin-top: auto;
}

.contact-hero {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  padding-top: clamp(42px, 7vw, 86px);
  padding-bottom: clamp(36px, 6vw, 76px);
}

.contact-hero h1 {
  max-width: 880px;
  font-size: clamp(2.55rem, 5.4vw, 5.4rem);
}

.contact-hero .lead {
  max-width: 650px;
  margin-top: 22px;
}

.contact-facts {
  padding: clamp(22px, 3vw, 34px);
  display: grid;
  gap: 14px;
}

.contact-facts p {
  margin: 0;
  color: var(--ink);
}

.contact-facts span {
  display: block;
  margin-bottom: 4px;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 780px);
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
  padding-bottom: clamp(48px, 7vw, 86px);
}

.booking-layout > div:first-child p {
  max-width: 340px;
}

.booking-layout h2 {
  max-width: 360px;
  font-size: clamp(2.35rem, 4.2vw, 4.6rem);
  line-height: 1;
}

.booking-form {
  width: min(780px, 100%);
  justify-self: end;
  padding: clamp(22px, 3vw, 34px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255,253,249,.66);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
}

.booking-form input,
.booking-form select {
  height: 42px;
  padding: 0 13px;
}

.booking-form textarea {
  min-height: 120px;
  padding: 12px 13px;
  resize: vertical;
}

.booking-form .button {
  min-height: 46px;
}

.booking-form .privacy-field {
  display: grid;
  grid-template-columns: 16px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.55;
  text-transform: none;
}

.privacy-field input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--ink);
}

.privacy-field a {
  color: var(--ink);
  border-bottom: 1px solid rgba(140,115,95,.42);
}

.form-success {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(140,115,95,.24);
  background: rgba(255,253,249,.72);
  color: var(--accent-dark);
  font-size: .9rem;
  font-weight: 600;
}

.form-success[hidden] {
  display: none;
}

.full-field { grid-column: 1 / -1; }
.hidden-field { display: none; }

.legal-wrap {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 116px) 0;
}

.legal-card {
  padding: clamp(26px, 5vw, 54px);
  margin-top: 22px;
}

.legal-card h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.65rem);
  margin: 0 0 22px;
}

.legal-card h3 {
  font-size: 1.22rem;
  margin-top: 34px;
}

.site-footer {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 36px clamp(18px, 5vw, 72px) 42px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(240px, 440px) 1fr auto;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  position: relative;
  z-index: 1;
}

.site-footer img {
  width: 220px;
  display: block;
}

.site-footer p {
  max-width: 420px;
  margin: 18px 0 0;
  font-size: .92rem;
}

.site-footer nav,
.footer-meta {
  display: grid;
  gap: 12px;
}

.footer-meta .instagram-link {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
}

.footer-meta .instagram-icon {
  width: 15px;
  height: 15px;
  display: inline-block;
  opacity: .78;
}

.footer-meta { text-align: right; }

.site-credit {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 72px) 28px;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.6;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.site-credit a {
  color: var(--ink);
  border-bottom: 1px solid rgba(140,115,95,.38);
}

.cookie-banner[hidden] { display: none; }

.cookie-banner {
  position: fixed;
  left: clamp(16px, 3vw, 34px);
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  z-index: 25;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid rgba(20,18,16,.16);
  border-radius: 18px;
  background: rgba(255,253,249,.92);
  box-shadow: 0 24px 70px rgba(42,34,28,.16);
  backdrop-filter: blur(18px);
}

.cookie-banner strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
}

.cookie-banner p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-actions button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fffdf9;
  cursor: pointer;
  font: inherit;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.cookie-actions button:last-child {
  background: transparent;
  color: var(--ink);
}

@media (max-width: 1100px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr auto auto;
  }

  .menu-toggle {
    display: block;
    grid-column: 4;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero + .trust-bar + .video-feature + .section .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid,
  .media-board,
  .media-work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-panel {
    grid-row: auto;
    min-height: 420px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-meta {
    text-align: left;
  }

  .footer-meta .instagram-link {
    justify-self: start;
  }
}

@media (max-width: 860px) {
  .hero,
  .page-hero,
  .split-feature,
  .booking-layout,
  .contact-hero {
    grid-template-columns: 1fr;
  }

  .home-hero .hero-copy {
    grid-column: 1;
    grid-row: auto;
    max-width: 620px;
    padding-right: 0;
  }

  .about-hero {
    min-height: auto;
    gap: 28px;
  }

  .services-hero {
    min-height: auto;
    gap: 28px;
  }

  .media-hero {
    min-height: auto;
    gap: 28px;
  }

  .about-hero .hero-copy {
    grid-column: 1;
    grid-row: auto;
    max-width: 620px;
    padding-right: 0;
    order: 1;
  }

  .services-hero .hero-copy {
    grid-column: 1;
    grid-row: auto;
    max-width: 620px;
    padding-left: 0;
    order: 1;
  }

  .media-hero .hero-copy {
    grid-column: 1;
    grid-row: auto;
    max-width: 620px;
    padding-right: 0;
    order: 1;
  }

  .hero-card {
    order: -1;
    height: auto;
    min-height: 520px;
    border-radius: 180px 180px 24px 24px;
  }

  .home-hero .hero-card {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    height: auto;
    justify-self: stretch;
    transform: none;
  }

  .about-hero .about-hero-card {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    height: auto;
    justify-self: stretch;
    order: 2;
  }

  .services-hero .services-hero-card {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    height: auto;
    justify-self: stretch;
    order: 2;
  }

  .media-hero .media-hero-card {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    height: auto;
    justify-self: stretch;
    order: 2;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
  }

  .hero .eyebrow { order: 1; }
  .home-hero h1 {
    order: 2;
    display: block;
    margin-top: 0;
    font-size: clamp(2.25rem, 8.4vw, 3.55rem);
    line-height: 1.02;
  }

  .about-hero h1 {
    margin-top: 0;
    font-size: clamp(2.25rem, 8.4vw, 3.55rem);
    line-height: 1.02;
  }

  .services-hero h1 {
    margin-top: 0;
    font-size: clamp(2.25rem, 8.4vw, 3.55rem);
    line-height: 1.02;
  }

  .media-hero h1 {
    margin-top: 0;
    font-size: clamp(2.25rem, 8.4vw, 3.55rem);
    line-height: 1.02;
  }
  .layered-title .title-accent {
    width: auto;
    transform: none;
    z-index: 4;
  }
  .home-hero .hero-card {
    transform: none;
  }
  .home-hero .lead { order: 3; margin-top: 16px; }
  .home-hero .actions { order: 4; margin-top: 20px; }
  .about-hero .lead { margin-top: 16px; }
  .services-hero .lead { margin-top: 16px; }
  .media-hero .lead { margin-top: 16px; }

  .feature-image {
    min-height: 520px;
  }

  .two-column-copy,
  .about-story,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .story-kicker {
    position: static;
  }

  .story-copy {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 28px 0 0;
    background: transparent;
  }

  .skating-accent {
    margin-top: 12px;
  }

  .full-field {
    grid-column: auto;
  }

  .section-heading {
    display: block;
  }

  .media-work-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 22px 18px;
  }

  .site-header.is-scrolled {
    padding: 14px 18px;
  }

  .brand-logo {
    width: min(238px, calc(100vw - 88px));
  }

  .site-header.is-scrolled .brand-logo {
    width: min(214px, calc(100vw - 88px));
  }

  main {
    padding-inline: 18px;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4.35rem);
    line-height: .98;
  }

  .narrow-hero h1,
  .contact-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.45rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 3.15rem);
    line-height: 1.05;
  }

  h3 {
    font-size: clamp(1.32rem, 6vw, 1.82rem);
  }

  .lead {
    font-size: 1rem;
    line-height: 1.66;
  }

  p {
    font-size: .96rem;
    line-height: 1.68;
  }

  .hero {
    min-height: auto;
    padding-top: 14px;
    gap: 28px;
  }

  .hero-card {
    height: auto;
    min-height: min(430px, 58vh);
    border-radius: 160px 160px 22px 22px;
  }

  .home-hero h1 {
    font-size: clamp(2rem, 9.6vw, 3rem);
    line-height: 1.03;
  }

  .home-hero .lead {
    font-size: .98rem;
    line-height: 1.62;
  }

  .image-card img {
    object-position: 58% center;
  }

  .actions,
  .button {
    width: 100%;
  }

  .button {
    min-height: 50px;
    padding-inline: 20px;
  }

  .service-grid,
  .gallery-grid,
  .media-board {
    grid-template-columns: 1fr;
  }

  .home-hero + .trust-bar + .video-feature + .section .service-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar {
    justify-content: flex-start;
    gap: 12px 18px;
    font-size: .68rem;
    line-height: 1.6;
  }

  .video-feature {
    margin-bottom: 42px;
    border-radius: 82px 16px 16px 16px;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .media-panel,
  .media-tile {
    aspect-ratio: 4 / 5;
    min-height: 320px;
  }

  .media-work-card {
    min-height: auto;
    padding: 28px 22px;
    border-radius: 76px 16px 16px 16px;
  }

  .media-work-card:nth-child(2),
  .media-work-card:nth-child(4) {
    border-radius: 16px 76px 16px 16px;
  }

  .media-card-meta {
    display: grid;
    gap: 8px;
  }

  .skating-accent picture {
    aspect-ratio: 4 / 3;
    border-radius: 82px 16px 16px 16px;
  }

  .intro-band {
    text-align: left;
    padding: 38px 0 54px;
  }

  .intro-band h2 {
    font-size: clamp(1.72rem, 8vw, 2.45rem);
    line-height: 1.14;
  }

  .cta-section {
    padding: 34px 22px;
    text-align: left;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-inline: 18px;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .cookie-actions {
    justify-content: flex-start;
  }

  .cookie-actions button {
    width: 100%;
  }
}
