/*
Theme Name: Chubby's Burgers & Shakes
Theme URI: https://chubbys.co.uk
Author: Metatag Media
Author URI: https://metatagmedia.com
Description: Custom dark-neon American-diner theme for Chubby's Burgers & Shakes — smash burgers, chop cheese, shakes and neon nights. Create Pages in WordPress and assign the included Page Templates (Home, Menu, Order Online, Visit Us, About, Contact, Franchise).
Version: 1.0
Requires at least: 5.9
Requires PHP: 7.4
Text Domain: chubbys
*/

/* =========================================================
   Everything below this line is the theme's actual CSS.
   The comment block above is required by WordPress and
   must stay at the very top of this file.
   ========================================================= */

/* =========================================================
   CHUBBY'S BURGERS & SHAKES — DESIGN SYSTEM
   Palette: near-black #0A0A0D, off-white #F6F3EE,
            neon pink #FF2A9D, neon cyan #2CFFE0
   Display: Bebas Neue / Body: Poppins
   Signature element: "smash" jagged section dividers —
   every black/white seam is torn like a smashed patty hitting
   the griddle, never a straight line.
   ========================================================= */

:root {
  --black: #0a0a0d;
  --black-soft: #131316;
  --white: #f6f3ee;
  --white-soft: #eeeae2;
  --ink: #121212;
  --pink: #ff2a9d;
  --pink-dim: #c71f79;
  --cyan: #2cffe0;
  --cyan-dim: #1fcfb6;
  --pink-glow: rgba(255, 42, 157, 0.45);
  --cyan-glow: rgba(44, 255, 224, 0.4);
  --font-display: "Bebas Neue", "Anton", sans-serif;
  --font-script: "Permanent Marker", cursive;
  --font-body: "Poppins", sans-serif;
  --radius-card: 4px;
  --container: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

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

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.5px;
  line-height: 1.05;
  text-transform: uppercase;
}

h2.section-heading {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin-bottom: 14px;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--pink);
  display: inline-block;
}

.section-black .eyebrow { color: var(--cyan); }
.section-white .eyebrow { color: var(--pink-dim); }

.lede {
  font-size: 1.05rem;
  max-width: 560px;
  opacity: 0.85;
}

/* ============ SECTIONS + SMASH DIVIDERS ============ */

.section {
  position: relative;
  padding: 110px 0;
}

.section-black {
  background: var(--black);
  color: var(--white);
}

.section-white {
  background: var(--white);
  color: var(--ink);
}

/* jagged "smashed patty" seam between sections */
.smash-edge {
  position: absolute;
  left: 0;
  right: 0;
  height: 46px;
  top: -45px;
  z-index: 3;
  pointer-events: none;
}

.smash-edge svg { width: 100%; height: 100%; display: block; }

@media (max-width: 700px) {
  .section { padding: 72px 0; }
  .smash-edge { height: 26px; top: -25px; }
}

