/* ============================================================
   OUTDOOR GRILL SALES — style.css
   Light theme. Warm, premium, Texas outdoor living.
   Fonts: Bebas Neue (headlines) + Crimson Pro (body) + DM Sans (UI)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Crimson+Pro:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ─────────────────────────────────────────────
   CSS VARIABLES
   ───────────────────────────────────────────── */
:root {
  --ember:        #D4541E;
  --ember-light:  #E8622A;
  --ember-dim:    #A03A10;
  --ember-glow:   rgba(212, 84, 30, 0.10);
  --gold:         #B07818;
  --gold-light:   #C88C28;
  --bg:           #F5F2EE;
  --bg-2:         #EDEAE6;
  --bg-3:         #E4E0DB;
  --bg-4:         #D8D3CC;
  --smoke:        #C8C2BA;
  --border:       rgba(0, 0, 0, 0.08);
  --border-warm:  rgba(180, 100, 20, 0.20);
  --text:         #1A1715;
  --text-muted:   #4A4540;
  --text-dim:     #807870;
  --card:         rgba(255, 255, 255, 0.92);
  --card-hover:   rgba(255, 255, 255, 0.97);
}

/* ─────────────────────────────────────────────
   RESET & BASE
   ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Fixed background image — hero image bleeds through all sections faintly */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: -2;
  pointer-events: none;
  opacity: 0.90;
}

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

/* ─────────────────────────────────────────────
   PROGRESS BAR
   ───────────────────────────────────────────── */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  z-index: 300;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--ember), var(--gold));
  transition: width 0.1s linear;
}

/* ─────────────────────────────────────────────
   ANNOUNCEMENT BANNER (hidden — toggle when needed)
   ───────────────────────────────────────────── */
#announce-banner { display: none !important; }

/* ─────────────────────────────────────────────
   NAVIGATION
   ───────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 72px;
  background: rgba(245, 242, 238, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.10);
  transition: height 0.3s, background 0.3s;
}

nav.scrolled {
  height: 60px;
  background: rgba(245, 242, 238, 0.99);
}

.nav-logo img {
  height: 52px;
  width: auto;
  transition: height 0.3s;
}

nav.scrolled .nav-logo img { height: 42px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.5rem 0.85rem;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
  font-weight: 500;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--ember); background: rgba(0,0,0,0.04); }
.nav-links a.active { color: var(--ember); }

.nav-cta {
  background: var(--ember) !important;
  color: #fff !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 2px;
  font-size: 0.78rem !important;
  letter-spacing: 0.1em !important;
  font-weight: 500 !important;
  transition: background 0.2s, transform 0.15s !important;
  margin-left: 0.5rem;
}

.nav-cta:hover { background: var(--ember-light) !important; transform: translateY(-1px); }
.nav-cta.active { background: var(--ember) !important; color: #fff !important; }

/* HAMBURGER */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE DRAWER */
.nav-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(245, 242, 238, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  overflow-y: auto;
  border-left: 3px solid var(--ember);
}

.nav-drawer.open { opacity: 1; pointer-events: auto; }

.nav-drawer a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding: 0.6rem 2rem;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
}

.nav-drawer a:first-child { border-top: 1px solid var(--border); }
.nav-drawer a:hover, .nav-drawer a.active { color: var(--ember); background: rgba(212,84,30,0.05); }

.nav-drawer .drawer-cta {
  margin-top: 1.5rem;
  background: var(--ember);
  color: #fff;
  border-radius: 2px;
  font-size: 1.4rem;
  border-bottom: none;
  padding: 0.8rem 3rem;
  width: auto;
}

.nav-drawer .drawer-contact {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--text-dim);
  border: none;
  padding: 0.5rem 2rem;
  margin-top: 0.5rem;
}

/* PAGE TOP OFFSET */
.page-top { padding-top: 72px; }

/* ─────────────────────────────────────────────
   SHARED SECTION STYLES
   ───────────────────────────────────────────── */
section { padding: 4.5rem 2.6rem; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 1rem;
  font-weight: 500;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--ember);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  line-height: 0.93;
  letter-spacing: 0.02em;
  margin-bottom: 1.2rem;
  color: var(--text);
}

.section-title span { color: var(--ember); }

.section-subtitle {
  font-family: 'Crimson Pro', serif;
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 580px;
  font-weight: 300;
  font-style: italic;
}

