:root {
  --bg-deep: #0a0908;
  --bg-elevated: #1a1714;
  --text: #fafaf9;
  --text-muted: #a8a29e;
  --accent: #e4bc6a;
  --accent-dim: #b8924a;
  --accent-soft: rgba(228, 188, 106, 0.14);
  --accent-glow: rgba(228, 188, 106, 0.22);
  --blue-glow: rgba(56, 109, 176, 0.12);
  --veil: linear-gradient(145deg, rgba(12, 10, 9, 0.65) 0%, rgba(12, 10, 9, 0.35) 45%, rgba(12, 10, 9, 0.85) 100%);
  --radius: 16px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --header-h: 4rem;
  --reveal-delay: 0s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal,
  .hero-cta,
  .scroll-hint span,
  .ambient__bloom,
  .hero-title {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    background-size: 100% auto !important;
  }
  .ambient__grain {
    opacity: 0 !important;
  }

  .portrait-card:hover .portrait-frame,
  .portrait-card:hover .portrait-frame img,
  .mosaic-item:hover,
  .mosaic-item:hover img,
  .split-media:hover,
  .split-media:hover img,
  .ielts-shots figure:hover,
  .score-list li:hover,
  .video-card:hover video {
    transform: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(ellipse 100% 80% at 50% -30%, rgba(228, 188, 106, 0.09), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 40%, var(--blue-glow), transparent 50%),
    radial-gradient(ellipse 60% 45% at 0% 80%, rgba(120, 80, 40, 0.08), transparent 50%),
    var(--bg-deep);
}

::selection {
  background: rgba(228, 188, 106, 0.35);
  color: #fff;
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient__bloom {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.55;
  will-change: transform;
}

.ambient__bloom--a {
  width: min(55vw, 520px);
  height: min(55vw, 520px);
  top: -12%;
  right: -8%;
  background: radial-gradient(circle, rgba(228, 188, 106, 0.35) 0%, transparent 70%);
  animation: drift-a 22s var(--ease-out) infinite;
}

.ambient__bloom--b {
  width: min(70vw, 640px);
  height: min(70vw, 640px);
  bottom: -25%;
  left: -20%;
  background: radial-gradient(circle, rgba(45, 90, 140, 0.35) 0%, transparent 68%);
  animation: drift-b 28s var(--ease-out) infinite;
}

.ambient__bloom--c {
  width: min(40vw, 380px);
  height: min(40vw, 380px);
  top: 42%;
  left: 35%;
  background: radial-gradient(circle, rgba(180, 120, 70, 0.2) 0%, transparent 65%);
  animation: drift-c 18s var(--ease-out) infinite;
}

.ambient__grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

@keyframes drift-a {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-4%, 6%) scale(1.06);
  }
}

@keyframes drift-b {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(5%, -4%) scale(1.05);
  }
}

@keyframes drift-c {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-6%, -5%);
  }
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #1c1917;
  font-weight: 600;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  z-index: 50;
  background: linear-gradient(to bottom, rgba(10, 9, 8, 0.78), rgba(10, 9, 8, 0.35), transparent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px) saturate(1.25);
  -webkit-backdrop-filter: blur(16px) saturate(1.25);
}

.logo-mark {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  background: linear-gradient(115deg, var(--accent) 0%, #fff8e7 45%, var(--accent-dim) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-nav {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  color: rgba(250, 250, 249, 0.88);
  font-weight: 500;
  transition: color 0.3s var(--ease-out);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(228, 188, 106, 0.2));
  transition: width 0.35s var(--ease-out);
}

.site-nav a:hover {
  color: var(--text);
  text-decoration: none;
}

.site-nav a:hover::after {
  width: 100%;
}

.site-nav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
  border-radius: 2px;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  /* Matches hero PNG (blue wall) so letterboxing from object-fit: contain looks intentional */
  background: linear-gradient(125deg, #0f172a 0%, #1e3a5f 42%, #0c1929 100%);
  padding: clamp(0.5rem, 2.5vw, 1.75rem);
  padding-top: max(clamp(0.5rem, 2.5vw, 1.75rem), env(safe-area-inset-top, 0px));
  padding-bottom: max(clamp(0.5rem, 2.5vw, 1.75rem), env(safe-area-inset-bottom, 0px));
}

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

