:root {
  --sn-bg: #f8f1ed;
  --sn-surface: #fff9f6;
  --sn-surface-soft: #f3e8e2;
  --sn-text: #231a20;
  --sn-text-soft: rgba(35, 26, 32, 0.6);
  --sn-text-faint: rgba(35, 26, 32, 0.5);
  --sn-primary: #5b3142;
  --sn-primary-strong: #7a4259;
  --sn-accent: #c7a27c;
  --sn-accent-soft: #e7b9c5;
  --sn-border: rgba(199, 162, 124, 0.2);
  --sn-border-strong: rgba(199, 162, 124, 0.3);
  --sn-shadow: 0 24px 60px rgba(91, 49, 66, 0.15);
  --sn-shell: 1280px;
  --sn-transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--sn-bg);
  color: var(--sn-text);
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

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

img,
video,
svg {
  display: block;
}

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

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

button {
  cursor: pointer;
}

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

:focus-visible {
  outline: 2px solid var(--sn-accent);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

main {
  overflow: hidden;
}

.sn-container {
  width: min(calc(100% - 48px), var(--sn-shell));
  margin: 0 auto;
}

.sn-media {
  width: 100%;
  height: auto;
}

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

.section {
  position: relative;
  padding: 96px 0;
}

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

.section--light {
  background: var(--sn-surface);
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 64px;
}

.section-heading--center {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-heading h2,
.why-grid__intro h2,
.about-teaser__content h2,
.page-hero__title,
.story-grid h2,
.atmosphere-grid__content h2,
.final-cta__inner h2,
.booking-panel h2,
.booking-success-card h2,
.contact-strip__item p,
.booking-summary-card__head h3 {
  font-size: clamp(1.8rem, 3.5vw, 2.85rem);
}

.section-heading p,
.why-grid__intro p,
.about-teaser__content p,
.story-grid p,
.atmosphere-grid__content p,
.final-cta__inner p,
.page-hero__text,
.booking-message,
.booking-helper-text,
.faq-item p,
.contact-card p,
.contact-strip__item span,
.booking-summary-card__location span {
  color: var(--sn-text-soft);
  font-size: 0.9375rem;
  line-height: 1.8;
}

.section-label-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.section-label-wrap--center {
  justify-content: center;
}

.section-label-line {
  width: 32px;
  height: 1px;
  background: var(--sn-accent);
}

.section-label-text {
  color: var(--sn-accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 30px;
  border: 1px solid transparent;
  transition: background var(--sn-transition), color var(--sn-transition), border-color var(--sn-transition), transform var(--sn-transition);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn span:last-child {
  transition: transform var(--sn-transition);
}

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

.btn:hover span:last-child {
  transform: translateX(3px);
}

.btn--primary {
  background: var(--sn-primary);
  color: #fff;
}

.btn--primary:hover {
  background: var(--sn-primary-strong);
}

.btn--ghost,
.btn--outline {
  border-color: rgba(91, 49, 66, 0.4);
  color: var(--sn-primary);
}

.btn--ghost:hover,
.btn--outline:hover {
  border-color: var(--sn-primary);
  background: var(--sn-primary);
  color: #fff;
}

.btn--gold {
  background: var(--sn-accent);
  color: var(--sn-text);
}

.btn--gold:hover {
  background: #d4b08c;
}

.btn--light {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.btn--light:hover {
  border-color: rgba(255, 255, 255, 0.65);
}

.btn--full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(91, 49, 66, 0.4);
  color: var(--sn-primary);
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.text-link:hover {
  border-color: var(--sn-primary);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}

.site-header__topbar {
  background: var(--sn-primary);
  padding: 8px 0;
}

.site-header__topbar-text {
  color: var(--sn-accent-soft);
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.site-header__topbar-text a {
  color: var(--sn-accent);
  transition: color var(--sn-transition);
}

.site-header__topbar-text a:hover {
  color: #fff;
}

.site-nav {
  background: var(--sn-surface);
  transition: background var(--sn-transition), box-shadow var(--sn-transition), backdrop-filter var(--sn-transition);
}

.site-header.is-scrolled .site-nav {
  background: rgba(255, 249, 246, 0.98);
  box-shadow: 0 4px 18px rgba(35, 26, 32, 0.08);
  backdrop-filter: blur(10px);
}

.site-nav__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 104px;
  padding: 12px 0;
}

.site-nav__brand {
  flex-shrink: 0;
  justify-self: start;
}

.custom-logo-link,
.site-logo {
  display: inline-flex;
  align-items: center;
}

.custom-logo {
  width: auto;
  height: 80px;
}

.site-logo--text {
  width: 48px;
  height: 48px;
  justify-content: center;
  border: 1px solid var(--sn-border-strong);
  background: rgba(255, 255, 255, 0.55);
  color: var(--sn-primary);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.site-nav__list,
.site-header__mobile-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__list a,
.site-header__mobile-list a {
  color: rgba(35, 26, 32, 0.7);
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--sn-transition);
}

.site-nav__list a:hover,
.site-nav__list a.is-active,
.site-header__mobile-list a:hover,
.site-header__mobile-list a.is-active {
  color: var(--sn-primary);
}

.site-nav__cta,
.site-header__mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  min-height: 42px;
  padding: 0 20px;
  background: var(--sn-primary);
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background var(--sn-transition);
}

.site-nav__cta:hover,
.site-header__mobile-cta:hover {
  background: var(--sn-primary-strong);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 4px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--sn-text);
  transition: transform var(--sn-transition), opacity var(--sn-transition);
}

.site-header__mobile {
  display: none;
  background: var(--sn-surface);
  border-top: 1px solid rgba(231, 185, 197, 0.3);
}

.site-header__mobile .sn-container {
  padding: 24px 0;
}

.site-header__mobile-list {
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 20px;
}

.site-header__mobile-list a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  text-transform: none;
  letter-spacing: 0;
}

.site-header.is-open .site-header__mobile {
  display: block;
}

.site-header.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-footer {
  background: var(--sn-text);
  color: #f8f1ed;
}

.site-footer__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199, 162, 124, 0.6), transparent);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  padding: 64px 0;
}

