*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, p, form { margin: 0; }
button, input, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

:root {
  --bg: #fbf8f2;
  --panel: #f3efe4;
  --ink: #2e2a24;
  --muted: color-mix(in srgb, var(--ink) 68%, transparent);
  --sage: #7c8f7a;
  --sage-deep: #5e6f5c;
  --coral: #c17a5a;
  --line: #e6ded2;

  --font-display: "Petrona", serif;
  --font-body: "Work Sans", sans-serif;
  --max: 1140px;
  --gutter: clamp(20px, 5vw, 56px);
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
:focus-visible { outline: 2px solid var(--coral); outline-offset: 2px; }

main > section, .nav { max-width: var(--max); margin: 0 auto; padding-inline: var(--gutter); }

/* ---------- nav ---------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 20px;
}
.nav__brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 22px; }
.nav__mark { width: 30px; height: 30px; border-radius: 9px; background: var(--sage); position: relative; flex: none; }
.nav__mark::before, .nav__mark::after {
  content: "";
  position: absolute;
  background: var(--bg);
  border-radius: 2px;
}
.nav__mark::before { width: 3px; height: 16px; top: 7px; left: 13.5px; }
.nav__mark::after { width: 16px; height: 3px; top: 13.5px; left: 7px; }
.nav__links { display: flex; align-items: center; gap: clamp(14px, 3vw, 28px); font-weight: 500; font-size: 15px; }
.nav__links a:not(.btn):hover { color: var(--sage-deep); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s ease;
}
.btn--small { padding: 10px 18px; font-size: 14px; }
.btn--primary { background: var(--coral); color: var(--bg); }
.btn--primary:hover { background: color-mix(in srgb, var(--coral) 88%, black); }
.btn--ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--sage); }
.btn:active { transform: translateY(1px); }

/* ---------- hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  padding-block: clamp(40px, 7vw, 88px);
}
.hero__badge {
  display: inline-block;
  background: var(--sage);
  color: var(--bg);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(38px, 5.2vw, 60px);
  line-height: 1.08;
}
.hero__sub { margin-top: 20px; font-size: 17px; color: var(--muted); max-width: 46ch; }
.hero__actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

.hero__visual { position: relative; height: 340px; }
.visual__blob {
  position: absolute;
  inset: 0;
  background: var(--panel);
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
}
.visual__card {
  position: relative;
  z-index: 1;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px -12px rgba(46, 42, 36, 0.18);
}
.visual__card--1 { margin-top: 20px; margin-inline-start: 10%; max-width: 260px; }
.visual__card--2 { margin-top: 24px; margin-inline-start: 40%; max-width: 200px; flex-direction: column; align-items: flex-start; gap: 2px; }
.visual__card strong { font-family: var(--font-display); font-size: 17px; display: block; }
.visual__card--2 strong { font-size: 28px; }
.visual__card span { font-size: 13px; color: var(--muted); }
.visual__dot { width: 10px; height: 10px; border-radius: 999px; background: #6fae6f; flex: none; }

/* ---------- section shared ---------- */
.section-eyebrow { color: var(--coral); font-weight: 600; font-size: 14px; margin-bottom: 10px; }
.services h2, .team h2, .book__intro h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 38px);
  max-width: 20ch;
  margin-bottom: 36px;
}

/* ---------- services ---------- */
.services { padding-block: clamp(40px, 6vw, 72px); }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card { background: var(--panel); border-radius: 18px; padding: 24px; }
.service-card__icon { width: 40px; height: 40px; border-radius: 12px; margin-bottom: 16px; }
.service-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 18px; margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: 14px; }

/* ---------- team ---------- */
.team { padding-block: clamp(40px, 6vw, 72px); }
.team__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card { text-align: center; }
.team-card__avatar {
  width: 76px;
  height: 76px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  margin: 0 auto 14px;
}
.team-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 17px; }
.team-card p { color: var(--muted); font-size: 14px; margin-top: 2px; }

/* ---------- booking ---------- */
.book { padding-block: clamp(40px, 6vw, 80px); display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(24px, 5vw, 56px); }
.book__intro p { margin-top: 16px; color: var(--muted); max-width: 34ch; }
.booking-card { background: var(--panel); border-radius: 22px; padding: clamp(24px, 3vw, 34px); }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 0; }
.field-row .field { margin-bottom: 18px; }
.field label { font-weight: 600; font-size: 14px; }
.field input, .field select {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 15px;
}
.field input:focus, .field select:focus { border-color: var(--sage); }
.time-slots { display: flex; flex-wrap: wrap; gap: 8px; }
.time-slot {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.time-slot.is-selected { background: var(--sage); border-color: var(--sage); color: var(--bg); }
.field-error { color: var(--coral); font-size: 13px; margin-top: 8px; }
.booking-card__submit { width: 100%; margin-top: 6px; }
.booking-card__note { margin-top: 12px; font-size: 13px; color: var(--muted); text-align: center; }

.booking-confirm { text-align: center; padding: 20px 0; }
.booking-confirm__check {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--sage);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 18px;
}
.booking-confirm h3 { font-family: var(--font-display); font-weight: 600; font-size: 22px; margin-bottom: 10px; }
.booking-confirm p { color: var(--muted); margin-bottom: 20px; }

/* ---------- contact ---------- */
.contact { padding-block: clamp(40px, 6vw, 72px); display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; border-top: 1px solid var(--line); }
.contact__block h3 { font-family: var(--font-display); font-weight: 600; font-size: 18px; margin-bottom: 8px; }
.contact__block p { color: var(--muted); font-size: 15px; }

/* ---------- footer ---------- */
.footer { padding: 28px var(--gutter) 44px; border-top: 1px solid var(--line); }
.footer p { max-width: 64ch; margin: 0 auto; font-size: 14px; color: var(--muted); }
.footer a { color: var(--coral); text-decoration: underline; }

/* ---------- responsive ---------- */
@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; }
  .hero__visual { order: -1; height: 260px; }
  .services__grid, .team__grid { grid-template-columns: repeat(2, 1fr); }
  .book { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .nav__links { gap: 12px; font-size: 14px; }
}
@media (max-width: 560px) {
  .nav__links a:not(.btn) { display: none; }
  .services__grid, .team__grid { grid-template-columns: 1fr; }
}
