/* GarageSite — premium public design system v3 */
:root {
  --gs-primary: #c8102e;
  --gs-secondary: #0c1222;
  --gs-accent: #ff5a5f;
  --gs-bg: #f6f7fb;
  --gs-heading: #0b1220;
  --gs-body: #3d4b5f;
  --gs-radius: 16px;
  --gs-radius-sm: 10px;
  --gs-font-h: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --gs-font-b: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --gs-max: 1180px;
  --gs-shadow: 0 18px 50px rgba(12, 18, 34, 0.1);
  --gs-shadow-sm: 0 8px 24px rgba(12, 18, 34, 0.07);
  --gs-ring: 0 0 0 4px color-mix(in srgb, var(--gs-primary) 22%, transparent);
  --gs-glass: rgba(255, 255, 255, 0.08);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--gs-font-b);
  color: var(--gs-body);
  background: var(--gs-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gs-primary); text-underline-offset: 2px; }
h1, h2, h3, h4 {
  font-family: var(--gs-font-h);
  color: var(--gs-heading);
  line-height: 1.15;
  margin: 0 0 0.7rem;
  letter-spacing: -0.03em;
  font-weight: 800;
}
p { margin: 0 0 0.85rem; }
.container { width: min(100% - 1.75rem, var(--gs-max)); margin-inline: auto; }

/* Eyebrow / section labels */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gs-primary);
  margin-bottom: 0.75rem;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--gs-primary);
  border-radius: 2px;
}

.section { padding: clamp(3.25rem, 6vw, 5.5rem) 0; position: relative; }
.section--alt {
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(15, 23, 42, 0.04);
}
.section__head { max-width: 38rem; margin-bottom: clamp(1.75rem, 3vw, 2.5rem); }
.section__head h2 { font-size: clamp(1.7rem, 2.8vw, 2.35rem); }
.section__head p { margin: 0; color: var(--gs-body); font-size: 1.05rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 18, 34, 0.92);
  color: #fff;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gs-primary), transparent 70%);
}
.site-header.is-light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--gs-heading);
  border-bottom-color: rgba(15, 23, 42, 0.06);
}
.site-header.is-light::after {
  background: linear-gradient(90deg, var(--gs-primary), rgba(15, 23, 42, 0.05) 70%);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  max-width: min(52vw, 280px);
}
.brand img { height: 42px; width: auto; }
.nav { display: none; gap: 0.15rem; align-items: center; flex-wrap: wrap; }
.nav a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  opacity: 0.88;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  transition: background 0.15s, opacity 0.15s;
}
.nav a:hover, .nav a:focus-visible {
  opacity: 1;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}
