:root {
  --bg: #ffffff;
  --bg-soft: #fbf8f3;
  --bg-warm: #f4ede4;
  --text: #2f2d2a;
  --text-soft: #6a635c;
  --line: #e8dfd4;
  --olive: #687456;
  --olive-dark: #4d5840;
  --brown: #7c5d47;
  --brown-dark: #5f4635;
  --sand: #d9c1aa;
  --shadow: 0 18px 40px rgba(57, 42, 31, 0.08);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --radius-pill: 999px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font: 400 16px/1.7 "Manrope", "Segoe UI", sans-serif;
  overflow-x: clip;
}

body.lightbox-open,
body.service-dialog-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

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

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

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

textarea {
  resize: vertical;
}

iframe {
  border: 0;
}

.site-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

[data-site-header] {
  display: block;
  min-height: 84px;
}

[data-site-footer] {
  display: block;
  min-height: 280px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 700;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

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

.button-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 14px;
}

.button-large {
  min-height: 58px;
  padding: 0 30px;
  font-size: 16px;
  box-shadow: 0 16px 34px rgba(104, 116, 86, 0.2);
}

.button-primary {
  color: #fff;
  background: var(--olive);
  box-shadow: 0 10px 22px rgba(104, 116, 86, 0.18);
}

.button-primary:hover {
  background: var(--olive-dark);
}

.button-secondary,
.button-ghost {
  background: #fff;
  color: var(--brown-dark);
  border-color: var(--line);
}

.button-secondary:hover,
.button-ghost:hover {
  border-color: var(--brown);
  color: var(--brown);
}

.text-link {
  position: relative;
  color: var(--brown);
  font-weight: 700;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: currentColor;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(232, 223, 212, 0.88);
  backdrop-filter: blur(12px);
}

.site-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 82px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}

.site-brand-mark {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
}

