:root {
  --paper: #fbfaf6;
  --paper-deep: #f1eee5;
  --ink: #262c27;
  --muted: #687068;
  --line: #d8d8cd;
  --sage: #9eae93;
  --forest: #365044;
  --forest-dark: #20392f;
  --warm: #e9ddcb;
  --serif: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", Georgia, serif;
  --sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.8;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.sample-notice {
  padding: 7px 20px;
  background: var(--forest-dark);
  color: #fff;
  text-align: center;
  font-size: 12px;
  letter-spacing: .06em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  backdrop-filter: blur(12px);
}
.header-inner {
  width: min(var(--max), calc(100% - 48px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--serif); font-size: 27px; letter-spacing: .05em; }
.brand-sub { margin-top: 7px; color: var(--muted); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.nav-list { display: flex; align-items: center; gap: 28px; list-style: none; padding: 0; margin: 0; font-size: 13px; letter-spacing: .04em; }
.nav-list a:not(.button):hover, .nav-list a:not(.button)[aria-current="page"] { border-bottom: 1px solid var(--forest); color: var(--forest); }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--ink); font-size: 23px; cursor: pointer; }

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 20px;
  border: 1px solid var(--forest);
  color: #fff;
  background: var(--forest);
  font-size: 13px;
  letter-spacing: .06em;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.button:hover { background: var(--forest-dark); transform: translateY(-1px); }
.button--light { border-color: var(--ink); background: transparent; color: var(--ink); }
.button--light:hover { background: var(--ink); color: #fff; }
.button--small { min-height: 40px; padding: 7px 14px; font-size: 12px; }
.arrow { font-size: 17px; line-height: 1; }

.container { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.eyebrow { margin: 0 0 14px; color: var(--forest); font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.section { padding: 120px 0; }
.section--paper-deep { background: var(--paper-deep); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 48px; align-items: end; margin-bottom: 54px; }
.display { margin: 0; font-family: var(--serif); font-size: clamp(39px, 5vw, 76px); font-weight: 400; letter-spacing: -.045em; line-height: 1.15; }
.lead { max-width: 500px; margin: 0; color: #4d554e; }
.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }

.hero { min-height: 670px; position: relative; overflow: hidden; background: #dcd6c9; }
.hero img { width: 100%; height: 670px; object-fit: cover; object-position: center; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(30, 37, 31, .48) 0%, rgba(30,37,31,.14) 48%, transparent 76%); }
.hero-copy { position: absolute; z-index: 1; top: 50%; left: max(24px, calc((100% - var(--max)) / 2)); width: min(650px, calc(100% - 48px)); transform: translateY(-50%); color: #fff; }
.hero-copy .eyebrow { color: #f8f6ef; }
.hero-title { margin: 0 0 23px; font-family: var(--serif); font-size: clamp(48px, 5.6vw, 72px); font-weight: 400; letter-spacing: -.06em; line-height: 1.12; }
.hero-line { display: block; white-space: nowrap; }
.hero-text { max-width: 410px; margin: 0 0 32px; font-size: 16px; }
.hero .button { border-color: #fff; background: #fff; color: var(--forest-dark); }
.hero .button:hover { background: var(--warm); }

.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.intro-copy { max-width: 485px; }
.intro-copy p { margin: 0 0 20px; }
.note-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.note { min-height: 140px; padding: 23px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.note:nth-child(even) { border-right: 0; }
.note-number { color: var(--sage); font-family: var(--serif); font-size: 26px; }
.note h3 { margin: 8px 0 0; font-size: 14px; font-weight: 600; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.service-card { min-height: 286px; padding: 30px 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-card:last-child { border-right: 0; }
.service-card h3 { margin: 42px 0 10px; font-family: var(--serif); font-size: 28px; font-weight: 400; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; }
.service-card .price { display: block; margin-top: 20px; color: var(--forest); font-size: 12px; letter-spacing: .08em; }

.appointment-band { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 50px; padding: 76px 0; }
.appointment-band p { max-width: 490px; margin: 18px 0 0; }
.appointment-action { justify-self: end; display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.fine-print { color: var(--muted); font-size: 11px; line-height: 1.6; }

.page-hero { padding: 105px 0 72px; border-bottom: 1px solid var(--line); }
.page-hero .display { max-width: 780px; }
.page-hero p:last-child { max-width: 570px; margin: 22px 0 0; color: var(--muted); }
.menu-list { border-top: 1px solid var(--line); }
.menu-row { display: grid; grid-template-columns: 1.2fr 2fr .7fr; gap: 30px; padding: 30px 0; border-bottom: 1px solid var(--line); align-items: center; }
.menu-row h2 { margin: 0; font-family: var(--serif); font-size: 27px; font-weight: 400; }
.menu-row p { margin: 0; color: var(--muted); font-size: 14px; }
.menu-row strong { justify-self: end; color: var(--forest); font-size: 14px; font-weight: 500; }
.staff-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.staff-card { padding: 35px 0; display: grid; grid-template-columns: 130px 1fr; gap: 28px; border-bottom: 1px solid var(--line); }
.staff-card:nth-child(odd) { padding-right: 34px; border-right: 1px solid var(--line); }
.staff-card:nth-child(even) { padding-left: 34px; }
.staff-mark { aspect-ratio: 1; display: grid; place-items: center; background: var(--warm); color: var(--forest); font-family: var(--serif); font-size: 39px; }
.staff-card h2 { margin: 8px 0 7px; font-family: var(--serif); font-size: 29px; font-weight: 400; }
.staff-card p { margin: 0; color: var(--muted); font-size: 14px; }
.staff-role { color: var(--forest); font-size: 11px; letter-spacing: .11em; text-transform: uppercase; }
.info-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; }
.info-grid h2 { margin: 0 0 16px; font-family: var(--serif); font-size: 36px; font-weight: 400; }
.info-grid p { margin: 0 0 16px; color: var(--muted); }
.hours { padding: 0; margin: 0; list-style: none; border-top: 1px solid var(--line); }
.hours li { display: flex; justify-content: space-between; gap: 30px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.booking-panel { max-width: 760px; margin: 0 auto; padding: 52px; background: var(--paper-deep); text-align: center; }
.booking-panel h2 { margin: 0 0 14px; font-family: var(--serif); font-size: 44px; font-weight: 400; }
.booking-panel p { max-width: 530px; margin: 0 auto 26px; color: var(--muted); }
.booking-panel .button { min-width: 245px; }
.booking-panel .fine-print { margin-top: 20px; }
.demo-form { max-width: 760px; margin: 55px auto 0; padding: 40px; border: 1px solid var(--line); }
.demo-form h2 { margin: 0 0 9px; font-family: var(--serif); font-size: 28px; font-weight: 400; }
.demo-form p { margin: 0; color: var(--muted); font-size: 14px; }
.demo-form .button { margin-top: 22px; }

.site-footer { padding: 64px 0 30px; background: var(--forest-dark); color: #f9f8f3; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 40px; padding-bottom: 52px; }
.site-footer .brand-sub, .site-footer p { color: #cbd4c9; }
.site-footer p { max-width: 300px; margin: 16px 0 0; font-size: 13px; }
.footer-heading { margin: 0 0 12px; color: #cbd4c9; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.footer-links { padding: 0; margin: 0; list-style: none; }
.footer-links li { margin-bottom: 8px; font-size: 13px; }
.footer-links a:hover { text-decoration: underline; }
.footer-bottom { padding-top: 22px; border-top: 1px solid rgba(255,255,255,.22); color: #cbd4c9; font-size: 11px; }

@media (max-width: 760px) {
  .header-inner, .container { width: min(100% - 32px, var(--max)); }
  .header-inner { min-height: 66px; }
  .brand-name { font-size: 23px; }
  .menu-toggle { display: block; }
  .nav-list { display: none; position: absolute; top: 66px; right: 0; left: 0; padding: 18px 16px 22px; flex-direction: column; align-items: stretch; gap: 13px; border-bottom: 1px solid var(--line); background: var(--paper); }
  .nav-list.is-open { display: flex; }
  .nav-list a { display: block; padding: 7px 0; }
  .nav-list .button { display: flex; margin-top: 6px; padding: 10px 14px; }
  .section { padding: 78px 0; }
  .section-heading, .intro-grid, .info-grid, .appointment-band { grid-template-columns: 1fr; gap: 26px; }
  .section-heading { margin-bottom: 36px; }
  .hero, .hero img { min-height: 620px; height: 620px; }
  .hero::after { background: linear-gradient(90deg, rgba(30,37,31,.56), rgba(30,37,31,.11)); }
  .hero-title { font-size: clamp(38px, 11vw, 46px); letter-spacing: -.075em; }
  .hero-copy { left: 16px; width: calc(100% - 32px); }
  .note-list, .service-grid { grid-template-columns: 1fr; }
  .note, .note:nth-child(even), .service-card, .service-card:last-child { border-right: 0; }
  .service-card { min-height: 200px; }
  .service-card h3 { margin-top: 20px; }
  .appointment-action { justify-self: start; }
  .page-hero { padding: 74px 0 54px; }
  .menu-row { grid-template-columns: 1fr; gap: 8px; }
  .menu-row strong { justify-self: start; }
  .staff-grid { grid-template-columns: 1fr; }
  .staff-card, .staff-card:nth-child(odd), .staff-card:nth-child(even) { padding: 26px 0; border-right: 0; }
  .booking-panel, .demo-form { padding: 34px 22px; }
  .booking-panel h2 { font-size: 35px; }
  .booking-panel .button { width: 100%; min-width: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
