:root {
  --bg: #060708;
  --bg-soft: #101215;
  --bg-panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --text: #f3f5f7;
  --muted: #a6adb7;
  --line: rgba(255, 255, 255, 0.12);
  --silver: #d9dde2;
  --silver-bright: #f6f8fb;
  --steel: #9ea7b2;
  --graphite: #1d2228;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.15), transparent 18%),
    radial-gradient(circle at 88% 14%, rgba(158, 167, 178, 0.16), transparent 24%),
    linear-gradient(180deg, #090a0b 0%, #101318 44%, #08090a 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 85%);
}

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

.inline-link {
  color: var(--silver-bright);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding-bottom: 40px;
}

.keep-together {
  white-space: nowrap;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  background: rgba(8, 10, 12, 0.78);
  box-shadow: var(--shadow);
}

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

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, #161a1f, #0c0f12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 26px rgba(0, 0, 0, 0.28);
}

.brand-logo {
  display: block;
  width: 92px;
  height: auto;
  border-radius: 10px;
}

.brand-lockup {
  display: grid;
  gap: 3px;
}

.brand-name {
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-flag {
  display: inline-block;
  width: 2em;
  height: 1.34em;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.15em;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2) inset;
  background:
    linear-gradient(33deg, transparent 42%, #fff 42%, #fff 49%, #c8102e 49%, #c8102e 57%, #fff 57%, #fff 64%, transparent 64%),
    linear-gradient(-33deg, transparent 42%, #fff 42%, #fff 49%, #c8102e 49%, #c8102e 57%, #fff 57%, #fff 64%, transparent 64%),
    linear-gradient(90deg, transparent 38%, #fff 38%, #fff 44%, #c8102e 44%, #c8102e 56%, #fff 56%, #fff 62%, transparent 62%),
    linear-gradient(transparent 34%, #fff 34%, #fff 42%, #c8102e 42%, #c8102e 58%, #fff 58%, #fff 66%, transparent 66%),
    #012169;
  background-repeat: no-repeat;
  flex: 0 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-nav a,
.nav-parent {
  position: relative;
  white-space: nowrap;
  line-height: 1.1;
}

.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.nav-parent::before {
  content: "";
  width: 5px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  order: 2;
  opacity: 0.72;
}

.site-nav a::after,
.nav-parent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  background: linear-gradient(90deg, var(--steel), var(--silver-bright));
}

.nav-group {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
  margin: -8px 0;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 20;
  display: grid;
  min-width: 180px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(10, 13, 16, 0.96);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.38);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-dropdown a {
  padding: 10px 12px;
  border-radius: 10px;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  color: var(--silver-bright);
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.site-nav a.is-active,
.nav-parent.is-active,
.footer-nav a.is-active {
  color: var(--silver-bright);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.nav-parent:hover::after,
.nav-parent:focus-visible::after {
  transform: scaleX(1);
}

.site-nav a.is-active::after,
.nav-parent.is-active::after,
.footer-nav a.is-active::after {
  transform: scaleX(1);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px clamp(14px, 2vw, 26px);
  width: min(100%, 980px);
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(0.78rem, 1vw, 0.88rem);
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.footer-nav a {
  position: relative;
  padding: 4px 0 6px;
}

.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.4), var(--silver-bright));
}

.footer-nav a:hover::after,
.footer-nav a:focus-visible::after {
  transform: scaleX(1);
}

.footer-social-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 16px;
  width: min(100%, 720px);
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-social-nav span {
  color: var(--silver-bright);
  font-weight: 800;
}

.footer-social-nav span::after {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  margin-left: 14px;
  vertical-align: middle;
  background: linear-gradient(90deg, var(--silver-bright), transparent);
  opacity: 0.55;
}

.footer-social-nav a {
  color: rgba(214, 220, 227, 0.78);
}

.footer-social-nav a:hover,
.footer-social-nav a:focus-visible {
  color: var(--silver-bright);
}

.footer-legal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px clamp(12px, 1.6vw, 20px);
  width: min(100%, 720px);
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-legal-nav a:hover,
.footer-legal-nav a:focus-visible {
  color: var(--silver-bright);
}

.nav-toggle {
  display: none;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
}

.hero,
.section {
  position: relative;
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  min-height: calc(100vh - 164px);
  padding: 62px 0 24px;
}

.hero-copy {
  max-width: 560px;
}

.eyebrow,
.section-label,
.panel-kicker,
.spec-label {
  color: var(--silver);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.intro-card h2,
.craft-copy h2,
.contact-copy h2 {
  margin: 14px 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.4rem, 7vw, 6.3rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.hero-text,
.section-heading p,
.intro-card p,
.intro-panel p,
.craft-copy > p,
.contact-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-text {
  max-width: 560px;
  line-height: 1.82;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.button-primary {
  background: linear-gradient(135deg, #b9c0c8, #f7f8fb 48%, #8a939d);
  color: #0b0d10;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: var(--silver-bright);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  padding: 18px 0 26px;
  color: var(--silver-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.trust-strip span + span::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.45;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.custom-hero {
  min-height: auto;
  padding-bottom: 30px;
}

.custom-build-page .custom-hero {
  padding-bottom: 40px;
}

.custom-stage {
  position: relative;
  display: grid;
  gap: 18px;
  width: min(100%, 620px);
}

.custom-build-page .custom-stage {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01)),
    linear-gradient(135deg, rgba(62, 86, 106, 0.12), rgba(0, 0, 0, 0) 45%),
    #0a0d10;
  box-shadow: var(--shadow);
}

.custom-stage-main,
.custom-stage-accent {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    #0c0f12;
  box-shadow: var(--shadow);
}

.custom-stage-main {
  min-height: 420px;
  padding: 14px;
  aspect-ratio: 1.18 / 1;
}

.custom-stage-main::after,
.custom-stage-accent::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  pointer-events: none;
}

.custom-stage-main img,
.custom-stage-accent img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-stage-main img {
  max-height: none;
  border-radius: 22px;
  object-position: center;
}

.custom-stage-card {
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 50%),
    #080a0c;
  padding: 14px;
  min-height: 0;
  aspect-ratio: 1 / 1;
}

.custom-stage-note,
.direction-card p,
.process-card p,
.custom-platform-panel p,
.build-note-card p,
.build-form-panel p {
  color: var(--muted);
  line-height: 1.75;
}

.custom-stage-note {
  display: grid;
  gap: 6px;
  padding: 2px 8px 0;
}

.custom-stage-note strong {
  color: var(--silver-bright);
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.custom-stage-note span {
  font-size: 0.96rem;
}

.custom-build-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 2px 8px 0;
}

.custom-build-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(243, 245, 247, 0.84);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.build-journey {
  padding-top: 18px;
}

.build-stage-grid {
  display: grid;
  gap: 34px;
  margin-top: 34px;
}

.build-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 32px;
  align-items: center;
}

.build-stage-reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.build-stage-reverse .build-stage-media {
  order: 2;
}

.build-stage-reverse .build-stage-copy {
  order: 1;
}

.build-stage-media,
.build-stage-copy {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(10, 12, 15, 0.9);
  box-shadow: var(--shadow);
}

.build-stage-media {
  overflow: hidden;
  min-height: 360px;
  padding: 16px;
}

.build-stage-media img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  object-fit: cover;
}

.build-stage-copy {
  padding: 34px 36px;
}

.build-stage-copy h3 {
  margin: 12px 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.build-stage-copy p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
}

.custom-grid {
  display: grid;
  gap: 18px;
}

.direction-grid,
.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.direction-card,
.process-card,
.custom-platform-panel,
.build-note-card,
.build-form-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(10, 12, 15, 0.88);
  box-shadow: var(--shadow);
}

.direction-card h3,
.process-card h3,
.custom-platform-panel h3,
.build-note-card h3,
.build-form-panel h2 {
  margin: 12px 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.direction-card ul,
.custom-platform-list,
.build-note-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.direction-card li,
.custom-platform-list li,
.build-note-list li {
  color: var(--silver);
  padding-left: 18px;
  position: relative;
}

.direction-card li::before,
.custom-platform-list li::before,
.build-note-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--silver-bright), var(--steel));
}

.direction-card-glacier {
  background:
    radial-gradient(circle at top right, rgba(190, 222, 255, 0.14), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(11, 14, 18, 0.9);
}

.direction-card-obsidian {
  background:
    radial-gradient(circle at top right, rgba(128, 80, 48, 0.2), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(8, 9, 11, 0.95);
}

.direction-card-custom {
  background:
    radial-gradient(circle at top right, rgba(172, 172, 172, 0.14), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(11, 13, 16, 0.92);
}

.custom-build-page .direction-card,
.custom-build-page .process-card,
.custom-build-page .custom-platform-panel,
.custom-build-page .build-note-card,
.custom-build-page .build-form-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0) 50%),
    rgba(10, 12, 15, 0.92);
}

.custom-build-page .process-card-number {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.custom-build-page .build-form-panel {
  border-color: rgba(110, 156, 190, 0.18);
}

.process-card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--silver-bright);
  font-weight: 700;
}