.site-brand-mark-image {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.site-brand-copy {
  display: grid;
  gap: 1px;
  align-content: center;
  min-width: 0;
}

.site-brand-top {
  color: #a69b91;
  font-size: 8.8px;
  font-weight: 600;
  letter-spacing: 0.28em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-brand-name {
  color: #38251a;
  font: 700 17px/1.02 "Cormorant Garamond", Georgia, serif;
  white-space: nowrap;
}

.eyebrow,
.section-kicker,
.card-label,
.footer-heading,
.field-note {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a8178;
}

.main-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.main-menu a {
  color: var(--text-soft);
  font-weight: 600;
  white-space: nowrap;
}

.main-menu a[aria-current="page"] {
  color: var(--brown-dark);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px 0;
  background: var(--text);
}

.menu-backdrop {
  display: none;
}

.hero {
  position: relative;
  color: #fff;
  overflow: clip;
  background: #3f2e24;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(60, 40, 26, 0.6) 0%, rgba(73, 49, 32, 0.62) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  min-height: 74vh;
  padding: 120px 0 110px;
}

.hero-copy,
.page-hero-copy,
.center-copy {
  width: min(840px, 100%);
}

.hero-copy {
  margin: 0 auto;
  text-align: center;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.center-copy h2,
.notfound-box h1,
.legal-copy h1 {
  margin: 0;
  font: 700 clamp(42px, 7vw, 72px)/0.96 "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.02em;
}

.hero p,
.page-hero p,
.center-copy p,
.section-heading p,
.visual-card p,
.simple-card p,
.review-card p,
.faq-item p,
.article-block p,
.contact-card p,
.legal-block p {
  color: inherit;
  margin: 0;
}

.hero-lead,
.page-hero p {
  margin-top: 18px;
  font-size: 18px;
  color: rgba(255, 250, 244, 0.9);
}

.hero-actions,
.page-actions,
.card-actions,
.contact-actions,
.voucher-note-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-actions {
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.hero .hero-actions .button {
  min-height: 50px;
  padding: 0 24px;
}

.hero .hero-actions .button-secondary {
  background: rgba(255, 250, 244, 0.96);
  border-color: rgba(255, 250, 244, 0.76);
  color: var(--brown-dark);
  box-shadow: 0 14px 28px rgba(37, 25, 17, 0.18);
}

.hero .hero-actions .button-ghost {
  background: rgba(255, 250, 244, 0.12);
  border-color: rgba(255, 250, 244, 0.42);
  color: #fffaf4;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.hero .hero-actions .button-ghost:hover {
  background: rgba(255, 250, 244, 0.2);
  border-color: rgba(255, 250, 244, 0.62);
  color: #fff;
}

.hero-badges,
.stats-row,
.voucher-pills,
.contact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-badges {
  width: fit-content;
  max-width: 100%;
  justify-content: center;
  gap: 0;
  margin: 30px auto 0;
  padding: 8px 10px;
  border: 1px solid rgba(255, 249, 244, 0.22);
  border-radius: var(--radius-pill);
  background: rgba(37, 26, 19, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 40px rgba(37, 25, 17, 0.16);
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 15px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 250, 244, 0.94);
  font-size: 14px;
  font-weight: 700;
}

.hero-badges span + span {
  border-left: 1px solid rgba(255, 249, 244, 0.22);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(760px, 100%);
  margin: 36px auto 0;
}

.stat-card {
  display: grid;
  gap: 5px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(251, 248, 243, 0.94)),
    var(--bg-soft);
  box-shadow: 0 16px 34px rgba(57, 42, 31, 0.06);
  text-align: left;
}

.stat-card span {
  color: #8a8178;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.stat-card strong {
  color: var(--brown-dark);
  font-size: 15px;
  line-height: 1.35;
}

.voucher-pills span,
.contact-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--bg-soft);
  color: var(--text-soft);
  font-weight: 600;
}

.wave-divider {
  position: relative;
  z-index: 2;
  margin-top: -72px;
  line-height: 0;
  pointer-events: none;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 72px;
  fill: var(--bg);
}

.page-hero {
  position: relative;
  overflow: clip;
  color: #fff;
  background: #4a382c;
}

.page-hero--massage {
  background-image: linear-gradient(rgba(77, 55, 37, 0.6), rgba(77, 55, 37, 0.6)), url("./assets/massage-ritual-premium.webp");
}

.page-hero--room {
  background-image: linear-gradient(rgba(77, 55, 37, 0.6), rgba(77, 55, 37, 0.6)), url("./assets/ai-spa-room.webp");
}

.page-hero--gallery {
  background-image:
    linear-gradient(90deg, rgba(47, 35, 27, 0.76) 0%, rgba(68, 47, 34, 0.5) 54%, rgba(68, 47, 34, 0.22) 100%),
    url("./assets/spa-room-premium.png");
  background-position: center 56%;
}

.page-hero--jacuzzi {
  background-image: linear-gradient(rgba(77, 55, 37, 0.58), rgba(77, 55, 37, 0.58)), url("./assets/ai-jacuzzi-duo.webp");
}

.page-hero--packages {
  background-image:
    linear-gradient(90deg, rgba(42, 31, 24, 0.72) 0%, rgba(70, 49, 35, 0.54) 45%, rgba(70, 49, 35, 0.24) 100%),
    linear-gradient(180deg, rgba(42, 31, 24, 0.1) 0%, rgba(42, 31, 24, 0.48) 100%),
    url("./assets/spa-jacuzzi-premium.webp");
  background-position: center 58%;
}

.page-hero {
  background-position: center;
  background-size: cover;
}

.page-hero.page-hero--packages {
  background-position: center 58%;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  padding: 120px 0 84px;
}

.page-hero--packages .page-hero-inner {
  min-height: 420px;
  display: grid;
  align-items: center;
  padding: 92px 0 118px;
}

.page-hero--packages .page-hero-copy {
  width: min(720px, 100%);
}

.page-hero-panel {
  width: min(620px, 100%);
  padding: 28px 30px 30px;
  border: 1px solid rgba(255, 250, 244, 0.2);
  border-radius: 28px;
  background: rgba(55, 38, 29, 0.48);
  box-shadow: 0 24px 80px rgba(31, 22, 16, 0.22);
}

.page-hero--packages .page-hero-panel {
  margin-left: 0;
}

.page-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.page-hero-pills span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 250, 244, 0.28);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 250, 244, 0.94);
  font-size: 13px;
  font-weight: 700;
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(255, 250, 244, 0.86);
  font-size: 14px;
}

