/* ============================================================
   Freecut — Heritage Barbershop
   Palette: bottle green + brass + ivory
   Type: Bodoni Moda (display) / Jost (UI)
   ============================================================ */

:root {
  --green-900: #12241B;
  --green-800: #1C3A2C;
  --green-700: #244A38;
  --green-600: #2E5A44;
  --brass:     #C6A15B;
  --brass-lt:  #E3C888;
  --brass-dk:  #A17E3C;
  --ivory:     #F4EFE4;
  --cream:     #FBF8F1;
  --ink:       #1A1D19;
  --ink-soft:  #46504A;
  --line:      #DED6C4;

  --font-display: "Bodoni Moda", Georgia, serif;
  --font-ui: "Jost", "Helvetica Neue", Arial, sans-serif;

  --wrap: 1200px;
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Salon photography. Local, optimized files. */
  --barber: url("assets/img/hero-1.webp");        /* barber at work — feature band (video goes here later) */
  --shop-photo-1: url("assets/img/salon-1.webp");
  --shop-photo-2: url("assets/img/salon-2.webp");
  --shop-photo-3: url("assets/img/salon-3.webp");
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-ui);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 28px; }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--green-800); color: var(--ivory);
  padding: 10px 18px; border-radius: var(--radius); transition: top .2s;
}
.skip-link:focus { top: 16px; }

:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; border-radius: 2px; }

/* ---------- shared type ---------- */
.eyebrow, .section-eyebrow {
  font-family: var(--font-ui);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--brass-dk);
  margin: 0 0 1.1rem;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -.01em;
  margin: 0;
  color: var(--ink);
}
.prose {
  font-size: 1.06rem;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 1.4rem 0 0;
}
em { font-style: italic; }

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--green-800);
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-ui); font-weight: 500; font-size: .92rem;
  letter-spacing: .04em;
  padding: 13px 26px; border-radius: 999px;
  cursor: pointer; border: 1.5px solid transparent;
  transition: transform .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  will-change: transform;
}
.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn-block { display: flex; width: 100%; }
.btn-solid { background: var(--green-800); color: var(--ivory); }
.btn-solid:hover { background: var(--green-900); transform: translateY(-2px); box-shadow: 0 12px 28px -12px rgba(18,36,27,.6); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--green-800); background: rgba(28,58,44,.05); transform: translateY(-2px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 248, 241, 0);
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(251, 248, 241, .88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 76px; }

.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--green-800); }
.brand-mark { display: inline-flex; color: var(--brass-dk); }
.brand-word {
  font-family: var(--font-display); font-weight: 600; font-size: 1.55rem;
  letter-spacing: .01em; color: var(--green-800);
}

.nav { display: flex; gap: 30px; margin-left: auto; }
.nav a {
  font-size: .9rem; font-weight: 400; letter-spacing: .03em; color: var(--ink);
  position: relative; padding: 4px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px;
  background: var(--brass); transition: width .3s var(--ease);
}
.nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 20px; }
.phone { font-size: .92rem; font-weight: 500; letter-spacing: .02em; color: var(--green-800); }
.phone:hover { color: var(--brass-dk); }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  align-items: center; justify-content: center; background: none; border: none; cursor: pointer;
  margin-left: auto;
}
.menu-toggle span { width: 24px; height: 2px; background: var(--green-800); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column; gap: 4px;
  padding: 8px 28px 26px;
  background: rgba(251, 248, 241, .97);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.mobile-nav a { padding: 13px 0; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
.mobile-nav a:last-child { border-bottom: none; margin-top: 12px; }
.mobile-nav.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background-color: var(--green-900);
  color: var(--ivory);
  padding: clamp(64px, 11vh, 128px) 0 clamp(80px, 13vh, 150px);
}
/* Crossfading photographic background */
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-image: var(--img); background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.6s ease-in-out;
  will-change: opacity;
}
/* Images simply cross-fade — one shows, the next gently takes over. No camera motion. */
.hero-slide.active { opacity: 1; }
/* Scrim keeps the headline side dark for contrast while the photo shows through */
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(101deg, rgba(18,36,27,.93) 0%, rgba(18,36,27,.70) 44%, rgba(18,36,27,.32) 100%),
    linear-gradient(to top, rgba(18,36,27,.58) 0%, rgba(18,36,27,0) 42%);
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
  .hero-slide.active { animation: none; }
}
.hero-grain {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: .5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
}
.hero-inner { position: relative; z-index: 3; max-width: 860px; }

