/* HAHALAND — Game Hub */

:root {
  --background: #0a0704;
  --foreground: #f5f0e6;
  --gold: #d4a853;
  --gold-bright: #ffd700;
  --gold-deep: #8b6914;
  --sand: #c4a574;
  --sand-dark: #6b4e2e;
  --glass: rgba(12, 10, 8, 0.55);
  --glass-border: rgba(212, 168, 83, 0.22);
  --font-display: "Cinzel", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  overflow-x: clip;
  max-width: 100%;
  -webkit-tap-highlight-color: transparent;
}

main {
  overflow-x: clip;
  max-width: 100%;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(212, 168, 83, 0.35); color: #fff; }

.gold-gradient-text {
  background: linear-gradient(135deg, #fff8e7 0%, #ffd700 40%, #d4a853 70%, #8b6914 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.section-padding { padding: 4.5rem 1.25rem; }
@media (min-width: 640px) { .section-padding { padding: 5.5rem 1.5rem; } }
@media (min-width: 768px) { .section-padding { padding: 6.5rem 3rem; } }
@media (min-width: 1024px) { .section-padding { padding: 7.5rem 4rem; } }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
}

.section-lead {
  margin: 0.85rem auto 0;
  max-width: 32rem;
  color: rgba(245, 240, 230, 0.6);
  font-size: 1.05rem;
  line-height: 1.65;
}

.container { max-width: 74rem; margin: 0 auto; }
.text-center { text-align: center; }
.mt-3 { margin-top: 0.75rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, #f5d76e 0%, #eab308 45%, #ca8a04 100%);
  color: #1a1205;
  box-shadow: 0 0 28px rgba(255, 215, 0, 0.28);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 42px rgba(255, 215, 0, 0.45);
}

.btn-secondary {
  background: rgba(10, 7, 4, 0.45);
  color: var(--foreground);
  border: 1px solid rgba(212, 168, 83, 0.45);
}
.btn-secondary:hover {
  border-color: rgba(212, 168, 83, 0.75);
  background: rgba(255, 255, 255, 0.04);
}

.btn-nav {
  padding: 0.5rem 1.1rem;
  font-size: 0.75rem;
  width: auto;
}

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

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem 1.25rem;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(10, 7, 4, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.7rem 1.25rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(212, 168, 83, 0.12);
}

.nav-inner {
  max-width: 74rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-bright);
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.35);
  flex-shrink: 0;
  padding-right: 0.15em;
}
@media (min-width: 640px) { .logo { font-size: 1.25rem; } }
.logo sup { font-size: 0.55rem; color: var(--gold); margin-left: 0.05em; }

.nav-links {
  display: none;
  list-style: none;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(245, 240, 230, 0.72);
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: var(--gold-bright); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.nav-actions .btn-nav { display: none; }
@media (min-width: 480px) { .nav-actions .btn-nav { display: inline-flex; } }

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.45rem;
  cursor: pointer;
  padding: 0.5rem;
}
@media (min-width: 768px) { .menu-toggle { display: none; } }
.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--foreground);
  transition: all 0.3s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }

.mobile-panel {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(100%, 20rem);
  background: rgba(10, 7, 4, 0.97);
  border-left: 1px solid rgba(212, 168, 83, 0.15);
  padding: 6rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}
.mobile-menu.open .mobile-panel { transform: translateX(0); }
.mobile-panel ul { list-style: none; margin: 1.5rem 0 2rem; }
.mobile-panel li a {
  display: block;
  padding: 0.9rem 0.75rem;
  font-size: 1.1rem;
  color: rgba(245, 240, 230, 0.85);
  border-radius: 0.5rem;
}
.mobile-panel .btn { width: 100%; margin-top: auto; }