.breadcrumbs a {
  color: inherit;
}

.voucher-showcase-section {
  padding: 60px 0 34px;
  background:
    radial-gradient(circle at top left, rgba(233, 223, 210, 0.46), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fcf8f2 100%);
}

.voucher-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 40px;
}

.voucher-showcase-copy {
  display: grid;
  gap: 18px;
  width: min(640px, 100%);
}

.voucher-showcase-copy .breadcrumbs {
  margin-bottom: 0;
  color: var(--text-soft);
}

.voucher-showcase-copy h1 {
  margin: 0;
  font: 700 clamp(48px, 6.2vw, 78px)/0.94 "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.025em;
  color: #2f2620;
}

.voucher-showcase-copy > p:not(.section-kicker) {
  margin: 0;
  font-size: 18px;
  color: var(--text-soft);
}

.voucher-showcase-copy .page-actions {
  margin-top: 8px;
}

.voucher-home-section {
  background:
    radial-gradient(circle at 16% 8%, rgba(217, 193, 170, 0.2), transparent 30%),
    linear-gradient(180deg, #fffdf9 0%, var(--bg-soft) 100%);
}

.voucher-home {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.72fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
}

.voucher-home .section-heading {
  max-width: 690px;
  margin-bottom: 0;
}

.voucher-home .section-heading h2 {
  max-width: 680px;
}

.voucher-preview-list {
  display: grid;
  gap: 14px;
}

.voucher-preview-card {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  padding: 14px;
  border: 1px solid rgba(222, 207, 192, 0.9);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 48px rgba(73, 50, 38, 0.07);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.voucher-preview-card:hover {
  transform: translateY(-3px);
  border-color: rgba(197, 173, 151, 0.92);
  box-shadow: 0 26px 58px rgba(73, 50, 38, 0.12);
}

.voucher-preview-media {
  min-height: 136px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--bg-warm);
}

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

.voucher-preview-copy {
  display: grid;
  gap: 7px;
  align-content: center;
  min-width: 0;
}

.voucher-preview-copy h3 {
  margin: 0;
  font: 700 clamp(25px, 2.6vw, 32px)/1.02 "Cormorant Garamond", Georgia, serif;
  color: var(--brown-dark);
}

.voucher-preview-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.55;
}

.voucher-preview-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.voucher-preview-bottom strong {
  color: var(--brown);
  font-size: 14px;
}

.voucher-poster {
  position: relative;
  min-height: 620px;
  padding: 38px 30px 34px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(150, 122, 102, 0.18);
  background:
    linear-gradient(180deg, rgba(139, 97, 75, 0.74), rgba(110, 76, 58, 0.9)),
    url("./assets/ai-massage-ritual.webp") center / cover;
  box-shadow: 0 30px 70px rgba(69, 47, 35, 0.18);
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.voucher-poster-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(72, 45, 35, 0.1) 0%, rgba(72, 45, 35, 0.36) 100%),
    radial-gradient(circle at 50% 14%, rgba(255, 238, 223, 0.08), transparent 24%);
}

.voucher-poster::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 68%;
  aspect-ratio: 1 / 0.86;
  transform: translateX(-50%);
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, rgba(202, 174, 152, 0.9), rgba(186, 159, 137, 0.94));
  z-index: 0;
}

.voucher-poster-title,
.voucher-poster-script,
.voucher-poster-mark,
.voucher-poster-brand {
  position: relative;
  z-index: 2;
}

.voucher-poster-title {
  margin: 24px 0 0;
  font: 300 clamp(60px, 8vw, 96px)/0.9 "Manrope", "Segoe UI", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f0c6a8;
}

