/* Elite Fencing and Decks V2 – Texas Select inspired */

:root {
  --primary: #c92a26;
  --primary-hover: #e03d38;
  --text: #e8e8e8;
  --text-muted: #9ca3af;
  --bg: #1a1a1e;
  --bg-alt: #222228;
  --border: #3a3a42;
  --footer-bg: #121216;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Outfit", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-sans); font-size: 1rem; line-height: 1.6; color: var(--text); background: var(--bg); }

.container { max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; }

/* Top bar */
.top-bar {
  background: var(--footer-bg);
  color: #fff;
  font-size: 0.875rem;
  padding: 0.4rem 0;
}
.top-bar-inner { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.top-bar a { color: #fff; text-decoration: none; }
.top-bar a:hover { text-decoration: underline; }
.top-bar-inner { justify-content: flex-end; }
.top-bar-social { display: flex; gap: 0.75rem; align-items: center; }
.top-bar-social a { opacity: 0.9; }
.top-bar-icon { display: inline-flex; color: #fff; padding: 4px; }
.top-bar-icon:hover { opacity: 1; }
.top-bar-icon svg { display: block; }
@media (max-width: 900px) {
  .top-bar-social { width: auto; }
}

/* Header */
.site-header {
  background: var(--bg);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
}
.logo-img { height: 48px; width: auto; display: block; }
.logo-wrap { display: block; }
.nav { display: flex; align-items: center; gap: 2.25rem; }
.nav a { color: var(--text); text-decoration: none; font-weight: 500; }
.nav a:hover { color: var(--primary); }
.btn-header {
  background: var(--primary);
  color: #fff !important;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
}
.btn-header:hover { background: var(--primary-hover); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 1px; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; top: 0; right: 0; width: 280px; height: 100%;
    background: var(--bg); box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    flex-direction: column; align-items: stretch; padding: 4rem 1.5rem 1.5rem;
    transform: translateX(100%); transition: transform 0.25s;
    z-index: 200;
  }
  .nav.is-open { transform: translateX(0); }
  .nav a { padding: 0.5rem 0; border-bottom: 1px solid var(--border); }
}

/* Hero – Wichita skyline below top banner, headline and buttons over it */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  background: linear-gradient(180deg, rgba(26, 15, 14, 0.75) 0%, rgba(26, 15, 14, 0.6) 100%),
    url("assets/img/wichita-skyline-aerial.jpg") center center / cover no-repeat;
  color: #fff;
}
.hero-bg { position: absolute; inset: 0; opacity: 0.25; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); pointer-events: none; }
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  background: rgba(0, 0, 0, 0.55);
  padding: 2.25rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.hero h1.hero-title {
  margin: 0 auto 0.75rem;
  line-height: 0;
}
.hero-logo {
  display: block;
  width: auto;
  height: clamp(64px, 16vw, 120px);
  max-width: min(100%, 560px);
  margin: 0 auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 24px rgba(0, 0, 0, 0.3));
}
.hero-sub {
  font-size: 1.125rem;
  opacity: 1;
  margin: 0 auto 1.75rem;
  max-width: 420px;
  line-height: 1.5;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5), 0 0 16px rgba(0, 0, 0, 0.25);
}
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
.hero .btn-primary {
  box-shadow: 0 4px 16px rgba(201, 42, 38, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
}
.hero .btn-primary:hover { box-shadow: 0 6px 20px rgba(201, 42, 38, 0.6), 0 2px 8px rgba(0, 0, 0, 0.3); }
.hero .btn-outline {
  border-width: 2px;
  border-color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.hero .btn-outline:hover { background: rgba(255, 255, 255, 0.2); border-color: #fff; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-hover); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.8); }
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

/* Rotating reviews (4–5 five-star reviews, one at a time) */
.rotating-reviews { background: var(--bg-alt); }
.rotating-reviews-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 1.5rem 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(255,255,255,0.04), 0 0 80px rgba(201, 42, 38, 0.06);
}
.rotating-review-stars { color: #f5a623; font-size: 1.25rem; letter-spacing: 0.15em; margin-bottom: 0.5rem; }
.rotating-review-text { font-size: 1.25rem; font-style: italic; color: var(--text); margin: 0 0 0.75rem; line-height: 1.5; }
.rotating-review-author { font-size: 0.9375rem; font-style: normal; font-weight: 600; display: block; }
.rotating-review-source { font-size: 0.8125rem; color: var(--text-muted); }
.rotating-review-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1rem; }
.rotating-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer; padding: 0;
  transition: background 0.2s;
}
.rotating-dot:hover { background: var(--text-muted); }
.rotating-dot.active { background: var(--primary); }

/* Sections */
.section { padding: 4rem 0; }
.section-label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin: 0 0 0.5rem;
}
.section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.75rem;
  color: var(--text);
}
.section-lead { color: var(--text-muted); max-width: 640px; margin: 0 0 2rem; }