.site-footer__logo-wrap {
  display: inline-block;
  padding: 12px;
  background: rgba(255, 249, 246, 0.1);
}

.site-footer__copy {
  margin-top: 20px;
  color: rgba(248, 241, 237, 0.55);
  font-size: 0.875rem;
  line-height: 1.75;
}

.site-footer__kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.site-footer__kicker span {
  width: 32px;
  height: 1px;
  background: rgba(199, 162, 124, 0.5);
}

.site-footer__kicker small,
.site-footer__heading {
  color: var(--sn-accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer__heading {
  margin-bottom: 24px;
  font-family: 'Manrope', sans-serif;
}

.site-footer__list,
.site-footer__pages ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__list {
  display: grid;
  gap: 16px;
}

.site-footer__list li,
.site-footer__list a,
.site-footer__social,
.site-footer__pages a {
  color: rgba(248, 241, 237, 0.7);
  font-size: 0.875rem;
}

.site-footer__social {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  transition: color var(--sn-transition);
}

.site-footer__social:hover,
.site-footer__pages a:hover,
.site-footer__list a:hover {
  color: var(--sn-accent);
}

.site-footer__pages {
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__pages p {
  margin-bottom: 12px;
  color: rgba(248, 241, 237, 0.4);
  font-size: 0.75rem;
}

.site-footer__pages ul {
  display: grid;
  gap: 10px;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
}

.site-footer__bottom p {
  color: rgba(248, 241, 237, 0.3);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 176px 0 64px;
  background: linear-gradient(135deg, #fff9f6 0%, #f8f1ed 60%, #f0e6e0 100%);
}

.home-hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.home-hero__orb--right {
  top: 0;
  right: 0;
  width: min(50vw, 700px);
  height: min(50vw, 700px);
  background: radial-gradient(circle, rgba(231, 185, 197, 0.15) 0%, transparent 70%);
  transform: translate(20%, -20%);
}

.home-hero__orb--left {
  left: 0;
  bottom: 0;
  width: min(30vw, 420px);
  height: min(30vw, 420px);
  background: radial-gradient(circle, rgba(199, 162, 124, 0.08) 0%, transparent 70%);
  transform: translate(-30%, 30%);
}

.home-hero__container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
  gap: 48px;
  align-items: center;
}

.home-hero__content {
  position: relative;
  z-index: 1;
}

.home-hero__title {
  margin: 16px 0 24px;
  color: var(--sn-text);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.05;
}

.home-hero__title em {
  color: var(--sn-primary);
  font-style: italic;
}

.home-hero__title span {
  color: var(--sn-accent);
}

.home-hero__text {
  max-width: 540px;
  margin-bottom: 40px;
  color: var(--sn-text-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.home-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(199, 162, 124, 0.2);
}

.home-hero__stat strong {
  display: block;
  color: var(--sn-primary);
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1;
}

.home-hero__stat span {
  color: rgba(35, 26, 32, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.home-hero__visual {
  position: relative;
  display: none;
  min-height: 520px;
}

.home-hero__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.home-hero__ring--large {
  width: 420px;
  height: 420px;
  border: 1px solid rgba(199, 162, 124, 0.3);
}

.home-hero__ring--small {
  width: 380px;
  height: 380px;
  border: 1px solid rgba(199, 162, 124, 0.15);
}

.home-hero__card {
  position: absolute;
  overflow: hidden;
  background: #eee;
}

.home-hero__card--main {
  top: 32px;
  right: 40px;
  width: 300px;
  height: 400px;
  background: #d8cdc7;
  box-shadow: 0 28px 70px rgba(91, 49, 66, 0.28);
}

.home-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

.home-hero__video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 249, 246, 0.08) 0%, rgba(91, 49, 66, 0.18) 100%),
    linear-gradient(135deg, rgba(199, 162, 124, 0.16) 0%, rgba(91, 49, 66, 0.1) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 249, 246, 0.08);
  pointer-events: none;
}

.home-hero__card--side {
  bottom: 0;
  left: 0;
  width: 180px;
  height: 220px;
  border: 4px solid #fff9f6;
  box-shadow: 0 16px 40px rgba(91, 49, 66, 0.18);
  z-index: 2;
}

.home-hero__spark {
  position: absolute;
  z-index: 3;
}

.home-hero__spark--one {
  top: 32px;
  right: 16px;
}

.home-hero__spark--two {
  top: 80px;
  right: 0;
}

.home-hero__spark--three {
  right: 32px;
  bottom: 64px;
}

.home-hero__badge {
  position: absolute;
  top: 0;
  left: 60px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid rgba(199, 162, 124, 0.3);
  background: var(--sn-surface);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  color: var(--sn-primary);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.home-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sn-accent);
}

.trust-bar {
  background: var(--sn-primary);
  padding: 20px 0;
}

.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 0;
}

.trust-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
}

