:root {
  --ink: #123534;
  --deep: #0b4c4e;
  --brand-teal: #00848a;
  --porcelain: #f8f7f2;
  --rice: #ecebe2;
  --silk: #fffdf7;
  --white: #fffdf7;
  --gold: #b98a3d;
  --old-gold: #8f6429;
  --line: rgba(16, 37, 31, 0.14);
  --line-gold: rgba(185, 138, 61, 0.34);
  --shadow: 0 28px 70px rgba(16, 37, 31, 0.12);
  --ease-luxury: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  overflow-x: clip;
  background: linear-gradient(180deg, var(--porcelain), #f0efe7 52%, var(--porcelain));
  font-family: "Alegreya Sans", "Noto Serif SC", system-ui, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Marcellus, "Noto Serif SC", serif;
  font-weight: 400;
  letter-spacing: -0.006em;
}

h1 {
  max-width: 780px;
  margin-bottom: 1.1rem;
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.96;
  text-wrap: balance;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 4.7vw, 4.8rem);
  line-height: 1;
  text-wrap: balance;
}

h3 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.12rem, 1.8vw, 1.45rem);
  line-height: 1.15;
}

.reveal {
  opacity: 1;
  transform: translateY(20px);
  transition: transform 860ms var(--ease-luxury);
}

.reveal.in-view {
  transform: translateY(0);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 28px), var(--max));
  margin: 14px auto 0;
  padding: 8px 10px;
  border: 1px solid rgba(251, 247, 239, 0.68);
  border-radius: 999px;
  background: rgba(251, 247, 239, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(16, 37, 31, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  overflow: hidden;
  background: var(--brand-teal);
  border-radius: 13px;
  box-shadow: inset 0 0 0 1px rgba(16, 37, 31, 0.12);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.site-footer strong {
  display: block;
  font-family: Marcellus, "Noto Serif SC", serif;
  font-size: 1.24rem;
  font-weight: 400;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: rgba(16, 37, 31, 0.68);
  font-family: "Noto Serif SC", serif;
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(16, 37, 31, 0.76);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 420ms var(--ease-luxury), background 420ms var(--ease-luxury), transform 420ms var(--ease-luxury);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(185, 138, 61, 0.13);
  outline: none;
}

.site-nav .nav-cta {
  color: var(--white);
  background: var(--ink);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 520ms var(--ease-luxury), opacity 520ms var(--ease-luxury);
}

.menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 92dvh;
  padding: 7rem max(22px, calc((100vw - var(--max)) / 2)) 4.5rem;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
}

.hero::after {
  content: "";
  position: absolute;
  right: 7vw;
  bottom: 12vh;
  width: 1px;
  height: 36vh;
  background: linear-gradient(180deg, transparent, rgba(185, 138, 61, 0.72), transparent);
  opacity: 0.8;
  animation: steam-line 6s var(--ease-luxury) infinite;
}

.hero-media,
.hero-media::after {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transform: scale(1.03);
  animation: image-drift 18s var(--ease-luxury) infinite alternate;
}

.hero-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(16, 37, 31, 0.94), rgba(16, 37, 31, 0.58) 48%, rgba(16, 37, 31, 0.14)),
    linear-gradient(0deg, rgba(16, 37, 31, 0.88), rgba(16, 37, 31, 0.04) 56%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  min-width: 0;
}

.hero-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding: 8px 13px 8px 8px;
  border: 1px solid rgba(255, 253, 247, 0.2);
  border-radius: 999px;
  background: rgba(0, 128, 132, 0.22);
  color: rgba(255, 253, 247, 0.84);
  font-size: 0.86rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.hero-brand-lockup img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.eyebrow,
.location-kicker {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: block;
  color: rgba(255, 253, 247, 0.8);
}

.hero-copy {
  max-width: 540px;
  margin-bottom: 1.45rem;
  color: rgba(255, 253, 247, 0.86);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.hero-actions,
.booking-actions,
.gift-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 520ms var(--ease-luxury), background 520ms var(--ease-luxury), color 520ms var(--ease-luxury), border-color 520ms var(--ease-luxury), box-shadow 520ms var(--ease-luxury);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(16, 37, 31, 0.13);
}

.button:active {
  transform: scale(0.98);
}

.button.primary {
  color: var(--ink);
  background: var(--silk);
}

.button.secondary {
  border-color: rgba(255, 253, 247, 0.42);
  color: var(--silk);
  background: rgba(255, 253, 247, 0.1);
}

.button.ink {
  color: var(--white);
  background: var(--ink);
}

