:root {
  --primary: #202522;
  --background: #f7f7f3;
  --text: #171a18;
  --accent: #d55a3b;
  --font-heading: 'DM Sans Variable', 'DM Sans', sans-serif;
  --font-body: 'DM Sans Variable', 'DM Sans', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--background);
  color: var(--text);
  font-family: var(--font-body);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-shell a, .site-shell button { -webkit-tap-highlight-color: transparent; }

/* Header */
.site-header { position: absolute; inset-inline: 0; top: 0; z-index: 30; }
.header-inner {
  max-width: 80rem; margin: 0 auto; display: flex; align-items: center;
  justify-content: space-between; padding: 1.25rem 1.25rem;
}
@media (min-width: 640px) { .header-inner { padding: 1.25rem 2rem; } }
@media (min-width: 1024px) { .header-inner { padding: 1.25rem 3rem; } }
.brand-link {
  max-width: 20rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  font-family: var(--font-heading); font-size: 1.125rem; font-weight: 600;
  letter-spacing: -0.03em; color: #fff;
}
.desktop-nav { display: none; align-items: center; gap: 1.75rem; font-size: 0.72rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: rgb(255 255 255 / 0.8); }
@media (min-width: 768px) { .desktop-nav { display: flex; } }
.nav-link { position: relative; transition: color 180ms ease; }
.nav-link::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: currentColor; transition: right 180ms ease; }
.nav-link:hover, .nav-link:focus-visible { color: #fff; }
.nav-link:hover::after, .nav-link:focus-visible::after { right: 0; }
.mobile-nav-toggle {
  display: flex; width: 2.5rem; height: 2.5rem; align-items: center; justify-content: center;
  border-radius: 999px; border: 1px solid rgb(255 255 255 / 0.25); color: #fff; background: transparent; cursor: pointer;
}
@media (min-width: 768px) { .mobile-nav-toggle { display: none; } }
.mobile-nav {
  margin: 0.25rem 1rem 0; display: flex; flex-direction: column; gap: 1rem;
  border: 1px solid rgb(255 255 255 / 0.2); background: rgb(0 0 0 / 0.65);
  padding: 1.25rem; font-size: 0.875rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.16em; color: #fff; backdrop-filter: blur(6px);
}
@media (min-width: 768px) { .mobile-nav { display: none !important; } }

/* Shared */
.section-space { padding-top: clamp(4.5rem, 10vw, 9rem); padding-bottom: clamp(4.5rem, 10vw, 9rem); }
.section-kicker { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--primary); }
.section-title { max-width: 30rem; font-family: var(--font-heading); font-size: clamp(2.2rem, 4vw, 4rem); font-weight: 600; line-height: 0.98; letter-spacing: -0.055em; margin: 1.25rem 0 0; }

.site-button {
  display: inline-flex; align-items: center; gap: 0.6rem; min-height: 2.9rem;
  padding: 0.75rem 1.05rem; font-family: var(--font-body); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
  cursor: pointer; border: none;
}
.site-button:hover { transform: translateY(-2px); }
.site-button-light { background: var(--background); color: var(--text); }
.site-button-light:hover { background: #fff; }
.site-button-ghost { border: 1px solid color-mix(in srgb, currentColor 34%, transparent); color: inherit; background: transparent; }
.site-button-ghost:hover { border-color: currentColor; }

/* Hero */
.hero-section {
  position: relative; display: flex; min-height: 88svh; align-items: flex-end; overflow: hidden;
}
.hero-empty {
  background: var(--primary);
  background-image:
    radial-gradient(circle at 75% 25%, color-mix(in srgb, var(--accent) 45%, transparent), transparent 35%),
    radial-gradient(circle at 15% 80%, color-mix(in srgb, var(--text) 20%, transparent), transparent 32%);
}
.hero-inner { position: relative; z-index: 10; margin: 0 auto; width: 100%; max-width: 80rem;
  padding: 10rem 1.25rem 3.5rem; }
@media (min-width: 640px) { .hero-inner { padding: 10rem 2rem 5rem; } }
@media (min-width: 1024px) { .hero-inner { padding: 10rem 3rem 7rem; } }
.hero-category-label { display: flex; align-items: center; gap: 0.75rem; margin: 0 0 1.25rem;
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.24em; color: rgb(255 255 255 / 0.75); }
.hero-category-label .dot { width: 0.5rem; height: 0.5rem; border-radius: 999px; background: var(--accent); }
.hero-name { max-width: 48rem; font-family: var(--font-heading); font-weight: 600; color: #fff;
  font-size: clamp(3rem, 9vw, 6rem); line-height: 0.96; letter-spacing: -0.055em; margin: 0; }
.hero-proposition { max-width: 34rem; margin: 1.75rem 0 0; font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.6; color: rgb(255 255 255 / 0.8); }
.hero-ctas { margin-top: 2.25rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; }
.hero-scroll-cue { position: absolute; bottom: 1.75rem; right: 1.25rem; display: none; align-items: center;
  gap: 0.75rem; font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.22em; color: rgb(255 255 255 / 0.55); }
.hero-scroll-cue span { height: 1px; width: 2.5rem; background: rgb(255 255 255 / 0.4); }
@media (min-width: 640px) { .hero-scroll-cue { display: flex; } }
@media (min-width: 1024px) { .hero-scroll-cue { right: 3rem; } }

/* About */
.about-section { max-width: 80rem; margin: 0 auto; padding-left: 1.25rem; padding-right: 1.25rem; }
@media (min-width: 640px) { .about-section { padding-left: 2rem; padding-right: 2rem; } }
@media (min-width: 1024px) { .about-section { padding-left: 3rem; padding-right: 3rem; } }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: repeat(12, 1fr); gap: 4rem; } }
.about-col-1 { grid-column: span 4; }
.about-col-2 { grid-column: 6 / span 7; }
.about-instagram-note { margin-top: 2rem; font-size: 0.9rem; }
.about-instagram-note a { color: var(--primary); font-weight: 600; }
.about-instagram-note a:hover { color: var(--accent); }
.about-copy { max-width: 48rem; font-size: clamp(1.4rem, 2.4vw, 1.9rem); line-height: 1.35; color: color-mix(in srgb, var(--text) 80%, transparent); margin: 0; }

