/* ============================================
   MADE PERF ARTS AND CRAFT STUDIO
   style.css — Mobile-First Premium Design
   Aesthetic: Baby blue & white
   ============================================ */

/* ── IMPORTS ─────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS VARIABLES ───────────────────────── */
:root {
  --gold: #5aaadc;
  --gold-light: #8ecbee;
  --gold-dark: #2b7fb8;
  --cream: #f0f8ff;
  --cream-dark: #dceef9;
  --brown-deep: #0d2a3e;
  --brown: #1a4a6b;
  --brown-mid: #2e6d9e;
  --white: #ffffff;
  --text: #0d2a3e;
  --text-light: #2e6d9e;
  --text-muted: #5a8aaa;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --radius: 12px;
  --radius-sm: 6px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(13, 42, 62, 0.10);
  --shadow-lg: 0 8px 48px rgba(13, 42, 62, 0.18);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --nav-height: 64px;
}

/* ── RESET ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ── TYPOGRAPHY ──────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 6vw, 5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.9rem); }

/* ── UTILITIES ───────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 16px; }
.section { padding: 60px 0; }
.section-dark { background: var(--brown-deep); color: var(--cream); }
.section-gold { background: linear-gradient(135deg, var(--gold-dark), var(--brown)); color: var(--cream); }
.text-center { text-align: center; }
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-lead { color: var(--text-light); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(90, 170, 220, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(90, 170, 220, 0.5);
}
.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold-dark);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--brown-deep);
}
.btn-wa {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5); }

/* ── ANIMATIONS ──────────────────────────── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: none;
}
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-height);
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13, 42, 62, 0.92);
  backdrop-filter: blur(12px);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
#navbar.scrolled {
  background: rgba(13, 42, 62, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.nav-logo span { display: block; font-size: 0.6rem; font-weight: 300; letter-spacing: 2px; color: rgba(255,255,255,0.65); text-transform: uppercase; }
#nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
#nav-menu a {
  color: rgba(255,255,255,0.85);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
#nav-menu a:hover { color: var(--gold-light); }
#nav-menu .nav-cta {
  background: var(--gold);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 30px;
  font-weight: 600;
}
#nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1000;
}
#nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  display: block;
  transition: var(--transition);
}

@media (max-width: 768px) {
  #nav-toggle { display: flex; }
  #nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(13, 42, 62, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px 16px;
    gap: 20px;
    transform: translateY(-110%);
    transition: transform 0.35s ease;
    border-bottom: 1px solid rgba(90,170,220,0.2);
    z-index: 899;
    visibility: hidden;
    pointer-events: none;
  }
  #nav-menu.open {
    transform: translateY(0);
    visibility: visible;
    pointer-events: all;
  }
  #nav-menu a { font-size: 16px; padding: 8px 0; width: 100%; text-align: center; }
  #nav-menu .nav-cta {
    display: block;
    text-align: center;
    width: 100%;
    background: var(--gold);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
  }
}

/* ══════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════ */
#hero {
  position: relative;
  width: 100%;
  min-height: 85vh;
  overflow: hidden;
  background: var(--brown-deep);
}
#hero-track { position: absolute; inset: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}
.hero-slide.active { opacity: 1; pointer-events: all; }
.hero-slide.entering { z-index: 2; }
.hero-slide.exiting { z-index: 1; }

.hero-slide.exit-fade { animation: heroExitFade 0.6s ease forwards; }
.hero-slide.exit-wipe { animation: heroExitWipe 0.6s ease forwards; }
.hero-slide.exit-scale { animation: heroExitScale 0.6s ease forwards; }
@keyframes heroExitFade { to { opacity: 0; } }
@keyframes heroExitWipe { to { clip-path: inset(0 100% 0 0); } }
@keyframes heroExitScale { to { transform: scale(0.85); opacity: 0; } }

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,42,62,0.3) 0%,
    rgba(13,42,62,0.5) 50%,
    rgba(13,42,62,0.72) 100%
  );
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: calc(var(--nav-height) + 24px) 16px 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.hero-heading {
  color: var(--white);
  font-size: clamp(2rem, 7vw, 5.5rem);
  font-weight: 700;
  max-width: 700px;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  line-height: 1.05;
}
.hero-subtext {
  color: rgba(255,255,255,0.88);
  font-size: clamp(0.9rem, 2.5vw, 1.25rem);
  max-width: 100%;
  margin-bottom: 28px;
  font-weight: 300;
  line-height: 1.6;
  padding-right: 60px;
}
.hero-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-radius: 40px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 24px rgba(90,170,220,0.4);
  transition: var(--transition);
}
.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(90,170,220,0.55);
}

.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.hero-nav-btn:hover { background: rgba(90,170,220,0.4); }
#hero-prev { left: 12px; }
#hero-next { right: 12px; }

#hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active {
  background: var(--gold-light);
  transform: scale(1.4);
}

