:root {
  color-scheme: light;
  --ink: #081426;
  --muted: #607088;
  --line: #d6deea;
  --paper: #f5f7fb;
  --soft: #eaf0f8;
  --navy: #071326;
  --navy-2: #0c2342;
  --navy-3: #123761;
  --red: #d61f32;
  --red-dark: #a91525;
  --steel: #c8d3e3;
  --card: #ffffff;
  --metal: #8fa2bc;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 26px 80px rgba(5, 14, 31, .18);
  --shadow-strong: 0 34px 90px rgba(5, 14, 31, .26);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(7, 19, 38, .06), transparent 420px),
    linear-gradient(90deg, rgba(7, 19, 38, .025) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 54px 54px, auto;
  letter-spacing: 0;
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 997;
  width: 280px;
  height: 280px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 31, 50, .18), rgba(214, 31, 50, 0) 68%);
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity .25s ease;
  mix-blend-mode: screen;
}

body.has-pointer .cursor-glow {
  opacity: 1;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 3px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--red), #ff7180);
  box-shadow: 0 0 22px rgba(214, 31, 50, .62);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  background: var(--navy);
  animation: pageReveal .9s cubic-bezier(.76, 0, .24, 1) forwards;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 998;
  pointer-events: none;
  background:
    linear-gradient(115deg, var(--red), var(--navy-2) 42%, var(--navy));
  transform: translateX(-105%);
}

body.is-page-shifting::after {
  animation: sectionWipe .64s cubic-bezier(.76, 0, .24, 1) both;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(5, 14, 31, .9);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 40px rgba(5, 14, 31, .18);
  animation: slideDown .7s ease both;
}

.brand,
.site-nav,
.hero-actions,
.contact-strip,
.header-social {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  color: var(--white);
  font-weight: 950;
  letter-spacing: .04em;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-size: 13px;
  box-shadow: 0 0 0 4px rgba(214, 31, 50, .16), 0 12px 28px rgba(214, 31, 50, .28);
}

.site-nav {
  justify-content: center;
  gap: clamp(10px, 1.8vw, 24px);
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 850;
}

.site-nav a {
  position: relative;
  padding: 12px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .24s ease;
}

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

.site-nav a:hover {
  color: var(--red);
}

.header-social {
  gap: 8px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1.06fr);
  gap: clamp(20px, 5vw, 64px);
  align-items: center;
  min-height: calc(100vh - 69px);
  padding: clamp(36px, 7vw, 90px) clamp(18px, 5vw, 72px) 32px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(112deg, rgba(5, 14, 31, .99) 0%, rgba(8, 24, 47, .97) 48%, rgba(7, 19, 38, .94) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 74px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0 54%, rgba(214, 31, 50, .12) 54% 54.4%, transparent 54.4% 100%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, .24));
}

.hero::after {
  content: "";
  position: absolute;
  inset: -30% -10%;
  pointer-events: none;
  background: linear-gradient(100deg, transparent 0 42%, rgba(255, 255, 255, .08) 48%, transparent 56% 100%);
  transform: translateX(-60%);
  animation: lightSweep 7s ease-in-out infinite;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
  animation: riseIn .8s .12s ease both;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 760px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: 0 18px 44px rgba(0, 0, 0, .28);
}

h1 span {
  display: block;
}

h2 {
  position: relative;
  margin-bottom: 18px;
  font-size: clamp(30px, 4.3vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--red), transparent);
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.25;
}

.lead,
.intro p,
.about-copy p,
.booking-info p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.hero .lead,
.about-copy p,
.booking-info p:not(.eyebrow) {
  color: rgba(255, 255, 255, .78);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 28%, rgba(255, 255, 255, .32) 46%, transparent 64% 100%);
  transform: translateX(-120%);
  transition: transform .55s ease;
}

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

.button:hover::after {
  transform: translateX(120%);
}

.primary {
  color: var(--white);
  background: linear-gradient(135deg, #ef3348, var(--red-dark));
  box-shadow: 0 18px 40px rgba(214, 31, 50, .34);
}

.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .07);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.hero-stats div {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-left: 3px solid var(--red);
  background: rgba(255, 255, 255, .07);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
}

.hero-stats div::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 32%, rgba(255,255,255,.14) 50%, transparent 68% 100%);
  transform: translateX(-120%);
  transition: transform .65s ease;
}

.hero-stats div:hover::after {
  transform: translateX(120%);
}

.hero-stats dt {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 360px;
  animation: visualIn .9s .18s cubic-bezier(.2, .8, .2, 1) both;
}