/* ─────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ember);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}

.btn-primary:hover { background: var(--ember-light); transform: translateY(-2px); color: #fff; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,242,238,0.92);
  color: var(--text);
  padding: 0.85rem 2rem;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(0,0,0,0.22);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.15s;
  text-decoration: none;
}

.btn-ghost:hover { background: #fff; color: var(--text); border-color: rgba(0,0,0,0.40); transform: translateY(-2px); }

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}

.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-catalog {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--ember);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}

.btn-catalog:hover { background: var(--ember-light); transform: translateY(-1px); color: #fff; }

.btn-catalog-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--text-muted);
  padding: 0.6rem 1.2rem;
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, transform 0.15s;
  text-decoration: none;
}

.btn-catalog-ghost:hover { color: var(--text); border-color: rgba(0,0,0,0.25); transform: translateY(-1px); }

/* ─────────────────────────────────────────────
   MARQUEE STRIP
   ───────────────────────────────────────────── */
.marquee-strip {
  border-top: 2px solid var(--ember);
  border-bottom: 2px solid var(--ember);
  overflow: hidden;
  padding: 0.95rem 0;
  background: rgba(245, 242, 238, 0.88);
  box-shadow: 0 2px 12px rgba(212,84,30,0.10);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 2.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
  font-weight: 500;
}

.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--ember); flex-shrink: 0; }

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

/* ─────────────────────────────────────────────
   HERO (index.html)
   ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 8rem 2.6rem 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(245,242,238,0.82) 0%,
    rgba(245,242,238,0.92) 40%,
    rgba(245,242,238,0.08) 70%,
    rgba(212,84,30,0.01) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-eyebrow::before { content: ''; display: block; width: 36px; height: 1px; background: var(--gold); }

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 11vw, 9rem);
  line-height: 0.88;
  letter-spacing: 0.01em;
  margin-bottom: 1.8rem;
  color: var(--text);
}

.hero-title .outline {
  -webkit-text-stroke: 3px #1A1715;
  color: var(--ember);
  paint-order: stroke fill;
}

.hero-title .ember { color: var(--ember); }

.hero-sub {
  font-family: 'Crimson Pro', serif;
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  font-style: italic;
}

.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; margin-bottom: 3.5rem; }

.hero-stats { display: flex; border: 1px solid var(--border-warm); width: fit-content; }

.hero-stat {
  padding: 1.2rem 2.2rem;
  background: rgba(255,255,255,0.92);
  border-right: 1px solid var(--border-warm);
  text-align: center;
  position: relative;
}

.hero-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ember), var(--gold));
}

.hero-stat:last-child { border-right: none; }
.hero-stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; line-height: 1; color: var(--text); letter-spacing: 0.02em; }
.hero-stat-label { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ember); margin-top: 0.4rem; font-weight: 500; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  animation: float 2.5s ease-in-out infinite;
}

.hero-scroll::after { content: ''; display: block; width: 1px; height: 40px; background: linear-gradient(to bottom, var(--ember), transparent); }

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

/* ─────────────────────────────────────────────
   SERVICE PILLARS (homepage 3-column)
   ───────────────────────────────────────────── */
.services-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin: 0 2.6rem;
}

.service-pillar {
  background: rgba(255,255,255,0.92);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
  border-left: 3px solid transparent;
}

.service-pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-pillar:hover {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.service-pillar:hover::before { transform: scaleX(1); }

.service-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-warm);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg { width: 22px; height: 22px; stroke: var(--ember); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.service-pillar h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: 0.04em; line-height: 1; color: var(--text); }
.service-pillar p { font-family: 'Crimson Pro', serif; font-size: 1rem; color: var(--text-muted); line-height: 1.65; font-weight: 300; flex: 1; }

.service-pillar a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 500;
  transition: gap 0.2s;
  margin-top: 0.5rem;
}

.service-pillar a:hover { gap: 0.7rem; }
.service-pillar a svg { width: 12px; height: 12px; stroke: var(--ember); stroke-width: 2; }

/* ─────────────────────────────────────────────
   BRAND WALL
   ───────────────────────────────────────────── */
.brand-wall-section {
  padding: 2.5rem 2.6rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(237,234,230,0.02);
  position: relative;
}

