@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@500;600&display=swap');

:root {
  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-400: #a8a29e;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --stone-800: #292524;
  --stone-900: #1c1917;
  --stone-950: #0c0a09;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: var(--stone-50);
  color: var(--stone-800);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.logo-font { font-family: "Playfair Display", Georgia, serif; }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 1.25rem; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--stone-200);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.75rem 1.25rem; max-width: 1280px; margin: 0 auto;
}
.brand img { height: 58px; width: auto; }
.nav { display: none; gap: 1.2rem; font-size: 0.84rem; font-weight: 500; }
.nav a:hover { color: var(--stone-900); }
.nav a.active { color: var(--stone-900); font-weight: 600; }
.phone-btn {
  background: var(--stone-900); color: #fff;
  padding: 0.65rem 1.15rem; border-radius: 6px; font-size: 0.9rem; font-weight: 500;
  white-space: nowrap;
}
.phone-btn:hover { background: var(--stone-800); }
.menu-toggle {
  display: inline-flex; background: none; border: 1px solid var(--stone-200);
  padding: 0.45rem 0.7rem; border-radius: 6px; cursor: pointer; font-size: 0.85rem;
}
.mobile-nav {
  display: none; flex-direction: column; gap: 0.85rem;
  padding: 0 1.25rem 1rem; background: #fff; border-bottom: 1px solid var(--stone-200);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 0.25rem 0; }

.hero {
  position: relative; min-height: 85vh; display: flex; align-items: center; justify-content: center;
  overflow: hidden; color: #fff; text-align: center;
}
.hero.page { min-height: 70vh; }
.hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero .shade { position: absolute; inset: 0; background: rgba(0,0,0,.42); }
.hero .content { position: relative; z-index: 1; padding: 2rem 1.25rem; max-width: 800px; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.75rem); font-weight: 500; margin: 0 0 1rem; letter-spacing: -0.02em; }
.hero p { font-size: clamp(1.1rem, 2.2vw, 1.5rem); font-weight: 300; margin: 0 0 2rem; }
.hero.page p { font-size: clamp(0.95rem, 1.7vw, 1.15rem); letter-spacing: 0.03em; line-height: 1.65; }
.cta-row { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.btn {
  display: inline-block; padding: 1rem 2rem; border-radius: 6px; font-weight: 500; font-size: 1.05rem;
}
.btn-light { background: #fff; color: var(--stone-900); }
.btn-light:hover { background: var(--stone-100); }
.btn-dark { background: var(--stone-900); color: #fff; }
.btn-dark:hover { background: var(--stone-800); }
.btn-outline { border: 1px solid #fff; color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.12); }

.trust {
  background: var(--stone-900); color: #fff; text-align: center;
  padding: 1rem 1.25rem; font-size: 0.95rem; letter-spacing: .02em;
}
.section { padding: 5rem 1.25rem; }
.cards { display: grid; gap: 2rem; max-width: 1280px; margin: 0 auto; }
.card .thumb { aspect-ratio: 4/5; overflow: hidden; border-radius: 8px; margin-bottom: 1rem; }
.card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover img { transform: scale(1.05); }
.card h3 { margin: 0 0 .25rem; font-size: 1.25rem; font-weight: 500; }
.card p { margin: 0; color: var(--stone-600); font-size: .95rem; }
.center { text-align: center; }
.narrow { max-width: 720px; margin: 0 auto; }
.muted { color: var(--stone-600); }
.list { list-style: none; padding: 0; margin: 0 0 3rem; }
.list li { display: flex; gap: .75rem; margin: .75rem 0; }
.list span { color: var(--stone-400); }
.bg-white { background: #fff; }
.bg-stone { background: var(--stone-100); }
.bg-dark { background: var(--stone-900); color: #fff; }
.final-cta { padding: 5rem 1.25rem; text-align: center; }
.final-cta h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin: 0 0 1.5rem; }
.note { margin-top: 1rem; color: var(--stone-300); }
.gallery { display: grid; gap: 1.25rem; max-width: 1280px; margin: 0 auto; }
.gallery .item { aspect-ratio: 4/3; overflow: hidden; border-radius: 8px; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery .item:hover img { transform: scale(1.05); }
.split { display: grid; gap: 2rem; }
.page-title { font-size: clamp(2rem, 4vw, 3rem); text-align: center; margin: 0 0 1rem; }
.site-footer { background: var(--stone-950); color: var(--stone-400); padding: 3rem 1.25rem; font-size: .9rem; }
.footer-grid { display: grid; gap: 2rem; max-width: 1280px; margin: 0 auto; }
.site-footer img { height: 52px; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.site-footer .label { color: #fff; margin-bottom: .4rem; }
.site-footer a:hover { color: #fff; }

@media (min-width: 1024px) {
  .nav { display: flex; }
  .menu-toggle { display: none; }
  .mobile-nav { display: none !important; }
  .cards { grid-template-columns: repeat(5, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .footer-grid, .split { grid-template-columns: repeat(3, 1fr); }
  .split.two { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .cards, .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

.prose h2 { font-size: 1.65rem; margin: 2.25rem 0 0.75rem; font-weight: 500; }
.prose h3 { font-size: 1.2rem; margin: 1.5rem 0 0.5rem; font-weight: 500; }
.prose p { color: var(--stone-600); margin: 0 0 1rem; }
.faq { max-width: 720px; margin: 0 auto; }
.faq details {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: 8px;
  padding: 1rem 1.15rem;
  margin: 0.65rem 0;
}
.faq summary { cursor: pointer; font-weight: 500; }
.faq details p { margin: 0.75rem 0 0; color: var(--stone-600); }
.area-grid { display: grid; gap: 1.25rem; max-width: 1280px; margin: 0 auto; }
.area-card {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: 8px;
  padding: 1.5rem;
}
.area-card h3 { margin: 0 0 0.5rem; }
.area-card p { margin: 0; color: var(--stone-600); }
.crumbs { font-size: 0.85rem; color: var(--stone-500); margin-bottom: 1.25rem; }
.crumbs a:hover { color: var(--stone-800); }
@media (min-width: 768px) {
  .area-grid { grid-template-columns: repeat(2, 1fr); }
}

.lead-form {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: 10px;
  padding: 1.75rem;
  margin: 2rem 0 0;
  text-align: left;
}
.lead-form label { display: block; font-size: 0.9rem; font-weight: 500; margin: 0.9rem 0 0.35rem; }
.lead-form input, .lead-form textarea, .lead-form select {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--stone-200);
  border-radius: 6px;
  font: inherit;
  background: var(--stone-50);
}
.lead-form input:focus, .lead-form textarea:focus {
  outline: 2px solid var(--stone-800);
  background: #fff;
}
.lead-form .row { display: grid; gap: 1rem; }
.lead-form .hint { font-size: 0.8rem; color: var(--stone-500); font-weight: 400; }
.lead-form .hp { position: absolute; left: -9999px; }
@media (min-width: 700px) {
  .lead-form .row.two { grid-template-columns: 1fr 1fr; }
}

.reviews { display: grid; gap: 1.25rem; max-width: 1280px; margin: 0 auto; }
.review {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: 8px;
  padding: 1.35rem 1.4rem;
}
.review .stars { letter-spacing: 0.08em; margin: 0 0 0.65rem; }
.review p { margin: 0 0 0.85rem; color: var(--stone-700); font-size: 0.95rem; }
.review .who { font-size: 0.82rem; color: var(--stone-500); }
@media (min-width: 768px) {
  .reviews { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .reviews { grid-template-columns: repeat(3, 1fr); }
}
