:root {
  --ink: #171311;
  --smoke: #5e5550;
  --milk: #fbf7f1;
  --linen: #eee2d4;
  --champagne: #c8a46d;
  --bronze: #8d6b43;
  --moss: #475142;
  --card: rgba(255, 252, 247, 0.78);
  --line: rgba(23, 19, 17, 0.13);
  --shadow: 0 28px 90px rgba(42, 29, 19, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--milk);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

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

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

.header-island {
  position: fixed;
  top: 22px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  min-height: 68px;
  padding: 10px 12px 10px 16px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.78);
  box-shadow: 0 18px 60px rgba(42, 29, 19, 0.14);
  backdrop-filter: blur(22px) saturate(1.2);
  transition:
    width 260ms ease,
    min-height 260ms ease,
    padding 260ms ease,
    top 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.header-island.is-compact {
  top: 14px;
  width: min(860px, calc(100% - 56px));
  min-height: 54px;
  padding: 7px 9px 7px 12px;
  border-color: rgba(200, 164, 109, 0.34);
  background: rgba(255, 252, 247, 0.9);
  box-shadow: 0 18px 46px rgba(42, 29, 19, 0.2);
}

.brand,
.header-island nav,
.header-tools,
.language-toggle,
.hero-actions,
.signature,
footer {
  display: flex;
  align-items: center;
}

.brand {
  border-radius: 999px;
}

.header-island.is-compact .brand {
  gap: 8px;
  font-size: 12px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff7eb;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  transition: width 260ms ease, height 260ms ease, font-size 260ms ease;
}

.header-island.is-compact .brand-mark {
  width: 34px;
  height: 34px;
  font-size: 22px;
}

.header-island nav {
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  color: rgba(23, 19, 17, 0.66);
  font-size: 13px;
  font-weight: 800;
  transition: gap 260ms ease, font-size 260ms ease;
}

.header-island.is-compact nav {
  gap: clamp(14px, 2.3vw, 28px);
  font-size: 12px;
}

.header-island nav a {
  transition: color 180ms ease;
}

.header-island nav a:hover {
  color: var(--bronze);
}

.header-tools {
  justify-content: end;
  gap: 8px;
}

.language-toggle {
  min-height: 46px;
  padding: 4px;
  border: 1px solid rgba(23, 19, 17, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(12px);
  transition: min-height 260ms ease, padding 260ms ease;
}

.language-toggle button {
  display: grid;
  min-width: 36px;
  min-height: 36px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(23, 19, 17, 0.56);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.language-toggle button:hover {
  color: var(--ink);
}

.language-toggle button.is-active {
  background: #fffaf3;
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(42, 29, 19, 0.14);
}

.header-island.is-compact .language-toggle {
  min-height: 38px;
  padding: 3px;
}

.header-island.is-compact .language-toggle button {
  min-width: 32px;
  min-height: 30px;
  font-size: 11px;
}

.header-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fffaf2;
  font-size: 13px;
  font-weight: 900;
  transition:
    min-height 260ms ease,
    padding 260ms ease,
    font-size 260ms ease,
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.header-island.is-compact .header-button {
  min-height: 38px;
  padding: 0 14px;
  font-size: 12px;
}

.header-button:hover {
  transform: translateY(-1px);
  background: #2a211d;
  box-shadow: 0 16px 32px rgba(23, 19, 17, 0.22);
}

.hero {
  position: relative;
  height: 100svh;
  max-height: 100svh;
  overflow: hidden;
  background: #d8c4ad;
  isolation: isolate;
}

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

.hero-tint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(251, 247, 241, 0.98) 0%, rgba(251, 247, 241, 0.84) 34%, rgba(251, 247, 241, 0.28) 66%, rgba(23, 19, 17, 0.16) 100%),
    linear-gradient(0deg, rgba(251, 247, 241, 0.96) 0%, rgba(251, 247, 241, 0) 34%);
}

.hero-shell {
  position: relative;
  display: grid;
  z-index: 1;
  grid-template-columns: minmax(0, 660px) minmax(270px, 360px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(1180px, calc(100% - 38px));
  height: 100%;
  margin: 0 auto;
  padding: clamp(104px, 14vh, 142px) 0 clamp(24px, 6vh, 64px);
}

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

.kicker {
  margin: 0 0 14px;
  color: var(--bronze);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
}

h1 {
  max-width: 690px;
  margin-bottom: 20px;
  font-size: clamp(50px, 6.2vw, 88px);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 5.6vw, 82px);
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  letter-spacing: 0;
}

.hero-copy > p {
  max-width: 560px;
  margin-bottom: 24px;
  color: var(--smoke);
  font-size: clamp(16px, 1.45vw, 19px);
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

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

.btn-dark {
  background: var(--ink);
  color: #fff8ee;
  box-shadow: 0 18px 48px rgba(23, 19, 17, 0.22);
}

.btn-dark:hover {
  background: #2b221d;
  box-shadow: 0 24px 58px rgba(23, 19, 17, 0.3);
}

.btn-glass {
  border: 1px solid rgba(23, 19, 17, 0.14);
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  backdrop-filter: blur(12px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 40px rgba(42, 29, 19, 0.12);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 590px;
  margin-top: 22px;
}

.hero-points span {
  padding: 8px 12px;
  border: 1px solid rgba(23, 19, 17, 0.12);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.55);
  color: rgba(23, 19, 17, 0.68);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.hero-panel {
  width: min(100%, 350px);
  justify-self: end;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 252, 247, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.hero-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 164, 109, 0.52);
  box-shadow: 0 34px 100px rgba(42, 29, 19, 0.25);
}

.hero-metrics span {
  color: var(--bronze);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-panel > p {
  margin: 0 0 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(23, 19, 17, 0.12);
  color: var(--smoke);
  font-size: 18px;
  line-height: 1.45;
}

.hero-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(23, 19, 17, 0.12);
}

.hero-metrics div {
  min-height: 104px;
  padding: 16px;
  background: rgba(255, 250, 243, 0.72);
}

.hero-metrics strong {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.1;
}

.signature {
  justify-content: center;
  gap: clamp(14px, 6vw, 72px);
  min-height: 96px;
  padding: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fffaf3;
}

.signature p {
  margin: 0;
  color: rgba(23, 19, 17, 0.62);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.signature p:hover {
  color: var(--bronze);
  transform: translateY(-2px);
}

.section {
  padding: clamp(78px, 9vw, 132px) clamp(18px, 5vw, 64px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
  gap: 24px;
  align-items: end;
  width: min(1120px, 100%);
  margin: 0 auto 38px;
}

.section-head .kicker {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.section-head span {
  color: var(--smoke);
  font-size: 15px;
}

.price-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(1120px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.price-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 128px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: background 220ms ease, box-shadow 220ms ease, padding 220ms ease, transform 220ms ease;
}

.price-list article:hover {
  z-index: 1;
  padding-right: 20px;
  padding-left: 20px;
  background: rgba(255, 250, 243, 0.78);
  box-shadow: 0 22px 50px rgba(42, 29, 19, 0.09);
  transform: translateY(-3px);
}

.price-list article:nth-child(odd):hover {
  padding-right: 42px;
  padding-left: 20px;
}

.price-list article:nth-child(even):hover {
  padding-right: 20px;
  padding-left: 42px;
}

.price-list article:nth-child(odd) {
  padding-right: 30px;
  border-right: 1px solid var(--line);
}

.price-list article:nth-child(even) {
  padding-left: 30px;
}

.price-list p,
.editorial-note p,
.ritual-steps p,
.booking-copy p,
footer {
  color: var(--smoke);
}

.price-list strong {
  color: var(--moss);
  font-size: 15px;
  white-space: nowrap;
  transition: color 180ms ease;
}

.price-list article:hover strong {
  color: var(--bronze);
}

.works {
  background: #181411;
  color: #fff8ed;
}

.works .section-head span,
.works .kicker {
  color: #d7b77f;
}

.gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr;
  gap: 18px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #2a221d;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

figure img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform 520ms ease, filter 260ms ease;
}

figure:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

figure:hover img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.045);
}

.gallery-large {
  grid-row: span 2;
}

figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  background: rgba(24, 20, 17, 0.72);
  color: #fff8ed;
  backdrop-filter: blur(18px);
  transition: background 220ms ease, transform 220ms ease;
}

figure:hover figcaption {
  background: rgba(24, 20, 17, 0.84);
  transform: translateY(-4px);
}

figcaption span {
  display: block;
  margin-bottom: 6px;
  color: #d7b77f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

figcaption strong {
  display: block;
}

.editorial-note {
  display: flex;
  min-height: 251px;
  flex-direction: column;
  justify-content: end;
  padding: 30px;
  border: 1px solid rgba(255, 248, 237, 0.18);
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.editorial-note:hover {
  transform: translateY(-7px);
  border-color: rgba(215, 183, 127, 0.46);
  background: rgba(255, 248, 237, 0.04);
}

.editorial-note h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 36px;
  line-height: 1;
}

.editorial-note p {
  color: rgba(255, 248, 237, 0.72);
}

.ritual-panel {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(28px, 5vw, 72px);
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #fffaf3, #efe1d0);
  box-shadow: var(--shadow);
}

.ritual-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.ritual-steps article {
  min-height: 250px;
  padding: 24px;
  background: rgba(255, 252, 247, 0.82);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.ritual-steps article:hover {
  z-index: 1;
  transform: translateY(-6px);
  background: #fffaf3;
  box-shadow: 0 24px 48px rgba(42, 29, 19, 0.13);
}

.ritual-steps span {
  display: block;
  margin-bottom: 54px;
  color: var(--bronze);
  font-weight: 900;
}

.reviews {
  background:
    radial-gradient(circle at 16% 18%, rgba(200, 164, 109, 0.16), transparent 26%),
    linear-gradient(180deg, #fbf7f1 0%, #f3e6d7 100%);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.review-card {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding: 30px;
  border: 1px solid rgba(23, 19, 17, 0.12);
  background: rgba(255, 252, 247, 0.74);
  box-shadow: 0 18px 58px rgba(42, 29, 19, 0.08);
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease, background 240ms ease;
}

.review-card::before {
  content: "";
  position: absolute;
  inset: -60% -40% auto auto;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(200, 164, 109, 0.2), transparent 62%);
  opacity: 0;
  transition: opacity 240ms ease, transform 240ms ease;
}

.review-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 164, 109, 0.46);
  background: rgba(255, 252, 247, 0.92);
  box-shadow: 0 28px 76px rgba(42, 29, 19, 0.16);
}

.review-card:hover::before {
  opacity: 1;
  transform: translate(-16px, 18px);
}

.review-card.featured {
  background: #181411;
  color: #fff8ed;
  box-shadow: 0 28px 86px rgba(24, 20, 17, 0.25);
}

.review-card.featured p {
  color: rgba(255, 248, 237, 0.82);
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.review-top span {
  color: var(--champagne);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.review-top small {
  color: var(--smoke);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.review-card.featured .review-top small {
  color: rgba(255, 248, 237, 0.64);
}

.review-card p {
  position: relative;
  margin-bottom: 0;
  color: var(--smoke);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(26px, 2.2vw, 34px);
  line-height: 1.05;
}

.review-card strong {
  position: relative;
  color: var(--ink);
  font-size: 14px;
}

.review-card.featured strong {
  color: #fff8ed;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 520px);
  gap: clamp(30px, 6vw, 92px);
  align-items: start;
  padding: clamp(78px, 9vw, 132px) clamp(18px, 5vw, 64px);
  background: #f1e4d5;
}

.booking-copy {
  width: min(560px, 100%);
  justify-self: end;
  padding-top: 16px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.75fr);
  gap: 1px;
  width: min(520px, 100%);
  margin-top: 34px;
  background: rgba(23, 19, 17, 0.13);
  box-shadow: 0 22px 62px rgba(42, 29, 19, 0.1);
}

.contact-panel > div {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  background: rgba(255, 252, 247, 0.72);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.contact-panel > div:hover {
  z-index: 1;
  transform: translateY(-4px);
  background: #fffaf3;
  box-shadow: 0 20px 44px rgba(42, 29, 19, 0.12);
}

.contact-panel span {
  color: var(--bronze);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-panel strong {
  font-size: 18px;
}

.social-links,
.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.social-links a,
.footer-socials a {
  position: relative;
  font-weight: 900;
  transition: color 180ms ease, transform 180ms ease;
}

.social-links a::after,
.footer-socials a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.social-links a:hover,
.footer-socials a:hover {
  color: var(--bronze);
  transform: translateY(-1px);
}

.social-links a:hover::after,
.footer-socials a:hover::after {
  transform: scaleX(1);
}

.booking-form {
  display: grid;
  gap: 16px;
  width: min(520px, 100%);
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.64);
  background: rgba(255, 252, 247, 0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.booking-form:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 164, 109, 0.46);
  box-shadow: 0 34px 100px rgba(42, 29, 19, 0.22);
}

label {
  display: grid;
  gap: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select {
  width: 100%;
  height: 50px;
  border: 1px solid rgba(23, 19, 17, 0.16);
  border-radius: 0;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--ink);
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

input:focus,
select:focus {
  outline: 2px solid rgba(200, 164, 109, 0.35);
  border-color: var(--champagne);
  background: #fff;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--moss);
  font-weight: 800;
}

footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) minmax(300px, 0.9fr) auto;
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  overflow: hidden;
  padding: clamp(34px, 5vw, 58px) clamp(18px, 5vw, 64px);
  border-top: 1px solid rgba(255, 248, 237, 0.16);
  background:
    linear-gradient(135deg, rgba(71, 81, 66, 0.82), rgba(23, 19, 17, 0.92) 38%, rgba(141, 107, 67, 0.78)),
    #171311;
  color: #fff8ed;
  font-size: 13px;
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(200, 164, 109, 0.34), transparent 24%),
    radial-gradient(circle at 86% 74%, rgba(229, 177, 137, 0.24), transparent 28%);
  pointer-events: none;
}

footer::after {
  content: "";
  position: absolute;
  left: clamp(18px, 5vw, 64px);
  right: clamp(18px, 5vw, 64px);
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 248, 237, 0.7), transparent);
}