/* ============ BUTTONS ============ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 2px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--pink);
  color: var(--black);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px var(--pink-glow);
}

.btn-outline-black {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--cyan);
}
.btn-outline-black:hover {
  background: var(--cyan);
  color: var(--black);
  box-shadow: 0 0 24px var(--cyan-glow);
}

.btn-outline-white {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-outline-white:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-ghost {
  color: var(--pink);
  font-weight: 700;
  border-bottom: 2px solid var(--pink);
  padding: 4px 0;
  border-radius: 0;
}

.btn-block { width: 100%; justify-content: center; }

.cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 34px; }

/* ============ HEADER / NAV ============ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 20px 0;
  transition: background 0.35s var(--ease), padding 0.35s var(--ease), box-shadow 0.35s var(--ease);
  background: transparent;
}

.site-header.is-scrolled {
  background: rgba(10, 10, 13, 0.92);
  backdrop-filter: blur(8px);
  padding: 12px 0;
  box-shadow: 0 2px 0 var(--pink);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 1px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.brand span { color: var(--pink); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav ul {
  display: flex;
  gap: 30px;
}

.main-nav a {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--cyan);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: width 0.25s var(--ease);
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

.nav-order-btn {
  background: var(--pink);
  color: var(--black);
  padding: 12px 24px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.nav-order-btn:hover { box-shadow: 0 0 20px var(--pink-glow); transform: translateY(-2px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  z-index: 1001;
}
.hamburger span {
  height: 2px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease);
}
.mobile-drawer.is-open { transform: translateY(0); }
.mobile-drawer a {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 1px;
}
.mobile-drawer a:hover { color: var(--cyan); }

@media (max-width: 960px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
}

/* ============ HERO ============ */

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  background: radial-gradient(ellipse at 20% 20%, rgba(255,42,157,0.16), transparent 55%),
              radial-gradient(ellipse at 85% 75%, rgba(44,255,224,0.14), transparent 55%),
              var(--black);
  overflow: hidden;
  padding-top: 90px;
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-tagline {
  color: var(--cyan);
  font-weight: 700;
  letter-spacing: 4px;
  font-size: 0.85rem;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(3.4rem, 8.4vw, 6.4rem);
  color: var(--white);
  text-shadow: 0 0 40px var(--pink-glow);
}
.hero h1 .accent { color: var(--pink); }

.hero-sub {
  margin-top: 22px;
  color: rgba(246,243,238,0.8);
  max-width: 480px;
  font-size: 1.05rem;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 90px rgba(0,0,0,0.6);
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(246,243,238,0.55);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.scroll-cue .line {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--pink), transparent);
  animation: scrollpulse 1.8s infinite ease-in-out;
}
@keyframes scrollpulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ============ IMAGE PLACEHOLDERS ============ */
/* Swap these for real photography: replace the div's background
   image or drop an <img> in and remove the .ph-label. */

.ph {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 220px;
  background:
    repeating-linear-gradient(135deg, rgba(255,42,157,0.10) 0px, rgba(255,42,157,0.10) 2px, transparent 2px, transparent 22px),
    linear-gradient(160deg, #1c1c22, #0a0a0d 70%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  border-radius: var(--radius-card);
}
.section-white .ph {
  background:
    repeating-linear-gradient(135deg, rgba(255,42,157,0.07) 0px, rgba(255,42,157,0.07) 2px, transparent 2px, transparent 22px),
    linear-gradient(160deg, #ffffff, #e7e2d8 75%);
  border: 1px solid rgba(0,0,0,0.08);
}
.ph-label {
  font-size: 0.68rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(246,243,238,0.55);
  background: rgba(0,0,0,0.4);
  padding: 6px 10px;
  border-radius: 2px;
}
.section-white .ph-label { color: rgba(18,18,18,0.55); background: rgba(255,255,255,0.6); }

/* ============ CARDS: FAN FAVOURITES / MENU ============ */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 56px;
}

@media (max-width: 960px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .card-grid { grid-template-columns: 1fr; } }

.food-card {
  background: var(--black-soft);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
  cursor: pointer;
  position: relative;
}
.food-card:hover {
  transform: translateY(-6px);
  border-color: var(--pink);
}
.section-white .food-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.food-card .ph { aspect-ratio: 4/3; min-height: unset; border-radius: 0; }
.food-card-body { padding: 22px; }
.food-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.food-card p { font-size: 0.88rem; opacity: 0.75; margin-bottom: 14px; }
.food-card .price { color: var(--pink); font-weight: 700; font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 1px; }
.food-card .card-foot { display: flex; align-items: center; justify-content: space-between; }
.tag {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  background: var(--cyan);
  color: var(--black);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 2px;
}
.tag.tag-spicy { background: var(--pink); color: var(--black); }

/* ============ DELIVERY PLATFORM CARDS ============ */

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}
@media (max-width: 800px) { .platform-grid { grid-template-columns: 1fr; } }