.custom-platform-layout,
.custom-enquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 28px;
}

.custom-platform-panel h3,
.build-note-card h3 {
  font-size: clamp(2.1rem, 3.1vw, 3rem);
}

.build-note-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--silver-bright);
}

.build-note-graphic {
  overflow: hidden;
  margin: -4px 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  aspect-ratio: 1.25 / 0.92;
}

.build-note-graphic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.build-form-panel .contact-card {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.build-form-panel .contact-card label {
  display: grid;
  gap: 8px;
  color: var(--silver);
}

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

.build-form-panel input,
.build-form-panel select,
.build-form-panel textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.build-form-panel textarea {
  min-height: 150px;
  resize: vertical;
}

.build-form-panel select {
  appearance: none;
}

.build-form-panel form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.build-form-panel .form-note,
.build-form-panel .form-status {
  margin: 0;
}

.custom-cta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.hero-gallery {
  position: relative;
  overflow: hidden;
  width: min(100%, 640px);
  min-height: 700px;
  padding: 12px 12px 82px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 36px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    #0a0c0f;
  box-shadow: var(--shadow);
}

.hero-gallery::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 26px;
  pointer-events: none;
  z-index: 3;
}

.hero-card {
  position: absolute;
  inset: 12px 12px 82px;
  overflow: hidden;
  z-index: 1;
  border-radius: 28px;
  opacity: 0;
  transition:
    opacity 1.35s ease,
    transform 1.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.35s ease;
  will-change: transform, opacity, filter;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  pointer-events: none;
  z-index: 2;
}

.hero-card-current {
  opacity: 1;
  filter: saturate(1.02) brightness(1.01);
  transform: translate3d(0, 0, 0) scale(1);
  z-index: 2;
}

.hero-card-next {
  filter: saturate(0.98) brightness(0.98);
  transform: translate3d(42px, 0, 0) scale(1.04);
}

.hero-gallery.is-transitioning .hero-card-current {
  opacity: 0;
  filter: saturate(0.98) brightness(0.98);
  transform: translate3d(-42px, 0, 0) scale(1.04);
  z-index: 1;
}

.hero-gallery.is-transitioning .hero-card-next {
  opacity: 1;
  filter: saturate(1.02) brightness(1.01);
  transform: translate3d(0, 0, 0) scale(1);
  z-index: 2;
}

.hero-card-image,
.hero-card-image img {
  width: 100%;
  height: 100%;
}

.hero-card-image {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 34%),
    #060708;
}

