:root {
  --paper: #faf7f0;
  --surface: #fffdf9;
  --ink: #383431;
  --muted: #6d645e;
  --rose: #9b514c;
  --rose-deep: #793f3c;
  --rose-soft: #e5b9b1;
  --sand: #efe3d6;
  --sand-light: #f6efe7;
  --sage: #708473;
  --sage-deep: #3f594d;
  --sage-soft: #dfe7df;
  --line: rgba(56, 52, 49, 0.16);
  --line-light: rgba(255, 255, 255, 0.34);
  --shadow-soft: 0 1.25rem 3.5rem rgba(72, 60, 50, 0.11);
  --shadow-card: 0 0.75rem 2.5rem rgba(72, 60, 50, 0.08);
  --radius-small: 0.75rem;
  --radius-medium: 1.5rem;
  --radius-large: 2.5rem;
  --radius-pill: 999px;
  --font-heading: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  --content-width: 74rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 1rem;
  line-break: strict;
  line-height: 1.85;
  overflow-wrap: break-word;
  text-wrap: pretty;
  word-break: normal;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-underline-offset: 0.22em;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
summary {
  font: inherit;
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-break: strict;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(1.65rem, 7.2vw, 3.25rem);
  line-height: 1.35;
  letter-spacing: 0.02em;
}

h3 {
  line-height: 1.55;
}

.keep-together {
  display: inline-block;
}

.desktop-break {
  display: none;
}

[id] {
  scroll-margin-top: 6rem;
}

:focus-visible {
	outline: 0.1875rem solid #fff;
	outline-offset: 0.1875rem;
	box-shadow: 0 0 0 0.4rem #382322;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  min-height: 2.75rem;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  color: #fff;
  background: var(--sage-deep);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 2.25rem), var(--content-width));
  margin-inline: auto;
}

.container--narrow {
  max-width: 60rem;
}

.section {
  padding-block: clamp(4.75rem, 13vw, 8.5rem);
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--rose-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.5;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: clamp(2.5rem, 8vw, 4.5rem);
}

.section-heading > p:last-child,
.concept-copy > p,
.flow-intro > p,
.owner-copy > p,
.access-copy > p {
  color: var(--muted);
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center > p:last-child {
  text-align: left;
}

.demo-notice {
  position: relative;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.75rem 1.125rem;
  color: #fff;
  background: var(--sage-deep);
  font-size: 0.72rem;
  line-height: 1.6;
}

.demo-notice p {
  margin: 0;
}

.demo-notice strong {
  display: block;
  margin-bottom: 0.1rem;
  color: #f5cbc3;
  letter-spacing: 0.1em;
}

.demo-notice a {
  align-self: flex-start;
  min-height: 2.75rem;
  padding-block: 0.5rem;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 247, 240, 0.95);
  -webkit-backdrop-filter: blur(1rem);
  backdrop-filter: blur(1rem);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: min(calc(100% - 2rem), 80rem);
  min-height: 4.25rem;
  margin-inline: auto;
}

.salon-brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.salon-brand {
  min-width: 0;
  margin-right: auto;
  text-decoration: none;
}

.salon-brand__mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 48% 52% 44% 56%;
  color: #fff;
  background: var(--sage-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1;
}

.salon-brand__name,
.footer-brand > span:last-child {
  display: grid;
  line-height: 1;
}

.salon-brand__name small,
.footer-brand small {
  font-size: 0.48rem;
  letter-spacing: 0.17em;
}

.salon-brand__name strong,
.footer-brand strong {
  margin-top: 0.2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  font-weight: 500;
}

.desktop-nav,
.header-reservation {
  display: none;
}

.mobile-nav {
  flex: 0 0 auto;
}

.mobile-nav > summary {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--sage-deep);
  background: var(--surface);
  cursor: pointer;
  list-style: none;
}

.mobile-nav > summary::-webkit-details-marker,
.faq-list summary::-webkit-details-marker,
.reservation-demo summary::-webkit-details-marker {
  display: none;
}

.mobile-nav > summary::marker,
.faq-list summary::marker,
.reservation-demo summary::marker {
  content: "";
}

.menu-icon {
  display: grid;
  gap: 0.25rem;
  width: 1.1rem;
}