.button.dark {
  border-color: rgba(16, 37, 31, 0.22);
  color: var(--ink);
  background: rgba(255, 253, 247, 0.28);
}

.button.ghost {
  border-color: rgba(255, 250, 242, 0.44);
  color: var(--white);
}

.quiet-link,
.text-link {
  color: inherit;
  font-weight: 800;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.quiet-link {
  color: rgba(255, 253, 247, 0.88);
}

.button:focus-visible,
.quiet-link:focus-visible,
.text-link:focus-visible,
.mobile-book-bar a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.proof-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(calc(100% - 40px), var(--max));
  margin: -38px auto 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 247, 0.62);
  border-radius: 24px;
  background: rgba(255, 253, 247, 0.42);
  box-shadow: var(--shadow);
}

.proof-rail a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  min-height: 86px;
  padding: 18px 20px;
  border-right: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 253, 247, 0.9);
  font-weight: 800;
  text-decoration: none;
}

.proof-rail a:last-child {
  border-right: 0;
}

.proof-rail strong {
  font-family: Marcellus, "Noto Serif SC", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1;
}

.proof-rail span {
  color: rgba(16, 37, 31, 0.64);
  font-size: 0.9rem;
  line-height: 1.1;
}

.expansion-ribbon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 16px;
  width: min(calc(100% - 40px), 900px);
  margin: 18px auto 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: rgba(16, 37, 31, 0.68);
  font-size: 0.94rem;
}

.expansion-ribbon strong {
  color: var(--ink);
  font-family: Marcellus, "Noto Serif SC", serif;
  font-size: 1.15rem;
  font-weight: 400;
}

.expansion-ribbon a {
  color: var(--old-gold);
  font-weight: 900;
  text-decoration-color: rgba(185, 138, 61, 0.5);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.quick-locations {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(calc(100% - 40px), 980px);
  margin: 18px auto 0;
}

.quick-locations a {
  display: grid;
  gap: 5px;
  min-height: 118px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 253, 247, 0.62);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(16, 37, 31, 0.05);
}

.quick-locations span,
.quick-locations small {
  color: rgba(16, 37, 31, 0.62);
  font-size: 0.82rem;
  font-weight: 800;
}

.quick-locations span {
  color: var(--old-gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-locations strong {
  font-family: Marcellus, "Noto Serif SC", serif;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 400;
}

.section-pad {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 112px) 0;
}

section[id] {
  scroll-margin-top: 96px;
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-head.compact {
  max-width: 620px;
}

.section-head p {
  max-width: 660px;
  color: rgba(16, 37, 31, 0.7);
  font-size: 1.05rem;
}

.location-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.location-list article {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 247, 0.62);
  box-shadow: 0 18px 48px rgba(16, 37, 31, 0.07);
}

.location-list h3 {
  font-family: Marcellus, "Noto Serif SC", serif;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  font-weight: 400;
}

.location-note {
  color: rgba(16, 37, 31, 0.64);
  font-size: 0.94rem;
}

.location-list dl {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.location-list dl div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.location-list dt {
  color: var(--old-gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-list dd {
  margin: 0;
  color: rgba(16, 37, 31, 0.72);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.location-list .map-link {
  margin-top: 12px;
  font-size: 0.82rem;
}

.expansion-card {
  display: grid;
  grid-template-columns: 1.1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 14px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line-gold);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.56), rgba(243, 234, 220, 0.74)),
    radial-gradient(circle at 85% 10%, rgba(185, 138, 61, 0.18), transparent 38%);
  box-shadow: 0 18px 48px rgba(16, 37, 31, 0.06);
}

.expansion-card h3 {
  margin-bottom: 0.35rem;
  font-family: Marcellus, "Noto Serif SC", serif;
  font-size: clamp(1.7rem, 3.2vw, 2.75rem);
  font-weight: 400;
}

.expansion-card p:not(.location-kicker) {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(16, 37, 31, 0.68);
}

.expansion-details {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
  color: rgba(16, 37, 31, 0.68);
  font-size: 0.88rem;
  font-weight: 800;
}

.expansion-details span {
  padding-top: 10px;
  border-top: 1px solid var(--line-gold);
}

.expansion-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.service-menu {
  position: relative;
}

.service-menu::before {
  content: "";
  position: absolute;
  top: 34px;
  right: max(-36px, calc((100vw - var(--max)) / -2));
  width: min(54vw, 700px);
  aspect-ratio: 3 / 1;
  pointer-events: none;
  background: url("assets/optimized/toudaotang-botanical-steam.png") center / contain no-repeat;
  opacity: 0.32;
  mix-blend-mode: multiply;
}

.service-menu > * {
  position: relative;
  z-index: 1;
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 350px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 247, 0.58);
  box-shadow: 0 18px 48px rgba(16, 37, 31, 0.07);
}

.service-card.featured {
  color: var(--silk);
  background:
    radial-gradient(circle at 80% 12%, rgba(185, 138, 61, 0.2), transparent 32%),
    linear-gradient(145deg, var(--ink), var(--deep));
}

.service-card.featured p {
  color: rgba(255, 253, 247, 0.78);
}

.service-card.featured .text-link {
  color: var(--white);
}

.service-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 2px;
}