.brand-wall-section::before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--ember) 20%, var(--gold) 50%, var(--ember) 80%, transparent 100%);
  margin-bottom: 2rem;
  opacity: 0.5;
}

.brand-wall-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.brand-wall-link { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ember); font-weight: 500; transition: opacity 0.2s; }
.brand-wall-link:hover { opacity: 0.7; }

.brand-wall-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border-warm);
}

.brand-wall-tile {
  background: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 1.6rem;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
  text-decoration: none;
  min-height: 80px;
}

.brand-wall-tile::before { content: ''; position: absolute; inset: 0; background: var(--ember-glow); opacity: 0; transition: opacity 0.3s; }
.brand-wall-tile:hover { background: rgba(255,255,255,0.92); }
.brand-wall-tile:hover::before { opacity: 0.6; }

.brand-wall-tile::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease;
}

.brand-wall-tile:hover::after { transform: scaleX(1); }

.brand-wall-tile img {
  height: 28px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: grayscale(20%);
}

.brand-wall-tile:hover img { transform: scale(1.06); filter: grayscale(0%); }

/* ─────────────────────────────────────────────
   ABOUT PREVIEW (homepage)
   ───────────────────────────────────────────── */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--border);
  border: 1px solid var(--border);
  margin: 0 2.6rem;
}

.about-preview-img { position: relative; overflow: hidden; min-height: 480px; }
.about-preview-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.6s ease; }
.about-preview:hover .about-preview-img img { transform: scale(1.03); }

.about-preview-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--ember);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  padding: 0.5rem 1rem;
  border-radius: 1px;
}

.about-preview-content {
  background: rgba(237,234,230,0.92);
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.about-preview-content blockquote {
  font-family: 'Crimson Pro', serif;
  font-size: 1.35rem;
  line-height: 1.65;
  color: var(--text-muted);
  font-style: italic;
  font-weight: 300;
  padding-left: 1.2rem;
  border-left: 2px solid var(--ember);
}

.about-preview-content p { font-family: 'Crimson Pro', serif; font-size: 1.05rem; line-height: 1.7; color: var(--text-muted); font-weight: 300; }

/* ─────────────────────────────────────────────
   REVIEWS CAROUSEL
   ───────────────────────────────────────────── */
.reviews-section { background: rgba(237,234,230,0.02); }

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

.reviews-score { display: flex; align-items: center; gap: 1.5rem; }
.reviews-big-num { font-family: 'Bebas Neue', sans-serif; font-size: 5rem; line-height: 1; color: var(--gold); }
.reviews-stars { color: var(--gold); font-size: 1.4rem; letter-spacing: 0.08em; margin-bottom: 0.3rem; }
.reviews-count { font-size: 0.8rem; color: var(--text-dim); letter-spacing: 0.06em; }

.reviews-carousel-wrap {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--ember);
  border-radius: 2px;
  margin-top: 3rem;
  box-shadow: 0 4px 24px rgba(212,84,30,0.15);
}

.reviews-carousel-track { display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }

.reviews-carousel-track .review-card {
  min-width: 100%;
  box-sizing: border-box;
  padding: 2.5rem 3rem;
  background: rgba(255,255,255,0.95);
  border: none;
}

.reviews-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  border-top: 1px solid rgba(212,84,30,0.20);
  background: rgba(245,242,238,0.97);
}

.reviews-carousel-dots { display: flex; gap: 0.5rem; align-items: center; }

.reviews-carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--smoke);
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  padding: 0;
}

.reviews-carousel-dot.active { background: var(--ember); transform: scale(1.4); }

.reviews-carousel-btns { display: flex; gap: 0.5rem; }

.reviews-carousel-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  border-radius: 2px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}

.reviews-carousel-btn:hover { border-color: var(--ember); color: var(--ember); }

.review-card { background: rgba(255,255,255,0.92); display: flex; flex-direction: column; gap: 1rem; transition: background 0.25s; }
.review-card:hover { background: rgba(255,255,255,0.72); }
.review-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.08em; }
.review-card blockquote { font-family: 'Crimson Pro', serif; font-size: 1rem; line-height: 1.7; color: var(--text-muted); font-style: italic; font-weight: 300; flex: 1; border-left: 2px solid var(--ember); padding-left: 1rem; }
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--ember-glow); border: 1px solid var(--border-warm); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 500; color: var(--ember); flex-shrink: 0; }
.review-name { font-size: 0.82rem; font-weight: 500; color: var(--text); }
.review-platform { font-size: 0.68rem; color: var(--text-dim); margin-top: 0.1rem; }