.trust-bar__item + .trust-bar__item {
  border-left: 1px solid rgba(231, 185, 197, 0.2);
}

.trust-bar__icon {
  color: var(--sn-accent);
  font-size: 0.75rem;
}

.trust-bar__text {
  color: rgba(248, 241, 237, 0.85);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.services-grid,
.why-grid__cards,
.testimonials-grid,
.values-grid,
.contact-cards {
  display: grid;
  gap: 24px;
}

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

.service-card,
.why-card,
.testimonial-card,
.value-card,
.booking-panel,
.booking-summary-card,
.contact-card,
.booking-success-card,
.booking-readonly,
.faq-item,
.booking-message {
  border: 1px solid var(--sn-border);
  background: var(--sn-surface);
}

.service-card {
  padding: 32px;
  box-shadow: 0 2px 20px rgba(91, 49, 66, 0.04);
  transition: box-shadow var(--sn-transition);
}

.service-card:hover,
.contact-card:hover {
  box-shadow: 0 16px 34px rgba(91, 49, 66, 0.08);
}

.service-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(199, 162, 124, 0.15);
}

.service-card__accent {
  width: 4px;
  height: 32px;
}

.service-card h3,
.why-card h3,
.value-card h3,
.process-card h3,
.testimonial-card__author strong,
.about-teaser__badge strong,
.booking-summary-card__total strong {
  font-size: 1.5rem;
}