.voucher-poster-script {
  margin: 6px 0 0;
  font: 400 clamp(56px, 7vw, 92px)/0.82 "Allura", "Brush Script MT", cursive;
  color: #c0ccb8;
}

.voucher-poster-mark {
  width: min(196px, 44%);
  margin-top: auto;
  filter: drop-shadow(0 8px 20px rgba(60, 35, 21, 0.24));
}

.voucher-poster-brand {
  margin: 6px 0 0;
  font: 700 clamp(44px, 5.3vw, 64px)/0.94 "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #f0c8a6;
}

.voucher-poster-leaf {
  position: absolute;
  z-index: 1;
  background: radial-gradient(circle at 30% 26%, rgba(232, 241, 225, 0.86), rgba(175, 201, 176, 0.84) 58%, rgba(129, 159, 141, 0.9));
  border-radius: 70% 0 70% 0 / 76% 0 72% 0;
  opacity: 0.72;
  box-shadow: inset 0 -8px 14px rgba(80, 87, 66, 0.08);
}

.voucher-poster-leaf-a {
  top: 36px;
  right: -16px;
  width: 112px;
  height: 52px;
  transform: rotate(-18deg);
}

.voucher-poster-leaf-b {
  top: 142px;
  left: -22px;
  width: 120px;
  height: 58px;
  transform: rotate(-126deg);
}

.voucher-poster-leaf-c {
  bottom: 122px;
  left: -12px;
  width: 136px;
  height: 64px;
  transform: rotate(-54deg);
}

.voucher-poster-leaf-d {
  bottom: 158px;
  right: -18px;
  width: 124px;
  height: 60px;
  transform: rotate(122deg);
}

.voucher-catalog-copy {
  margin-bottom: 40px;
}

.section {
  padding: 86px 0;
}

.section-after-hero {
  padding-top: 64px;
}

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

.center-copy {
  margin: 0 auto 34px;
  text-align: center;
}

.center-copy p,
.section-heading p {
  color: var(--text-soft);
}

.package-preview-section {
  background:
    radial-gradient(circle at 16% 18%, rgba(217, 193, 170, 0.18), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fbf8f3 100%);
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}

.package-preview-heading {
  width: min(880px, 100%);
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.package-preview-heading .page-actions {
  justify-content: center;
}

.split-layout,
.contact-layout,
.footer-grid,
.legal-grid,
.two-column {
  display: grid;
  gap: 28px;
}

.split-layout,
.contact-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: start;
}

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

.grid-3,
.grid-4,
.faq-grid,
.reviews-grid,
.list-grid {
  display: grid;
  gap: 20px;
}

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

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

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

.visual-card,
.simple-card,
.list-card,
.review-card,
.contact-card,
.article-block,
.legal-block,
.notfound-box,
.faq-item,
.form-panel,
.map-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow);
}

.visual-card {
  overflow: hidden;
}

.visual-card.package-card,
.visual-card.product-card {
  display: flex;
  flex-direction: column;
}

.package-preview-grid {
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  align-items: stretch;
}

.package-preview-grid .visual-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.package-preview-grid .visual-card-body {
  min-height: 0;
}

.package-preview-grid .visual-card h3 {
  font-size: clamp(28px, 3vw, 40px);
}

.package-preview-grid .card-actions {
  margin-top: auto;
}

.voucher-grid .product-card {
  border-color: #eadfd4;
  background: linear-gradient(180deg, #fffdf9 0%, #ffffff 100%);
  box-shadow: 0 20px 44px rgba(73, 50, 38, 0.07);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.voucher-grid .product-card:hover {
  transform: translateY(-4px);
  border-color: #dccbbc;
  box-shadow: 0 26px 54px rgba(73, 50, 38, 0.12);
}

.visual-card-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-warm);
  line-height: 0;
}

.visual-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.package-card .visual-card-media,
.product-card .visual-card-media {
  aspect-ratio: 16 / 9;
}

