/* =====================================================
   GALLERIA SHOE CARE — Stylesheet
   Mobile-first · Modern editorial luxury aesthetic
   ===================================================== */

:root {
  /* Color palette — refined leather + cream + charcoal */
  --ink: #1a1410;
  --ink-soft: #3d2f24;
  --cream: #f5efe6;
  --cream-warm: #ede4d3;
  --paper: #fbf8f3;
  --line: #e0d5c2;
  --accent: #8b3a1f;        /* burnt cognac */
  --accent-deep: #5a2510;
  --gold: #b8935a;
  --muted: #7a6a58;
  --success: #5a7a4f;

  /* Type */
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --container: 1240px;
  --gutter: 1.5rem;

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(26,20,16,0.06), 0 1px 3px rgba(26,20,16,0.08);
  --shadow-md: 0 4px 12px rgba(26,20,16,0.08), 0 2px 4px rgba(26,20,16,0.05);
  --shadow-lg: 0 24px 48px -12px rgba(26,20,16,0.18), 0 12px 24px -8px rgba(26,20,16,0.1);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px; /* sticky header offset for anchor links */
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; }
em { font-style: italic; }

/* ========== UTILITY ========== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 0.75rem 1rem;
  z-index: 999;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 6.5vw, 4.4rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 400; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1rem; letter-spacing: 0.04em; text-transform: uppercase; font-family: var(--font-body); font-weight: 600; }

h1 em, h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  font-variation-settings: "opsz" 144;
}

p { color: var(--ink-soft); }
.lede { font-size: 1.15rem; line-height: 1.55; color: var(--ink-soft); }

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 243, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  border-radius: var(--r-sm);
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}
.brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.primary-nav { display: none; gap: 0.5rem; }
.primary-nav a {
  padding: 0.5rem 0.9rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: var(--r-sm);
  transition: color 0.2s, background 0.2s;
}
.primary-nav a:hover { color: var(--accent); }
.primary-nav a.active { color: var(--ink); }

.header-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: transform 0.2s, background 0.2s;
}
.header-cta:hover { background: var(--accent); transform: translateY(-1px); }

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.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 menu open state */
.primary-nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--paper);
  padding: 1rem var(--gutter) 1.5rem;
  gap: 0;
  border-bottom: 1px solid var(--line);
}
.primary-nav.open a {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.1rem;
}
.primary-nav.open a:last-child { border-bottom: 0; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--cream);
}
.btn-full { width: 100%; padding-block: 1.1rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 500;
  font-size: 1rem;
  border-bottom: 1px solid transparent;
  transition: gap 0.25s var(--ease), border-color 0.2s;
}
.link-arrow:hover { gap: 0.8rem; border-color: var(--accent); }
.link-arrow.small { font-size: 0.9rem; }

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 3rem 0 4rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(184, 147, 90, 0.12), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(139, 58, 31, 0.08), transparent 60%);
  z-index: -1;
}
.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
.hero-content { order: 1; }
.hero-visual { order: 2; }

h1 {
  margin-bottom: 1.5rem;
}
.hero .lede { margin-bottom: 2rem; max-width: 540px; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.meta-item { display: flex; flex-direction: column; line-height: 1.2; }
.meta-item strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
}
.meta-item span {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
}
.meta-divider {
  width: 1px;
  height: 32px;
  background: var(--line);
}

/* Hero visual — sturdy grid layout */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
.hero-feature {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  position: relative;
  overflow: hidden;
}
.hero-feature::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(184, 147, 90, 0.18), transparent 70%);
  pointer-events: none;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.badge-num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 0.9;
  color: var(--accent);
  font-style: italic;
}
.badge-label {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.4;
}

