/* ============================================================
   The Dry Cleaning Centre & Alterations — Main Stylesheet
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  --background:        #fafafa;
  --foreground:        #121212;
  --primary:           #0a0a0a;
  --primary-foreground:#fafafa;
  --muted:             #f0f0f0;
  --muted-foreground:  #666666;
  --card:              #ffffff;
  --border:            #e0e0e0;
  --radius:            0.5rem;

  --font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;

  /* Spacing scale */
  --section-py: 5rem;
}

/* ---- Base Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

/* ---- Site Wrapper ---- */
.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* ---- Container ---- */
.container-custom {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1rem;
}

@media (min-width: 768px) {
  .container-custom {
    padding-inline: 2rem;
  }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

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

/* Brand */
.header-brand {
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  color: var(--primary);
  flex-shrink: 0;
  max-width: 240px;
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .header-brand {
    font-size: 1.125rem;
    max-width: none;
  }
}

/* Desktop nav */
.header-nav {
  display: none;
}

@media (min-width: 768px) {
  .header-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
}

.nav-link {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.15s, background-color 0.15s;
}

.nav-link:hover {
  color: var(--foreground);
  background-color: var(--muted);
}

.nav-link.active {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

/* Phone pill */
.header-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.375rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: 9999px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background-color 0.15s;
}

.header-phone:hover {
  background-color: var(--muted);
}

.header-phone svg {
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .header-phone {
    display: flex;
  }
}

/* Hamburger */
.hamburger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
  transition: background-color 0.15s;
}

.hamburger-btn:hover {
  background-color: var(--muted);
}

@media (min-width: 768px) {
  .hamburger-btn {
    display: none;
  }
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background-color: rgba(0, 0, 0, 0.5);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-drawer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--card);
  padding: 1.5rem 1rem;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 500;
  color: var(--foreground);
  transition: background-color 0.15s;
}

.mobile-nav-link:hover {
  background-color: var(--muted);
}

.mobile-nav-link.active {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.mobile-nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #ffffff;
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

/* Page hero (smaller, no full-vh) */
.page-hero {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 5rem 0 4rem;
}

.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.page-hero p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: background-color 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s;
  text-decoration: none;
  white-space: nowrap;
}

.btn:disabled,
.btn[disabled] {
  opacity: 0.6;
  pointer-events: none;
}

/* Sizes */
.btn-sm {
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
}

.btn-md {
  padding: 0.625rem 1.25rem;
  font-size: 0.9375rem;
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1.0625rem;
}

/* Variants */
.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
}

.btn-outline {
  background-color: transparent;
  color: var(--foreground);
  border-color: var(--border);
}

.btn-outline:hover {
  background-color: var(--muted);
}

.btn-outline-white {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}

.btn-white {
  background-color: #ffffff;
  color: var(--primary);
  border-color: #ffffff;
}

.btn-white:hover {
  background-color: var(--muted);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding-block: var(--section-py);
}

.section-bg-white {
  background-color: var(--card);
}

.section-bg-muted {
  background-color: var(--muted);
}

.section-bg-dark {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.section-header {
  margin-bottom: 3rem;
}

.section-header.center {
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--muted-foreground);
  max-width: 560px;
  line-height: 1.7;
}

.section-title-light {
  color: #ffffff;
}

.section-subtitle-light {
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.card-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--muted);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card-desc {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  transition: gap 0.15s;
}

.card-link:hover {
  gap: 0.625rem;
}

/* Benefit list */
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.benefit-item svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: #16a34a;
}

/* Service name card (simple) */
.service-name-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-name-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(-1px);
}

.service-name-card svg {
  color: #16a34a;
  flex-shrink: 0;
}

/* ============================================================
   GRIDS
   ============================================================ */
.grid-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Two-col layout (text + image) */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
  }
}

.two-col-wide {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .two-col-wide {
    grid-template-columns: 3fr 2fr;
  }
}

/* ============================================================
   IMAGES
   ============================================================ */
