/* ───────────────────────────────────────────
   Carl's Barber Shop — Styles
   Palette: Teal (#0d9488) + Slate (#1e293b)
   Fonts: Playfair Display + Inter
   ─────────────────────────────────────────── */

/* ── RESET & BASE ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #1e293b;
  background: #f8fafc;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol { list-style: none; }

address { font-style: normal; }

/* ── SKIP LINK ────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: #0d9488;
  color: #f8fafc;
  padding: 0.5rem 1rem;
  border-radius: 0 0 6px 6px;
  z-index: 9999;
  font-weight: 600;
}
.skip-link:focus {
  top: 0;
}

/* ── CONTAINER ────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── TYPOGRAPHY ───────────────────────────── */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0d9488;
  margin-bottom: 0.75rem;
}

.section-headline {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  color: #1e293b;
  margin-bottom: 1.25rem;
}

/* ── BUTTONS ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: #0d9488;
  color: #f8fafc;
}
.btn-primary:hover {
  background: #0f766e;
  box-shadow: 0 8px 24px rgba(13,148,136,0.3);
}

.btn-ghost {
  background: transparent;
  color: #1e293b;
  border: 1.5px solid #1e293b;
}
.btn-ghost:hover {
  background: #1e293b;
  color: #f8fafc;
}

.btn-full { width: 100%; }

/* ───────────────────────────────────────────
   HEADER
   ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248,250,252,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30,41,59,0.08);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(30,41,59,0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #1e293b;
}
.logo:hover { color: #0d9488; }

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #0d9488;
  color: #f8fafc;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* Nav */
.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-list a {
  padding: 0.5rem 0.875rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #334155;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-list a:hover {
  color: #0d9488;
  background: rgba(13,148,136,0.06);
}

.nav-cta {
  background: #1e293b !important;
  color: #f8fafc !important;
  border-radius: 6px !important;
  margin-left: 0.5rem;
}
.nav-cta:hover {
  background: #0d9488 !important;
  color: #f8fafc !important;
}

/* Nav toggle (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.2s;
}
.nav-toggle:hover { background: rgba(13,148,136,0.08); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #1e293b;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.2s;
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .primary-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    background: rgba(248,250,252,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(30,41,59,0.08);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.3s ease;
  }
  .primary-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-list {
    flex-direction: column;
    gap: 0.25rem;
  }
  .nav-list a {
    display: block;
    padding: 0.875rem 1rem;
    font-size: 1.0625rem;
    border-radius: 8px;
  }
  .nav-cta {
    margin-left: 0 !important;
    margin-top: 0.5rem;
    text-align: center;
  }
}

/* ───────────────────────────────────────────
   HERO
   ─────────────────────────────────────────── */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  min-height: 100dvh;
  background: #f8fafc;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  min-height: calc(100vh - 72px);
  min-height: calc(100dvh - 72px);
}

/* Hero text column */
.hero-content {
  padding: 2rem 0;
  padding-right: 1rem;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0d9488;
  margin-bottom: 1rem;
}

.hero-headline {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  color: #1e293b;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-desc {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #475569;
  max-width: 520px;
  margin-bottom: 2rem;
}

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

/* Hero image column */
.hero-image-col {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
  padding-top: 3rem;
}

.hero-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(30,41,59,0.12);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image--main {
  aspect-ratio: 600/780;
}

.hero-image--accent {
  aspect-ratio: 400/320;
  border: 4px solid #f8fafc;
  box-shadow: 0 16px 48px rgba(30,41,59,0.1);
}

.hero-accent-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: #0d9488;
  color: #f8fafc;
  padding: 0.75rem 1.125rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
  box-shadow: 0 8px 24px rgba(13,148,136,0.35);
}
.badge-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}
.badge-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: auto;
    padding-bottom: 3rem;
  }
  .hero-content { padding: 2rem 0; }
  .hero-image-col { padding-top: 0; max-width: 500px; }
  .hero-accent-badge { left: 0.5rem; bottom: -0.75rem; }
}

