/* ─── TOKENS ─────────────────────────────────── */
:root {
  --cream: #f5f0e8;
  --clay: #ff6b35;
  --yellow: #d4a84b;
  --green: #8baf72;
  --pink: #b05c52;
  --lavender: #9b7e6e;
  --ink: #1a1a1a;
  --mud: #7a5c44;
}

/* ─── RESET ──────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--cream);
  color: var(--ink);
  font-family: "Space Mono", monospace;
  cursor: crosshair;
  overflow-x: hidden;
}

/* ─── GRAIN MIXIN ────────────────────────────── */
.grainy::after {
  content: "";
  position: absolute;
  inset: 0;
  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)' opacity='0.07'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 2;
}

/* ─── NAV (FINAL FIXED VERSION) ──────────────── */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  display: flex;
  align-items: center;

  padding: 1rem 2rem;
  background: var(--cream);
  border-bottom: 3px solid var(--ink);

  z-index: 1000;
}

/* LOGO (LEFT) */
.nav-logo {
  font-family: "Unbounded", sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.nav-logo span {
  color: var(--clay);
}

/* LINKS (NEXT TO LOGO) */
.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--clay);
}

/* REMOVE OLD BUTTON */
.nav-cta {
  display: none !important;
}

/* HAMBURGER (RIGHT) */
.menu-toggle {
  margin-left: auto;
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.line {
  fill: none;
  stroke: var(--ink);
  stroke-width: 6;
  transition: 0.35s ease;
}

.menu-toggle.active .top {
  transform: translateY(20px) rotate(45deg);
}
.menu-toggle.active .middle {
  opacity: 0;
}
.menu-toggle.active .bottom {
  transform: translateY(-20px) rotate(-45deg);
}

/* MOBILE */
@media (max-width: 768px) {
  .nav-links {
    display: none !important;
  }

  .menu-toggle {
    display: block !important;
  }

  nav {
    padding: 1rem 1.2rem;
  }

}
/* ─── HERO ───────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 2.5rem 4rem;
  background: var(--cream);
  border-bottom: 4px solid var(--ink);
}

/* parallax image strips */
.parallax-strip {
  position: absolute;
  top: -10%;
  left: 0;
  right: 0;
  height: 120%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  pointer-events: none;
}
.parallax-col {
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.parallax-col img {
  width: 100%;
  height: 130%;
  object-fit: cover;
  display: block;
  filter: saturate(0.85) contrast(1.05);
  transition: filter 0.3s;
}
.parallax-col:nth-child(odd) {
  margin-top: -5%;
}
.parallax-col:nth-child(even) {
  margin-top: 5%;
}

/* dark gradient over parallax */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(245, 240, 232, 0.05) 0%,
    rgba(245, 240, 232, 0.55) 50%,
    rgba(245, 240, 232, 0.95) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
}
.hero-chip {
  display: inline-block;
  border: 2px solid var(--ink);
  padding: 3px 12px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  background: var(--yellow);
}
.hero h1 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(3.5rem, 10vw, 9rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.hero h1 .fill {
  color: var(--ink);
  display: block;
}
.hero h1 .stroke {
  display: block;
  -webkit-text-stroke: 3px var(--ink);
  color: transparent;
}
.hero h1 .clay-fill {
  display: block;
  color: var(--clay);
}

.hero-sub {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  max-width: 460px;
  line-height: 1.7;
  opacity: 0.75;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--clay);
  color: #fff;
  border: 3px solid var(--ink);
  padding: 0.8rem 2rem;
  font-family: "Unbounded", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: crosshair;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 0.12s, box-shadow 0.12s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--ink);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 3px solid var(--ink);
  padding: 0.8rem 2rem;
  font-family: "Unbounded", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: crosshair;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 0.12s, box-shadow 0.12s, background 0.12s;
  text-decoration: none;
  display: inline-block;
}
.btn-ghost:hover {
  background: var(--yellow);
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--ink);
}

/* ghost text behind hero */
.ghost-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Unbounded", sans-serif;
  font-size: clamp(8rem, 22vw, 20rem);
  font-weight: 900;
  white-space: nowrap;
  opacity: 0.035;
  pointer-events: none;
  z-index: 0;
  color: var(--mud);
  letter-spacing: -0.04em;
}