/* Services grid (Texas Select style) */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.service-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s;
  box-shadow: 0 0 24px rgba(201, 42, 38, 0.08), 0 4px 16px rgba(0,0,0,0.2);
}
.service-card:hover { box-shadow: 0 0 32px rgba(201, 42, 38, 0.2), 0 8px 24px rgba(0,0,0,0.3); }
.service-card-image {
  height: 190px;
  width: 100%;
  background: var(--bg-alt);
  background-size: cover;
  background-position: center;
}
.service-img-wood {
  background-image: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.15) 100%), url("assets/img/services/wood-fence.jpg");
}
.service-img-vinyl {
  background-image: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.15) 100%), url("assets/img/services/vinyl-fence.png");
}
.service-img-chain-link {
  background-image: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.15) 100%), url("assets/img/services/chain-link.png");
}
.service-img-iron {
  background-image: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.15) 100%), url("assets/img/services/iron-fence.png");
}
.service-img-deck {
  background-image: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.15) 100%), url("assets/img/services/deck.png");
}
.service-img-composite {
  background-image: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.15) 100%), url("assets/img/services/composite-fence.png");
}
.service-img-ranch {
  background-image: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.15) 100%), url("assets/img/services/ranch-fence.png");
}
.service-img-horizontal {
  background-image: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.15) 100%), url("assets/img/services/horizontal-fence.png");
}
.service-img-swing-gate {
  background-image: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.15) 100%), url("assets/img/services/swing-gate.png");
}
.service-card h3 { margin: 1rem 1.25rem 0; font-size: 1.125rem; font-family: var(--font-display); }
.service-card p { margin: 0.5rem 1.25rem 1rem; font-size: 0.9375rem; color: var(--text-muted); }
.service-card .link-arrow {
  display: inline-block;
  margin: 0 1.25rem 1.25rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}
.service-card .link-arrow:hover { text-decoration: underline; }
.service-card .link-arrow::after { content: " →"; }

/* About */
.about { background: var(--bg-alt); }
.about-years {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.25rem;
  padding: 0.75rem 1.5rem;
  background: var(--bg);
  border: 1px solid var(--primary);
  border-radius: 10px;
  box-shadow: 0 0 24px rgba(201, 42, 38, 0.15);
}
.about-years-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 1;
  color: var(--primary);
}
.about-years-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
.about-lead { max-width: 720px; }
.about-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 1.5rem; }
.about-block {
  background: var(--bg-alt);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: 0 0 30px rgba(255,255,255,0.03), 0 0 50px rgba(201, 42, 38, 0.05);
}
.about-block h3 { font-size: 1.125rem; margin: 0 0 0.5rem; font-family: var(--font-display); }
.about-block p { margin: 0; font-size: 0.9375rem; color: var(--text-muted); }

/* Projects – horizontal scroll gallery */
.projects-gallery-wrap {
  position: relative;
  margin-top: 2rem;
  padding: 0 3rem;
}
.projects-gallery {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 24px rgba(0,0,0,0.35), 0 0 48px rgba(201, 42, 38, 0.08);
}
.projects-track {
  display: flex;
  gap: 1rem;
  padding: 0.5rem 0;
  width: max-content;
  will-change: transform;
}
.projects-gallery-wrap.paused .projects-track { animation: none; }
.projects-track img {
  width: 280px;
  height: 200px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.projects-track img:hover { border-color: var(--primary); box-shadow: 0 4px 20px rgba(201, 42, 38, 0.25); }
.projects-track img.selected { border-color: var(--primary); box-shadow: 0 0 24px rgba(201, 42, 38, 0.4); }
.projects-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: var(--bg-alt);
  color: var(--primary);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.projects-nav:hover { background: var(--primary); color: #fff; }
.projects-nav-prev { left: 0.5rem; }
.projects-nav-next { right: 0.5rem; }
.projects-description {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--bg-alt);
  border-radius: 8px;
  border: 1px solid var(--border);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.projects-desc-text { margin: 0 0 0.75rem; font-size: 1rem; color: var(--text); }
.projects-areas { margin: 0; font-size: 0.9375rem; color: var(--text-muted); }
.projects-areas strong { color: var(--text); }
.projects-cta { text-align: center; margin-top: 2rem; }

/* Project lightbox – view images larger, click through */
.projects-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}
.projects-lightbox.open {
  opacity: 1;
  visibility: visible;
}
.projects-lightbox-inner {
  max-width: 92vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.projects-lightbox-inner img {
  max-width: 100%;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.5);
}
.projects-lightbox-counter {
  margin: 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
}
.projects-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}
.projects-lightbox-close:hover { background: var(--primary); }
.projects-lightbox-prev,
.projects-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 56px;
  height: 56px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.projects-lightbox-prev:hover,
