/* ============================================
   NEW STYLE — Frizerie Premium
   style.css — design system complet
   ============================================ */

:root {
  --bg: #12121f;
  --bg-soft: #1a1a2e;
  --bg-card: #20203a;
  --bg-dark: #0c0c18;
  --gold: #c9a227;
  --gold-light: #e0b94a;
  --gold-dark: #a8891e;
  --text: #f4f1e8;
  --text-muted: #b8b3a4;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 20px 50px rgba(0,0,0,.45);
  --transition: all .3s ease;
  --font-head: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- BUTOANE ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-body);
  letter-spacing: .3px;
}
.btn i { font-size: 16px; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #1a1a10;
  box-shadow: 0 8px 25px rgba(201,162,39,.35);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(201,162,39,.5); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(244,241,232,.4);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border: 2px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: #1a1a10; }
.btn-lg { padding: 17px 40px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(12,12,24,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,162,39,.15);
  transition: var(--transition);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  color: #1a1a10;
  font-size: 20px;
}
.logo-text {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .5px;
}
.logo-text span { color: var(--gold-light); }
.nav-menu {
  display: flex;
  gap: 30px;
}
.nav-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
  padding: 6px 0;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--gold-light); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 28px; height: 3px;
  background: var(--text);
  border-radius: 3px;
  transition: var(--transition);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(201,162,39,.18), transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(32,32,58,.9), transparent 60%),
    linear-gradient(160deg, #0c0c18 0%, #1a1a2e 50%, #12121f 100%);
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(12,12,24,.7) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 850px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 20px;
}
.hero-eyebrow i { font-size: 13px; }
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.12;
  font-weight: 800;
  margin-bottom: 24px;
}
.hero h1 span { color: var(--gold-light); }
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 36px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(244,241,232,.12);
  padding-top: 40px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--gold-light);
}
.stat-label { font-size: 14px; color: var(--text-muted); }

/* ---------- SECTIONS ---------- */
.section { padding: 90px 0; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 55px; }
.section-eyebrow {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub { color: var(--text-muted); font-size: 16px; }

/* ---------- BENEFITS ---------- */
.benefits { background: var(--bg-soft); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}
.benefit-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,162,39,.12);
  border-radius: var(--radius);
  padding: 38px 30px;
  transition: var(--transition);
}
.benefit-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.benefit-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(201,162,39,.2), rgba(224,185,74,.08));
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--gold-light);
  margin-bottom: 22px;
}
.benefit-card h3 { font-family: var(--font-head); font-size: 20px; margin-bottom: 10px; }
.benefit-card p { color: var(--text-muted); font-size: 15px; }

/* ---------- ABOUT PEEK ---------- */
.about-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-media { position: relative; height: 460px; }
.img-frame {
  position: absolute;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--bg-card), var(--bg-soft));
  border: 1px solid rgba(201,162,39,.2);
  color: var(--gold-light);
}
.img-frame.large {
  top: 0; left: 30px;
  width: 380px; height: 420px;
  font-size: 90px;
}
.img-frame.small {
  bottom: 0; right: 0;
  width: 200px; height: 200px;
  font-size: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1a1a10;
  border: none;
  box-shadow: var(--shadow);
}
.about-text h2 { font-family: var(--font-head); font-size: 34px; line-height: 1.25; margin-bottom: 20px; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; }
.about-cta { margin-top: 24px; }

/* ---------- SERVICES ---------- */
.services { background: var(--bg-dark); }
.services-list { max-width: 800px; margin: 0 auto 40px; }
.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(244,241,232,.1);
}
.service-row:last-child { border-bottom: none; }
.service-info h3 { font-family: var(--font-head); font-size: 20px; margin-bottom: 6px; }
.service-info p { color: var(--text-muted); font-size: 15px; max-width: 480px; }
.service-price {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--gold-light);
  white-space: nowrap;
}
.services-more { text-align: center; }

