:root {
  --relink-blue: #4a82a5;
  --relink-blue-soft: #6e9bb7;
  --relink-blue-gray: #7293a9;
  --relink-ice: #e1f4f9;
  --relink-deep: #274a5f;
  --relink-text: #172033;
  --relink-muted: #667384;
  --relink-white: #ffffff;
  --relink-dragon-red: #a63a32;
  --relink-gold: #d6aa58;
  --paper: #fffaf0;
  --sky: #dff3ff;
  --navy: #071523;
  --shadow: 0 18px 50px rgba(39, 74, 95, 0.18);
  --heading: "Cinzel", Georgia, serif;
  --cn-serif: Georgia, "Times New Roman", "Songti SC", serif;
  --body: Georgia, "Times New Roman", "Songti SC", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--relink-text);
  font-family: var(--body);
  background:
    radial-gradient(circle at 12% 6%, rgba(255, 255, 255, 0.95), transparent 26rem),
    linear-gradient(180deg, #eef9ff 0%, #fffaf0 34%, #f4f0e5 100%);
  overflow-x: hidden;
}

body.modal-open,
body.menu-open {
  overflow: hidden;
}

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

button,
a {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  width: 100%;
  padding: 24px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 0.45s ease, color 0.45s ease, box-shadow 0.45s ease, padding 0.45s ease;
}

.site-header.is-scrolled {
  padding-block: 14px;
  color: var(--relink-deep);
  background: rgba(255, 250, 240, 0.86);
  box-shadow: 0 8px 26px rgba(39, 74, 95, 0.15);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-grid;
  line-height: 0.9;
  font-family: var(--heading);
  letter-spacing: 0.16em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}

.site-header.is-scrolled .brand {
  text-shadow: none;
}

.brand span {
  font-size: 12px;
}

.brand strong {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(16px, 2vw, 32px);
  font-family: var(--heading);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  opacity: 0.92;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  content: "";
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

.line-button,
.ornate-button,
.ghost-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  color: inherit;
  font-family: var(--heading);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
}

.line-button {
  border: 1px solid currentColor;
}

.ornate-button {
  color: #fff;
  background: linear-gradient(135deg, var(--relink-blue) 0%, #1f5f9c 100%);
  box-shadow: 0 12px 28px rgba(47, 142, 219, 0.26);
}

.ghost-button {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
}

.line-button::before,
.line-button::after,
.ornate-button::before,
.ornate-button::after,
.ghost-button::before,
.ghost-button::after {
  position: absolute;
  width: 10px;
  height: 10px;
  border-color: var(--relink-gold);
  content: "";
}

.line-button::before,
.ornate-button::before,
.ghost-button::before {
  top: 4px;
  left: 4px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.line-button::after,
.ornate-button::after,
.ghost-button::after {
  right: 4px;
  bottom: 4px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.line-button:hover,
.ornate-button:hover,
.ghost-button:hover {
  opacity: 0.78;
}

.menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 32px;
  color: inherit;
  background: transparent;
}

.menu-toggle span {
  position: absolute;
  right: 0;
  width: 34px;
  height: 2px;
  background: currentColor;
  transition: transform 0.35s ease, top 0.35s ease;
}

.menu-toggle span:first-child {
  top: 8px;
}

.menu-toggle span:last-child {
  top: 22px;
  width: 24px;
}

.menu-open .menu-toggle span:first-child {
  top: 16px;
  transform: rotate(42deg);
}

.menu-open .menu-toggle span:last-child {
  top: 16px;
  width: 34px;
  transform: rotate(-42deg);
}

.nav-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 40;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  width: min(420px, 76vw);
  padding: 84px 48px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(39, 74, 95, 0.95), rgba(7, 21, 35, 0.96)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 16px);
  box-shadow: -18px 0 50px rgba(7, 21, 35, 0.28);
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.5, 0, 0, 1);
}

.menu-open .nav-drawer {
  transform: translateX(0);
}

.nav-drawer a {
  font-family: var(--heading);
  font-size: clamp(26px, 5vw, 44px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 130px clamp(20px, 6vw, 88px) 38px;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: clamp(28px, 5vh, 56px);
  align-items: center;
  overflow: hidden;
  color: #fff;
}

section {
  scroll-margin-top: 86px;
}

.hero-video-wrap,
.hero-video,
.hero-shade,
.hero-clouds {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.03);
}

