@charset "UTF-8";

:root {
  --blush: #efa7b8;
  --blush-deep: #df7f98;
  --rose-ink: #8b3f56;
  --rose: #f8dce3;
  --cream: #fff8f1;
  --cream-deep: #f7eee4;
  --espresso: #4b3029;
  --espresso-soft: #775c54;
  --matcha: #8faf67;
  --blue: #a8cfdc;
  --gold: #b99355;
  --white: #fffdf9;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --page: min(92vw, 1320px);
  --page-narrow: min(88vw, 1120px);
  --space-section: clamp(6.5rem, 11vw, 11rem);
  --shadow-soft: 0 25px 70px rgba(75, 48, 41, 0.09);
}

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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--espresso);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--blush);
  color: var(--espresso);
}

img,
video {
  display: block;
  max-width: 100%;
}

.responsive-picture {
  display: contents;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

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

a {
  color: inherit;
  text-decoration: none;
}

address {
  font-style: normal;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.7rem, 8vw, 8.7rem);
}

h2 {
  font-size: clamp(3rem, 6vw, 6.5rem);
}

h3 {
  font-size: clamp(1.75rem, 3vw, 3rem);
}

p {
  text-wrap: pretty;
}

:focus-visible {
  outline: 3px solid var(--cream);
  outline-offset: 4px;
  box-shadow: 0 0 0 7px var(--rose-ink);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-160%);
  padding: 0.8rem 1rem;
  background: var(--espresso);
  color: var(--cream);
  font-weight: 700;
}

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

.section {
  width: var(--page-narrow);
  margin-inline: auto;
  padding-block: var(--space-section);
}

.section-wide {
  width: var(--page);
  margin-inline: auto;
  padding-block: var(--space-section);
}

.section-kicker,
.micro-label,
.eyebrow,
.section-index {
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-kicker,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.section-kicker::before,
.eyebrow::before {
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
  content: "";
}

.lede {
  max-width: 42rem;
  color: var(--espresso-soft);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

.button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 0.8rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

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

.button-dark {
  background: var(--espresso);
  color: var(--cream);
}

.button-dark:hover {
  background: #35211d;
}

.button-outline {
  border-color: rgba(75, 48, 41, 0.45);
  background: rgba(255, 248, 241, 0.7);
}

.button-outline:hover {
  border-color: var(--espresso);
  background: var(--cream);
}

.text-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(75, 48, 41, 0.55);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(0.35rem);
}

.placeholder {
  color: #745149;
  font-weight: 700;
}

.placeholder::before {
  color: var(--rose-ink);
  content: "Editable · ";
  font-size: 0.64rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--espresso);
  transition:
    background 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}

.site-header.is-solid {
  background: rgba(255, 248, 241, 0.94);
  box-shadow: 0 1px 0 rgba(75, 48, 41, 0.11);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  width: var(--page);
  min-height: 6.4rem;
  align-items: center;
  margin-inline: auto;
  grid-template-columns: 1fr auto 1fr;
}

.brand-mark {
  display: inline-flex;
  width: max-content;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.brand-mark > span {
  font-family: var(--serif);
  font-size: 1.55rem;
  letter-spacing: -0.045em;
}

.brand-mark i {
  color: var(--rose-ink);
  font-family: var(--serif);
  font-size: 0.85em;
  font-weight: 400;
}

.brand-mark small {
  margin-top: 0.38rem;
  font-size: 0.49rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.3rem, 2.7vw, 2.8rem);
}