.hero-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 6, 8, 0.06), rgba(4, 6, 8, 0.1) 50%, rgba(4, 6, 8, 0.38)),
    radial-gradient(circle at 50% 16%, transparent, rgba(4, 6, 8, 0.08) 58%);
  transition: background 1.2s ease;
}

.hero-card-image img {
  display: block;
  object-fit: cover;
  object-position: center center;
}

.hero-card-next .hero-card-image::after,
.hero-gallery.is-transitioning .hero-card-current .hero-card-image::after {
  background:
    linear-gradient(180deg, rgba(4, 6, 8, 0.06), rgba(4, 6, 8, 0.1) 50%, rgba(4, 6, 8, 0.38)),
    radial-gradient(circle at 50% 16%, transparent, rgba(4, 6, 8, 0.08) 58%);
}

.hero-stage-footer {
  position: absolute;
  right: 20px;
  bottom: 22px;
  left: 20px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 18px;
}

.hero-stage-footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05));
}

.hero-stage-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(100%, 320px);
}

.hero-stage-dot {
  flex: 1 1 0;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  transition: background 0.6s ease, transform 0.6s ease;
}

.hero-stage-dot.is-active {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.9));
  transform: scaleX(1.04);
}

.logo-plaque {
  position: relative;
  width: min(100%, 520px);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(18, 22, 27, 0.96), rgba(8, 10, 12, 0.98));
  box-shadow: var(--shadow);
}

.logo-plaque::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    linear-gradient(180deg, rgba(10, 12, 14, 0.7), rgba(16, 20, 24, 0.15));
}

.plaque-glow {
  position: absolute;
  inset: -16%;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.28), transparent 26%),
    radial-gradient(circle at 50% 50%, rgba(158, 167, 178, 0.18), transparent 50%);
  filter: blur(26px);
}

.hero-logo {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 520px);
  margin: 0 auto;
  height: auto;
  border-radius: 16px;
}

.hero-unveil {
  position: relative;
  overflow: hidden;
  width: min(100%, 560px);
  min-height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    #0a0c0f;
  box-shadow: var(--shadow);
}

.hero-unveil::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  pointer-events: none;
}

.hero-unveil-image {
  position: absolute;
  inset: 0;
}

.hero-unveil-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 6, 8, 0.2), rgba(4, 6, 8, 0.7) 62%, rgba(4, 6, 8, 0.95)),
    radial-gradient(circle at 50% 22%, transparent, rgba(4, 6, 8, 0.28) 58%);
}

.hero-unveil-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-unveil-overlay {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: 620px;
  padding: 30px;
}

.hero-unveil-overlay h2 {
  max-width: 420px;
  margin: 10px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
}

.hero-unveil-badge {
  width: 180px;
  margin-top: 24px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(8, 10, 12, 0.72);
  backdrop-filter: blur(12px);
}

.hero-unveil-badge .hero-logo {
  width: 100%;
  border-radius: 10px;
}

.section {
  margin-top: 40px;
  padding: 42px 0;
}

.simple-intro {
  padding-top: 0;
}

.simple-intro .intro-split {
  display: block;
}

.simple-intro .section-heading {
  max-width: none;
}

.simple-intro .section-heading p {
  max-width: none;
}

.intro-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: stretch;
}

.launch-note {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 0;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.025);
  box-shadow: var(--shadow);
}

.launch-note strong {
  display: block;
  margin-top: 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
}

.launch-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.series-narrative-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 36px;
}

.series-narrative-card {
  padding: 34px 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.series-narrative-card h3 {
  margin: 12px 0 14px;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 0.98;
}

.series-narrative-card p:last-child {
  margin: 0;
  line-height: 1.78;
}

.series-narrative-ice {
  color: #15181c;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(160deg, rgba(245, 250, 255, 0.95), rgba(196, 207, 219, 0.82));
}

.series-narrative-ice .section-label,
.series-narrative-ice p:last-child {
  color: rgba(21, 24, 28, 0.76);
}

.series-narrative-ice h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

.series-narrative-darkside {
  background:
    radial-gradient(circle at top right, rgba(132, 41, 68, 0.16), transparent 32%),
    radial-gradient(circle at bottom left, rgba(88, 40, 121, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, #151015, #090b0d);
}

.series-narrative-darkside .section-label {
  color: #cfa6ff;
}

.series-narrative-darkside h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.series-hero {
  min-height: auto;
  padding-bottom: 44px;
}

.series-hero-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1672 / 941;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    #0d0f11;
  box-shadow: var(--shadow);
}

.series-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.series-hero-glacier .series-hero-media {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.35), transparent 34%),
    linear-gradient(160deg, rgba(226, 239, 249, 0.26), rgba(77, 96, 116, 0.12)),
    #11171d;
}

.series-hero-obsidian .series-hero-media {
  background:
    radial-gradient(circle at top right, rgba(108, 38, 131, 0.22), transparent 36%),
    linear-gradient(160deg, rgba(72, 40, 88, 0.16), rgba(0, 0, 0, 0.08)),
    #090b0d;
}

.ice-section .section-heading h2,
.ice-section .watch-copy h3 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0;
  font-weight: 600;
}

.darkside-section .section-heading h2,
.darkside-section .watch-copy h3 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0;
  text-transform: none;
}

.ice-section .section-label {
  color: #d8edf4;
}

.darkside-section .section-label {
  color: #d7b5ff;
}

.branding-grid,
.intro-grid,
.craft-section,
.contact-section {
  display: grid;
  gap: 24px;
}

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

.intro-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.branding-card,
.intro-card,
.intro-panel,
.craft-panel,
.contact-card,
.collection-card,
.spec-card,
.quote-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.branding-card,
.intro-card,
.intro-panel,
.spec-card,
.quote-card {
  padding: 34px;
}