.hero-veil {
  position: absolute;
  inset: 0;
  /* Lighter than global veil so text + IELTS panel inside the hero PNG stay readable */
  background: linear-gradient(
    145deg,
    rgba(12, 10, 9, 0.42) 0%,
    rgba(12, 10, 9, 0.18) 38%,
    rgba(12, 10, 9, 0.55) 72%,
    rgba(12, 10, 9, 0.72) 100%
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: calc(var(--header-h) + 2rem) 1.5rem 4rem;
  max-width: 52rem;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
  animation: fadeUp 1s ease 0.1s both;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.5rem, 12vw, 7.5rem);
  line-height: 0.95;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
  background: linear-gradient(
    115deg,
    #ffffff 0%,
    #fff7d6 28%,
    var(--accent) 52%,
    #fde68a 72%,
    #ffffff 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 48px rgba(228, 188, 106, 0.18));
  animation: fadeUp 1s ease 0.25s both, title-shimmer 10s ease-in-out 1s infinite;
}

@keyframes title-shimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  margin: 0 0 0.35rem;
  font-weight: 300;
  animation: fadeUp 1s ease 0.4s both;
}

.hero-tag {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 2rem;
  animation: fadeUp 1s ease 0.5s both;
}

.hero-cta {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  color: var(--text);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 0 0 1px rgba(228, 188, 106, 0.12),
    0 12px 40px rgba(0, 0, 0, 0.35),
    0 0 60px var(--accent-glow);
  transition:
    background 0.4s var(--ease-out),
    border-color 0.4s var(--ease-out),
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out);
  animation: fadeUp 1s ease 0.6s both;
}

.hero-cta:hover {
  background: linear-gradient(145deg, rgba(228, 188, 106, 0.2), rgba(255, 255, 255, 0.06));
  border-color: rgba(228, 188, 106, 0.55);
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px rgba(228, 188, 106, 0.25),
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 80px var(--accent-glow);
}

.hero-cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.hero-cta:active {
  transform: scale(0.98);
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0.6;
}

.scroll-hint span {
  display: block;
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  position: relative;
  animation: float 2.5s ease-in-out infinite;
}

.scroll-hint span::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollDot 2.5s ease-in-out infinite;
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

@keyframes scrollDot {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

.section {
  padding: clamp(4rem, 10vw, 7rem) 0;
  position: relative;
}

.section:not(.hero) {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.section:nth-of-type(even):not(.hero) {
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(228, 188, 106, 0.07), transparent 58%),
    radial-gradient(ellipse 50% 40% at 90% 20%, var(--blue-glow), transparent 45%),
    var(--bg-deep);
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.container.narrow {
  width: min(720px, 90vw);
}

.text-center {
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  margin: 0 0 1rem;
  line-height: 1.15;
}

.section:not(.hero) .section-title::before {
  content: "";
  display: block;
  width: 3rem;
  height: 3px;
  margin-bottom: 1.1rem;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(228, 188, 106, 0.15), transparent);
}

.text-center .section-title::before {
  margin-left: auto;
  margin-right: auto;
}

.section-head {
  margin-bottom: clamp(2rem, 5vw, 3rem);
  max-width: 40rem;
}

.section-deck {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0;
}

.lead {
  font-size: 1.2rem;
  color: #e7e5e4;
}

.section-story p {
  color: var(--text-muted);
}

.section-story p + p {
  margin-top: 1rem;
}

.portrait-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}

.portrait-card figcaption {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.portrait-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(228, 188, 106, 0.06);
  transition:
    transform 0.55s var(--ease-out),
    box-shadow 0.55s var(--ease-out),
    border-color 0.45s var(--ease-out);
}

.portrait-card:hover .portrait-frame {
  transform: translateY(-8px);
  border-color: rgba(228, 188, 106, 0.28);
  box-shadow:
    0 36px 72px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(228, 188, 106, 0.2),
    0 0 50px rgba(228, 188, 106, 0.08);
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.65s var(--ease-out);
}

.portrait-card:hover .portrait-frame img {
  transform: scale(1.04);
}

.section-ielts {
  background:
    radial-gradient(ellipse 70% 50% at 20% 80%, rgba(228, 188, 106, 0.06), transparent 50%),
    var(--bg-elevated);
}

.ielts-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .ielts-layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
}

.ielts-shots {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ielts-shots figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out);
}

.ielts-shots figure:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.45);
}

.ielts-shots img {
  width: 100%;
  object-fit: cover;
}