.hero-visual img {
  width: min(760px, 100%);
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-photo-panel {
  display: grid;
  min-height: clamp(430px, 58vw, 620px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.hero-photo-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 19, 38, .08), rgba(7, 19, 38, .88)),
    linear-gradient(115deg, rgba(214, 31, 50, .22), transparent 38%);
}

.hero-photo-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  margin: 0;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.06);
  animation: slowZoom 14s ease-in-out infinite alternate;
}

.hero-photo-label {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 18px;
  border-left: 4px solid var(--red);
  color: var(--white);
  background: rgba(5, 14, 31, .72);
  backdrop-filter: blur(12px);
  animation: labelPulse 3.4s ease-in-out infinite;
}

.hero-photo-label span {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-photo-label strong {
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.15;
}

.section {
  position: relative;
  padding: clamp(58px, 9vw, 112px) clamp(18px, 5vw, 72px);
}

.reveal {
  opacity: 0;
  transform: translateY(36px) scale(.985);
  transition: opacity .78s ease, transform .78s cubic-bezier(.2, .8, .2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.section-heading {
  max-width: 760px;
}

.comic-section {
  background:
    linear-gradient(180deg, var(--white), #eef2f7);
}

.comic-layout,
.access-layout {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(300px, 1.1fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: stretch;
  margin-top: 34px;
}

.comic-copy {
  align-self: center;
}

.comic-copy p,
.feature-section .section-heading p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.media-placeholder {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 320px;
  align-content: end;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(143, 162, 188, .36);
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(7, 19, 38, .88), rgba(18, 55, 97, .72)),
    radial-gradient(circle at 78% 18%, rgba(214, 31, 50, .44), transparent 30%);
  box-shadow: 0 18px 48px rgba(5, 14, 31, .1);
}

.media-placeholder::after,
.media-slot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 0 38%, rgba(255,255,255,.14) 50%, transparent 62% 100%);
  transform: translateX(-120%);
  transition: transform .75s ease;
}

.media-placeholder:hover::after,
.media-slot:hover::after {
  transform: translateX(120%);
}

.media-placeholder span,
.media-slot span {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.media-placeholder strong {
  font-size: 22px;
}

.intro-image-frame {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(5, 14, 31, .18);
}

.intro-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 19, 38, .05), rgba(7, 19, 38, .45)),
    radial-gradient(circle at 85% 15%, rgba(214, 31, 50, .22), transparent 34%);
}

.intro-image-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.04);
  transition: transform .7s ease, filter .7s ease;
}

.intro-image-frame:hover img {
  transform: scale(1.04);
  filter: saturate(1.12) contrast(1.08);
}

.media-placeholder.small {
  min-height: 180px;
}

.media-placeholder.map {
  min-height: 420px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(280px, 1fr);
  gap: clamp(24px, 7vw, 96px);
  align-items: start;
  background:
    linear-gradient(135deg, #ffffff, #eef3f9);
  color: var(--white);
}

.intro p:not(.eyebrow) {
  color: var(--muted);
}

.intro h2 {
  color: var(--navy);
}

.link-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  background:
    linear-gradient(180deg, #eef2f7, var(--paper));
}

.feature-link-card {
  display: grid;
  grid-template-columns: minmax(160px, .7fr) minmax(220px, 1fr);
  gap: 22px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 48px rgba(5, 14, 31, .08);
  backdrop-filter: blur(10px);
  transition: transform .22s ease, box-shadow .22s ease;
}

.feature-link-card:hover {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-5px);
  box-shadow: 0 24px 58px rgba(5, 14, 31, .13);
}

.feature-link-card p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.media-section {
  background:
    linear-gradient(180deg, var(--paper), #eef2f7);
}

.media-section .section-heading p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.media-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) repeat(2, minmax(220px, .8fr));
  align-items: stretch;
  gap: 18px;
  margin-top: 34px;
}

.media-slot {
  display: grid;
  min-height: 330px;
  align-content: end;
  padding: 24px;
  border: 1px solid rgba(143, 162, 188, .32);
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(7, 19, 38, .88), rgba(18, 55, 97, .72)),
    radial-gradient(circle at 78% 18%, rgba(214, 31, 50, .46), transparent 30%);
  box-shadow: 0 18px 48px rgba(5, 14, 31, .12);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.media-slot:hover {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-7px) scale(1.01);
  border-color: rgba(214, 31, 50, .45);
  box-shadow: 0 28px 70px rgba(5, 14, 31, .18);
}

.media-slot.video-slot {
  min-height: 420px;
}