.branding-card h3,
.collection-card h3 {
  margin: 22px 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.branding-card p,
.collection-card p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.intro-card h2,
.craft-copy h2,
.contact-copy h2,
.section-heading h2 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
}

.intro-panel {
  align-self: end;
  background:
    linear-gradient(180deg, rgba(157, 166, 177, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 18px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.collection-card {
  min-height: 320px;
  padding: 32px;
  overflow: hidden;
}

.collection-card-media {
  margin: -32px -32px 26px;
  aspect-ratio: 1.4 / 0.8;
  overflow: hidden;
  background: #0d0f11;
}

.collection-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-card a {
  display: inline-block;
  margin-top: 20px;
  color: var(--silver-bright);
  font-weight: 700;
}

.card-index {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  letter-spacing: 0.18em;
}

.collection-card-dark,
.branding-card {
  background:
    radial-gradient(circle at top right, rgba(116, 31, 31, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, #181c21, #0d1013);
}

.collection-card-light {
  color: #15181c;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(190, 197, 205, 0.72));
}

.collection-card-light p,
.collection-card-light .card-index {
  color: rgba(21, 24, 28, 0.72);
}

.collection-card-light a {
  color: #303842;
}

.collection-card-ice .collection-card-media {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08)),
    #d7e5f3;
}

.collection-card-darkside .collection-card-media {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.18)),
    #090a0b;
}

.ice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.ice-section .ice-grid {
  position: relative;
}

.watch-showcase-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, #171b20, #0d1013);
  box-shadow: var(--shadow);
}

.ice-section .watch-showcase-card {
  background:
    radial-gradient(circle at top, rgba(201, 233, 255, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, #171d23, #0d1013);
}

.watch-showcase-card-darkside {
  background:
    radial-gradient(circle at top, rgba(108, 38, 131, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, #130f16, #090b0d);
}

.watch-shot {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #0d0f11;
}

.watch-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.watch-shot a {
  display: block;
  width: 100%;
  height: 100%;
}

.watch-copy {
  padding: 20px 20px 22px;
}

.product-head {
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.watch-copy h3 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.85rem;
}

.watch-copy h3 a {
  color: inherit;
}

.product-summary {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.product-price {
  margin: 12px 0 0;
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.product-specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
}

.product-specs div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
}

.product-specs dt {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-specs dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  line-height: 1.4;
}

.product-specs div:last-child {
  border-bottom: 0;
}

.product-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 14px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--silver-bright);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.03);
}

.ice-section .product-head {
  border-color: rgba(201, 233, 255, 0.18);
}

.ice-section .product-price {
  color: #e6f7ff;
}

.darkside-section .product-head {
  border-color: rgba(175, 73, 206, 0.18);
}

.darkside-section .product-price {
  color: #f0d7ff;
}

.darkside-section .product-link {
  border-color: rgba(175, 73, 206, 0.2);
  color: #f0d7ff;
}

.product-page .site-shell {
  width: min(calc(100% - 32px), 1240px);
}

.product-main {
  padding-top: 40px;
}

.product-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: start;
}

.product-brief {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 34px;
}

.product-support-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  margin-top: 34px;
}

.product-media,
.product-panel,
.product-story,
.product-delivery,
.related-section,
.brief-card,
.support-card {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.product-media {
  overflow: hidden;
  padding: 18px;
}

.product-gallery-stage {
  overflow: hidden;
  border-radius: 24px;
  background: #0c0f12;
}

.product-media img {
  display: block;
  width: 100%;
  height: auto;
}

.product-gallery-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}

.product-gallery-meta span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.product-gallery-thumb {
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.product-gallery-thumb:hover,
.product-gallery-thumb:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
}

.product-gallery-thumb.is-active {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.product-gallery-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-panel {
  padding: 38px;
}

.brief-card {
  padding: 32px 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.025);
}

.support-card {
  padding: 34px 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.025);
}

.enquiry-card {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
}

.product-kicker {
  color: var(--silver);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-title {
  margin: 12px 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 4.6rem);
  line-height: 0.95;
}

.product-subtitle {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.product-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
}

.product-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.03);
}

.product-price-line {
  margin: 0 0 24px;
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.product-meta-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 24px;
}