.ielts-panel {
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(228, 188, 106, 0.14), rgba(22, 20, 18, 0.72));
  border: 1px solid rgba(228, 188, 106, 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.ielts-intro {
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  color: #e7e5e4;
}

.score-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.score-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 1rem;
  background: rgba(0, 0, 0, 0.28);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    border-color 0.3s var(--ease-out),
    background 0.3s var(--ease-out),
    transform 0.3s var(--ease-out);
}

.score-list li:hover {
  border-color: rgba(228, 188, 106, 0.22);
  background: rgba(228, 188, 106, 0.06);
  transform: translateX(4px);
}

.score-list span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.score-list strong {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--accent);
}

.ielts-footnote {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 880px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .split.reverse .split-media {
    order: -1;
  }
}

.split-text p {
  color: var(--text-muted);
  margin: 0;
}

.split-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(228, 188, 106, 0.05);
  transition:
    transform 0.5s var(--ease-out),
    box-shadow 0.5s var(--ease-out);
}

.split-media:hover {
  transform: scale(1.015);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(228, 188, 106, 0.12);
}

.split-media img {
  width: 100%;
  object-fit: cover;
  min-height: 280px;
  transition: transform 0.65s var(--ease-out);
}

.split-media:hover img {
  transform: scale(1.03);
}

.section-travel {
  overflow-x: clip;
}

.travel-spotlight {
  width: 100vw;
  max-width: 100%;
  margin-left: calc(50% - 50vw);
  margin-top: clamp(0.35rem, 1.5vw, 1rem);
  margin-bottom: clamp(1.75rem, 4.5vw, 3rem);
}

.travel-spotlight__frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-top: 1px solid rgba(228, 188, 106, 0.22);
  border-bottom: 1px solid rgba(228, 188, 106, 0.18);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.travel-spotlight__frame img {
  width: 100%;
  height: auto;
  max-height: min(88vh, 920px);
  min-height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.travel-spotlight__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(1.1rem, 3.5vw, 2.25rem);
  padding-bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  background: linear-gradient(to top, rgba(8, 7, 6, 0.94) 0%, rgba(8, 7, 6, 0.45) 52%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  text-align: left;
}

@media (min-width: 720px) {
  .travel-spotlight__caption {
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    gap: clamp(1rem, 3vw, 2rem);
  }
}

.travel-spotlight__label {
  flex-shrink: 0;
  font-size: 0.65rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.travel-spotlight__quote {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.6vw, 1.55rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(250, 250, 249, 0.96);
  line-height: 1.38;
  max-width: 38rem;
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(120px, auto);
  gap: 0.75rem;
}

@media (min-width: 700px) {
  .mosaic {
    grid-auto-rows: minmax(160px, auto);
    gap: 1rem;
  }
}

.mosaic-item {
  position: relative;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out),
    border-color 0.45s var(--ease-out);
}

.mosaic-item:hover {
  transform: translateY(-4px);
  border-color: rgba(228, 188, 106, 0.22);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(228, 188, 106, 0.06);
  z-index: 1;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease-out);
}

.mosaic-item:hover img {
  transform: scale(1.06);
}

.mosaic-item.wide {
  grid-column: span 6;
}

