/* Groves Autos — luxury automotive (cool monochrome) */
:root {
  --bg: #030304;
  --bg-elevated: #0a0a0c;
  --bg-card: #101014;
  --bg-card-hover: #16161c;
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.12);
  --text: #f5f5f7;
  --text-muted: #9ca3af;
  --silver: #d1d5db;
  --silver-dim: #6b7280;
  --accent: #ffffff;
  --accent-red: #ef4444;
  --accent-soft: rgba(255, 255, 255, 0.06);
  --accent-glow: rgba(255, 255, 255, 0.12);
  --chrome: linear-gradient(135deg, #3f3f46 0%, #d4d4d8 48%, #71717a 100%);
  --radius: 12px;
  --radius-lg: 16px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Outfit", system-ui, sans-serif;
  --shadow: 0 32px 64px rgba(0, 0, 0, 0.55);
  --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

/* Top bar */
.top-bar {
  background: var(--bg-elevated);
  color: var(--silver);
  font-size: 0.78rem;
  text-align: center;
  padding: 0.55rem 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--border);
}

.top-bar a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.top-bar a:hover {
  text-decoration: underline;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(3, 3, 4, 0.82);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.logo-mark {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.1;
}

.logo-mark span {
  font-weight: 400;
  color: var(--silver);
}

.logo-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-main a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-main a:hover,
.nav-main a.active {
  color: var(--text);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  font-family: inherit;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--text);
  color: #030304;
  box-shadow: 0 4px 24px rgba(255, 255, 255, 0.08);
}

.btn-primary:hover {
  background: var(--silver);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.15);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.btn-outline:hover {
  border-color: var(--text-muted);
  background: var(--bg-card);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.phone-link {
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
}

.phone-link small {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  padding: 0.5rem;
  cursor: pointer;
}

/* Hero — full-bleed with Google Business imagery */
.hero {
  position: relative;
  min-height: min(92vh, 880px);
  display: flex;
  align-items: flex-end;
  padding: 0 0 4rem;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 78%;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(3, 3, 4, 0.97) 0%, rgba(3, 3, 4, 0.85) 42%, rgba(3, 3, 4, 0.35) 68%, rgba(3, 3, 4, 0.12) 100%),
    linear-gradient(0deg, rgba(3, 3, 4, 0.9) 0%, transparent 38%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 380px);
  gap: 2.5rem;
  align-items: end;
  padding-top: 5rem;
  width: min(1180px, 92vw);
  margin-inline: auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

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

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.8vw, 3.75rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 1.25rem;
  max-width: 14ch;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 32rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-trust strong {
  color: var(--text);
  display: block;
  font-size: 1rem;
}

/* Premium Google reviews showcase */
.reviews-showcase,
.google-badge {
  position: relative;
  background: rgba(16, 16, 20, 0.72);
  backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.85rem;
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: left;
  width: 100%;
  font-family: inherit;
  color: inherit;
  overflow: hidden;
}

.reviews-showcase::before,
.google-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--chrome);
  opacity: 0.5;
}

.reviews-showcase:hover,
.google-badge:hover {
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.reviews-showcase__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.google-mark {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--silver);
  letter-spacing: 0.02em;
}

.google-mark svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.reviews-showcase__stars {
  display: flex;
  gap: 2px;
  color: #fbbc04;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.reviews-showcase__hero-stat {
  display: flex;
  align-items: flex-end;
  gap: 0.65rem;
  margin-bottom: 0.35rem;
}

.reviews-showcase__count {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 4.5rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.04em;
  background: var(--chrome);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reviews-showcase__count-suffix {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--silver);
  margin-bottom: 0.35rem;
}

.reviews-showcase__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  font-weight: 500;
}

.reviews-showcase__rating-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.reviews-showcase__rating-num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
}

.reviews-showcase__rating-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.reviews-showcase__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--silver);
  letter-spacing: 0.04em;
}

.reviews-showcase__cta svg {
  width: 18px;
  height: 18px;
  opacity: 0.7;
  transition: transform var(--transition);
}

