/* ═══════════════════════════════════════════════════════════════
   SWEET DELIGHTS — styles.css
   Theme: Black & Mustard Gold — Luxury Patisserie
   Fonts: Fraunces (display) · Lato (body) · DM Mono (accents)
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. CSS Custom Properties ───────────────────────────── */
:root {
  /* Core palette */
  --black:       #0a0a0a;
  --black-2:     #111111;
  --black-3:     #1a1a1a;
  --black-4:     #222222;
  --black-5:     #2e2e2e;
  --mustard:     #e8a910;
  --mustard-lt:  #f5c842;
  --mustard-dk:  #c48a00;
  --mustard-dim: rgba(232,169,16,0.12);
  --mustard-glow:rgba(232,169,16,0.25);
  --white:       #f9f5ee;
  --white-dim:   rgba(249,245,238,0.65);
  --white-muted: rgba(249,245,238,0.35);
  --border:      rgba(255,255,255,0.08);
  --border-gold: rgba(232,169,16,0.3);

  /* Shadows */
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.5);
  --shadow-md:   0 6px 28px rgba(0,0,0,0.6);
  --shadow-gold: 0 8px 32px rgba(232,169,16,0.2);

  /* Transitions */
  --tr: 0.3s ease;
}

/* ── 2. Base & Typography ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black-2); }
::-webkit-scrollbar-thumb { background: var(--mustard); border-radius: 3px; }

/* ── 3. Navbar ──────────────────────────────────────────── */
#mainNav {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold);
  padding: 0.8rem 0;
  transition: box-shadow var(--tr), background var(--tr);
  z-index: 1040;
}
#mainNav.scrolled {
  background: rgba(10,10,10,0.98);
  box-shadow: 0 2px 30px rgba(0,0,0,0.7);
}

/* Brand */
.navbar-brand { text-decoration: none; display: flex; align-items: center; gap: 6px; }
.brand-icon {
  color: var(--mustard);
  font-size: 1.4rem;
  animation: spinStar 6s linear infinite;
}
@keyframes spinStar {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.brand-text {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}
.brand-text em { font-style: italic; color: var(--mustard); }

/* Nav links */
.navbar-nav .nav-link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  padding: 0.5rem 0.85rem;
  position: relative;
  transition: color var(--tr);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%; right: 50%;
  height: 2px;
  background: var(--mustard);
  transition: left 0.25s ease, right 0.25s ease;
}
.navbar-nav .nav-link:hover::after { left: 15%; right: 15%; }
.navbar-nav .nav-link:hover { color: var(--mustard); }