.platform-card {
  background: var(--ink);
  color: var(--white);
  padding: 34px 26px;
  border-radius: var(--radius-card);
  text-align: center;
  transition: transform 0.3s var(--ease);
}
.platform-card:hover { transform: translateY(-6px); }
.platform-card .platform-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 1px;
  margin: 14px 0 8px;
}
.platform-mark {
  width: 54px; height: 54px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--black);
}
.platform-mark.uber { background: var(--cyan); }
.platform-mark.deliveroo { background: var(--pink); }
.platform-mark.justeat { background: #ffb84d; }
.platform-card p { font-size: 0.85rem; opacity: 0.7; margin-bottom: 20px; }

/* ============ VIBE GALLERY STRIP ============ */

.vibe-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 54px;
}
.vibe-strip .ph { aspect-ratio: 3/4; min-height: unset; }
.vibe-strip .ph:nth-child(2), .vibe-strip .ph:nth-child(4) { margin-top: 26px; }
@media (max-width: 900px) {
  .vibe-strip { grid-template-columns: repeat(3, 1fr); }
  .vibe-strip .ph:nth-child(4), .vibe-strip .ph:nth-child(5) { display: none; }
}

/* ============ STAT / TRUST CARDS ============ */

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}
@media (max-width: 800px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }

.stat-card {
  border: 1px solid rgba(0,0,0,0.1);
  padding: 30px 20px;
  text-align: center;
  border-radius: var(--radius-card);
  background: #fff;
}
.stat-card h4 {
  font-size: 1.15rem;
  color: var(--pink-dim);
  margin-bottom: 6px;
}
.stat-card p { font-size: 0.78rem; opacity: 0.65; letter-spacing: 0.5px; }

/* ============ SPLIT LAYOUT ============ */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-media { order: 0; }
}
.split-media .ph { aspect-ratio: 4/5; }

/* ============ FINAL CTA ============ */

.final-cta {
  text-align: center;
  padding: 140px 0;
}
.final-cta h2 {
  font-size: clamp(3rem, 9vw, 6rem);
  color: var(--white);
}
.final-cta h2 span { color: var(--cyan); }
.final-cta p { margin: 18px auto 0; color: rgba(246,243,238,0.75); max-width: 480px; }
.final-cta .cta-row { justify-content: center; }

/* ============ PAGE HERO (interior pages) ============ */

.page-hero {
  padding: 170px 0 90px;
  background: var(--black);
  color: var(--white);
  text-align: center;
  position: relative;
}
.page-hero h1 { font-size: clamp(2.6rem, 8vw, 4.6rem); }
.page-hero p { max-width: 520px; margin: 16px auto 0; opacity: 0.75; }

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

.menu-tabs {
  position: sticky;
  top: 74px;
  z-index: 50;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0;
  overflow-x: auto;
}
.menu-tabs .container { display: flex; gap: 10px; }
.menu-tab {
  color: rgba(246,243,238,0.7);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 30px;
  white-space: nowrap;
  transition: all 0.25s var(--ease);
}
.menu-tab:hover, .menu-tab.active {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--black);
}

.menu-category {
  padding: 70px 0 20px;
  scroll-margin-top: 150px;
}
.menu-category:nth-child(even) { background: var(--white-soft); }
.menu-category-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 6px;
}
.menu-category-sub { opacity: 0.6; font-size: 0.9rem; margin-bottom: 10px; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 36px;
}
@media (max-width: 1080px) { .menu-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .menu-grid { grid-template-columns: 1fr; } }

