/* ===========================
   KAVITY KRAVINGS — style.css
   =========================== */

:root {
  /* Honey gold with amber undertone */
  --gold: #c8860a;
  --gold-light: #e8a020;
  --gold-dark: #7a4f08;
  /* True black */
  --dark: #080808;
  --dark-2: #0f0d0b;
  --dark-3: #161210;
  --dark-4: #1e1814;
  /* Pearl white */
  --text: #f2ece0;
  --white: #f8f4ee;
  /* Copper / bronze */
  --copper: #b5651d;
  --bronze: #8c5523;
  --text-muted: #9c6e3a;
  --radius: 12px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: clip;
}

/* TYPOGRAPHY */
h1, h2, h3 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.4rem;
}

p {
  line-height: 1.7;
  color: var(--text-muted);
}

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

.gold {
  color: var(--gold-light);
  text-shadow: 0 0 20px rgba(200, 134, 10, 0.4);
}

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

.section-label {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dark);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  background: rgba(200, 134, 10, 0.08);
}

.section-sub {
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 2.5rem;
  color: hsl(40, 10%, 55%);
}

.hidden {
  display: none !important;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(200, 134, 10, 0.35);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), #ffe080);
  box-shadow: 0 6px 30px rgba(200, 134, 10, 0.55);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: rgba(200, 134, 10, 0.12);
  border-color: var(--gold-light);
}

.btn-lg {
  padding: 1rem 2.8rem;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
}


/* =====================
   NAVBAR
   ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 2rem;
  transition: background 0.4s ease, padding 0.4s ease;
}

.navbar.scrolled {
  background: rgba(8, 8, 8, 0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 0.8rem 2rem;
  border-bottom: 1px solid rgba(200, 134, 10, 0.2);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--gold-light);
  line-height: 1;
}

.logo-text em {
  font-style: italic;
  color: var(--white);
}

.footer-logo {
  font-size: 2rem;
}

.nav-logo .hero-logo-img {
  width: 100px;
  height: auto;
  margin-bottom: 0;
  animation: none;
}

.footer-brand .hero-logo-img {
  width: 120px;
  height: auto;
  margin-bottom: 0.5rem;
  animation: none;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  transition: color var(--transition);
}

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

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--dark) !important;
  padding: 0.5rem 1.3rem;
  border-radius: 4px;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(200, 134, 10, 0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: var(--transition);
}


/* =====================
   HERO
   ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/background.png');
  background-size: cover;
  background-position: center top;
  filter: brightness(0.45) saturate(1.2);
  transform: scale(1.05);
  transition: transform 0.1s ease-out;
}

.drip-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center top, rgba(200, 134, 10, 0.12) 0%, transparent 60%),
    linear-gradient(to bottom, transparent 40%, rgba(10,5,0,0.7) 80%, var(--dark) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}

.hero-logo-img {
  width: min(400px, 85vw);
  height: auto;
  margin-bottom: 1.5rem;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 8px 40px rgba(212,160,23,0.6));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-tagline {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(0.9rem, 2.0vw, 1.2rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator span {
  display: block;
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}


/* =====================
   MARQUEE
   ===================== */
.marquee-bar {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  padding: 0.7rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 25s linear infinite;
}

.marquee-track span {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  padding: 0 1.5rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}


/* =====================
   ABOUT
   ===================== */
.about {
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.about-text .btn {
  margin-top: 0.5rem;
}

.about-card {
  background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
  border: 1px solid rgba(200, 134, 10, 0.2);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.about-card-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.divider-v {
  width: 1px;
  height: 80px;
  background: rgba(200, 134, 10, 0.3);
}

.drip-accent {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 20px;
  background: var(--gold);
  clip-path: polygon(10% 0%, 90% 0%, 100% 70%, 80% 100%, 60% 70%, 50% 100%, 40% 70%, 20% 100%, 0% 70%);
}


/* =====================
   MENU
   ===================== */
.menu {
  padding: 7rem 0;
  background: var(--dark-2);
}

/* Menu heading */
.menu-heading {
  padding-bottom: 0;
  margin-bottom: 0;
}

/* Sticky tab nav */
.menu-nav {
  position: sticky;
  top: 95px;
  z-index: 50;
  background: var(--dark-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.menu-nav-inner {
  display: flex;
  gap: 0.25rem;
  padding: 0.6rem 1.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-width: 1200px;
  margin: 0 auto;
}
.menu-nav-inner::-webkit-scrollbar { display: none; }

.tab-btn {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  background: transparent;
  border: 1px solid rgba(200, 134, 10, 0.25);
  color: var(--text-muted);
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.tab-btn.active,
.tab-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  border-color: transparent;
}

/* Sections container */
.menu-sections {
  padding-top: 0;
}

.menu-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  scroll-margin-top: 120px;
}
.menu-section:last-of-type {
  border-bottom: none;
}

/* Section header */
.menu-section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.section-emoji {
  font-size: 1.6rem;
  line-height: 1;
}

.menu-section-header h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin: 0;
}

.section-desc {
  color: hsl(40, 10%, 55%);
  font-size: 0.95rem;
  max-width: 600px;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

/* Combo grid */
.combo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1rem;
}

.combo-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 1.2rem 1.4rem;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  cursor: default;
}
.combo-item:hover {
  background: rgba(200, 134, 10, 0.07);
  border-color: rgba(200, 134, 10, 0.4);
  box-shadow: 0 4px 24px rgba(200, 134, 10, 0.1);
}

.combo-item-name {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.size-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 0.5rem;
}

.size-chip {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 0.3rem 0.6rem;
}

.size-label {
  font-size: 0.72rem;
  color: hsl(40, 10%, 55%);
  font-weight: 500;
}

.size-price {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
}

/* Combo note */
.menu-combo-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 146, 42, 0.15);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  margin-top: 1rem;
}
.combo-note-icon {
  font-size: 0.85rem;
  margin-top: 1px;
  flex-shrink: 0;
}
.menu-combo-note p {
  font-size: 0.75rem;
  color: hsl(40, 10%, 55%);
  line-height: 1.6;
  margin: 0;
}