/* ─────────────────────────────────────────────
   CTA BAND
   ───────────────────────────────────────────── */
.cta-band {
  position: relative;
  padding: 3.25rem 2.6rem;
  background-image: url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  text-align: center;
}

.cta-band::before { content: ''; position: absolute; inset: 0; background: rgba(26,23,21,0.82); }
.cta-band-content { position: relative; z-index: 1; }
.cta-band h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: 1rem; line-height: 0.95; color: #fff; }
.cta-band p { font-family: 'Crimson Pro', serif; font-size: 1.2rem; color: rgba(255,255,255,0.75); font-style: italic; margin-bottom: 2rem; font-weight: 300; }
.cta-band-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─────────────────────────────────────────────
   PAGE HERO (inner pages)
   ───────────────────────────────────────────── */
.page-hero {
  padding: 3.25rem 2.6rem 2.25rem;
  background-image: url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(245,242,238,0.82) 0%,
    rgba(245,242,238,0.92) 40%,
    rgba(245,242,238,0.08) 70%,
    rgba(212,84,30,0.01) 100%
  );
  z-index: 0;
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.92;
  margin-bottom: 0.8rem;
  color: var(--text);
}

.page-hero-title span { color: var(--ember); }
.page-hero-sub { font-family: 'Crimson Pro', serif; font-size: 1.15rem; color: var(--text-muted); font-style: italic; max-width: 560px; font-weight: 300; }

/* ─────────────────────────────────────────────
   CATALOG FILTER TABS
   ───────────────────────────────────────────── */
.catalog-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 1.2rem 2.6rem;
  background: rgba(245,242,238,0.92);
  border-bottom: 2px solid var(--ember);
  border-top: 1px solid rgba(212,84,30,0.15);
  position: sticky;
  top: 60px;
  z-index: 50;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.filter-btn {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,0,0,0.14);
  color: var(--text-muted);
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.22s ease;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.filter-btn:hover {
  background: rgba(212,84,30,0.08);
  border-color: var(--ember);
  color: var(--ember);
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(212,84,30,0.15);
}

.filter-btn.active {
  background: var(--ember);
  border-color: var(--ember);
  color: #fff;
  box-shadow: 0 3px 12px rgba(212,84,30,0.35);
  transform: translateY(-1px);
}

/* ─────────────────────────────────────────────
   EXPLORE BRANDS GRID
   ───────────────────────────────────────────── */
.explore-brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.explore-brand-card {
  background: rgba(255,255,255,0.92);
  display: flex;
  flex-direction: column;
  transition: background 0.25s, box-shadow 0.25s;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.explore-brand-card:hover {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
}

.explore-brand-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ember), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 10;
}

.explore-brand-card:hover::before { transform: scaleX(1); }

.explore-brand-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: rgba(228,224,218,0.92);
  flex-shrink: 0;
}

.explore-brand-img-wrap img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.explore-brand-card:hover .explore-brand-img-wrap img:first-child { transform: scale(1.05); }

.explore-brand-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(245,242,238,0.05) 0%, rgba(245,242,238,0.35) 70%, rgba(245,242,238,0.65) 100%);
  z-index: 1;
}

/* Logo on image — hidden, logos now in body */
.explore-brand-logo { display: none; }

.explore-brand-body {
  padding: 1.6rem 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}

/* Logo in body */
.explore-body-logo {
  display: block;
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 0.2rem;
  filter: none;
  opacity: 1;
  background: transparent;
}

.explore-brand-body h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: 0.04em; line-height: 1; color: var(--text); }

.explore-brand-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }

.explore-brand-tags span {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember);
  border: 1px solid rgba(212,84,30,0.35);
  padding: 0.18rem 0.55rem;
  border-radius: 1px;
  font-weight: 500;
  white-space: nowrap;
}

.explore-brand-body p { font-family: 'Crimson Pro', serif; font-size: 0.98rem; color: var(--text-muted); line-height: 1.72; font-weight: 300; flex: 1; }

.explore-brand-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 0.25rem; }