.site-header.is-light .nav a:hover { background: rgba(15, 23, 42, 0.05); }
.header-cta { display: none; align-items: center; gap: 0.55rem; }
.header-cta .btn { padding: 0.7rem 1.05rem; font-size: 0.92rem; }
@media (min-width: 960px) {
  .nav, .header-cta { display: flex; }
  .nav-toggle { display: none !important; }
}
.nav-toggle {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: inherit;
  border-radius: 12px;
  padding: 0.6rem 0.9rem;
  font-weight: 700;
  font-size: 0.95rem;
}
.site-header.is-light .nav-toggle { border-color: #d1d5db; background: #f8fafc; }
.mobile-nav { display: none; padding: 0 0 1rem; }
.mobile-nav.is-open { display: grid; gap: 0.15rem; }
.mobile-nav a {
  display: block;
  padding: 0.85rem 0.25rem;
  color: inherit;
  text-decoration: none;
  font-weight: 650;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header.is-light .mobile-nav a { border-color: #eef2f7; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 0.98rem;
  line-height: 1.15;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:focus-visible { outline: none; box-shadow: var(--gs-ring); }
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gs-primary), color-mix(in srgb, var(--gs-primary) 70%, #000));
  color: #fff;
  box-shadow: 0 12px 28px color-mix(in srgb, var(--gs-primary) 35%, transparent);
}
.btn-primary:hover { filter: brightness(1.05); color: #fff; }
.btn-secondary {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.08); }
.btn-light {
  background: #fff;
  color: var(--gs-secondary);
  box-shadow: var(--gs-shadow-sm);
}
.btn-whatsapp { background: #25D366; color: #fff; box-shadow: 0 10px 24px rgba(37, 211, 102, 0.3); }
.btn-block { width: 100%; }

/* Hero */
.hero {
  position: relative;
  color: #fff;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    radial-gradient(1200px 500px at 10% 10%, color-mix(in srgb, var(--gs-primary) 35%, transparent), transparent 55%),
    linear-gradient(135deg, var(--gs-secondary) 0%, #121a2e 45%, #0a0f1a 100%);
  background-size: cover;
  background-position: center;
}
.hero--photo { align-items: center; }
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6, 10, 20, 0.88) 0%, rgba(6, 10, 20, 0.62) 48%, rgba(6, 10, 20, 0.28) 100%),
    linear-gradient(0deg, rgba(6, 10, 20, 0.55) 0%, transparent 42%);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 12, 22, 0.82) 0%, rgba(8, 12, 22, 0.55) 55%, rgba(8, 12, 22, 0.35) 100%);
  opacity: 1 !important;
}
.hero__grid { position: relative; z-index: 1; width: min(100% - 1.75rem, var(--gs-max)); }
.hero__content {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 9vw, 6.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  max-width: 40rem;
}
.hero__content.is-center { margin-inline: auto; text-align: center; max-width: 46rem; }
.hero__content.is-right { margin-left: auto; text-align: right; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.35rem, 5.2vw, 3.85rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
  text-wrap: balance;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}
.hero__lead, .hero p {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.08rem, 1.7vw, 1.25rem);
  max-width: 34rem;
  line-height: 1.55;
}
.hero__content.is-center p, .hero__content.is-center .hero__lead { margin-inline: auto; }
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.hero__actions.is-center { justify-content: center; }
.hero__actions.is-right { justify-content: flex-end; }
.btn-lg { padding: 1.05rem 1.45rem; font-size: 1.02rem; }
.btn-ghost-light {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.18); color: #fff; }
.eyebrow--light { color: #fda4af; }
.eyebrow--light::before { background: #fda4af; }
.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
  max-width: 28rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.hero__proof strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.hero__proof span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 600;
}
.section--tight { padding-top: 2.5rem; padding-bottom: 1rem; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center p { margin-inline: auto; }
.lead-text { font-size: 1.08rem; line-height: 1.65; }
.narrow { max-width: 760px; margin-inline: auto; }
.center-actions { text-align: center; margin: 1rem 0 1.25rem; }
.badge-open {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.16);
  color: #6ee7b7;
  font-weight: 750;
  font-size: 0.82rem;
  margin-bottom: 1.1rem;
  border: 1px solid rgba(110, 231, 183, 0.25);
}
.badge-open::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.2);
}
.badge-open.is-closed {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  border-color: rgba(252, 165, 165, 0.25);
}
.badge-open.is-closed::before {
  background: #f87171;
  box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.2);
}

/* Trust strip */
.trust-wrap {
  position: relative;
  z-index: 2;
  margin-top: -2.25rem;
  margin-bottom: 0.5rem;
}
.trust-strip {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr 1fr;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: calc(var(--gs-radius) + 4px);
  box-shadow: var(--gs-shadow);
}
@media (min-width: 800px) {
  .trust-strip { grid-template-columns: repeat(4, 1fr); padding: 0.35rem; }
}
.trust-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-align: center;
  font-weight: 750;
  font-size: 0.88rem;
  color: var(--gs-heading);
  padding: 0.75rem 0.5rem;
  border-radius: var(--gs-radius);
}
.trust-strip span::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--gs-primary) 12%, white);
  color: var(--gs-primary);
  font-size: 0.72rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* Cards / grids */