.service-card__list {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.service-card__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.service-card__list span,
.booking-service-option__title,
.booking-readonly,
.booking-field input,
.booking-field select,
.booking-field textarea {
  font-size: 0.875rem;
}

.service-card__list span,
.booking-summary-card__items strong,
.booking-field input,
.booking-field select,
.booking-field textarea,
.booking-readonly {
  color: rgba(35, 26, 32, 0.75);
}

.service-card__list strong,
.service-card__link,
.booking-summary-card__total strong,
.contact-card span {
  color: var(--sn-primary);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sn-accent);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-cta {
  margin-top: 48px;
}

.section-cta--center {
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.why-grid__intro {
  display: grid;
  gap: 20px;
}

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

.why-card,
.value-card {
  padding: 28px;
}

.why-card {
  background: var(--sn-surface-soft);
  transition: border-color var(--sn-transition);
}

.why-card:hover,
.value-card:hover,
.faq-item:hover {
  border-color: rgba(199, 162, 124, 0.5);
}

.why-card__icon,
.contact-card__icon {
  margin-bottom: 16px;
  color: var(--sn-accent);
}

.why-card p,
.value-card p,
.process-card p,
.testimonial-card__text,
.contact-card p,
.contact-card strong,
.contact-card span {
  font-size: 0.875rem;
}

.gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.gallery-head p {
  max-width: 280px;
  color: rgba(35, 26, 32, 0.5);
  font-size: 0.875rem;
}

.gallery-bento {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-bento__item,
.gallery-row__item,
.gallery-row__cta,
.about-teaser__image,
.story-grid__image,
.atmosphere-grid__large,
.atmosphere-grid__small,
.about-hero-visual__main,
.about-hero-visual__side {
  overflow: hidden;
}

.gallery-bento__item--wide {
  grid-column: 1 / 3;
  aspect-ratio: 16 / 9;
}

.gallery-bento__item--tall {
  grid-column: 3;
  grid-row: 1 / 3;
  min-height: 100%;
}

.gallery-bento__item--square {
  aspect-ratio: 1 / 1;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.gallery-row__item {
  aspect-ratio: 4 / 3;
}

.gallery-row__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(180deg, var(--sn-primary) 0%, var(--sn-text) 100%);
  color: rgba(231, 185, 197, 0.7);
  text-align: center;
  box-shadow: 0 18px 44px rgba(91, 49, 66, 0.22);
}

.gallery-row__play {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 2px solid rgba(199, 162, 124, 0.5);
  border-radius: 50%;
}

.gallery-row__cta p {
  color: rgba(231, 185, 197, 0.75);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-row__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.03);
}

.gallery-row__video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 249, 246, 0.06) 0%, rgba(35, 26, 32, 0.22) 100%),
    linear-gradient(135deg, rgba(199, 162, 124, 0.14) 0%, rgba(91, 49, 66, 0.14) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 249, 246, 0.08);
  pointer-events: none;
}

.about-teaser {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: center;
}

.about-teaser__visual,
.story-grid__visual,
.about-hero-visual {
  position: relative;
}

.about-teaser__image {
  position: relative;
  aspect-ratio: 4 / 5;
  box-shadow: var(--sn-shadow);
}

.about-teaser__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 249, 246, 0.08) 0%, rgba(91, 49, 66, 0.3) 100%),
    linear-gradient(135deg, rgba(199, 162, 124, 0.16) 0%, rgba(91, 49, 66, 0.18) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 249, 246, 0.12);
  pointer-events: none;
}

.about-teaser__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-teaser__frame {
  position: absolute;
  top: 20px;
  left: -20px;
  right: 20px;
  bottom: -20px;
  border: 1px solid rgba(199, 162, 124, 0.3);
  z-index: -1;
}

.about-teaser__badge {
  position: absolute;
  right: -16px;
  bottom: -24px;
  padding: 20px;
  background: var(--sn-primary);
  box-shadow: 0 8px 24px rgba(91, 49, 66, 0.3);
}

.about-teaser__badge strong {
  color: var(--sn-accent);
  font-size: 2rem;
  line-height: 1;
}

.about-teaser__badge span {
  color: var(--sn-accent-soft);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.about-teaser__content {
  display: grid;
  gap: 20px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 8px 0 18px;
}

.check-list__item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-list__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(91, 49, 66, 0.1);
  color: var(--sn-primary);
}

.check-list__item span:last-child {
  color: rgba(35, 26, 32, 0.7);
  font-size: 0.875rem;
}

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

.testimonial-card {
  position: relative;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(91, 49, 66, 0.05);
}

.testimonial-card__quote {
  position: absolute;
  top: 16px;
  right: 20px;
  color: var(--sn-accent);
  opacity: 0.15;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  line-height: 1;
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-card__text {
  margin-bottom: 24px;
  color: rgba(35, 26, 32, 0.7);
  font-style: italic;
  line-height: 1.75;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(199, 162, 124, 0.15);
}

.testimonial-card__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(231, 185, 197, 0.4);
  color: var(--sn-primary);
  font-size: 0.8rem;
  font-weight: 600;
}

.testimonial-card__author small {
  color: rgba(35, 26, 32, 0.5);
  font-size: 0.75rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  background: linear-gradient(135deg, var(--sn-primary) 0%, #3d2130 100%);
}

.final-cta--compact {
  padding: 96px 0;
}

.final-cta__overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(199, 162, 124, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(231, 185, 197, 0.08) 0%, transparent 50%);
}

.final-cta__spark {
  position: absolute;
}

.final-cta__spark--one {
  top: 32px;
  left: 48px;
}

.final-cta__spark--two {
  top: 64px;
  right: 80px;
}

.final-cta__spark--three {
  bottom: 48px;
  left: 33%;
}