/* ─── MARQUEE TICKER ─────────────────────────── */
.ticker {
  background: var(--clay);
  color: #fff;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  padding: 0.7rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 5;
}
.ticker-inner {
  display: inline-flex;
  gap: 3rem;
  animation: ticker-scroll 25s linear infinite;
}
.ticker-item {
  font-family: "Unbounded", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.ticker-sep {
  opacity: 0.5;
}
@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ─── CLASSES SECTION ────────────────────────── */
.section-classes {
  position: relative;
  padding: 5rem 2.5rem;
  background: var(--cream);
  overflow: hidden;
}
.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.section-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}
.section-title .accent {
  color: var(--clay);
}

.classes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 0;
}
.class-card {
  border: 2px solid var(--ink);
  margin: -1px;
  padding: 2rem;
  background: var(--cream);
  box-shadow: none;
  position: relative;
  overflow: hidden;
  cursor: crosshair;
  transition: transform 0.15s, box-shadow 0.15s;
}
.class-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--ink);
  z-index: 1;
}
.class-card:nth-child(1) {
  background: var(--yellow);
}
.class-card:nth-child(2) {
  background: #faf6ef;
}
.class-card:nth-child(3) {
  background: var(--green);
}
.class-card:nth-child(4) {
  background: #ede0cf;
}
.class-card:nth-child(5) {
  background: #f2e2d5;
}
.class-card:nth-child(6) {
  background: #e6edd8;
}

.class-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.class-level {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  padding: 2px 8px;
  display: inline-block;
  margin-bottom: 1rem;
}
.class-name {
  font-family: "Unbounded", sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}
.class-desc {
  font-size: 0.75rem;
  line-height: 1.7;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}
.class-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.class-price {
  font-family: "Unbounded", sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
}
.class-duration {
  font-size: 0.7rem;
  opacity: 0.65;
}

/* ─── PARALLAX GALLERY STRIP ─────────────────── */
.gallery-strip {
  position: relative;
  overflow: hidden;
  height: 500px;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  background: var(--ink);
}
.gallery-strip-inner {
  display: flex;
  height: 100%;
  will-change: transform;
  transition: transform 0.1s linear;
}
.gallery-strip-inner img {
  height: 100%;
  width: auto;
  flex-shrink: 0;
  object-fit: cover;
  filter: saturate(0.9);
}
.gallery-caption {
  position: absolute;
  bottom: 1.5rem;
  right: 2.5rem;
  font-family: "Unbounded", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  z-index: 3;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

/* ─── VIBES SECTION ──────────────────────────── */
.section-vibes {
  position: relative;
  overflow: hidden;
  padding: 5rem 2.5rem;
  background: var(--ink);
  color: var(--cream);
  border-bottom: 4px solid var(--ink);
}
.section-vibes .ghost-bg {
  opacity: 0.06;
  color: var(--clay);
}
.vibes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .vibes-grid {
    grid-template-columns: 1fr;
  }
}
.vibes-text .section-label {
  opacity: 0.45;
  color: var(--cream);
}
.vibes-text .section-title {
  color: var(--cream);
}
.vibes-text .section-title .accent {
  color: var(--green);
}
.vibes-text p {
  font-size: 0.85rem;
  line-height: 1.8;
  margin-top: 1.5rem;
  opacity: 0.75;
}
.vibes-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.stat-box {
  border: 2px solid rgba(255, 255, 255, 0.15);
  margin: -1px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.stat-box:nth-child(1) {
  border-color: var(--clay);
}
.stat-box:nth-child(2) {
  border-color: var(--green);
}
.stat-box:nth-child(3) {
  border-color: var(--yellow);
}
.stat-box:nth-child(4) {
  border-color: var(--pink);
}
.stat-num {
  font-family: "Unbounded", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: var(--cream);
}
.stat-num .unit {
  font-size: 1.5rem;
}
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-top: 0.5rem;
}

