/* ============================================
   BEANWISE — PREMIUM COFFEE
   CSS Stylesheet
   ============================================ */

/* ---- CSS VARIABLES ---- */
:root {
  --color-espresso:    #1c1005;
  --color-dark:        #1c1d1d;
  --color-brown:       #4a2c0a;
  --color-coffee:      #6b3d14;
  --color-warm:        #c8874c;
  --color-cream:       #f5efe6;
  --color-light:       #faf7f2;
  --color-red:         #c0392b;
  --color-red-dark:    #922b21;
  --color-gold:        #d4a017;
  --color-white:       #ffffff;
  --color-gray:        #6b6b6b;
  --color-gray-light:  #e8e2da;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', -apple-system, sans-serif;

  --header-h: 70px;
  --transition: 0.3s ease;
  --radius:     6px;
  --shadow-sm:  0 2px 8px rgba(28,16,5,0.1);
  --shadow-md:  0 6px 24px rgba(28,16,5,0.15);
  --shadow-lg:  0 16px 48px rgba(28,16,5,0.2);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
a:focus, a:focus-visible, button:focus, button:focus-visible,
input:focus, select:focus, textarea:focus { outline: none; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--color-white);
  color: var(--color-dark);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

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

/* ---- ANNOUNCEMENT BAR ---- */
.announcement-bar {
  background: var(--color-espresso);
  color: var(--color-cream);
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* ---- HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-dark);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: var(--header-h);
  gap: 20px;
  max-width: 1600px;
  margin: 0 auto;
}

/* LOGO */
.logo-link {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  color: var(--color-warm);
  letter-spacing: 0.02em;
}
.logo-sub {
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--color-cream);
  opacity: 0.7;
  text-transform: uppercase;
  margin-top: 1px;
}

/* MAIN NAV */
.main-nav { flex: 1; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
}

.nav-list > li {
  position: relative;
}

.nav-list > li > a {
  display: block;
  padding: 8px 12px;
  color: var(--color-cream);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-list > li > a:hover,
.nav-list > li > a.active {
  color: var(--color-warm);
}

.nav-list > li.has-dropdown > a::after {
  content: ' ▾';
  font-size: 10px;
  opacity: 0.6;
}

.nav-red { color: var(--color-red) !important; }
.nav-red:hover { color: #e74c3c !important; }

/* DROPDOWN */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-dark);
  min-width: 200px;
  padding: 12px 0;
  box-shadow: var(--shadow-lg);
  border-top: 2px solid var(--color-warm);
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 100;
}

.has-dropdown:hover .dropdown { display: block; }

.dropdown li a {
  display: block;
  padding: 8px 20px;
  color: var(--color-cream);
  font-size: 13px;
  transition: background var(--transition), color var(--transition);
}
.dropdown li a:hover {
  background: rgba(200,135,76,0.15);
  color: var(--color-warm);
}

/* MEGA DROPDOWN */
.mega-dropdown {
  display: none;
  min-width: 600px;
  display: none;
  flex-direction: row;
  padding: 20px;
  gap: 24px;
}
.has-dropdown:hover .mega-dropdown { display: flex; }

.dropdown-group {
  flex: 1;
}
.dropdown-group strong {
  display: block;
  color: var(--color-warm);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  padding: 0 4px;
}
.dropdown-group ul { padding: 0; }
.dropdown-group ul li a {
  padding: 5px 4px;
  font-size: 12px;
}

/* HEADER ACTIONS */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-icon, .search-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--color-cream);
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: background var(--transition), color var(--transition);
}
.header-icon:hover, .search-toggle:hover {
  background: rgba(200,135,76,0.2);
  color: var(--color-warm);
}

.cart-icon { position: relative; }
.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--color-red);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-cream);
  font-size: 24px;
  cursor: pointer;
}
.nav-close { display: none; }

/* SEARCH BAR */
.search-bar {
  display: none;
  background: var(--color-espresso);
  padding: 14px 32px;
}
.search-bar.open { display: block; }
.search-bar-inner {
  display: flex;
  gap: 8px;
  max-width: 700px;
  margin: 0 auto;
}
.search-bar input {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
  border-radius: var(--radius);
  font-size: 14px;
  outline: none;
}
.search-bar input::placeholder { color: rgba(255,255,255,0.5); }
.search-bar input:focus { border-color: var(--color-warm); }
.search-submit {
  padding: 10px 20px;
  background: var(--color-warm);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
}
.search-close {
  padding: 10px 14px;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--color-cream);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 18px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-espresso);
}