.final-cta__spark--four {
  right: 25%;
  bottom: 64px;
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.final-cta__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.final-cta__divider span {
  width: 48px;
  height: 1px;
  background: rgba(199, 162, 124, 0.5);
}

.final-cta__inner h2 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.final-cta__inner p {
  margin: 24px auto 40px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 620px;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.final-cta__location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 176px 0 96px;
  background: linear-gradient(135deg, #fff9f6 0%, #f8f1ed 100%);
}

.page-hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.page-hero__orb--large {
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(199, 162, 124, 0.3);
  transform: translate(40%, -40%);
}

.page-hero__orb--small {
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(199, 162, 124, 0.15);
  transform: translate(30%, -30%);
}

.page-hero__orb--right-soft {
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(231, 185, 197, 0.15) 0%, transparent 70%);
  transform: translate(30%, -30%);
}

.page-hero__grid {
  display: grid;
  gap: 64px;
  align-items: center;
}

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

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

.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero__content--wide {
  max-width: 720px;
}

.page-hero__text {
  max-width: 560px;
  margin-top: 20px;
}

.page-hero__content .btn {
  margin-top: 32px;
}

.error-404-hero {
  overflow: hidden;
}

.error-404-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
  gap: 40px;
  align-items: center;
}

.error-404-hero__code {
  margin-bottom: 12px;
  color: rgba(91, 49, 66, 0.14);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 16vw, 8.5rem);
  font-weight: 700;
  line-height: 0.9;
}

.error-404-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.error-404-hero__panel {
  padding: 32px;
  border: 1px solid rgba(199, 162, 124, 0.18);
  background: rgba(255, 249, 246, 0.88);
  box-shadow: 0 12px 34px rgba(91, 49, 66, 0.08);
}

.error-404-hero__panel h2 {
  margin-bottom: 20px;
  font-size: 1.45rem;
}

.error-404-links {
  display: grid;
  gap: 14px;
}

.error-404-link-card {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(199, 162, 124, 0.18);
  background: #fff;
  transition: border-color var(--sn-transition), transform var(--sn-transition);
}

.error-404-link-card:hover {
  border-color: rgba(91, 49, 66, 0.32);
  transform: translateY(-2px);
}

.error-404-link-card strong {
  color: var(--sn-text);
  font-size: 1rem;
}

.error-404-link-card span {
  color: rgba(35, 26, 32, 0.62);
  font-size: 0.92rem;
  line-height: 1.5;
}

.about-hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  min-height: 440px;
}

.about-hero-visual__main {
  width: 280px;
  height: 380px;
  box-shadow: 0 20px 50px rgba(91, 49, 66, 0.18);
}

.about-hero-visual__side {
  position: absolute;
  left: 0;
  bottom: -30px;
  width: 200px;
  height: 260px;
  border: 4px solid var(--sn-surface);
  box-shadow: 0 16px 40px rgba(91, 49, 66, 0.2);
}

.about-hero-visual__spark {
  position: absolute;
}

.about-hero-visual__spark--one {
  top: 16px;
  right: 0;
}

.about-hero-visual__spark--two {
  top: 48px;
  right: 24px;
}

.story-grid,
.atmosphere-grid,
.booking-layout {
  display: grid;
  gap: 64px;
  align-items: center;
}

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

.story-grid > div:first-child,
.atmosphere-grid__content {
  display: grid;
  gap: 18px;
}

.story-grid__image {
  aspect-ratio: 3 / 4;
  box-shadow: 0 20px 50px rgba(91, 49, 66, 0.12);
}

.story-grid__frame {
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid rgba(199, 162, 124, 0.25);
  z-index: -1;
}

.value-card__number {
  display: block;
  margin-bottom: 20px;
  color: rgba(199, 162, 124, 0.25);
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  line-height: 1;
}

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

.process-grid__line {
  position: absolute;
  top: 64px;
  left: 16.666%;
  right: 16.666%;
  height: 1px;
  background: rgba(199, 162, 124, 0.25);
}

.process-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 40px 32px;
}

.process-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
  border: 2px solid rgba(199, 162, 124, 0.4);
  border-radius: 50%;
  background: var(--sn-surface);
  box-shadow: 0 4px 20px rgba(199, 162, 124, 0.15);
}