.meta-pill {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.meta-label {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.meta-pill strong {
  font-size: 0.98rem;
  font-weight: 700;
}

.product-page .product-specs {
  margin-top: 0;
}

.product-page .product-specs div {
  grid-template-columns: 128px 1fr;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.product-story,
.product-delivery,
.related-section {
  padding: 36px 38px;
  margin-top: 34px;
}

.product-story h2,
.product-delivery h2,
.related-header h2 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.product-story p,
.product-delivery p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.brief-copy,
.brief-list {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.brief-copy {
  font-size: 1rem;
}

.brief-list {
  padding-left: 20px;
}

.brief-list li + li {
  margin-top: 10px;
}

.support-card h2 {
  margin: 10px 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.support-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.support-list {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.support-list li + li {
  margin-top: 8px;
}

.enquiry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.product-empty-state {
  padding: 34px 0 10px;
}

.related-header {
  margin-bottom: 20px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.related-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
}

.related-image {
  display: block;
  aspect-ratio: 1 / 0.78;
  overflow: hidden;
  background: #0d0f11;
}

.related-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-copy {
  padding: 18px 20px 20px;
}

.related-copy h3 {
  margin: 10px 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
}

.related-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--silver-bright);
  font-weight: 700;
}

.craft-section {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.craft-points {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.craft-points div {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.craft-points strong,
.spec-card li,
.quote-card p {
  font-size: 1.1rem;
}

.craft-points p,
.spec-card li,
.site-footer p,
.form-note,
label {
  color: var(--muted);
  line-height: 1.7;
}

.craft-panel {
  display: grid;
  gap: 20px;
  padding: 10px 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.spec-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.quote-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
}

.quote-card p {
  margin-top: 0;
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1.1;
}

.quote-card span {
  color: var(--silver);
}

.contact-section {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  padding-bottom: 12px;
}

.other-hero {
  min-height: auto;
  padding-bottom: 8px;
}

.other-hero-panel,
.manager-note {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.custom-watches-page .other-hero {
  gap: 36px;
  padding-bottom: 18px;
}

.custom-watches-page .other-hero-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018)),
    rgba(12, 14, 17, 0.78);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.26);
}

.custom-watches-page .custom-gallery-grid {
  gap: 28px;
}

.custom-watches-page .custom-gallery-card {
  border-radius: 18px;
  background: rgba(12, 14, 17, 0.62);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.custom-watches-page .custom-gallery-image {
  aspect-ratio: 1 / 0.9;
  background: #0a0c0f;
}

.custom-watches-page .custom-gallery-copy {
  padding: 18px 20px 20px;
}

.custom-watches-page .custom-gallery-copy h3 {
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
}

.custom-watches-page .custom-gallery-copy p {
  max-width: 46ch;
}

.other-hero-panel h2,
.manager-saved h2 {
  margin: 12px 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 0.96;
}

.other-hero-panel p,
.manager-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.other-empty-state {
  margin-bottom: 24px;
}

.other-grid:empty {
  display: none;
}

.custom-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.custom-gallery-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.06), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.custom-gallery-image {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 0;
  background: #0d0f11;
  cursor: pointer;
}

.custom-gallery-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(78px, 1fr));
  gap: 10px;
  padding: 14px 22px 0;
}

.custom-gallery-thumb {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.custom-gallery-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.custom-gallery-copy {
  padding: 22px 22px 24px;
}

.custom-gallery-copy h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 0.95;
}

.custom-gallery-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.custom-gallery-actions {
  margin-top: 18px;
}

.custom-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
}

.custom-gallery-modal[hidden] {
  display: none !important;
}

.custom-gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 10, 0.78);
  backdrop-filter: blur(12px);
}

.custom-gallery-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
  width: min(1100px, calc(100% - 16px));
  max-height: calc(100vh - 48px);
  padding: 22px;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(11, 13, 16, 0.96);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.42);
}

.custom-gallery-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.custom-gallery-modal-stage {
  overflow: hidden;
  border-radius: 24px;
  background: #0a0d10;
}

.custom-gallery-modal-stage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.custom-gallery-modal-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 18px 12px 6px 4px;
}

.custom-gallery-modal-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 0.94;
}

.custom-gallery-modal-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.custom-gallery-modal-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.custom-gallery-modal-thumb {
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.custom-gallery-modal-thumb.is-active {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.custom-gallery-modal-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

body.is-gallery-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .custom-gallery-modal-panel {
    grid-template-columns: 1fr;
  }

  .custom-gallery-modal-copy {
    padding: 0;
  }
}

.manager-hero {
  padding-bottom: 12px;
}

.admin-hero {
  padding-bottom: 4px;
}

.admin-shortcuts {
  padding-top: 8px;
  padding-bottom: 10px;
}

.admin-shortcut-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.admin-shortcut-card {
  display: grid;
  gap: 10px;
  padding: 24px 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(10, 12, 15, 0.82);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.admin-shortcut-card:hover,
.admin-shortcut-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.16);
}

.admin-shortcut-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 0.96;
}

.admin-shortcut-card p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.admin-manager-block {
  padding-top: 18px;
}

.admin-section-heading {
  margin-bottom: 24px;
}

.manager-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
}

.manager-form {
  align-self: start;
}

.manager-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.manager-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.manager-import-button {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.manager-saved {
  align-self: start;
}

.manager-gallery-panel {
  position: relative;
  overflow: hidden;
}

.manager-gallery-panel::before {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 72%);
  pointer-events: none;
}

.manager-saved-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.manager-count {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.03);
}

.manager-edit-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.manager-edit-item {
  display: grid;
  gap: 5px;
  min-height: 62px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: var(--text);
  text-align: left;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.manager-edit-item:hover,
.manager-edit-item:focus-visible {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.055);
  transform: translateY(-1px);
}

.manager-edit-item span {
  overflow: hidden;
  font-weight: 800;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.manager-edit-item small {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.manager-preview-heading {
  margin: 18px 0 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.manager-preview-heading .section-label {
  margin: 0;
}

.manager-existing-images {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.manager-existing-images[hidden] {
  display: none;
}

.manager-existing-images-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.manager-existing-images-head .section-label {
  margin: 0;
}

.manager-existing-images-head span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.manager-existing-images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 10px;
}

.manager-existing-images-grid-single {
  grid-template-columns: minmax(120px, 180px);
}

.manager-existing-image {
  display: grid;
  gap: 8px;
}

.manager-existing-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  object-fit: cover;
  background: #0d0f11;
}

.manager-existing-image .button {
  min-height: 36px;
  padding: 0 10px;
  font-size: 0.78rem;
}

.managed-watches-list {
  display: grid;
  gap: 18px;
}

.managed-watch-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
}

.managed-watch-media {
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 1 / 1;
  background: #0d0f11;
}

.managed-watch-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.managed-watch-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(64px, 64px));
  gap: 10px;
  margin-top: 14px;
}

.managed-watch-thumb {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.managed-watch-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.managed-watch-copy h3 {
  margin: 10px 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
}

.managed-watch-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.managed-watch-linkline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.managed-watch-linkline a {
  color: var(--silver-bright);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
}

.managed-watch-meta,
.managed-watch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-top: 16px;
}

.managed-watch-stack {
  display: grid;
  gap: 22px;
}

.managed-watches-list {
  display: grid;
  gap: 18px;
}

.product-gallery-series {
  display: grid;
  gap: 14px;
}

.product-gallery-series-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 2px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.product-gallery-series-head .section-label {
  margin: 0;
}