@media (min-width: 700px) {
  .mosaic-item.wide {
    grid-column: span 4;
  }
  .mosaic-item:not(.wide):not(.tall) {
    grid-column: span 2;
  }
  .mosaic-item.tall {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.video-card {
  margin: 0;
}

.video-card video {
  width: 100%;
  border-radius: var(--radius);
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  transition:
    box-shadow 0.4s var(--ease-out),
    border-color 0.4s var(--ease-out);
}

.video-card:hover video {
  border-color: rgba(228, 188, 106, 0.3);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.5),
    0 0 50px rgba(228, 188, 106, 0.08);
}

.video-card figcaption {
  margin-top: 0.65rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.section-finale {
  position: relative;
  overflow: hidden;
}

.section-finale::before {
  content: "";
  position: absolute;
  width: min(90vw, 520px);
  height: min(90vw, 520px);
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(228, 188, 106, 0.12) 0%, transparent 65%);
  pointer-events: none;
  filter: blur(40px);
}

.section-finale .container {
  position: relative;
  z-index: 1;
}

.section-finale .lead {
  color: var(--text-muted);
}

.finale-badge {
  margin-top: 2rem;
  display: inline-block;
  padding: 0.65rem 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(228, 188, 106, 0.28);
  border-radius: 999px;
  background: rgba(228, 188, 106, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, rgba(228, 188, 106, 0.25), transparent) 1;
  background: linear-gradient(180deg, rgba(228, 188, 106, 0.03), transparent 40%), #080706;
}

.footer-inner p {
  margin: 0.35rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-note code {
  font-size: 0.8em;
  padding: 0.15rem 0.4rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.85s var(--ease-out) var(--reveal-delay),
    transform 0.85s var(--ease-out) var(--reveal-delay);
}

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

/* -------------------------------------------------------------------------- */
/* Phone & small tablets                                                       */
/* -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  :root {
    --header-h: 3.5rem;
  }

  body {
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .site-header {
    height: auto;
    min-height: var(--header-h);
    padding-top: max(0.35rem, env(safe-area-inset-top, 0px));
    padding-bottom: 0.45rem;
    padding-left: max(0.85rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.85rem, env(safe-area-inset-right, 0px));
  }

  .logo-mark {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    line-height: 1.3;
    max-width: 42%;
  }

  .site-nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.85rem;
    justify-content: flex-end;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: 58%;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    padding: 0.2rem 0;
    mask-image: linear-gradient(to right, transparent 0, #000 8px, #000 calc(100% - 12px), transparent 100%);
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 0.35rem 0;
    touch-action: manipulation;
    color: rgba(255, 255, 255, 0.94);
    font-weight: 600;
    letter-spacing: 0.07em;
    text-shadow:
      0 0 12px rgba(0, 0, 0, 0.65),
      0 1px 2px rgba(0, 0, 0, 0.5);
  }

  .site-nav a:hover {
    color: #fff;
  }

  /* Hero: full PNG visible (natural height), text block below — no crop on narrow screens */
  .hero {
    display: flex;
    flex-direction: column;
    min-height: 100svh;
    min-height: 100dvh;
    overflow-x: clip;
  }

  .hero-media {
    position: relative;
    inset: unset;
    width: 100%;
    flex: 0 0 auto;
    /* Clear fixed header + notch; real header height can vary with font wrap */
    padding: max(4.85rem, calc(env(safe-area-inset-top, 0px) + 3.85rem)) 0.85rem 0.5rem;
    padding-bottom: max(0.5rem, env(safe-area-inset-bottom, 0px));
  }

  .hero-veil {
    display: none;
  }

  .hero-img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: unset;
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  }

  .hero-inner {
    position: relative;
    z-index: 2;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.85rem 1.1rem 1.25rem;
    max-width: none;
    margin-top: 0.15rem;
  }

  .hero-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.16em;
    line-height: 1.4;
    padding: 0 0.25rem;
  }

  .hero-title {
    font-size: clamp(2.4rem, 11vw, 3.4rem);
    line-height: 1;
  }

  .hero-sub {
    font-size: 0.95rem;
    line-height: 1.45;
    padding: 0 0.25rem;
  }

  .hero-tag {
    font-size: 0.8rem;
    line-height: 1.45;
    margin-bottom: 1.25rem;
  }

  .hero-cta {
    min-height: 48px;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    padding: 0.85rem 1.75rem;
    touch-action: manipulation;
  }

  .scroll-hint {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: 0.15rem auto 0.75rem;
    padding-bottom: max(0.5rem, env(safe-area-inset-bottom, 0px));
  }

  .section {
    padding: clamp(2.75rem, 8vw, 4rem) 0;
  }

  .section-title {
    font-size: clamp(1.65rem, 6.5vw, 2.25rem);
  }

  .section-deck {
    font-size: 0.98rem;
  }

  .lead {
    font-size: 1.05rem;
    line-height: 1.6;
  }

  .container,
  .container.narrow {
    width: min(1120px, 91vw);
  }

  .portrait-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .score-list strong {
    font-size: 1.45rem;
  }

  .mosaic {
    grid-auto-rows: minmax(100px, auto);
    gap: 0.55rem;
  }

  .travel-spotlight {
    margin-bottom: clamp(1.35rem, 4vw, 2rem);
  }

  .travel-spotlight__frame img {
    max-height: min(68vh, 560px);
  }

  .travel-spotlight__quote {
    font-size: 1rem;
  }

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

  .finale-badge {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    line-height: 1.5;
  }
}

