/* ==========================================================================
   BLONDIES BAKERY - Editorial Luxury / Modern Hospitality Theme
   Business Name: BLONDIES BAKERY (blondiesbakery.store)
   Email: dev@blondiesbakery.store
   Aesthetic: Editorial Luxury, Warm Cream, Rich Charcoal, Warm Terracotta Gold
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Palette: Editorial Luxury / Modern Hospitality */
  --bg-dark: #FAF7F2;          /* Warm cream editorial canvas */
  --bg-card: #FFFFFF;          /* Pure crisp white cards */
  --bg-card-hover: #FDFBF8;
  --bg-surface: #F3ECE2;       /* Warm linen surface */
  
  --brand-dark: #2D2926;       /* Deep warm charcoal/espresso */
  --brand-accent: #D4A373;     /* Warm terracotta gold accent */
  --gold-primary: #C58B51;     /* Rich warm gold */
  --gold-light: #E8C9A6;
  --gold-dark: #A26B33;
  --gold-border: rgba(45, 41, 38, 0.12);
  --gold-glow: rgba(212, 163, 115, 0.15);

  --text-primary: #2D2926;     /* High-contrast rich charcoal */
  --text-secondary: #59534C;   /* Warm medium gray */
  --text-muted: #8A8177;       /* Soft editorial gray */

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --radius-sm: 4px;            /* Editorial precise sharp-soft corners */
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --shadow-soft: 0 12px 35px rgba(45, 41, 38, 0.06);
  --shadow-gold: 0 8px 25px rgba(212, 163, 115, 0.25);

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Preloader Safety */
#preloader {
  position: fixed;
  inset: 0;
  background-color: #FAF7F2;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.dismissed {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  width: 110px;
  height: 110px;
  object-fit: contain;
  animation: pulseLogo 1.5s ease-in-out infinite;
}

.loader-spinner {
  width: 36px;
  height: 36px;
  margin-top: 20px;
  border: 2px solid rgba(45, 41, 38, 0.1);
  border-top-color: var(--brand-accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulseLogo {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.05); opacity: 1; }
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  background: var(--brand-dark);
  color: #FAF7F2;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  z-index: 100000;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 16px;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Typography */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--brand-dark);
  line-height: 1.18;
}

.gold-gradient-text {
  color: var(--brand-dark);
  background: linear-gradient(135deg, #2D2926 0%, #D4A373 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-accent);
  background: rgba(212, 163, 115, 0.1);
  border: 1px solid rgba(212, 163, 115, 0.3);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
  font-weight: 600;
}

.section-title {
  font-size: 2.75rem;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 400;
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-border);
  transition: background-color 0.3s ease;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--brand-dark);
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--brand-dark);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--brand-accent);
  transition: width 0.25s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  color: var(--brand-dark);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all var(--transition-fast);
  font-size: 1.1rem;
}

.icon-btn:hover {
  background: var(--brand-dark);
  color: #FAF7F2;
  border-color: var(--brand-dark);
}

.badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--brand-accent);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-dark);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--brand-dark);
  color: #FAF7F2;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 1px solid var(--brand-dark);
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 15px rgba(45, 41, 38, 0.12);
}

.btn-primary:hover {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 163, 115, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--bg-card);
  color: var(--brand-dark);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 1px solid var(--gold-border);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  background: var(--brand-dark);
  color: #FAF7F2;
  border-color: var(--brand-dark);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--brand-dark);
  font-size: 1.6rem;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  padding: 100px 0 80px 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(212, 163, 115, 0.08) 0%, transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 163, 115, 0.12);
  border: 1px solid rgba(212, 163, 115, 0.3);
  color: var(--brand-dark);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 4rem;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.1;
  font-style: italic;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 580px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-soft);
}

.hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-card:hover .hero-img {
  transform: scale(1.04);
}

.hero-floating-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold-border);
  padding: 18px 24px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-soft);
}

.badge-icon {
  width: 44px;
  height: 44px;
  background: rgba(212, 163, 115, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-accent);
  font-size: 1.2rem;
}

/* Catalog Section */
.catalog-section {
  padding: 90px 0;
  background-color: var(--bg-dark);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 36px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--brand-accent);
}

.product-img-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-img {
  transform: scale(1.06);
}

.fav-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold-border);
  color: var(--brand-dark);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 1.1rem;
}

.fav-btn.is-fav {
  color: #D9534F;
  background: #FFFFFF;
  border-color: #D9534F;
}

.product-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.product-name {
  font-size: 1.35rem;
  color: var(--brand-dark);
  font-family: var(--font-heading);
}

.product-tag {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  background: var(--bg-surface);
  color: var(--brand-dark);
  border-radius: var(--radius-full);
  font-weight: 700;
  border: 1px solid var(--gold-border);
}

