* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }

.container { width: min(1100px, calc(100% - 40px)); margin: 0 auto; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: var(--display); letter-spacing: -0.03em; line-height: 1.05; }
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); margin: 0 0 18px; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin: 0 0 14px; }
h3 { font-size: 1.15rem; margin: 0 0 8px; }
p { color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  background: var(--brand);
  color: #fff;
  cursor: pointer;
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-on-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-row { display: flex; flex-wrap: wrap; gap: 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(243, 246, 245, 0.9);
  backdrop-filter: blur(14px);
}
.header-inner {
  position: relative;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--brand);
}
.nav { margin-left: auto; display: flex; gap: 20px; color: var(--muted); }
.header-cta { margin-left: 4px; }
.nav a[aria-current="page"] { color: var(--text); font-weight: 700; }
.menu-toggle {
  display: none;
  margin-left: auto;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span { display: block; width: 18px; height: 2px; background: var(--text); }

.hero,
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  background: var(--hero-image) center/cover no-repeat;
}
.hero { min-height: min(82vh, 720px); padding: 72px 0; }
.page-hero { min-height: 280px; padding: 56px 0; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(8, 18, 16, 0.78) 0%, rgba(8, 18, 16, 0.4) 48%, rgba(8, 18, 16, 0.14) 100%);
}
.hero-copy,
.page-hero .container { position: relative; z-index: 1; max-width: 720px; }
.hero .eyebrow,
.page-hero .eyebrow { color: #b7ece4; }
.hero h1,
.page-hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4.6vw, 3.8rem);
  text-shadow: 0 10px 36px rgba(0, 0, 0, 0.28);
}
.hero .lead,
.page-hero .lead {
  max-width: 42ch;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.86);
}

.section { padding: 72px 0; }
.section-intro { max-width: 42em; }

.service-grid,
.team-grid,
.review-grid,
.hours-grid,
.gallery {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}
.service-grid { grid-template-columns: repeat(4, 1fr); }
.review-grid { grid-template-columns: repeat(3, 1fr); }
.team-grid { grid-template-columns: repeat(3, 1fr); }
.hours-grid { grid-template-columns: 1fr 1fr; align-items: start; }
.gallery { grid-template-columns: repeat(4, 1fr); }

.card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(16, 34, 31, 0.08);
}
.card .btn { margin-top: 12px; }
.card p:last-child { margin-bottom: 0; }
.dot {
  width: 10px;
  height: 10px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--brand);
}
.meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.9rem;
}
.price-tag {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--text);
}

.steps {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.steps li { padding: 24px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.steps span {
  display: block;
  margin-bottom: 12px;
  color: var(--brand);
  font-weight: 800;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.split-visual {
  min-height: 420px;
  border-radius: 28px;
  background: var(--about-image) center/cover no-repeat;
}
.check { list-style: none; padding: 0; display: grid; gap: 14px; }
.check li { padding-left: 18px; border-left: 2px solid var(--brand); }

.cta-band { padding: 8px 0 72px; }
.cta-band .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  border-radius: 24px;
  background: var(--brand);
  color: #fff;
}
.cta-band h2 { margin: 0 0 8px; }
.cta-band p { color: rgba(255,255,255,0.82); margin: 0; }
.cta-band .btn { background: #fff; color: var(--brand); }

.portrait {
  height: 220px;
  margin: -24px -24px 18px;
  border-radius: 22px 22px 0 0;
  background: var(--about-image) center/cover no-repeat;
}
.team-card:nth-child(2) .portrait { background-image: var(--work-image); }
.team-card:nth-child(3) .portrait { background-image: var(--gallery-4); }

.tile {
  min-height: 180px;
  border-radius: 18px;
  background: var(--gallery-1) center/cover no-repeat;
}
.tile:nth-child(2) { background-image: var(--gallery-2); }
.tile:nth-child(3) { background-image: var(--gallery-3); }
.tile:nth-child(4) { background-image: var(--gallery-4); }

.hours-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.faq { display: grid; gap: 10px; margin-top: 24px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 0;
  background: none;
  text-align: left;
  font-weight: 700;
}
.faq-item button::after { content: "+"; color: var(--brand); }
.faq-item.is-open button::after { content: "–"; }
.faq-item p { display: none; margin: 0; padding: 0 18px 16px; }
.faq-item.is-open p { display: block; }

.book {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: start;
}
.cal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.cal-head h2 { margin: 0; font-size: 1.4rem; text-transform: capitalize; }
.cal-nav { display: flex; gap: 8px; }
.cal-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg);
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.cal-wd {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.cal-day {
  aspect-ratio: 1;
  border: 0;
  border-radius: 12px;
  background: var(--bg);
  font-weight: 700;
  cursor: pointer;
}
.cal-day.is-empty { background: transparent; }
.cal-day.is-off,
.cal-day:disabled {
  opacity: 1;
  color: #9aa8a5;
  background: transparent;
  cursor: default;
}
.cal-day.is-on,
.slot.is-on {
  background: var(--brand);
  color: #fff;
}
.slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
}
.slot {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg);
  font-weight: 700;
}
.book-ok {
  grid-column: 1 / -1;
  padding: 48px 32px;
  text-align: center;
}
.book-ok h2 { margin-bottom: 10px; }

.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 28px; }
.contact-form,
.book-form {
  display: grid;
  gap: 12px;
}
.contact-form label,
.book-form label { display: grid; gap: 6px; font-size: 0.92rem; }
.contact-form input,
.contact-form textarea,
.book-form input,
.book-form textarea,
.book-form select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg);
}