.grid-3 {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: #fff;
  border-radius: calc(var(--gs-radius) + 2px);
  padding: 1.45rem 1.4rem 1.5rem;
  box-shadow: var(--gs-shadow-sm);
  border: 1px solid rgba(15, 23, 42, 0.05);
  height: 100%;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--gs-shadow);
}
.card h3 { font-size: 1.12rem; margin-bottom: 0.45rem; }
.card p { flex: 1; margin-bottom: 0.85rem; }
.card .price {
  font-weight: 850;
  color: var(--gs-primary);
  margin: 0.15rem 0 0.9rem;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.card .btn { align-self: flex-start; margin-top: auto; padding: 0.7rem 1.05rem; font-size: 0.9rem; }

.icon-pill {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, color-mix(in srgb, var(--gs-primary) 16%, white), color-mix(in srgb, var(--gs-primary) 6%, white));
  color: var(--gs-primary);
  font-weight: 900;
  margin-bottom: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  border: 1px solid color-mix(in srgb, var(--gs-primary) 18%, transparent);
}

/* CTA / featured */
.cta-band {
  background: linear-gradient(120deg, var(--gs-primary), color-mix(in srgb, var(--gs-primary) 55%, var(--gs-secondary)));
  color: #fff;
  border-radius: calc(var(--gs-radius) + 8px);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 50px color-mix(in srgb, var(--gs-primary) 28%, transparent);
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2, .cta-band p { color: #fff; margin: 0; }
.cta-band h2 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); margin-bottom: 0.35rem; }
.cta-band p { opacity: 0.92; max-width: 36rem; }

.featured {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  background:
    radial-gradient(600px 280px at 100% 0%, color-mix(in srgb, var(--gs-primary) 30%, transparent), transparent 60%),
    linear-gradient(145deg, var(--gs-secondary), #111827);
  color: #fff;
  border-radius: calc(var(--gs-radius) + 10px);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  box-shadow: var(--gs-shadow);
}
.featured h2, .featured p { color: #fff; }
.featured h2 { font-size: clamp(1.55rem, 2.6vw, 2.1rem); }
@media (min-width: 860px) {
  .featured { grid-template-columns: 1.35fr 0.85fr; gap: 2rem; }
}

/* About split */
.about-grid {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1.15fr 0.85fr; gap: 2.5rem; align-items: center; }
}
.about-panel {
  background: #fff;
  border-radius: calc(var(--gs-radius) + 6px);
  padding: 1.5rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--gs-shadow-sm);
}
.about-panel .stat {
  display: grid;
  gap: 0.15rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid #eef2f7;
}
.about-panel .stat:last-child { border-bottom: 0; padding-bottom: 0; }
.about-panel .stat strong {
  font-size: 1.35rem;
  color: var(--gs-heading);
  letter-spacing: -0.03em;
}
.about-panel .stat span { color: var(--gs-body); font-size: 0.92rem; }
.about-photo {
  width: 100%;
  border-radius: calc(var(--gs-radius) + 6px);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--gs-shadow);
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.about-grid--pro { gap: 2rem; }
@media (min-width: 960px) {
  .about-grid--pro { grid-template-columns: 1.05fr 0.95fr; gap: 2.75rem; align-items: start; }
}
.about-photo-frame { position: relative; }
.about-float-card {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  box-shadow: var(--gs-shadow);
}
.about-float-card strong { display: block; color: var(--gs-heading); font-size: 1rem; }
.about-float-card span { color: var(--gs-body); font-size: 0.88rem; }
.about-cta-row { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1.35rem; }

