/* ==========================================================================
   THE NATION'S BAKE SHOP (@thenationsbakespk) - MAIN STYLESHEET
   Aesthetic: Dark Obsidian / Rich Brown tones with Elegant Gold & Tan Accents
   ========================================================================== */

/* ---------------- Root CSS Variables ---------------- */
:root {
  /* Backgrounds */
  --bg-primary: #0d0907;
  --bg-secondary: #140d0a;
  --bg-surface: #1b120d;
  --bg-card: #201610;
  --bg-card-hover: #2a1d16;
  --bg-nav: rgba(13, 9, 7, 0.92);

  /* Brand Accents (Gold & Tan) */
  --gold-primary: #d4af37;
  --gold-light: #eacb6e;
  --gold-dark: #b58e22;
  --gold-subtle: rgba(212, 175, 55, 0.12);
  --gold-border: rgba(212, 175, 55, 0.28);
  --gold-glow: rgba(212, 175, 55, 0.4);

  /* Typography Colors */
  --text-main: #fbf8f2;
  --text-muted: #c8bcad;
  --text-dim: #8c8072;

  /* Strict Plain Grey Placeholder Colors */
  --placeholder-bg: #2b2b2b;
  --placeholder-border: #3b3b3b;
  --placeholder-tag-bg: #222222;
  --placeholder-text: #787878;

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout & Spacing */
  --container-width: 1200px;
  --header-height: 80px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ---------------- Utility Classes ---------------- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-pill);
  transition: all var(--transition-smooth);
  white-space: nowrap;
  text-decoration: none;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 50%, var(--gold-primary) 100%);
  background-size: 200% auto;
  color: #0f0b08;
  box-shadow: 0 4px 20px var(--gold-glow);
  font-weight: 700;
}

.btn-gold:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.55);
  color: #000;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  border: 1px solid var(--gold-border);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: var(--gold-subtle);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-large {
  padding: 0.95rem 2.2rem;
  font-size: 1.05rem;
}

.btn-small {
  padding: 0.6rem 1.25rem;
  font-size: 0.88rem;
}

.btn-block {
  width: 100%;
}

/* ---------------- Strict Plain Grey Placeholders ---------------- */
.grey-placeholder-box {
  background-color: var(--placeholder-bg);
  border: 1px solid var(--placeholder-border);
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.placeholder-tag {
  color: var(--placeholder-text);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--placeholder-tag-bg);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
  user-select: none;
}

/* Aspect Ratios */
.ratio-4-3 {
  aspect-ratio: 4 / 3;
}

.ratio-9-16 {
  aspect-ratio: 9 / 16;
}

.ratio-1-1 {
  aspect-ratio: 1 / 1;
}

/* ---------------- Section Headings ---------------- */
.section-badge-center {
  text-align: center;
  margin-bottom: 0.75rem;
}

.badge-sub {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
}

.section-title-center {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  color: var(--text-main);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-desc-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem auto;
  color: var(--text-muted);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  line-height: 1.7;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.section-kicker {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  margin-bottom: 0.4rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  color: var(--text-main);
  font-weight: 600;
  line-height: 1.2;
}

.section-subtitle {
  max-width: 480px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* ==================== 1. TOP NAVBAR ==================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: var(--bg-nav);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  transition: all var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(10, 7, 5, 0.96);
  border-bottom-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.nav-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo & Brand */
.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 0 12px var(--gold-glow);
  transition: transform var(--transition-fast);
}

.brand-logo-link:hover .brand-logo-img {
  transform: scale(1.05);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.brand-handle {
  font-size: 0.78rem;
  color: var(--gold-primary);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Desktop Links */
.desktop-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 0.3rem 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: width var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}

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

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  padding: 0;
  z-index: 1001;
}

.hamburger-bar {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--text-main);
  border-radius: 2px;
  transition: all var(--transition-smooth);
}

.mobile-toggle.active .hamburger-bar:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
  background: var(--gold-primary);
}

.mobile-toggle.active .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active .hamburger-bar:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
  background: var(--gold-primary);
}

/* Mobile Drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background: rgba(14, 9, 7, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-border);
  padding: 1.8rem 1.5rem 2.2rem 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition-smooth), opacity var(--transition-smooth);
}

.mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.mobile-link {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--text-muted);
  font-weight: 600;
  display: block;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.mobile-link:hover, .mobile-link:active {
  color: var(--gold-primary);
  padding-left: 0.5rem;
}

.mobile-cta-item {
  margin-top: 0.8rem;
}

/* ==================== 2. HOMEPAGE HERO SECTION ==================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 4rem;
  background-image: url('https://images.unsplash.com/photo-1578985545062-69928b1d9587?auto=format&fit=crop&w=2000&q=85');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(16, 11, 8, 0.65) 0%, rgba(10, 6, 4, 0.88) 75%, rgba(7, 4, 3, 0.96) 100%),
              linear-gradient(180deg, rgba(13, 9, 7, 0.55) 0%, rgba(13, 9, 7, 0.92) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-pill);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-border);
  backdrop-filter: blur(8px);
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease forwards;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-primary);
  box-shadow: 0 0 8px var(--gold-primary);
}

.badge-text {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  line-height: 1.1;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 2.2rem;
  line-height: 1.6;
  font-weight: 400;
}

/* Hero Highlights / Badges */
.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
  max-width: 820px;
}

.highlight-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(30, 20, 15, 0.75);
  border: 1px solid rgba(212, 175, 55, 0.22);
  backdrop-filter: blur(10px);
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
}

.highlight-pill:hover {
  background: rgba(45, 30, 22, 0.9);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

.pill-icon {
  font-size: 1rem;
}

.pill-text {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-main);
  letter-spacing: 0.01em;
}

/* Hero CTA Group */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
}