/* ─── SUBSCRIBE SECTION ──────────────────────── */
.section-subscribe {
  position: relative;
  overflow: hidden;
  padding: 5rem 2.5rem;
  background: var(--yellow);
  border-bottom: 4px solid var(--ink);
}
.subscribe-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.subscribe-inner .section-title {
  font-size: clamp(2rem, 6vw, 4.5rem);
  margin-bottom: 1rem;
}
.subscribe-inner p {
  font-size: 0.85rem;
  line-height: 1.7;
  opacity: 0.75;
  margin-bottom: 2.5rem;
}
.subscribe-form {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.subscribe-form input {
  flex: 1;
  min-width: 220px;
  border: 3px solid var(--ink);
  border-right: none;
  padding: 1rem 1.4rem;
  font-family: "Space Mono", monospace;
  font-size: 0.85rem;
  background: #fff;
  outline: none;
  cursor: crosshair;
}
.subscribe-form input::placeholder {
  opacity: 0.5;
}
.subscribe-form button {
  background: var(--ink);
  color: var(--cream);
  border: 3px solid var(--ink);
  padding: 1rem 2rem;
  font-family: "Unbounded", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: crosshair;
  box-shadow: 5px 5px 0 var(--mud);
  transition: transform 0.12s, box-shadow 0.12s, background 0.15s;
}
.subscribe-form button:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--mud);
  background: var(--clay);
  border-color: var(--clay);
}
.subscribe-note {
  font-size: 0.65rem;
  opacity: 0.55;
  margin-top: 1rem;
}
.subscribe-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.tag-chip {
  border: 2px solid var(--ink);
  padding: 3px 10px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(255, 255, 255, 0.4);
}
.success-msg {
  display: none;
  font-family: "Unbounded", sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  padding: 1.5rem;
  border: 3px solid var(--ink);
  background: var(--green);
  box-shadow: 5px 5px 0 var(--ink);
  margin-top: 1rem;
}

/* ─── FOOTER ─────────────────────────────────── */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: 3rem 2.5rem 2rem;
  border-top: 4px solid var(--clay);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.footer-brand .nav-logo {
  font-size: 1.4rem;
  color: var(--cream);
}
.footer-brand .nav-logo span {
  color: var(--clay);
}
.footer-brand p {
  font-size: 0.75rem;
  line-height: 1.7;
  opacity: 0.55;
  margin-top: 1rem;
  max-width: 280px;
}
.footer-col h4 {
  font-family: "Unbounded", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  color: var(--cream);
  text-decoration: none;
  font-size: 0.75rem;
  opacity: 0.75;
  margin-bottom: 0.6rem;
  transition: opacity 0.15s, color 0.15s;
}
.footer-col a:hover {
  opacity: 1;
  color: var(--clay);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.65rem;
  opacity: 0.4;
}
.codepen-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--clay);
  color: #fff;
  border: 2px solid var(--clay);
  padding: 0.5rem 1.2rem;
  font-family: "Space Mono", monospace;
  font-size: 0.65rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 3px 3px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.12s, box-shadow 0.12s;
}
.codepen-link:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 rgba(255, 255, 255, 0.2);
  color: #fff;
}
.codepen-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 768px) {
  nav {
    padding: 0.9rem 1.2rem;
  }
  .nav-links {
    display: none;
  }
  .hero {
    padding: 0 1.2rem 3rem;
  }
  .section-classes,
  .section-vibes,
  .section-subscribe {
    padding: 3.5rem 1.2rem;
  }
  footer {
    padding: 2.5rem 1.2rem 1.5rem;
  }
  .parallax-strip {
    grid-template-columns: repeat(3, 1fr);
  }
  .parallax-strip .parallax-col:nth-child(n + 4) {
    display: none;
  }
}




/* ================= IMAGE ================= */
.post-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 12px;
  background: #f1f5f9;
}

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

.class-card:hover .post-image img {
  transform: scale(1.05);
  transition: 0.4s ease;
}

/* ================= PREMIUM MOBILE MENU ================= */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100%;

  background: #f8fafc; /* softer premium tone */
  backdrop-filter: blur(12px);

  box-shadow: -20px 0 60px rgba(0,0,0,0.15);
  border-left: 1px solid rgba(0,0,0,0.08);

  transition: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 999;

  padding: 100px 28px 40px;
}

.mobile-menu.open {
  right: 0;
}

/* ================= MENU CONTENT ================= */

.menu-content {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* 🔥 NEW FONT FEEL */
.menu-content a {
  font-family: "Unbounded", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;

  letter-spacing: 0.04em;
  text-transform: uppercase;

  color: #0f172a;
  text-decoration: none;

  position: relative;
  padding-left: 2px;

  transition: all 0.25s ease;
}

/* 🔥 PREMIUM HOVER */
.menu-content a:hover {
  color: #ff6b35;
  transform: translateX(4px);
}

/* subtle underline on hover */
.menu-content a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #ff6b35;
  transition: width 0.25s ease;
}

.menu-content a:hover::after {
  width: 40%;
}

/* ================= DIVIDERS ================= */

.menu-divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0,0,0,0.15),
    transparent
  );
  margin: 12px 0;
}

/* ================= EXTRA POLISH ================= */

/* subtle fade when menu opens */
.mobile-menu.open .menu-content a {
  animation: fadeSlide 0.4s ease forwards;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}