/* ─────────────────────────────────────────────
   SERVICE BLOCKS (services.html)
   ───────────────────────────────────────────── */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--border);
  border: 1px solid var(--border);
  margin: 0 2.6rem 1px;
}

.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

.service-block-img { position: relative; overflow: hidden; min-height: 420px; }
.service-block-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-block:hover .service-block-img img { transform: scale(1.04); }

.service-block-content {
  background: rgba(237,234,230,0.92);
  padding: 2.3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.service-block-content h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.2rem, 4vw, 3.5rem); line-height: 0.95; color: var(--text); text-shadow: none; }
.service-block-content h2 span { color: var(--ember); }
.service-block-content p { font-family: 'Crimson Pro', serif; font-size: 1.1rem; color: var(--text-muted); line-height: 1.75; font-weight: 300; }

.service-includes { display: flex; flex-direction: column; gap: 0.6rem; }
.service-includes li { display: flex; align-items: center; gap: 0.7rem; font-size: 0.88rem; color: var(--text-muted); }
.service-includes li::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--ember); flex-shrink: 0; }

/* Service count boxes (Why OGS section) */
.about-value {
  background: rgba(255,255,255,0.92);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: background 0.25s;
  border: 1px solid rgba(0,0,0,0.06);
}

.about-value:hover { background: rgba(255,255,255,0.72); }
.about-value-num { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--ember); line-height: 1; opacity: 0.45; }
.about-value h3 { font-size: 1rem; font-weight: 500; color: var(--text); }
.about-value p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; font-weight: 300; font-family: 'Crimson Pro', serif; }

/* ─────────────────────────────────────────────
   ABOUT PAGE
   ───────────────────────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  background: var(--border);
  border: 1px solid var(--border);
  margin: 0 2.6rem;
}

.about-story-img { position: relative; overflow: hidden; min-height: 560px; }
.about-story-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.about-story-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--border-warm);
  color: var(--gold);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  padding: 0.5rem 1rem;
  border-radius: 1px;
}

.about-story-content {
  background: rgba(237,234,230,0.92);
  padding: 2.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.about-story-content h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 4.5vw, 4rem); line-height: 0.93; color: var(--text); }
.about-story-content h2 span { color: var(--ember); }
.about-story-content p { font-family: 'Crimson Pro', serif; font-size: 1.1rem; color: var(--text-muted); line-height: 1.8; font-weight: 300; }

/* STORE FRONT IMAGE */
.store-front-wrap {
  position: relative;
  overflow: hidden;
  border: none;
  margin: 0 auto;
  max-width: 653px;
  width: 100%;
  background: transparent;
}

.store-front-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.store-front-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 35%, rgba(26,23,21,0.45) 65%, rgba(26,23,21,0.92) 100%);
  z-index: 1;
  pointer-events: none;
}

.store-badge {
  position: absolute;
  bottom: 1.2rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 2;
}

.store-badge > div:last-child {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
  margin-top: 0.4rem;
}

/* About values grid */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-top: 3px solid var(--ember);
  margin: 0 2.6rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* Stat bar */
.about-stats-grid {
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border-warm);
  border-top: 3px solid var(--ember);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  max-width: 800px;
  margin: 0 auto;
  display: grid;
}

/* Hours/location grid */
.about-hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #F5F2EE;
}

.about-hours-panel {
  background: #F5F2EE;
  padding: 2.5rem;
  border-left: 3px solid var(--ember);
}

.about-location-panel {
  background: #F5F2EE;
  border-left: 3px solid var(--ember);
  padding: 2.5rem;
}

.hours-grid { display: flex; flex-direction: column; gap: 0.4rem; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.85rem; padding: 0.4rem 0; border-bottom: 1px solid rgba(0,0,0,0.07); color: var(--text-muted); }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 500; color: var(--text); }
.hours-row .time { color: var(--text-muted); font-family: 'Crimson Pro', serif; font-size: 0.9rem; }