.desktop-nav a {
  position: relative;
  padding-block: 0.6rem;
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.25rem;
  left: 0;
  height: 1px;
  background: var(--blush-deep);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-book {
  justify-self: end;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--espresso);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.menu-toggle,
.menu-close {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  place-items: center;
}

.menu-toggle span {
  display: block;
  width: 1.65rem;
  height: 1px;
  margin: 0.22rem auto;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  z-index: 200;
  inset: 0;
  overflow-y: auto;
  padding: 1.5rem 5vw 2.5rem;
  background: var(--rose);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu::before {
  position: absolute;
  z-index: -1;
  right: -20vw;
  bottom: -10vw;
  width: 65vw;
  height: 65vw;
  border: 1px solid rgba(75, 48, 41, 0.15);
  border-radius: 50%;
  content: "";
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-close {
  min-height: 3rem;
  padding: 0.5rem;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-close span {
  padding-left: 0.35rem;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
}

.mobile-menu nav {
  display: grid;
  margin-block: clamp(3rem, 10vh, 6rem);
}

.mobile-menu nav a {
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(75, 48, 41, 0.15);
  font-family: var(--serif);
  font-size: clamp(2.5rem, 11vw, 5rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.mobile-menu nav a[aria-current="page"] {
  color: var(--rose-ink);
}

.mobile-book {
  width: 100%;
}

.mobile-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.2rem;
  margin-top: 1.5rem;
}

.mobile-contact a {
  min-height: 2.75rem;
  overflow-wrap: anywhere;
  border-bottom: 1px solid rgba(75, 48, 41, 0.32);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 2.75rem;
}

.mobile-menu > p {
  margin-top: 2rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
}

/* Home: entrance */
.hero {
  width: var(--page);
  min-height: 100svh;
  margin-inline: auto;
  padding-top: 7.6rem;
}

.hero-frame {
  position: relative;
  min-height: calc(100svh - 9rem);
  overflow: hidden;
  border-radius: 0 8.5rem 0 0;
  background: var(--rose);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.hero-media,
.hero-video {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  opacity: 0;
  transition: opacity 500ms ease;
}

.hero-video.is-active {
  opacity: 1;
}

.hero-frame::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 248, 241, 0.94) 0%, rgba(255, 248, 241, 0.72) 28%, transparent 61%);
  content: "";
  pointer-events: none;
}

.hero-content {
  display: flex;
  min-height: calc(100svh - 9rem);
  max-width: 38rem;
  flex-direction: column;
  justify-content: center;
  padding: clamp(7rem, 12vw, 11rem) clamp(2rem, 6vw, 6rem) 5rem;
}

.hero-content h1 {
  max-width: 7.2ch;
}

.hero-content h1 em {
  display: block;
  color: #a9576c;
  font-weight: 400;
}

.hero-content > p {
  max-width: 29rem;
  margin-top: 1.6rem;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.1rem;
}

.scroll-cue {
  position: absolute;
  bottom: 1.8rem;
  left: clamp(2rem, 6vw, 6rem);
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-cue span {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid rgba(75, 48, 41, 0.35);
  border-radius: 50%;
  place-items: center;
}

.video-control {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  min-height: 2.75rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(255, 248, 241, 0.65);
  background: rgba(75, 48, 41, 0.76);
  color: var(--cream);
  cursor: pointer;
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

/* Home: ritual */
.ritual {
  position: relative;
}

.ritual-heading {
  display: grid;
  align-items: end;
  gap: 4rem;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.45fr);
}

.ritual-heading h2 {
  max-width: 10ch;
}

.ritual-steps {
  position: relative;
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: clamp(4.5rem, 8vw, 8rem);
  grid-template-columns: repeat(3, 1fr);
}

.pour-line {
  position: absolute;
  top: 1.15rem;
  right: 0;
  left: 0;
  height: 1px;
  overflow: hidden;
  background: rgba(75, 48, 41, 0.18);
}

.pour-line::after {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--blush), var(--gold), var(--matcha));
  content: "";
  transform: translateX(-100%);
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.is-visible .pour-line::after {
  transform: translateX(0);
}

.ritual-step {
  position: relative;
  padding-top: 4rem;
}

.ritual-step::before {
  position: absolute;
  top: 0.8rem;
  left: 0;
  width: 0.75rem;
  height: 0.75rem;
  border: 3px solid var(--cream);
  border-radius: 50%;
  background: var(--blush-deep);
  box-shadow: 0 0 0 1px var(--blush-deep);
  content: "";
}

.ritual-step > span {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
}

.ritual-step h3 {
  margin-top: 1.3rem;
  font-size: clamp(2rem, 3vw, 3.3rem);
}

.ritual-step p {
  max-width: 22rem;
  margin-top: 1rem;
  color: var(--espresso-soft);
}

/* Home: split counter */
.split-counter {
  width: 100%;
  padding: clamp(5rem, 8vw, 9rem) max(4vw, calc((100vw - 1320px) / 2));
  background: var(--espresso);
  color: var(--cream);
}

.split-counter-grid {
  display: grid;
  min-height: 42rem;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(8rem, 0.32fr) minmax(0, 0.88fr);
}

.counter-side {
  transition: transform 450ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.counter-side:focus-within,
.counter-side:hover {
  transform: scale(1.015);
}

.counter-side figure {
  position: relative;
  overflow: hidden;
  background: #76534b;
}

.counter-side:first-child figure {
  aspect-ratio: 4 / 5;
  border-radius: 0 0 11rem 0;
}

.counter-side:last-child figure {
  aspect-ratio: 1 / 1;
  border-radius: 50% 50% 0 0;
}

.counter-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.counter-side:hover img {
  transform: scale(1.025);
}

.counter-caption {
  max-width: 29rem;
  margin-top: 1.8rem;
}

.counter-caption span {
  color: var(--blush);
}

.counter-caption h3 {
  margin-top: 0.75rem;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.counter-caption p {
  margin-top: 0.8rem;
  color: rgba(255, 248, 241, 0.72);
}

.counter-center {
  position: relative;
  z-index: 2;
  text-align: center;
}

.counter-center h2 {
  margin-inline: -2rem;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 4.5vw, 5.2rem);
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.counter-center span {
  display: block;
  color: var(--blush);
  font-style: italic;
}

/* Home: set menu */
.set-menu-layout {
  display: grid;
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
  grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
}

.set-menu-visual {
  position: sticky;
  top: 8.5rem;
}

.set-menu-visual figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5.5;
  border-radius: 48% 48% 0 0;
  background: var(--rose);
}

.set-menu-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.set-menu-caption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(75, 48, 41, 0.22);
  margin-top: 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.set-menu-copy > p {
  margin-top: 1.2rem;
}

.set-groups {
  border-top: 1px solid var(--espresso);
  margin-top: 4rem;
}

.set-group {
  border-bottom: 1px solid rgba(75, 48, 41, 0.35);
}

.set-group-toggle {
  display: grid;
  width: 100%;
  min-height: 5.5rem;
  align-items: center;
  padding: 1rem 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 3.1rem);
  grid-template-columns: 3.5rem 1fr auto;
  text-align: left;
}

.set-number {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.set-group-toggle > span:last-child {
  font-family: var(--sans);
  font-size: 1.3rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.set-group.is-open .set-group-toggle > span:last-child {
  transform: rotate(45deg);
}

.set-group-content {
  display: grid;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 500ms ease,
    opacity 300ms ease;
}

.set-group-content[hidden] {
  display: none;
}

.set-group.is-open .set-group-content {
  max-height: 40rem;
  padding-bottom: 1.25rem;
  opacity: 1;
}

.service-line {
  display: grid;
  min-height: 4.6rem;
  align-items: center;
  padding: 0.75rem 0.6rem 0.75rem 3.5rem;
  grid-template-columns: 1fr auto;
  transition: background 180ms ease;
}

.service-line:hover {
  background: var(--rose);
}

.service-line strong {
  display: block;
  font-size: 0.87rem;
  letter-spacing: 0.04em;
}

.service-line small {
  color: var(--espresso-soft);
}

.service-price {
  max-width: 12rem;
  color: #805b52;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: right;
}

/* Home: mood */
.mood-section {
  position: relative;
  width: 100%;
  padding: var(--space-section) max(6vw, calc((100vw - 1120px) / 2));
  overflow: hidden;
  background: var(--rose);
}

.mood-section::after {
  position: absolute;
  top: -20rem;
  right: -20rem;
  width: 48rem;
  height: 48rem;
  border: 1px solid rgba(75, 48, 41, 0.12);
  border-radius: 50%;
  content: "";
}

.mood-heading {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
}

.mood-heading p {
  max-width: 28rem;
  justify-self: end;
}

.mood-chooser {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 30rem;
  margin-top: 5rem;
  background: var(--cream);
  box-shadow: var(--shadow-soft);
  grid-template-columns: minmax(18rem, 0.9fr) minmax(0, 1.1fr);
}

.mood-tabs {
  display: grid;
  border-right: 1px solid rgba(75, 48, 41, 0.18);
}

.mood-tabs button {
  display: grid;
  min-height: 6.5rem;
  align-items: center;
  padding: 1.2rem 1.5rem;
  border: 0;
  border-bottom: 1px solid rgba(75, 48, 41, 0.15);
  background: transparent;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2rem);
  grid-template-columns: 3rem 1fr;
  text-align: left;
  transition: background 180ms ease;
}

.mood-tabs button span {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.mood-tabs button[aria-selected="true"] {
  background: var(--espresso);
  color: var(--cream);
}

.mood-result {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vw, 6rem);
}

.mood-result h3 {
  max-width: 13ch;
  margin-top: 1.2rem;
  font-size: clamp(2.5rem, 4.5vw, 5rem);
}

.mood-result p {
  max-width: 31rem;
  margin-block: 1.5rem 2.5rem;
  color: var(--espresso-soft);
}

/* Home: cafe */
.cafe-story {
  display: grid;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  grid-template-columns: minmax(0, 1.1fr) minmax(17rem, 0.9fr);
}

.cafe-image-wrap {
  position: relative;
  min-height: 44rem;
}

.cafe-image-wrap::before {
  position: absolute;
  z-index: -1;
  top: 2.2rem;
  right: -2.2rem;
  width: 75%;
  height: 80%;
  border: 1px solid var(--gold);
  content: "";
}

.cafe-image-wrap img {
  width: 100%;
  height: 44rem;
  object-fit: cover;
  object-position: 67% center;
}

.cafe-copy h2 {
  max-width: 9ch;
}

.cafe-copy > p {
  max-width: 30rem;
  margin-top: 1.5rem;
}

.home-cafe-menu {
  display: grid;
  border-top: 1px solid var(--espresso);
  margin-block: 3rem;
}

.home-cafe-menu a {
  display: grid;
  min-height: 3.8rem;
  align-items: center;
  border-bottom: 1px solid rgba(75, 48, 41, 0.2);
  grid-template-columns: 1.2rem 2.2rem 1fr auto;
  transition:
    padding 180ms ease,
    background 180ms ease;
}

.home-cafe-menu a:hover {
  padding-inline: 0.65rem;
  background: var(--rose);
}

.home-cafe-menu a > span:nth-child(2) {
  color: var(--espresso-soft);
  font-size: 0.65rem;
  font-weight: 800;
}

.menu-dot {
  display: inline-block;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--espresso);
}

.menu-dot.fresh {
  background: var(--matcha);
}

.menu-dot.sweet {
  background: var(--blush-deep);
}

/* Home: editorial pause */
.editorial-pause {
  width: 100%;
  padding-block: var(--space-section);
  background: #edd5d5;
}

.editorial-pause-grid {
  display: grid;
  width: var(--page-narrow);
  min-height: 47rem;
  align-items: center;
  margin-inline: auto;
  gap: clamp(3rem, 8vw, 9rem);
  grid-template-columns: minmax(16rem, 0.75fr) minmax(0, 1.25fr);
}

.editorial-pause figure {
  position: relative;
  align-self: stretch;
}

.editorial-pause img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.editorial-pause figcaption {
  position: absolute;
  right: -2.4rem;
  bottom: 2rem;
  padding: 0.65rem 0.8rem;
  background: var(--cream);
  font-size: 0.63rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.editorial-pause h2 {
  max-width: 12ch;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6.2vw, 7.2rem);
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.editorial-pause h2 em {
  color: #a15266;
  font-weight: 400;
}

.editorial-pause-copy p {
  max-width: 30rem;
  margin-top: 2rem;
}

/* Home: stay */
.stay-layout {
  display: grid;
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
}

.stay-media {
  position: relative;
}

.stay-media::before {
  position: absolute;
  z-index: -1;
  top: -2rem;
  left: -2rem;
  width: 38%;
  height: 60%;
  border-radius: 8rem 8rem 0 0;
  background: var(--blue);
  content: "";
}

.stay-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.stay-copy h2 {
  max-width: 8ch;
}

.stay-copy > p {
  margin-top: 1.5rem;
}

.stay-statements {
  display: grid;
  width: var(--page-narrow);
  margin: 6rem auto 0;
  border-top: 1px solid rgba(75, 48, 41, 0.4);
  grid-template-columns: repeat(3, 1fr);
}

.stay-statement {
  min-height: 14rem;
  padding: 2.25rem;
  border-right: 1px solid rgba(75, 48, 41, 0.22);
}

.stay-statement:last-child {
  border-right: 0;
}

.stay-statement span {
  color: var(--rose-ink);
}

.stay-statement h3 {
  max-width: 8ch;
  margin-block: 1.25rem 0.9rem;
  font-size: clamp(1.7rem, 2.4vw, 2.7rem);
}

.stay-statement p {
  color: var(--espresso-soft);
}

/* Appointment builder */
.builder-section {
  width: 100%;
  padding: var(--space-section) max(6vw, calc((100vw - 1120px) / 2));
  background: var(--rose);
}

.builder-header {
  display: grid;
  align-items: end;
  gap: 2rem;
  grid-template-columns: 1fr 0.65fr;
}

.appointment-builder {
  display: grid;
  margin-top: 5rem;
  border-top: 1px solid var(--espresso);
}

.builder-step {
  display: grid;
  margin: 0;
  padding: 2.4rem 0;
  border: 0;
  border-bottom: 1px solid rgba(75, 48, 41, 0.25);
  grid-template-columns: minmax(14rem, 0.38fr) minmax(0, 1fr);
}

.builder-step legend {
  display: contents;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.5vw, 2.6rem);
}

.builder-step legend span {
  display: inline-block;
  margin-right: 1rem;
  color: var(--rose-ink);
  font-family: var(--sans);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.choice-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  grid-column: 2;
}

.choice-list label {
  position: relative;
  cursor: pointer;
}

.choice-list input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice-list label span {
  display: flex;
  min-height: 3.15rem;
  align-items: center;
  padding: 0.7rem 1.05rem;
  border: 1px solid rgba(75, 48, 41, 0.35);
  background: var(--cream);
  font-size: 0.8rem;
  font-weight: 650;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.choice-list input:focus-visible + span {
  outline: 3px solid var(--cream);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--rose-ink);
}

.choice-list input:checked + span {
  border-color: var(--espresso);
  background: var(--espresso);
  color: var(--cream);
}

.builder-summary {
  display: grid;
  align-items: center;
  gap: 1rem 2rem;
  padding-top: 2rem;
  grid-template-columns: auto 1fr auto;
}

.builder-summary p {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
}

/* Visit map graphic */
.visit-home {
  position: relative;
  width: 100%;
  padding: var(--space-section) max(6vw, calc((100vw - 1120px) / 2));
  overflow: hidden;
}

.map-lines {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.48;
  background:
    radial-gradient(circle at 71% 43%, transparent 0 4.8rem, rgba(239, 167, 184, 0.35) 4.9rem 5rem, transparent 5.1rem),
    linear-gradient(28deg, transparent 48%, rgba(239, 167, 184, 0.45) 48.2% 48.45%, transparent 48.7%),
    linear-gradient(118deg, transparent 58%, rgba(239, 167, 184, 0.36) 58.2% 58.45%, transparent 58.7%);
}

.map-lines::before,
.map-lines::after {
  position: absolute;
  width: 120%;
  height: 6rem;
  border: 1px solid rgba(239, 167, 184, 0.6);
  border-radius: 50%;
  content: "";
  transform: rotate(-8deg);
}

.map-lines::before {
  top: 22%;
  left: -15%;
}

.map-lines::after {
  right: -20%;
  bottom: 15%;
  transform: rotate(12deg);
}

.location-pin {
  position: absolute;
  z-index: 1;
  top: 30%;
  right: 18%;
  width: 2.3rem;
  height: 2.3rem;
  border: 1px solid var(--gold);
  border-radius: 50% 50% 50% 0;
  background: var(--cream);
  box-shadow: var(--shadow-soft);
  transform: rotate(-45deg);
}

.location-pin::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--gold);
  content: "";
  transform: translate(-50%, -50%);
}

.visit-home-layout {
  display: grid;
  gap: 5rem;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.75fr);
}

