
:root {
  --burgundy: #861f24;
  --burgundy-dark: #5d1217;
  --burgundy-soft: #a33a3e;
  --cream: #f4e9ce;
  --cream-soft: #fbf7ed;
  --paper: #fffdf8;
  --gold: #c3a56a;
  --gold-dark: #9a793c;
  --green: #6e8748;
  --ink: #2d2622;
  --muted: #756860;
  --line: rgba(134, 31, 36, 0.17);
  --serif: "Noto Serif", "Times New Roman", Georgia, serif;
  --sans: "Noto Sans", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--cream-soft);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis: none;
}

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

button,
input,
select {
  font: inherit;
}

button,
input,
select,
textarea {
  font-family: var(--sans);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(195, 165, 106, 0.75);
  outline-offset: 3px;
}

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

img {
  display: block;
}

.shell {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
  position: relative;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 12px 18px;
  background: white;
  color: var(--burgundy);
  border-radius: 8px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

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

.utility-bar {
  background: var(--burgundy-dark);
  color: #fff7e6;
  font-size: 12px;
  letter-spacing: 0.025em;
}

.utility-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-inner p {
  margin: 0;
}

.utility-inner strong {
  color: white;
}

.live-dot {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  margin-right: 7px;
  background: #c2df69;
  box-shadow: 0 0 0 4px rgba(194, 223, 105, 0.12);
}

.utility-shuttle {
  opacity: 0.8;
}

.utility-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.utility-actions a {
  font-weight: 700;
}

.utility-actions span {
  opacity: 0.65;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid rgba(134, 31, 36, 0.09);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  width: 104px;
  min-width: 104px;
  display: grid;
  grid-template-columns: 28px 1fr;
  grid-template-rows: 36px 11px;
  align-items: center;
  color: var(--burgundy);
  position: relative;
}

.brand-leaf {
  grid-row: 1;
  grid-column: 1;
  color: var(--green);
  font-size: 19px;
  transform: rotate(19deg);
  align-self: start;
  margin-top: 2px;
}

.brand-name {
  grid-row: 1;
  grid-column: 1 / 3;
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  letter-spacing: -0.04em;
}

.brand-sub {
  grid-row: 2;
  grid-column: 1 / 3;
  text-align: center;
  font-size: 7px;
  line-height: 1;
  letter-spacing: 0.17em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.6vw, 42px);
  font-size: 13px;
  font-weight: 700;
}

.main-nav a {
  padding: 32px 0;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 22px;
  height: 1px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--burgundy);
  transition: transform 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  height: 46px;
  min-width: 126px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 999px;
  background: var(--burgundy);
  color: white;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--burgundy-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  padding: 11px;
  background: transparent;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--burgundy);
}

.hero {
  min-height: 720px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(70, 38, 18, 0.76) 0%, rgba(70, 38, 18, 0.52) 27%, rgba(70, 38, 18, 0.05) 60%, rgba(70, 38, 18, 0) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 245, 218, 0.32);
  pointer-events: none;
}

.hero-botanical {
  position: absolute;
  left: -46px;
  bottom: -90px;
  z-index: 1;
  font-family: var(--serif);
  color: rgba(232, 202, 143, 0.26);
  font-size: 380px;
  line-height: 1;
  transform: rotate(-17deg);
}

.hero-content {
  z-index: 2;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-top: 86px;
  padding-bottom: 86px;
}

.hero-copy {
  width: min(650px, 62vw);
  color: white;
  animation: rise-in 0.7s ease both;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--burgundy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #ead098;
}