.feature-tags {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  position: relative;
}
@media (min-width: 380px) {
  .feature-tags { grid-template-columns: 1fr 1fr; }
}
.feature-tag {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 0.9rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
  min-width: 0;
  line-height: 1.2;
}
.feature-tag svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}
.feature-tag span {
  min-width: 0;
}
.feature-tag.dark {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.feature-tag.dark svg { color: var(--gold); }

.feature-quote {
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  position: relative;
}
.stars-mini {
  display: block;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}
.feature-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.feature-quote cite {
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ========== TRUST BAR ========== */
.trust-bar {
  background: var(--ink);
  color: var(--cream);
  padding: 2rem 0;
  overflow: hidden;
}
.trust-label {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-align: center;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.trust-marquee {
  overflow: hidden;
}
.trust-track {
  display: flex;
  gap: 2.5rem;
  animation: scroll 38s linear infinite;
  width: max-content;
}
.trust-track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  white-space: nowrap;
  color: var(--cream);
  opacity: 0.85;
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ========== SECTION HEAD ========== */
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.section-head p { margin-top: 1rem; font-size: 1.05rem; }

/* ========== SERVICES ========== */
.services { padding: 5rem 0; }
.services-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.service-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 2rem 1.75rem;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.service-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.service-card h3 {
  font-size: 1.4rem;
  line-height: 1.15;
}
.service-card p {
  font-size: 0.95rem;
  flex-grow: 1;
}
.service-card.featured {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.service-card.featured h3 { color: var(--cream); }
.service-card.featured p { color: rgba(245, 239, 230, 0.75); }
.service-card.featured .service-num { color: var(--gold); }
.services-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ========== ABOUT ========== */
.about {
  padding: 5rem 0;
  background: var(--cream-warm);
}
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
.about-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 420px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.about-stat {
  text-align: center;
  color: var(--cream);
  z-index: 2;
  position: relative;
}
.about-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(7rem, 18vw, 12rem);
  font-weight: 400;
  line-height: 0.9;
  color: var(--gold);
}
.about-stat span {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 0.75rem;
  color: var(--cream);
}
.about-pattern {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, transparent 0 30px, rgba(184, 147, 90, 0.06) 30px 31px);
}

.about-content h2 { margin-bottom: 1.5rem; }
.about-content p + p { margin-top: 1rem; }
.about-quote {
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--accent);
  background: var(--paper);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.about-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.45;
  color: var(--ink);
}
.about-quote cite {
  display: block;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.75rem;
}

/* ========== GALLERY ========== */
.gallery { padding: 5rem 0; }
.gallery-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
.gallery-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ba-frame {
  aspect-ratio: 1 / 1;
  border-radius: var(--r-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.ba-half {
  position: relative;
  overflow: hidden;
  background: var(--cream-warm);
}
.ba-half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover .ba-half img {
  transform: scale(1.04);
}
.ba-half span {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: rgba(26, 20, 16, 0.8);
  color: var(--cream);
  padding: 0.35rem 0.7rem;
  border-radius: 4px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 2;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.gallery-item figcaption {
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-style: italic;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: 5rem 0;
  background: var(--ink);
  color: var(--cream);
}
.testimonials h2 { color: var(--cream); }
.testimonials h2 em { color: var(--gold); }
.testimonials .eyebrow { color: var(--gold); }
.test-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
.test-card {
  background: rgba(245, 239, 230, 0.04);
  border: 1px solid rgba(245, 239, 230, 0.1);
  border-radius: var(--r-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.stars {
  color: var(--gold);
  letter-spacing: 0.15em;
  font-size: 0.95rem;
}
.test-card p {
  color: var(--cream);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  flex-grow: 1;
}
.test-card footer {
  padding-top: 1rem;
  border-top: 1px solid rgba(245, 239, 230, 0.1);
}
.test-card footer strong {
  display: block;
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 500;
  font-style: normal;
}
.test-card footer span {
  display: block;
  font-size: 0.8rem;
  color: rgba(245, 239, 230, 0.6);
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* ========== CONTACT CTA BANNER ========== */
.cta-banner {
  padding: 5rem 0;
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(184, 147, 90, 0.18), transparent 60%),
    radial-gradient(ellipse 50% 40% at 15% 90%, rgba(139, 58, 31, 0.22), transparent 60%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cta-banner .eyebrow { color: var(--gold); }
.cta-banner h2 { color: var(--cream); margin-bottom: 1.25rem; }
.cta-banner h2 em { color: var(--gold); }
.cta-banner .lede {
  color: rgba(245, 239, 230, 0.78);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.cta-options {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  text-align: left;
}
.cta-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.5rem;
  background: rgba(245, 239, 230, 0.05);
  border: 1px solid rgba(245, 239, 230, 0.12);
  border-radius: var(--r-md);
  text-decoration: none;
  color: var(--cream);
  transition: all 0.25s var(--ease);
}
.cta-card:hover {
  background: rgba(245, 239, 230, 0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.cta-card.cta-primary {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.cta-card.cta-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.cta-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: rgba(184, 147, 90, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--gold);
}
.cta-card.cta-primary .cta-icon {
  background: var(--ink);
  color: var(--gold);
}
.cta-icon svg { width: 26px; height: 26px; }
.cta-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cta-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.cta-card.cta-primary .cta-label { color: var(--accent); }
.cta-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.1;
  color: inherit;
  margin: 2px 0;
}
.cta-hint {
  font-size: 0.85rem;
  color: rgba(245, 239, 230, 0.65);
}
.cta-card.cta-primary .cta-hint { color: var(--muted); }
.cta-arrow {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.25s var(--ease);
}
.cta-card:hover .cta-arrow { transform: translateX(4px); }
.cta-card.cta-primary .cta-arrow { color: var(--accent); }

@media (min-width: 720px) {
  .cta-options { grid-template-columns: 1fr 1fr; }
}

/* ========== FAQ ========== */
.faq {
  padding: 5rem 0;
  background: var(--cream-warm);
}
.faq-grid {
  display: grid;
  gap: 3rem;
}
.faq-head h2 { margin-bottom: 1rem; }
.faq-head a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.faq-list details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-list details[open] {
  border-color: var(--accent);
}
.faq-list summary {
  padding: 1.15rem 1.5rem;
  cursor: pointer;
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  transition: color 0.2s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
  line-height: 1;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p {
  padding: 0 1.5rem 1.25rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ========== VISIT ========== */
.visit { padding: 5rem 0; }
.visit-grid {
  display: grid;
  gap: 2.5rem;
}
.visit-info h2 { margin-bottom: 1rem; }
.visit-info .lede { margin-bottom: 2rem; }

.visit-block {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}
.visit-block:first-of-type { border-top: 0; padding-top: 0; }
.visit-block h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.visit-block address {
  font-style: normal;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.visit-block .phone-link {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
}
.visit-block .phone-link:hover { color: var(--accent); }

.hours-list { display: flex; flex-direction: column; gap: 0.4rem; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.98rem;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list li.closed { color: var(--muted); }
.hours-list span:first-child { color: var(--ink-soft); }
.hours-list span:last-child { font-weight: 500; color: var(--ink); }

.visit-map {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
  background: var(--cream);
}
.visit-map iframe { width: 100%; height: 100%; border: 0; }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245, 239, 230, 0.1);
}
.footer-brand { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-start; }
.footer-brand .brand-mark { background: var(--cream); color: var(--ink); margin-bottom: 0.5rem; }
.footer-brand h3 { color: var(--cream); font-size: 1.3rem; }
.footer-brand p { color: rgba(245, 239, 230, 0.7); max-width: 320px; }

.footer-col h4 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}
.footer-col address,
.footer-col p { color: rgba(245, 239, 230, 0.75); font-style: normal; line-height: 1.7; margin-bottom: 0.3rem; }
.footer-col a {
  color: rgba(245, 239, 230, 0.85);
  transition: color 0.2s;
  border-bottom: 1px solid transparent;
}
.footer-col a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.4rem; }

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(245, 239, 230, 0.55);
}

/* ========== PAGE HEADER (sub-pages) ========== */
.page-header {
  padding: 4rem 0 3rem;
  background: var(--cream-warm);
  border-bottom: 1px solid var(--line);
}
.page-header .container { max-width: 800px; text-align: center; }
.page-header h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1rem; }
.page-header p { font-size: 1.1rem; max-width: 580px; margin: 0 auto; }
.breadcrumb {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.breadcrumb a { color: var(--muted); border-bottom: 1px dotted; }
.breadcrumb a:hover { color: var(--accent); }

/* ========== SERVICES PAGE ========== */
.services-detail { padding: 4rem 0; }
.svc-category {
  margin-bottom: 4rem;
}
.svc-category h2 {
  font-size: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2rem;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.svc-category h2::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--accent);
}
.svc-list {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
.svc-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  transition: border-color 0.2s, transform 0.2s;
}
.svc-item:hover { border-color: var(--accent); transform: translateY(-2px); }
.svc-item-info h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0;
}
.svc-item-info p {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* ========== CONTACT PAGE ========== */
.contact-page { padding: 4rem 0; }
.contact-grid {
  display: grid;
  gap: 3rem;
}

/* ========== RESPONSIVE ========== */
@media (min-width: 640px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .test-grid { grid-template-columns: 1fr 1fr; }
  .svc-list { grid-template-columns: 1fr; }
  .hero { padding: 4rem 0 5rem; }
}

@media (min-width: 880px) {
  :root { --gutter: 2rem; }
  body { font-size: 18px; }
  .menu-toggle { display: none; }
  .primary-nav { display: flex; }
  .header-cta { display: inline-flex; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .test-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 960px) {
  .hero { padding: 5rem 0 7rem; }
  .hero-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
  }
  .hero-content { order: 1; }
  .hero-visual { order: 2; max-width: 100%; }
  .about-grid { grid-template-columns: 1fr 1.2fr; gap: 4rem; }
  .faq-grid { grid-template-columns: 0.8fr 1.2fr; gap: 4rem; align-items: start; }
  .faq-head { position: sticky; top: 100px; }
  .visit-grid { grid-template-columns: 1fr 1.1fr; gap: 4rem; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .test-grid { grid-template-columns: repeat(4, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .svc-list { grid-template-columns: 1fr 1fr; }
  .services { padding: 7rem 0; }
  .about, .gallery, .testimonials, .cta-banner, .faq, .visit { padding: 7rem 0; }
}

@media (min-width: 1200px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ========== PRINT ========== */
@media print {
  .site-header, .site-footer, .hero-visual, .menu-toggle { display: none; }
  body { background: white; color: black; }
}