.product-gallery-series-head span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-gallery-series-grid {
  display: grid;
  gap: 14px;
}

.product-gallery-group {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
}

.product-gallery-group-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.product-gallery-group-head h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  line-height: 1;
}

.product-gallery-group-head .section-label {
  margin-bottom: 6px;
  font-size: 0.72rem;
}

.product-gallery-group-head span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-gallery-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 10px;
}

.product-gallery-card {
  display: grid;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.product-gallery-card-media {
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1 / 1;
  background: #0d0f11;
}

.product-gallery-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery-card-copy h4 {
  margin: 0 0 5px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.12rem;
  line-height: 1;
}

.product-gallery-card-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.product-gallery-card-copy .managed-watch-actions {
  gap: 8px;
  margin-top: 10px;
}

.product-gallery-card-copy .button {
  min-height: 38px;
  padding: 0 13px;
  font-size: 0.86rem;
}

.managed-watch-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.03);
}

.brand-board-page .hero {
  min-height: auto;
  padding-bottom: 24px;
}

.brand-board-visual {
  min-height: 420px;
}

.logo-stage,
.logo-surface {
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.logo-stage {
  width: min(100%, 540px);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, #14181d, #090b0d);
}

.board-logo {
  display: block;
  width: 100%;
  max-width: 460px;
  height: auto;
  border-radius: 16px;
}

.board-grid,
.tagline-grid,
.swatch-grid {
  display: grid;
  gap: 20px;
}

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

.board-card,
.swatch-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.logo-surface-dark {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.11), transparent 34%),
    linear-gradient(180deg, #12161b, #090b0d);
}

.logo-surface-light {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.65), transparent 28%),
    linear-gradient(180deg, #eef2f6, #cfd5dd);
}

.logo-surface-light .board-logo {
  filter: brightness(0.92);
}

.board-note {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.swatch-card h3,
.tagline-card h3,
.type-card h3 {
  margin: 18px 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.swatch-card p,
.swatch-card span,
.type-card p,
.tagline-card p {
  color: var(--muted);
  line-height: 1.7;
}

.swatch {
  height: 140px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.swatch-obsidian {
  background: #090a0b;
}

.swatch-graphite {
  background: #1d2228;
}

.swatch-steel {
  background: #9ea7b2;
}

.swatch-platinum {
  background: #d9dde2;
}

.swatch-ice {
  background: #f6f8fb;
}

.type-sample-serif {
  font-family: "Cormorant Garamond", serif;
}

.type-sample-sans {
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.04em;
}

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

.contact-card {
  display: grid;
  gap: 18px;
  padding: 34px;
}

label {
  display: grid;
  gap: 10px;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder,
.form-note {
  color: rgba(166, 173, 183, 0.78);
}

.form-status {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  font-weight: 600;
  line-height: 1.6;
}

.form-status.is-success {
  color: #dff6e8;
  background: rgba(35, 88, 58, 0.28);
  border-color: rgba(126, 210, 162, 0.28);
}

.form-status.is-error {
  color: #ffd8d8;
  background: rgba(92, 34, 34, 0.28);
  border-color: rgba(255, 130, 130, 0.24);
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin: 34px auto 0;
  padding: 30px 0 18px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.site-footer p {
  margin: 0;
  line-height: 1.45;
}

.site-footer p:first-of-type {
  color: var(--silver-bright);
  font-weight: 700;
}

.site-footer p:nth-of-type(2) {
  color: var(--muted);
}

.site-footer p:last-of-type {
  color: rgba(166, 173, 183, 0.82);
  font-size: 0.9rem;
}

.site-footer p + p {
  margin-top: -12px;
}

.footer-nav + .footer-legal-nav {
  padding-top: 2px;
}

.limited-edition-page {
  background:
    radial-gradient(circle at 18% 12%, rgba(246, 248, 251, 0.08), transparent 18%),
    radial-gradient(circle at 82% 20%, rgba(217, 221, 226, 0.12), transparent 22%),
    linear-gradient(180deg, #070809 0%, #0f1217 46%, #08090a 100%);
}

.limited-edition-page .hero {
  min-height: calc(100vh - 220px);
  gap: 52px;
  padding-top: 72px;
  padding-bottom: 36px;
}

.limited-copy {
  max-width: 590px;
}

.limited-copy-soft {
  opacity: 0.9;
}

.limited-visual {
  display: flex;
  align-items: stretch;
}

.limited-stage {
  position: relative;
  width: min(100%, 560px);
  min-height: 620px;
  margin-left: auto;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    linear-gradient(180deg, #0d1014, #090b0e);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 24px 70px rgba(0, 0, 0, 0.34);
}

.limited-stage-aura {
  position: absolute;
  inset: 12% 14%;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 36%, transparent 68%);
  filter: blur(8px);
}

.limited-stage-teaser {
  position: absolute;
  inset: 28px;
  z-index: 0;
  display: grid;
  place-items: center;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.06), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    rgba(3, 4, 6, 0.44);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.limited-stage-teaser::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 10, 13, 0.04), rgba(8, 10, 13, 0.22)),
    radial-gradient(circle at 50% 20%, transparent 0%, rgba(5, 6, 8, 0.12) 62%, rgba(5, 6, 8, 0.38) 100%);
}

.limited-stage-teaser img {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.92;
  transform: scale(1.02);
}

.limited-stage-rings {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.limited-stage-rings span {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.limited-stage-rings span:nth-child(1) {
  width: 84%;
  aspect-ratio: 1;
}

.limited-stage-rings span:nth-child(2) {
  width: 62%;
  aspect-ratio: 1;
}

.limited-stage-rings span:nth-child(3) {
  width: 40%;
  aspect-ratio: 1;
}

.limited-storyband-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.limited-direction,
.limited-enquiry-section {
  padding-top: 34px;
}

.limited-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 34px;
}

.limited-pillar,
.limited-storyband-panel {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(8, 10, 12, 0.55);
}

.limited-pillar h3,
.limited-storyband-copy h2 {
  margin: 12px 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.limited-pillar p,
.limited-storyband-copy p,
.limited-storyband-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.limited-storyband {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 24px;
  align-items: center;
}

.limited-storyband-panel {
  position: relative;
  overflow: hidden;
}

.limited-storyband-panel::before {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.09), transparent 68%);
}

.limited-storyband-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.03);
}

.limited-contact-card {
  max-width: 640px;
}

.dyslexia-watch-page {
  background:
    radial-gradient(circle at 74% 20%, rgba(245, 196, 0, 0.22), transparent 32%),
    linear-gradient(135deg, #0b0d10 0%, #151a1f 54%, #090a0c 100%);
  font-family: "Atkinson Hyperlegible", "Manrope", Arial, sans-serif;
  letter-spacing: 0;
}

.dyslexia-watch-page h1,
.dyslexia-watch-page h2,
.dyslexia-watch-page h3,
.dyslexia-watch-page p,
.dyslexia-watch-page li,
.dyslexia-watch-page a,
.dyslexia-watch-page span,
.dyslexia-watch-page figcaption {
  font-family: "Atkinson Hyperlegible", "Manrope", Arial, sans-serif;
  letter-spacing: 0;
}

.dyslexia-topbar {
  border-bottom-color: rgba(246, 201, 18, 0.24);
}

.dyslexia-page-note {
  color: #f6c912;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.dyslexia-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 150px);
  padding: 58px 0 42px;
}

.dyslexia-hero-copy {
  max-width: 690px;
}

.dyslexia-hero .eyebrow,
.dyslexia-design-section .section-label,
.dyslexia-story-band .section-label,
.dyslexia-content-section .section-label,
.dyslexia-product-section .section-label {
  color: #f6c912;
}

.dyslexia-hero h1,
.dyslexia-story-band h2,
.dyslexia-cta-section h2 {
  max-width: 760px;
  margin: 16px 0 24px;
  color: #fff8d6;
  font-family: "Manrope", sans-serif;
  font-size: clamp(3.2rem, 6.1vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.dyslexia-hero .hero-text,
.dyslexia-soft-note,
.dyslexia-story-band p,
.dyslexia-cta-section p {
  max-width: 680px;
  color: rgba(250, 250, 244, 0.88);
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.78;
}

.dyslexia-soft-note {
  margin-top: 20px;
  padding-left: 22px;
  border-left: 5px solid #f6c912;
}

.dyslexia-watch-visual {
  position: relative;
  min-height: 700px;
  border-radius: 8px;
  overflow: hidden;
  background: #11161c;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.46);
}

.dyslexia-watch-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.28)),
    radial-gradient(circle at 50% 46%, transparent 42%, rgba(0, 0, 0, 0.24) 78%);
  pointer-events: none;
}

.dyslexia-watch-visual img {
  width: 100%;
  height: 100%;
  min-height: 700px;
  object-fit: cover;
  object-position: center 48%;
}

.dyslexia-design-section {
  padding-top: 80px;
}

.dyslexia-design-section .section-heading h2,
.dyslexia-content-section .section-heading h2,
.dyslexia-product-section .section-heading h2 {
  color: #fff8d6;
  letter-spacing: 0;
}

.dyslexia-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.dyslexia-feature-card {
  min-height: 320px;
  padding: 34px;
  border: 1px solid rgba(246, 201, 18, 0.24);
  border-radius: 8px;
  background: rgba(10, 13, 16, 0.78);
}

.dyslexia-feature-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #f6c912;
  color: #090a0c;
  font-weight: 900;
}