.hero h1 {
  margin: 0;
  max-width: 620px;
  font-family: var(--serif);
  font-size: clamp(62px, 6.3vw, 92px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero h1 em,
.ritual-copy h2 em,
.booking-copy h2 em {
  color: #ebd097;
  font-weight: 400;
}

.hero-description {
  max-width: 555px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

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

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

.button-primary:hover {
  background: #a1262d;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  background: white;
  color: var(--burgundy);
}

.hero-language {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--serif);
  font-size: 12px;
}

.hero-language i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-card {
  width: 210px;
  flex: 0 0 210px;
  padding: 22px;
  margin-bottom: 6px;
  background: rgba(255, 253, 248, 0.92);
  color: var(--burgundy);
  border-radius: 6px 28px 6px 28px;
  box-shadow: 0 18px 70px rgba(70, 38, 18, 0.23);
  animation: rise-in 0.7s 0.14s ease both;
}

.hero-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.hero-card-top span {
  font-size: 8px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.16em;
}

.hero-card-top strong {
  font-family: var(--serif);
  font-size: 35px;
  line-height: 0.9;
}

.hero-card p {
  margin: 18px 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.hero-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 800;
}

.quick-strip {
  background: var(--burgundy);
  color: white;
}

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

.quick-item {
  min-height: 116px;
  padding: 24px 34px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.quick-item:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.quick-item > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 26px;
}

.quick-item strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
}

.quick-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.quick-link {
  transition: background 0.25s ease;
}

.quick-link:hover {
  background: rgba(255, 255, 255, 0.07);
}

.services-section {
  background: var(--cream-soft);
}

.services-section::before,
.menu-gallery-section::before {
  content: "❧";
  position: absolute;
  top: -90px;
  right: -55px;
  color: rgba(195, 165, 106, 0.15);
  font-family: var(--serif);
  font-size: 360px;
  transform: rotate(15deg);
}

.section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 52px;
}

.section-heading h2,
.ritual-copy h2,
.shuttle-copy h2,
.booking-copy h2 {
  margin: 0;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 80px;
}

.split-heading > p {
  max-width: 455px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  position: relative;
  z-index: 1;
}

.service-card {
  min-height: 318px;
  padding: 31px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.54);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  z-index: 2;
  transform: translateY(-7px);
  background: white;
  box-shadow: 0 24px 60px rgba(93, 18, 23, 0.11);
}

.service-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 42px;
}

.service-card-head span {
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 22px;
}

.service-card-head b {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--burgundy);
  font-weight: 400;
}

.service-en {
  margin: 0 0 7px !important;
  color: var(--gold-dark) !important;
  font-size: 9px !important;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0 0 14px;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.service-card > p:not(.service-en) {
  min-height: 63px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

.service-meta {
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--burgundy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.menu-section {
  background: var(--burgundy-dark);
  color: white;
}

.menu-section::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image: radial-gradient(circle at 15% 20%, rgba(234, 208, 151, 0.55) 0 1px, transparent 1px), radial-gradient(circle at 85% 80%, rgba(234, 208, 151, 0.36) 0 1px, transparent 1px);
  background-size: 44px 44px, 60px 60px;
  pointer-events: none;
}

.menu-section .shell {
  position: relative;
  z-index: 1;
}

.menu-heading {
  max-width: 730px;
}

.menu-heading h2 {
  color: white;
}

.menu-heading > p:last-child {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 14px;
  line-height: 1.7;
}

.menu-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 25px;
  overflow-x: auto;
  scrollbar-width: none;
}

.menu-tabs::-webkit-scrollbar {
  display: none;
}

.menu-tabs button {
  min-width: 120px;
  height: 44px;
  padding: 0 20px;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: 0.25s ease;
}

.menu-tabs button:hover,
.menu-tabs button.is-active {
  color: var(--burgundy-dark);
  border-color: var(--cream);
  background: var(--cream);
}

.menu-panel {
  min-height: 660px;
  display: grid;
  grid-template-columns: 38% 62%;
  background: var(--cream);
  color: var(--ink);
}

.menu-visual {
  min-height: 660px;
  position: relative;
  overflow: hidden;
}

.menu-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(52, 20, 10, 0.72));
}

.menu-visual img {
  object-fit: cover;
}

.menu-visual-label {
  position: absolute;
  left: 34px;
  bottom: 32px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  color: white;
}

.menu-visual-label span {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 0.8;
}

.menu-visual-label small {
  padding-bottom: 5px;
  font-size: 8px;
  letter-spacing: 0.18em;
}