.menu-icon i {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-nav[open] .menu-icon i:first-child {
  transform: translateY(0.3125rem) rotate(45deg);
}

.mobile-nav[open] .menu-icon i:nth-child(2) {
  opacity: 0;
}

.mobile-nav[open] .menu-icon i:last-child {
  transform: translateY(-0.3125rem) rotate(-45deg);
}

.mobile-nav > nav {
  position: absolute;
  top: calc(100% + 1px);
  right: 0;
  display: grid;
  width: min(21rem, calc(100vw - 2rem));
  max-height: calc(100vh - 6rem);
  padding: 0.75rem;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 0 0 var(--radius-medium) var(--radius-medium);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.mobile-nav > nav a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 2.9rem;
  padding: 0.45rem 0.75rem;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.mobile-nav > nav a span {
  color: var(--rose-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.68rem;
}

.mobile-nav > nav .mobile-nav__cta {
  justify-content: center;
  margin-top: 0.65rem;
  border: 0;
  border-radius: var(--radius-pill);
  color: #fff;
  background: var(--sage-deep);
}

.hero {
  display: flex;
  min-height: calc(100svh - 7rem);
  flex-direction: column;
  background: var(--surface);
}

.hero-photo {
  position: relative;
  min-height: clamp(20rem, 92vw, 32rem);
  margin: 0;
  overflow: hidden;
  background: var(--sand);
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 60%, rgba(44, 37, 32, 0.36));
  pointer-events: none;
}

.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.hero-photo__caption {
  position: absolute;
  z-index: 1;
  right: 1.125rem;
  bottom: 1rem;
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.hero-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3.5rem, 12vw, 6.5rem) max(1.125rem, calc((100vw - var(--content-width)) / 2));
  background:
    radial-gradient(circle at 15% 15%, rgba(229, 185, 177, 0.28), transparent 35%),
    var(--surface);
}

.hero h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(1.65rem, 6.8vw, 4rem);
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.hero-lead {
  max-width: 33rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions {
  display: grid;
  gap: 0.75rem;
  width: 100%;
  max-width: 26rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 3.35rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
}

.button--primary {
  color: #fff;
  background: var(--sage-deep);
  box-shadow: 0 0.75rem 1.75rem rgba(63, 89, 77, 0.2);
}

.button--quiet {
  border: 1px solid var(--sage-deep);
  color: var(--sage-deep);
  background: transparent;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.1rem;
  margin: 1.75rem 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.78rem;
  list-style: none;
}

.hero-features li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-features li::before {
  width: 0.45rem;
  height: 0.45rem;
  border: 1px solid var(--rose-deep);
  border-radius: 50%;
  content: "";
}

.concept {
  background: var(--surface);
}

.concept-grid {
  display: grid;
  gap: 3rem;
}

.concept-copy {
  max-width: 39rem;
}

.concept-copy > p {
  margin-bottom: 1.25rem;
}

.concept-copy blockquote {
  margin: 2.25rem 0 0;
  padding: 1.1rem 0 1.1rem 1.25rem;
  border-left: 2px solid var(--rose);
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 5vw, 1.45rem);
  line-height: 1.8;
}

.concept-photo {
  position: relative;
  margin-bottom: 0;
}

.concept-photo::before {
  position: absolute;
  z-index: 0;
  top: -1rem;
  right: -1rem;
  width: 45%;
  height: 50%;
  border-radius: 50% 50% 1.25rem 50%;
  background: var(--rose-soft);
  content: "";
}

.concept-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 9rem 9rem var(--radius-small) var(--radius-small);
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow-soft);
}

.concept-photo figcaption {
  position: relative;
  z-index: 2;
  max-width: calc(100% - 2rem);
  margin: -1.5rem auto 0;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-small);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-align: center;
}

.concept-points {
  display: grid;
  gap: 0.9rem;
  margin-top: 3.5rem;
}

.concept-points article {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: var(--paper);
}