.process-card__step {
  color: var(--sn-accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.atmosphere-grid__stack {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 12px;
}

.atmosphere-grid__large {
  aspect-ratio: 4 / 5;
}

.atmosphere-grid__column {
  display: grid;
  gap: 12px;
}

.atmosphere-grid__small {
  min-height: 180px;
}

.atmosphere-grid__quote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 180px;
  padding: 24px;
  background: var(--sn-primary);
}

.atmosphere-grid__quote p {
  margin-top: 12px;
  color: var(--sn-accent-soft);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.4;
}

.booking-layout {
  grid-template-columns: minmax(0, 2fr) minmax(320px, 0.9fr);
  align-items: start;
}

.booking-layout__main {
  display: grid;
  gap: 40px;
}

.booking-panel {
  padding: 32px;
}

.booking-panel h2 {
  margin-bottom: 24px;
  font-size: 1.6rem;
}

.booking-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(199, 162, 124, 0.15);
}

.booking-category-tab {
  padding: 10px 20px;
  border: 0;
  background: var(--sn-bg);
  color: rgba(35, 26, 32, 0.7);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  transition: background var(--sn-transition), color var(--sn-transition);
}

.booking-category-tab.is-active {
  background: var(--sn-primary);
  color: #fff;
}

.booking-service-group {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.booking-service-group.is-active {
  display: grid;
}

.booking-service-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.booking-service-option {
  position: relative;
  display: block;
}

.booking-service-option__control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--sn-border);
  transition: border-color var(--sn-transition), background var(--sn-transition);
}

.booking-service-option__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.booking-service-option__dot {
  width: 16px;
  height: 16px;
  border: 1px solid rgba(199, 162, 124, 0.4);
  border-radius: 4px;
  flex-shrink: 0;
}

.booking-service-option input:checked + .booking-service-option__control {
  border-color: var(--sn-primary);
  background: rgba(91, 49, 66, 0.05);
}

.booking-service-option input:checked + .booking-service-option__control .booking-service-option__dot {
  border-color: var(--sn-primary);
  background: var(--sn-primary);
}

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

.booking-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 20px;
}

.booking-field {
  display: grid;
  align-content: start;
  gap: 8px;
}

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

.booking-field span,
.booking-summary-card__items p,
.booking-summary-card__location p,
.contact-card p,
.booking-helper-text,
.booking-message,
.faq-item summary,
.booking-success-card p,
.contact-strip__item p {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.booking-field > span,
.booking-summary-card__items p,
.contact-card p {
  color: rgba(35, 26, 32, 0.7);
  text-transform: uppercase;
}

.booking-field input,
.booking-field select,
.booking-field textarea,
.booking-readonly {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(199, 162, 124, 0.25);
  background: var(--sn-bg);
  color: var(--sn-text);
}

.booking-field textarea {
  resize: vertical;
}

.booking-field input[type="hidden"][data-booking-date] {
  display: none;
}

.booking-date-picker {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(199, 162, 124, 0.25);
  background: linear-gradient(180deg, rgba(255, 252, 249, 0.96) 0%, rgba(255, 247, 243, 0.9) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.booking-date-picker__header {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 12px;
}

.booking-date-picker__title {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--sn-primary);
}

.booking-date-picker__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(199, 162, 124, 0.28);
  background: rgba(255, 255, 255, 0.72);
  color: var(--sn-primary);
  transition: transform var(--sn-transition), background var(--sn-transition), border-color var(--sn-transition), color var(--sn-transition);
}

.booking-date-picker__nav:hover:not(:disabled) {
  background: rgba(231, 185, 197, 0.18);
  border-color: rgba(199, 162, 124, 0.48);
  transform: translateY(-1px);
}

.booking-date-picker__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.booking-date-picker__weekdays,
.booking-date-picker__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.booking-date-picker__weekdays span {
  text-align: center;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(35, 26, 32, 0.5);
}

.booking-date-picker__filler {
  min-height: 44px;
}

.booking-date-picker__day {
  min-height: 46px;
  border: 1px solid rgba(199, 162, 124, 0.14);
  background: rgba(255, 255, 255, 0.78);
  color: var(--sn-text);
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform var(--sn-transition), background var(--sn-transition), color var(--sn-transition), border-color var(--sn-transition), box-shadow var(--sn-transition);
}

.booking-date-picker__day.is-available:hover {
  border-color: rgba(199, 162, 124, 0.48);
  background: rgba(231, 185, 197, 0.16);
  transform: translateY(-1px);
}

.booking-date-picker__day.is-selected {
  border-color: var(--sn-primary);
  background: var(--sn-primary);
  color: #fff;
  box-shadow: 0 10px 18px rgba(91, 49, 66, 0.16);
}

.booking-date-picker__day.is-unavailable {
  color: rgba(35, 26, 32, 0.38);
  background: rgba(247, 239, 234, 0.85);
}

.booking-date-picker__day.is-past {
  color: rgba(35, 26, 32, 0.22);
  background: rgba(244, 239, 236, 0.92);
}

.booking-date-picker__day:disabled {
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.booking-date-picker__message {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(35, 26, 32, 0.55);
}

.booking-date-picker__message[data-state="error"] {
  color: #7f2f2f;
}

.booking-date-picker__message[data-state="loading"] {
  color: var(--sn-primary);
}

.booking-panel__helper {
  margin-bottom: 20px;
  color: rgba(35, 26, 32, 0.58);
}

.booking-mobile-steps {
  display: none;
}

.booking-panel__header {
  display: block;
}

.booking-back-button {
  display: none;
}

.booking-message--service {
  margin-bottom: 20px;
}

.booking-step-actions {
  display: none;
}

.booking-field select:disabled {
  color: rgba(35, 26, 32, 0.45);
}

.booking-message--error {
  padding: 14px 16px;
  color: #7f2f2f;
  background: rgba(181, 55, 55, 0.08);
  border-color: rgba(181, 55, 55, 0.18);
}

.booking-helper-text {
  color: rgba(35, 26, 32, 0.4);
  text-align: center;
  letter-spacing: 0;
  text-transform: none;
}

.booking-summary-card {
  position: sticky;
  top: 110px;
  padding: 28px;
  box-shadow: 0 8px 30px rgba(91, 49, 66, 0.08);
}

.booking-summary-card__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(199, 162, 124, 0.15);
}

.booking-summary-card__head h3 {
  font-size: 1.3rem;
}

.booking-summary-card__items {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
}

.booking-summary-card__items p {
  margin-bottom: 4px;
  color: var(--sn-accent);
  font-weight: 600;
  letter-spacing: 0.15em;
}

.booking-summary-card__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  margin-bottom: 28px;
  border-top: 1px solid rgba(199, 162, 124, 0.15);
}