/* ==================== ABOUT / CRAFT BRIEF ==================== */
.about-brief-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.craft-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.craft-feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  text-align: left;
  transition: all var(--transition-smooth);
}

.craft-feature-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.craft-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.35rem;
  margin-bottom: 1.4rem;
}

.craft-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: var(--text-main);
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.craft-text {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

/* ==================== 3. MENU & THEMES GRID ==================== */
.themes-section {
  padding: 6.5rem 0;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.themes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
}

.theme-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
}

.theme-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-border);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}

.theme-image-wrapper {
  position: relative;
  overflow: hidden;
}

.theme-pill {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(13, 9, 7, 0.85);
  border: 1px solid var(--gold-border);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
}

.theme-card-body {
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.theme-card-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.theme-card-text {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 1.4rem;
  flex-grow: 1;
}

.theme-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
  gap: 0.6rem;
}

.theme-quote-badge {
  font-size: 0.78rem;
  color: var(--gold-light);
  font-weight: 600;
}

.card-action-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.card-action-link i {
  color: var(--gold-primary);
  transition: transform var(--transition-fast);
}

.card-action-link:hover {
  color: var(--gold-light);
}

.card-action-link:hover i {
  transform: translateX(3px);
}

/* ==================== 4. ORDERING & DELIVERY INFO ==================== */
.ordering-section {
  padding: 6.5rem 0;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-surface) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
}

.info-card.highlight-card {
  background: linear-gradient(145deg, #241913 0%, var(--bg-card) 100%);
  border-color: var(--gold-border);
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
}

.info-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.25rem;
  margin-bottom: 1.3rem;
}

.info-card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.8rem;
}

.info-card-main-text {
  color: var(--text-main);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.55;
  margin-bottom: 1.2rem;
  font-style: italic;
}

.info-card-note {
  margin-top: auto;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.info-card-note i {
  color: var(--gold-primary);
  margin-top: 0.2rem;
}

/* Order Flow 3-Steps */
.order-flow-wrapper {
  background: rgba(18, 12, 9, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
}

.order-flow-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-main);
  margin-bottom: 2.5rem;
}

.order-steps-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.8rem;
}

.step-item {
  flex: 1;
  text-align: center;
  padding: 1.2rem 1rem;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step-heading {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.step-copy {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.step-divider {
  color: var(--gold-border);
  font-size: 1.2rem;
}

.order-cta-box {
  display: flex;
  justify-content: center;
}

/* ==================== 5. CUSTOMER LOVE & REVIEWS (SHOUTOUTS) ==================== */
.reviews-section {
  padding: 6.5rem 0;
  background-color: var(--bg-surface);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.reviews-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
}

.review-phone-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.review-phone-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
}

.review-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 9, 7, 0.2) 0%, rgba(13, 9, 7, 0.85) 60%, rgba(13, 9, 7, 0.98) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  pointer-events: none;
}

.review-stars {
  color: var(--gold-primary);
  font-size: 0.85rem;
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.6rem;
}

.review-quote {
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--text-main);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.review-meta {
  display: flex;
  align-items: center;
}

.review-badge {
  font-size: 0.75rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ==================== 6. INSTAGRAM SHOWCASE & MINI-FEED ==================== */
.instagram-feed-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-primary) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.insta-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.8rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.insta-header-left {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.insta-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.5rem;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.insta-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.insta-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 9, 7, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  opacity: 0;
  transition: opacity var(--transition-fast);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
}

.insta-hover-overlay i {
  font-size: 1.4rem;
}

.insta-card:hover .insta-hover-overlay {
  opacity: 1;
}

.insta-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-border);
}

/* ==================== 7. FOOTER ==================== */
.site-footer {
  background-color: #080504;
  padding-top: 5rem;
  border-top: 1px solid var(--gold-border);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.3fr 1.2fr;
  gap: 3rem;
  padding-bottom: 4rem;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.footer-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-primary);
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--text-main);
  line-height: 1.15;
}

.footer-brand-handle {
  font-size: 0.82rem;
  color: var(--gold-primary);
  font-weight: 500;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold-primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-primary);
  padding-left: 0.35rem;
}

.footer-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-info-list li i {
  color: var(--gold-primary);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.footer-social-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--transition-fast);
}

.social-item i {
  font-size: 1.2rem;
  color: var(--gold-primary);
  width: 20px;
  text-align: center;
}

.social-name {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.2;
}

.social-handle {
  display: block;
  font-size: 0.76rem;
  color: var(--text-dim);
}

.social-item:hover {
  background: var(--gold-subtle);
  border-color: var(--gold-border);
  transform: translateX(3px);
}

.social-item:hover .social-handle {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.8rem 0;
  background: #050302;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright-text {
  font-size: 0.84rem;
  color: var(--text-dim);
}

.footer-credit {
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ==================== RESPONSIVE MEDIA QUERIES ==================== */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  
  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .desktop-nav {
    display: none;
  }

  .btn-nav {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-drawer {
    display: block;
  }

  .hero-section {
    padding-top: calc(var(--header-height) + 1.5rem);
    padding-bottom: 3.5rem;
    min-height: 90vh;
  }

  .hero-highlights {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }

  .highlight-pill {
    justify-content: center;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .order-steps-grid {
    flex-direction: column;
    gap: 1.5rem;
  }

  .step-divider {
    transform: rotate(90deg);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Small Mobile Screens (max-width: 480px) */
@media (max-width: 480px) {
  .container {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .brand-title {
    font-size: 1.05rem;
  }

  .brand-logo-img {
    width: 40px;
    height: 40px;
  }

  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-showcase-grid {
    grid-template-columns: 1fr;
  }

  .order-flow-wrapper {
    padding: 2rem 1.2rem;
  }
}