.menu-list-wrap {
  padding: 42px 48px 34px;
  background: var(--cream);
  background-image: linear-gradient(rgba(195, 165, 106, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(195, 165, 106, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
}

.menu-title-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(134, 31, 36, 0.25);
}

.menu-title-row p {
  margin: 0 0 6px;
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.menu-title-row h3 {
  margin: 0;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
}

.menu-title-row > span {
  align-self: flex-start;
  white-space: nowrap;
  color: var(--burgundy);
  font-size: 10px;
  font-weight: 800;
}

.menu-intro {
  max-width: 620px;
  margin: 18px 0 22px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.menu-list {
  max-height: 425px;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-color: var(--gold) rgba(134, 31, 36, 0.1);
  scrollbar-width: thin;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.72fr);
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(134, 31, 36, 0.26);
}

.menu-item-copy {
  display: flex;
  gap: 13px;
}

.menu-item-copy > span {
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 13px;
}

.menu-item h4 {
  margin: 0 0 4px;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
}

.menu-item p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}

.menu-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.menu-prices span {
  color: var(--burgundy);
  font-size: 11px;
  font-weight: 800;
}

.text-link {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 28px;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  color: var(--burgundy);
  font-size: 12px;
  font-weight: 800;
}

.light-link {
  color: var(--burgundy);
}

.ritual-section {
  background: var(--paper);
}

.ritual-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 90px;
  align-items: center;
}

.ritual-image-wrap {
  min-height: 640px;
  position: relative;
  overflow: visible;
}

.ritual-image-wrap::before {
  content: "";
  position: absolute;
  inset: 20px -20px -20px 20px;
  border: 1px solid var(--gold);
}

.ritual-image-wrap img {
  object-fit: cover;
}

.ritual-badge {
  width: 128px;
  height: 128px;
  position: absolute;
  right: -48px;
  top: 54px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 50%;
  background: var(--burgundy);
  color: white;
  box-shadow: 0 16px 45px rgba(93, 18, 23, 0.25);
}

.ritual-badge strong {
  font-family: var(--serif);
  font-size: 34px;
}

.ritual-badge span {
  max-width: 45px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 8px;
  line-height: 1.35;
  text-transform: uppercase;
}

.ritual-copy {
  padding-left: 18px;
}

.ritual-copy > p:not(.eyebrow) {
  max-width: 530px;
  margin: 30px 0 34px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.ritual-copy h2 em {
  color: var(--gold-dark);
}

.ritual-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ritual-copy li {
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.ritual-copy li > span {
  color: var(--gold-dark);
  font-family: var(--serif);
}

.ritual-copy li strong {
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.ritual-copy li p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.shuttle-section {
  background: var(--burgundy);
  color: white;
}

.shuttle-section::before {
  content: "❧";
  position: absolute;
  left: -40px;
  bottom: -100px;
  color: rgba(234, 208, 151, 0.1);
  font-family: var(--serif);
  font-size: 420px;
  transform: rotate(-12deg);
}

.shuttle-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 80px;
}

.shuttle-copy {
  position: relative;
  z-index: 1;
}

.shuttle-copy h2 {
  color: white;
}

.shuttle-copy > p:not(.eyebrow) {
  margin: 26px 0 30px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 14px;
  line-height: 1.78;
}

.route-list {
  margin: 0 0 34px;
}

.route-list > div {
  display: grid;
  grid-template-columns: 36px 1fr;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.route-list span {
  grid-row: 1 / 3;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 16px;
}

.route-list strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.route-list small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
}

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

.map-card {
  padding: 15px;
  position: relative;
  z-index: 1;
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 24px 80px rgba(62, 9, 14, 0.3);
}

.map-top {
  min-height: 68px;
  padding: 4px 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.map-top span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-dark);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.map-top strong {
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
}

.map-top a {
  color: var(--burgundy);
  font-size: 11px;
  font-weight: 800;
}

.map-card iframe {
  width: 100%;
  height: 390px;
  display: block;
  border: 0;
  filter: sepia(0.18) saturate(0.75) contrast(0.98);
}

.map-address {
  padding: 19px 10px 6px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.map-address > span {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--burgundy);
  color: white;
}

.map-address strong {
  display: block;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 17px;
}

.map-address p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.reviews-section {
  background: var(--cream-soft);
}

.reviews-heading {
  grid-template-columns: 1.3fr 0.7fr;
}

.rating-block {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}

.rating-block > strong {
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 68px;
  font-weight: 400;
  line-height: 0.8;
}

.rating-block span {
  color: var(--gold-dark);
  letter-spacing: 0.1em;
}

.rating-block p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.review-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.review-grid > article {
  min-height: 330px;
  padding: 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.review-featured {
  background: var(--burgundy);
  color: white;
}

.quote-mark {
  height: 70px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 90px;
  line-height: 1;
}

.review-featured blockquote {
  max-width: 500px;
  margin: 28px 0 52px;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.15;
}

.review-featured > div:last-child {
  display: flex;
  align-items: center;
  gap: 13px;
}

.review-featured > div:last-child > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--burgundy);
  font-family: var(--serif);
}

.review-featured p {
  margin: 0;
}

.review-featured strong {
  display: block;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
}

.review-featured small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
}

.review-card > span {
  display: block;
  margin-bottom: 95px;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 20px;
}

.review-card h3 {
  margin: 0 0 15px;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
}

.review-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.review-cta-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.review-cta-row > p {
  max-width: 430px;
  margin: 26px 0 6px;
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}

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

.menu-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.menu-gallery a {
  aspect-ratio: 1.44 / 1;
  position: relative;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 12px 36px rgba(93, 18, 23, 0.09);
}

.menu-gallery img {
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-gallery a:hover img {
  transform: scale(1.035);
}

.menu-gallery a::after {
  content: "";
  position: absolute;
  inset: 56% 0 0;
  background: linear-gradient(transparent, rgba(43, 15, 7, 0.78));
}

.menu-gallery span {
  position: absolute;
  left: 20px;
  bottom: 17px;
  z-index: 2;
  color: white;
  font-size: 11px;
  font-weight: 800;
}

.booking-section {
  background: var(--burgundy-dark);
  color: white;
}

.booking-section::after {
  content: "❧";
  position: absolute;
  right: -40px;
  top: -100px;
  color: rgba(234, 208, 151, 0.09);
  font-family: var(--serif);
  font-size: 440px;
  transform: rotate(18deg);
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 86px;
  position: relative;
  z-index: 1;
}

.booking-copy h2 {
  color: white;
}

.booking-copy > p:not(.eyebrow) {
  margin: 26px 0 32px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.75;
}

.booking-contact-list {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.booking-contact-list > * {
  padding: 16px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.booking-contact-list > * > span {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--gold);
}

.booking-contact-list small {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 8px;
  letter-spacing: 0.16em;
}

.booking-contact-list strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.booking-form {
  padding: 42px;
  background: var(--cream);
  color: var(--ink);
}

.form-heading {
  margin-bottom: 28px;
  padding-bottom: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  border-bottom: 1px solid rgba(134, 31, 36, 0.22);
}

.form-heading span {
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.form-heading strong {
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 18px;
}

.booking-form label {
  display: grid;
  gap: 8px;
}

.booking-form label > span {
  color: var(--burgundy);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select {
  width: 100%;
  height: 49px;
  padding: 0 13px;
  border: 1px solid rgba(134, 31, 36, 0.22);
  border-radius: 0;
  outline: 0;
  background: rgba(255, 253, 248, 0.7);
  color: var(--ink);
  font-size: 12px;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(134, 31, 36, 0.08);
}

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

.booking-form button {
  width: 100%;
  height: 58px;
  margin-top: 26px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: var(--burgundy);
  color: white;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition: 0.25s ease;
}

.booking-form button:hover {
  background: var(--burgundy-dark);
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

.form-note.success {
  color: var(--green);
  font-weight: 700;
}

.site-footer {
  padding: 76px 0 25px;
  background: #311112;
  color: white;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 0.75fr);
  gap: 55px;
  padding-bottom: 52px;
}

.footer-brand {
  color: white;
}

.footer-brand-col > p {
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.4;
}

.footer-top h3 {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-top > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-top a,
.footer-top > div:not(:first-child) p {
  margin: 0 0 11px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  line-height: 1.65;
}

.footer-top a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

@keyframes rise-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1060px) {
  .main-nav {
    gap: 20px;
  }

  .hero {
    min-height: 660px;
  }

  .hero-card {
    display: none;
  }

  .hero-copy {
    width: min(680px, 72vw);
  }

  .service-card {
    padding: 26px;
  }

  .ritual-grid,
  .shuttle-grid,
  .booking-grid {
    gap: 54px;
  }

  .review-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }
}

@media (max-width: 860px) {
  .shell {
    width: min(100% - 32px, 720px);
  }

  .section {
    padding: 84px 0;
  }

  .utility-shuttle,
  .utility-actions span {
    display: none;
  }

  .utility-inner {
    min-height: 34px;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .nav-wrap {
    height: 72px;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    padding: 20px 24px 28px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(93, 18, 23, 0.12);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a::after {
    display: none;
  }

  .nav-cta {
    margin-left: auto;
    min-width: 110px;
  }

  .hero {
    min-height: 700px;
  }

  .hero-image {
    object-position: 67% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(60, 26, 11, 0.83), rgba(60, 26, 11, 0.47) 65%, rgba(60, 26, 11, 0.14));
  }

  .hero-copy {
    width: min(620px, 88vw);
  }

  .quick-grid,
  .service-grid,
  .menu-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-item:nth-child(3) {
    grid-column: 1 / -1;
  }

  .split-heading,
  .ritual-grid,
  .shuttle-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 24px;
  }

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

  .menu-visual {
    min-height: 360px;
  }

  .ritual-image-wrap {
    min-height: 560px;
  }

  .ritual-copy {
    padding: 35px 0 0;
  }

  .shuttle-copy {
    max-width: 620px;
  }

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

  .review-featured {
    grid-column: 1 / -1;
  }

  .rating-block {
    justify-self: start;
  }

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

  .footer-top > div:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 74px;
  }

  body {
    padding-bottom: 62px;
  }

  .shell {
    width: calc(100% - 28px);
  }

  .section {
    padding: 68px 0;
  }

  .utility-bar {
    font-size: 10px;
  }

  .utility-actions {
    gap: 0;
  }

  .brand {
    transform: scale(0.9);
    transform-origin: left center;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 660px;
    align-items: end;
  }

  .hero::after {
    inset: 12px;
  }

  .hero-image {
    object-position: 67% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(61, 24, 11, 0.92) 0%, rgba(61, 24, 11, 0.67) 47%, rgba(61, 24, 11, 0.12) 100%);
  }

  .hero-content {
    padding-top: 185px;
    padding-bottom: 44px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 65px);
  }

  .hero-description {
    margin-top: 21px;
    font-size: 14px;
    line-height: 1.6;
  }

  .hero-actions {
    margin-top: 25px;
  }

  .button {
    min-height: 52px;
    padding: 0 19px;
    gap: 15px;
  }

  .hero-language {
    gap: 8px;
    margin-top: 22px;
    font-size: 9px;
  }

  .quick-grid,
  .service-grid,
  .menu-gallery,
  .review-grid,
  .form-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .quick-item:nth-child(3),
  .review-featured,
  .form-full,
  .footer-top > div:last-child {
    grid-column: auto;
  }

  .quick-item {
    min-height: 88px;
    padding: 18px 22px;
    border-left: 1px solid rgba(255, 255, 255, 0.17);
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .ritual-copy h2,
  .shuttle-copy h2,
  .booking-copy h2 {
    font-size: 43px;
  }

  .service-card {
    min-height: 280px;
  }

  .menu-list-wrap {
    padding: 30px 22px;
  }

  .menu-title-row {
    flex-direction: column;
  }

  .menu-title-row h3 {
    font-size: 26px;
  }

  .menu-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .menu-prices {
    padding-left: 36px;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .menu-visual {
    min-height: 300px;
  }

  .ritual-image-wrap {
    min-height: 430px;
  }

  .ritual-image-wrap::before {
    inset: 12px -8px -10px 10px;
  }

  .ritual-badge {
    width: 100px;
    height: 100px;
    right: -2px;
    top: 20px;
  }

  .ritual-badge strong {
    font-size: 28px;
  }

  .map-card iframe {
    height: 300px;
  }

  .review-grid > article {
    min-height: 280px;
    padding: 27px;
  }

  .review-card > span {
    margin-bottom: 58px;
  }

  .review-cta-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-cta-row > p {
    text-align: left;
  }

  .booking-form {
    padding: 28px 20px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-top > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    gap: 14px;
    flex-direction: column;
  }

  .mobile-contact-bar {
    height: 62px;
    padding: 8px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    background: rgba(255, 253, 248, 0.97);
    border-top: 1px solid var(--line);
    box-shadow: 0 -12px 30px rgba(93, 18, 23, 0.14);
    backdrop-filter: blur(16px);
  }

  .mobile-contact-bar a {
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--burgundy);
    font-size: 10px;
    font-weight: 800;
  }

  .mobile-contact-bar a:nth-child(2) {
    border-color: var(--burgundy);
    background: var(--burgundy);
    color: white;
  }
}

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

/* Lá Spa v2: official branding, language switcher and two-location map */
.brand-official {
  width: 118px;
  min-width: 118px;
  height: 72px;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #791a17;
  box-shadow: 0 8px 24px rgba(93, 18, 23, 0.12);
}

.brand-official img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-wrap {
  height: 88px;
  gap: 22px;
}

.main-nav {
  gap: clamp(15px, 1.9vw, 30px);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream-soft);
  box-shadow: 0 4px 14px rgba(93, 18, 23, 0.05);
}

.language-switcher button {
  min-height: 31px;
  padding: 0 9px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 9px;
  font-weight: 800;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.language-switcher button:hover,
.language-switcher button:focus-visible {
  color: var(--burgundy);
}

.language-switcher button.is-active {
  background: var(--burgundy);
  color: white;
}

.menu-tabs {
  flex-wrap: wrap;
}

.menu-visual-brand {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 3;
  width: 94px;
  height: 80px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: #791a17;
  box-shadow: 0 10px 30px rgba(45, 16, 10, 0.28);
}

.menu-visual-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.branch-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 12px 2px 2px;
}

.map-visual {
  /* Dedicated in-page location panel; exact routing stays in the two map links below. */
  min-height: 350px;
  padding: 42px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  overflow: hidden;
  border: 1px solid rgba(134, 31, 36, 0.14);
  background:
    radial-gradient(circle at 22% 70%, rgba(110, 135, 72, 0.2), transparent 23%),
    radial-gradient(circle at 78% 25%, rgba(195, 165, 106, 0.22), transparent 25%),
    linear-gradient(135deg, #f4e9ce, #fffaf0);
}

.map-visual::before,
.map-visual::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 1px;
  background: rgba(134, 31, 36, 0.14);
  transform: rotate(-32deg);
}

.map-visual::after {
  transform: rotate(31deg);
}

.map-visual > span {
  width: 88px;
  height: 88px;
  z-index: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--burgundy);
  color: white;
  font-size: 38px;
  box-shadow: 0 18px 45px rgba(93, 18, 23, 0.22);
}