.projects-lightbox-next:hover { background: var(--primary); border-color: var(--primary); }
.projects-lightbox-prev { left: 1rem; }
.projects-lightbox-next { right: 1rem; }

/* Contact */
.contact { background: var(--bg-alt); }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-details { margin-top: 1rem; }
.contact-item { display: block; margin-bottom: 0.5rem; color: var(--text-muted); font-size: 0.9375rem; }
.contact-item strong { color: var(--text); }
.contact-item a { color: var(--primary); }
.contact-form {
  background: var(--bg);
  padding: 1.75rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: 0 0 40px rgba(201, 42, 38, 0.12), 0 0 60px rgba(255,255,255,0.02);
}
.contact-form label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.35rem; color: var(--text); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-bottom: 1rem;
  background: var(--bg-alt);
  color: var(--text);
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form-message { margin: 0.75rem 0 0; font-size: 0.9375rem; min-height: 1.25em; }
.contact-form button { width: 100%; margin-top: 0.25rem; }

@media (max-width: 768px) {
  .contact-wrap { grid-template-columns: 1fr; }
}

/* Service area */
.cities-wrap { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; margin-top: 1.5rem; }
.cities-col h4 { font-size: 1rem; margin: 0 0 0.5rem; font-family: var(--font-display); }
.cities-col p { margin: 0; font-size: 0.9375rem; color: var(--text-muted); }

/* Footer */
.site-footer { background: var(--footer-bg); color: #fff; padding: 2.5rem 0 0; }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 2rem; padding-bottom: 2rem; }
.footer-logo { height: 44px; width: auto; margin-bottom: 0.75rem; filter: brightness(0) invert(1); }
.footer-brand p { margin: 0.25rem 0; font-size: 0.9375rem; opacity: 0.9; }
.footer-brand a { color: #fff; }
.footer-links { display: flex; gap: 2.5rem; }
.footer-col h4 { font-size: 0.875rem; margin: 0 0 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.9; }
.footer-col a { display: block; color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.9375rem; margin-bottom: 0.35rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding: 1rem 0; }
.footer-bottom p { margin: 0; font-size: 0.8125rem; opacity: 0.75; }
.footer-social { margin-top: 0.75rem; display: flex; gap: 1rem; }
.footer-social a { color: rgba(255,255,255,0.9); text-decoration: none; font-size: 0.9375rem; }
.footer-social a:hover { color: #fff; }

/* Reviews */
/* Reviews – Texas Select style: clean cards, stars, quote, author, source */
.reviews-texas-style .section-lead { margin-bottom: 2rem; }
.reviews-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.review-card-texas {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 0 24px rgba(201, 42, 38, 0.08), 0 1px 3px rgba(0,0,0,0.2);
  transition: box-shadow 0.2s;
}
.review-card-texas:hover { box-shadow: 0 0 36px rgba(201, 42, 38, 0.18), 0 0 20px rgba(255,255,255,0.04), 0 4px 12px rgba(0,0,0,0.25); }
.review-card-stars {
  margin-bottom: 0.75rem;
  letter-spacing: 0.15em;
}
.review-card-stars .review-star { color: #f5a623; font-size: 1.125rem; }
.review-card-text {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
  font-style: italic;
}
.review-card-author {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  font-style: normal;
}
.review-card-source {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}
.review-card-reviewer {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  font-style: normal;
}
.review-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.review-actions .btn { min-width: 160px; }
.btn-outline-dark { background: transparent; color: var(--text); border: 2px solid var(--border); }
.btn-outline-dark:hover { border-color: var(--primary); color: var(--primary); background: rgba(201, 42, 38, 0.08); }
.review-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: 0 0 20px rgba(201, 42, 38, 0.06);
}
.review-source { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--primary); margin-bottom: 0.35rem; }
.review-stars { margin-bottom: 0.5rem; }
.review-star { color: #f5a623; }
.review-text { margin: 0 0 0.5rem; font-size: 0.9375rem; line-height: 1.5; color: var(--text); }
.review-author { font-size: 0.8125rem; color: var(--text-muted); }

/* Map – full width below Services, Texas Select style */
.map-fullwidth { width: 100%; }
.map-inner {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}
.map-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: auto;
}
.map-info-bubble {
  position: absolute;
  left: 16px;
  top: 16px;
  width: 420px;
  max-width: calc(100% - 48px);
  min-height: 200px;
  background: var(--bg-alt);
  padding: 1.75rem 2rem;
  border-radius: 12px;
  border: 2px solid var(--primary);
  box-shadow:
    0 0 0 2px rgba(201, 42, 38, 0.25),
    0 0 28px rgba(201, 42, 38, 0.4),
    0 4px 24px rgba(0,0,0,0.4);
  z-index: 2;
  pointer-events: auto;
}
.map-bubble-logo {
  display: block;
  height: 48px;
  width: auto;
  margin-bottom: 0.75rem;
}
.map-bubble-title {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
}
.map-bubble-address {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.map-bubble-link {
  display: block;
  font-size: 0.9375rem;
  color: var(--primary);
  text-decoration: none;
  margin-bottom: 0.25rem;
}
.map-bubble-link:hover { text-decoration: underline; }
.map-bubble-hours {
  margin: 0.5rem 0 0.75rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
/* Our pin overlay – centered on map to sit over Google’s red pin so only our logo shows */
.map-pin-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -100%);
  z-index: 2;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.map-pin-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-alt);
  padding: 4px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
  object-fit: contain;
}
.map-pin-wrap::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 14px solid var(--bg-alt);
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
  margin-top: -2px;
}
@media (max-width: 600px) {
  .map-info-bubble { left: 8px; right: 8px; top: 8px; width: auto; min-height: auto; padding: 1.25rem 1.5rem; }
  .map-inner { height: 400px; }
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
}