.visit-home-copy h2 {
  max-width: 8ch;
}

.visit-home-copy > p {
  max-width: 32rem;
  margin-top: 1.5rem;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.3rem;
}

.visit-details {
  display: grid;
  align-self: end;
  border-top: 1px solid var(--espresso);
}

.visit-details > div {
  display: grid;
  min-height: 4.4rem;
  align-items: center;
  border-bottom: 1px solid rgba(75, 48, 41, 0.24);
  gap: 1rem;
  grid-template-columns: 8rem 1fr;
}

.visit-details dt {
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visit-details dd {
  min-width: 0;
  font-size: 0.87rem;
}

.visit-details a,
.legal-content a {
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-decoration-color: var(--blush-deep);
  text-underline-offset: 0.18em;
}

.visit-details address,
.hours-list {
  display: grid;
}

.visit-details address span:not(:last-child) {
  margin-bottom: 0.08rem;
}

.hours-list {
  gap: 0.2rem;
}

.hours-list strong {
  font-weight: 750;
}

.visit-hours,
.map-address {
  margin-top: 1.2rem;
}

.map-address address {
  display: grid;
}

.directions-note {
  margin-top: 1rem;
  color: var(--espresso-soft);
  font-size: 0.76rem;
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 4.5rem max(4vw, calc((100vw - 1320px) / 2)) 1.5rem;
  background: var(--espresso);
  color: var(--cream);
}

.footer-stroke {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2rem;
  overflow: hidden;
}

.footer-stroke span {
  display: block;
  width: 60%;
  height: 4rem;
  border: 1px solid rgba(239, 167, 184, 0.65);
  border-radius: 50%;
  margin: -3.45rem auto 0;
}

.footer-main {
  display: grid;
  align-items: start;
  gap: 5rem;
  grid-template-columns: 0.7fr 1.3fr;
}

.brand-mark-footer {
  align-items: flex-start;
}

.brand-mark-footer > span {
  font-size: clamp(2.4rem, 4vw, 4.8rem);
}

.brand-mark-footer i {
  color: var(--blush);
}

.brand-mark-footer small {
  color: rgba(255, 248, 241, 0.65);
}

.footer-line {
  margin-top: 2rem;
  color: var(--blush);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2.1rem);
  font-style: italic;
}

.footer-description {
  max-width: 26rem;
  margin-top: 0.6rem;
  color: rgba(255, 248, 241, 0.68);
  font-size: 0.76rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.footer-links a {
  min-height: 3.2rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 248, 241, 0.16);
  color: rgba(255, 248, 241, 0.8);
  font-size: 0.75rem;
  font-weight: 650;
}

.footer-links a:hover {
  color: var(--blush);
}