/* Pill tags */
.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.pill {
  display: inline-block;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-size: 0.82rem;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  cursor: default;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.pill:hover {
  background: rgba(200, 134, 10, 0.15);
  border-color: rgba(200, 134, 10, 0.5);
  color: var(--gold-light);
}

/* Sub-sections (Batter/Coat, Fillings, etc.) */
.sub-section {
  margin-bottom: 1.5rem;
}
.sub-section:last-child { margin-bottom: 0; }

.sub-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.sub-label::before,
.sub-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.35;
}


/* Chimney Cakes price boxes */
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 400px;
  margin-top: 1rem;
}

.price-box {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
}

.price-box-name {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: hsl(40, 10%, 55%);
  margin-bottom: 0.4rem;
}

.price-box-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.menu-footer {
  text-align: center;
  padding: 2rem 0 1rem;
  font-size: 0.85rem;
  color: hsl(40, 10%, 55%);
}


/* =====================
   ORDER CTA
   ===================== */
.order-cta {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.order-cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/background.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.25) saturate(0.8);
}

.order-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,160,23,0.08) 0%, rgba(10,5,0,0.7) 70%);
}

.order-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.order-cta-content h2 {
  margin-bottom: 1rem;
}

.order-cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.order-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.qr-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.qr-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  object-position: center bottom;
  border-radius: 8px;
  border: 3px solid var(--gold);
  box-shadow: 0 4px 20px rgba(212,160,23,0.3);
}

.qr-section span {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}


/* =====================
   LOCATION
   ===================== */
.location {
  padding: 7rem 0;
  background: var(--dark);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.location-card {
  background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
  border: 1px solid rgba(200, 134, 10, 0.2);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}

.location-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 134, 10, 0.45);
}

.location-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.location-card h3 {
  color: var(--text);
  margin-bottom: 0.8rem;
}

.location-card p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.location-card .btn {
  font-size: 0.85rem;
  padding: 0.6rem 1.4rem;
}

.hours-list {
  list-style: none;
  margin-bottom: 1.5rem;
  text-align: left;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(212,160,23,0.1);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hours-list li:last-child { border-bottom: none; }


/* =====================
   SOCIAL
   ===================== */
.social-section {
  padding: 5rem 0;
  background: var(--dark-2);
  text-align: center;
}

.social-section h2 { margin-bottom: 0.5rem; }
.social-section p { margin-bottom: 2.5rem; }

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid rgba(200, 134, 10, 0.3);
  padding: 0.7rem 1.6rem;
  border-radius: 4px;
  transition: var(--transition);
}

.social-btn svg {
  width: 18px;
  height: 18px;
}

.social-btn:hover {
  background: rgba(200, 134, 10, 0.1);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}


/* =====================
   CONTACT
   ===================== */
.contact {
  padding: 7rem 0;
  background: var(--dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 2rem; font-size: 1.05rem; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.contact-icon { font-size: 1.2rem; }

.contact-item a {
  color: var(--gold-light);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  transition: color var(--transition);
}

.contact-item a:hover { color: var(--white); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark-3);
  border: 1px solid rgba(200, 134, 10, 0.25);
  border-radius: 6px;
  padding: 0.9rem 1rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 134, 10, 0.12);
}

.form-group select {
  color: var(--text-muted);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c8860a' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}


/* =====================
   FOOTER
   ===================== */
.footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(200, 134, 10, 0.15);
  padding: 3rem 0 1.5rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(200, 134, 10, 0.1);
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 0.4rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}


/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-visual {
    max-width: 420px;
  }
}

@media (max-width: 700px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 5, 0, 0.97);
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid rgba(212,160,23,0.2);
  }

  .nav-links.open { display: flex; }

  .nav-toggle { display: flex; }

  .nav-inner { position: relative; }

  .hero-buttons { flex-direction: column; align-items: center; }

  .footer-top { flex-direction: column; }

  .footer-links { justify-content: center; }

  .order-buttons { flex-direction: column; align-items: center; }

  .about-card-inner { flex-direction: column; }
  .divider-v { width: 60px; height: 1px; }
}