.rounded-img {
  border-radius: 1rem;
  object-fit: cover;
  width: 100%;
}

.rounded-img-2xl {
  border-radius: 1.5rem;
  object-fit: cover;
  width: 100%;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.feature-icon {
  width: 2.75rem;
  height: 2.75rem;
  background-color: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  color: #ffffff;
  width: 1.25rem;
  height: 1.25rem;
}

.feature-body h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.feature-body p {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.65;
}

/* ============================================================
   TESTIMONIALS / REVIEWS
   ============================================================ */
.review-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.75rem;
}

.review-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.review-stars svg {
  width: 1.125rem;
  height: 1.125rem;
}

.review-text {
  font-size: 0.9375rem;
  color: var(--foreground);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  flex-shrink: 0;
}

.review-name {
  font-size: 0.9375rem;
  font-weight: 600;
}

.review-date {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
}

/* ============================================================
   STATS
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem 1.5rem;
  text-align: center;
}

.stat-value {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.375rem;
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.4;
}

/* ============================================================
   HOURS TABLE
   ============================================================ */
.hours-table {
  width: 100%;
}

.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  gap: 1rem;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  font-weight: 500;
  text-transform: capitalize;
  min-width: 6rem;
}

.hours-time {
  color: var(--muted-foreground);
  text-align: right;
}

.hours-closed {
  color: var(--muted-foreground);
  font-style: italic;
}

/* ============================================================
   CONTACT CARDS
   ============================================================ */
.contact-info-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background-color: var(--muted);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.contact-info-card:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  color: #ffffff;
  width: 1.125rem;
  height: 1.125rem;
}

.contact-info-label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.contact-info-value {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-grid {
  display: grid;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}

.form-label .required {
  color: #dc2626;
  margin-left: 0.125rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--foreground);
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10,10,10,0.08);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #dc2626;
}

.form-error {
  font-size: 0.8125rem;
  color: #dc2626;
  margin-top: 0.125rem;
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

/* Select arrow */
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

.form-submit {
  margin-top: 0.5rem;
}

/* ============================================================
   ALERTS / ERROR BOXES
   ============================================================ */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.alert svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  width: 1.25rem;
  height: 1.25rem;
}

.alert-success {
  background-color: #f0fdf4;
  border-color: #bbf7d0;
  color: #15803d;
}

.alert-error {
  background-color: #fef2f2;
  border-color: #fecaca;
  color: #dc2626;
}

.alert-info {
  background-color: var(--muted);
  border-color: var(--border);
  color: var(--muted-foreground);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding-top: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  }
}