.hero .eyebrow { color: var(--brass-lt); }
.hero-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.9rem, 8.5vw, 6.4rem);
  line-height: .98; letter-spacing: -.015em; margin: 0 0 1.6rem;
}
.hero-title span { display: block; }
.hero-title em { color: var(--brass-lt); font-style: italic; }

.hero-lead {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  max-width: 46ch; color: rgba(244, 239, 228, .82); margin: 0 0 2.4rem; line-height: 1.62;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 2.6rem; }
.hero-cta .btn-solid { background: var(--brass); color: var(--green-900); }
.hero-cta .btn-solid:hover { background: var(--brass-lt); box-shadow: 0 14px 30px -12px rgba(198,161,91,.6); }
.hero-cta .btn-ghost { color: var(--ivory); border-color: rgba(244,239,228,.35); }
.hero-cta .btn-ghost:hover { border-color: var(--ivory); background: rgba(244,239,228,.08); }

.hero-status {
  display: inline-flex; align-items: center; gap: 11px;
  font-size: .92rem; color: rgba(244, 239, 228, .78);
}
.hero-status strong { color: var(--ivory); font-weight: 500; }
.status-dot {
  width: 9px; height: 9px; border-radius: 50%; background: #7BC47F; position: relative;
  box-shadow: 0 0 0 0 rgba(123,196,127,.6);
}
.status-dot::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  animation: pulse 2.4s var(--ease) infinite; background: rgba(123,196,127,.5);
}
@keyframes pulse { 0% { transform: scale(1); opacity: .8; } 70%,100% { transform: scale(2.6); opacity: 0; } }

.hero-plate {
  position: absolute; right: max(28px, 6vw); top: 50%; transform: translateY(-50%);
  z-index: 2; color: var(--brass-lt); text-align: center;
}
.plate-frame {
  width: 230px; height: 360px; border: 1px solid rgba(198,161,91,.4);
  border-radius: 4px; display: grid; place-items: center; position: relative;
  background: linear-gradient(160deg, rgba(198,161,91,.09), rgba(198,161,91,0));
}
.plate-frame::before, .plate-frame::after {
  content: ""; position: absolute; width: 12px; height: 12px; border: 1px solid var(--brass);
}
.plate-frame::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.plate-frame::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.plate-art { width: 74%; height: 74%; opacity: .9; }
.plate-caption {
  display: block; margin-top: 16px; font-size: .68rem; letter-spacing: .22em;
  text-transform: uppercase; color: rgba(227,200,136,.75);
}
@media (max-width: 1080px) { .hero-plate { display: none; } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--ink); color: var(--ivory); overflow: hidden; padding: 16px 0;
  border-block: 1px solid var(--green-900);
}
.marquee-track {
  display: inline-flex; align-items: center; gap: 30px; white-space: nowrap;
  animation: scroll-x 28s linear infinite; font-family: var(--font-display);
  font-style: italic; font-size: 1.35rem;
}
.marquee-track span { color: var(--ivory); }
.marquee-track .dot { color: var(--brass); font-style: normal; font-size: .8rem; }
@keyframes scroll-x { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ============================================================
   INTRO / STATS
   ============================================================ */
.intro { padding: clamp(72px, 12vh, 130px) 0; }
.intro-grid {
  display: grid; grid-template-columns: 1.2fr .9fr; gap: clamp(40px, 6vw, 90px); align-items: center;
}
.stats {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.stats li {
  background: var(--cream); padding: 28px 26px;
  display: flex; flex-direction: column; gap: 6px;
}
.stat-num {
  font-family: var(--font-display); font-weight: 500; font-size: 2.7rem; line-height: 1;
  color: var(--green-800);
}
.stat-num em { font-size: 1.1rem; font-style: normal; color: var(--brass-dk); margin-left: 2px; }
.stat-label { font-size: .82rem; letter-spacing: .06em; color: var(--ink-soft); text-transform: uppercase; }

/* ============================================================
   FEATURE — BARBIER IN AKTION (cinematic band; video-ready)
   ============================================================ */
.feature { background: var(--green-900); }
.feature-media {
  position: relative; width: 100%; height: clamp(360px, 62vh, 640px); overflow: hidden;
}
.feature-img {
  position: absolute; inset: 0;
  background-image: var(--img); background-size: cover; background-position: center 38%;
}
/* When a <video> replaces the slot it inherits the same framing */
video.feature-img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: clamp(64px, 10vh, 120px) 0; background: var(--ivory); border-block: 1px solid var(--line); }
.section-head { max-width: 640px; margin-bottom: clamp(40px, 6vh, 64px); }
.section-sub { margin-top: 1rem; }

.service-list { border-top: 1px solid var(--line); }
.service-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 28px;
  padding: 28px 4px; border-bottom: 1px solid var(--line);
  transition: padding-left .3s var(--ease), background-color .3s var(--ease);
}
.service-row:hover { padding-left: 16px; background: linear-gradient(90deg, rgba(198,161,91,.08), transparent 60%); }
.service-main { max-width: 60ch; }
.service-main h3 {
  font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; margin: 0 0 .3rem; color: var(--ink);
}
.service-main p { margin: 0; color: var(--ink-soft); font-size: .98rem; }
.service-meta { display: flex; align-items: baseline; gap: 22px; flex-shrink: 0; text-align: right; }
.service-meta .dur { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
.service-meta .price {
  font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: var(--green-800);
  font-variant-numeric: tabular-nums; min-width: 5ch;
}
.services-note { margin-top: 26px; font-size: .86rem; letter-spacing: .04em; color: var(--ink-soft); }

/* ============================================================
   CRAFT / PROCESS
   ============================================================ */
.craft {
  padding: clamp(72px, 12vh, 130px) 0; color: var(--ivory);
  background: radial-gradient(120% 120% at 15% 0%, var(--green-700), var(--green-900) 70%);
}
.section-head--light .section-title { color: var(--ivory); }
.section-head--light .section-eyebrow { color: var(--brass-lt); }
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(198,161,91,.22); border: 1px solid rgba(198,161,91,.22); border-radius: var(--radius); overflow: hidden; }
.step { background: var(--green-800); padding: 34px 26px 40px; position: relative; }
.step-num {
  font-family: var(--font-display); font-weight: 500; font-size: 1rem; letter-spacing: .1em;
  color: var(--brass-lt); display: block; margin-bottom: 30px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(198,161,91,.3);
}
.step h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.55rem; margin: 0 0 .5rem; color: var(--ivory); }
.step p { margin: 0; font-size: .95rem; color: rgba(244,239,228,.75); }