@media (max-width: 480px) {
  .hero-image-col { max-width: 100%; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}

/* ───────────────────────────────────────────
   TICKER
   ─────────────────────────────────────────── */
.ticker {
  background: #1e293b;
  overflow: hidden;
  padding: 0.875rem 0;
}
.ticker-inner {
  display: flex;
  gap: 1.5rem;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker span {
  font-family: 'Playfair Display', serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #f8fafc;
  letter-spacing: 0.02em;
}
.ticker em {
  color: #0d9488;
  margin: 0 0.25rem;
  font-style: normal;
  font-size: 0.75rem;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ───────────────────────────────────────────
   ABOUT
   ─────────────────────────────────────────── */
.about {
  padding: 7rem 0;
  background: #f8fafc;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-col img {
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(30,41,59,0.12);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content { max-width: 520px; }

.about-content .section-headline {
  margin-bottom: 1.5rem;
}

.about-content p {
  color: #475569;
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}
.stat { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #0d9488;
  line-height: 1;
}
.stat-label {
  font-size: 0.8125rem;
  color: #64748b;
  font-weight: 500;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-content { max-width: 100%; }
  .about-image-col img { max-height: 500px; }
}

/* ───────────────────────────────────────────
   SERVICES
   ─────────────────────────────────────────── */
.services {
  padding: 7rem 0;
  background: #f1f5f9;
}

.services-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.service-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(30,41,59,0.08);
  border-color: #0d9488;
}

.service-icon {
  width: 48px;
  height: 48px;
  color: #0d9488;
  margin-bottom: 1.25rem;
}
.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
}

.services-note {
  text-align: center;
  color: #64748b;
  font-size: 0.9375rem;
}
.services-note a {
  color: #0d9488;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.services-note a:hover { border-bottom-color: #0d9488; }

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

/* ───────────────────────────────────────────
   EDITORIAL DIVIDER
   ─────────────────────────────────────────── */
.editorial-divider {
  padding: 0;
  overflow: hidden;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.editorial-image {
  overflow: hidden;
  border-radius: 0;
}
.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-content {
  background: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
}

.editorial-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  font-style: italic;
  color: #f8fafc;
  line-height: 1.45;
  max-width: 520px;
}

.editorial-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.editorial-footer-line {
  flex: 0 0 48px;
  height: 2px;
  background: #0d9488;
}
.editorial-footer span {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  font-style: normal;
  color: #94a3b8;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-image { max-height: 360px; }
  .editorial-content { padding: 3rem 1.5rem; }
  .editorial-quote { font-size: 1.375rem; }
}

/* ───────────────────────────────────────────
   GALLERY
   ─────────────────────────────────────────── */
.gallery {
  padding: 7rem 0;
  background: #f8fafc;
}

.gallery-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(30,41,59,0.08);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.03); }

.gallery-item--large {
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-item--large img { height: 100%; }

.gallery-item--wide {
  grid-column: span 2;
}
.gallery-item--wide img { height: 100%; }

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item--large { grid-row: span 1; aspect-ratio: 4/3; }
  .gallery-item--wide { grid-column: span 1; aspect-ratio: 16/9; }
  .gallery-item img,
  .gallery-item--large img,
  .gallery-item--wide img { height: auto; }
}

/* ───────────────────────────────────────────
   VISIT
   ─────────────────────────────────────────── */
.visit {
  padding: 7rem 0;
  background: #f1f5f9;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.visit-content .section-headline { margin-bottom: 2rem; }

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

.visit-detail-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 0.375rem;
}

.visit-detail address,
.visit-detail p,
.visit-detail a {
  font-size: 1rem;
  color: #334155;
  line-height: 1.65;
}
.visit-detail a {
  color: #0d9488;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.visit-detail a:hover { border-bottom-color: #0d9488; }

/* Map */
.map-link {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(30,41,59,0.1);
}
.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.map-link:hover .map-image { transform: scale(1.02); }

.map-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1e293b;
  color: #f8fafc;
  padding: 0.625rem 1rem;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: background 0.2s;
}
.map-overlay svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.map-link:hover .map-overlay { background: #0d9488; }

@media (max-width: 900px) {
  .visit-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .visit-details { grid-template-columns: 1fr; }
}

/* ───────────────────────────────────────────
   CONTACT
   ─────────────────────────────────────────── */
.contact {
  padding: 7rem 0;
  background: #1e293b;
  color: #f8fafc;
}

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

.contact .section-eyebrow { color: #0d9488; }
.contact .section-headline { color: #f8fafc; margin-bottom: 1.25rem; }
.contact-desc {
  color: #94a3b8;
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.contact-desc a {
  color: #5eead4;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.contact-desc a:hover { border-bottom-color: #5eead4; }

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-direct li {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.contact-direct-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
}
.contact-direct span,
.contact-direct a {
  font-size: 1rem;
  color: #e2e8f0;
}
.contact-direct a {
  color: #5eead4;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.contact-direct a:hover { border-bottom-color: #5eead4; }

/* Form */
.contact-form {
  background: #0f172a;
  border: 1px solid #1e293b;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
}

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

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

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: #f8fafc;
  font-size: 0.9375rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #64748b;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #0d9488;
  box-shadow: 0 0 0 3px rgba(13,148,136,0.2);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group select option {
  background: #1e293b;
  color: #f8fafc;
}

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

.form-note {
  text-align: center;
  font-size: 0.8125rem;
  color: #64748b;
  margin-top: 0.75rem;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(13,148,136,0.12);
  border: 1px solid rgba(13,148,136,0.3);
  border-radius: 8px;
  color: #5eead4;
  font-size: 0.9375rem;
}
.form-success svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #0d9488;
}
.form-success strong { color: #f8fafc; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .contact-form { padding: 1.5rem; }
}

/* ───────────────────────────────────────────
   FOOTER
   ─────────────────────────────────────────── */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: start;
  padding-bottom: 3rem;
  border-bottom: 1px solid #1e293b;
}

.footer-brand .logo { margin-bottom: 0.75rem; }
.footer-brand .logo:hover { color: #f8fafc; }
.footer-brand p {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-nav a {
  font-size: 0.9375rem;
  color: #94a3b8;
  padding: 0.25rem 0;
  transition: color 0.2s;
}
.footer-nav a:hover { color: #0d9488; }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: right;
}
.footer-contact a {
  font-size: 0.9375rem;
  color: #94a3b8;
  transition: color 0.2s;
}
.footer-contact a:hover { color: #0d9488; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.8125rem;
  color: #475569;
  flex-wrap: wrap;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-contact { text-align: left; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ───────────────────────────────────────────
   SCROLL REVEAL (progressive enhancement)
   ─────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reduced motion — ensure everything is visible */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html { scroll-behavior: auto; }
  .ticker-inner { animation: none; }
  .gallery-item img { transition: none; }
  .service-card:hover { transform: none; }
}