/* Floating reviews widget – bottom left, closable */
.reviews-widget { position: fixed; bottom: 20px; left: 20px; z-index: 9999; font-size: 0.9375rem; }
.reviews-widget-tab {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.85rem; background: var(--primary); color: #fff;
  border: none; border-radius: 999px; cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  font-family: var(--font-sans); font-weight: 600;
}
.reviews-widget-tab:hover { background: var(--primary-hover); }
.reviews-widget-tab-stars { font-size: 0.875rem; letter-spacing: 0.05em; }
.reviews-widget-panel {
  position: absolute; bottom: 100%; left: 0; margin-bottom: 8px;
  width: 320px; max-height: 380px;
  background: var(--bg-alt); border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  border: 1px solid var(--border);
  overflow: hidden;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
}
.reviews-widget-panel.open { opacity: 1; visibility: visible; transform: translateY(0); }
.reviews-widget-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1rem; background: var(--bg); color: #fff;
}
.reviews-widget-header h3 { margin: 0; font-size: 0.9375rem; font-family: var(--font-display); }
.reviews-widget-close {
  background: none; border: none; color: #fff; font-size: 1.5rem; line-height: 1;
  cursor: pointer; padding: 0 0.25rem; opacity: 0.9;
}
.reviews-widget-close:hover { opacity: 1; }
.reviews-widget-list {
  padding: 0.75rem; max-height: 260px; overflow-y: auto;
}
.reviews-widget-item { padding: 0.6rem 0; border-bottom: 1px solid var(--border); }
.reviews-widget-item:last-child { border-bottom: none; }
.reviews-widget-item-stars { color: #f5a623; font-size: 0.75rem; margin-bottom: 0.25rem; }
.reviews-widget-item-text { margin: 0 0 0.25rem; font-size: 0.875rem; line-height: 1.4; color: var(--text); }
.reviews-widget-item-author { font-size: 0.75rem; color: var(--text-muted); }
.reviews-widget-cta {
  display: block; text-align: center; padding: 0.6rem 1rem;
  background: var(--bg-alt); color: var(--primary); font-weight: 600; text-decoration: none;
  font-size: 0.8125rem;
}
.reviews-widget-cta:hover { background: var(--border); }