.booking-summary-card__total span {
  color: var(--sn-text-soft);
  font-size: 0.875rem;
}

.booking-summary-card__location,
.contact-strip__item {
  display: flex;
  gap: 14px;
}

.booking-summary-card__location {
  padding: 16px;
  background: var(--sn-bg);
}

.booking-summary-card__location p,
.contact-strip__item p {
  margin-bottom: 2px;
  color: var(--sn-text);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.booking-success-wrap {
  display: flex;
  justify-content: center;
}

.booking-success-card {
  max-width: 560px;
  padding: 56px;
  text-align: center;
}

.booking-success-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: rgba(91, 49, 66, 0.1);
  color: var(--sn-primary);
}

.booking-success-card p {
  margin: 12px auto 28px;
  max-width: 430px;
  color: var(--sn-text-soft);
  letter-spacing: 0;
  text-transform: none;
}

.faq-wrap {
  max-width: 860px;
}

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

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
  color: var(--sn-text);
  font-size: 0.9375rem;
  letter-spacing: 0;
  text-transform: none;
}

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

.faq-item[open] summary span {
  transform: rotate(180deg);
}

.faq-item summary span {
  color: var(--sn-accent);
  transition: transform var(--sn-transition);
}

.faq-item div {
  padding: 0 24px 22px;
  border-top: 1px solid rgba(199, 162, 124, 0.1);
}

.faq-item p {
  padding-top: 16px;
  color: var(--sn-text-soft);
  letter-spacing: 0;
  text-transform: none;
}

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

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px;
  text-align: center;
  transition: border-color var(--sn-transition), box-shadow var(--sn-transition), transform var(--sn-transition);
}

.contact-card:hover {
  border-color: rgba(199, 162, 124, 0.6);
  transform: translateY(-1px);
}