.media-slot span {
  margin-bottom: 12px;
}

.media-slot p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.7;
}

.services {
  background:
    linear-gradient(180deg, #eef2f7, var(--paper));
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 292px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 251, 255, .96));
  box-shadow: 0 18px 48px rgba(5, 14, 31, .08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-card::before,
.faq-list article::before,
.feature-list article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--red), transparent);
}

.service-card:hover {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-7px) scale(1.01);
  border-color: rgba(214, 31, 50, .35);
  box-shadow: 0 24px 58px rgba(5, 14, 31, .14);
}

.service-card:hover .icon,
.faq-list article:hover span,
.feature-list article:hover span {
  animation: iconPop .46s cubic-bezier(.2, .8, .2, 1);
}

.service-card p {
  min-height: 105px;
  color: var(--muted);
  line-height: 1.75;
}

.service-card strong {
  display: block;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--navy);
}

.icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(214, 31, 50, .24);
}

.about-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(300px, 1fr);
  gap: clamp(28px, 7vw, 86px);
  align-items: stretch;
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(5, 14, 31, .98), rgba(9, 28, 55, .96)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 76px);
}

.about-photo {
  display: grid;
  min-height: 460px;
  place-items: end start;
  padding: 28px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(214, 31, 50, .16), transparent 38%),
    linear-gradient(135deg, rgba(18, 55, 97, .96), rgba(7, 19, 38, .98)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.07) 0 10px, transparent 10px 22px);
  box-shadow: var(--shadow-strong);
}

.about-photo span {
  color: rgba(255, 255, 255, .9);
  font-size: clamp(36px, 7vw, 78px);
  font-weight: 950;
}

.about-copy {
  align-self: center;
  color: var(--white);
}

.role {
  color: var(--steel);
  font-weight: 900;
}

.roman {
  margin: -8px 0 16px;
  color: var(--red);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: .12em;
}

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

.credentials li {
  min-height: 50px;
  padding: 13px 16px;
  border-left: 4px solid var(--red);
  color: var(--white);
  background: rgba(255, 255, 255, .075);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1);
  font-weight: 800;
  line-height: 1.45;
}

.credentials li:last-child {
  grid-column: 1 / -1;
}

.flow {
  background: #eef2f7;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  border-top: 3px solid var(--red);
  background: rgba(255, 255, 255, .86);
  transition: transform .22s ease, background .22s ease;
  box-shadow: 0 16px 42px rgba(5, 14, 31, .06);
}

.flow-list li:hover {
  transform: translateY(-4px);
  background: var(--white);
}

.flow-list span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy-2);
  font-weight: 900;
}

.flow-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.faq-section {
  background:
    linear-gradient(180deg, #ffffff, #eef2f7);
}

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

.faq-list article {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 18px 48px rgba(5, 14, 31, .06);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.faq-list article:hover,
.access-info div:hover,
.feature-list article:hover {
  transform: translateY(-5px);
  border-color: rgba(214, 31, 50, .32);
  box-shadow: 0 24px 58px rgba(5, 14, 31, .12);
}

.faq-list span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-weight: 950;
}

.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.75;
}

.access-section,
.feature-section {
  background: var(--paper);
}

.access-info {
  display: grid;
  gap: 12px;
  margin: 0;
  align-self: center;
}

.access-info div,
.feature-list article {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(5, 14, 31, .07);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.access-info dt {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.access-info dd {
  margin: 6px 0 0;
  color: var(--navy);
  font-weight: 850;
  line-height: 1.6;
}

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

.feature-list span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.feature-list p {
  color: var(--muted);
  line-height: 1.75;
}

.line-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(5, 14, 31, .08);
}

.line-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(5, 14, 31, .98), rgba(12, 35, 66, .94)),
    linear-gradient(115deg, rgba(214, 31, 50, .2), transparent 44%);
}

.line-card h3 {
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

.line-card p {
  color: rgba(255, 255, 255, .74);
  font-size: 17px;
  line-height: 1.8;
}

.booking-line-card {
  min-height: 0;
  margin-top: 18px;
  padding: 22px;
}

.booking-line-card h3 {
  font-size: clamp(24px, 3vw, 34px);
}

.social-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.social-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.social-card-head .social-kicker {
  margin-bottom: 0;
}

.social-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  box-shadow: 0 14px 30px rgba(5, 14, 31, .18);
}

.line-card .social-icon {
  margin-bottom: 18px;
}

