/* Hallmark · macrostructure: Appointment Notebook · tone: practical salon calm · anchor hue: olive cream */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --paper: #F5F1E8;
  --paper-2: #E8E0D1;
  --ink: #24211C;
  --muted: #72695F;
  --olive: #536145;
  --olive-dark: #303B29;
  --line: #D4C9BA;
  --white: #FFFDF8;
  --display: 'Fraunces', Georgia, serif;
  --body: 'Inter', system-ui, sans-serif;
  --r-sm: 7px;
  --r-md: 16px;
  --r-lg: 28px;
  --ease: cubic-bezier(.16,1,.3,1);
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  overscroll-behavior-y: none;
  background: var(--paper);
}
body {
  min-width: 0;
  overflow-x: clip;
  overscroll-behavior-y: none;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(16px, 5vw, 72px);
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
  backdrop-filter: blur(14px);
}
.brand,
.nav { display: flex; align-items: center; }
.brand { gap: 11px; font-weight: 650; }
.brand-mark {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--olive-dark);
  font-family: var(--display);
}
.nav { gap: clamp(14px, 3vw, 32px); color: var(--muted); font-size: 14px; }
.nav a { transition: color .18s var(--ease); }
.nav a:hover { color: var(--olive-dark); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(280px, 1.12fr);
  gap: clamp(34px, 6vw, 92px);
  min-height: calc(100svh - 67px);
  align-items: center;
  padding: clamp(56px, 7vw, 110px) clamp(16px, 5vw, 88px) clamp(56px, 8vw, 120px);
}
.hero-copy { max-width: 650px; }
.kicker {
  color: var(--olive);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}
h1,h2,h3 { font-family: var(--display); font-style: normal; letter-spacing: 0; }
h1 {
  margin-top: 18px;
  font-size: clamp(42px, 7vw, 84px);
  line-height: .98;
  font-weight: 650;
  text-wrap: balance;
  overflow-wrap: anywhere;
}
.hero-copy > p:not(.kicker) {
  margin-top: 24px;
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 19px);
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 650;
  transition: transform .24s var(--ease), background .24s var(--ease), border-color .24s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.primary { color: var(--paper); background: var(--olive-dark); }
.secondary { border: 1px solid var(--line); background: var(--white); color: var(--ink); }
.secondary:hover { border-color: var(--olive); }

.hero-board {
  position: relative;
  min-height: 560px;
}
.image,
.note-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-2);
}
.image-main {
  inset: 0 0 14% 11%;
  border-radius: 36px 36px 10px 36px;
}
.image-side {
  left: 0;
  bottom: 0;
  width: 39%;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  box-shadow: 0 22px 70px color-mix(in srgb, var(--ink) 14%, transparent);
}
.image img { width: 100%; height: 100%; object-fit: cover; }
.note-card {
  right: 3%;
  bottom: 2%;
  width: min(285px, 48%);
  padding: 22px;
  border-radius: var(--r-md);
  color: var(--paper);
  background: var(--olive-dark);
}
.note-card span { display: block; margin-bottom: 8px; color: color-mix(in srgb, var(--paper) 72%, transparent); font-size: 13px; }
.note-card strong { display: block; font-family: var(--display); font-size: 26px; line-height: 1.04; font-weight: 650; }
.note-card small { display: block; margin-top: 14px; color: color-mix(in srgb, var(--paper) 68%, transparent); }

.services,
.booking,
.contact { padding: clamp(56px, 7vw, 112px) clamp(16px, 5vw, 88px); }
.services { background: var(--paper-2); border-block: 1px solid var(--line); }
.section-head { display: grid; grid-template-columns: .35fr 1fr; gap: 32px; align-items: start; }
.section-head h2,
.booking h2,
.contact h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.04;
  max-width: 850px;
  text-wrap: balance;
}
.service-list { margin-top: 54px; display: grid; border-top: 1px solid var(--line); }
.service-list article {
  display: grid;
  grid-template-columns: minmax(160px, 260px) minmax(0, 1fr);
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.service-list span { color: var(--olive-dark); font-family: var(--display); font-size: clamp(26px, 3vw, 40px); line-height: 1; }
.service-list p { color: var(--muted); max-width: 720px; }

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.proof-strip div { padding: 30px clamp(16px, 4vw, 56px); border-right: 1px solid var(--line); }
.proof-strip div:last-child { border-right: 0; }
.proof-strip strong { display: block; color: var(--olive-dark); font-family: var(--display); font-size: clamp(28px, 4vw, 46px); line-height: 1; }
.proof-strip span { display: block; margin-top: 8px; color: var(--muted); font-size: 14px; }

.booking {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}
.booking figure { aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--paper-2); }
.booking figure img { width: 100%; height: 100%; object-fit: cover; }
.booking-copy p:not(.kicker) { margin-top: 24px; color: var(--muted); max-width: 620px; font-size: 17px; }
.text-link { display: inline-block; margin-top: 24px; color: var(--olive-dark); font-weight: 700; border-bottom: 1px solid var(--olive); }

.contact {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: 28px;
  background: var(--paper-2);
}
.contact-card,
.map-wrap { border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--paper); }
.contact-card { padding: clamp(24px, 4vw, 48px); }
dl { margin-top: 30px; display: grid; gap: 22px; }
dt { color: var(--ink); font-weight: 700; margin-bottom: 4px; }
dd { color: var(--muted); }
dd small { color: color-mix(in srgb, var(--muted) 75%, transparent); }
dd a { color: var(--olive-dark); border-bottom: 1px solid color-mix(in srgb, var(--olive) 45%, transparent); }
.map-wrap { overflow: hidden; min-height: 420px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: grayscale(.15) contrast(.98); }

.footer { padding: 24px clamp(16px, 5vw, 88px); color: color-mix(in srgb, var(--paper) 78%, transparent); background: var(--olive-dark); font-size: 14px; }
.footer a { color: var(--paper); border-bottom: 1px solid color-mix(in srgb, var(--paper) 35%, transparent); }

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { scroll-behavior: auto !important; transition-duration: 120ms !important; animation-duration: 120ms !important; }
}
@media (max-width: 920px) {
  .topbar { flex-direction: column; align-items: flex-start; }
  .nav { width: 100%; justify-content: space-between; }
  .hero,
  .booking,
  .contact { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-board { min-height: 500px; }
  .section-head { grid-template-columns: 1fr; gap: 12px; }
  .proof-strip { grid-template-columns: 1fr; }
  .proof-strip div { border-right: 0; border-bottom: 1px solid var(--line); }
}
@media (max-width: 620px) {
  .topbar { position: static; padding: 16px; }
  .nav { font-size: 13px; }
  .hero,.services,.booking,.contact { padding-left: 16px; padding-right: 16px; }
  h1 { font-size: clamp(38px, 13vw, 58px); }
  .actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; min-height: 48px; }
  .hero-board { min-height: 385px; }
  .image-main { inset: 0 0 18% 0; border-radius: 24px 24px 8px 24px; }
  .image-side { width: 44%; left: 5%; }
  .note-card { width: 62%; right: 0; padding: 16px; }
  .note-card strong { font-size: 20px; }
  .service-list article { grid-template-columns: 1fr; gap: 9px; }
  .booking figure { aspect-ratio: 5 / 4; }
  .map-wrap,.map-wrap iframe { min-height: 340px; }
  .footer { font-size: 13px; }
}