/* ══════════════════════════════════════════
   SCROLLING BANNER
══════════════════════════════════════════ */
#scroll-banner {
  background: linear-gradient(90deg, var(--brown), var(--gold-dark));
  overflow: hidden;
  padding: 10px 0;
  position: relative;
}
#scroll-banner::before, #scroll-banner::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 40px;
  z-index: 2;
  pointer-events: none;
}
#scroll-banner::before { left: 0; background: linear-gradient(to right, var(--brown), transparent); }
#scroll-banner::after { right: 0; background: linear-gradient(to left, var(--brown), transparent); }

#banner-track {
  display: flex;
  width: max-content;
  animation: bannerScroll 28s linear infinite;
}
@keyframes bannerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}
.banner-item {
  padding: 0 36px;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.banner-item::after {
  content: "✦";
  margin-left: 36px;
  color: var(--gold-light);
}

/* ══════════════════════════════════════════
   PROMOTIONS BANNER
══════════════════════════════════════════ */
#promo-banner {
  display: none;
  background: var(--gold);
  text-align: center;
  padding: 10px 16px;
}
.promo-item {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}

/* ══════════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════════ */
#services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}
.service-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(90,170,220,0.15);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--cream-dark), var(--gold-light));
}
.service-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--cream-dark), rgba(90,170,220,0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.service-body { padding: 20px; }
.service-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--brown-deep);
}
.service-body p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 18px;
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   PORTFOLIO SECTION
══════════════════════════════════════════ */
#portfolio { background: var(--cream-dark); }
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 20px 0 32px;
  justify-content: center;
}
.filter-btn {
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  background: transparent;
  border: 1.5px solid rgba(90,170,220,0.35);
  color: var(--brown-mid);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
#portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.portfolio-card { border-radius: var(--radius); overflow: hidden; position: relative; }
.portfolio-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}
.portfolio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.portfolio-img-wrap:hover img { transform: scale(1.06); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,42,62,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.portfolio-img-wrap:hover .portfolio-overlay { opacity: 1; }
.portfolio-request-btn {
  background: var(--gold);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}
.portfolio-category {
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  background: var(--cream);
}
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  padding: 48px 20px;
  font-size: 1rem;
}
.empty-state a { color: var(--gold-dark); border-bottom: 1px solid; }

/* ── LIGHTBOX ─────────────────────────────── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 16px;
}
#lightbox.active { display: flex; }
.lb-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius);
  object-fit: contain;
}
.lb-caption {
  color: rgba(255,255,255,0.7);
  margin-top: 16px;
  font-size: 14px;
  text-align: center;
}
.lb-close {
  position: absolute;
  top: 16px;
  right: 20px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ══════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════ */
#how-it-works { background: var(--brown-deep); }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 40px;
  position: relative;
}
.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-body h3 {
  color: var(--cream);
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.step-body p { color: rgba(240,248,255,0.65); font-size: 0.92rem; line-height: 1.6; }

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
#testimonials { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}
.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow);
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--brown);
  margin-bottom: 16px;
  line-height: 1.6;
}
.testimonial-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stars { color: var(--gold-dark); font-size: 13px; margin-bottom: 10px; letter-spacing: 2px; }

/* ══════════════════════════════════════════
   QUOTE FORM SECTION
══════════════════════════════════════════ */
#get-quote { background: linear-gradient(135deg, var(--brown), var(--brown-deep)); }
.quote-form-wrap {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  border: 1px solid rgba(90,170,220,0.2);
  max-width: 580px;
  margin: 36px auto 0;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(142,203,238,0.85);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(90,170,220,0.25);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--cream);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-light);
}
.form-group select option { background: var(--brown); color: var(--cream); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(240,248,255,0.3); }

/* ══════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════ */
#contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-top: 40px;
}
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(90,170,220,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-item-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 2px; }
.contact-item-value { font-weight: 500; color: var(--text); }
.contact-item-value a { color: var(--gold-dark); }
.contact-ctas { display: flex; flex-direction: column; gap: 12px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input,
.contact-form textarea {
  background: var(--white);
  border: 1.5px solid rgba(90,170,220,0.25);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { resize: vertical; min-height: 100px; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
#footer {
  background: var(--brown-deep);
  color: rgba(240,248,255,0.7);
  padding: 40px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-brand .nav-logo { margin-bottom: 12px; }
.footer-brand p { font-size: 14px; line-height: 1.6; }
.footer-links h4, .footer-contact h4 {
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact p { font-size: 14px; margin-bottom: 8px; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.2s;
}
.social-btn:hover { background: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  color: rgba(240,248,255,0.4);
}

/* ══════════════════════════════════════════
   DESKTOP BREAKPOINTS
══════════════════════════════════════════ */
@media (min-width: 640px) {
  .container { padding: 0 24px; }
  #portfolio-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-ctas { flex-direction: row; }
  .form-row { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .container { padding: 0 40px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .hero-content { padding-left: 60px; padding-right: 60px; }
}

/* ══════════════════════════════════════════
   ADMIN — SHARED ADMIN STYLES
══════════════════════════════════════════ */
.admin-page {
  background: #071820;
  color: #dceef9;
  font-family: var(--font-body);
  min-height: 100vh;
}