.hero-video-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 21, 35, 0.74) 0%, rgba(16, 36, 58, 0.36) 42%, rgba(255, 255, 255, 0.08) 100%);
  content: "";
}

.hero-shade {
  background:
    radial-gradient(circle at 62% 18%, rgba(242, 208, 122, 0.28), transparent 30rem),
    linear-gradient(180deg, rgba(7, 21, 35, 0.15) 0%, rgba(7, 21, 35, 0.16) 58%, rgba(7, 21, 35, 0.78) 100%);
  pointer-events: none;
}

.hero-clouds {
  opacity: 0.44;
  background:
    radial-gradient(ellipse at 18% 90%, rgba(255, 255, 255, 0.72) 0 8%, transparent 24%),
    radial-gradient(ellipse at 58% 102%, rgba(255, 255, 255, 0.82) 0 11%, transparent 31%),
    radial-gradient(ellipse at 82% 94%, rgba(255, 255, 255, 0.68) 0 8%, transparent 25%);
  animation: cloud-drift 18s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--relink-gold);
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(52px, 8vw, 126px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 26px rgba(7, 21, 35, 0.72);
}

.hero h1 span {
  display: block;
  font-size: 0.62em;
}

.hero-tagline {
  margin: 28px 0 12px;
  color: #f8fbff;
  font-family: var(--cn-serif);
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.25;
  text-shadow: 0 3px 18px rgba(7, 21, 35, 0.75);
}

.hero-copy {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.85;
  text-shadow: 0 2px 12px rgba(7, 21, 35, 0.7);
}

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

.hero-meta {
  position: absolute;
  right: clamp(20px, 4vw, 56px);
  bottom: 36px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 10px 18px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--heading);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-meta b {
  display: block;
  color: var(--relink-gold);
  font-size: 10px;
}

.hero-reel {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 10px;
  width: min(760px, 100%);
  scroll-margin-top: 110px;
}

.reel-dot {
  min-height: 64px;
  padding: 13px 16px;
  color: rgba(255, 255, 255, 0.78);
  text-align: left;
  font-family: var(--heading);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(7, 21, 35, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(12px);
  scroll-margin-top: 110px;
}

.reel-dot span {
  display: block;
  color: var(--relink-gold);
}

.reel-dot.is-active {
  color: #fff;
  border-color: var(--relink-gold);
  background: rgba(39, 74, 95, 0.62);
}

.section {
  position: relative;
  padding: clamp(80px, 10vw, 142px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 980px;
  margin: 0 auto 54px;
  text-align: center;
}

h2,
h3 {
  margin: 0;
  font-family: var(--cn-serif);
  font-weight: 700;
}

h2 {
  color: var(--relink-deep);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.08;
}

h3 {
  color: var(--relink-deep);
  font-size: clamp(24px, 2vw, 34px);
}

.section-heading p:not(.section-label),
.story-panel p,
.titan-copy > p,
.final-content p:not(.section-label) {
  color: var(--relink-muted);
  font-size: 16px;
  line-height: 1.9;
}

.section-heading::after,
.story-panel::before,
.titan-profile::before {
  display: block;
  width: 140px;
  height: 1px;
  margin: 24px auto 0;
  background: linear-gradient(90deg, transparent, var(--relink-gold), transparent);
  content: "";
}

.scenic-section {
  position: relative;
  min-height: 760px;
  padding: clamp(90px, 12vw, 150px) 20px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.scenic-section > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scenic-section::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 21, 35, 0.12), rgba(255, 250, 240, 0.26)), radial-gradient(circle at 50% 100%, rgba(255, 250, 240, 0.9), transparent 38rem);
  content: "";
}