.dyslexia-feature-card h3 {
  margin: 26px 0 16px;
  color: #fff8d6;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.14;
}

.dyslexia-feature-card p {
  color: rgba(250, 250, 244, 0.82);
  font-size: 1.04rem;
  line-height: 1.75;
}

.dyslexia-story-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  margin: 70px 0 24px;
  padding: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(246, 201, 18, 0.16), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(246, 201, 18, 0.22);
}

.dyslexia-content-section {
  padding-top: 64px;
}

.dyslexia-production-section {
  padding-top: 72px;
}

.dyslexia-production-section .section-heading h2 {
  color: #fff8d6;
  letter-spacing: 0;
}

.dyslexia-production-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.dyslexia-production-card {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(246, 201, 18, 0.18);
  border-radius: 8px;
  background: #0b0d10;
}

.dyslexia-production-card-wide {
  grid-column: span 2;
  min-height: 620px;
}

.dyslexia-production-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.dyslexia-production-card:nth-child(1) img {
  object-position: center 48%;
}

.dyslexia-production-card:nth-child(2) img,
.dyslexia-production-card:nth-child(3) img {
  object-position: center center;
}

.dyslexia-production-card:nth-child(4) img {
  object-position: 54% center;
}

.dyslexia-production-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
  pointer-events: none;
}

.dyslexia-production-card figcaption {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  z-index: 1;
  max-width: 680px;
  color: #fff8d6;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.5;
}

.dyslexia-product-section {
  padding-top: 72px;
}

.product-spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 860px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.product-spec-list li {
  padding: 18px 20px;
  border: 1px solid rgba(246, 201, 18, 0.2);
  border-radius: 8px;
  color: rgba(250, 250, 244, 0.9);
  background: rgba(10, 13, 16, 0.72);
  font-weight: 800;
}

.product-spec-list li::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 12px;
  border-radius: 50%;
  background: #f6c912;
}