/* Nav CTA */
.btn-order-nav {
  background: var(--mustard);
  color: var(--black);
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  border: none;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn-order-nav:hover {
  background: var(--mustard-lt);
  color: var(--black);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* Hamburger */
.custom-toggler {
  background: transparent;
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  padding: 6px 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.custom-toggler span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--mustard);
  border-radius: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.custom-toggler[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.custom-toggler[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.custom-toggler[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.custom-toggler:focus { box-shadow: none; }

/* Mobile nav */
@media (max-width: 991px) {
  .navbar-collapse { padding: 0.75rem 0 1rem; border-top: 1px solid var(--border-gold); margin-top: 0.5rem; }
  .navbar-nav .nav-link::after { display: none; }
  .navbar-nav .nav-link { padding: 0.55rem 0; }
  .btn-order-nav { display: inline-block; margin-top: 0.5rem; }
}

/* ── 4. Reusable Buttons ────────────────────────────────── */
.btn-hero-primary {
  background: var(--mustard);
  color: var(--black);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 3rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}
.btn-hero-primary:hover {
  background: var(--mustard-lt);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-hero-ghost {
  background: transparent;
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: 1.5px solid var(--border-gold);
  border-radius: 3rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}
.btn-hero-ghost:hover {
  border-color: var(--mustard);
  color: var(--mustard);
  background: var(--mustard-dim);
}

/* ── 5. Hero ────────────────────────────────────────────── */
.hero-section {
  background: var(--black);
  min-height: 100vh;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}

/* Animated gold border lines */
.hero-lines { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--mustard), transparent);
  height: 1px;
  opacity: 0.15;
}
.line-1 { top: 20%; width: 100%; animation: driftLine 8s ease-in-out infinite; }
.line-2 { top: 50%; width: 70%; left: 15%; animation: driftLine 10s 2s ease-in-out infinite reverse; }
.line-3 { top: 80%; width: 50%; left: 25%; animation: driftLine 12s 1s ease-in-out infinite; }
@keyframes driftLine {
  0%,100% { opacity: 0.1; transform: scaleX(0.8); }
  50%      { opacity: 0.25; transform: scaleX(1.05); }
}

/* Left hero content */
.hero-left { position: relative; z-index: 1; padding: 3rem 0; }

.hero-overline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mustard);
  margin-bottom: 1.25rem;
}
.overline-tick {
  width: 30px;
  height: 2px;
  background: var(--mustard);
  display: inline-block;
}

.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease both;
}
.hero-headline em {
  font-style: italic;
  color: var(--mustard);
}

.hero-sub {
  font-size: 1rem;
  color: var(--white-dim);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.15s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeUp 0.8s 0.25s ease both;
}

/* Stats */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--black-3);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  max-width: 420px;
  animation: fadeUp 0.8s 0.35s ease both;
}
.stat-item { text-align: center; }
.stat-n {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--mustard);
  line-height: 1;
}
.stat-l {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-top: 2px;
  display: block;
}
.stat-sep {
  width: 1px;
  height: 36px;
  background: var(--border-gold);
}

/* Hero right collage */
.hero-right {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
  justify-content: flex-end;
  align-items: center;
}
.hero-collage {
  position: relative;
  width: 460px;
  display: flex;
  gap: 12px;
  animation: fadeUp 0.9s 0.2s ease both;
}
.collage-main {
  flex: 1;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
}
.collage-main img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.collage-main:hover img { transform: scale(1.05); }
.collage-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--mustard);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
}

.collage-side {
  width: 120px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
}
.collage-sm {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  height: 170px;
}
.collage-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.collage-sm:hover img { transform: scale(1.08); }

/* Scroll nudge */
.scroll-nudge {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 1;
}
.scroll-nudge span {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white-muted);
}
.nudge-bar {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--mustard), transparent);
  animation: nudgePulse 1.6s ease-in-out infinite;
}
@keyframes nudgePulse {
  0%,100% { opacity: 0.3; transform: scaleY(0.7); }
  50%      { opacity: 1;   transform: scaleY(1); }
}

/* ── 6. Section Shared Styles ───────────────────────────── */
.section-overline {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mustard);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.section-title em { font-style: italic; color: var(--mustard); }
.section-sub {
  font-size: 0.95rem;
  color: var(--white-dim);
  max-width: 540px;
  margin: 0 auto;
}
.section-header { margin-bottom: 3rem; }

/* ── 7. Cake Categories ─────────────────────────────────── */
.cakes-section {
  background: var(--black-2);
  padding: 6rem 0;
  position: relative;
}
.cakes-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mustard), transparent);
  opacity: 0.3;
}

/* Cake Card */
.cake-card {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;
  animation: fadeUp 0.5s ease both;
}
.cake-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 0 1px var(--mustard);
  border-color: var(--mustard);
}
.cake-card.selected {
  border-color: var(--mustard);
  box-shadow: 0 0 0 2px var(--mustard), var(--shadow-gold);
}

/* Stagger */
.cake-card:nth-child(1) { animation-delay: 0.05s; }
.cake-card:nth-child(2) { animation-delay: 0.1s; }
.cake-card:nth-child(3) { animation-delay: 0.15s; }
.cake-card:nth-child(4) { animation-delay: 0.2s; }

/* Image */
.cake-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.cake-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.cake-card:hover .cake-img { transform: scale(1.07); }

/* Emoji badge */
.cake-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 1px solid var(--border-gold);
}

/* Hover overlay with CTA */
.cake-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cake-card:hover .cake-overlay { opacity: 1; }