/* ─────────────────────────────────────────────
   CONTACT PAGE
   ───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  background: var(--border);
  border: 1px solid var(--border);
  margin: 0 2.6rem;
}

.contact-info-panel {
  background: rgba(237,234,230,0.92);
  padding: 2.3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-right: 1px solid var(--border);
}

.contact-info-panel h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: 0.03em; margin-bottom: 0.5rem; color: var(--text); }

.contact-detail-item { display: flex; gap: 1rem; align-items: flex-start; }

.contact-detail-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-warm);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-icon svg { width: 16px; height: 16px; stroke: var(--ember); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.contact-detail-label { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 0.3rem; font-weight: 500; }
.contact-detail-value { font-size: 0.95rem; color: var(--text); line-height: 1.5; }
.contact-detail-value a { color: var(--text); transition: color 0.2s; }
.contact-detail-value a:hover { color: var(--ember); }

.contact-form-panel { background: rgba(228,224,218,0.92); padding: 2.3rem; }
.contact-form-panel h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: 0.03em; margin-bottom: 2rem; color: var(--text); }

.form-grid { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }
.form-row.full { grid-template-columns: 1fr; }

.form-field {
  background: rgba(255,255,255,0.80);
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: background 0.2s;
}

.form-field:focus-within { background: #ffffff; }
.form-field label { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-dim); font-weight: 500; }
.form-field input, .form-field select, .form-field textarea { background: transparent; border: none; outline: none; color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 300; resize: none; width: 100%; -webkit-appearance: none; }
.form-field select option { background: #fff; color: var(--text); }
.form-field input::placeholder, .form-field textarea::placeholder { color: #B0A898; }

.form-submit-row { background: rgba(220,216,210,0.95); padding: 1.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.form-note { font-size: 0.73rem; color: var(--text-dim); font-weight: 300; font-family: 'Crimson Pro', serif; font-style: italic; }

.form-submit {
  background: var(--ember);
  color: #fff;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 1px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.form-submit:hover { background: var(--ember-light); transform: translateY(-1px); }

.form-success { display: none; text-align: center; padding: 3rem; background: rgba(255,255,255,0.85); border: 1px solid var(--border-warm); }
.form-success.show { display: block; }
.form-success h3 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--ember); margin-bottom: 0.5rem; }
.form-success p { font-family: 'Crimson Pro', serif; font-size: 1.05rem; color: var(--text-muted); font-style: italic; }

.contact-map { width: 100%; height: 300px; border: none; display: block; filter: grayscale(30%) contrast(1.05); border-top: 1px solid var(--border); }

/* ─────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────── */
footer {
  background: #EDEAE6;
  border-top: 2px solid var(--ember);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 2rem 2.6rem 1.8rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  background: #EDEAE6;
}

.footer-brand img { height: 40px; width: auto; margin-bottom: 0.75rem; }
.footer-brand p { font-family: 'Crimson Pro', serif; font-size: 0.82rem; color: var(--text-dim); line-height: 1.55; font-weight: 300; font-style: italic; max-width: 220px; }

.footer-col h4 { font-family: 'Bebas Neue', sans-serif; font-size: 0.85rem; letter-spacing: 0.1em; color: var(--text); margin-bottom: 0.7rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.35rem; }
.footer-col ul a { font-size: 0.78rem; color: var(--text-dim); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--ember); }
.footer-col .footer-contact-item { font-size: 0.78rem; color: var(--text-dim); line-height: 1.5; margin-bottom: 0.3rem; }
.footer-col .footer-contact-item a { color: var(--text-dim); transition: color 0.2s; }
.footer-col .footer-contact-item a:hover { color: var(--ember); }

.footer-social { display: flex; gap: 0.5rem; margin-top: 0.85rem; }

.footer-social a {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 0.72rem;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.footer-social a:hover { border-color: var(--ember); color: var(--ember); background: rgba(212,84,30,0.06); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 2.6rem;
  flex-wrap: wrap;
  gap: 0.75rem;
  background: #E4E0DB;
}

.footer-copy { font-size: 0.7rem; color: var(--text-dim); font-weight: 300; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dim); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--ember); }

/* ─────────────────────────────────────────────
   MISC COMPONENTS
   ───────────────────────────────────────────── */
.relocating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212,84,30,0.12);
  border: 1px solid rgba(212,84,30,0.30);
  color: var(--ember);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 2px;
  font-weight: 500;
}

.relocating-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--ember); animation: blink 1.4s ease infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }

#back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  width: 42px;
  height: 42px;
  background: var(--ember);
  border: none;
  border-radius: 2px;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  pointer-events: none;
}

#back-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#back-top:hover { background: var(--ember-light); }