.reviews-showcase:hover .reviews-showcase__cta svg,
.google-badge:hover .reviews-showcase__cta svg {
  transform: translateX(4px);
}

/* Legacy google-badge aliases */
.google-badge-header { display: none; }
.google-badge-rating { display: none; }
.google-badge p:not(.google-badge-hint) { display: none; }

.google-logo {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--silver);
}

.stars {
  display: flex;
  gap: 0.15rem;
  color: #fbbc04;
  font-size: 1rem;
}

.rating-big {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
}

.google-badge-hint {
  display: none;
}

/* Reviews drawer */
.reviews-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.reviews-overlay.open {
  opacity: 1;
  visibility: visible;
}

.reviews-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: min(440px, 92vw);
  height: 100%;
  background: var(--bg-elevated);
  border-right: 1px solid var(--border);
  z-index: 201;
  transform: translateX(-100%);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: 8px 0 48px rgba(0, 0, 0, 0.5);
}

.reviews-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.drawer-close {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: background 0.2s;
}

.drawer-close:hover {
  background: var(--bg-card-hover);
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.75rem 2rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.review-card .stars {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.review-card blockquote {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.review-card footer {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.review-card footer strong {
  color: var(--text);
}

.drawer-footer {
  padding: 1rem 1.75rem;
  border-top: 1px solid var(--border);
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--silver-dim);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  line-height: 1.12;
}

.section-intro {
  color: var(--text-muted);
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

/* Premium cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.premium-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.premium-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}

.premium-card.featured {
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(160deg, #141418 0%, var(--bg-card) 100%);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--silver);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.premium-card h3 {
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.premium-card .price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--text);
  margin: auto 0 0.25rem;
  letter-spacing: -0.02em;
}

.premium-card .price-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.premium-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  flex: 1;
}

.premium-card .card-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--silver);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  letter-spacing: 0.02em;
}

.premium-card .card-link:hover {
  color: var(--text);
}

/* Feature strip */
.feature-strip {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
  padding: 3rem 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.feature-item h4 {
  margin: 0.75rem 0 0.35rem;
  font-size: 1rem;
}

.feature-item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.feature-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.02em;
}

/* Workshop / Google Business imagery */
.workshop-band {
  padding: 0;
  border-block: 1px solid var(--border);
}

.workshop-band__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 420px;
}

.workshop-band__media {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.workshop-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workshop-band__caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.45);
  padding: 0.35rem 0.65rem;
  border-radius: 4px;
  backdrop-filter: blur(8px);
}

.workshop-band__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem clamp(1.5rem, 5vw, 4rem);
  background: var(--bg-elevated);
}

.photo-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0.75rem;
  margin-top: 2rem;
}

.photo-gallery__main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
}

.photo-gallery__main img,
.photo-gallery__stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-gallery__stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.photo-gallery__stack > div {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 0;
}

.page-banner {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 2.5rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-banner__bg {
  position: absolute;
  inset: 0;
}

.page-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  filter: saturate(0.9) brightness(0.75);
}

.page-banner__bg img[src*="google-1"] {
  object-position: center 65%;
}

.page-banner__bg img[src*="google-2"] {
  object-position: center 78%;
}

.page-banner__bg img[src*="google-3"] {
  object-position: center 55%;
}

.page-banner__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--bg) 0%, rgba(3, 3, 4, 0.35) 100%);
}

.page-banner .container {
  position: relative;
  z-index: 1;
}

.split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

/* Two column content */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.split ul {
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.split li {
  margin-bottom: 0.5rem;
}

.split li::marker {
  color: var(--silver);
}

/* Map */
.map-section {
  background: var(--bg-elevated);
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 21/9;
  min-height: 320px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  filter: grayscale(30%) contrast(1.05);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-block h4 {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.contact-block p,
.contact-block a {
  margin: 0;
  font-size: 1.05rem;
}

.hours-table {
  width: 100%;
  font-size: 0.9rem;
}

.hours-table td {
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--text-muted);
}

/* Booking widget */
.booking-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.booking-panel h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.booking-panel > p {
  margin: 0 0 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.booking-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text-muted);
}

.booking-form select,
.booking-form input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  margin-bottom: 1rem;
}

