/* ============================================================
   La Casa De La Alegria — Mexican Grocery Store, Wheeling IL
   Brand palette:
     deep green   #0d3b1e   darker green #0a2c16   bright green #155032
     cream        #f7eeda   warm cream   #fbf6ea
     gold         #e9b94f   deep gold    #d99a2b   ochre #b8862f
     chili red    #c4112a   ink #29200f
   Type: Cormorant Garamond (display) + Jost (body)
   ============================================================ */

:root {
  --green: #0d3b1e;
  --green-dark: #0a2c16;
  --green-bright: #155032;
  --cream: #f7eeda;
  --cream-warm: #fbf6ea;
  --gold: #e9b94f;
  --gold-deep: #d99a2b;
  --ochre: #b8862f;
  --red: #c4112a;
  --ink: #29200f;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

h1, h2, h3, h4 { font-family: var(--serif); }

::selection { background: var(--gold); color: var(--green-dark); }

/* ---------- Buttons ---------- */
.btn-gold, .btn-ghost-dark, .btn-ghost-light, .btn-red,
.btn-green, .btn-white, .btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn-gold {
  background: linear-gradient(var(--gold), var(--gold-deep));
  color: #241405;
  box-shadow: 0 10px 24px rgba(217, 154, 43, 0.32);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-ghost-dark {
  color: var(--green);
  border-color: rgba(13, 59, 30, 0.3);
  font-weight: 500;
}
.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(247, 238, 218, 0.45);
  font-weight: 500;
}
.btn-red {
  background: var(--red);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 30px rgba(196, 17, 42, 0.3);
}
.btn-green {
  background: linear-gradient(var(--green-bright), var(--green));
  color: var(--cream);
  box-shadow: 0 14px 30px rgba(10, 44, 22, 0.3);
}
.btn-white { background: #fff; color: var(--red); }
.btn-outline-white { color: #fff; border: 1.5px solid rgba(255, 255, 255, 0.6); }
.lg { padding: 16px 28px; font-size: 14px; letter-spacing: 0.1em; }

.btn-gold:hover, .btn-red:hover, .btn-green:hover,
.btn-white:hover { transform: translateY(-2px); }
.btn-ghost-dark:hover { background: rgba(13, 59, 30, 0.06); }
.btn-ghost-light:hover, .btn-outline-white:hover { background: rgba(247, 238, 218, 0.12); }

/* ---------- Utility bar ---------- */
.util {
  background: var(--green-dark);
  color: var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 9px clamp(20px, 5vw, 72px);
  font-size: 13px;
  letter-spacing: 0.06em;
}
.util-status { display: flex; align-items: center; gap: 10px; opacity: 0.85; }
.util .dot { color: var(--gold); font-size: 9px; }
.util-contact { display: flex; align-items: center; gap: 22px; }
.util-phone {
  color: var(--cream);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.util-sep { opacity: 0.4; }
.util-addr { opacity: 0.75; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 238, 218, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(41, 32, 15, 0.12);
  box-shadow: 0 6px 24px rgba(10, 44, 22, 0.06);
}
.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px clamp(18px, 4vw, 48px);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  height: 54px;
  width: 54px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
  box-shadow: 0 2px 8px rgba(10, 44, 22, 0.18);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 21px;
  color: var(--green);
  letter-spacing: 0.01em;
}
.brand-name.light { color: var(--cream); }
.brand-tag {
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--ochre);
  text-transform: uppercase;
  margin-top: 4px;
}
.desknav { display: flex; align-items: center; gap: 32px; font-size: 14px; letter-spacing: 0.04em; }
.desknav a { color: var(--ink); text-decoration: none; position: relative; padding: 4px 0; }
.desknav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold-deep);
  transition: width 0.22s ease;
}
.desknav a:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 12px; }
.burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--green);
  border: none;
  cursor: pointer;
}
.mobnav { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(120% 90% at 78% 12%, var(--green-bright) 0%, var(--green) 42%, var(--green-dark) 100%);
  color: var(--cream);
  overflow: hidden;
}
.hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 35%, rgba(233, 185, 79, 0.16), transparent 45%);
  pointer-events: none;
}
.hero-stripe {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-deep), var(--red), var(--gold-deep), transparent);
  opacity: 0.6;
}
.hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) clamp(20px, 4vw, 48px) clamp(56px, 7vw, 104px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
  position: relative;
}
.hero-copy { flex: 1 1 440px; min-width: 300px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(247, 238, 218, 0.28);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero h1 {
  font-weight: 700;
  font-size: clamp(42px, 6.2vw, 80px);
  line-height: 1.02;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.accent-italic { color: var(--gold); font-style: italic; }
.hero-lede {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.62;
  color: rgba(247, 238, 218, 0.82);
  max-width: 540px;
  margin: 0 0 36px;
  font-weight: 300;
}
.hero-lede em { color: var(--gold); font-style: italic; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-rating {
  display: flex; align-items: center; gap: 14px;
  color: rgba(247, 238, 218, 0.8); font-size: 15px;
}
.stars { color: var(--gold); letter-spacing: 2px; }
.hero-rating .stars { font-size: 18px; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: clamp(28px, 4vw, 52px);
  margin-top: 32px; padding-top: 30px;
  border-top: 1px solid rgba(247, 238, 218, 0.18);
}
.stat-num { font-family: var(--serif); font-size: 38px; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 13px; letter-spacing: 0.06em; color: rgba(247, 238, 218, 0.62); margin-top: 6px; }

.hero-emblem {
  flex: 1 1 380px; min-width: 280px;
  display: flex; justify-content: center;
  position: relative;
}
.emblem-halo {
  position: absolute;
  width: 78%; height: 78%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 185, 79, 0.34), transparent 68%);
  filter: blur(8px);
}
.emblem-card {
  position: relative;
  width: min(100%, 440px);
  background: var(--cream);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(233, 185, 79, 0.4);
}
.emblem-card img { width: 100%; height: auto; border-radius: 12px; }
.hero-rule { height: 1px; background: linear-gradient(90deg, transparent, rgba(247, 238, 218, 0.18), transparent); }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--green-dark);
  color: var(--cream);
  overflow: hidden;
  border-top: 1px solid rgba(247, 238, 218, 0.08);
  border-bottom: 1px solid rgba(217, 154, 43, 0.22);
}
.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  padding: 17px 0;
  animation: marquee 38s linear infinite;
}
.marquee-track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 23px;
  white-space: nowrap;
  padding: 0 30px;
}
.marquee-track i { color: var(--gold-deep); font-size: 13px; font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Section shared ---------- */
.section-head { max-width: 640px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.kicker {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 18px;
}
.kicker.gold { color: var(--gold); }
.kicker.pink { color: #f3a7af; }
.muted-light { font-size: 17px; line-height: 1.6; color: rgba(247, 238, 218, 0.72); margin: 0; font-weight: 300; }
.dark-green { color: var(--green); }

/* ---------- About ---------- */
.about { background: var(--cream); padding: clamp(64px, 9vw, 128px) clamp(20px, 4vw, 48px); }
.about-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: clamp(40px, 6vw, 84px);
}
.about-visual { flex: 1 1 360px; min-width: 300px; position: relative; }
.about-frame {
  position: absolute; inset: -14px -14px 22px 22px;
  border: 1.5px solid rgba(217, 154, 43, 0.55);
  border-radius: 8px; z-index: 0;
}
.about-emblem {
  position: relative; z-index: 1;
  border-radius: 6px;
  height: clamp(340px, 42vw, 520px);
  background:
    radial-gradient(circle at 50% 38%, rgba(233, 185, 79, 0.22), transparent 60%),
    linear-gradient(160deg, var(--green-bright), var(--green) 55%, var(--green-dark));
  box-shadow: 0 30px 60px rgba(10, 44, 22, 0.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 32px;
}
.about-emblem img {
  width: min(80%, 320px);
  background: var(--cream);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
.about-emblem-tag {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.about-copy { flex: 1 1 380px; min-width: 300px; }
.about-copy h2 {
  font-weight: 700;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.06;
  color: var(--green);
  margin: 0 0 26px;
  letter-spacing: -0.01em;
}
.about-copy p { font-size: 17px; line-height: 1.72; color: #4a4231; margin: 0 0 20px; }
.about-copy p:last-of-type { margin-bottom: 32px; }
.about-stats { display: flex; flex-wrap: wrap; gap: 36px; }
.about-stat-num { font-family: var(--serif); font-size: 42px; font-weight: 700; color: var(--red); line-height: 1; }
.about-stat-label { font-size: 14px; letter-spacing: 0.04em; color: #7a6f57; margin-top: 6px; }

/* ---------- Offer / Products ---------- */
.offer {
  background: linear-gradient(var(--green), var(--green-dark));
  color: var(--cream);
  padding: clamp(64px, 9vw, 128px) clamp(20px, 4vw, 48px);
}
.offer-inner { max-width: 1280px; margin: 0 auto; }
.offer .section-head h2,
.reviews .section-head h2,
.gallery .section-head h2 {
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.06;
  margin: 0 0 18px;
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}
.offer-card {
  background: var(--cream);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.offer-card:hover { transform: translateY(-4px); box-shadow: 0 30px 56px rgba(0, 0, 0, 0.34); }
.offer-thumb {
  position: relative;
  height: 230px;
  background-size: cover;
  background-position: center;
}
.badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 999px;
}
.badge.dark { background: rgba(10, 44, 22, 0.9); color: var(--gold); }
.badge.red { background: rgba(196, 17, 42, 0.92); color: #fff; }
.offer-body { padding: 26px 26px 30px; }
.offer-body h3 { font-weight: 700; font-size: 28px; color: var(--green); margin: 0 0 8px; }
.offer-body p { font-size: 15.5px; line-height: 1.6; color: #5a513e; margin: 0; }

/* Real store photos where available; brand gradients elsewhere */
.thumb-meats     { background: #5a1212 url('/assets/carne.jpg') center/cover; }
.thumb-produce   { background: #18661f url('/assets/produce-aisle.jpg') center/cover; }
.thumb-groceries { background: #18661f url('/assets/frutas.webp') center/cover; }
.thumb-carnitas  { background: #5a2e10 url('/assets/carnitas.jpg') center/cover; }
.thumb-tacos     { background: #7d0a1b url('/assets/tacos.jpg') center/cover; }
.thumb-tamales   { background: #6b4a1f url('/assets/tamales.jpg') center/cover; }

.offer-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.tile {
  background: rgba(247, 238, 218, 0.06);
  border: 1px solid rgba(247, 238, 218, 0.16);
  border-radius: 10px;
  padding: 28px 24px;
}
.tile-red { background: rgba(196, 17, 42, 0.14); border-color: rgba(196, 17, 42, 0.4); }
.tile-kicker { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.tile-kicker.pink { color: #f3a7af; }
.tile h3 { font-weight: 600; font-size: 24px; margin: 0 0 8px; }
.tile p { font-size: 14.5px; line-height: 1.55; color: rgba(247, 238, 218, 0.7); margin: 0; font-weight: 300; }

/* ---------- Why ---------- */
.why { background: var(--cream-warm); padding: clamp(64px, 9vw, 128px) clamp(20px, 4vw, 48px); }
.why-inner { max-width: 1240px; margin: 0 auto; }
.why .section-head h2 {
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.06;
  margin: 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(28px, 3vw, 44px);
}
.why-item { border-top: 2px solid rgba(217, 154, 43, 0.5); padding-top: 24px; }
.why-num { font-family: var(--serif); font-size: 30px; font-weight: 700; color: var(--red); margin-bottom: 14px; }
.why-item h3 { font-weight: 700; font-size: 25px; color: var(--green); margin: 0 0 10px; }
.why-item p { font-size: 15.5px; line-height: 1.62; color: #5a513e; margin: 0; }

/* ---------- Reviews ---------- */
.reviews {
  background: radial-gradient(120% 80% at 50% 0%, var(--green-bright), var(--green) 55%, var(--green-dark));
  color: var(--cream);
  padding: clamp(64px, 9vw, 128px) clamp(20px, 4vw, 48px);
}
.reviews-inner { max-width: 1240px; margin: 0 auto; }
.reviews .section-head { max-width: 620px; }
.stars.big { font-size: 22px; letter-spacing: 4px; margin-bottom: 18px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.review {
  background: var(--cream);
  color: #3a3221;
  border-radius: 12px;
  padding: 34px 30px;
  margin: 0;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.26);
}
.gold-stars { color: var(--gold-deep); letter-spacing: 2px; font-size: 17px; margin-bottom: 16px; }
.review blockquote {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.4;
  margin: 0 0 22px;
  color: #1f3a26;
  font-style: italic;
}
.review figcaption { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--green); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 700; font-size: 18px;
}
.rv-name { display: block; font-weight: 600; font-size: 15px; color: var(--green); }
.rv-loc { font-size: 13px; color: #8a7d62; }
.review figcaption .rv-via { margin-left: auto; display: inline-flex; align-items: center; opacity: 0.85; }

/* Google reviews badge + CTA */
.google-badge {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 22px; padding: 9px 18px;
  background: var(--cream); border-radius: 999px;
  text-decoration: none; color: #3a3221;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.google-badge:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28); }
.google-badge .g-meta { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.google-badge .g-stars { color: var(--gold-deep); letter-spacing: 2px; font-size: 15px; }
.google-badge .g-label { font-size: 12px; font-weight: 600; color: #5a5340; letter-spacing: 0.2px; }
.reviews-cta { text-align: center; margin-top: clamp(36px, 5vw, 56px); }
.reviews-cta .btn-gold svg { vertical-align: -3px; margin-right: 4px; }

/* ---------- Gallery ---------- */
.gallery { background: var(--green); color: var(--cream); padding: clamp(64px, 9vw, 128px) clamp(20px, 4vw, 48px); }
.gallery-inner { max-width: 1240px; margin: 0 auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.gtile {
  position: relative;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
  background-size: cover;
  background-position: center;
}
.gtile:hover { transform: scale(1.02); }
.gtile span {
  position: relative;
  font-family: var(--serif);
  font-style: italic;
  font-size: 21px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.gtile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10, 44, 22, 0.7), transparent 60%);
}
.g-produce  { background: #155032 url('/assets/nopales.webp') center/cover; }
.g-meats    { background: #5a1212 url('/assets/carne.jpg') center/cover; }
.g-carnitas { background: #5a1212 url('/assets/tacos-asada.webp') center/cover; }
.g-tacos    { background: #7d0a1b url('/assets/street-tacos.jpg') center/cover; }
.g-tamales  { background: #6b4a1f url('/assets/pescado-frito.jpg') center/cover; }
.g-tamales-plate { background: #6b4a1f url('/assets/tamales-plate.jpg') center/cover; }
.g-pantry   { background: #b8862f url('/assets/mandarinas.webp') center/cover; }

/* ---------- Visit ---------- */
.visit { background: var(--cream); padding: clamp(64px, 9vw, 128px) clamp(20px, 4vw, 48px); }
.visit-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.visit-copy h2 {
  font-weight: 700;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.06;
  margin: 0 0 30px;
}
.info-row { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 26px; }
.info-ico {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(217, 154, 43, 0.16);
  display: flex; align-items: center; justify-content: center;
}
.info-label { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: #8a7d62; margin-bottom: 4px; }
.info-value { font-size: 18px; color: var(--ink); font-weight: 500; }
.info-value a { color: var(--green); text-decoration: none; }
.hours { font-size: 16px; color: var(--ink); }
.hours-line { display: flex; justify-content: space-between; gap: 24px; min-width: 240px; max-width: 320px; margin-bottom: 6px; }
.hours-time { font-weight: 600; }
.visit-copy .btn-green { margin-top: 8px; }
.visit-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(10, 44, 22, 0.22);
  border: 1px solid rgba(217, 154, 43, 0.3);
}
.visit-map iframe { width: 100%; height: 100%; min-height: 440px; border: 0; display: block; }

/* ---------- Follow ---------- */
.follow {
  background: var(--red);
  color: #fff;
  padding: clamp(60px, 8vw, 112px) clamp(20px, 4vw, 48px);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.follow::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.16), transparent 55%);
  pointer-events: none;
}
.follow-inner { position: relative; max-width: 720px; margin: 0 auto; }
.follow h2 { font-weight: 700; font-size: clamp(34px, 4.8vw, 60px); line-height: 1.05; margin: 0 0 18px; }
.follow p { font-size: 18px; line-height: 1.6; color: rgba(255, 255, 255, 0.86); max-width: 560px; margin: 0 auto 40px; font-weight: 300; }
.follow-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.social-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 34px; }
.social-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  transition: transform 0.18s ease, background 0.18s ease;
}
.social-btn:hover { background: #fff; color: var(--red); transform: translateY(-3px); }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-dark); color: var(--cream); padding: clamp(56px, 7vw, 90px) clamp(20px, 4vw, 48px) 40px; }
.footer-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
}
.footer-blurb { font-size: 15px; line-height: 1.65; color: rgba(247, 238, 218, 0.7); max-width: 360px; margin: 20px 0 0; }
.footer-social { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(247, 238, 218, 0.08);
  border: 1px solid rgba(233, 185, 79, 0.4);
  color: var(--gold);
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.footer-social a:hover { background: var(--gold); color: var(--green-dark); transform: translateY(-2px); }
.footer-col h4 { font-family: var(--sans); font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin: 0 0 18px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; font-size: 15px; }
.footer-links a { color: rgba(247, 238, 218, 0.8); text-decoration: none; }
.footer-links a:hover { color: var(--gold); }
.footer-visit { font-size: 15px; line-height: 1.6; }
.footer-addr { margin-bottom: 12px; }
.footer-phone { color: var(--gold); text-decoration: none; font-weight: 600; }
.footer-hours { color: rgba(247, 238, 218, 0.66); margin-top: 12px; }
.footer-base {
  max-width: 1240px; margin: 44px auto 0;
  padding-top: 26px;
  border-top: 1px solid rgba(247, 238, 218, 0.14);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: 13px; color: rgba(247, 238, 218, 0.55); letter-spacing: 0.04em;
}

/* ---------- Sticky mobile call button ---------- */
.sticky-call {
  display: none;
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 60;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(var(--gold), var(--gold-deep));
  align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .visit-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .desknav { display: none; }
  .header-cta .btn-ghost-dark, .header-cta .btn-gold { display: none; }
  .burger { display: flex; }
  .mobnav {
    display: flex;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--cream);
    border-top: 1px solid rgba(41, 32, 15, 0.08);
  }
  .mobnav.open { max-height: 360px; }
  .mobnav a {
    padding: 14px clamp(18px, 4vw, 48px);
    text-decoration: none;
    color: var(--ink);
    border-bottom: 1px solid rgba(41, 32, 15, 0.06);
    font-size: 15px;
  }
  .sticky-call { display: flex; }
}

@media (max-width: 620px) {
  .util { flex-direction: column; gap: 6px; text-align: center; font-size: 12px; padding: 8px 16px; }
  .util-contact { gap: 12px; }
  .util-addr { display: none; }
  .brand-name { font-size: 18px; }
  .brand-mark { height: 46px; width: 46px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-base { flex-direction: column; }
  .hours-line { min-width: 0; max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}