.hero-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(200,135,76,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(107,61,20,0.3) 0%, transparent 50%),
    radial-gradient(circle at 60% 80%, rgba(28,16,5,0.8) 0%, transparent 60%);
  background-color: #1a0d05;
}

/* Animated coffee steam effect */
.hero-bg-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(200,135,76,0.03) 60px,
      rgba(200,135,76,0.03) 61px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(200,135,76,0.03) 60px,
      rgba(200,135,76,0.03) 61px
    );
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28,16,5,0.85) 0%,
    rgba(28,16,5,0.5) 60%,
    rgba(107,61,20,0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 24px;
  max-width: 800px;
  animation: heroFadeIn 1.2s ease both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,135,76,0.2);
  border: 1px solid rgba(200,135,76,0.4);
  color: var(--color-warm);
  padding: 6px 20px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-title { margin-bottom: 12px; }
.hero-title-main {
  display: block;
  font-family: 'Lato', Arial, sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-title-sub {
  display: block;
  font-size: clamp(11px, 2vw, 16px);
  letter-spacing: 0.4em;
  color: var(--color-warm);
  text-transform: uppercase;
  font-weight: 300;
  margin-top: 10px;
}

.hero-tagline {
  font-size: 14px;
  color: rgba(245,239,230,0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 17px;
  color: rgba(245,239,230,0.85);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245,239,230,0.4);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(200,135,76,0.6), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--color-warm);
  color: var(--color-white);
  border-color: var(--color-warm);
}
.btn-primary:hover {
  background: #b87840;
  border-color: #b87840;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200,135,76,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--color-cream);
  border-color: rgba(245,239,230,0.4);
}
.btn-outline:hover {
  background: rgba(245,239,230,0.1);
  border-color: var(--color-cream);
}
.btn-ghost {
  background: transparent;
  color: rgba(245,239,230,0.6);
  border-color: transparent;
}
.btn-ghost:hover { color: var(--color-cream); }

.btn-sm { padding: 8px 18px; font-size: 11px; }
.btn-white { background: var(--color-white); color: var(--color-espresso); border-color: var(--color-white); }
.btn-white:hover { background: var(--color-cream); }
.btn-outline-dark { background: transparent; color: var(--color-espresso); border-color: var(--color-espresso); }
.btn-outline-dark:hover { background: var(--color-espresso); color: var(--color-white); }

.btn-white-large {
  display: inline-block;
  padding: 16px 48px;
  background: var(--color-white);
  color: var(--color-espresso);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid var(--color-white);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-white-large:hover {
  background: transparent;
  color: var(--color-white);
}

/* ============================================
   PROMO BANNER
   ============================================ */
.promo-banner {
  padding: 40px 32px;
  background: var(--color-cream);
}
.promo-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
}
.promo-card {
  padding: 32px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.promo-card--dark   { background: var(--color-espresso); color: var(--color-cream); }
.promo-card--coffee { background: var(--color-coffee);   color: var(--color-cream); }
.promo-card--red    { background: var(--color-red);      color: var(--color-white); }

.promo-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 10px;
}
.promo-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
}
.promo-card p { font-size: 14px; opacity: 0.85; margin-bottom: 20px; }

/* ============================================
   FEATURE SECTIONS
   ============================================ */
.section-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  overflow: hidden;
}
.section-feature--reverse { direction: rtl; }
.section-feature--reverse > * { direction: ltr; }