.package-card .visual-card-body,
.product-card .visual-card-body {
  position: relative;
  z-index: 1;
  flex: 1;
  margin-top: -16px;
  border-radius: 22px 22px 0 0;
  background: #fff;
}

.package-card .visual-card-media img,
.product-card .visual-card-media img {
  transform: scale(1.01);
}

.package-card:nth-child(2) .visual-card-media img,
.product-card:nth-child(4) .visual-card-media img {
  object-position: center 58%;
}

.package-card:nth-child(3) .visual-card-media img,
.product-card:nth-child(3) .visual-card-media img {
  object-position: center 47%;
}

.visual-card-body,
.simple-card,
.review-card,
.contact-card,
.article-block,
.legal-block,
.form-panel,
.map-panel,
.notfound-box {
  padding: 24px;
}

.visual-card-body {
  display: grid;
  gap: 12px;
}

.package-card .visual-card-body,
.product-card .visual-card-body {
  padding: 22px 24px 24px;
}

.voucher-grid .visual-card-body {
  gap: 14px;
}

.visual-card h3,
.simple-card h3,
.list-card h3,
.article-block h2,
.legal-block h2,
.contact-card h3 {
  margin: 0;
  font: 700 clamp(24px, 3vw, 34px)/1.05 "Cormorant Garamond", Georgia, serif;
}

.small-note {
  color: var(--text-soft);
  font-size: 14px;
}

.card-meta,
.review-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--text-soft);
  font-size: 14px;
}

.simple-card {
  display: grid;
  gap: 12px;
}

.list-card {
  display: grid;
  grid-template-columns: 164px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 20px 22px;
}

.list-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 14px;
  background: var(--bg-warm);
}

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

.list-card-main {
  display: grid;
  gap: 6px;
}

.list-card-main p {
  color: var(--text-soft);
}

.list-card-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.filters,
.search-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.search-row {
  margin-bottom: 18px;
}

.search-input,
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
}

.form-textarea {
  min-height: 140px;
  padding: 14px 16px;
}

.search-input:focus,
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: 2px solid rgba(104, 116, 86, 0.18);
  border-color: var(--olive);
}

.filter-button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--text);
  font-weight: 600;
}

.filter-button[aria-pressed="true"] {
  background: var(--olive);
  border-color: var(--olive);
  color: #fff;
}

.gallery-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(217, 193, 170, 0.14), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fbf8f3 100%);
}

.gallery-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.gallery-intro .section-heading {
  margin-bottom: 0;
}

.gallery-note {
  display: grid;
  gap: 8px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 40px rgba(57, 42, 31, 0.06);
}

.gallery-note span {
  color: #8a8178;
  font-size: 13px;
}

.gallery-note strong {
  color: var(--brown-dark);
  font-size: 15px;
  line-height: 1.45;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 132px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.gallery-tile {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(232, 223, 212, 0.82);
  border-radius: 28px;
  background: var(--bg-warm);
  box-shadow: 0 20px 50px rgba(57, 42, 31, 0.1);
  text-align: left;
  cursor: pointer;
  isolation: isolate;
}

.gallery-tile--feature {
  grid-column: span 6;
  grid-row: span 3;
}

.gallery-tile--wide {
  grid-column: span 6;
  grid-row: span 2;
}

.gallery-tile--tall {
  grid-column: span 3;
  grid-row: span 3;
}

.gallery-tile--small {
  grid-column: span 3;
  grid-row: span 2;
}

.gallery-tile-media,
.gallery-tile-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.gallery-tile-media {
  display: block;
  overflow: hidden;
  border-radius: inherit;
}

.gallery-tile-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(36, 26, 19, 0.02) 20%, rgba(36, 26, 19, 0.72) 100%),
    linear-gradient(90deg, rgba(36, 26, 19, 0.26), transparent 54%);
  opacity: 0.9;
  transition: opacity 180ms ease;
}

.gallery-tile-media img {
  object-fit: cover;
  transition: transform 520ms ease, filter 520ms ease;
}