.dyslexia-cta-section {
  margin: 72px 0 24px;
  padding: 44px;
  border: 1px solid rgba(246, 201, 18, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(246, 201, 18, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(10, 13, 16, 0.82);
}

.dyslexia-cta-section .button {
  margin-top: 26px;
}

.admin-locked body {
  overflow: hidden;
}

.admin-locked .site-shell {
  filter: blur(12px);
  pointer-events: none;
  user-select: none;
}

.admin-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.12), transparent 30%),
    rgba(3, 4, 6, 0.86);
  backdrop-filter: blur(18px);
}

.admin-gate-card {
  width: min(100%, 460px);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    #0c0f13;
  box-shadow: var(--shadow);
}

.admin-gate-card h1 {
  margin: 12px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 8vw, 4rem);
  line-height: 0.95;
}

.admin-gate-card p {
  color: var(--muted);
  line-height: 1.7;
}

.admin-gate-card label {
  display: grid;
  gap: 10px;
  margin: 22px 0 16px;
  color: var(--silver);
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero,
  .branding-grid,
  .intro-grid,
  .craft-section,
  .contact-section,
  .collection-grid,
  .ice-grid,
  .admin-shortcut-grid,
  .direction-grid,
  .process-grid,
  .manager-layout,
  .product-layout,
  .product-brief,
  .product-support-grid,
  .custom-platform-layout,
  .custom-enquiry-layout,
  .build-stage,
  .build-stage-reverse,
  .custom-gallery-grid,
  .board-grid.two-up,
  .tagline-grid,
  .swatch-grid,
  .launch-note,
  .intro-split,
  .series-narrative-grid,
  .related-grid,
  .limited-pillars,
  .limited-storyband,
  .dyslexia-hero,
  .dyslexia-feature-grid,
  .dyslexia-story-band,
  .dyslexia-production-grid,
  .product-spec-list,
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 24px;
    padding-top: 38px;
  }

  .manager-grid,
  .managed-watch-card,
  .product-gallery-card {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 560px;
  }

  .custom-stage {
    width: 100%;
  }

  .limited-stage {
    width: 100%;
    min-height: 560px;
  }

  .dyslexia-watch-visual,
  .dyslexia-watch-visual img {
    min-height: 560px;
  }

  .dyslexia-production-card,
  .dyslexia-production-card-wide {
    grid-column: auto;
    min-height: 560px;
  }

  .build-stage-reverse .build-stage-media,
  .build-stage-reverse .build-stage-copy {
    order: initial;
  }

  .hero-gallery {
    width: min(100%, 680px);
    min-height: 620px;
    padding: 12px 12px 84px;
  }

  .hero-card-current,
  .hero-card-next {
    transition: none;
    inset: 12px 12px 84px;
    transform: none;
  }

  .hero-card-current {
    opacity: 1;
    filter: none;
  }

  .hero-card-next {
    opacity: 0;
    filter: none;
  }

  .hero-gallery.is-transitioning .hero-card-current {
    opacity: 0;
  }

  .hero-gallery.is-transitioning .hero-card-next {
    opacity: 1;
  }

  .build-form-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 760px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .topbar {
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .brand {
    width: calc(100% - 52px);
  }

  .nav-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 8px;
    font-size: 1rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-footer {
    gap: 16px;
    padding-top: 26px;
  }

  .footer-nav,
  .footer-social-nav,
  .footer-legal-nav {
    gap: 10px 14px;
    max-width: 340px;
  }

  .footer-nav {
    font-size: 0.8rem;
  }

  .footer-social-nav {
    font-size: 0.76rem;
  }

  .footer-social-nav span {
    width: 100%;
  }

  .footer-social-nav span::after {
    display: none;
  }

  .footer-legal-nav {
    font-size: 0.72rem;
  }

  .nav-group {
    width: 100%;
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 0;
  }

  .nav-parent {
    color: var(--silver-bright);
    font-weight: 700;
  }

  .nav-dropdown {
    position: static;
    width: 100%;
    min-width: 0;
    padding: 4px 0 0 14px;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown a {
    padding: 7px 0;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .manager-saved-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo-plaque {
    padding: 20px;
  }

  .brand-logo {
    width: 80px;
  }

  .hero-gallery {
    min-height: 500px;
    padding: 10px 10px 72px;
  }

  .custom-stage-main {
    min-height: 360px;
    padding: 18px;
  }

  .limited-stage {
    min-height: 500px;
    padding: 22px;
  }

  .limited-stage-teaser {
    inset: 22px;
  }

  .limited-stage-plaque,
  .limited-pillar,
  .limited-storyband-panel,
  .dyslexia-feature-card,
  .dyslexia-story-band,
  .dyslexia-cta-section {
    padding: 24px;
  }

  .dyslexia-page-note {
    display: none;
  }

  .dyslexia-hero h1,
  .dyslexia-story-band h2 {
    font-size: clamp(2.7rem, 14vw, 4.4rem);
  }

  .dyslexia-watch-visual,
  .dyslexia-watch-visual img {
    min-height: 480px;
  }

  .dyslexia-production-card,
  .dyslexia-production-card-wide {
    min-height: 430px;
  }

  .dyslexia-production-card figcaption {
    right: 18px;
    bottom: 16px;
    left: 18px;
  }

  .custom-stage-main img {
    max-height: none;
  }

  .custom-stage-accent {
    grid-template-columns: 1fr;
  }

  .direction-card,
  .process-card,
  .custom-platform-panel,
  .build-note-card,
  .build-form-panel {
    padding: 22px;
  }

  .hero-card {
    inset: 10px 10px 72px;
  }

  .hero-stage-footer {
    right: 16px;
    bottom: 18px;
    left: 16px;
  }

  .hero-stage-dot {
    min-width: 0;
  }

  .product-empty-state {
    padding-top: 24px;
  }

  .product-meta-strip {
    grid-template-columns: 1fr;
  }

  .product-gallery-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-specs {
    grid-template-columns: 1fr;
  }

  .product-specs div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .product-page .product-specs div {
    grid-template-columns: 1fr;
  }
}