.footer-brand-name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.625rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.footer-col-title {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.15s;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-contact-item {
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.75rem;
}

.footer-contact-item:last-child {
  margin-bottom: 0;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  opacity: 0.6;
  width: 1rem;
  height: 1rem;
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  gap: 0.5rem;
}

.footer-hours-row:last-child {
  border-bottom: none;
}

.footer-hours-day {
  text-transform: capitalize;
  font-weight: 500;
}

.footer-hours-time {
  text-align: right;
  flex-shrink: 0;
}

.footer-bottom {
  margin-top: 3rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-copyright {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}

.footer-legal-links {
  display: flex;
  gap: 1.25rem;
}

.footer-legal-link {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.15s;
}

.footer-legal-link:hover {
  color: rgba(255,255,255,0.8);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding-block: 5rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* ============================================================
   MAP SECTION
   ============================================================ */
.map-section {
  background-color: var(--muted);
  padding-block: var(--section-py);
}

.map-placeholder {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 3rem 2rem;
  text-align: center;
}

.map-embed {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.map-placeholder svg {
  width: 3rem;
  height: 3rem;
  color: var(--muted-foreground);
  margin: 0 auto 1rem;
}

.map-placeholder h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.map-placeholder p {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.map-note {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  background-color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 0.25rem 0.875rem;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero content always visible */
.hero-content {
  animation: fadeInUp 0.7s ease both;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center  { text-align: center; }
.text-left    { text-align: left; }
.mt-2  { margin-top: 0.5rem; }
.mt-4  { margin-top: 1rem; }
.mt-6  { margin-top: 1.5rem; }
.mt-8  { margin-top: 2rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }

.text-muted { color: var(--muted-foreground); }
.text-sm    { font-size: 0.875rem; }
.font-semibold { font-weight: 600; }

.img-full {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 1rem;
  margin-top: 3rem;
}

/* Values card (about page) */
.value-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem 1.75rem;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.value-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.value-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.value-card-icon svg {
  color: #ffffff;
  width: 1.5rem;
  height: 1.5rem;
}

.value-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.65;
}

/* Prose paragraphs (about story) */
.prose p {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

/* Mission section */
.mission-section {
  max-width: 700px;
  margin-inline: auto;
}

.mission-section p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.8;
}

/* Full-section image */
.section-image-wrap {
  margin-top: 3rem;
}

.section-image-wrap img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 1rem;
}

/* ── Photo gallery grid ────────────────────────────────────────────────────── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.photo-grid-item {
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--muted);
}

.photo-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.photo-grid-item:hover img {
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .photo-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Reviews carousel ──────────────────────────────────────────────────────── */
.reviews-carousel-wrap {
  position: relative;
  margin-top: 2.5rem;
}

.reviews-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}

.reviews-carousel::-webkit-scrollbar {
  display: none;
}

.reviews-carousel .review-card {
  flex: 0 0 calc(33.333% - 1rem);
  scroll-snap-align: start;
  margin: 0;
}

@media (max-width: 1024px) {
  .reviews-carousel .review-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (max-width: 640px) {
  .reviews-carousel .review-card {
    flex: 0 0 100%;
  }
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.75rem;
}

.carousel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--background);
  color: var(--foreground);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.carousel-dots {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.carousel-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
  border: none;
  padding: 0;
  flex-shrink: 0;
}

.carousel-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

/* ── Contact info grid (3 cards across) ───────────────────────────────────── */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

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

/* ── Contact Split Layout ─────────────────────────────────────────────────── */
.contact-split-section {
  /* stretch edge-to-edge, no top padding (hero provides spacing) */
  padding: 0;
}

.contact-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}

/* Left info panel */
.contact-panel {
  padding: 4rem 3.5rem;
  background: var(--background);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-panel-heading {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.contact-panel-intro {
  color: var(--muted-foreground);
  font-size: 0.975rem;
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 38ch;
}

/* Individual contact rows */
.contact-detail-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
}

.contact-detail-row:first-of-type {
  border-top: 1px solid var(--border);
}

.contact-detail-link {
  cursor: pointer;
  transition: background 0.15s;
  border-radius: var(--radius);
  margin-inline: -0.5rem;
  padding-inline: 0.5rem;
}

.contact-detail-link:hover {
  background: var(--muted);
}

.contact-detail-link:hover .contact-detail-arrow {
  transform: translateX(3px);
}

/* Icon circle */
.contact-detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--muted);
  color: var(--foreground);
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

/* Text */
.contact-detail-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
  min-width: 0;
}

.contact-detail-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.contact-detail-value {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--foreground);
}

/* Chevron arrow on clickable rows */
.contact-detail-arrow {
  width: 1rem;
  height: 1rem;
  color: var(--muted-foreground);
  flex-shrink: 0;
  transition: transform 0.2s;
}

/* Right map panel */
.contact-map-panel {
  position: relative;
  overflow: hidden;
}

.contact-map-panel iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Responsive: stack on mobile */
@media (max-width: 900px) {
  .contact-split-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .contact-panel {
    padding: 3rem 1.5rem;
  }

  .contact-map-panel {
    min-height: 380px;
    position: relative;
  }

  .contact-map-panel iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 480px) {
  .contact-panel {
    padding: 2rem 1.25rem;
  }

  .contact-panel-heading {
    font-size: 1.4rem;
  }
}

/* ── Hero: mobile — image on top, text below ──────────────────────────────── */
@media (max-width: 640px) {
  .hero {
    background: #0a0a0a;
    min-height: 0;
    padding-top: calc(56vw + 1.5rem); /* push text below the image (image height ≈ 56vw) */
    padding-bottom: 3rem;
    align-items: flex-start;
  }

  .hero-bg {
    background-size: 100% auto;      /* full-width, no side-cropping */
    background-position: top center;
  }

  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(10,10,10,0.05) 0%,        /* near-transparent at top — shop is clearly visible */
      rgba(10,10,10,0.20) 40%,
      rgba(10,10,10,0.90) 60%,       /* darkens behind the text */
      rgba(10,10,10,0.97) 100%
    );
  }

  .hero-content {
    max-width: 100%;
  }
}