.site-footer {
  padding: 48px 0 24px;
  background: var(--brand-dark);
  color: #fff;
}
.site-footer p, .site-footer a { color: #b7c5c2; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 24px; }
.footer-cta {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 800px) {
  .nav {
    display: none;
    position: absolute;
    inset: 72px 20px auto;
    padding: 16px;
    background: #fff;
    border-radius: 14px;
    flex-direction: column;
  }
  .nav.open { display: flex; }
  .site-header .menu-toggle { display: flex !important; }
  .header-cta { display: none; }
  .hero { min-height: 70vh; padding: 40px 0 48px; }
  .hero-copy { max-width: none; }
  .service-grid,
  .team-grid,
  .review-grid,
  .hours-grid,
  .gallery,
  .steps,
  .split-grid,
  .contact-grid,
  .footer-grid,
  .book { grid-template-columns: 1fr; }
  .cta-band .container { flex-direction: column; align-items: flex-start; }
  .split-visual { min-height: 260px; }
}

@media (max-width: 1100px) and (min-width: 801px) {
  .service-grid { grid-template-columns: 1fr 1fr; }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

.fab-calendar {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 0;
  background: var(--brand);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(15, 118, 110, 0.35);
  animation: fab-in 0.6s ease 0.4s both;
}
.fab-calendar:hover { transform: scale(1.06); }
@keyframes fab-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal[hidden] { display: none; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 34, 31, 0.45);
  backdrop-filter: blur(6px);
}
.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  max-height: min(92vh, 820px);
  overflow: auto;
  padding: 28px 24px 24px;
  border-radius: 28px 28px 18px 18px;
  background: var(--surface);
  box-shadow: 0 24px 60px rgba(16, 34, 31, 0.18);
  animation: modal-up 0.35s ease;
}
@keyframes modal-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  background: none;
  font-size: 1.6rem;
  color: var(--muted);
  cursor: pointer;
}
.modal-lead { margin: 0 0 18px; }
.modal .cal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.modal .cal-head h3 {
  margin: 0;
  font-size: 1.2rem;
  text-transform: capitalize;
}
.modal .cal-head button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg);
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.cal-wd {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
}
.cal-day {
  aspect-ratio: 1;
  border: 0;
  border-radius: 12px;
  background: var(--bg);
  font-weight: 700;
  cursor: pointer;
}
.cal-day.is-empty { background: transparent; }
.cal-day.is-off,
.cal-day:disabled {
  color: #9aa8a5;
  background: transparent;
  cursor: default;
}
.cal-day.is-on,
.slot.is-on {
  background: var(--brand);
  color: #fff;
}
.cal-day-label {
  margin: 18px 0 0;
  font-size: 0.92rem;
}
.slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.slot {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg);
  font-weight: 700;
  cursor: pointer;
}
[hidden] { display: none !important; }
.book-form,
.book-ok { display: grid; gap: 12px; }
.book-form label { display: grid; gap: 6px; font-size: 0.92rem; }
.book-form input,
.book-form select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg);
}
.book-ok { text-align: center; padding: 12px 0 8px; }
.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(16, 34, 31, 0.06);
}

@media (max-width: 480px) {
  .fab-calendar { right: 16px; bottom: 16px; }
}
