:root {
  --bg: #f6f3ee;
  --surface: #fefcf8;
  --ink: #1a1f1c;
  --ink-soft: #4a544f;
  --muted: #8a948f;
  --sage: #6b8e7f;
  --sage-dark: #3f5a4f;
  --sage-tint: #d8e4dd;
  --line: #e3ddd0;

  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;

  --r: 16px;
  --shadow: 0 30px 60px -30px rgba(26, 31, 28, 0.18);
}

* { -webkit-font-smoothing: antialiased; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
}

h1 { font-size: clamp(2.75rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: 1.35rem; font-weight: 500; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--sage);
}

/* Navbar */
.nav-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: all 0.3s ease;
}

.nav-bar.scrolled {
  background: rgba(246, 243, 238, 0.92);
  backdrop-filter: blur(12px);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.nav-brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav-brand .mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0 1rem;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--ink); }

.btn-cta {
  background: var(--ink);
  color: var(--bg);
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s;
}

.btn-cta:hover {
  background: var(--sage-dark);
  color: white;
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--ink);
  border: 1px solid var(--line);
  background: transparent;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s;
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bg);
}

/* Hero */
.hero {
  min-height: 92vh;
  padding: 9rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 10%; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--sage-tint) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.6;
}

.hero-content { position: relative; z-index: 1; }

.hero h1 {
  margin: 1.5rem 0 1.75rem;
  max-width: 14ch;
}

.hero h1 em {
  font-style: italic;
  color: var(--sage-dark);
  font-weight: 300;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-meta {
  display: flex;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  max-width: 540px;
}

.hero-meta div small {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.hero-meta div span {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ink);
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r);
  overflow: hidden;
  background: linear-gradient(135deg, var(--sage-tint), var(--sage));
  box-shadow: var(--shadow);
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=900&q=80');
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply;
  opacity: 0.92;
}

.float-card {
  position: absolute;
  background: var(--surface);
  padding: 1rem 1.25rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.float-card.fc-1 { bottom: 1.5rem; left: -1rem; }
.float-card.fc-2 { top: 2rem; right: -1rem; }

.float-card i {
  color: var(--sage);
  font-size: 1.2rem;
}

/* Sections */
section { padding: 6rem 0; position: relative; }

.section-head {
  margin-bottom: 4rem;
  max-width: 720px;
}

.section-head h2 { margin: 1rem 0 1.25rem; }

.section-head p {
  font-size: 1.05rem;
  color: var(--ink-soft);
}

/* Services grid */
.service {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 80px 1fr 200px;
  gap: 2rem;
  align-items: center;
  cursor: pointer;
  transition: padding 0.3s ease;
}

.service:last-child { border-bottom: 1px solid var(--line); }

.service:hover { padding-left: 1rem; }

.service-num {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--muted);
}

.service-body h3 { margin-bottom: 0.5rem; }

.service-body p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 0.95rem;
  max-width: 60ch;
}

.service-arrow {
  text-align: right;
  color: var(--sage);
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.service:hover .service-arrow { transform: translateX(8px); }

@media (max-width: 768px) {
  .service {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .service-arrow { display: none; }
}

/* About */
.about {
  background: var(--surface);
}

.about-img {
  aspect-ratio: 4/5;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--sage-tint);
  position: relative;
}

.about-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.skill-pill {
  display: inline-block;
  padding: 0.45rem 1rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin: 0.25rem 0.25rem 0.25rem 0;
  transition: all 0.2s;
}

.skill-pill:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

/* Hours */
.cabinet {
  background: var(--surface);
  padding: 2.25rem;
  border-radius: var(--r);
  border: 1px solid var(--line);
  height: 100%;
}

.cabinet-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.cabinet-head h3 { margin-bottom: 0.4rem; }

.cabinet-head .addr {
  font-size: 0.88rem;
  color: var(--muted);
}

.cabinet-head .pin {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sage-tint);
  color: var(--sage-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.hour-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.92rem;
}

.hour-row .day { color: var(--ink); }
.hour-row .time { color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.hour-row.off .time { color: var(--muted); }

/* Testimonials */
.quote {
  padding: 0;
}

.quote-body {
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 2rem;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.9rem;
}

.quote-author .av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sage);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
}

.quote-author .name {
  color: var(--ink);
  font-weight: 500;
}

.quote-author .stars {
  color: #c9986a;
  font-size: 0.78rem;
}

/* CTA */
.cta {
  background: var(--ink);
  color: var(--bg);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(107, 142, 127, 0.3), transparent 70%);
  border-radius: 50%;
}

.cta h2 {
  color: var(--bg);
  margin-bottom: 0.5rem;
}

.cta .eyebrow {
  color: var(--sage-tint);
}

.cta .eyebrow::before { background: var(--sage-tint); }

.cta-phone {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--bg);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  transition: color 0.2s;
}

.cta-phone:hover { color: var(--sage-tint); }

.cta-phone i { color: var(--sage-tint); font-size: 1.5rem; }

.btn-cta-light {
  background: var(--bg);
  color: var(--ink);
  border: none;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s;
}

.btn-cta-light:hover {
  background: var(--sage-tint);
  transform: translateY(-1px);
}

/* Contact */
.contact-form {
  background: var(--surface);
  padding: 2.5rem;
  border-radius: var(--r);
  border: 1px solid var(--line);
}

.form-control, .form-select {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: var(--ink);
  transition: all 0.2s;
}

.form-control:focus, .form-select:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(107, 142, 127, 0.15);
  background: white;
}

.form-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

/* Footer */
footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 3rem 0 1.5rem;
}

footer h5 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
  font-weight: 600;
}

footer a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

footer a:hover { color: var(--ink); }

.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}

.social {
  display: flex;
  gap: 0.5rem;
}

.social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}

.social a:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--ink);
}

@media (max-width: 991px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--surface);
    flex-direction: column;
    padding: 1rem;
    border-top: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 0; margin: 0; }
  .nav-cta-wrap { display: none; }
  .hero { padding: 7rem 0 3rem; min-height: auto; }
  .hero-meta { gap: 1.5rem; flex-wrap: wrap; }
  .hero-visual { margin-top: 3rem; max-width: 480px; margin-inline: auto; }
  section { padding: 4rem 0; }
  .float-card.fc-1 { left: -0.5rem; }
  .float-card.fc-2 { right: -0.5rem; }
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: all 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