.gallery-tile-copy {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 8px;
  color: #fffaf4;
}

.gallery-tile-tag {
  width: fit-content;
  padding: 5px 9px;
  border: 1px solid rgba(255, 250, 244, 0.32);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.gallery-tile-caption {
  color: #fffaf4;
  font: 700 clamp(21px, 2.4vw, 34px)/1.04 "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.01em;
  text-shadow: 0 10px 26px rgba(31, 22, 16, 0.34);
}

.gallery-tile--small .gallery-tile-caption {
  font-size: clamp(19px, 1.8vw, 25px);
}

.gallery-tile:hover .gallery-tile-media img,
.gallery-tile:focus-visible .gallery-tile-media img {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.045);
}

.gallery-tile:hover .gallery-tile-media::after,
.gallery-tile:focus-visible .gallery-tile-media::after {
  opacity: 0.74;
}

.gallery-tile:focus-visible {
  outline: 3px solid rgba(104, 116, 86, 0.42);
  outline-offset: 4px;
}

.review-card {
  display: grid;
  gap: 12px;
}

.reviews-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(760px, 100%);
  margin: 28px auto 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #fffdf9 0%, #fbf7f1 100%);
  box-shadow: 0 20px 46px rgba(73, 50, 38, 0.08);
}

.reviews-cta-copy {
  display: grid;
  gap: 4px;
  color: var(--text-soft);
}

.reviews-cta-copy strong {
  color: var(--brown-dark);
  font-size: 17px;
}

.reviews-cta-copy span {
  font-size: 14px;
  line-height: 1.55;
}

.review-stars {
  color: var(--brown);
  letter-spacing: 0.08em;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  box-shadow: none;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--olive);
  font-size: 22px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  padding: 0 22px 18px;
  color: var(--text-soft);
}

.article-grid {
  display: grid;
  gap: 18px;
}

.article-block {
  display: grid;
  gap: 12px;
}

.article-block ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--text-soft);
}

.contact-grid {
  display: grid;
  gap: 16px;
}

.contact-card strong {
  display: block;
  font-size: 22px;
  color: var(--brown-dark);
}

.contact-card a {
  color: var(--brown-dark);
  font-weight: 700;
}

.map-panel iframe {
  width: 100%;
  min-height: 360px;
  border-radius: var(--radius-sm);
}

.form-panel {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  gap: 6px;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-soft);
  font-size: 14px;
}

.checkbox-row input {
  margin-top: 4px;
}

.form-status {
  min-height: 22px;
  font-size: 14px;
}

.form-status.is-error {
  color: #a33d2c;
}

.form-status.is-success {
  color: var(--olive-dark);
}

.site-footer {
  padding: 62px 0 110px;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
  color: var(--text-soft);
}

.footer-brand strong {
  font: 700 26px/1 "Cormorant Garamond", Georgia, serif;
  color: var(--text);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 14px;
}

.footer-muted {
  max-width: 280px;
}

.mobile-bar {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(37, 28, 23, 0.84);
}

.lightbox-figure {
  margin: 0;
  display: grid;
  gap: 12px;
  justify-items: center;
  color: #fff;
}

.lightbox-figure img {
  max-width: min(92vw, 980px);
  max-height: 76vh;
  border-radius: var(--radius-sm);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 28px;
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.service-dialog {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow-y: auto;
  background: rgba(37, 28, 23, 0.7);
}

.service-dialog-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(270px, 0.82fr) minmax(0, 1.18fr);
  width: min(1040px, 100%);
  max-height: calc(100vh - 48px);
  overflow: hidden;
  border: 1px solid rgba(232, 223, 212, 0.9);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(45, 32, 24, 0.22);
}

.service-dialog-media {
  min-height: 100%;
  overflow: hidden;
  background: var(--bg-warm);
}

.service-dialog-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.service-dialog-content {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(28px, 5vw, 54px);
}

.service-dialog-content h2 {
  margin: 0;
  font: 700 clamp(34px, 5vw, 58px)/0.98 "Cormorant Garamond", Georgia, serif;
}