.footer-brand,
.footer-info,
.footer-socials {
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand .brand-mark {
  flex: 0 0 auto;
  background: #fff8ed;
  color: var(--ink);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.footer-brand strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 0.95;
}

.footer-brand p {
  max-width: 420px;
  margin: 10px 0 0;
  color: rgba(255, 248, 237, 0.74);
}

.footer-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 248, 237, 0.18);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.16);
}

.footer-info > div {
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  background: rgba(255, 248, 237, 0.1);
  backdrop-filter: blur(14px);
}

.footer-info span {
  color: #f1d096;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-info strong {
  color: #fffaf3;
  font-size: 16px;
  line-height: 1.25;
}

.footer-socials {
  justify-content: end;
  color: #fff8ed;
}

.footer-socials a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 248, 237, 0.22);
  border-radius: 999px;
  background: rgba(255, 248, 237, 0.1);
  color: #fff8ed;
  backdrop-filter: blur(12px);
}

.footer-socials a::after {
  display: none;
}

.footer-socials a:hover {
  background: #fff8ed;
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

@media (max-width: 960px) {
  .header-island {
    grid-template-columns: auto auto;
    width: min(680px, calc(100% - 24px));
  }

  .header-island.is-compact {
    width: min(610px, calc(100% - 30px));
  }

  .header-island nav {
    display: none;
  }

  .hero-shell,
  .section-head,
  .ritual-panel,
  .booking {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    align-items: start;
    padding-top: clamp(104px, 14vh, 148px);
  }

  .hero-panel,
  .booking-copy {
    justify-self: start;
  }

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

  .price-list,
  .gallery,
  .review-grid,
  .ritual-steps {
    grid-template-columns: 1fr;
  }

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

  .footer-socials {
    justify-content: start;
  }

  .price-list article,
  .price-list article:nth-child(odd),
  .price-list article:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
  }

  .price-list article:hover,
  .price-list article:nth-child(odd):hover,
  .price-list article:nth-child(even):hover {
    padding-right: 18px;
    padding-left: 18px;
  }

  figure img {
    min-height: 420px;
  }

  .gallery-large {
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .header-island {
    top: 12px;
    min-height: 56px;
    padding: 7px 8px;
  }

  .header-island.is-compact {
    top: 8px;
    width: calc(100% - 22px);
    min-height: 50px;
    padding: 6px 7px;
  }

  .brand {
    gap: 8px;
    font-size: 12px;
  }

  .header-island.is-compact .brand {
    gap: 7px;
    font-size: 11px;
  }

  .brand span:last-child {
    max-width: 104px;
    line-height: 1.08;
    white-space: normal;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .header-island.is-compact .brand-mark {
    width: 34px;
    height: 34px;
  }

  .header-tools {
    gap: 6px;
  }

  .language-toggle {
    min-height: 40px;
    padding: 3px;
  }

  .language-toggle button {
    min-width: 31px;
    min-height: 32px;
    font-size: 11px;
  }

  .header-island.is-compact .language-toggle button {
    min-width: 29px;
    min-height: 30px;
  }

  .header-button {
    min-height: 40px;
    padding: 0 12px;
    font-size: 12px;
  }

  .header-island.is-compact .header-button {
    min-height: 36px;
    padding: 0 11px;
    font-size: 11px;
  }

  .hero > img {
    object-position: 62% center;
  }

  .hero-tint {
    background:
      linear-gradient(180deg, rgba(251, 247, 241, 0.98) 0%, rgba(251, 247, 241, 0.84) 50%, rgba(251, 247, 241, 0.22) 100%),
      linear-gradient(0deg, rgba(251, 247, 241, 0.96) 0%, rgba(251, 247, 241, 0) 34%);
  }

  .hero-shell {
    width: calc(100% - 28px);
    padding: 96px 0 22px;
    gap: 16px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 52px);
    margin-bottom: 16px;
  }

  .hero-copy > p {
    margin-bottom: 18px;
    font-size: 15px;
  }

  .hero-points {
    display: none;
  }

  .hero-panel {
    padding: 16px;
  }

  .hero-panel > p {
    margin: 0 0 16px;
    padding-bottom: 16px;
    font-size: 13px;
  }

  .hero-metrics div {
    min-height: 86px;
    padding: 12px;
  }

  .hero-metrics span {
    font-size: 10px;
  }

  .hero-metrics strong {
    margin-top: 9px;
    font-size: 14px;
  }

  h2 {
    font-size: 42px;
  }

  .hero-actions,
  .signature,
  footer {
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .signature {
    text-align: center;
  }

  .section-head .kicker {
    margin-bottom: -2px;
  }

  .price-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  figure img {
    min-height: 390px;
  }

  .ritual-panel {
    padding: 24px 18px;
  }

  .ritual-steps article {
    min-height: 0;
  }

  .ritual-steps span {
    margin-bottom: 24px;
  }

  .review-card {
    min-height: 0;
  }

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

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

  .footer-socials a {
    flex: 1 1 130px;
  }
}

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