.concept-points article > span {
  color: var(--rose-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.concept-points h3 {
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}

.concept-points p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.recommend {
  background: var(--sand-light);
}

.recommend-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.recommend-list li {
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr);
  align-items: center;
  gap: 0.9rem;
  min-height: 6.5rem;
  padding: 1.25rem;
  border-radius: var(--radius-medium);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.recommend-list span {
  color: var(--rose-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.menu-section {
  background: var(--surface);
}

.menu-grid {
  display: grid;
  gap: 1.25rem;
  max-width: 42rem;
  margin-inline: auto;
}

.menu-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: var(--paper);
  box-shadow: var(--shadow-card);
}

.menu-card > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.menu-card:nth-child(1) > img {
  object-position: 55% center;
}

.menu-card:nth-child(2) > img {
  object-position: 52% center;
}

.menu-card:nth-child(3) > img {
  object-position: 45% center;
}

.menu-card--featured {
  border-color: var(--rose);
}

.menu-card__badge {
  position: absolute;
  z-index: 2;
  top: 0.75rem;
  right: 0.75rem;
  margin: 0;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  color: #fff;
  background: var(--rose-deep);
  font-size: 0.7rem;
  font-weight: 700;
}

.menu-card__body {
  display: flex;
  min-height: 23rem;
  flex-direction: column;
  padding: 1.5rem;
}

.menu-card__en {
  margin-bottom: 0.15rem;
  color: var(--sage-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.73rem;
  letter-spacing: 0.12em;
}

.menu-card h3 {
  margin-bottom: 1rem;
  font-size: 1.45rem;
}

.menu-card__body > p:not(.menu-card__en, .menu-card__price) {
  color: var(--muted);
  font-size: 0.92rem;
}

.menu-card dl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: auto 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

.menu-card dd {
  margin-bottom: 0;
  font-weight: 700;
}

.menu-card__price {
  margin: 0.4rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.3;
  text-align: right;
}

.menu-card__price small {
  margin-left: 0.2rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
}

.menu-note {
  max-width: 42rem;
  margin: 1.25rem auto 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.flow-section {
  background: var(--sage-soft);
}

.flow-layout {
  display: grid;
  gap: 3rem;
}

.flow-intro img {
  width: 100%;
  margin-top: 2rem;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-large) var(--radius-small) var(--radius-large) var(--radius-small);
  object-fit: cover;
  object-position: 46% center;
  box-shadow: var(--shadow-card);
}

.flow-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: flow;
}

.flow-list li {
  position: relative;
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(63, 89, 77, 0.22);
}

.flow-list li:first-child {
  border-top: 1px solid rgba(63, 89, 77, 0.22);
}

.flow-list li > span {
  color: var(--rose-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.flow-list h3 {
  margin-bottom: 0.35rem;
  font-size: 1.08rem;
}

.flow-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.owner-section {
  background: var(--surface);
}

.owner-layout {
  display: grid;
  gap: 3rem;
}

.owner-photo {
  position: relative;
  margin-bottom: 0;
}

.owner-photo::before {
  position: absolute;
  right: -0.75rem;
  bottom: -0.75rem;
  width: 75%;
  height: 75%;
  border-radius: var(--radius-small) var(--radius-small) 8rem var(--radius-small);
  background: var(--sand);
  content: "";
}

.owner-photo img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 10rem 10rem var(--radius-small) var(--radius-small);
  object-fit: cover;
  object-position: 47% center;
  box-shadow: var(--shadow-soft);
}

.owner-photo figcaption {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-pill);
  color: var(--sage-deep);
  background: rgba(255, 253, 249, 0.88);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
}

.owner-copy dl {
  margin: 2rem 0 0;
  border-top: 1px solid var(--line);
}

.owner-copy dl div {
  display: grid;
  gap: 0.15rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.owner-copy dt {
  font-size: 0.82rem;
  font-weight: 700;
}

.owner-copy dd {
  margin-bottom: 0;
  color: var(--muted);
}

.gallery-section {
  background: var(--sand-light);
}

.gallery-grid {
  display: grid;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-medium);
  background: var(--sand);
  box-shadow: var(--shadow-card);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-item:nth-child(1) img {
  object-position: center;
}

.gallery-item:nth-child(2) img {
  object-position: 55% center;
}

.gallery-item:nth-child(3) img {
  object-position: 48% center;
}

.gallery-item::after {
  position: absolute;
  inset: 45% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(40, 34, 29, 0.66));
  pointer-events: none;
}

.gallery-item figcaption {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 0.85rem;
  left: 1rem;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
}

.faq-section {
  background: var(--surface);
}

.faq-layout {
  display: grid;
  gap: 1rem;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.5rem;
  min-height: 4.5rem;
  padding: 1.2rem 2.5rem 1.2rem 0;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.65;
  list-style: none;
}

.faq-list summary span {
  color: var(--rose-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 0.35rem;
  width: 0.65rem;
  height: 0.65rem;
  border-right: 1.5px solid var(--sage-deep);
  border-bottom: 1.5px solid var(--sage-deep);
  content: "";
  transform: translateY(-70%) rotate(45deg);
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.faq-list details > p {
  margin: 0;
  padding: 0 1rem 1.5rem 2.5rem;
  color: var(--muted);
}

.access-section {
  background: var(--sage-soft);
}

.access-layout {
  display: grid;
  gap: 3rem;
}

.access-copy dl {
  margin: 2rem 0 0;
  border-top: 1px solid rgba(63, 89, 77, 0.22);
}

.access-copy dl div {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(63, 89, 77, 0.22);
}

.access-copy dt {
  font-size: 0.82rem;
  font-weight: 700;
}

.access-copy dd {
  margin-bottom: 0;
}

.access-copy dd small {
  color: var(--muted);
  font-size: 0.75rem;
}

.access-card {
  overflow: hidden;
  border-radius: var(--radius-large) var(--radius-small) var(--radius-large) var(--radius-small);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.access-card__map {
  position: relative;
  min-height: 20rem;
  overflow: hidden;
  background:
    linear-gradient(rgba(112, 132, 115, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112, 132, 115, 0.04) 1px, transparent 1px),
    #f6f1e9;
  background-size: 2rem 2rem;
}

.map-line {
  position: absolute;
  display: block;
  border: 1px solid rgba(63, 89, 77, 0.11);
  background: #fff;
  box-shadow: 0 0 0.65rem rgba(63, 89, 77, 0.05);
}

.map-line--one {
  top: 38%;
  left: -12%;
  width: 130%;
  height: 2.2rem;
  transform: rotate(13deg);
}

.map-line--two {
  top: -15%;
  left: 53%;
  width: 1.8rem;
  height: 135%;
  transform: rotate(-7deg);
}

.map-line--three {
  top: 22%;
  left: -5%;
  width: 90%;
  height: 1.35rem;
  transform: rotate(-18deg);
}

.map-pin {
  position: absolute;
  z-index: 2;
  top: 44%;
  left: 49%;
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50% 50% 50% 0;
  background: var(--rose);
  box-shadow: 0 0.75rem 1.6rem rgba(121, 63, 60, 0.24);
  transform: rotate(-45deg);
}

.map-pin i {
  display: block;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: #fff;
}

.access-card__map p {
  position: absolute;
  z-index: 2;
  bottom: 1.25rem;
  left: 1.25rem;
  margin: 0;
  color: var(--sage-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.8rem;
  letter-spacing: 0.13em;
}

.access-card__map p small {
  display: block;
  font-size: 0.6rem;
}

.access-card__note {
  margin: 0;
  padding: 1.25rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.reservation-section {
  padding-block: clamp(5rem, 14vw, 8rem);
  color: #fff;
  background:
    radial-gradient(circle at 85% 10%, rgba(229, 185, 177, 0.24), transparent 32%),
    var(--sage-deep);
  text-align: center;
}

.reservation-section .eyebrow {
  color: #f5cbc3;
}

.reservation-section h2 {
  color: #fff;
}

.reservation-section .container > p:not(.eyebrow, .reservation-note) {
  color: rgba(255, 255, 255, 0.8);
}

.reservation-demo {
  width: 100%;
  max-width: 34rem;
  margin: 2rem auto 0;
}

.reservation-demo summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 3.75rem;
  padding: 0.75rem 1.1rem;
  border-radius: var(--radius-pill);
  color: var(--sage-deep);
  background: #fff;
  box-shadow: 0 0.85rem 2rem rgba(24, 42, 34, 0.2);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.45;
  list-style: none;
}

.reservation-demo summary > span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  color: #fff;
  background: #238a56;
  font-size: 0.58rem;
}

.reservation-demo > div {
  margin-top: 0.75rem;
  padding: 1.4rem;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.09);
  text-align: left;
}

.reservation-demo > div p {
  margin-bottom: 0.65rem;
}

.reservation-demo > div p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.8rem;
}

.reservation-demo ol {
  margin: 0.65rem 0 1rem;
  padding-left: 1.5rem;
}

.reservation-note {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: #2f3f37;
}

.footer-inner {
  display: grid;
  justify-items: center;
  gap: 1.25rem;
  padding-block: 4.5rem 6rem;
  text-align: center;
}

.footer-brand .salon-brand__mark {
  color: var(--sage-deep);
  background: var(--rose-soft);
}

.footer-brand strong {
  color: #fff;
}

.site-footer p {
  max-width: 43rem;
  margin: 0;
  font-size: 0.76rem;
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.site-footer nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.45rem 0.5rem;
  color: #f3cbc4;
  font-size: 0.78rem;
}

.site-footer > .footer-inner > small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.65rem;
}

.mobile-reservation {
  position: fixed;
  z-index: 50;
  right: 0.75rem;
  bottom: calc(0.65rem + env(safe-area-inset-bottom));
  left: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius-pill);
  color: #fff;
  background: var(--sage-deep);
  box-shadow: 0 0.8rem 2rem rgba(37, 51, 44, 0.28);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
  .desktop-nav a,
  .site-footer a,
  .demo-notice a,
  .button,
  .header-reservation,
  .salon-brand,
  .mobile-nav a {
    transition: color 180ms ease, background-color 180ms ease, opacity 180ms ease, transform 180ms ease;
  }

  .desktop-nav a:hover,
  .demo-notice a:hover,
  .site-footer a:hover {
    opacity: 0.72;
  }

  .button:hover,
  .header-reservation:hover {
    transform: translateY(-2px);
  }

  .button--primary:hover,
  .header-reservation:hover {
    background: #30483e;
  }

  .button--quiet:hover {
    color: #fff;
    background: var(--sage-deep);
  }

  .gallery-item:hover img {
    transform: scale(1.025);
  }
}

@media (min-width: 48rem) {
  h2 {
    font-size: clamp(2.2rem, 4.2vw, 3.25rem);
    letter-spacing: 0.035em;
    line-height: 1.4;
  }

  .container {
    width: min(calc(100% - 4rem), var(--content-width));
  }

  .demo-notice {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-inline: max(2rem, calc((100% - 80rem) / 2));
  }

  .demo-notice strong {
    display: inline;
    margin: 0 0.75rem 0 0;
  }

  .demo-notice a {
    align-self: center;
  }

  .header-inner {
    width: min(calc(100% - 4rem), 80rem);
    min-height: 4.75rem;
  }

  .salon-brand__mark {
    width: 2.65rem;
    height: 2.65rem;
    font-size: 1.4rem;
  }

  .salon-brand__name strong {
    font-size: 1.3rem;
  }

  .header-reservation {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.9rem;
    padding: 0.55rem 1.1rem;
    border-radius: var(--radius-pill);
    color: #fff;
    background: var(--sage-deep);
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-reservation {
    display: none;
  }

  .hero-photo img {
    object-position: 56% center;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 3rem);
    letter-spacing: 0.02em;
  }

  .hero-actions {
    grid-template-columns: 1fr 1fr;
    max-width: 31rem;
  }

  .section-heading--center > p:last-child {
    text-align: center;
  }

  .flow-layout,
  .owner-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 6rem);
  }

  .concept-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .concept-points article {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .recommend-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recommend-list li {
    min-height: 8rem;
    padding: 1.6rem;
  }

  .flow-layout {
    align-items: start;
  }

  .owner-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .owner-photo img {
    min-height: 34rem;
  }

  .owner-copy dl div,
  .access-copy dl div {
    grid-template-columns: 7.5rem minmax(0, 1fr);
    gap: 1rem;
  }

  .gallery-grid {
    grid-template-columns: 1.25fr 0.75fr;
    grid-template-rows: repeat(2, 17rem);
  }

  .gallery-item--wide {
    grid-row: 1 / span 2;
  }

  .gallery-item--wide img {
    height: 100%;
    aspect-ratio: auto;
  }

  .gallery-item:not(.gallery-item--wide) img {
    height: 100%;
    aspect-ratio: auto;
  }

  .site-footer nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-footer nav a + a::before {
    margin-right: 1rem;
    color: rgba(255, 255, 255, 0.34);
    content: "/";
  }
}

@media (min-width: 64rem) {
  .desktop-break {
    display: inline;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.2vw, 2rem);
  }

  .desktop-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 2.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
  }

  .mobile-nav {
    display: none;
  }

  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    min-height: min(48rem, calc(100svh - 7.4rem));
  }

  .hero-photo {
    grid-column: 2;
    grid-row: 1;
    min-height: 100%;
  }

  .hero-copy {
    grid-column: 1;
    grid-row: 1;
    padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 4vw, 4rem);
  }

  .hero h1 {
    font-size: clamp(2.3rem, 3.2vw, 3.3rem);
  }

  .concept-grid,
  .access-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 6rem);
  }

  .concept-copy h2 {
    font-size: clamp(2rem, 3.9vw, 3.05rem);
  }

  .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
  }

  .menu-card--featured {
    transform: translateY(-1rem);
  }

  .menu-card__body {
    min-height: 24.5rem;
  }

  .faq-layout {
    grid-template-columns: minmax(15rem, 0.6fr) minmax(0, 1.4fr);
    gap: clamp(3rem, 8vw, 7rem);
    align-items: start;
  }
}

@media (min-width: 90rem) {
  .hero-photo__caption {
    right: 2rem;
    bottom: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