/* 🔥 LOCK SCROLL WHEN MENU OPEN */
body.menu-open {
  overflow: hidden;
}

/* ================= IMAGE ================= */
.post-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 12px;
  background: #f1f5f9;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.class-card:hover .post-image img {
  transform: scale(1.05);
  transition: 0.4s ease;
}

/* ================= OVERLAY ================= */

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 998;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ================= MOBILE MENU ================= */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100%;

  background: #f8fafc;
  backdrop-filter: blur(12px);

  box-shadow: -20px 0 60px rgba(0,0,0,0.15);
  border-left: 1px solid rgba(0,0,0,0.08);

  transition: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 999;

  padding: 100px 28px 40px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-menu.open {
  right: 0;
}

/* ================= MENU ================= */

.menu-content {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.menu-content a {
  font-family: "Unbounded", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;

  color: #0f172a;
  text-decoration: none;
  position: relative;

  transition: all 0.25s ease;
}

/* 🔥 ACTIVE LINK */
.menu-content a.active {
  color: #ff6b35;
}

.menu-content a.active::after {
  width: 50%;
}

/* HOVER */
.menu-content a:hover {
  color: #ff6b35;
  transform: translateX(4px);
}

.menu-content a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #ff6b35;
  transition: width 0.25s ease;
}

.menu-content a:hover::after {
  width: 40%;
}

/* ================= DIVIDER ================= */

.menu-divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0,0,0,0.15),
    transparent
  );
}

/* ================= FOOTER ================= */

.menu-footer {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 20px;
  font-size: 0.7rem;
  color: #64748b;
  font-family: "Space Mono", monospace;
}

/* ================= ANIMATION ================= */

.mobile-menu.open .menu-content a {
  animation: fadeSlide 0.4s ease forwards;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* ================= HERO NEWS (PREMIUM FIXED) ================= */

.hero-news {
  margin-top: 0; /* 🔥 remove stacking spacing */
  margin-bottom: 60px; /* slightly more premium spacing */
  padding-left: 6px;
}

/* SCROLL CONTAINER */
.news-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 10px 4px 14px;
  scroll-snap-type: x mandatory;
}

.news-scroll::-webkit-scrollbar {
  display: none;
}

/* CARD */
.news-card {
  min-width: 300px;
  max-width: 300px;
  height: 200px;

  border-radius: 20px;
  overflow: hidden;
  position: relative;

  flex-shrink: 0;
  scroll-snap-align: start;
  cursor: pointer;

  background: #000;

  box-shadow:
    0 10px 25px rgba(0,0,0,0.12),
    0 2px 6px rgba(0,0,0,0.08);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* HOVER (desktop polish) */
.news-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.18),
    0 6px 12px rgba(0,0,0,0.12);
}

/* IMAGE */
.news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transform: scale(1.02);
}

/* OVERLAY */
.news-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.4) 50%,
    transparent 100%
  );
}

/* CONTENT */
.news-content {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  color: #fff;
}

/* META */
.news-meta {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 6px;
}

/* TITLE */
.news-title {
  font-family: "Unbounded", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

/* subtle clamp so titles don't break layout */
.news-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* ================= HEADLINES TAG ================= */

.hero-news-header {
  position: relative;
  margin: 40px 0 14px; /* 🔥 increased top spacing */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line behind */
.hero-news-header::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: rgba(0,0,0,0.15);
}

/* label */
.hero-news-header span {
  position: relative;
  z-index: 2;

  font-family: "Unbounded", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: #fff;
  background: linear-gradient(135deg, #ff3b1f, #ff6b35);

  padding: 6px 18px;
  border-radius: 6px;

  box-shadow:
    0 6px 14px rgba(255,107,53,0.35),
    0 2px 4px rgba(0,0,0,0.1);

  transform: skewX(-10deg);
}

/* fix text skew */
.hero-news-header span::after {
  content: "HEADLINES";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  transform: skewX(10deg);
}


body {
  padding-top: 72px;
}


/* ================= SKELETON LOADER ================= */

.skeleton {
  position: relative;
  overflow: hidden;
  background: #e2e8f0;
  border-radius: 8px;
}

.skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.5),
    transparent
  );
  animation: shimmer 1.2s infinite;
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

/* Variants */
.skeleton-text {
  height: 14px;
  margin-bottom: 10px;
}

.skeleton-title {
  height: 22px;
  width: 70%;
  margin-bottom: 12px;
}

.skeleton-img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.skeleton-card {
  padding: 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
}