.menu-category .food-card { background: #fff; border: 1px solid rgba(0,0,0,0.08); color: var(--ink); box-shadow: 0 8px 24px rgba(0,0,0,0.04); }
.menu-category .food-card .ph { min-height: 160px; }

.addon-note {
  margin-top: 60px;
  padding: 28px;
  border: 1px dashed rgba(0,0,0,0.2);
  border-radius: var(--radius-card);
  font-size: 0.9rem;
}
.addon-note strong { color: var(--pink-dim); }

/* ============ PRODUCT MODAL ============ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,13,0.75);
  backdrop-filter: blur(3px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  padding: 20px;
}
.modal-overlay.is-open { opacity: 1; pointer-events: all; }

.product-modal {
  background: var(--white);
  max-width: 720px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  border-radius: 6px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s var(--ease);
  position: relative;
}
.modal-overlay.is-open .product-modal { transform: translateY(0) scale(1); }
@media (max-width: 680px) { .product-modal { grid-template-columns: 1fr; } }

.product-modal .ph { min-height: 260px; border-radius: 0; }
.modal-body { padding: 30px; }
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
}
.modal-body h3 { font-size: 1.8rem; margin-bottom: 10px; }
.modal-body p.desc { font-size: 0.9rem; opacity: 0.75; margin-bottom: 18px; }
.modal-body .price { font-family: var(--font-display); font-size: 1.6rem; color: var(--pink-dim); margin-bottom: 20px; display: block; }

.addon-list { margin-bottom: 22px; }
.addon-list label {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 0.88rem;
}
.addon-list input { accent-color: var(--pink); width: 16px; height: 16px; }

.qty-row {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 22px;
}
.qty-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: var(--ink); color: var(--white); }
.qty-value { font-family: var(--font-display); font-size: 1.3rem; min-width: 20px; text-align: center; }

/* ============ ORDER ONLINE PAGE ============ */

.top-picks { margin-top: 90px; }

/* ============ VISIT US PAGE ============ */

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
}
@media (max-width: 900px) { .visit-grid { grid-template-columns: 1fr; } }
.info-block { margin-bottom: 30px; }
.info-block h4 { font-size: 1rem; letter-spacing: 1px; color: var(--pink-dim); margin-bottom: 8px; }
.info-block p { font-size: 0.95rem; opacity: 0.8; }
.map-embed {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--ink);
  color: rgba(246,243,238,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  border-radius: var(--radius-card);
  text-align: center;
  padding: 20px;
}

/* ============ FORMS ============ */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; opacity: 0.7; }
.field input, .field select, .field textarea {
  border: 1px solid rgba(0,0,0,0.2);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  border-radius: 2px;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.section-black .field input,
.section-black .field select,
.section-black .field textarea {
  background: var(--black-soft);
  border-color: rgba(255,255,255,0.15);
  color: var(--white);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px var(--pink-glow);
}
.field.has-error input, .field.has-error textarea, .field.has-error select { border-color: #e0475a; }
.field .error-msg { font-size: 0.75rem; color: #e0475a; display: none; }
.field.has-error .error-msg { display: block; }

.form-status {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 2px;
  font-size: 0.88rem;
  display: none;
}
.form-status.show { display: block; }
.form-status.success { background: rgba(44,255,224,0.15); border: 1px solid var(--cyan-dim); }
.form-status.error { background: rgba(224,71,90,0.12); border: 1px solid #e0475a; }
.form-status.loading { background: rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.15); }

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

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 30px;
  position: relative;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 800px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand .brand { margin-bottom: 10px; }
.footer-tagline { color: var(--pink); font-weight: 700; letter-spacing: 2px; font-size: 0.8rem; margin-bottom: 16px; }
.footer-col h5 { font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cyan); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { font-size: 0.88rem; opacity: 0.8; }
.footer-col a:hover { opacity: 1; color: var(--pink); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 26px;
  font-size: 0.78rem;
  opacity: 0.55;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============ UTILITIES ============ */

.text-center { text-align: center; }
.mt-lg { margin-top: 60px; }
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--pink);
  color: var(--black);
  padding: 10px 16px;
  z-index: 3000;
}
.skip-link:focus { left: 10px; top: 10px; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}