.service-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 16px;
}

.service-detail span {
  border: 1px solid rgba(16, 37, 31, 0.14);
  border-radius: 999px;
  padding: 6px 9px;
  color: rgba(16, 37, 31, 0.62);
  background: rgba(255, 253, 247, 0.42);
  font-size: 0.8rem;
  font-weight: 800;
}

.service-card.featured .service-detail span {
  border-color: rgba(255, 253, 247, 0.2);
  color: rgba(255, 253, 247, 0.78);
  background: rgba(255, 253, 247, 0.08);
}

.service-badge-row span {
  border: 1px solid rgba(255, 253, 247, 0.2);
  border-radius: 999px;
  padding: 6px 9px;
  color: rgba(255, 253, 247, 0.78);
  background: rgba(255, 253, 247, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
}

.signature-grid .text-link {
  margin-top: auto;
}

.service-meta {
  margin-bottom: 26px;
  color: var(--old-gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signature-grid p:not(.service-meta) {
  color: rgba(16, 37, 31, 0.72);
}

.signature-grid ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.signature-grid li {
  position: relative;
  padding-left: 18px;
  color: rgba(16, 37, 31, 0.72);
}

.signature-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
}

.service-card.featured li {
  color: rgba(255, 253, 247, 0.78);
}

.care-note {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(16, 37, 31, 0.64);
  font-size: 0.92rem;
}

.ritual {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.service-image {
  position: relative;
}

.service-image::before {
  content: "";
  position: absolute;
  inset: -14px 14px 14px -14px;
  border: 1px solid var(--line-gold);
  border-radius: 28px;
}

.service-image img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.steps {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.steps p {
  margin: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: rgba(16, 37, 31, 0.75);
}

.steps strong {
  color: var(--ink);
}

.visit-gallery {
  padding-top: 0;
}

.visit-gallery > div:first-child {
  max-width: 620px;
  margin-bottom: 26px;
}

.visit-gallery > div:first-child p {
  color: rgba(16, 37, 31, 0.68);
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1.25fr 0.82fr 0.82fr;
  grid-auto-rows: 218px;
  gap: 14px;
}

.gallery-strip figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 10px;
  position: relative;
  overflow: visible;
  margin: 0;
}

.gallery-strip figure:first-child {
  grid-row: span 2;
}

.gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(16, 37, 31, 0.08);
}

.gallery-strip figure:nth-child(1) img {
  object-position: center 68%;
}

.gallery-strip figure:nth-child(2) img {
  object-position: center 48%;
}

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

.gallery-strip figcaption {
  position: static;
  margin-top: 10px;
  color: rgba(16, 37, 31, 0.62);
  font-size: 0.82rem;
  font-weight: 800;
}

.tradition {
  position: relative;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.tradition-mark {
  display: grid;
  place-items: center;
  justify-self: start;
  min-height: 250px;
  width: 72px;
  padding: 18px 0;
  color: var(--white);
  background: var(--brand-teal);
  font-family: "Noto Serif SC", serif;
  font-size: 2.2rem;
  line-height: 1.1;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(255, 253, 247, 0.22), var(--shadow);
}

.tradition p:last-child {
  max-width: 720px;
  color: rgba(16, 37, 31, 0.74);
  font-size: 1.05rem;
}

.seal-art {
  position: absolute;
  right: clamp(10px, 4vw, 46px);
  bottom: clamp(12px, 3vw, 34px);
  width: clamp(96px, 16vw, 170px);
  border-radius: 22px;
  opacity: 0.13;
  filter: saturate(0.92);
  pointer-events: none;
}

.method-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.method-list article {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 253, 247, 0.48);
}

.method-list strong {
  display: block;
  margin-bottom: 8px;
}

.method-list span {
  display: block;
  color: rgba(16, 37, 31, 0.66);
  font-size: 0.92rem;
}

.reviews {
  text-align: center;
}

.reviews .section-head {
  margin-inline: auto;
}

.featured-review {
  max-width: 840px;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 46px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.featured-review p {
  margin-bottom: 18px;
  font-family: Marcellus, "Noto Serif SC", serif;
  font-size: clamp(1.6rem, 3.5vw, 3.1rem);
  line-height: 1.08;
  color: var(--ink);
}

.featured-review cite {
  color: rgba(16, 37, 31, 0.62);
  font-style: normal;
  font-weight: 800;
}

.proof-sources,
.review-themes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
  text-align: left;
}

.proof-source,
.review-themes article {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  background: rgba(255, 253, 247, 0.6);
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(16, 37, 31, 0.06);
}

.proof-source strong {
  display: block;
  color: var(--ink);
  font-family: Marcellus, "Noto Serif SC", serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
}

.proof-source span {
  display: block;
  margin-top: 8px;
  color: rgba(16, 37, 31, 0.68);
  font-size: 0.86rem;
  font-weight: 800;
}

.review-themes {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 12px;
}

.review-themes p {
  color: rgba(16, 37, 31, 0.72);
}

.review-themes span {
  display: block;
  margin-bottom: 12px;
  color: var(--old-gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-note {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(16, 37, 31, 0.58);
  font-size: 0.85rem;
}

.checked-note {
  margin-top: 8px;
  color: rgba(16, 37, 31, 0.64) !important;
  font-size: 0.86rem !important;
}

.review-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 22px;
}

.gift {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.gift-visual {
  width: min(100%, 420px);
  aspect-ratio: 16 / 9;
  margin-top: 28px;
  border: 1px solid var(--line-gold);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 253, 247, 0.56);
  box-shadow: var(--shadow);
}

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

.gift-actions {
  justify-content: flex-end;
}

.gift-actions p {
  flex-basis: 100%;
  max-width: 560px;
  margin-left: auto;
  color: rgba(16, 37, 31, 0.72);
}

.gift-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  flex-basis: 100%;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
}

.gift-options article {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 253, 247, 0.52);
}

.gift-options strong,
.gift-options span {
  display: block;
}

.gift-promise {
  margin-top: 6px;
  color: rgba(16, 37, 31, 0.62) !important;
  font-size: 0.94rem;
  font-weight: 800;
}

.gift-options span {
  margin-top: 8px;
  color: rgba(16, 37, 31, 0.66);
  font-size: 0.92rem;
}

.gift-terms {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
  flex-basis: 100%;
  max-width: 560px;
  margin-left: auto;
}

.gift-terms span {
  padding: 8px 10px;
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.58);
  color: rgba(16, 37, 31, 0.68);
  font-size: 0.84rem;
  font-weight: 800;
}