.line-icon {
  background: linear-gradient(135deg, #06c755, #0a9f45);
}

.instagram-icon {
  background: linear-gradient(135deg, #833ab4, #fd1d1d 55%, #fcb045);
}

.tiktok-icon {
  background: linear-gradient(135deg, #050e1f, #25f4ee 48%, #fe2c55);
}

.x-icon {
  background: linear-gradient(135deg, #050e1f, #334155);
}

.note-icon {
  background: linear-gradient(135deg, #2cb696, #15836d);
  font-size: 20px;
}

.booking-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(320px, 1fr);
  gap: clamp(26px, 6vw, 74px);
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(5, 14, 31, .99), rgba(10, 30, 58, .97)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 76px);
  color: var(--white);
}

.booking-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(214, 31, 50, .16), transparent 45%);
}

.booking-info {
  position: sticky;
  z-index: 1;
  align-self: start;
  top: 96px;
}

.booking-info p:not(.eyebrow) {
  color: rgba(255, 255, 255, .76);
}

.contact-strip {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
}

.contact-strip span {
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
}

.booking-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
  border-radius: var(--radius);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(247, 250, 255, .98));
  box-shadow: var(--shadow-strong);
}

.booking-form label {
  display: grid;
  gap: 8px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #f8fafc;
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(214, 31, 50, .18);
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(5, 14, 31, .08);
}

textarea {
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.submit-button {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--red-dark);
  font-weight: 850;
  line-height: 1.5;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 32px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, .72);
  background:
    linear-gradient(135deg, #050e1f, #08182e),
    linear-gradient(90deg, rgba(214, 31, 50, .2), transparent 40%);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.site-footer p {
  margin: 0;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-brand-row > p {
  color: var(--white);
  font-weight: 950;
  letter-spacing: .04em;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-link {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 14px 30px rgba(5, 14, 31, .28);
  transition: transform .22s ease, box-shadow .22s ease;
}

.header-social .footer-social-link {
  width: 34px;
  height: 34px;
  box-shadow: 0 10px 22px rgba(5, 14, 31, .2);
}

.app-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--white);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-social .app-icon {
  width: 19px;
  height: 19px;
}

.fill-icon {
  fill: var(--white);
  stroke: none;
}

.tiktok-mark {
  fill: var(--white);
  stroke: none;
}

.tiktok-shadow-a {
  fill: #25f4ee;
  transform: translate(-1px, 1px);
}

.tiktok-shadow-b {
  fill: #fe2c55;
  transform: translate(1px, -1px);
}

.footer-social-link.note-icon {
  font-size: 18px;
}

.footer-social-link:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 18px 38px rgba(214, 31, 50, .22);
}

@keyframes pageReveal {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

@keyframes lightSweep {
  0%, 42% {
    transform: translateX(-65%) rotate(0deg);
    opacity: 0;
  }
  52% {
    opacity: 1;
  }
  72%, 100% {
    transform: translateX(65%) rotate(0deg);
    opacity: 0;
  }
}

@keyframes labelPulse {
  0%, 100% {
    box-shadow: 0 0 0 rgba(214, 31, 50, 0);
  }
  50% {
    box-shadow: 0 0 34px rgba(214, 31, 50, .22);
  }
}

@keyframes iconPop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12) rotate(-4deg);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes sectionWipe {
  0% {
    transform: translateX(-105%);
  }
  45% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(105%);
  }
}

@keyframes slowZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.045);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes visualIn {
  from {
    opacity: 0;
    transform: translateX(28px) scale(.98);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .site-nav {
    display: none;
  }

  .hero,
  .comic-layout,
  .intro,
  .link-section,
  .feature-link-card,
  .about-band,
  .booking-band,
  .social-layout,
  .media-grid,
  .access-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual img {
    margin: 0;
    border-radius: var(--radius);
  }

  .service-grid,
  .flow-list,
  .faq-list,
  .feature-list,
  .credentials {
    grid-template-columns: 1fr;
  }

  .credentials li:last-child {
    grid-column: auto;
  }

  .service-card {
    min-height: auto;
  }

  .service-card p {
    min-height: auto;
  }

  .booking-info {
    position: static;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 10px;
  }

  .brand span:last-child {
    display: inline;
    font-size: 13px;
  }

  .header-social {
    gap: 6px;
  }

  .header-social .footer-social-link {
    width: 30px;
    height: 30px;
  }

  .header-social .app-icon {
    width: 17px;
    height: 17px;
  }

  h1 {
    font-size: 34px;
  }

  .hero-stats,
  .form-row {
    grid-template-columns: 1fr;
  }

  .about-photo {
    min-height: 320px;
  }

  .site-footer {
    flex-direction: column;
  }
}