.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 248, 241, 0.18);
  margin-top: 5rem;
  color: rgba(255, 248, 241, 0.58);
  font-size: 0.67rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Interior pages */
.page-main {
  padding-top: 6.4rem;
}

.page-hero {
  display: grid;
  width: var(--page);
  min-height: clamp(34rem, 75vh, 51rem);
  align-items: end;
  margin-inline: auto;
  padding: clamp(6rem, 10vw, 10rem) clamp(1.5rem, 5vw, 5rem) 4rem;
  overflow: hidden;
  background: var(--rose);
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.72fr);
}

.page-hero-copy {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 9ch;
}

.page-hero p {
  max-width: 34rem;
  margin-top: 1.8rem;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

.page-hero-index {
  align-self: start;
  justify-self: end;
  color: rgba(75, 48, 41, 0.5);
  font-family: var(--serif);
  font-size: clamp(7rem, 18vw, 17rem);
  letter-spacing: -0.08em;
  line-height: 0.75;
}

.image-page-hero {
  position: relative;
  grid-template-columns: minmax(0, 0.8fr) minmax(20rem, 1.2fr);
}

.image-page-hero figure {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 54%;
  overflow: hidden;
}

.image-page-hero figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--rose), transparent 30%);
  content: "";
}

.image-page-hero figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-intro {
  display: grid;
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
  grid-template-columns: 0.75fr 1.25fr;
}

.page-intro h2 {
  font-size: clamp(2.6rem, 5vw, 5.5rem);
}

.page-intro-copy p + p {
  margin-top: 1.25rem;
}

.page-intro-copy .text-link {
  margin-top: 2rem;
}

/* Services */
.services-menu {
  width: 100%;
}

.detail-menu-group {
  display: grid;
  padding-block: 5rem;
  border-top: 1px solid var(--espresso);
  gap: 4rem;
  grid-template-columns: minmax(14rem, 0.33fr) minmax(0, 1fr);
}

.detail-menu-group header {
  position: sticky;
  top: 8rem;
  align-self: start;
}

.detail-menu-group header h2 {
  max-width: 7ch;
  margin-top: 1rem;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
}

.detail-service {
  display: grid;
  align-items: center;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(75, 48, 41, 0.22);
  grid-template-columns: minmax(0, 1fr) auto auto;
}

.detail-service:first-child {
  padding-top: 0;
}

.detail-service h3 {
  font-size: clamp(1.7rem, 2.3vw, 2.5rem);
}

.detail-service p {
  max-width: 34rem;
  margin-top: 0.65rem;
  color: var(--espresso-soft);
  font-size: 0.9rem;
}

.service-note {
  display: inline-block;
  margin-top: 0.7rem;
  color: #9c5365;
  font-family: var(--serif);
  font-style: italic;
}

.detail-service dl {
  display: flex;
  gap: 1.4rem;
}

.detail-service dl div {
  min-width: 7rem;
}

.detail-service dt {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.detail-service dd {
  max-width: 12rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: right;
}

.detail-service > a {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid rgba(75, 48, 41, 0.35);
  border-radius: 50%;
  font-size: 0;
  place-items: center;
}

.detail-service > a span {
  font-size: 1.1rem;
}

.detail-service > a:hover {
  background: var(--espresso);
  color: var(--cream);
}

.service-support {
  width: 100%;
  padding-block: var(--space-section);
  background: var(--espresso);
  color: var(--cream);
}

.service-support-inner {
  display: grid;
  width: var(--page-narrow);
  margin-inline: auto;
  gap: 5rem;
  grid-template-columns: 0.75fr 1.25fr;
}

.service-support h2 {
  font-size: clamp(2.7rem, 5vw, 5.5rem);
}

.main-service-list {
  border-top: 1px solid rgba(255, 248, 241, 0.45);
}

.main-service-list li {
  border-bottom: 1px solid rgba(255, 248, 241, 0.2);
}

.main-service-list a {
  display: grid;
  min-height: 4.8rem;
  align-items: center;
  padding-block: 1rem;
  gap: 1rem;
  grid-template-columns: 1fr auto;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  transition: color 180ms ease;
}

.main-service-list a:hover {
  color: var(--blush);
}

.preparation-grid {
  display: grid;
  gap: 2rem;
  margin-top: 4rem;
  grid-template-columns: repeat(3, 1fr);
}

.preparation-grid article {
  min-height: 18rem;
  padding: 2.2rem;
  border: 1px solid rgba(75, 48, 41, 0.25);
}

.preparation-grid article:nth-child(2) {
  border-radius: 8rem 8rem 0 0;
}

.preparation-grid span {
  color: var(--rose-ink);
}

.preparation-grid h3 {
  margin-block: 3rem 1rem;
  font-size: 2rem;
}

.faq-list {
  border-top: 1px solid var(--espresso);
  margin-top: 4rem;
}

.faq-list details {
  border-bottom: 1px solid rgba(75, 48, 41, 0.24);
}

.faq-list summary {
  display: grid;
  min-height: 5rem;
  align-items: center;
  padding-block: 1rem;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 2rem);
  grid-template-columns: 3rem 1fr auto;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 800;
}

.faq-list summary i {
  font-family: var(--sans);
  font-size: 1.2rem;
  font-style: normal;
  transition: transform 180ms ease;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 46rem;
  padding: 0 2rem 2rem 3rem;
  color: var(--espresso-soft);
}

/* Cafe page */
.cafe-hero {
  background: var(--espresso);
  color: var(--cream);
}

.cafe-hero .page-hero-index {
  color: rgba(143, 175, 103, 0.5);
}

.cafe-menu-layout {
  display: grid;
  gap: 0;
}

.cafe-category {
  display: grid;
  padding-block: 4.5rem;
  border-top: 1px solid var(--espresso);
  gap: 4rem;
  grid-template-columns: 0.65fr 1.35fr;
}

.cafe-category header {
  display: grid;
  align-content: start;
  gap: 1rem;
  grid-template-columns: 1rem 3rem 1fr;
}

.cafe-category h2 {
  font-size: clamp(2.5rem, 4vw, 4.8rem);
}

.cafe-category header p {
  margin-top: 0.75rem;
  color: var(--espresso-soft);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cafe-items {
  border-top: 1px solid rgba(75, 48, 41, 0.22);
}

.cafe-items article {
  display: grid;
  min-height: 7rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(75, 48, 41, 0.22);
  gap: 2rem;
  grid-template-columns: 1fr auto;
}

.cafe-items h3 {
  font-family: var(--sans);
  font-size: 0.96rem;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.menu-prices {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem 1.35rem;
}

.menu-prices div {
  display: grid;
  min-width: 4.5rem;
  gap: 0.1rem;
  text-align: right;
}

.menu-prices dt {
  color: var(--espresso-soft);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-prices dd {
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

.allergy-notice {
  display: grid;
  width: var(--page-narrow);
  align-items: center;
  margin: 2rem auto var(--space-section);
  padding: 3rem;
  border: 1px solid rgba(75, 48, 41, 0.3);
  gap: 2rem;
  grid-template-columns: auto 1fr;
}

.allergy-notice span {
  display: grid;
  width: 4.5rem;
  height: 4.5rem;
  border: 1px solid var(--matcha);
  border-radius: 50%;
  color: var(--matcha);
  font-family: var(--serif);
  font-size: 1.4rem;
  place-items: center;
}

/* Experience page */
.experience-hero {
  position: relative;
  min-height: clamp(40rem, 84vh, 58rem);
  background: var(--cream);
}

.experience-hero figure {
  position: absolute;
  inset: 0;
}

.experience-hero figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 248, 241, 0.98) 0 26%, rgba(255, 248, 241, 0.15) 68%);
  content: "";
}

.experience-hero figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-hero .page-hero-copy {
  align-self: center;
}

.experience-grid {
  display: grid;
  gap: 1px;
  margin-top: 5rem;
  background: rgba(75, 48, 41, 0.2);
  grid-template-columns: repeat(2, 1fr);
}

.experience-card {
  min-height: 27rem;
  padding: clamp(2rem, 4vw, 4rem);
  background: var(--cream);
}

.experience-card:nth-child(2) {
  background: var(--rose);
}

.experience-card:nth-child(3) {
  background: #edf3e7;
}

.experience-card:nth-child(4) {
  background: #e9f2f4;
}

.experience-card span {
  color: var(--rose-ink);
}

.experience-card h3 {
  max-width: 9ch;
  margin-top: 6rem;
  font-size: clamp(2.5rem, 4.2vw, 4.8rem);
}

.experience-card p {
  max-width: 32rem;
  margin-top: 1.4rem;
}

.expect-flow {
  display: grid;
  margin-top: 5rem;
  border-top: 1px solid var(--espresso);
  grid-template-columns: repeat(6, 1fr);
}

.expect-flow li {
  position: relative;
  min-height: 11rem;
  padding: 2rem 1rem;
  border-right: 1px solid rgba(75, 48, 41, 0.2);
}

.expect-flow li:last-child {
  border-right: 0;
}

.expect-flow li::before {
  display: block;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  margin-bottom: 2.4rem;
  background: var(--blush-deep);
  content: "";
}

.expect-flow strong {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
}

.experience-editorial {
  display: grid;
  width: 100%;
  background: var(--espresso);
  color: var(--cream);
  grid-template-columns: 0.8fr 1.2fr;
}

.experience-editorial-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 8vw, 8rem);
}