.faq {
  padding-top: 0;
}

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

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

.faq-list summary {
  cursor: pointer;
  padding: 19px 0;
  font-weight: 800;
}

.faq-list p {
  max-width: 780px;
  margin: 0;
  padding: 0 0 22px;
  color: rgba(16, 37, 31, 0.72);
}

.booking {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 28px;
  align-items: center;
  width: min(calc(100% - 40px), var(--max));
  margin-bottom: 54px;
  padding: clamp(30px, 6vw, 58px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 37, 31, 0.98), rgba(23, 56, 47, 0.94)),
    radial-gradient(circle at 86% 18%, rgba(163, 58, 47, 0.24), transparent 30%);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.booking p {
  color: rgba(255, 253, 247, 0.72);
}

.booking-actions {
  justify-content: flex-end;
}

.site-footer {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 30px 0 42px;
  border-top: 1px solid var(--line);
}

.site-footer p,
.site-footer span {
  color: rgba(16, 37, 31, 0.68);
}

.site-footer a {
  margin-left: 16px;
  font-weight: 800;
}

.footer-locations {
  text-align: right;
}

.footer-locations p {
  margin-bottom: 10px;
}

.footer-locations strong {
  display: inline;
  margin-right: 8px;
  font-family: "Alegreya Sans", "Noto Serif SC", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.desktop-book-pill {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 8;
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 253, 247, 0.5);
  border-radius: 999px;
  background: rgba(16, 37, 31, 0.88);
  box-shadow: 0 18px 50px rgba(16, 37, 31, 0.24);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 520ms var(--ease-luxury), transform 520ms var(--ease-luxury);
}

.desktop-book-pill.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.desktop-book-pill a {
  display: grid;
  min-height: 42px;
  place-items: center;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--silk);
  font-weight: 800;
  text-decoration: none;
}

