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

:root {
  --teal:        #0D9488;
  --teal-dark:   #0F766E;
  --teal-light:  #CCFBF1;
  --slate:       #334155;
  --slate-light: #64748B;
  --slate-pale:  #F1F5F9;
  --white:       #FFFFFF;
  --off-white:   #F8FAFC;
  --black:       #0F172A;
  --font-body:   'Inter', system-ui, sans-serif;
  --font-display:'Playfair Display', Georgia, serif;
  --ease:        cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--slate);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--teal-dark); }
address { font-style: normal; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--black); color: var(--white);
  padding: .5rem 1rem; z-index: 200; font-size: .875rem;
}
.skip-link:focus { left: 0; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ── Typography ───────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.section-subtitle {
  font-size: 1.0625rem;
  color: var(--slate-light);
  max-width: 520px;
  line-height: 1.75;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: .9375rem;
  padding: .8125rem 1.75rem;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .25s var(--ease);
  text-decoration: none;
}
.btn--primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn--primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(13,148,136,.3);
}
.btn--ghost {
  background: transparent;
  color: var(--slate);
  border-color: var(--slate-light);
}
.btn--ghost:hover {
  color: var(--teal);
  border-color: var(--teal);
}
.btn--nav {
  font-size: .8125rem;
  padding: .5625rem 1.25rem;
}

/* ── Header ───────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(51,65,85,.08);
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: 0 1px 12px rgba(0,0,0,.06); }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--black);
  text-decoration: none;
}
.logo:hover { color: var(--teal); }
.logo-icon { color: var(--teal); }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  color: var(--slate); padding: .25rem;
}

/* ── Nav ──────────────────────────────────────────── */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-menu a:not(.btn) {
  font-size: .875rem;
  font-weight: 400;
  color: var(--slate-light);
  text-decoration: none;
  position: relative;
}
.nav-menu a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--teal);
  transition: width .25s var(--ease);
}
.nav-menu a:not(.btn):hover { color: var(--teal); }
.nav-menu a:not(.btn):hover::after { width: 100%; }

/* ── Hero ─────────────────────────────────────────── */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--off-white);
  overflow: hidden;
}
.hero .container--split {
  gap: 3rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.hero-content { padding-right: 1rem; }
.hero-eyebrow {
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 1.5rem;
}
.hero-desc {
  font-size: 1.0625rem;
  color: var(--slate-light);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .8125rem;
  color: var(--slate-light);
}
.hero-trust .divider {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--slate-light);
  opacity: .4;
}
.hero-image { position: relative; }
.hero-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.12);
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-accent {
  position: absolute;
  top: -24px; right: -24px;
  width: 120px; height: 120px;
  border: 2px solid var(--teal);
  border-radius: 16px;
  z-index: -1;
  opacity: .3;
}

/* ── Section shared ───────────────────────────────── */
.section { padding: 6rem 0; }
.section + .section { border-top: 1px solid rgba(51,65,85,.06); }

/* ── Services ─────────────────────────────────────── */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.service-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--off-white);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.08);
}
.service-card-img { overflow: hidden; }
.service-card-img img {
  width: 100%; height: 220px;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.service-card:hover .service-card-img img { transform: scale(1.04); }
.service-card-body { padding: 1.75rem; }
.service-card-body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--black);
  margin-bottom: .625rem;
}
.service-card-body p {
  font-size: .9375rem;
  color: var(--slate-light);
  line-height: 1.7;
}
.services-note {
  margin-top: 2rem;
  font-size: .9375rem;
  color: var(--slate-light);
}

/* ── About ────────────────────────────────────────── */
.about { background: var(--off-white); }
.about .container--split { gap: 4rem; }
.about-image-wrap { border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.1); }
.about-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-content { max-width: 520px; }
.about-content p {
  font-size: 1rem;
  color: var(--slate-light);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.about-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(51,65,85,.1);
}
.stat { display: flex; flex-direction: column; gap: .25rem; }
.stat-number {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.375rem;
  color: var(--black);
}
.stat-label { font-size: .8125rem; color: var(--slate-light); }
.stat-divider {
  width: 1px; height: 40px;
  background: rgba(51,65,85,.15);
}

/* ── Gallery ──────────────────────────────────────── */
.gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }

/* ── Visit ────────────────────────────────────────── */
.visit { background: var(--off-white); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}
.visit-info { max-width: 480px; }
.visit-address {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin: 2rem 0 1.5rem;
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.7;
}
.visit-address svg { color: var(--teal); flex-shrink: 0; margin-top: 4px; }
.visit-phone { margin-bottom: 2.5rem; }
.visit-phone a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--teal);
}
.visit-phone a:hover { color: var(--teal-dark); }
.visit-hours h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--black);
  margin-bottom: 1rem;
}
.visit-hours table {
  width: 100%;
  border-collapse: collapse;
}
.visit-hours td {
  padding: .625rem 0;
  font-size: .9375rem;
  border-bottom: 1px solid rgba(51,65,85,.08);
  color: var(--slate-light);
}
.visit-hours td:first-child { color: var(--slate); font-weight: 400; }
.visit-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
  aspect-ratio: 4/3;
}
.visit-map iframe { width: 100%; height: 100%; }

/* ── Footer ───────────────────────────────────────── */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,.6);
  padding: 4rem 0 2rem;
}
.site-footer a { color: rgba(255,255,255,.7); }
.site-footer a:hover { color: var(--teal-light); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p {
  margin-top: 1rem;
  font-size: .9375rem;
  line-height: 1.75;
  max-width: 300px;
}
.footer-contact p { font-size: .9375rem; line-height: 1.75; margin-bottom: .25rem; }
.footer-contact h4,
.footer-links h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { font-size: .9375rem; }
.footer-bottom {
  padding-top: 2rem;
  font-size: .8125rem;
  color: rgba(255,255,255,.35);
}

/* ── Mobile ───────────────────────────────────────── */
@media (max-width: 960px) {
  .container--split { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero .container--split { gap: 2.5rem; }
  .hero-content { order: 2; padding-right: 0; }
  .hero-image { order: 1; max-width: 500px; margin: 0 auto; }
  .hero-image-accent { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .visit-grid { grid-template-columns: 1fr; }
  .about .container--split { gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-menu {
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu a:not(.btn) { font-size: 1.125rem; color: var(--slate); }
  .hero h1 { font-size: clamp(1.75rem, 6vw, 2.5rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .hero-trust { flex-wrap: wrap; }
  .section { padding: 4rem 0; }
  .about-stats { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .stat-divider { display: none; }
}

/* ── Reduced motion ───────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}