/* ─── Hero Banner ─── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  animation: ken-burns 28s ease-in-out infinite alternate;
  opacity: 1;
}

@keyframes ken-burns {
  0% { transform: scale(1); }
  100% { transform: scale(1.06) translate(-0.5%, -0.5%); }
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-sun {
  position: absolute;
  left: 50%;
  bottom: 28%;
  width: min(42vw, 280px);
  height: min(42vw, 280px);
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, #ffe08a 0%, #e8a838 35%, rgba(180, 90, 20, 0.4) 65%, transparent 75%);
  filter: blur(2px);
  animation: sun-pulse 8s ease-in-out infinite;
  opacity: 0.85;
}

@keyframes sun-pulse {
  0%, 100% { opacity: 0.75; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.95; transform: translateX(-50%) scale(1.04); }
}

.hero-rays {
  position: absolute;
  inset: 0;
  background: conic-gradient(
    from 200deg at 50% 72%,
    transparent 0deg,
    rgba(255, 200, 80, 0.07) 12deg,
    transparent 24deg,
    rgba(255, 180, 60, 0.05) 40deg,
    transparent 55deg,
    rgba(255, 200, 80, 0.08) 70deg,
    transparent 90deg,
    rgba(255, 180, 60, 0.04) 110deg,
    transparent 140deg
  );
  animation: rays-drift 20s linear infinite;
  mask-image: linear-gradient(to top, transparent 10%, black 45%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, transparent 10%, black 45%, black 85%, transparent 100%);
}

@keyframes rays-drift {
  from { transform: rotate(0deg); }
  to { transform: rotate(8deg); }
}

.hero-dunes {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28%;
  background:
    radial-gradient(ellipse 120% 80% at 20% 100%, rgba(92, 61, 30, 0.55) 0%, transparent 55%),
    linear-gradient(to top, rgba(10, 7, 4, 0.95) 0%, transparent 100%);
}

.hero-sand-drift {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.08;
  pointer-events: none;
  animation: grain-shift 8s steps(6) infinite;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, transparent 30%, rgba(10, 7, 4, 0.5) 100%);
  pointer-events: none;
}

@keyframes grain-shift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-2%, 1%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 7, 4, 0.45) 0%,
    rgba(10, 7, 4, 0.15) 35%,
    rgba(10, 7, 4, 0.25) 55%,
    rgba(10, 7, 4, 0.92) 100%
  );
  pointer-events: none;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 25%, rgba(10, 7, 4, 0.55) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: min(52rem, calc(100% - 2rem));
  margin-inline: auto;
  padding: 6rem 1.5rem 5rem;
  overflow: visible;
  animation: hero-fade-in 1.1s ease-out 0.2s both;
}
@media (min-width: 768px) {
  .hero-content { padding: 7rem 2rem 5.5rem; }
}
@media (min-width: 1024px) {
  .hero-content { max-width: 58rem; padding: 7.5rem 2.5rem 6rem; }
}

.hero-content::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  width: min(110%, 42rem);
  height: min(78%, 30rem);
  background: radial-gradient(ellipse at center, rgba(10, 7, 4, 0.78) 0%, rgba(10, 7, 4, 0.4) 50%, transparent 72%);
  z-index: -1;
  pointer-events: none;
}

@keyframes hero-fade-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: rgba(212, 168, 83, 0.95);
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .hero-eyebrow { font-size: 0.8rem; letter-spacing: 0.35em; } }

.hero-title-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  overflow: visible;
  padding-inline: 0.5rem;
}

.hero-title {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 9vw, 6rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.08;
  padding: 0.08em 0.22em 0.08em 0.08em;
  margin: 0;
  max-width: 100%;
  overflow: visible;
  white-space: nowrap;
  text-shadow: none;
  filter: drop-shadow(0 0 28px rgba(255, 215, 0, 0.35));
  animation: title-glow 4s ease-in-out infinite;
}

@keyframes title-glow {
  0%, 100% { filter: drop-shadow(0 0 24px rgba(255, 215, 0, 0.3)) brightness(1); }
  50% { filter: drop-shadow(0 0 36px rgba(255, 215, 0, 0.45)) brightness(1.06); }
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.8vw, 1.7rem);
  font-weight: 600;
  margin-top: 1.15rem;
  letter-spacing: 0.03em;
  color: #f5f0e6;
}

.hero-sub {
  margin: 1rem auto 0;
  max-width: 30rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(245, 240, 230, 0.74);
}
@media (min-width: 768px) { .hero-sub { font-size: 1.1rem; max-width: 34rem; } }

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
  max-width: 18rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
    justify-content: center;
    max-width: none;
    gap: 1rem;
    margin-top: 2.25rem;
  }
}
.hero-cta .btn { width: 100%; }
@media (min-width: 640px) { .hero-cta .btn { width: auto; min-width: 11rem; } }

.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245, 240, 230, 0.45);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  animation: hint-fade 2s ease-in-out infinite;
}

@keyframes hint-fade {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.9; }
}

.scroll-mouse {
  width: 1.2rem;
  height: 1.7rem;
  border: 1px solid rgba(245, 240, 230, 0.3);
  border-radius: 9999px;
  padding: 0.25rem;
}
.scroll-mouse::after {
  content: "";
  display: block;
  width: 2px;
  height: 6px;
  margin: 0 auto;
  background: rgba(212, 168, 83, 0.75);
  border-radius: 9999px;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.4; }
}

/* Featured banner */
.featured-banner {
  position: relative;
  border-block: 1px solid rgba(212, 168, 83, 0.2);
  overflow: hidden;
  min-height: 14rem;
}