.experience-editorial-copy h2 {
  font-size: clamp(3rem, 5vw, 5.8rem);
}

.experience-editorial-copy p {
  margin-top: 1.5rem;
  color: rgba(255, 248, 241, 0.72);
}

.experience-editorial figure {
  min-height: 48rem;
}

.experience-editorial img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

/* Gallery */
.gallery-hero {
  background:
    linear-gradient(125deg, transparent 0 60%, rgba(239, 167, 184, 0.33) 60%),
    var(--cream-deep);
}

.gallery-shell {
  width: var(--page);
  margin: var(--space-section) auto;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 4rem;
}

.gallery-filters button {
  min-height: 3rem;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(75, 48, 41, 0.32);
  background: transparent;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-filters button[aria-pressed="true"] {
  background: var(--espresso);
  color: var(--cream);
}

.gallery-stage {
  display: grid;
  min-height: 45rem;
  gap: 1.2rem;
  grid-template-columns: 1.2fr 0.8fr;
}

.gallery-feature {
  position: relative;
  overflow: hidden;
}

.gallery-feature[hidden] {
  display: none;
}

.gallery-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-feature figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.75rem 0.9rem;
  background: var(--cream);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-coming {
  display: flex;
  min-height: 32rem;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 5vw, 5rem);
  border: 1px solid rgba(75, 48, 41, 0.25);
  border-radius: 12rem 12rem 0 0;
  background:
    linear-gradient(35deg, transparent 49.7%, rgba(75, 48, 41, 0.12) 50%, transparent 50.3%),
    var(--rose);
}

.gallery-coming span {
  color: var(--rose-ink);
}

.gallery-coming h3 {
  max-width: 8ch;
  margin-block: 1rem;
  font-size: clamp(2.6rem, 5vw, 5.3rem);
}

.gallery-coming p {
  max-width: 28rem;
}

/* Visit page */
.visit-page-hero {
  position: relative;
  background: var(--cream-deep);
}

.visit-page-hero .map-lines {
  z-index: 0;
}

.visit-page-grid {
  display: grid;
  align-items: start;
  gap: clamp(4rem, 9vw, 9rem);
  grid-template-columns: 0.8fr 1.2fr;
}

.visit-page-grid .visit-details {
  position: sticky;
  top: 8rem;
}

.visit-info {
  display: grid;
  gap: 1px;
  background: rgba(75, 48, 41, 0.2);
}

.visit-info article {
  min-height: 15rem;
  padding: 2.5rem;
  background: var(--cream);
}

.visit-info article:nth-child(even) {
  background: var(--rose);
}

.visit-info h2 {
  font-size: clamp(2rem, 3.5vw, 3.8rem);
}

.visit-info p {
  margin-top: 1.2rem;
}

.map-placeholder {
  position: relative;
  display: grid;
  min-height: 34rem;
  overflow: hidden;
  background: var(--rose);
  place-items: center;
}

.map-placeholder .map-lines {
  z-index: 0;
}

.map-placeholder > div:last-child {
  position: relative;
  z-index: 2;
  max-width: 29rem;
  padding: 3rem;
  background: rgba(255, 248, 241, 0.93);
  text-align: center;
}

.map-placeholder h2 {
  font-size: clamp(2.5rem, 4vw, 4.5rem);
}

.map-placeholder p {
  margin-top: 1rem;
}

.map-placeholder .button {
  margin-top: 1.5rem;
}

/* Booking */
.booking-layout {
  display: grid;
  align-items: start;
  gap: clamp(4rem, 8vw, 8rem);
  grid-template-columns: minmax(0, 1.25fr) minmax(17rem, 0.75fr);
}

.booking-form .appointment-builder {
  margin-top: 0;
}

.booking-form .builder-step {
  display: block;
}

.booking-form .choice-list {
  margin-top: 1.4rem;
}

.contact-fields {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
  grid-template-columns: repeat(2, 1fr);
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 3.4rem;
  padding: 0.8rem;
  border: 1px solid rgba(75, 48, 41, 0.35);
  border-radius: 0;
  background: var(--white);
}

.form-field textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-field.has-error input {
  border-color: #9d2845;
  box-shadow: inset 4px 0 #9d2845;
}

.form-field.has-error input:focus-visible {
  box-shadow:
    inset 4px 0 #9d2845,
    0 0 0 7px var(--rose-ink);
}

.field-error {
  color: #7d1530;
  font-size: 0.78rem;
  font-weight: 700;
}

.booking-submit {
  margin-top: 1.5rem;
}

.booking-notice,
.booking-context {
  padding: 1.2rem;
  border-left: 4px solid var(--matcha);
  margin-top: 1.5rem;
  background: #edf3e7;
}

.booking-notice strong {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
}

.booking-notice p {
  margin-top: 0.5rem;
}

.booking-notice .text-link {
  margin-top: 1rem;
}

.booking-aside {
  position: sticky;
  top: 8rem;
  padding: 2.5rem;
  background: var(--espresso);
  color: var(--cream);
}

.booking-aside h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.booking-aside p {
  margin-top: 1.2rem;
  color: rgba(255, 248, 241, 0.72);
}

.booking-aside dl {
  margin-top: 2.5rem;
}

.booking-aside dl div {
  padding-block: 1rem;
  border-top: 1px solid rgba(255, 248, 241, 0.2);
}

.booking-aside dt {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-aside dd {
  margin-top: 0.35rem;
  color: var(--rose);
  font-weight: 700;
}

/* Legal and support */
.legal-hero {
  min-height: 27rem;
  background: var(--cream-deep);
}

.legal-hero h1 {
  font-size: clamp(3.4rem, 7vw, 7rem);
}

.draft-banner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--gold);
  margin-bottom: 4rem;
  background: #fbf2df;
}

.draft-banner strong {
  flex: 0 0 auto;
  color: #6d4c19;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-content {
  max-width: 52rem;
}

.legal-content section + section {
  margin-top: 3.5rem;
}