.mobile-book-bar {
  display: none;
}

.mobile-book-bar.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
}

@keyframes image-drift {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.2%, -0.8%, 0);
  }
}

@keyframes steam-line {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }
  50% {
    transform: translateY(-20px);
    opacity: 0.9;
  }
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 8px;
    border-radius: 22px;
    background: rgba(251, 247, 239, 0.98);
    border: 1px solid var(--line);
  }

  .site-nav.open {
    display: flex;
  }

  .proof-rail,
  .proof-sources,
  .review-themes,
  .location-list,
  .signature-grid,
  .ritual,
  .tradition,
  .gift,
  .booking {
    grid-template-columns: 1fr;
  }

  .signature-grid article {
    min-height: auto;
  }

  .booking-actions,
  .gift-actions {
    justify-content: flex-start;
  }

  .gift-actions p {
    margin-left: 0;
  }

  .gift-terms {
    justify-content: flex-start;
    margin-left: 0;
  }

  .gift-options,
  .method-list {
    grid-template-columns: 1fr 1fr;
    margin-left: 0;
  }

  .expansion-card {
    grid-template-columns: 1fr;
  }

  .expansion-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 920px) and (min-width: 641px) {
  .proof-rail,
  .proof-sources,
  .review-themes,
  .location-list,
  .signature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-rail a:nth-child(2),
  .proof-rail a:nth-child(4) {
    border-right: 0;
  }

  .ritual,
  .tradition,
  .gift,
  .booking,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-locations {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .brand strong {
    font-size: 1.05rem;
  }

  .hero {
    min-height: 100dvh;
    padding: 6.25rem 20px 2.8rem;
  }

  .service-menu::before {
    top: 24px;
    right: -120px;
    width: 480px;
    opacity: 0.2;
  }

  .hero::after {
    right: 18px;
    bottom: 18vh;
    height: 28vh;
  }

  h1 {
    font-size: clamp(2.55rem, 11vw, 3.05rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.85rem);
  }

  .hero-copy {
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-actions,
  .booking-actions,
  .gift-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .proof-rail,
  .section-pad,
  .site-footer {
    width: calc(100% - 32px);
  }

  .proof-rail {
    margin-top: -18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-rail a {
    grid-template-columns: 1fr;
    gap: 3px;
    min-height: 86px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    text-align: center;
  }

  .proof-rail a:nth-child(2),
  .proof-rail a:nth-child(4) {
    border-right: 0;
  }

  .proof-rail a:nth-child(3),
  .proof-rail a:nth-child(4) {
    border-bottom: 0;
  }

  .proof-rail span {
    font-size: 0.82rem;
  }

  .section-pad {
    padding: 56px 0;
  }

  .location-list article {
    min-height: auto;
    padding: 24px;
  }

  .location-list dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .gallery-strip {
    display: flex;
    gap: 12px;
    max-width: 100%;
    margin-inline: 0;
    padding: 0 0 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .gallery-strip figure {
    flex: 0 0 82%;
    height: 320px;
    scroll-snap-align: start;
  }

  .gallery-strip figure:first-child {
    grid-row: auto;
  }

  .gallery-strip img {
    height: 100%;
  }

  .service-image::before {
    display: none;
  }

  .tradition {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .seal-art {
    width: 92px;
    opacity: 0.12;
  }

  .tradition-mark {
    min-height: 210px;
    width: 58px;
    font-size: 1.8rem;
  }

  .featured-review {
    padding-inline: 0;
  }

  .booking {
    margin-bottom: 36px;
  }

  .site-footer {
    display: block;
  }

  .footer-locations {
    text-align: left;
  }

  .gift-options,
  .quick-locations,
  .method-list {
    grid-template-columns: 1fr;
  }

  .desktop-book-pill {
    display: none;
  }

  .site-footer a {
    display: inline-block;
    margin: 10px 16px 0 0;
  }

  .mobile-book-bar {
    position: fixed;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 10px;
    z-index: 9;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 253, 247, 0.4);
    border-radius: 999px;
    background: rgba(16, 37, 31, 0.92);
    backdrop-filter: blur(14px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity 420ms var(--ease-luxury), transform 420ms var(--ease-luxury);
  }

  .mobile-book-bar.visible:not(.hidden) {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-book-bar a {
    display: grid;
    min-height: 44px;
    place-items: center;
    border-radius: 999px;
    color: var(--ink);
    background: var(--silk);
    font-size: 0.78rem;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
  }

  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