.btn-overlay {
  background: var(--mustard);
  color: var(--black);
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  border: none;
  border-radius: 2rem;
  transition: all 0.2s ease;
}
.btn-overlay:hover {
  background: var(--mustard-lt);
  transform: scale(1.04);
}

/* Body */
.cake-body { padding: 1.1rem 1.25rem 1.3rem; }
.cake-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mustard);
  display: block;
  margin-bottom: 0.3rem;
}
.cake-name {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.cake-desc {
  font-size: 0.82rem;
  color: var(--white-muted);
  line-height: 1.55;
  margin-bottom: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cake-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cake-price {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--mustard);
}
.btn-card-cta {
  background: transparent;
  border: 1px solid var(--mustard);
  color: var(--mustard);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.btn-card-cta:hover {
  background: var(--mustard);
  color: var(--black);
}

/* ── 8. Products Section ────────────────────────────────── */
.products-section {
  background: var(--black);
  padding: 5rem 0;
}

.product-card {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.product-card:hover {
  border-color: var(--mustard);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}
.product-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.product-label {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--mustard);
  color: var(--black);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.22rem 0.6rem;
  border-radius: 2rem;
}
.new-label { background: #2dd4bf; color: #0a0a0a; }

.product-body { padding: 1rem 1.2rem 1.2rem; }
.product-flavor {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--mustard);
}
.product-price small { font-size: 0.72rem; color: var(--white-muted); }
.product-rating {
  font-size: 0.75rem;
  color: var(--mustard);
}
.product-rating span {
  color: var(--white-dim);
  font-size: 0.68rem;
  margin-left: 2px;
}

.btn-product {
  background: var(--black-5);
  color: var(--mustard);
  border: 1px solid var(--border-gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem;
  border-radius: 8px;
  transition: all 0.25s ease;
}
.btn-product:hover {
  background: var(--mustard);
  color: var(--black);
  border-color: var(--mustard);
}

/* ── 9. Custom Order Section ────────────────────────────── */
.custom-section {
  background: var(--black-2);
  padding: 6rem 0;
  position: relative;
}

.custom-desc {
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.custom-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.custom-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white-dim);
}
.custom-features li i { color: var(--mustard); font-size: 0.95rem; }

/* Order summary box */
.order-summary {
  background: var(--black-4);
  border: 1px solid var(--mustard);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-top: 0.5rem;
  animation: fadeUp 0.3s ease;
}
.summary-title {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mustard);
  margin-bottom: 0.6rem;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--white-dim);
  margin-bottom: 0.3rem;
}
.summary-line strong { color: var(--white); }
.summary-total {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  color: var(--mustard);
  font-weight: 700;
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--border-gold);
}

/* Custom Form Card */
.custom-form-card {
  background: var(--black-3);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow-md);
}
.form-heading {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-gold);
}

/* Labels */
.form-label-custom {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mustard);
  display: block;
  margin-bottom: 0.4rem;
}