.feature-image {
  position: relative;
  overflow: hidden;
}
.feature-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.beans-bg   { background: linear-gradient(135deg, #3d1f08 0%, #6b3d14 50%, #8b5e2d 100%); }
.tea-bg     { background: linear-gradient(135deg, #1a3d2a 0%, #2d6b4a 50%, #4a8c6a 100%); }
.syrups-bg  { background: linear-gradient(135deg, #1a1a3d 0%, #2d2d6b 50%, #4a4a8c 100%); }
.kopi-bg    { background: linear-gradient(135deg, #2c1810 0%, #5a3020 100%); }
.kona-bg    { background: linear-gradient(135deg, #2c1a08 0%, #8c5a1a 100%); }
.geisha-bg  { background: linear-gradient(135deg, #3d1a2c 0%, #8c2d5a 100%); }
.dubai-bg   { background: linear-gradient(135deg, #1a1a08 0%, #5c5a0a 100%); }

.placeholder-icon {
  font-size: 100px;
  opacity: 0.3;
  filter: grayscale(0.5);
}

.feature-content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color-light);
}

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-warm);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--color-espresso);
  margin-bottom: 20px;
}
.section-body {
  font-size: 16px;
  color: var(--color-gray);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 480px;
}
.feature-list {
  margin-bottom: 32px;
}
.feature-list li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--color-brown);
  font-weight: 600;
  border-bottom: 1px solid var(--color-gray-light);
}
.feature-list li::before {
  content: '— ';
  color: var(--color-warm);
}

/* ============================================
   SPECIALTY GRID
   ============================================ */
.specialty-grid {
  padding: 80px 32px;
  background: var(--color-white);
}
.specialty-grid-header {
  text-align: center;
  margin-bottom: 48px;
}
.specialty-grid-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--color-espresso);
  margin-bottom: 8px;
}
.specialty-grid-header p {
  color: var(--color-gray);
  font-size: 15px;
  letter-spacing: 0.05em;
}

.specialty-grid-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}
.specialty-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.specialty-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.specialty-card-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.specialty-icon { font-size: 56px; }
.specialty-card-body {
  padding: 24px;
  background: var(--color-white);
}
.specialty-card-body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-espresso);
  margin-bottom: 8px;
}
.specialty-card-body p {
  font-size: 13px;
  color: var(--color-gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ============================================
   EQUIPMENT SECTION
   ============================================ */
.equipment-section {
  padding: 80px 32px;
  background: var(--color-espresso);
  color: var(--color-cream);
}
.equipment-header {
  text-align: center;
  margin-bottom: 48px;
}
.equipment-header .section-eyebrow { color: var(--color-warm); }
.equipment-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  margin-bottom: 12px;
}
.equipment-header p {
  font-size: 15px;
  color: rgba(245,239,230,0.7);
  max-width: 600px;
  margin: 0 auto;
}

.equipment-brands {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto 40px;
}
.brand-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform var(--transition);
}
.brand-tile:hover { transform: translateY(-4px); }
.brand-tile-img {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.brand-tile:hover .brand-tile-img {
  background: rgba(200,135,76,0.2);
  border-color: rgba(200,135,76,0.4);
}
.brand-icon { font-size: 28px; }
.brand-tile span:last-child {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.7);
}

.equipment-cta-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.equipment-cta-row .btn-primary { background: var(--color-warm); }
.equipment-cta-row .btn-outline { color: var(--color-cream); border-color: rgba(245,239,230,0.4); }
.equipment-cta-row .btn-outline:hover { background: rgba(245,239,230,0.1); }

/* ============================================
   CATEGORY TILES
   ============================================ */
.category-tiles {
  padding: 80px 32px;
  background: var(--color-cream);
}
.category-tiles-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: var(--color-espresso);
  margin-bottom: 40px;
}
.tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.tile {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--transition);
}
.tile:hover { transform: scale(1.02); }
.tile:hover .tile-overlay { opacity: 0.6; }