.legal-content h2 {
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.legal-content h3 {
  margin-top: 2rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.legal-content p,
.legal-content li {
  margin-top: 1rem;
  color: var(--espresso-soft);
}

.legal-content ul {
  padding-left: 1.2rem;
  list-style: disc;
}

.accessibility-principles {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
  grid-template-columns: repeat(3, 1fr);
}

.accessibility-principles article {
  min-height: 13rem;
  padding: 1.8rem;
  border: 1px solid rgba(75, 48, 41, 0.25);
}

.accessibility-principles h3 {
  font-size: 2rem;
}

.accessibility-principles p {
  margin-top: 1rem;
}

/* Reusable CTA */
.closing-cta {
  display: grid;
  width: 100%;
  min-height: 34rem;
  align-items: center;
  padding: var(--space-section) max(6vw, calc((100vw - 1120px) / 2));
  overflow: hidden;
  background: var(--blush);
  grid-template-columns: 1fr auto;
}

.closing-cta h2 {
  max-width: 12ch;
}

.closing-cta p {
  max-width: 36rem;
  margin-top: 1.4rem;
}

.closing-cta .button {
  min-width: 13rem;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition:
    opacity 650ms ease,
    transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 200ms;
}

@media (max-width: 1050px) {
  .desktop-nav {
    gap: 1.2rem;
  }

  .detail-service {
    align-items: start;
    grid-template-columns: 1fr auto;
  }

  .detail-service dl {
    grid-column: 1;
  }

  .detail-service > a {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .expect-flow {
    grid-template-columns: repeat(3, 1fr);
  }

  .expect-flow li {
    border-bottom: 1px solid rgba(75, 48, 41, 0.2);
  }
}

@media (max-width: 899px) {
  :root {
    --page: min(90vw, 46rem);
    --page-narrow: min(86vw, 42rem);
    --space-section: clamp(5.5rem, 18vw, 8rem);
  }

  html {
    scroll-padding-top: 5rem;
  }

  h1 {
    font-size: clamp(3.5rem, 14vw, 6.8rem);
  }

  h2 {
    font-size: clamp(2.9rem, 11vw, 5.2rem);
  }

  .header-inner {
    min-height: 5rem;
    grid-template-columns: 1fr auto;
  }

  .brand-mark {
    align-items: flex-start;
  }

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

  .menu-toggle {
    display: grid;
    justify-self: end;
  }

  .hero {
    min-height: auto;
    padding-top: 5rem;
  }

  .hero-frame {
    display: flex;
    min-height: auto;
    flex-direction: column;
    overflow: visible;
    border-radius: 0 5rem 0 0;
    background: transparent;
    box-shadow: none;
  }

  .hero-frame::after {
    display: none;
  }

  .hero-media {
    position: relative;
    z-index: 0;
    overflow: hidden;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    border-radius: 0 5rem 0 0;
  }

  .hero-media img {
    object-position: center center;
  }

  .hero-video {
    display: none;
  }

  .hero-content {
    min-height: 0;
    padding: 2.8rem 0 5.5rem;
  }

  .hero-content h1 {
    max-width: 8ch;
  }

  .hero-actions {
    display: grid;
  }

  .scroll-cue {
    bottom: 1.2rem;
    left: 0;
  }

  .video-control {
    display: none;
  }

  .ritual-heading,
  .mood-heading,
  .builder-header,
  .page-intro {
    grid-template-columns: 1fr;
  }

  .ritual-heading {
    gap: 1.5rem;
  }

  .ritual-steps {
    gap: 0;
    grid-template-columns: 1fr;
  }

  .pour-line {
    top: 0;
    right: auto;
    bottom: 0;
    left: 0.4rem;
    width: 1px;
    height: auto;
  }

  .pour-line::after {
    width: 100%;
    height: 100%;
    transform: translateY(-100%);
  }

  .is-visible .pour-line::after {
    transform: translateY(0);
  }

  .ritual-step {
    padding: 0 0 4rem 3rem;
  }

  .ritual-step::before {
    top: 0.35rem;
    left: 0.05rem;
  }

  .split-counter-grid {
    gap: 5rem;
    grid-template-columns: 1fr;
  }

  .counter-center {
    grid-row: 2;
  }

  .counter-center h2 {
    margin: 0;
  }

  .counter-side:last-child {
    grid-row: 3;
  }

  .counter-side:last-child figure {
    aspect-ratio: 4 / 5;
  }

  .set-menu-layout {
    grid-template-columns: 1fr;
  }

  .set-menu-visual {
    position: relative;
    top: auto;
  }

  .set-menu-visual figure {
    aspect-ratio: 4 / 5;
  }

  .mood-heading p {
    justify-self: start;
  }

  .mood-chooser {
    grid-template-columns: 1fr;
  }

  .mood-tabs {
    border-right: 0;
  }

  .mood-result {
    min-height: 27rem;
  }

  .cafe-story,
  .editorial-pause-grid,
  .stay-layout,
  .visit-home-layout,
  .footer-main,
  .booking-layout,
  .visit-page-grid,
  .service-support-inner {
    grid-template-columns: 1fr;
  }

  .cafe-image-wrap,
  .cafe-image-wrap img {
    min-height: 0;
    height: auto;
  }

  .cafe-image-wrap img {
    aspect-ratio: 1 / 1.15;
  }

  .editorial-pause-grid {
    min-height: 0;
  }

  .editorial-pause figure {
    height: 38rem;
  }

  .editorial-pause-copy {
    padding-top: 1rem;
  }

  .stay-statements,
  .preparation-grid {
    grid-template-columns: 1fr;
  }

  .stay-statement {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(75, 48, 41, 0.22);
  }

  .builder-step {
    display: block;
  }

  .choice-list {
    margin-top: 1.4rem;
  }

  .builder-summary {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .location-pin {
    top: 15%;
    right: 12%;
  }

  .footer-main {
    gap: 3rem;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-main {
    padding-top: 5rem;
  }

  .page-hero {
    min-height: 37rem;
    grid-template-columns: 1fr;
  }

  .page-hero-index {
    position: absolute;
    top: 10rem;
    right: 6vw;
    opacity: 0.25;
  }

  .image-page-hero figure {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 4 / 3;
    margin-top: 3rem;
  }

  .image-page-hero figure::after {
    display: none;
  }

  .detail-menu-group,
  .cafe-category {
    gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .detail-menu-group header {
    position: relative;
    top: auto;
  }

  .service-support-inner {
    gap: 3rem;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .expect-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience-editorial {
    grid-template-columns: 1fr;
  }

  .experience-editorial figure {
    min-height: 42rem;
  }

  .gallery-stage {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .gallery-feature {
    aspect-ratio: 4 / 5;
  }

  .gallery-coming {
    min-height: 30rem;
  }

  .visit-page-grid .visit-details,
  .booking-aside {
    position: relative;
    top: auto;
  }

  .closing-cta {
    gap: 3rem;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .section-wide {
    width: 100%;
    padding-inline: 7vw;
  }

  .hero {
    width: 100%;
  }

  .hero-frame {
    border-radius: 0;
  }

  .hero-media {
    border-radius: 0 4.5rem 0 0;
    margin-inline: 5vw;
    width: 90vw;
  }

  .hero-content {
    padding-inline: 7vw;
  }

  .scroll-cue {
    left: 7vw;
  }

  .split-counter {
    padding-inline: 7vw;
  }

  .counter-side:first-child figure {
    border-radius: 0 0 6rem 0;
  }

  .set-group-toggle {
    grid-template-columns: 2.2rem 1fr auto;
    font-size: 1.75rem;
  }

  .service-line {
    padding-left: 2.2rem;
    align-items: start;
    gap: 0.35rem;
    grid-template-columns: 1fr;
  }

  .service-price {
    max-width: none;
    text-align: left;
  }

  .mood-section,
  .builder-section,
  .visit-home,
  .closing-cta {
    padding-inline: 7vw;
  }

  .mood-tabs button {
    min-height: 5.2rem;
  }

  .mood-result {
    min-height: 31rem;
    padding: 2rem;
  }

  .cafe-image-wrap::before {
    right: -1rem;
  }

  .editorial-pause figure {
    height: 31rem;
  }

  .editorial-pause figcaption {
    right: -1.1rem;
  }

  .choice-list {
    display: grid;
  }

  .choice-list label span {
    width: 100%;
  }

  .visit-details > div {
    align-items: start;
    padding-block: 1rem;
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-base {
    flex-direction: column;
  }

  .page-hero {
    width: 100%;
    padding-inline: 7vw;
  }

  .detail-service {
    grid-template-columns: 1fr auto;
  }

  .detail-service dl {
    grid-column: 1;
  }

  .detail-service dd {
    max-width: none;
    text-align: left;
  }

  .cafe-items article {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .menu-prices {
    justify-content: flex-start;
  }

  .menu-prices div {
    text-align: left;
  }

  .preparation-grid article {
    min-height: 15rem;
  }

  .cafe-category header {
    grid-template-columns: 1rem 2rem 1fr;
  }

  .allergy-notice {
    grid-template-columns: 1fr;
  }

  .expect-flow {
    grid-template-columns: 1fr;
  }

  .experience-editorial figure {
    min-height: 34rem;
  }

  .gallery-filters {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-fields,
  .accessibility-principles {
    grid-template-columns: 1fr;
  }

  .form-field-full {
    grid-column: auto;
  }

  .draft-banner {
    display: block;
  }

  .draft-banner p {
    margin-top: 0.75rem;
  }
}

/* 2026 art-direction refinement: tighter editorial rhythm and clearer menus */
:root {
  --line: rgba(75, 48, 41, 0.22);
  --space-section: clamp(5.75rem, 9vw, 9.5rem);
}

body {
  font-size: clamp(0.98rem, 0.25vw + 0.92rem, 1.06rem);
  line-height: 1.62;
}

h1 {
  font-size: clamp(3.7rem, 7.5vw, 8rem);
}

h2 {
  font-size: clamp(3rem, 5.4vw, 5.9rem);
}

.section-kicker,
.micro-label,
.eyebrow,
.section-index {
  letter-spacing: 0.19em;
}

.lede {
  line-height: 1.55;
}

.button {
  min-height: 3.35rem;
  padding-inline: 1.5rem;
}

.button-dark {
  box-shadow: 0 0.7rem 1.8rem rgba(75, 48, 41, 0.12);
}

.button-outline {
  border-color: rgba(75, 48, 41, 0.58);
  background: rgba(255, 248, 241, 0.88);
}

.header-inner {
  min-height: 6rem;
}

.desktop-nav a,
.header-book {
  font-size: 0.72rem;
}

.header-book {
  transition:
    color 180ms ease,
    background 180ms ease,
    padding 180ms ease;
}

.header-book:hover {
  padding-inline: 1.25rem;
  background: var(--espresso);
  color: var(--cream);
}

.hero {
  padding-top: 7.2rem;
}

.hero-frame {
  min-height: calc(100svh - 8.6rem);
  border-radius: 0 9rem 0 2.25rem;
}

.hero-content {
  min-height: calc(100svh - 8.6rem);
  max-width: 41rem;
}

.hero-content > p {
  max-width: 31rem;
  color: #5b3b33;
  line-height: 1.6;
}

.ritual-heading {
  gap: clamp(2rem, 6vw, 6rem);
}

.ritual-step p,
.counter-caption p,
.stay-statement p {
  line-height: 1.58;
}

.split-counter {
  border-block: 1px solid rgba(185, 147, 85, 0.34);
  background: #4e302a;
}

.split-counter-grid {
  max-width: 1320px;
  margin-inline: auto;
}

.counter-side:first-child img {
  object-position: 54% center;
}

.counter-side:last-child img {
  object-position: center 58%;
}

.counter-caption p {
  max-width: 27rem;
  color: rgba(255, 248, 241, 0.8);
}

.set-menu-copy > .lede {
  max-width: 39rem;
}

.set-group-toggle {
  min-height: 5rem;
}

.service-line {
  min-height: 4.35rem;
}

.service-line strong {
  font-size: 0.91rem;
}

.service-line small {
  display: block;
  margin-top: 0.12rem;
}

.service-price {
  max-width: 14rem;
  color: #6f4b42;
  font-size: 0.75rem;
  line-height: 1.35;
}

.mood-chooser {
  min-height: 28rem;
}

.mood-tabs button {
  min-height: 5.8rem;
}

.cafe-image-wrap img {
  object-position: 50% 54%;
}

.editorial-pause {
  border-block: 1px solid rgba(185, 147, 85, 0.28);
  background: #f5e8e5;
}

.editorial-pause-grid {
  min-height: 44rem;
}

.editorial-pause-copy p {
  color: #62473f;
  font-size: 1.05rem;
}

.stay-media img {
  height: auto;
  object-position: center 48%;
}

.choice-list label span {
  min-height: 3.25rem;
  padding-inline: 1.15rem;
}

.visit-details dd {
  color: #60463e;
  font-size: 0.92rem;
}

.footer-links a {
  min-height: 3.35rem;
}

.page-hero {
  min-height: clamp(32rem, 70vh, 47rem);
}

.page-hero h1 {
  max-width: 10ch;
  font-size: clamp(3.8rem, 6.4vw, 7rem);
  line-height: 0.94;
}

.page-hero p {
  line-height: 1.58;
}

.image-page-hero figure img {
  object-position: center 48%;
}

.services-menu {
  width: var(--page-narrow);
}

.detail-menu-group {
  padding-block: 4.25rem;
  gap: clamp(3rem, 6vw, 6rem);
  grid-template-columns: minmax(15rem, 0.38fr) minmax(0, 1.62fr);
}

.detail-menu-group header h2 {
  max-width: 8ch;
  font-size: clamp(2.75rem, 4.5vw, 5rem);
}

.detail-service {
  min-height: 7.2rem;
  padding-block: 1.45rem;
}

.detail-service h3 {
  font-size: clamp(1.65rem, 2.05vw, 2.25rem);
  line-height: 1.05;
}

.detail-service dt {
  color: #73584f;
}

.detail-service dd {
  font-size: 0.84rem;
  line-height: 1.35;
}

.detail-service > a {
  width: 3.25rem;
  height: 3.25rem;
}

.service-support-inner {
  gap: clamp(4rem, 8vw, 8rem);
}

.preparation-grid {
  gap: clamp(1.5rem, 3vw, 3rem);
}

.preparation-grid article {
  min-height: 16.5rem;
  padding: 2rem 0;
  border-width: 1px 0 0;
}

.preparation-grid article:nth-child(2) {
  padding-inline: 2rem;
  border-width: 1px;
  background: rgba(248, 220, 227, 0.42);
}

.cafe-category {
  padding-block: 3.75rem;
  gap: clamp(3rem, 6vw, 6rem);
  grid-template-columns: minmax(17rem, 0.55fr) minmax(0, 1.45fr);
}

.cafe-items article {
  min-height: 5.6rem;
}

.cafe-items h3 {
  font-size: 1rem;
}

.menu-prices dd {
  font-size: 0.95rem;
}

.experience-grid {
  align-items: start;
  gap: 0 clamp(3rem, 7vw, 7rem);
  background: transparent;
  grid-template-columns: 1.12fr 0.88fr;
}

.experience-card,
.experience-card:nth-child(2),
.experience-card:nth-child(3),
.experience-card:nth-child(4) {
  min-height: 22rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--espresso);
  background: transparent;
}

.experience-card:nth-child(2) {
  margin-top: 6rem;
}

.experience-card:nth-child(3) {
  margin-top: -2rem;
}

.experience-card:nth-child(4) {
  margin-top: 4rem;
}

.experience-card h3 {
  margin-top: 4.5rem;
}

.visit-info {
  gap: 0;
  background: transparent;
}

.visit-info article,
.visit-info article:nth-child(even) {
  min-height: 13rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  background: transparent;
}

.visit-info article:nth-child(2) {
  padding-inline: 2.5rem;
  border: 1px solid var(--line);
  background: rgba(248, 220, 227, 0.46);
}

.closing-cta {
  min-height: 30rem;
}

@media (min-width: 1100px) {
  .cafe-category.is-long .cafe-items {
    display: grid;
    border-top: 0;
    column-gap: 2.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cafe-category.is-long .cafe-items article {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 899px) {
  .detail-menu-group,
  .cafe-category {
    gap: 2.5rem;
    grid-template-columns: 1fr;
  }
}

@media (min-width: 600px) and (max-width: 899px) {
  .header-inner {
    min-height: 5rem;
  }

  .hero {
    width: 100%;
    padding: 5rem 5vw 0;
  }

  .hero-frame {
    display: grid;
    min-height: 42rem;
    height: min(78svh, 48rem);
    overflow: hidden;
    border-radius: 0 5rem 0 2rem;
    background: var(--cream-deep);
    box-shadow: var(--shadow-soft);
    grid-template-columns: minmax(18rem, 0.92fr) minmax(0, 1.08fr);
  }

  .hero-media {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    border-radius: 5rem 0 0;
    grid-column: 2;
    grid-row: 1;
  }

  .hero-media img {
    object-position: 61% center;
  }

  .hero-content {
    min-height: 0;
    padding: 5.5rem 2.1rem 5rem;
    grid-column: 1;
    grid-row: 1;
  }

  .hero-content h1 {
    max-width: 7ch;
    font-size: clamp(4rem, 8.5vw, 4.8rem);
  }

  .hero-content > p {
    font-size: 0.95rem;
  }

  .hero-actions {
    display: grid;
  }

  .scroll-cue {
    bottom: 1.35rem;
    left: 2.1rem;
  }

  .split-counter-grid {
    gap: 3rem 2rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .counter-center {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .counter-side:first-child {
    grid-column: 1;
    grid-row: 2;
  }

  .counter-side:last-child {
    grid-column: 2;
    grid-row: 2;
  }

  .counter-side:first-child figure,
  .counter-side:last-child figure {
    aspect-ratio: 4 / 5;
  }

  .set-menu-layout {
    gap: 2.5rem;
    grid-template-columns: minmax(15rem, 0.72fr) minmax(0, 1.28fr);
  }

  .set-menu-visual {
    position: sticky;
    top: 6.5rem;
  }

  .set-menu-visual figure {
    aspect-ratio: 4 / 5.7;
  }

  .set-menu-copy h2 {
    font-size: 4.1rem;
  }

  .set-group-toggle {
    grid-template-columns: 2.5rem 1fr auto;
    font-size: 1.75rem;
  }

  .service-line {
    padding-left: 2.5rem;
  }

  .editorial-pause-grid,
  .stay-layout {
    gap: 3rem;
    grid-template-columns: minmax(16rem, 0.82fr) minmax(0, 1.18fr);
  }

  .stay-media img {
    height: 28rem;
    aspect-ratio: auto;
  }

  .editorial-pause figure {
    height: 34rem;
  }

  .editorial-pause h2 {
    font-size: 4.4rem;
  }

  .image-page-hero {
    min-height: 40rem;
    align-items: center;
    grid-template-columns: minmax(18rem, 0.92fr) minmax(0, 1.08fr);
  }

  .image-page-hero figure {
    position: absolute;
    inset: 0 0 0 auto;
    width: 49%;
    height: 100%;
    aspect-ratio: auto;
    margin: 0;
  }

  .image-page-hero figure::after {
    display: block;
    background: linear-gradient(90deg, var(--rose), transparent 34%);
  }

  .image-page-hero .page-hero-copy {
    max-width: 22rem;
  }

  .image-page-hero h1 {
    font-size: clamp(3.8rem, 7.5vw, 4.4rem);
  }
}

@media (max-width: 599px) {
  :root {
    --space-section: clamp(5rem, 17vw, 6.5rem);
  }

  body {
    font-size: 0.98rem;
  }

  h2 {
    font-size: clamp(2.75rem, 11vw, 4.3rem);
  }

  .hero-media {
    aspect-ratio: 1 / 1.06;
  }

  .hero-media img {
    object-position: center 54%;
  }

  .hero-content {
    padding-top: 2.2rem;
  }

  .hero-content h1 {
    max-width: 7.5ch;
    font-size: clamp(3.45rem, 15vw, 4.2rem);
  }

  .hero-content > p {
    margin-top: 1.2rem;
  }

  .hero-actions {
    margin-top: 1.6rem;
  }

  .split-counter {
    padding-block: 5.5rem;
  }

  .counter-center {
    grid-row: 1;
    text-align: left;
  }

  .counter-side:first-child {
    grid-row: 2;
  }

  .counter-side:last-child {
    grid-row: 3;
  }

  .counter-center h2 {
    max-width: 8ch;
  }

  .set-menu-visual figure {
    aspect-ratio: 1 / 1.16;
  }

  .set-groups {
    margin-top: 2.8rem;
  }

  .mood-chooser {
    margin-top: 3.5rem;
  }

  .mood-tabs button {
    min-height: 4.7rem;
  }

  .mood-result {
    min-height: 24rem;
  }

  .editorial-pause figure {
    height: 28rem;
  }

  .stay-statements {
    margin-top: 4rem;
  }

  .builder-step {
    padding-block: 2rem;
  }

  .page-hero {
    min-height: 32rem;
    padding-block: 5rem 3.25rem;
  }

  .page-hero h1 {
    max-width: 9ch;
    font-size: clamp(3.3rem, 14vw, 4.25rem);
  }

  .image-page-hero {
    min-height: auto;
  }

  .image-page-hero figure {
    aspect-ratio: 1 / 0.86;
    margin-top: 2.5rem;
  }

  .detail-menu-group {
    padding-block: 3.5rem;
  }

  .detail-service {
    min-height: 0;
    gap: 1rem;
    padding-block: 1.5rem;
  }

  .detail-service h3 {
    font-size: 1.75rem;
  }

  .detail-service > a {
    width: 3rem;
    height: 3rem;
  }

  .detail-service dd {
    font-size: 0.82rem;
  }

  .preparation-grid article,
  .preparation-grid article:nth-child(2) {
    min-height: 0;
    padding: 2rem 0;
    border-width: 1px 0 0;
    background: transparent;
  }

  .cafe-category {
    padding-block: 3.25rem;
  }

  .cafe-items article {
    min-height: 5.25rem;
    align-items: center;
    gap: 0.8rem;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .cafe-items h3 {
    line-height: 1.35;
  }

  .menu-prices {
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 0.55rem;
  }

  .menu-prices div {
    min-width: 3.7rem;
    text-align: right;
  }

  .experience-grid {
    gap: 0;
    grid-template-columns: 1fr;
  }

  .experience-card,
  .experience-card:nth-child(2),
  .experience-card:nth-child(3),
  .experience-card:nth-child(4) {
    min-height: 19rem;
    margin-top: 0;
  }

  .experience-card h3 {
    margin-top: 3.5rem;
  }

  .visit-info article,
  .visit-info article:nth-child(even),
  .visit-info article:nth-child(2) {
    min-height: 0;
    padding: 2rem 0;
    border-width: 1px 0 0;
    background: transparent;
  }

  .closing-cta {
    min-height: 27rem;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .pour-line::after {
    transform: none;
  }

  .counter-side:hover,
  .button:hover {
    transform: none;
  }
}