.service-card { padding: 0; overflow: hidden; }
.service-card__body { padding: 1.25rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.service-card__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #0f172a;
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.service-card:hover .service-card__media img { transform: scale(1.05); }
.pill-hot {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--gs-primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
}
.service-card.is-featured { box-shadow: 0 18px 44px color-mix(in srgb, var(--gs-primary) 18%, transparent); }
.why-card { position: relative; padding-top: 1.5rem; }
.why-num {
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--gs-primary);
  margin-bottom: 0.65rem;
}
.featured--split {
  display: grid;
  gap: 0;
  padding: 0;
  overflow: hidden;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .featured--split { grid-template-columns: 1.05fr 0.95fr; min-height: 420px; }
}
.featured__media { min-height: 260px; }
.featured__media img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.featured__copy { padding: clamp(1.6rem, 3.5vw, 2.6rem); display: flex; flex-direction: column; justify-content: center; }
.featured__actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.35rem; }
.review-card { min-height: 100%; }
.brand-chips--center { justify-content: center; }
.hours-layout {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .hours-layout { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
}
.contact-section {
  background:
    radial-gradient(700px 320px at 0% 0%, color-mix(in srgb, var(--gs-primary) 12%, transparent), transparent 60%),
    var(--gs-bg);
}
.contact-layout {
  display: grid;
  gap: 1.75rem;
}
@media (min-width: 960px) {
  .contact-layout { grid-template-columns: 0.9fr 1.1fr; gap: 2.5rem; align-items: start; }
}
.contact-bullets {
  margin: 1rem 0 1.35rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
.contact-bullets li {
  position: relative;
  padding-left: 1.5rem;
  font-weight: 650;
  color: var(--gs-heading);
}
.contact-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gs-primary);
  font-weight: 900;
}
.form-card--elevated { box-shadow: 0 24px 60px rgba(12, 18, 34, 0.14); }
.input-reg { text-transform: uppercase; letter-spacing: 0.06em; font-weight: 750; }
.gallery-grid--pro {
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}
@media (min-width: 800px) {
  .gallery-grid--pro { grid-template-columns: repeat(3, 1fr); }
}
.gallery-item {
  margin: 0;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--gs-shadow-sm);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.75rem 0.9rem;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
}
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 0.65rem; position: relative; z-index: 1; }
.brand img {
  height: 46px;
  width: auto;
  border-radius: 8px;
}
.prose-inline p { margin: 0 0 0.85rem; }
.prose-inline p:last-child { margin-bottom: 0; }
.prose-inline ul { margin: 0.5rem 0 1rem; padding-left: 1.2rem; }

/* Reviews */
.stars {
  color: #f59e0b;
  letter-spacing: 1px;
  font-size: 1rem;
  margin-bottom: 0.65rem;
}
.review-meta {
  font-size: 0.88rem;
  color: #6b7280;
  margin-top: auto;
  padding-top: 0.85rem;
}
blockquote.card {
  margin: 0;
  font-style: normal;
}
blockquote.card p {
  font-size: 1.02rem;
  color: var(--gs-heading);
  line-height: 1.55;
}

/* Brands */
.brand-chips { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.chip {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gs-heading);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

/* Hours */
.hours-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: calc(var(--gs-radius) + 4px);
  overflow: hidden;
  box-shadow: var(--gs-shadow-sm);
  border: 1px solid rgba(15, 23, 42, 0.05);
}
.hours-table th, .hours-table td {
  padding: 1rem 1.15rem;
  text-align: left;
  border-bottom: 1px solid #eef2f7;
}
.hours-table tr:last-child th,
.hours-table tr:last-child td { border-bottom: 0; }
.hours-table th { width: 38%; color: var(--gs-heading); font-weight: 750; }

/* FAQ */
.faq details {
  background: #fff;
  border-radius: var(--gs-radius);
  padding: 1.05rem 1.2rem;
  margin-bottom: 0.7rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
}
.faq summary {
  cursor: pointer;
  font-weight: 750;
  color: var(--gs-heading);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  float: right;
  color: var(--gs-primary);
  font-weight: 800;
}
.faq details[open] summary::after { content: "–"; }
.faq summary:focus-visible { outline: 2px solid var(--gs-primary); outline-offset: 2px; }
.faq p { margin: 0.8rem 0 0; color: var(--gs-body); }