/* ---------- PROCESS ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}
.process-step {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.process-step:hover { background: var(--bg-card); }
.step-num {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
  margin-bottom: 16px;
}
.process-step h3 { font-family: var(--font-head); font-size: 19px; margin-bottom: 10px; }
.process-step p { color: var(--text-muted); font-size: 14px; }

/* ---------- STATS BAND ---------- */
.stats-band {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-box .big {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 800;
  color: #1a1a10;
}
.stat-box p { font-size: 15px; font-weight: 600; color: #3a3008; }

/* ---------- TESTIMONIALS ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}
.testi-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,162,39,.12);
  border-radius: var(--radius);
  padding: 32px;
}
.stars { color: var(--gold); margin-bottom: 14px; font-size: 14px; }
.testi-card p { color: var(--text-muted); font-size: 15px; margin-bottom: 20px; font-style: italic; }
.testi-client { display: flex; flex-direction: column; }
.testi-client strong { font-size: 15px; }
.testi-client span { font-size: 13px; color: var(--gold-light); }

/* ---------- FAQ ---------- */
.faq { background: var(--bg-soft); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border-radius: 12px;
  margin-bottom: 14px;
  border: 1px solid rgba(201,162,39,.1);
  overflow: hidden;
}
.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { color: var(--gold); transition: var(--transition); }
.faq-item[open] summary i { transform: rotate(180deg); }
.faq-item[open] summary { border-bottom: 1px solid rgba(201,162,39,.15); }
.faq-item p { padding: 18px 24px; color: var(--text-muted); font-size: 15px; }

/* ---------- CTA BAND ---------- */
.cta-band {
  background:
    linear-gradient(135deg, rgba(201,162,39,.92), rgba(224,185,74,.92)),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect width="100" height="100" fill="none"/></svg>');
  text-align: center;
  padding: 80px 0;
}
.cta-inner h2 { font-family: var(--font-head); font-size: 36px; color: #1a1a10; margin-bottom: 14px; }
.cta-inner p { color: #3a3008; font-size: 17px; margin-bottom: 28px; }
.cta-band .btn-gold { background: #1a1a10; color: var(--gold-light); box-shadow: 0 8px 25px rgba(0,0,0,.3); }
.cta-band .btn-gold:hover { transform: translateY(-3px); }

/* ---------- FOOTER ---------- */
.footer { background: var(--bg-dark); padding-top: 70px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-col p { color: var(--text-muted); font-size: 14px; margin-bottom: 8px; }
.footer-col a { color: var(--text-muted); font-size: 14px; display: block; margin-bottom: 8px; transition: var(--transition); }
.footer-col a:hover { color: var(--gold-light); }
.footer-col h4 { font-family: var(--font-head); font-size: 18px; margin-bottom: 18px; }
.footer-col .logo-text { font-size: 20px; }
.social { display: flex; gap: 12px; margin-top: 20px; }
.social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  margin: 0;
}
.social a:hover { background: var(--gold); color: #1a1a10; }
.footer-bottom {
  border-top: 1px solid rgba(244,241,232,.1);
  padding: 22px 0;
  text-align: center;
}
.footer-bottom p { color: var(--text-muted); font-size: 13px; }

/* ---------- PAGE HERO (interior) ---------- */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  padding: 130px 0 60px;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(201,162,39,.15), transparent 55%),
    linear-gradient(160deg, #0c0c18 0%, #1a1a2e 60%, #12121f 100%);
  text-align: center;
}
.page-hero-overlay { position: absolute; inset: 0; }
.page-hero-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.page-hero-content h1 { font-family: var(--font-head); font-size: clamp(34px, 5vw, 52px); margin-bottom: 16px; }
.page-hero-content h1 span { color: var(--gold-light); }
.page-hero-content .hero-sub { margin: 0 auto; }

/* ---------- STORY (despre) ---------- */
.story {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.story-text h2 { font-family: var(--font-head); font-size: 34px; margin-bottom: 20px; }
.story-text p { color: var(--text-muted); margin-bottom: 16px; }
.story-chart { position: relative; }
.img-frame.xl {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--bg-card), var(--bg-soft));
  border: 1px solid rgba(201,162,39,.2);
  font-size: 100px;
  color: var(--gold-light);
}
.award-note {
  position: absolute;
  bottom: -20px; left: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 300px;
  color: #1a1a10;
  box-shadow: var(--shadow);
}
.award-note i { font-size: 26px; }
.award-note p { font-size: 13px; font-weight: 600; color: #3a3008; margin: 0; }

/* ---------- VALUES ---------- */
.values { background: var(--bg-soft); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}
.value-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,162,39,.12);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.value-card i { font-size: 30px; color: var(--gold-light); margin-bottom: 18px; }
.value-card h3 { font-family: var(--font-head); font-size: 19px; margin-bottom: 10px; }
.value-card p { color: var(--text-muted); font-size: 14px; }

/* ---------- TEAM ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.team-card {
  text-align: center;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 40px 30px;
  border: 1px solid rgba(201,162,39,.12);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); }
.team-avatar {
  width: 100px; height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 42px;
  color: #1a1a10;
}
.team-card h3 { font-family: var(--font-head); font-size: 20px; }
.team-role { color: var(--gold-light); font-size: 13px; font-weight: 600; margin: 6px 0 12px; }
.team-card p { color: var(--text-muted); font-size: 14px; }

/* ---------- PRICE LIST ---------- */
.soft-bg { background: var(--bg-soft); }
.price-list { max-width: 820px; margin: 0 auto; }

/* ---------- PACKS ---------- */
.packs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.pack-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,162,39,.15);
  border-radius: 18px;
  padding: 40px 34px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.pack-card:hover { transform: translateY(-6px); }
.pack-card.featured {
  border: 2px solid var(--gold);
  background: linear-gradient(160deg, var(--bg-card), #232345);
}
.pack-tag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1a1a10;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  white-space: nowrap;
}
.pack-card h3 { font-family: var(--font-head); font-size: 22px; margin-bottom: 6px; }
.pack-desc { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }
.pack-price { font-family: var(--font-head); font-size: 20px; color: var(--text-muted); margin-bottom: 24px; }
.pack-price span { font-size: 52px; font-weight: 800; color: var(--gold-light); }
.pack-card ul { text-align: left; margin-bottom: 28px; }
.pack-card ul li { padding: 7px 0; color: var(--text-muted); font-size: 14px; display: flex; gap: 10px; align-items: flex-start; }
.pack-card ul li i { color: var(--gold); padding-top: 4px; }

/* ---------- GALLERY ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 230px;
  gap: 20px;
  margin-bottom: 50px;
}
.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-img {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 60px;
  color: var(--gold-light);
  background:
    radial-gradient(circle at 30% 20%, rgba(201,162,39,.12), transparent 50%),
    linear-gradient(145deg, var(--bg-card), var(--bg-soft));
  transition: transform .4s ease;
}
.gallery-item:hover .gallery-img { transform: scale(1.08); }
.gallery-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(12,12,24,.92));
}
.gallery-cap h3 { font-family: var(--font-head); font-size: 18px; }
.gallery-cap p { color: var(--text-muted); font-size: 13px; }
.gallery-note {
  text-align: center;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid rgba(201,162,39,.15);
}
.gallery-note p { color: var(--text-muted); margin-bottom: 20px; }
.gallery-note i { color: var(--gold); }

/* ---------- CONTACT ---------- */
.contact-flex {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}
.contact-info h2, .contact-form-wrap h2 { font-family: var(--font-head); font-size: 28px; margin-bottom: 26px; }
.info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.info-item > i {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid rgba(201,162,39,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 18px;
  flex-shrink: 0;
}
.info-item strong { display: block; margin-bottom: 2px; }
.info-item p { color: var(--text-muted); font-size: 14px; }
.info-item a { color: var(--text-muted); transition: var(--transition); }
.info-item a:hover { color: var(--gold-light); }
.contact-note {
  background: rgba(201,162,39,.08);
  border: 1px solid rgba(201,162,39,.2);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
}
.contact-note i { color: var(--gold); font-size: 18px; padding-top: 3px; }

/* contacto form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid rgba(201,162,39,.15);
  border-radius: 18px;
  padding: 38px;
}
.form-intro { color: var(--text-muted); margin-bottom: 26px; font-size: 15px; }
.form-group { margin-bottom: 18px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--text);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid rgba(244,241,232,.15);
  background: var(--bg-soft);
  color: var(--text);
  font-size: 15px;
  font-family: var(--font-body);
  transition: var(--transition);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,.15);
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.form-msg { margin-top: 14px; font-size: 14px; text-align: center; min-height: 20px; }
.form-msg.success { color: #4ade80; }
.form-msg.error { color: #f87171; }

/* ---------- MAP ---------- */
.map-band { padding-top: 0; }
.map-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(201,162,39,.15);
}
.map-placeholder {
  height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background:
    radial-gradient(circle at 50% 40%, rgba(201,162,39,.1), transparent 50%),
    linear-gradient(145deg, var(--bg-card), var(--bg-soft));
  text-align: center;
}
.map-placeholder i { font-size: 60px; color: var(--gold-light); }
.map-placeholder p { font-family: var(--font-head); font-size: 20px; }

/* ---------- 404 ---------- */
.error-section { min-height: 100vh; display: flex; align-items: center; padding: 140px 0; }
.error-content { text-align: center; }
.error-code {
  font-family: var(--font-head);
  font-size: 140px;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 3px var(--gold);
  margin-bottom: 20px;
}
.error-content h1 { font-family: var(--font-head); font-size: 34px; margin-bottom: 14px; }
.error-content p { color: var(--text-muted); font-size: 16px; margin-bottom: 30px; }
.error-content .btn { margin: 6px 6px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .about-flex, .story, .contact-flex { grid-template-columns: 1fr; gap: 40px; }
  .about-media { height: auto; min-height: 400px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 78px; left: 0; right: 0;
    background: rgba(12,12,24,.98);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    transform: translateX(-100%);
    transition: var(--transition);
    border-bottom: 1px solid rgba(201,162,39,.2);
  }
  .nav-menu.open { transform: translateX(0); }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .hero-stats, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding-top: 130px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; grid-row: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .img-frame.large { left: 0; width: 100%; height: 360px; }
  .img-frame.small { width: 150px; height: 150px; }
  .award-note { left: 0; bottom: -30px; }
}