/* ── Photo Lightbox ───────────────────────────────────────────────────────── */
#photo-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
}

#photo-lightbox.active {
  display: flex;
}

.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}

.lb-img-wrap {
  position: relative;
  z-index: 1;
  max-width: 92vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  display: block;
}

.lb-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  z-index: 2;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lb-close:hover { background: rgba(255,255,255,0.25); }

.lb-prev,
.lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }
.lb-prev:hover,
.lb-next:hover { background: rgba(255,255,255,0.25); }

/* ── Contact Page Redesign ────────────────────────────────────────────────── */

/* Full-width map at the top */
.contact-map-hero {
  width: 100%;
  height: 55vh;
  min-height: 320px;
  max-height: 560px;
  position: relative;
  background: var(--muted);
}

.contact-map-hero iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Info section below the map */
.contact-info-section {
  padding: 4rem 0 5rem;
  background: var(--background);
}

/* Header: title + subtitle + call button */
.contact-info-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-info-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

.contact-info-sub {
  color: var(--muted-foreground);
  font-size: 1rem;
  margin-bottom: 1.75rem;
}

.contact-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

/* Cards grid */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}

/* Individual card */
.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.75rem;
  display: flex;
  gap: 1.1rem;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.contact-card-link:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

/* Icon */
.contact-card-icon {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  background: var(--muted);
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.contact-card-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

/* Text */
.contact-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
  min-width: 0;
}

.contact-card-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.contact-card-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--foreground);
  line-height: 1.35;
}

.contact-card-action {
  font-size: 0.8125rem;
  color: var(--primary);
  font-weight: 500;
  margin-top: 0.25rem;
}

/* Hours table inside card */
.contact-hours {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.35rem;
}

.contact-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  line-height: 1.5;
  gap: 0.5rem;
}

.contact-hours-day {
  color: var(--muted-foreground);
  min-width: 5.5rem;
}

.contact-hours-time {
  font-weight: 500;
  color: var(--foreground);
  text-align: right;
}

.contact-hours-closed {
  font-style: italic;
  color: var(--muted-foreground);
  font-weight: 400;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-map-hero {
    height: 45vw;
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  .contact-info-section {
    padding: 2.5rem 0 3.5rem;
  }

  .contact-map-hero {
    height: 56vw;
    min-height: 240px;
  }

  .contact-card {
    padding: 1.25rem;
  }
}

/* ── Services Page ────────────────────────────────────────────────────────── */

.services-block {
  max-width: 900px;
}

/* Section header row: icon + title/desc */
.services-block-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.services-block-icon {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.2rem;
}

.services-block-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.services-block-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}

.services-block-desc {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Pill tag list */
.services-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-pill-list li {
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 0.4rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  white-space: nowrap;
}

/* Alterations grid */
.alterations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.alteration-card {
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: 0.875rem;
  padding: 1.25rem 1.375rem;
}

.alteration-card-title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.alteration-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.alteration-list li {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  padding-left: 1rem;
  position: relative;
  line-height: 1.45;
}

.alteration-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--border);
}