.calendar {
  margin-bottom: 1rem;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.calendar-header button {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
}

.calendar-header span {
  font-weight: 600;
  font-size: 0.95rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  font-size: 0.75rem;
}

.calendar-grid .dow {
  text-align: center;
  color: var(--text-muted);
  padding: 0.25rem;
  font-weight: 600;
}

.calendar-grid .day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.8rem;
}

.calendar-grid .day:hover:not(:disabled) {
  background: var(--accent-soft);
  color: var(--text);
}

.calendar-grid .day.available {
  color: var(--text);
  font-weight: 600;
}

.calendar-grid .day.selected {
  background: var(--text);
  color: var(--bg);
}

.calendar-grid .day:disabled,
.calendar-grid .day.empty {
  opacity: 0.3;
  cursor: default;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.time-slot {
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--text);
  font-size: 0.8rem;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
}

.time-slot:hover,
.time-slot.selected {
  border-color: var(--silver);
  background: var(--accent-soft);
}

.booking-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Page hero */
.page-hero,
.page-banner h1 {
  font-family: var(--font-display);
}

.page-hero {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--border);
}

.page-hero h1,
.page-banner h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 40rem;
  margin: 0;
}

.page-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  padding: 3rem 0 5rem;
  align-items: start;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 2rem 0 0.75rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p {
  color: var(--text-muted);
}

.prose strong {
  color: var(--text);
}

/* Footer */
.site-footer {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-grid h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li {
  margin-bottom: 0.5rem;
}

.footer-grid a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-grid a:hover {
  color: var(--text);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Footer Google rating (eXthus-style) */
.footer-google-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.15rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.35;
  font-family: inherit;
  cursor: pointer;
  transition:
    border-color 0.22s,
    background 0.22s,
    color 0.22s,
    box-shadow 0.22s,
    transform 0.22s;
  max-width: fit-content;
  text-align: left;
}

.footer-google-rating:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  transform: translateY(-1px);
}

.footer-google-rating__icon {
  display: flex;
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity 0.22s;
}

.footer-google-rating:hover .footer-google-rating__icon {
  opacity: 1;
}

.footer-google-rating__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-google-rating__stars {
  display: flex;
  align-items: center;
  gap: 1px;
  color: #fbbc04;
  transition: color 0.22s;
}

.footer-google-rating:hover .footer-google-rating__stars {
  color: #fcd34d;
}

.footer-google-rating__star {
  display: block;
}

.footer-google-rating__text {
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--silver);
}

.footer-google-rating:hover .footer-google-rating__text {
  color: var(--text);
}

.footer-google-rating__text strong {
  font-weight: 600;
  color: var(--text);
}

.site-footer--compact {
  padding: 1.75rem 0 1.25rem;
}

.site-footer--compact .footer-google-rating {
  margin: 0 auto 1.25rem;
  display: inline-flex;
}

.site-footer--compact .footer-bottom {
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

.footer-bottom__left {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
}

.footer-credit {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 0.78rem;
  color: var(--silver-dim);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.footer-credit__brand {
  transition: color 0.2s;
}

.footer-credit:hover .footer-credit__brand {
  color: var(--text);
}

.exthus-x {
  color: #8fe000;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-credit:hover .exthus-x {
  color: #a2ff00;
}

.payment-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* Sticky booking on service pages */
@media (min-width: 901px) {
  .booking-sticky {
    position: sticky;
    top: 100px;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .hero-layout,
  .hero-grid,
  .workshop-band__grid,
  .photo-gallery,
  .split,
  .contact-grid,
  .page-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-bottom: 2.5rem;
  }

  .hero-layout {
    padding-top: 6rem;
  }

  .hero h1 {
    max-width: none;
  }

  .workshop-band__grid {
    min-height: auto;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-main,
  .header-cta .btn-outline {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-main.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: 1rem;
  }

  .site-header .container {
    position: relative;
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .time-slots {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .footer-credit {
    margin-left: 0;
    align-self: flex-end;
  }
}