/* ============================================================
   DER LADEN (GALLERY)
   ============================================================ */
.shop { padding: clamp(72px, 12vh, 130px) 0; background: var(--cream); }
.shop-gallery {
  display: grid; grid-template-columns: 1.35fr 1fr;
  grid-auto-rows: minmax(238px, 1fr); gap: 20px;
}
.shop-tile {
  position: relative; margin: 0; border-radius: var(--radius); overflow: hidden;
  background-color: var(--green-800);
  background-image: var(--img); background-size: cover; background-position: center;
  border: 1px solid var(--line);
  transition: box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.shop-tile--wide { grid-row: span 2; }
.shop-tile::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(18,36,27,.88) 0%, rgba(18,36,27,.28) 42%, rgba(18,36,27,0) 68%);
}
.shop-tile:hover { border-color: var(--brass); box-shadow: 0 22px 48px -26px rgba(18,36,27,.65); }
.shop-tile figcaption {
  position: absolute; left: 0; bottom: 0; z-index: 2; padding: 24px 26px;
  color: var(--ivory); font-family: var(--font-display); font-weight: 500;
  font-size: 1.3rem; line-height: 1.22; max-width: 24ch;
}
.tile-kicker {
  display: block; font-family: var(--font-ui); font-size: .68rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; color: var(--brass-lt); margin-bottom: .55rem;
}
@media (max-width: 760px) {
  .shop-gallery { grid-template-columns: 1fr; }
  .shop-tile--wide { grid-row: auto; }
  .shop-tile { aspect-ratio: 3 / 2; }
}

/* ============================================================
   TEAM
   ============================================================ */
.team { padding: clamp(72px, 12vh, 130px) 0; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.master-portrait {
  aspect-ratio: 3 / 4; border-radius: var(--radius); margin-bottom: 20px; position: relative; overflow: hidden;
  background: linear-gradient(155deg, var(--green-700), var(--green-900));
  display: grid; place-items: center; border: 1px solid var(--line);
}
.master-portrait::after {
  content: attr(data-initials);
  font-family: var(--font-display); font-weight: 500; font-size: 3.2rem; color: rgba(227,200,136,.55);
  letter-spacing: .04em;
}
.master-portrait::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 50% 30%, rgba(198,161,91,.14), transparent 70%);
}
.master h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.35rem; margin: 0 0 .15rem; }
.master-role { font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brass-dk); margin: 0 0 .8rem; }
.master-bio { font-size: .92rem; color: var(--ink-soft); margin: 0; }