/* Services */
.services-section { border-top: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
  background: color-mix(in srgb, var(--background) 82%, var(--accent));
  padding: 4rem 1.25rem; }
@media (min-width: 640px) { .services-section { padding: 6rem 2rem; } }
@media (min-width: 1024px) { .services-section { padding: 6rem 3rem; } }
.services-inner { max-width: 80rem; margin: 0 auto; }
.services-heading { margin-bottom: 3rem; display: flex; flex-direction: column; gap: 1.25rem;
  justify-content: space-between; }
@media (min-width: 640px) { .services-heading { flex-direction: row; align-items: flex-end; } }
.services-note { max-width: 22rem; font-size: 0.875rem; line-height: 1.6; color: color-mix(in srgb, var(--text) 55%, transparent); }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.specialty-card { min-height: 11rem; border: 1px solid color-mix(in srgb, var(--text) 16%, transparent);
  padding: 1.5rem; transition: transform 200ms ease, border-color 200ms ease, background-color 200ms ease; }
.specialty-card:hover { transform: translateY(-4px); border-color: var(--primary); }
.specialty-card .idx { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; opacity: 0.55; }
.specialty-card p { margin-top: 2.5rem; font-family: var(--font-heading); font-size: 1.25rem; }
.specialty-card.featured { background: var(--primary); color: #fff; }

/* Location */
.location-section { background: var(--primary); color: #fff; }
.location-grid { margin: 0 auto; max-width: 80rem; display: grid; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .location-grid { grid-template-columns: repeat(12, 1fr); } }
.location-content { grid-column: span 5; padding: 4rem 1.25rem; }
@media (min-width: 640px) { .location-content { padding: 6rem 2rem; } }
@media (min-width: 1024px) { .location-content { padding: 6rem 3rem; } }
.location-kicker { color: rgb(255 255 255 / 0.6); }
.location-title { color: #fff; }
.location-address { margin-top: 2.5rem; display: flex; align-items: flex-start; gap: 0.75rem; color: rgb(255 255 255 / 0.75); }
.location-address svg { margin-top: 0.2rem; flex-shrink: 0; color: var(--accent); }
.location-hours { margin-top: 2.5rem; border-top: 1px solid rgb(255 255 255 / 0.2); padding-top: 1.5rem; }
.location-hours-label { margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: rgb(255 255 255 / 0.55); }
.hours-list { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; color: rgb(255 255 255 / 0.8); }
.hour-row { display: flex; justify-content: space-between; gap: 1.25rem; border-bottom: 1px solid rgb(255 255 255 / 0.1); padding-bottom: 0.5rem; }
.hour-row span:last-child { color: rgb(255 255 255 / 0.6); text-align: right; }
.location-ctas { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.location-map { min-height: 22rem; border-top: 1px solid rgb(255 255 255 / 0.15); background: rgb(0 0 0 / 0.1); }
@media (min-width: 1024px) { .location-map { grid-column: span 7; border-top: none; border-left: 1px solid rgb(255 255 255 / 0.15); } }
.location-map iframe { width: 100%; height: 100%; min-height: 22rem; border: 0; filter: grayscale(0.2); }

/* Footer */
.site-footer { background: var(--text); color: var(--background); padding: 3.5rem 1.25rem; }
@media (min-width: 640px) { .site-footer { padding: 3.5rem 2rem; } }
@media (min-width: 1024px) { .site-footer { padding: 3.5rem 3rem; } }
.footer-grid { margin: 0 auto; max-width: 80rem; display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  border-bottom: 1px solid rgb(247 247 243 / 0.15); padding-bottom: 3rem; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-name { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; margin: 0; }
.footer-tagline { margin-top: 1rem; max-width: 20rem; font-size: 0.875rem; line-height: 1.6; color: rgb(247 247 243 / 0.55); }
.footer-heading { margin-bottom: 1.1rem; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--background); }
.footer-detail { display: block; margin-top: 0.65rem; max-width: 18rem; font-size: 0.78rem; line-height: 1.55; color: color-mix(in srgb, var(--background) 55%, transparent); }
.footer-link { transition: color 180ms ease; }
.footer-link:hover { color: var(--background); }
.footer-bottom { margin: 1.75rem auto 0; max-width: 80rem; display: flex; flex-direction: column; gap: 0.75rem;
  justify-content: space-between; font-size: 0.75rem; color: rgb(247 247 243 / 0.4); }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }

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