/* Leather & Suede contact note */
.leather-contact {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 1.5rem;
  padding: 0.875rem 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.625rem;
  font-size: 0.9rem;
  color: var(--muted-foreground);
  width: fit-content;
}

.leather-contact svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: var(--foreground);
}

.leather-contact a {
  font-weight: 600;
  color: var(--foreground);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .alterations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .alterations-grid {
    grid-template-columns: 1fr;
  }

  .services-block-header {
    flex-direction: column;
    gap: 0.875rem;
  }
}

/* ── Services Page — Editorial Redesign ───────────────────────────────────── */

/* Hero */
.svc-hero {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 7rem 0 6rem;
}

.svc-hero-inner {
  max-width: 680px;
}

.svc-hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: block;
  margin-bottom: 1.75rem;
}

.svc-hero-title {
  font-size: clamp(2.75rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
}

.svc-hero-body {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

/* Sections */
.svc-section {
  padding: 5rem 0;
  background: var(--background);
}

.svc-section-alt {
  background: #f5f5f5;
}

/* Section header: number + title/desc side by side */
.svc-section-header {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.svc-number {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted-foreground);
  padding-top: 0.35rem;
  flex-shrink: 0;
  width: 2rem;
}

.svc-section-meta {
  flex: 1;
}

.svc-section-title {
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.svc-section-desc {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.65;
}

/* Horizontal rule */
.svc-rule {
  height: 1px;
  background: var(--border);
  margin-bottom: 0;
}

/* Items list — each item sits on its own line with a rule */
.svc-item-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.svc-item-list li {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--foreground);
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.svc-item-list li::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--muted-foreground);
  flex-shrink: 0;
}

/* Alterations — each garment as a full-width row */
.svc-alterations {
  width: 100%;
}

.svc-alt-row {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 2rem;
  align-items: baseline;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.svc-alt-garment {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--foreground);
  flex-shrink: 0;
}

.svc-alt-options {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

/* Bottom CTA bar */
.svc-cta {
  background: var(--primary);
  padding: 4rem 0;
}

.svc-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.svc-cta-title {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  color: var(--primary-foreground);
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.svc-cta-sub {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
}

.svc-cta-btn {
  background: #fff;
  color: var(--primary);
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.svc-cta-btn:hover {
  background: rgba(255,255,255,0.88);
}

/* Responsive */
@media (max-width: 768px) {
  .svc-hero {
    padding: 5rem 0 4rem;
  }

  .svc-section-header {
    gap: 1.5rem;
  }

  .svc-item-list {
    grid-template-columns: 1fr;
  }

  .svc-alt-row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    padding: 1rem 0;
  }

  .svc-alt-options {
    color: var(--foreground);
    font-size: 0.875rem;
  }

  .svc-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .svc-section-header {
    gap: 1rem;
  }

  .svc-number {
    display: none;
  }
}

/* ── Trust Bar (home page — location & parking signals) ──────────────────── */

/* Trust bar styles live in index.php <style> tag (Safari parse safety) */

/* ── Contact page — parking badge ────────────────────────────────────────── */

.contact-parking-badge {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-top: 0.35rem;
  margin-bottom: 0.1rem;
  font-size: 0.775rem;
  font-weight: 600;
  color: #1a6b3a;
  background: #e8f5ee;
  border: 1px solid #b6dfc8;
  border-radius: 9999px;
  padding: 0.2rem 0.65rem 0.2rem 0.5rem;
  letter-spacing: 0.01em;
}

.contact-parking-badge svg {
  color: #1a6b3a;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin-right: 0.35rem;
}

.contact-parking-badge svg {
  color: #1a6b3a;
  flex-shrink: 0;
}

/* ── Footer: mobile cleanup ───────────────────────────────────────────────── */
@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Hide the hours column on mobile — linked from contact page */
  .footer-grid > div:last-child {
    display: none;
  }

  .footer-tagline {
    max-width: 28ch;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 2rem;
  }

  .footer-legal-links {
    gap: 1rem;
  }
}