/* ============================================================
   QUOTE
   ============================================================ */
.quote { padding: clamp(64px, 11vh, 120px) 0; background: var(--ink); color: var(--ivory); }
.quote-inner { max-width: 900px; margin-inline: auto; text-align: center; }
.quote-text {
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: clamp(1.5rem, 3.6vw, 2.5rem); line-height: 1.32; margin: 0 0 1.6rem;
}
.quote-author { font-size: .86rem; letter-spacing: .14em; text-transform: uppercase; color: var(--brass-lt); margin: 0; }

/* ============================================================
   VISIT / CONTACT
   ============================================================ */
.visit { padding: clamp(72px, 12vh, 130px) 0; background: var(--ivory); border-top: 1px solid var(--line); }
.visit-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.visit-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 2.2rem 0; }
.visit-details { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin: 0; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.visit-details dt { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--brass-dk); margin-bottom: .5rem; }
.visit-details dd { margin: 0; color: var(--ink); font-size: 1rem; line-height: 1.7; }

.hours-card {
  background: var(--green-800); color: var(--ivory); border-radius: var(--radius);
  padding: 34px 32px; box-shadow: 0 30px 60px -30px rgba(18,36,27,.5);
}
.hours-title { font-family: var(--font-display); font-size: 1.4rem; margin: 0 0 1.4rem; color: var(--brass-lt); }
.hours-list { list-style: none; margin: 0 0 1.8rem; padding: 0; }
.hours-list li {
  display: flex; justify-content: space-between; padding: 11px 0; font-size: .96rem;
  border-bottom: 1px solid rgba(244,239,228,.14); color: rgba(244,239,228,.9);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .closed { color: rgba(244,239,228,.5); }
.hours-list .is-today { color: var(--brass-lt); font-weight: 500; }
.hours-list .is-today span:first-child::before { content: "● "; font-size: .7em; vertical-align: middle; }
.hours-card .btn-solid { background: var(--brass); color: var(--green-900); }
.hours-card .btn-solid:hover { background: var(--brass-lt); }

/* ============================================================
   STANDORT / KARTE
   ============================================================ */
.location { padding: clamp(64px, 10vh, 110px) 0 0; background: var(--cream); }
.location-head { max-width: 640px; margin-bottom: clamp(32px, 5vh, 52px); }
.location-map {
  position: relative; width: 100%; height: clamp(340px, 52vh, 520px);
  background: var(--green-800); border-top: 1px solid var(--line);
}
.location-map iframe {
  width: 100%; height: 100%; border: 0; display: block;
  filter: grayscale(.15) contrast(1.02);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--green-900); color: var(--ivory); padding: clamp(56px, 8vh, 80px) 0 30px; }
.footer-inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(244,239,228,.14);
}
.footer-brand .brand-word { color: var(--ivory); font-size: 1.8rem; }
.footer-brand p { margin: .8rem 0 0; color: rgba(244,239,228,.6); font-size: .95rem; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { font-size: .95rem; color: rgba(244,239,228,.82); width: fit-content; }
.footer-nav a:hover { color: var(--brass-lt); }
.footer-contact p { margin: 0 0 .5rem; color: rgba(244,239,228,.72); font-size: .95rem; }
.footer-contact a:hover { color: var(--brass-lt); }
.footer-base {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding-top: 24px; font-size: .84rem; color: rgba(244,239,228,.5);
}
.footer-base a:hover { color: var(--brass-lt); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: calc(var(--d, 0) * 80ms); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .status-dot::after { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .nav, .header-actions { display: none; }
  .menu-toggle { display: flex; }
  .intro-grid { grid-template-columns: 1fr; gap: 44px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .wrap { padding-inline: 20px; }
  .header-inner { height: 66px; }
  .service-row { flex-direction: column; gap: 10px; align-items: flex-start; }
  .service-meta { text-align: left; }
  .stats { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .visit-details { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .hero-cta .btn, .visit-cta .btn { flex: 1 1 auto; }
}