/* ─────────────────────────────────────────────
   SCROLL REVEAL
   ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.65s ease, transform 0.65s ease;
  will-change: opacity, transform;
  -webkit-transform: translate3d(0, 24px, 0);
  -webkit-transition: opacity 0.65s ease, -webkit-transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}

.reveal-delay-1 { transition-delay: 0.1s; -webkit-transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; -webkit-transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; -webkit-transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; -webkit-transition-delay: 0.4s; }

/* ─────────────────────────────────────────────
   RESPONSIVE — TABLET (max-width: 1100px)
   ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .explore-brands-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — MOBILE (max-width: 900px)
   ───────────────────────────────────────────── */
@media (max-width: 900px) {

  /* Nav */
  nav {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
    padding: 0 1.2rem;
    height: 64px;
  }

  nav::before { content: ''; display: block; width: 40px; }

  .nav-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    grid-column: 2;
  }

  .nav-links { display: none; }

  .nav-hamburger {
    display: flex;
    grid-column: 3;
    justify-self: end;
  }

  .nav-drawer { display: flex; }
  .page-top { padding-top: 64px; }

  /* Sections */

  /* Sections */
  section { padding: 3rem 1.2rem !important; }

  /* Hero */
  .hero { padding: 6rem 1.2rem 3.5rem; }
  .hero-bg { display: none; }
  .hero-stats { flex-wrap: wrap; width: 100%; }
  .hero-stat { flex: 1; min-width: 100px; padding: 0.9rem 0.8rem; }
  .hero-stat-num { font-size: 1.5rem; }
  .hero-stat-label { font-size: 0.48rem; letter-spacing: 0.08em; }

  /* Service pillars */
  .services-strip { grid-template-columns: 1fr; margin: 0; width: 100%; }
  .service-pillar { padding: 2rem 1.4rem; width: 100%; }

  /* Brand wall */
  .brand-wall-section { padding: 2rem 1.2rem; }
  .brand-wall-grid { grid-template-columns: repeat(3, 1fr); }
  .brand-wall-tile { padding: 1rem; min-height: 60px; }
  .brand-wall-tile img { height: 22px; max-width: 80px; }

  /* About preview */
  .about-preview { grid-template-columns: 1fr; margin: 0; width: 100%; }
  .about-preview-img { min-height: 280px; }
  .about-preview-content { padding: 2rem 1.4rem; width: 100%; }

  /* Reviews */
  .reviews-carousel-track .review-card { padding: 1.8rem 1.2rem; }

  /* CTA band */
  .cta-band { background-attachment: scroll; padding: 2.5rem 1.2rem; }

  /* Page hero */
  .page-hero {
    padding: 2rem 1.2rem 1.5rem;
    background-image: none;
    background-attachment: scroll;
  }
  .page-hero::before {
    background: linear-gradient(
      to bottom,
      rgba(245,242,238,0.88) 0%,
      rgba(245,242,238,0.60) 60%,
      rgba(245,242,238,0.10) 100%
    );
  }

  /* Catalog filter */
  .catalog-filter { padding: 1rem 1.2rem; top: 60px; gap: 0.5rem; }

  /* Explore brands */
  .explore-brands-grid { grid-template-columns: 1fr; width: 100%; }
  .explore-brand-img-wrap { height: 200px; }
  .explore-brand-body { padding: 1.4rem 1.4rem 1.8rem; }

  /* Service blocks */
  .service-block { grid-template-columns: 1fr; margin: 0 0 1px; direction: ltr; width: 100%; }
  .service-block.reverse { direction: ltr; }
  .service-block-img { min-height: 240px; }
  .service-block-content { padding: 2rem 1.4rem; width: 100%; }

  /* About story */
  .about-story { grid-template-columns: 1fr; margin: 0; width: 100%; }
  .about-story-img { min-height: 300px; }
  .about-story-content { padding: 2rem 1.4rem; width: 100%; }
  .about-values { grid-template-columns: 1fr; margin: 0; }

  /* Store front */
  .store-front-wrap { margin: 0; width: 100%; }
  .store-front-wrap img { max-height: none; }

  /* Hours grid */
  .about-hours-grid { grid-template-columns: 1fr; }
  .about-hours-panel { padding: 1.8rem 1.2rem; }
  .about-location-panel { border-left: none; border-top: 1px solid var(--border); }
  .about-hours-panel .btn-primary { width: 100%; justify-content: center; box-sizing: border-box; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; margin: 0; width: 100%; }
  .contact-info-panel { border-right: none; border-bottom: 1px solid var(--border); padding: 2rem 1.4rem; width: 100%; }
  .contact-form-panel { padding: 2rem 1.4rem; width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .form-submit-row { flex-direction: column; align-items: stretch; }
  .form-submit { width: 100%; text-align: center; }

  /* Footer */
  footer { overflow: hidden; }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem 1.5rem;
    padding: 1.5rem 1.2rem 1.2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--border);
  }

  .footer-brand img { height: 36px; margin-bottom: 0; flex-shrink: 0; }
  .footer-brand p { font-size: 0.75rem; max-width: none; margin: 0; line-height: 1.5; }
  .footer-social { margin-top: 0; flex-shrink: 0; margin-left: auto; }

  .footer-col h4 { font-size: 0.75rem; margin-bottom: 0.5rem; }
  .footer-col ul a, .footer-col .footer-contact-item { font-size: 0.72rem; line-height: 1.4; }
  .footer-col ul { gap: 0.3rem; }
  .footer-col .footer-contact-item { margin-bottom: 0.2rem; }

  .footer-col:last-child {
    grid-column: 1 / -1;
    padding-top: 0.8rem;
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1.5rem;
  }

  .footer-col:last-child h4 { grid-column: 1 / -1; margin-bottom: 0.3rem; }

  .footer-bottom {
    padding: 0.9rem 1.2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .footer-copy { font-size: 0.65rem; }
  .footer-bottom-links { gap: 1rem; }
  .footer-bottom-links a { font-size: 0.65rem; }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ───────────────────────────────────────────── */
@media (max-width: 480px) {
  .brand-wall-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: clamp(3.5rem, 14vw, 5rem); }
  .explore-brand-img-wrap { height: 180px; }
}