.featured-media {
  position: absolute;
  inset: 0;
}

.featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.45) saturate(1.1);
}

.featured-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10, 7, 4, 0.92) 0%, rgba(10, 7, 4, 0.55) 55%, rgba(10, 7, 4, 0.75) 100%);
  pointer-events: none;
}

.featured-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.06), transparent);
  animation: banner-sheen 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes banner-sheen {
  0%, 100% { transform: translateX(-30%); }
  50% { transform: translateX(30%); }
}

.featured-inner {
  position: relative;
  z-index: 2;
  max-width: 72rem;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .featured-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 3.25rem 3rem;
  }
}

.featured-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  margin-top: 0.5rem;
  line-height: 1.25;
}

.featured-text {
  margin-top: 0.65rem;
  max-width: 34rem;
  color: rgba(245, 240, 230, 0.62);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Mini games */
.minigames-section {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(80, 50, 18, 0.25) 0%, transparent 50%),
    var(--background);
}

.minigames-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.75rem;
}
@media (min-width: 640px) {
  .minigames-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
@media (min-width: 1100px) {
  .minigames-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
}

.game-tile {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(212, 168, 83, 0.16);
  border-radius: 0.85rem;
  overflow: hidden;
  background: rgba(16, 12, 8, 0.72);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.game-tile:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4), 0 0 0 1px color-mix(in srgb, var(--accent) 25%, transparent);
}

.game-tile-visual {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #1a1208;
}

.game-tile-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.45s ease;
}
.game-tile:hover .game-tile-visual img { transform: scale(1.04); }

/* Traffic Rush: show full gameplay frame */
.game-tile--traffic .game-tile-visual {
  aspect-ratio: 16 / 11;
  background: #0b1a2e;
}
.game-tile--traffic .game-tile-visual img {
  object-fit: cover;
  object-position: center 68%;
}
.game-tile--traffic .game-tile-visual::after {
  background: linear-gradient(to top, rgba(10, 7, 4, 0.4), transparent 40%);
}

.game-tile-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 7, 4, 0.55), transparent 45%);
  pointer-events: none;
}

.game-tile-body {
  padding: 1.15rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.game-tile-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent, var(--gold));
}

.game-tile-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 0.35rem;
}

.game-tile-body p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(245, 240, 230, 0.58);
  flex: 1;
}

.game-tile-cta {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
  transition: letter-spacing 0.25s;
}
.game-tile:hover .game-tile-cta { letter-spacing: 0.14em; }

/* About */
.about-section {
  border-top: 1px solid rgba(212, 168, 83, 0.1);
  background:
    radial-gradient(ellipse at 80% 50%, rgba(100, 70, 20, 0.12) 0%, transparent 45%),
    var(--background);
}

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
  }
}

.about-text {
  margin-top: 1.15rem;
  max-width: 32rem;
  color: rgba(245, 240, 230, 0.65);
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-cta { margin-top: 1.75rem; }

.about-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-points li {
  padding: 1.15rem 1.25rem;
  border-left: 2px solid var(--gold);
  background: rgba(20, 14, 8, 0.5);
  border-radius: 0 0.5rem 0.5rem 0;
}

.about-points strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold-bright);
  margin-bottom: 0.3rem;
}

.about-points span {
  font-size: 0.9rem;
  color: rgba(245, 240, 230, 0.6);
  line-height: 1.5;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.35);
  padding: 2.5rem 1.25rem;
}

.footer-inner {
  max-width: 74rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold-bright);
}

.footer-tagline {
  margin-top: 0.4rem;
  font-size: 0.75rem;
  color: rgba(245, 240, 230, 0.4);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: rgba(245, 240, 230, 0.55);
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--gold); }

/* Mobile polish */
@media (max-width: 767px) {
  .navbar {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .hero-content {
    max-width: 100%;
    padding: 5.5rem max(1rem, env(safe-area-inset-left)) 4.5rem max(1rem, env(safe-area-inset-right));
  }

  .hero-title-wrap {
    padding-inline: 0.25rem;
  }

  .hero-title {
    font-size: clamp(2.15rem, 11vw, 3rem);
    letter-spacing: 0.04em;
    padding: 0.06em 0.2em 0.06em 0.06em;
  }

  .hero-bg img {
    animation: ken-burns-mobile 28s ease-in-out infinite alternate;
  }

  @keyframes ken-burns-mobile {
    0% { transform: scale(1); }
    100% { transform: scale(1.04); }
  }
}