.story-panel {
  position: relative;
  z-index: 2;
  width: min(900px, 92vw);
  padding: clamp(30px, 5vw, 62px);
  text-align: center;
  background: rgba(255, 250, 240, 0.9);
  border: 1px solid rgba(216, 167, 58, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.story-panel blockquote {
  margin: 26px 0 0;
  color: var(--relink-deep);
  font-family: var(--cn-serif);
  font-size: 20px;
  line-height: 1.55;
}

.character-card blockquote {
  margin: 16px 0 0;
  color: var(--relink-deep);
  font-family: var(--cn-serif);
  font-size: 16px;
  line-height: 1.5;
}

.world {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(223, 243, 255, 0.46)),
    repeating-linear-gradient(118deg, rgba(74, 130, 165, 0.08) 0 1px, transparent 1px 30px);
}

.location-grid,
.feature-grid,
.character-grid {
  display: grid;
  gap: 24px;
  width: min(1240px, 100%);
  margin: 0 auto;
}

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

.location-card,
.feature-card,
.character-card,
.titan-profile {
  position: relative;
  background: rgba(255, 250, 240, 0.9);
  border: 1px solid rgba(216, 167, 58, 0.45);
  box-shadow: var(--shadow);
}

.location-card,
.feature-card {
  min-height: 270px;
  padding: 30px;
}

.location-card::before,
.feature-card::before,
.character-card::before {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(74, 130, 165, 0.22);
  pointer-events: none;
  content: "";
}

.location-card span,
.character-card span,
.feature-card span {
  color: var(--relink-blue);
  font-family: var(--heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.location-card h3,
.feature-card h3 {
  margin-top: 38px;
}

.location-card p,
.feature-card p,
.character-card p,
.titan-profile p {
  color: var(--relink-muted);
  line-height: 1.8;
}

.characters {
  background: linear-gradient(180deg, #fffaf0 0%, #f5fbff 55%, #fffaf0 100%);
}

.character-stage {
  width: min(1200px, 100%);
  margin: 0 auto 22px;
  padding: 16px;
  background: rgba(7, 21, 35, 0.86);
  border: 1px solid rgba(216, 167, 58, 0.5);
  box-shadow: var(--shadow);
}

.character-stage img {
  width: 100%;
  max-height: 270px;
  object-fit: cover;
  object-position: center;
}

.character-grid {
  grid-template-columns: repeat(2, 1fr);
  width: min(980px, 100%);
}

.character-card {
  overflow: hidden;
  padding: 24px 26px;
}

.character-card h3 {
  margin-top: 10px;
}

.character-card .role {
  color: var(--relink-deep);
  font-weight: 700;
}

.character-card .weapon {
  margin-bottom: 0;
  color: var(--relink-dragon-red);
  font-size: 14px;
}

.gameplay {
  background:
    radial-gradient(circle at 50% 0%, rgba(223, 243, 255, 0.8), transparent 34rem),
    linear-gradient(180deg, #fffaf0, #eef9ff);
}

.battlefield {
  width: min(1240px, 100%);
  margin: 0 auto 28px;
  background: var(--paper);
  border: 1px solid rgba(216, 167, 58, 0.52);
  box-shadow: var(--shadow);
}

.battlefield img {
  width: 100%;
  max-height: 590px;
  object-fit: cover;
}

.battlefield figcaption {
  padding: 18px 24px;
  color: var(--relink-muted);
  font-size: 14px;
  line-height: 1.6;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #fff;
  background: var(--relink-deep);
  border: 1px solid var(--relink-gold);
}

.feature-card h3 {
  margin-top: 26px;
  font-size: 24px;
}

.titans {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(7, 21, 35, 0.96), rgba(39, 74, 95, 0.88)),
    radial-gradient(circle at 15% 12%, rgba(216, 167, 58, 0.24), transparent 24rem);
}

.titan-media {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(216, 167, 58, 0.56);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
}

.titan-media video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.titan-copy h2,
.titans h3 {
  color: #fff;
}

.titan-copy > p,
.titan-profile p,
.titan-profile dd {
  color: rgba(255, 255, 255, 0.78);
}

.titan-profile {
  margin-top: 30px;
  padding: 30px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(216, 167, 58, 0.5);
}

.titan-profile::before {
  margin: 0 0 24px;
}

.titan-profile dl {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.titan-profile div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(216, 167, 58, 0.22);
}

.titan-profile dt {
  color: var(--relink-gold);
  font-family: var(--heading);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.titan-profile dd {
  margin: 0;
}

.titan-profile strong {
  color: #fff;
  font-family: var(--cn-serif);
  font-size: 18px;
  line-height: 1.5;
}

.trailer {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(7, 21, 35, 0.98), rgba(16, 36, 58, 0.96)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 18px);
}

.trailer .section-heading h2,
.trailer .section-heading p:not(.section-label) {
  color: #fff;
}

.trailer-frame {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(216, 167, 58, 0.62);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.36);
}

.trailer-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.media {
  background: linear-gradient(180deg, #eef9ff, #fffaf0);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  grid-auto-rows: 260px;
  gap: 18px;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  color: #fff;
  text-align: left;
  background: var(--navy);
  border: 1px solid rgba(216, 167, 58, 0.5);
  box-shadow: var(--shadow);
}

.gallery-large {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 21, 35, 0.78));
  content: "";
}

.gallery-item span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  font-size: 14px;
  line-height: 1.55;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.final-cta {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
  padding: 90px 20px;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.final-cta > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 21, 35, 0.38), rgba(7, 21, 35, 0.82));
  content: "";
}