.map-visual > div {
  z-index: 1;
  max-width: 320px;
}

.map-visual small {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.map-visual strong {
  display: block;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.05;
}

.map-visual p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.branch-card {
  min-height: 94px;
  padding: 15px;
  display: grid;
  grid-template-columns: 30px 1fr 18px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(134, 31, 36, 0.16);
  background: rgba(255, 253, 248, 0.88);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.branch-card:hover {
  transform: translateY(-2px);
  border-color: var(--burgundy);
  background: white;
}

.branch-card > span {
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 19px;
}

.branch-card strong {
  display: block;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
}

.branch-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
}

.branch-card b {
  color: var(--burgundy);
  font-weight: 400;
}

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

.menu-gallery a {
  aspect-ratio: 4 / 3;
  background: #eee8d8;
}

.menu-gallery img {
  padding: 4px;
  object-fit: contain;
}

.footer-brand.brand-official {
  width: 128px;
  height: 110px;
  transform: none;
}

.footer-static {
  margin: 0 0 11px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  line-height: 1.65;
}

html[lang="ko"] body {
  font-family: Arial, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
}

html[lang="ru"] body {
  font-family: Arial, Helvetica, sans-serif;
}

@media (max-width: 1120px) {
  .nav-wrap {
    gap: 14px;
  }

  .main-nav {
    gap: 14px;
    font-size: 11px;
  }

  .language-switcher button {
    padding-inline: 7px;
  }
}

@media (max-width: 900px) {
  .nav-wrap {
    height: 76px;
  }

  .brand-official {
    width: 90px;
    min-width: 90px;
    height: 62px;
    transform: none;
  }

  .main-nav {
    top: 76px;
  }

  .language-switcher {
    margin-left: auto;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    order: initial;
  }

  .branch-list {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .nav-wrap {
    height: 70px;
    gap: 7px;
  }

  .brand-official {
    width: 68px;
    min-width: 68px;
    height: 54px;
    transform: none;
  }

  .main-nav {
    top: 70px;
  }

  .language-switcher {
    gap: 1px;
    padding: 3px;
  }

  .language-switcher button {
    min-height: 28px;
    padding: 0 5px;
    font-size: 8px;
  }

  .menu-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .menu-tabs button {
    flex: 0 0 auto;
  }

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

  .branch-card {
    grid-template-columns: 28px 1fr 16px;
    padding: 13px;
  }

  .map-visual {
    min-height: 260px;
    padding: 28px 20px;
    gap: 18px;
  }

  .map-visual > span {
    width: 64px;
    height: 64px;
    font-size: 29px;
  }

  .map-visual strong {
    font-size: 27px;
  }
}

/* Lá Spa v3: typography and UX normalization for Vietnamese / English / Korean / Russian */
html[lang="vi"],
html[lang="en"] {
  --sans: "Noto Sans", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --serif: "Noto Serif", "Times New Roman", Georgia, serif;
}

html[lang="ko"] {
  --sans: "Noto Sans KR", "Noto Sans CJK KR", "Apple SD Gothic Neo", "Malgun Gothic", "Segoe UI", Arial, sans-serif;
  --serif: "Noto Sans KR", "Noto Sans CJK KR", "Apple SD Gothic Neo", "Malgun Gothic", "Segoe UI", Arial, sans-serif;
  word-break: keep-all;
}

html[lang="ru"] {
  --sans: "Noto Sans", "Segoe UI", Roboto, Arial, sans-serif;
  --serif: "Noto Serif", "Times New Roman", Georgia, serif;
}

html[lang="ko"] body,
html[lang="ru"] body {
  font-family: var(--sans);
}

html[lang="ko"] em {
  font-style: normal;
}

.utility-bar {
  font-size: 13px;
}

.main-nav {
  font-size: 14px;
}

.main-nav a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}

.language-switcher {
  padding: 5px;
  gap: 2px;
}

.language-switcher button {
  min-width: 38px;
  min-height: 38px;
  padding-inline: 10px;
  font-size: 12px;
  line-height: 1;
}

.nav-cta,
.button,
.menu-tabs button,
.booking-form button,
.mobile-contact-bar a {
  touch-action: manipulation;
}

.eyebrow {
  font-size: 12px;
  line-height: 1.45;
}

.hero h1 {
  font-size: clamp(56px, 5.2vw, 78px);
  line-height: 0.98;
}

.hero-copy {
  width: min(700px, 64vw);
}

.hero-description {
  max-width: 590px;
  font-size: 18px;
  line-height: 1.65;
}

.button {
  min-height: 54px;
  font-size: 14px;
}

.hero-language {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.35;
}

.hero-card {
  width: 224px;
  flex-basis: 224px;
}

.hero-card-top span {
  font-size: 11px;
}

.hero-card p,
.hero-card a {
  font-size: 13px;
}

.quick-item strong {
  font-size: 19px;
}

.quick-item p {
  font-size: 13px;
  line-height: 1.45;
}

.split-heading > p,
.menu-heading > p:last-child,
.ritual-copy > p:not(.eyebrow),
.shuttle-copy > p:not(.eyebrow),
.booking-copy > p:not(.eyebrow) {
  font-size: 15px;
}

.service-en {
  font-size: 11px !important;
  line-height: 1.4;
}

.service-card > p:not(.service-en) {
  font-size: 14px;
  line-height: 1.65;
}

.service-meta {
  font-size: 13px;
}

.menu-tabs button {
  min-width: 128px;
  height: 48px;
  font-size: 14px;
}

.menu-visual-label small,
.menu-title-row p,
.menu-title-row > span {
  font-size: 12px;
}

.menu-intro {
  font-size: 14px;
  line-height: 1.65;
}

.menu-item {
  padding-block: 18px;
}

.menu-item h4 {
  font-size: 18px;
}

.menu-item p,
.menu-prices span {
  font-size: 13px;
  line-height: 1.5;
}

.text-link {
  min-height: 44px;
  font-size: 14px;
}

.ritual-badge span,
.route-list small,
.rating-block p,
.review-featured small,
.review-card p,
.review-cta-row > p {
  font-size: 13px;
}

.ritual-copy li p {
  font-size: 14px;
  line-height: 1.5;
}

.map-top span,
.map-visual small {
  font-size: 11px;
}

.map-top a,
.map-visual p {
  font-size: 13px;
}

.branch-card {
  min-height: 106px;
}

.branch-card strong {
  font-size: 18px;
}

.branch-card p {
  font-size: 13px;
  line-height: 1.5;
}

.booking-contact-list small {
  font-size: 11px;
}

.booking-contact-list strong {
  font-size: 19px;
}

.form-heading span,
.booking-form label > span {
  font-size: 12px;
}

.booking-form input,
.booking-form select {
  min-height: 52px;
  font-size: 15px;
  border-radius: 8px;
}

.booking-form button {
  min-height: 58px;
  font-size: 14px;
  border-radius: 8px;
}

.form-note {
  font-size: 12px;
  line-height: 1.55;
}

.footer-top h3 {
  font-size: 12px;
}

.footer-top a,
.footer-top > div:not(:first-child) p,
.footer-static {
  font-size: 14px;
  line-height: 1.6;
}

.footer-bottom p {
  font-size: 11px;
}

html[lang="ko"] .hero h1,
html[lang="ko"] .section-heading h2,
html[lang="ko"] .ritual-copy h2,
html[lang="ko"] .shuttle-copy h2,
html[lang="ko"] .booking-copy h2 {
  letter-spacing: -0.035em;
  line-height: 1.12;
}

html[lang="ru"] .hero h1,
html[lang="ru"] .section-heading h2,
html[lang="ru"] .ritual-copy h2,
html[lang="ru"] .shuttle-copy h2,
html[lang="ru"] .booking-copy h2 {
  letter-spacing: -0.025em;
  line-height: 1.03;
}

@media (max-width: 1120px) {
  .main-nav {
    font-size: 13px;
  }

  .language-switcher button {
    min-width: 34px;
    padding-inline: 8px;
    font-size: 11px;
  }
}

@media (max-width: 900px) {
  .hero-copy {
    width: min(680px, 88vw);
  }

  .main-nav a {
    min-height: 48px;
    padding: 13px 6px;
    font-size: 15px;
  }

  .language-switcher button {
    min-height: 36px;
  }

  .hero h1 {
    font-size: clamp(52px, 10vw, 72px);
  }
}

@media (max-width: 560px) {
  .hero-copy {
    width: 100%;
  }

  .utility-bar {
    font-size: 11px;
  }

  .language-switcher {
    max-width: calc(100vw - 146px);
    overflow-x: auto;
    scrollbar-width: none;
  }

  .language-switcher::-webkit-scrollbar {
    display: none;
  }

  .language-switcher button {
    min-width: 34px;
    min-height: 34px;
    padding-inline: 7px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(43px, 13.5vw, 58px);
    line-height: 1;
  }

  html[lang="ko"] .hero h1,
  html[lang="ru"] .hero h1 {
    font-size: clamp(39px, 11vw, 50px);
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-language {
    flex-wrap: wrap;
    font-size: 11px;
  }

  .section-heading h2,
  .ritual-copy h2,
  .shuttle-copy h2,
  .booking-copy h2 {
    font-size: 39px;
    line-height: 1.08;
  }

  html[lang="ko"] .section-heading h2,
  html[lang="ko"] .ritual-copy h2,
  html[lang="ko"] .shuttle-copy h2,
  html[lang="ko"] .booking-copy h2,
  html[lang="ru"] .section-heading h2,
  html[lang="ru"] .ritual-copy h2,
  html[lang="ru"] .shuttle-copy h2,
  html[lang="ru"] .booking-copy h2 {
    font-size: 35px;
  }

  .button {
    min-height: 52px;
    padding-inline: 18px;
    font-size: 13px;
  }

  .quick-item strong {
    font-size: 18px;
  }

  .quick-item p,
  .service-card > p:not(.service-en),
  .menu-intro,
  .ritual-copy li p,
  .route-list small,
  .review-card p,
  .footer-top a,
  .footer-top > div:not(:first-child) p,
  .footer-static {
    font-size: 14px;
  }

  .menu-list {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .menu-item p,
  .menu-prices span {
    font-size: 13px;
  }

  .branch-card p {
    font-size: 12px;
  }

  .booking-form label > span,
  .form-heading span {
    font-size: 11px;
  }

  .booking-form input,
  .booking-form select {
    font-size: 16px;
  }

  .mobile-contact-bar a {
    min-height: 44px;
    font-size: 12px;
  }
}

/* WordPress adaptation layer */
[hidden] {
  display: none !important;
}

.custom-logo-link {
  width: 100%;
  height: 100%;
  display: block;
}

.custom-logo-link img,
.brand-official > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero > img.hero-image {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.menu-visual > img,
.ritual-image-wrap > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.menu-gallery a > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: contain;
}

.menu-visual-brand > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu-title-row > span b,
.menu-gallery span b {
  font: inherit;
  font-weight: inherit;
}

body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 600px) {
  body.admin-bar .site-header {
    top: 0;
  }
}