.contact-card p {
  margin-bottom: 4px;
  color: rgba(35, 26, 32, 0.5);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.contact-card strong {
  margin-bottom: 16px;
  color: var(--sn-text);
  font-size: 0.9375rem;
}

.contact-card span {
  color: var(--sn-accent);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.contact-strip {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  padding: 32px;
  background: var(--sn-primary);
}

.contact-strip__item {
  flex: 1;
  align-items: center;
}

.contact-strip__item svg {
  flex-shrink: 0;
  color: var(--sn-accent);
}

.contact-strip__item p {
  color: var(--sn-accent-soft);
}

.contact-strip__item span {
  color: rgba(248, 241, 237, 0.6);
  font-size: 0.8rem;
}

.prose-content {
  max-width: 760px;
  margin: 128px auto 96px;
}

.prose-content > * + * {
  margin-top: 18px;
}

@media (min-width: 1025px) {
  .home-hero__visual {
    display: block;
  }
}

@media (max-width: 1200px) {
  .home-hero__container,
  .why-grid,
  .about-teaser,
  .story-grid,
  .atmosphere-grid,
  .booking-layout,
  .page-hero__grid--about,
  .error-404-hero__grid {
    grid-template-columns: 1fr;
  }

  .about-hero-visual,
  .home-hero__visual {
    margin: 0 auto;
  }

  .why-grid__cards,
  .contact-cards,
  .testimonials-grid,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 1024px) {
  .services-grid,
  .gallery-row,
  .booking-field-grid,
  .booking-service-group,
  .testimonials-grid,
  .contact-cards,
  .values-grid,
  .why-grid__cards {
    grid-template-columns: 1fr 1fr;
  }

  .trust-bar__item {
    padding: 0 18px;
  }

  .gallery-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-summary-card {
    position: static;
  }

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

  .process-grid__line {
    display: none;
  }
}

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

  .site-nav__list,
  .site-nav__cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .home-hero {
    min-height: auto;
    padding-top: 188px;
  }

  .home-hero__title {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .home-hero__stats {
    gap: 24px;
  }

  .trust-bar__inner {
    gap: 16px;
  }

  .trust-bar__item {
    border-left: 0 !important;
    padding: 0;
  }

  .services-grid,
  .gallery-row,
  .why-grid__cards,
  .values-grid,
  .testimonials-grid,
  .contact-cards,
  .booking-field-grid,
  .booking-service-group,
  .site-footer__grid,
  .site-footer__bottom-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

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

  .gallery-bento__item--wide,
  .gallery-bento__item--tall {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .about-teaser__badge {
    right: 12px;
    bottom: 12px;
  }

  .contact-strip {
    flex-direction: column;
  }

  .final-cta,
  .section,
  .page-hero {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .page-hero {
    padding-top: 180px;
  }
}

@media (max-width: 820px) {
  .booking-mobile-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .booking-mobile-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid rgba(199, 162, 124, 0.2);
    background: rgba(255, 249, 246, 0.72);
  }

  .booking-mobile-step strong,
  .booking-mobile-step > div > span {
    display: block;
  }

  .booking-mobile-step strong {
    font-size: 0.95rem;
  }

  .booking-mobile-step > div > span {
    color: rgba(35, 26, 32, 0.55);
    font-size: 0.76rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  .booking-mobile-step__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    border: 1px solid rgba(199, 162, 124, 0.28);
    border-radius: 999px;
    color: rgba(35, 26, 32, 0.65);
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    flex-shrink: 0;
  }

  .booking-mobile-step.is-active {
    border-color: rgba(91, 49, 66, 0.2);
    background: rgba(91, 49, 66, 0.08);
  }

  .booking-mobile-step.is-active .booking-mobile-step__index,
  .booking-mobile-step.is-complete .booking-mobile-step__index {
    border-color: var(--sn-primary);
    background: var(--sn-primary);
    color: #fff;
  }

  .booking-panel__header {
    display: grid;
    gap: 14px;
    margin-bottom: 24px;
  }

  .booking-panel__header h2 {
    margin-bottom: 0;
  }

  .booking-back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--sn-primary);
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
  }

  .booking-step-actions {
    display: block;
    margin-top: 24px;
  }

  .booking-layout[data-booking-step="services"] [data-step-panel="details"],
  .booking-layout[data-booking-step="details"] [data-step-panel="services"] {
    display: none;
  }
}

@media (max-width: 640px) {
  .sn-container {
    width: min(calc(100% - 32px), var(--sn-shell));
  }

  .home-hero,
  .page-hero {
    padding-top: 172px;
  }

  .section,
  .final-cta {
    padding: 80px 0;
  }

  .btn {
    width: 100%;
  }

  .home-hero__actions,
  .final-cta__actions,
  .error-404-hero__actions {
    flex-direction: column;
  }

  .home-hero__stats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gallery-bento,
  .gallery-row {
    grid-template-columns: 1fr;
  }

  .gallery-bento__item--wide,
  .gallery-bento__item--tall,
  .gallery-bento__item--square,
  .gallery-row__item,
  .gallery-row__cta {
    aspect-ratio: 4 / 3;
  }

  .booking-panel,
  .booking-summary-card,
  .testimonial-card,
  .service-card,
  .why-card,
  .value-card,
  .contact-card,
  .booking-success-card {
    padding: 24px;
  }

  .story-grid,
  .atmosphere-grid,
  .why-grid,
  .about-teaser,
  .booking-layout,
  .page-hero__grid,
  .error-404-hero__grid {
    gap: 40px;
  }
}