.tile-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  transition: opacity var(--transition);
}
.tile-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  text-align: center;
}
.tile-icon { font-size: 36px; }
.tile-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.tile--equipment   { background: linear-gradient(135deg, #2c1a08, #6b3d14); }
.tile--accessories { background: linear-gradient(135deg, #0a1a2c, #1a4a6b); }
.tile--clearance   { background: linear-gradient(135deg, #2c0a0a, var(--color-red)); }
.tile--boba        { background: linear-gradient(135deg, #1a0a2c, #5a1a8c); }
.tile--office      { background: linear-gradient(135deg, #0a1a0a, #1a5a1a); }
.tile--food        { background: linear-gradient(135deg, #2c1a0a, #8c6a1a); }

.tile--equipment .tile-overlay   { background: #6b3d14; }
.tile--accessories .tile-overlay { background: #1a4a6b; }
.tile--clearance .tile-overlay   { background: var(--color-red); }
.tile--boba .tile-overlay        { background: #5a1a8c; }
.tile--office .tile-overlay      { background: #1a5a1a; }
.tile--food .tile-overlay        { background: #8c6a1a; }

/* ============================================
   TASTING CTA
   ============================================ */
.tasting-cta {
  background: linear-gradient(135deg, var(--color-brown) 0%, var(--color-espresso) 100%);
  padding: 100px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tasting-cta::before {
  content: '☕';
  position: absolute;
  font-size: 300px;
  opacity: 0.04;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.tasting-cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.tasting-cta .section-eyebrow { color: var(--color-warm); }
.tasting-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 16px;
}
.tasting-cta p {
  font-size: 16px;
  color: rgba(245,239,230,0.8);
  margin-bottom: 36px;
  line-height: 1.7;
}

/* ============================================
   LOCATIONS
   ============================================ */
.locations {
  padding: 80px 32px;
  background: var(--color-white);
}
.locations-header {
  text-align: center;
  margin-bottom: 48px;
}
.locations-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: var(--color-espresso);
  margin-bottom: 8px;
}
.locations-header p { color: var(--color-gray); font-size: 15px; }

.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.location-card {
  padding: 32px 28px;
  background: var(--color-light);
  border-radius: 10px;
  border-top: 3px solid var(--color-warm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.location-icon { font-size: 28px; margin-bottom: 14px; }
.location-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-espresso);
  margin-bottom: 10px;
}
.location-card address {
  font-size: 14px;
  color: var(--color-gray);
  line-height: 1.6;
  margin-bottom: 10px;
}
.location-phone {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}
.location-phone a { color: var(--color-warm); }
.location-phone a:hover { text-decoration: underline; }
.location-hours strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-brown);
  margin-bottom: 6px;
}
.location-hours p { font-size: 13px; color: var(--color-gray); line-height: 1.7; }

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  background: var(--color-dark);
  padding: 60px 32px;
  text-align: center;
}
.newsletter-inner { max-width: 560px; margin: 0 auto; }
.newsletter h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 10px;
}
.newsletter p {
  font-size: 15px;
  color: rgba(245,239,230,0.65);
  margin-bottom: 28px;
}
.newsletter-form {
  display: flex;
  gap: 8px;
}
.newsletter-form input {
  flex: 1;
  padding: 13px 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  color: var(--color-white);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { border-color: var(--color-warm); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-espresso);
  color: var(--color-cream);
  padding: 64px 32px 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 64px;
  max-width: 1300px;
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(245,239,230,0.55);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 320px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: rgba(245,239,230,0.6);
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover {
  background: rgba(200,135,76,0.3);
  color: var(--color-warm);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-warm);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 13px;
  color: rgba(245,239,230,0.6);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--color-warm); }

.footer-bottom {
  text-align: center;
  padding: 20px;
  font-size: 12px;
  color: rgba(245,239,230,0.35);
  max-width: 1300px;
  margin: 0 auto;
}

/* ============================================
   MOBILE OVERLAY
   ============================================ */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28,16,5,0.7);
  z-index: 998;
}
.nav-overlay.active { display: block; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .equipment-brands {
    grid-template-columns: repeat(4, 1fr);
  }
  .specialty-grid-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 300px;
    background: var(--color-dark);
    z-index: 999;
    overflow-y: auto;
    padding: 20px 0;
  }
  .nav-list { flex-direction: column; gap: 0; }
  .nav-list > li > a { font-size: 14px; padding: 12px 24px; }
  .nav-list > li.has-dropdown > a::after { float: right; }
  .dropdown {
    display: none !important;
    position: static;
    border: none;
    background: rgba(0,0,0,0.2);
    min-width: unset;
    padding: 0;
  }
  .has-dropdown.open .dropdown { display: block !important; }
  .mega-dropdown { flex-direction: column !important; min-width: unset; }
  .mobile-menu-toggle { display: block; }
  .nav-close {
    display: block;
    background: none;
    border: none;
    color: var(--color-cream);
    font-size: 28px;
    cursor: pointer;
    padding: 0 20px 16px;
    text-align: right;
  }
  .header-inner { padding: 0 20px; }

  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section-feature { grid-template-columns: 1fr; }
  .section-feature--reverse { direction: ltr; }
  .feature-image { min-height: 280px; }
  .feature-content { padding: 48px 28px; }

  .promo-inner { grid-template-columns: 1fr; }
  .specialty-grid-items { grid-template-columns: 1fr 1fr; }
  .tiles-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 180px); }
  .locations-grid { grid-template-columns: 1fr; }
  .equipment-brands { grid-template-columns: repeat(4, 1fr); }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .newsletter-form { flex-direction: column; }

  .hero-buttons { flex-direction: column; align-items: center; }
  .hero { min-height: 80vh; }
}

@media (max-width: 480px) {
  .specialty-grid-items { grid-template-columns: 1fr; }
  .tiles-grid { grid-template-columns: 1fr; }
  .equipment-brands { grid-template-columns: repeat(2, 1fr); }
  .footer-links { grid-template-columns: 1fr; }
  .announcement-bar { font-size: 11px; }
  .header-inner { padding: 0 14px; }
}