.final-content {
  position: relative;
  z-index: 2;
  width: min(820px, 92vw);
}

.final-content h2 {
  color: #fff;
}

.final-content .hero-actions {
  justify-content: center;
}

.site-footer {
  padding: 42px 20px 54px;
  color: rgba(255, 255, 255, 0.74);
  text-align: center;
  background: var(--navy);
}

.site-footer strong {
  display: block;
  color: #fff;
  font-family: var(--heading);
  letter-spacing: 0.12em;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin: 18px 0;
  color: var(--relink-gold);
  font-family: var(--heading);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer p {
  max-width: 820px;
  margin: 0 auto;
  font-size: 13px;
  line-height: 1.7;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 60px clamp(16px, 4vw, 54px);
  background: rgba(0, 0, 0, 0.82);
}

.modal.is-open {
  display: grid;
}

.modal-body {
  width: min(1100px, 100%);
  max-height: 88vh;
}

.modal-body video,
.modal-body img {
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border: 1px solid rgba(216, 167, 58, 0.62);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: transparent;
}

.modal-close::before,
.modal-close::after {
  position: absolute;
  top: 21px;
  left: 6px;
  width: 32px;
  height: 2px;
  background: #fff;
  content: "";
}

.modal-close::before {
  transform: rotate(45deg);
}

.modal-close::after {
  transform: rotate(-45deg);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

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

@keyframes cloud-drift {
  from {
    transform: translate3d(-2%, 0, 0) scale(1);
  }
  to {
    transform: translate3d(2%, -1%, 0) scale(1.03);
  }
}

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

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

  .menu-toggle {
    display: block;
  }

  .location-grid,
  .feature-grid,
  .character-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .titans {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .brand strong {
    font-size: 20px;
  }

  .hero {
    min-height: max(100svh, 900px);
    padding: 124px 20px 28px;
    align-items: start;
  }

  .hero h1 {
    font-size: clamp(40px, 13.6vw, 66px);
  }

  .hero-tagline {
    margin-top: 22px;
    font-size: clamp(24px, 7vw, 42px);
  }

  .hero-copy {
    font-size: 14px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-meta {
    display: none;
  }

  .hero-reel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .reel-dot {
    min-width: 0;
    min-height: 74px;
    padding: 11px 10px;
    letter-spacing: 0.08em;
  }

  .line-button,
  .ornate-button,
  .ghost-button {
    min-height: 50px;
  }

  .section {
    padding: 76px 20px;
  }

  .section-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .section-heading::after {
    margin-left: 0;
  }

  .scenic-section {
    min-height: 720px;
  }

  .story-panel {
    text-align: left;
  }

  .location-grid,
  .feature-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .compact-roster .character-card {
    padding: 18px;
  }

  .compact-roster .character-card h3 {
    font-size: 24px;
  }

  .compact-roster .character-card blockquote {
    font-size: 14px;
  }

  .gallery-grid {
    grid-auto-rows: 260px;
  }

  .gallery-large {
    grid-row: auto;
  }

  .titan-profile div {
    grid-template-columns: 1fr;
  }

  .final-cta {
    min-height: 520px;
  }
}

@media (max-width: 430px) {
  .compact-roster {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