/* ─────────────────────────────────────────────
   PROFESSIONAL POLISH
   ─────────────────────────────────────────────

   1. Nav border bottom more defined — light theme
      navs need a stronger bottom edge or they float
   2. Section titles need a consistent max-width so
      long headlines don't stretch wall to wall
   3. Body text size bump — 0.85rem is too small for
      premium brand perception. 0.92rem reads better.
   4. Ember buttons get a very subtle box shadow —
      makes them feel physical and clickable
   5. Brand card images get a consistent aspect ratio
      enforced so the grid never looks uneven
   ─────────────────────────────────────────────── */

/* 1. Nav bottom edge */
nav {
  border-bottom: 1px solid rgba(0,0,0,0.12) !important;
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

/* 2. Section title max-width */
.section-title {
  max-width: 700px;
}

/* 3. Body text size — more premium feel */
.service-pillar p,
.about-preview-content p,
.explore-brand-body p,
.service-block-content p,
.about-story-content p,
.review-card blockquote,
.about-value p {
  font-size: 1.05rem !important;
  line-height: 1.75 !important;
}

/* 4. Primary buttons get shadow — feel more clickable */
.btn-primary, .btn-catalog, .nav-cta, .form-submit {
  box-shadow: 0 2px 8px rgba(212,84,30,0.30);
}

.btn-primary:hover, .btn-catalog:hover, .nav-cta:hover, .form-submit:hover {
  box-shadow: 0 4px 16px rgba(212,84,30,0.40);
}

/* 5. Brand card images consistent height */
.explore-brand-img-wrap {
  height: 200px !important;
}

.explore-brand-img-wrap img:first-child {
  height: 100% !important;
  object-fit: cover !important;
}


/* Store front split — PC has margins, mobile stacks image below text */
.about-story-storefront {
  margin: 0 2.6rem;
}

@media (max-width: 900px) {
  .about-story-storefront {
    margin: 0 !important;
    width: 100% !important;
    overflow: hidden !important;
    /* Reverse order so image shows after text on mobile */
    display: flex !important;
    flex-direction: column !important;
  }

  /* On mobile, push the image to bottom by reversing order */
  .about-story-storefront .about-story-content {
    order: 1;
  }

  .about-story-storefront .about-story-img {
    order: 2;
    min-height: 280px !important;
  }
}