.service-dialog-lead,
.service-dialog-info p {
  margin: 0;
  color: var(--text-soft);
}

.service-dialog-meta,
.service-dialog-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.service-dialog-meta {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--brown);
  font-weight: 700;
}

.service-dialog-info {
  display: grid;
  gap: 14px;
}

.service-dialog-info h3,
.service-dialog-options h3 {
  margin: 0 0 4px;
  color: var(--text);
  font-size: 15px;
}

.service-dialog-options {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg-soft);
}

.service-dialog-options-list {
  display: grid;
  gap: 8px;
}

.service-dialog-option {
  padding: 8px 0;
  border-bottom: 1px solid rgba(232, 223, 212, 0.8);
  color: var(--text-soft);
}

.service-dialog-option:last-child {
  border-bottom: 0;
}

.service-dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(57, 42, 31, 0.1);
}

.legal-main,
.notfound-main {
  padding-top: 0;
}

.legal-copy,
.notfound-box {
  width: min(900px, 100%);
}

.legal-copy p,
.legal-block p,
.notfound-box p {
  color: var(--text-soft);
}

.legal-block ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text-soft);
}

.legal-block li + li {
  margin-top: 8px;
}

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

.legal-grid--single {
  grid-template-columns: 1fr;
}

.notfound-main {
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
}