/* Inputs */
.custom-input {
  background: var(--black-5) !important;
  border: 1.5px solid var(--border) !important;
  border-radius: 10px !important;
  color: var(--white) !important;
  font-family: 'Lato', sans-serif !important;
  font-size: 0.88rem !important;
  padding: 0.7rem 1rem !important;
  transition: all var(--tr) !important;
}
.custom-input::placeholder { color: var(--white-muted) !important; }
.custom-input:focus {
  border-color: var(--mustard) !important;
  box-shadow: 0 0 0 3px var(--mustard-glow) !important;
  outline: none !important;
  background: var(--black-4) !important;
}
.custom-input.is-invalid { border-color: #f87171 !important; }

/* Select */
.custom-select {
  background: var(--black-5) !important;
  border: 1.5px solid var(--border) !important;
  border-radius: 10px !important;
  color: var(--white) !important;
  font-family: 'Lato', sans-serif !important;
  font-size: 0.88rem !important;
  padding: 0.7rem 1rem !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23e8a910' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
  transition: all var(--tr) !important;
}
.custom-select option { background: var(--black-3); color: var(--white); }
.custom-select:focus {
  border-color: var(--mustard) !important;
  box-shadow: 0 0 0 3px var(--mustard-glow) !important;
  outline: none !important;
}
.custom-select.is-invalid { border-color: #f87171 !important; }

/* Error messages */
.err-msg {
  display: none;
  font-size: 0.72rem;
  color: #f87171;
  margin-top: 0.3rem;
  font-weight: 600;
}
.err-msg.show { display: block; }

/* Char count */
.char-count {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  color: var(--white-muted);
  display: block;
  text-align: right;
  margin-top: 0.25rem;
}

/* Quantity */
.qty-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  width: fit-content;
  border: 1.5px solid var(--border-gold);
  border-radius: 10px;
  overflow: hidden;
}
.qty-btn {
  width: 40px;
  height: 40px;
  background: var(--black-5);
  border: none;
  color: var(--mustard);
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-btn:hover { background: var(--mustard); color: var(--black); }
.qty-display {
  width: 44px;
  text-align: center;
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  background: var(--black-4);
  height: 40px;
  line-height: 40px;
  border-left: 1px solid var(--border-gold);
  border-right: 1px solid var(--border-gold);
}

/* Submit buttons */
.btn-custom-submit,
.btn-contact-submit {
  background: var(--mustard);
  color: var(--black);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem;
  border: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}
.btn-custom-submit:hover,
.btn-contact-submit:hover {
  background: var(--mustard-lt);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--black);
}

/* ── 10. Contact Section ────────────────────────────────── */
.contact-section {
  background: var(--black);
  padding: 6rem 0;
}
.contact-card {
  background: var(--black-3);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.success-alert {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(232,169,16,0.1);
  border: 1px solid var(--mustard);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--mustard);
  animation: fadeUp 0.4s ease;
}
.success-alert i { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.success-alert strong { display: block; font-size: 1rem; margin-bottom: 0.2rem; color: var(--white); }
.success-alert p { font-size: 0.82rem; color: var(--white-dim); }

/* ── 11. Quick Modal ────────────────────────────────────── */
.custom-modal {
  background: var(--black-3);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
}
.custom-modal .modal-header {
  border-bottom: 1px solid var(--border-gold);
  padding: 1.25rem 1.5rem;
}
.custom-modal .modal-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  color: var(--white);
}
.modal-sub {
  font-size: 0.82rem;
  color: var(--mustard);
  margin-bottom: 1.25rem;
}
.custom-modal .modal-footer { border-top: 1px solid var(--border-gold); }

/* ── 12. Footer ─────────────────────────────────────────── */
.site-footer {
  background: var(--black-2);
  border-top: 1px solid var(--border-gold);
  padding: 3.5rem 0 1.5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}
.footer-brand .brand-text { font-size: 1.2rem; }
.footer-tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--white-muted);
  margin-top: 6px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--mustard); }
.footer-contact p {
  font-size: 0.8rem;
  color: var(--white-dim);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 4px;
}
.footer-contact i { color: var(--mustard); }
.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  color: var(--white-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
}
.footer-socials a:hover {
  background: var(--mustard);
  color: var(--black);
  border-color: var(--mustard);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.72rem;
  color: var(--white-muted);
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-socials { flex-direction: row; }
}
@media (max-width: 576px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ── 13. Back to Top ────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--mustard);
  color: var(--black);
  border: none;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--mustard-lt);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

/* ── 14. Toast ──────────────────────────────────────────── */
.custom-toast {
  background: var(--black-4);
  border: 1px solid var(--mustard);
  border-radius: 10px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  min-width: 220px;
}

/* ── 15. Scroll Reveal ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── 16. Animations ─────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── 17. Responsive ─────────────────────────────────────── */
@media (max-width: 992px) {
  .hero-headline { font-size: 3rem; }
  .hero-stats { max-width: 100%; }
}
@media (max-width: 576px) {
  .hero-headline { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; }
  .btn-hero-primary, .btn-hero-ghost { justify-content: center; width: 100%; }
  .custom-form-card, .contact-card { padding: 1.25rem; }
  .collage-sm { height: 130px; }
}