/* Forms */
.form-card {
  background: #fff;
  border-radius: calc(var(--gs-radius) + 8px);
  padding: clamp(1.25rem, 3vw, 1.85rem);
  box-shadow: var(--gs-shadow);
  border: 1px solid rgba(15, 23, 42, 0.05);
}
.form-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 700px) { .form-grid.two { grid-template-columns: 1fr 1fr; } }
label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--gs-heading);
  font-size: 0.92rem;
}
input, select, textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1.5px solid #d8e0ea;
  border-radius: 14px;
  font: inherit;
  background: #fff;
  color: var(--gs-heading);
  transition: border-color 0.15s, box-shadow 0.15s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gs-primary);
  box-shadow: var(--gs-ring);
}
.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.alert { padding: 1rem 1.1rem; border-radius: 14px; margin-bottom: 1rem; font-weight: 650; }
.alert-success { background: #ecfdf5; color: #065f46; }
.alert-error { background: #fef2f2; color: #991b1b; }
.checkbox { display: flex; gap: 0.65rem; align-items: flex-start; font-weight: 550; }
.checkbox input { width: auto; margin-top: 0.25rem; }

.map-frame {
  border: 0;
  width: 100%;
  min-height: 340px;
  border-radius: calc(var(--gs-radius) + 4px);
  background: #e5e7eb;
  box-shadow: var(--gs-shadow-sm);
}
.gallery-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 800px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-grid img {
  border-radius: 14px;
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  box-shadow: var(--gs-shadow-sm);
}

/* Footer */
.site-footer {
  background: var(--gs-secondary);
  color: rgba(255, 255, 255, 0.86);
  padding: 3.5rem 0 7rem;
  margin-top: 1rem;
}
.site-footer.is-light {
  background: #f8fafc;
  color: var(--gs-body);
  border-top: 1px solid #e5e7eb;
}
.site-footer a { color: inherit; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer.is-light a:hover { color: var(--gs-primary); }
.footer-grid { display: grid; gap: 1.75rem; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; } }
.site-footer h3 { color: inherit; font-size: 1.05rem; margin-bottom: 0.85rem; }
.muted { opacity: 0.78; font-size: 0.925rem; }

/* Sticky mobile */
.sticky-bar {
  position: fixed;
  left: 0.65rem;
  right: 0.65rem;
  bottom: 0.65rem;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  padding: 0.55rem;
  background: rgba(12, 18, 34, 0.92);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 960px) { .sticky-bar { display: none; } }
.sticky-bar .btn { border-radius: 14px; padding: 0.95rem; }

.page-hero {
  background: linear-gradient(135deg, var(--gs-secondary), #121a2e);
  color: #fff;
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
}
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.5rem); }
.prose {
  background: #fff;
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: calc(var(--gs-radius) + 4px);
  box-shadow: var(--gs-shadow-sm);
  border: 1px solid rgba(15, 23, 42, 0.05);
}
.prose p { white-space: pre-wrap; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #fff;
  color: #000;
  padding: 0.5rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

body.hero-centered .hero__content { margin-inline: auto; text-align: center; max-width: 46rem; }
body.hero-centered .hero__actions { justify-content: center; }
body.cards-bordered .card { box-shadow: none; border: 1px solid rgba(15, 23, 42, 0.1); }
body.cards-soft .card { box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06); border: 0; }

/* Dark workshop overrides handled in theme file; keep trust readable */
body.theme-dark_workshop .trust-strip {
  background: #1f2937;
  border-color: #374151;
}
body.theme-dark_workshop .trust-strip span { color: #f9fafb; }