.notfound-box {
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 1080px) {
  body[data-menu-open="true"] .site-header {
    z-index: 75;
  }

  .site-header-inner {
    grid-template-columns: auto auto;
    position: relative;
    z-index: 2;
  }

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

  .main-menu,
  .header-cta {
    display: none;
  }

  body[data-menu-open="true"] .main-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    grid-column: 1 / -1;
    padding-bottom: 20px;
  }

  body[data-menu-open="true"] .header-cta {
    display: flex;
    grid-column: 1 / -1;
    flex-wrap: wrap;
    padding-bottom: 20px;
  }

  body[data-menu-open="true"] .menu-backdrop {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 100vh;
    display: block;
    border: 0;
    background: rgba(37, 28, 23, 0.18);
    z-index: 1;
    cursor: pointer;
  }

  .split-layout,
  .contact-layout,
  .footer-grid,
  .legal-grid,
  .two-column,
  .voucher-home,
  .voucher-showcase {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .reviews-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gallery-grid {
    grid-auto-rows: 118px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .gallery-tile--feature,
  .gallery-tile--wide {
    grid-column: span 6;
  }

  .gallery-tile--tall,
  .gallery-tile--small {
    grid-column: span 3;
  }

  .voucher-showcase-section {
    padding: 46px 0 18px;
  }

  .voucher-showcase {
    gap: 28px;
  }

  .voucher-home {
    gap: 26px;
  }

  .voucher-showcase-copy {
    width: min(760px, 100%);
  }

  .voucher-poster {
    min-height: 560px;
    padding: 30px 22px 28px;
  }

  .voucher-poster-brand {
    font-size: clamp(38px, 9vw, 56px);
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 28px, 1180px);
  }

  .site-brand {
    gap: 7px;
  }

  .site-brand-mark {
    width: 35px;
    height: 35px;
    flex-basis: 35px;
  }

  .site-brand-mark-image {
    width: 35px;
    height: 35px;
  }

  .site-brand-top {
    font-size: 7px;
    letter-spacing: 0.24em;
  }

  .site-brand-name {
    font-size: 12.8px;
  }

  .hero-inner {
    min-height: auto;
    padding: 96px 0 82px;
  }

  .page-hero--packages .page-hero-inner {
    min-height: 360px;
    padding: 84px 0 98px;
  }

  .page-hero-panel {
    padding: 22px 20px 24px;
    border-radius: 22px;
  }

  .page-hero-pills {
    gap: 7px;
    margin-top: 18px;
  }

  .voucher-showcase-copy h1 {
    font-size: clamp(40px, 13vw, 56px);
  }

  .voucher-showcase-copy > p:not(.section-kicker) {
    font-size: 16px;
  }

  .voucher-preview-card {
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 14px;
    padding: 12px;
    border-radius: 22px;
  }

  .voucher-preview-media {
    min-height: 118px;
    border-radius: 16px;
  }

  .voucher-preview-copy h3 {
    font-size: clamp(23px, 8vw, 29px);
  }

  .voucher-preview-copy p {
    font-size: 14px;
    line-height: 1.48;
  }

  .voucher-preview-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .reviews-cta {
    align-items: stretch;
    flex-direction: column;
    margin-top: 22px;
    padding: 16px;
    text-align: center;
  }

  .reviews-cta .button-large {
    width: 100%;
  }

  .voucher-poster {
    min-height: 470px;
    padding: 24px 16px 20px;
    border-radius: 24px;
  }

  .voucher-poster-title {
    margin-top: 14px;
    font-size: clamp(44px, 16vw, 66px);
    letter-spacing: 0.04em;
  }

  .voucher-poster-script {
    margin-top: 2px;
    font-size: clamp(42px, 15vw, 64px);
  }

  .voucher-poster-mark {
    width: min(150px, 48%);
  }

  .voucher-poster-brand {
    margin-top: 2px;
    font-size: clamp(30px, 11vw, 44px);
  }

  .voucher-poster-leaf-a {
    width: 92px;
    height: 42px;
  }

  .voucher-poster-leaf-b {
    width: 94px;
    height: 46px;
  }

  .voucher-poster-leaf-c {
    width: 104px;
    height: 50px;
  }

  .voucher-poster-leaf-d {
    width: 96px;
    height: 46px;
  }

  .hero h1,
  .page-hero h1,
  .section-heading h2,
  .center-copy h2,
  .notfound-box h1,
  .legal-copy h1 {
    font-size: clamp(38px, 13vw, 56px);
  }

  .hero-lead,
  .page-hero p {
    font-size: 16px;
  }

  .grid-3,
  .grid-4,
  .reviews-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-intro {
    margin-bottom: 24px;
  }

  .gallery-note {
    padding: 18px;
    border-radius: 20px;
  }

  .gallery-grid {
    grid-auto-rows: auto;
    gap: 14px;
  }

  .gallery-tile,
  .gallery-tile--feature,
  .gallery-tile--wide,
  .gallery-tile--tall,
  .gallery-tile--small {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 280px;
  }

  .gallery-tile--feature,
  .gallery-tile--wide {
    min-height: 330px;
  }

  .gallery-tile-copy {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .list-card {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .list-card-media {
    width: 100%;
  }

  .service-dialog {
    padding: 12px;
    align-items: end;
  }

  .service-dialog-panel {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 24px);
    overflow-y: auto;
    border-radius: 24px;
  }

  .service-dialog-media {
    min-height: 0;
    height: clamp(210px, 45vh, 320px);
  }

  .service-dialog-media img {
    height: 100%;
    min-height: 0;
    max-height: none;
    border-radius: 0;
  }

  .service-dialog-content {
    padding: 24px;
  }

  .service-dialog-meta,
  .service-dialog-option,
  .service-dialog-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions,
  .page-actions,
  .card-actions,
  .contact-actions,
  .voucher-note-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .button-small {
    width: 100%;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-badges {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 22px;
    padding: 10px;
    border-radius: 24px;
  }

  .hero-badges span {
    flex: 1 1 calc(50% - 8px);
    min-height: 36px;
    padding: 0 10px;
    border: 1px solid rgba(255, 249, 244, 0.2);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.08);
    font-size: 13px;
  }

  .hero-badges span + span {
    border-left: 1px solid rgba(255, 249, 244, 0.2);
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 28px;
  }

  .stat-card {
    padding: 16px 18px;
    text-align: center;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .mobile-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 65;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
  }

  .mobile-bar a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--bg-soft);
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
  }

  body {
    padding-bottom: 96px;
  }

  .site-footer {
    padding-bottom: 118px;
  }

  .lightbox-nav {
    display: none;
  }
}