.product-desc {
  font-size: 0.98rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.6;
}

.allergen-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.allergen-pill {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--bg-surface);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--gold-border);
}

.add-cart-btn {
  width: 100%;
}

/* Feature Cards Grid */
.features-section, .services-section, .why-us-section {
  padding: 90px 0;
}

.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  padding: 38px;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-accent);
  box-shadow: var(--shadow-soft);
}

.feature-icon-box {
  width: 60px;
  height: 60px;
  background: var(--bg-surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-dark);
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.feature-title {
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.feature-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.65;
}

/* Allergen Banner Notice */
.allergen-banner {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 28px 36px;
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  box-shadow: var(--shadow-soft);
}

.allergen-text {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-secondary);
  font-size: 0.98rem;
}

/* Contact Section */
.contact-section {
  padding: 90px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.contact-card-box {
  max-width: 820px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.contact-email-link {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand-dark);
  text-decoration: none;
  display: inline-block;
  margin: 20px 0;
  word-break: break-all;
  transition: color var(--transition-fast);
  font-family: var(--font-heading);
}

.contact-email-link:hover {
  color: var(--brand-accent);
}

/* Privacy Policy Layout */
.privacy-page {
  padding: 70px 0 110px 0;
}

.privacy-header {
  margin-bottom: 40px;
  border-bottom: 1px solid var(--gold-border);
  padding-bottom: 32px;
  text-align: center;
}

.privacy-layout {
  display: block;
  max-width: 900px;
  margin: 0 auto;
}

.toc-sidebar {
  position: sticky;
  top: 110px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 28px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  box-shadow: var(--shadow-soft);
}

.toc-title {
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--brand-dark);
  border-bottom: 1px solid var(--gold-border);
  padding-bottom: 12px;
}

.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toc-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  display: block;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  word-break: break-word;
}

.toc-link:hover, .toc-link.active {
  color: var(--brand-dark);
  background: var(--bg-surface);
  font-weight: 600;
}

.policy-content {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 48px;
  box-shadow: var(--shadow-soft);
}

.policy-section {
  margin-bottom: 44px;
  scroll-margin-top: 120px;
}

.policy-section:last-child {
  margin-bottom: 0;
}

.policy-section h2 {
  font-size: 1.5rem;
  color: var(--brand-dark);
  margin-bottom: 18px;
  border-bottom: 1px solid var(--gold-border);
  padding-bottom: 10px;
}

.policy-section p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 1.02rem;
  line-height: 1.7;
}

.policy-section ul {
  list-style: disc;
  padding-left: 26px;
  margin-bottom: 18px;
  color: var(--text-secondary);
}

.policy-section li {
  margin-bottom: 8px;
}

/* Modals & Cart Drawer */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45, 41, 38, 0.65);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: 0 20px 50px rgba(45, 41, 38, 0.2);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.open .modal-container {
  transform: translateY(0);
}

.close-modal-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.6rem;
  cursor: pointer;
}

.close-modal-btn:hover {
  color: var(--brand-dark);
}

/* Forms */
.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid var(--gold-border);
  color: var(--text-primary);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.98rem;
  font-family: var(--font-body);
}

.form-control:focus {
  outline: none;
  border-color: var(--brand-dark);
  box-shadow: 0 0 0 3px rgba(45, 41, 38, 0.08);
}

/* Cart Items List */
.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
  max-height: 240px;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-surface);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold-border);
}

.cart-item-info h4 {
  font-size: 1rem;
  color: var(--brand-dark);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.qty-btn {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  color: var(--brand-dark);
  width: 28px;
  height: 28px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Footer */
.site-footer {
  background-color: #2D2926;
  color: #FAF7F2;
  border-top: 1px solid var(--gold-border);
  padding: 70px 0 40px 0;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: #D8C7B5;
  text-decoration: none;
  font-size: 0.92rem;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--brand-accent);
}

.footer-bottom {
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.88rem;
  color: #A38F7C;
}

/* Scroll To Top */
.scroll-top-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--brand-dark);
  color: #FAF7F2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(45, 41, 38, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 900;
  font-size: 1.2rem;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  transform: translateY(-4px);
  background: var(--brand-accent);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-title {
    font-size: 3.2rem;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta {
    justify-content: center;
  }
  .privacy-layout {
    grid-template-columns: 1fr;
  }
  .toc-sidebar {
    position: static;
    max-height: none;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 84px;
    left: 0;
    width: 100%;
    background: #FAF7F2;
    border-bottom: 1px solid var(--gold-border);
    flex-direction: column;
    padding: 28px;
    gap: 22px;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-soft);
  }
  .nav-menu.open {
    transform: translateY(0);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

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