:root {
  --ink: #18130f;
  --muted: #6f655c;
  --paper: #fbf7ef;
  --paper-2: #f1e7d6;
  --white: #ffffff;
  --leaf: #244b39;
  --leaf-2: #153327;
  --brick: #8f4634;
  --gold: #c88743;
  --line: rgba(24, 19, 15, 0.14);
  --shadow: 0 22px 60px rgba(24, 19, 15, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}

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

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

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

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

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

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  min-height: 68px;
  padding: 10px 12px 10px 18px;
  color: var(--white);
  background: rgba(17, 13, 10, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(251, 247, 239, 0.92);
  border-color: rgba(24, 19, 15, 0.12);
  box-shadow: 0 12px 34px rgba(24, 19, 15, 0.13);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 224px;
}

.brand__text {
  display: grid;
  gap: 1px;
}

.brand__text strong {
  font-size: 0.92rem;
  line-height: 1.1;
}

.brand__text small {
  color: currentColor;
  font-size: 0.76rem;
  opacity: 0.76;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 1rem;
  font-weight: 750;
}

.main-nav a {
  opacity: 0.86;
  transition:
    opacity 160ms ease,
    color 160ms ease;
}

.main-nav a:hover {
  opacity: 1;
  color: var(--gold);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  color: var(--white);
  background: var(--leaf);
  border-radius: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.header-map {
  display: none;
}

.header-phone svg,
.header-map svg,
.button svg,
.icon-button svg,
.contact-list svg,
.feature-card svg,
.booking-note svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  flex: 0 0 auto;
}

.icon-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: currentColor;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 88svh;
  overflow: hidden;
  color: var(--white);
}

.hero__bg,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__bg {
  background:
    center / cover no-repeat
      url("assets/images/hero-desktop.jpg");
  transform: scale(1.02);
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(17, 13, 10, 0.82), rgba(17, 13, 10, 0.42) 52%, rgba(17, 13, 10, 0.15)),
    linear-gradient(180deg, rgba(17, 13, 10, 0.45), rgba(17, 13, 10, 0.2) 44%, rgba(17, 13, 10, 0.72));
}

.hero__content {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 1180px;
  padding: 180px 0 72px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 870px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.8rem;
  line-height: 0.98;
  font-weight: 700;
}

.hero__lead {
  max-width: 720px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.22rem;
}

.hero__actions,
.section-heading--row,
.booking-note,
.contact-list a {
  display: flex;
  align-items: center;
}

.hero__actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

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

.button--primary {
  color: var(--white);
  background: var(--brick);
  box-shadow: 0 16px 36px rgba(143, 70, 52, 0.24);
}

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

.button--secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(12px);
}

.button--outline {
  color: var(--leaf);
  border-color: rgba(36, 75, 57, 0.3);
}

.button--light {
  color: var(--leaf-2);
  background: var(--paper);
}

.hero-media-actions {
  position: absolute;
  right: 0;
  bottom: 188px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.hero-music {
  position: relative;
  display: grid;
  width: 176px;
  height: 176px;
  margin: 0;
  padding: 0;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(244, 193, 110, 0.46);
  border-radius: 50%;
  box-shadow:
    0 22px 56px rgba(24, 19, 15, 0.3),
    inset 0 0 0 10px rgba(255, 255, 255, 0.08);
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.hero-music:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(244, 193, 110, 0.86);
  box-shadow:
    0 28px 70px rgba(24, 19, 15, 0.36),
    inset 0 0 0 10px rgba(244, 193, 110, 0.14);
  transform: translateY(-3px) scale(1.02);
}

.hero-music__ring,
.hero-music__ring svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-music__ring {
  animation: music-disc-spin 18000ms linear infinite;
}

.hero-music__ring text {
  fill: rgba(255, 244, 220, 0.95);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-music__center {
  position: relative;
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  color: var(--leaf-2);
  background: var(--paper);
  border-radius: 999px;
  box-shadow:
    inset 0 0 0 1px rgba(24, 19, 15, 0.1),
    0 0 0 12px rgba(200, 135, 67, 0.18);
}

.hero-music__center::before {
  position: absolute;
  inset: -18px;
  content: "";
  background:
    conic-gradient(from 0deg, rgba(200, 135, 67, 0.95), rgba(255, 255, 255, 0.1), rgba(143, 70, 52, 0.9), rgba(36, 75, 57, 0.95), rgba(200, 135, 67, 0.95));
  border-radius: inherit;
  opacity: 0.48;
  z-index: -1;
  animation: music-disc-spin 12000ms linear infinite reverse;
}

.hero-music__center svg {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
}

.hero-video .hero-music__center {
  color: var(--leaf-2);
  background: var(--gold);
}

.hero-video .hero-music__center::before {
  background:
    conic-gradient(from 0deg, rgba(255, 255, 255, 0.28), rgba(200, 135, 67, 0.95), rgba(143, 70, 52, 0.9), rgba(36, 75, 57, 0.95), rgba(255, 255, 255, 0.28));
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 820px;
}

.hero__facts span,
.amenities span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
}

.hero__facts span {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  font-weight: 800;
}

.booking-strip {
  background: var(--leaf-2);
  color: var(--white);
}

.strip-grid {
  display: grid;
  grid-template-columns: minmax(460px, 1.6fr) repeat(3, minmax(150px, 0.8fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.strip-grid > div {
  min-height: 112px;
  padding: 24px;
  background: var(--leaf-2);
}

.strip-label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.strip-grid strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.25;
}

.map-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(200, 135, 67, 0.78);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

.strip-grid .map-link {
  white-space: nowrap;
}

.map-link:hover {
  color: var(--gold);
}

.map-link--inline {
  color: var(--leaf);
}

.section {
  padding: 96px 0;
}

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

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

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

.section--local {
  background:
    linear-gradient(180deg, rgba(251, 247, 239, 0.92), rgba(241, 231, 214, 0.96)),
    url("assets/images/stone-wall.jpg") center / cover no-repeat;
}

.section--services {
  background:
    linear-gradient(180deg, rgba(21, 51, 39, 0.96), rgba(16, 29, 24, 0.98)),
    url("assets/images/stove-fire.jpg") center / cover no-repeat;
  color: var(--white);
}

.section--dark {
  color: var(--white);
  background: var(--leaf-2);
}

.section--gallery {
  background: #f8f1e4;
}

.section--video {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 18%, rgba(200, 135, 67, 0.24), transparent 34%),
    linear-gradient(145deg, var(--leaf-2), #2c1b15 72%);
}

.section--video::before {
  position: absolute;
  inset: 0;
  content: "";
  background: url("assets/images/stove-fire.jpg") center / cover no-repeat;
  opacity: 0.16;
}

.section--video .container {
  position: relative;
  z-index: 1;
}

.section--video .section-heading > p,
.section--video .section-heading p,
.section--video .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

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

.video-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(244, 193, 110, 0.2);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
}

.video-card__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #090807;
}

.video-card__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card__body {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.video-card__body h3 {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.18;
}

.video-card__body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.section-copy h2,
.section-heading h2,
.contact-copy h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1.08;
}

.section-copy p,
.section-heading p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section--dark .section-heading p,
.section--services .section-heading p,
.section--reviews p,
.section--reviews .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

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

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

.feature-card,
.price-card,
.steps article,
.faq-list details,
.review-cards article,
.contact-panel {
  border-radius: 8px;
}

.feature-card {
  min-height: 210px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 38px rgba(24, 19, 15, 0.06);
}

.feature-card svg {
  width: 28px;
  height: 28px;
  margin-bottom: 20px;
  color: var(--brick);
}

.feature-card h3,
.experience-card h3,
.price-card h3,
.steps h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  line-height: 1.2;
}

.feature-card p,
.experience-card p,
.price-card p,
.steps p,
.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading--row {
  justify-content: space-between;
  gap: 32px;
  max-width: none;
}

.section-heading--row > p {
  max-width: 460px;
  margin: 0;
}

.section-heading--center {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.experience-card {
  display: grid;
  min-height: 520px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.experience-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.experience-card div {
  padding: 24px;
}

.experience-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-weight: 900;
}

.experience-card p {
  color: rgba(255, 255, 255, 0.72);
}

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.amenities span {
  color: var(--leaf-2);
  background: var(--white);
  border: 1px solid rgba(36, 75, 57, 0.14);
  font-weight: 800;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  display: grid;
  align-content: start;
  min-height: 300px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.service-card svg {
  width: 30px;
  height: 30px;
  margin-bottom: 24px;
  color: var(--gold);
}

.service-card span {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.24rem;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.programs-block {
  margin-top: 84px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.program-card {
  display: grid;
  align-content: start;
  min-height: 286px;
  padding: 28px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.program-card span {
  margin-bottom: 18px;
  color: var(--brick);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.program-card h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
  line-height: 1.18;
}

.program-card p {
  margin-bottom: 20px;
  color: var(--muted);
}

.program-card strong {
  align-self: end;
  color: var(--brick);
  font-size: 1.55rem;
  line-height: 1;
}

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

.local-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.local-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  color: var(--leaf-2);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(36, 75, 57, 0.16);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 850;
}

.local-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 190px;
  gap: 12px;
}

.local-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(24, 19, 15, 0.13);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.price-card {
  min-height: 360px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(24, 19, 15, 0.11);
  box-shadow: 0 14px 36px rgba(24, 19, 15, 0.07);
}

.price-card--accent {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(36, 75, 57, 0.9), rgba(21, 51, 39, 0.98)),
    url("assets/images/stove-bg.jpg") center / cover no-repeat;
}

.price-card--accent p,
.price-card--accent li {
  color: rgba(255, 255, 255, 0.82);
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding-left: 18px;
}

.price-card li::marker {
  color: var(--gold);
}

.price-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 18px;
  padding: 0 10px;
  color: var(--leaf);
  background: rgba(36, 75, 57, 0.1);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card--accent .price-tag {
  color: var(--leaf-2);
  background: var(--paper);
}

.price-value {
  margin-bottom: 14px;
  color: var(--brick);
  font-size: 2.2rem;
  font-weight: 950;
  line-height: 1;
}

.price-card--accent .price-value {
  color: var(--gold);
}

.price-value small {
  display: block;
  margin-top: 8px;
  color: currentColor;
  font-size: 0.95rem;
  font-weight: 700;
  opacity: 0.82;
}

.price-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.price-list span {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.booking-note {
  gap: 14px;
  margin-top: 16px;
  padding: 18px 20px;
  color: var(--leaf-2);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(36, 75, 57, 0.16);
  border-radius: 8px;
}

.booking-note svg {
  width: 24px;
  height: 24px;
  color: var(--brick);
}

.booking-note p {
  margin: 0;
}

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

.steps article {
  min-height: 230px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
}

.steps span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 34px;
  color: var(--white);
  background: var(--brick);
  border-radius: 50%;
  font-weight: 900;
}

.gallery-grid {
  display: grid;
  grid-auto-rows: 230px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  background: var(--leaf-2);
  border: 0;
  border-radius: 8px;
  cursor: zoom-in;
}

.gallery-item::after {
  position: absolute;
  inset: auto 0 0;
  height: 54%;
  content: "";
  background: linear-gradient(180deg, rgba(12, 10, 8, 0), rgba(12, 10, 8, 0.64));
  opacity: 0;
  transition: opacity 220ms ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.045);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
}

.gallery-caption {
  position: absolute;
  right: 14px;
  bottom: 12px;
  left: 14px;
  z-index: 1;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.15;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.gallery-item:hover .gallery-caption,
.gallery-item:focus-visible .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.section--reviews {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(21, 51, 39, 0.95), rgba(81, 40, 31, 0.9)),
    url("assets/images/reviews-bg.jpg") center / cover no-repeat;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: center;
}

.reviews-layout h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.2rem;
  line-height: 1.04;
}

.reviews-layout p {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: 1.07rem;
}

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

.review-cards article {
  min-height: 160px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.review-cards strong {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 3rem;
  line-height: 1;
}

.review-cards span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 10px;
  max-width: none;
}

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

.faq-list summary {
  min-height: 66px;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 900;
}

.faq-list p {
  padding: 0 24px 22px;
}

.section--contact {
  padding-bottom: 0;
  color: var(--white);
  background: var(--leaf-2);
}

.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px;
  align-items: stretch;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-list a {
  gap: 12px;
  min-height: 52px;
  color: rgba(255, 255, 255, 0.9);
}

.contact-list svg {
  color: var(--gold);
}

.contact-panel {
  display: grid;
  align-content: space-between;
  gap: 26px;
  min-height: 420px;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(143, 70, 52, 0.92), rgba(21, 51, 39, 0.96)),
    url("assets/images/night-tub.jpg") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.contact-panel__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}

.contact-panel__top span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-panel__top strong {
  color: var(--gold);
  font-size: 3.2rem;
  line-height: 0.9;
}

.contact-panel p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
}

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

.button--outline-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.42);
}

.contact-panel__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.contact-panel__meta span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 12px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 850;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="fade"] {
  transform: none;
}

[data-reveal="left"] {
  transform: translateX(-34px);
}

[data-reveal="right"] {
  transform: translateX(34px);
}

[data-reveal="zoom"] {
  transform: scale(0.96);
}

[data-reveal="left"].is-visible,
[data-reveal="right"].is-visible,
[data-reveal="zoom"].is-visible {
  transform: translateX(0) scale(1);
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

.map-wrap {
  margin-top: 72px;
  overflow: hidden;
  background: #d4c6b1;
  border: 1px solid rgba(244, 193, 110, 0.2);
  border-radius: 8px;
}

.map-wrap iframe {
  display: block;
  filter: saturate(0.9);
}

.policy-page {
  background: var(--paper);
}

.policy-hero {
  position: relative;
  padding: 156px 0 78px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(17, 13, 10, 0.86), rgba(17, 13, 10, 0.48)),
    center / cover no-repeat url("assets/images/hero-desktop.jpg");
}

.policy-hero__content {
  max-width: 880px;
}

.policy-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  margin-bottom: 32px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.policy-back svg {
  width: 17px;
  height: 17px;
}

.policy-hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 0.95;
}

.policy-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 2vw, 1.25rem);
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.policy-meta span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 850;
}

.policy-main {
  padding: 72px 0 94px;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 32px;
  align-items: start;
}

.policy-content {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.policy-card {
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1px solid rgba(24, 19, 15, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(24, 19, 15, 0.08);
}

.policy-card h2 {
  margin: 0 0 16px;
  color: var(--leaf-2);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.12;
}

.policy-card p {
  margin: 0;
  color: var(--muted);
}

.policy-card p + p,
.policy-card p + .policy-reset,
.policy-reset + p,
.policy-card p + .policy-links,
.policy-card p + .policy-actions {
  margin-top: 18px;
}

.policy-card a:not(.button) {
  color: var(--brick);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.policy-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(24, 19, 15, 0.1);
  border-radius: 8px;
}

.policy-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: #fffaf2;
}

.policy-table th,
.policy-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(24, 19, 15, 0.1);
  border-right: 1px solid rgba(24, 19, 15, 0.08);
  text-align: left;
  vertical-align: top;
}

.policy-table th {
  color: var(--leaf-2);
  background: var(--paper-2);
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
}

.policy-table td {
  color: var(--muted);
  font-size: 0.95rem;
}

.policy-table tr:last-child td {
  border-bottom: 0;
}

.policy-table th:last-child,
.policy-table td:last-child {
  border-right: 0;
}

.policy-table code {
  color: var(--leaf-2);
  background: rgba(36, 75, 57, 0.08);
  border-radius: 4px;
  padding: 1px 4px;
  font-size: 0.88em;
  font-weight: 800;
}

.policy-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.policy-list li::marker {
  color: var(--gold);
}

.policy-links,
.policy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.policy-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  background: rgba(143, 70, 52, 0.08);
  border: 1px solid rgba(143, 70, 52, 0.14);
  border-radius: 8px;
}

.policy-aside {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 8px;
  padding: 18px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 10%, rgba(200, 135, 67, 0.22), transparent 34%),
    linear-gradient(145deg, var(--leaf-2), #2d1d17);
  border: 1px solid rgba(244, 193, 110, 0.2);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.policy-aside strong {
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
}

.policy-aside a {
  display: block;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 850;
}

.policy-aside a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.site-footer {
  padding: 24px 0 92px;
  color: var(--white);
  background: #101d18;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-grid div {
  display: grid;
  gap: 4px;
}

.footer-grid span {
  color: rgba(255, 255, 255, 0.6);
}

.footer-grid a {
  color: var(--gold);
  font-weight: 900;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.mobile-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  color: var(--white);
  background: var(--brick);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(24, 19, 15, 0.26);
  font-weight: 950;
}

.mobile-cta svg {
  width: 18px;
  height: 18px;
}

.audio-player {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
}

.audio-player__toggle {
  position: relative;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: var(--white);
  background: var(--brick);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(24, 19, 15, 0.28);
  cursor: pointer;
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    box-shadow 180ms ease;
}

.audio-player__toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(24, 19, 15, 0.34);
}

.audio-player__toggle span {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(200, 135, 67, 0.62);
  border-radius: inherit;
  animation: audio-pulse 1800ms ease-out infinite;
}

.audio-player__toggle svg {
  width: 25px;
  height: 25px;
}

.audio-player__mini {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 36px 70px 36px 36px 36px;
  align-items: center;
  gap: 9px;
  width: min(286px, calc(100vw - 32px));
  min-height: 64px;
  padding: 9px 10px;
  color: var(--white);
  background:
    radial-gradient(circle at 16% 20%, rgba(200, 135, 67, 0.2), transparent 36%),
    linear-gradient(150deg, rgba(21, 51, 39, 0.98), rgba(70, 36, 27, 0.98));
  border: 1px solid rgba(244, 193, 110, 0.24);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(24, 19, 15, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.96);
  transform-origin: right bottom;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  backdrop-filter: blur(16px);
}

.audio-player.has-mini:not(.is-open) .audio-player__mini {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.audio-player.has-mini:not(.is-open) .audio-player__toggle {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.9);
}

.audio-player__mini-button,
.audio-player__mini-play {
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.audio-player__mini-button {
  width: 36px;
  height: 36px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.1);
}

.audio-player__mini-button:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.16);
}

.audio-player__mini-play {
  position: relative;
  z-index: 1;
  width: 70px;
  height: 70px;
  margin-block: -18px;
  color: var(--leaf-2);
  background: var(--gold);
  box-shadow:
    0 14px 24px rgba(12, 10, 8, 0.26),
    0 0 0 5px rgba(200, 135, 67, 0.12);
  transform: translateY(-8px);
}

.audio-player__mini-play::before,
.audio-player__mini-play::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
}

.audio-player__mini-play::before {
  inset: -5px;
  border: 1px solid rgba(244, 193, 110, 0.42);
  box-shadow: 0 0 18px rgba(244, 193, 110, 0.16);
}

.audio-player__mini-play::after {
  inset: -8px;
  background:
    conic-gradient(
      from 0deg,
      rgba(244, 193, 110, 0),
      rgba(244, 193, 110, 0.72),
      rgba(255, 249, 234, 0.42),
      rgba(244, 193, 110, 0)
    );
  transform: rotate(0deg);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
}

.audio-player.is-playing .audio-player__mini-play::before {
  animation: miniPlayPulse 1.9s ease-out infinite;
}

.audio-player.is-playing .audio-player__mini-play::after {
  opacity: 1;
  animation: miniPlaySpin 6s linear infinite;
}

.audio-player__mini-play:hover {
  background: #f0bd75;
}

.audio-player__mini-button svg {
  width: 17px;
  height: 17px;
}

.audio-player__mini-play svg {
  position: relative;
  z-index: 1;
  width: 25px;
  height: 25px;
}

.audio-player__mini-pause-icon,
.audio-player.is-playing .audio-player__mini-play-icon {
  display: none;
}

.audio-player.is-playing .audio-player__mini-pause-icon {
  display: block;
}

.audio-player__mini-volume {
  position: relative;
}

.audio-player__mini-volume .audio-player__mini-button {
  color: var(--gold);
}

.audio-player__mini-volume-popover {
  --mini-volume-percent: 75%;
  position: absolute;
  right: 50%;
  bottom: calc(100% + 20px);
  display: grid;
  place-items: center;
  width: 44px;
  height: 174px;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(21, 51, 39, 0.98), rgba(70, 36, 27, 0.98));
  border: 1px solid rgba(244, 193, 110, 0.24);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(12, 10, 8, 0.3);
  opacity: 0;
  pointer-events: none;
  transform: translate(50%, 8px) scale(0.96);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.audio-player__mini-volume-popover::before,
.audio-player__mini-volume-popover::after {
  position: absolute;
  left: 50%;
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.audio-player__mini-volume-popover::before {
  top: 16px;
  bottom: 16px;
  width: 6px;
  background:
    linear-gradient(
      to top,
      var(--gold) 0 var(--mini-volume-percent),
      rgba(251, 247, 239, 0.3) var(--mini-volume-percent) 100%
    );
  border-radius: 999px;
}

.audio-player__mini-volume-popover::after {
  bottom: clamp(16px, var(--mini-volume-percent), calc(100% - 16px));
  width: 18px;
  height: 18px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(12, 10, 8, 0.24);
  transform: translate(-50%, 50%);
}

.audio-player__mini-volume-popover:focus-within {
  border-color: rgba(244, 193, 110, 0.54);
}

.audio-player.is-volume-open .audio-player__mini-volume-popover {
  opacity: 1;
  pointer-events: auto;
  transform: translate(50%, 0) scale(1);
}

.audio-player .audio-player__mini-volume-popover input[type="range"] {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  direction: rtl;
  opacity: 0;
  writing-mode: vertical-lr;
  -webkit-appearance: slider-vertical;
  appearance: slider-vertical;
  transform: none;
}

.audio-player__panel {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: minmax(256px, 0.95fr) minmax(256px, 1.05fr);
  grid-template-areas: "main list";
  align-items: stretch;
  gap: 12px;
  width: min(646px, calc(100vw - 44px));
  height: min(257px, calc(100svh - 44px));
  padding: 12px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 16%, rgba(244, 193, 110, 0.18), transparent 36%),
    radial-gradient(circle at 84% 12%, rgba(251, 247, 239, 0.12), transparent 30%),
    linear-gradient(130deg, rgba(21, 51, 39, 0.98), rgba(36, 32, 24, 0.98) 48%, rgba(93, 45, 33, 0.98));
  border: 1px solid rgba(244, 193, 110, 0.22);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(24, 19, 15, 0.36);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.96);
  transform-origin: right bottom;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  backdrop-filter: blur(18px);
}

.audio-player.is-open .audio-player__toggle {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.9);
}

.audio-player.is-open .audio-player__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.audio-player.is-playing .audio-player__toggle {
  background: var(--leaf);
}

.audio-player__head {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 4;
  display: grid;
}

.audio-player__head .audio-player__icon {
  width: 34px;
  height: 34px;
  color: var(--paper);
  background: rgba(12, 10, 8, 0.26);
  border: 1px solid rgba(244, 193, 110, 0.26);
  box-shadow: 0 10px 24px rgba(12, 10, 8, 0.24);
  backdrop-filter: blur(10px);
}

.audio-player__head .audio-player__icon:hover {
  color: var(--leaf-2);
  background: var(--gold);
  transform: translateY(-1px) scale(1.02);
}

.audio-player__track {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.audio-player__track span {
  width: fit-content;
  padding: 4px 8px;
  color: var(--gold);
  background: rgba(200, 135, 67, 0.12);
  border: 1px solid rgba(200, 135, 67, 0.22);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audio-player__track strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--white);
  font-size: 0.98rem;
  line-height: 1.18;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.audio-player__main {
  grid-area: main;
  display: grid;
  align-content: center;
  gap: 10px;
  min-height: 0;
  padding: 12px;
  background:
    radial-gradient(circle at 50% 22%, rgba(244, 193, 110, 0.16), transparent 46%),
    linear-gradient(180deg, rgba(251, 247, 239, 0.095), rgba(12, 10, 8, 0.12));
  border: 1px solid rgba(244, 193, 110, 0.16);
  border-radius: 8px;
}

.audio-player__icon,
.audio-player__play {
  display: inline-grid;
  place-items: center;
  border: 0;
  cursor: pointer;
}

.audio-player__icon {
  width: 38px;
  height: 38px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  transition:
    color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.audio-player__icon:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.audio-player__icon svg {
  width: 17px;
  height: 17px;
}

.audio-player__control-row {
  display: grid;
  justify-items: center;
  gap: 0;
}

.audio-player__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  width: 100%;
  padding: 9px;
  background: rgba(12, 10, 8, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
}

.audio-player__play {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  color: var(--leaf-2);
  background: var(--gold);
  border-radius: 999px;
  box-shadow:
    0 12px 24px rgba(12, 10, 8, 0.26),
    0 0 0 6px rgba(200, 135, 67, 0.12);
}

.audio-player__play:hover {
  background: #f0bd75;
}

.audio-player__play svg {
  width: 24px;
  height: 24px;
}

.audio-player__pause-icon,
.audio-player.is-playing .audio-player__play-icon {
  display: none;
}

.audio-player.is-playing .audio-player__pause-icon {
  display: block;
}

.audio-player__progress {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.audio-player__progress span {
  min-width: 38px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 850;
  text-align: center;
}

.audio-player input[type="range"] {
  width: 100%;
  min-width: 0;
  accent-color: var(--gold);
  cursor: pointer;
}

.audio-player__progress {
  padding: 0;
}

.audio-player__volume-menu {
  position: relative;
  flex: 0 0 auto;
}

.audio-player__volume-menu .audio-player__icon[aria-expanded="true"] {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(244, 193, 110, 0.42);
}

.audio-player__volume-popover {
  position: absolute;
  right: 50%;
  bottom: calc(100% + 12px);
  z-index: 2;
  display: grid;
  align-items: center;
  width: 168px;
  min-height: 42px;
  padding: 10px 12px;
  background:
    linear-gradient(135deg, rgba(21, 51, 39, 0.96), rgba(67, 40, 31, 0.96));
  border: 1px solid rgba(244, 193, 110, 0.32);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(12, 10, 8, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translate(50%, 8px) scale(0.96);
  transform-origin: 50% 100%;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.audio-player__volume-popover::after {
  position: absolute;
  right: 50%;
  bottom: -6px;
  width: 12px;
  height: 12px;
  content: "";
  background: rgba(67, 40, 31, 0.96);
  border-right: 1px solid rgba(244, 193, 110, 0.32);
  border-bottom: 1px solid rgba(244, 193, 110, 0.32);
  transform: translateX(50%) rotate(45deg);
}

.audio-player.is-panel-volume-open .audio-player__volume-popover {
  opacity: 1;
  pointer-events: auto;
  transform: translate(50%, 0) scale(1);
}

.audio-player__volume-popover input[type="range"] {
  position: relative;
  z-index: 1;
}

.audio-player__list {
  grid-area: list;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 7px;
  min-height: 0;
  padding: 10px;
  background:
    linear-gradient(180deg, rgba(12, 10, 8, 0.14), rgba(255, 255, 255, 0.055));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.audio-player__list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 34px;
  padding-right: 42px;
}

.audio-player__list-head span {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 950;
}

.audio-player__list-head small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 850;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 75;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px 12px;
  width: min(390px, calc(100vw - 36px));
  padding: 12px;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 8%, rgba(200, 135, 67, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(21, 51, 39, 0.98), rgba(70, 36, 27, 0.98));
  border: 1px solid rgba(244, 193, 110, 0.22);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(24, 19, 15, 0.28);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  backdrop-filter: blur(16px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner__icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--leaf-2);
  background: var(--gold);
  border-radius: 50%;
}

.cookie-banner__icon svg {
  width: 20px;
  height: 20px;
}

.cookie-banner__text {
  min-width: 0;
}

.cookie-banner__text strong {
  display: block;
  margin-bottom: 2px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.cookie-banner__text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  line-height: 1.35;
}

.cookie-banner__text a {
  color: var(--gold);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.cookie-banner__actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.cookie-banner__button {
  min-height: 38px;
  padding: 0 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 950;
}

.cookie-banner__button--primary {
  color: var(--leaf-2);
  background: var(--gold);
  border-color: transparent;
}

.cookie-banner__button:hover {
  border-color: rgba(244, 193, 110, 0.54);
}

.audio-player__playlist {
  display: grid;
  gap: 5px;
  min-height: 0;
  max-height: none;
  padding: 1px 6px 1px 1px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: rgba(200, 135, 67, 0.86) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
}

.audio-player__playlist::-webkit-scrollbar {
  width: 8px;
}

.audio-player__playlist::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.audio-player__playlist::-webkit-scrollbar-thumb {
  background: rgba(200, 135, 67, 0.86);
  border-radius: 999px;
}

.audio-player__playlist button {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 36px;
  min-height: 36px;
  padding: 5px 9px 5px 6px;
  color: rgba(255, 255, 255, 0.9);
  text-align: left;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.audio-player__playlist button:hover,
.audio-player__playlist button.is-active {
  color: var(--leaf-2);
  background:
    linear-gradient(90deg, rgba(251, 247, 239, 0.98), rgba(241, 231, 214, 0.92)),
    var(--paper);
  border-color: rgba(200, 135, 67, 0.7);
  transform: translateX(-1px);
}

.audio-player__playlist span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--gold);
  background: rgba(200, 135, 67, 0.14);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 950;
}

.audio-player__playlist button.is-active span,
.audio-player__playlist button:hover span {
  color: var(--white);
  background: var(--brick);
}

.audio-player__playlist strong {
  display: -webkit-box;
  overflow: hidden;
  font-size: 0.8rem;
  line-height: 1.16;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

@keyframes audio-pulse {
  0% {
    opacity: 0.8;
    transform: scale(0.86);
  }

  100% {
    opacity: 0;
    transform: scale(1.22);
  }
}

@keyframes music-disc-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes miniPlayPulse {
  0% {
    opacity: 0.52;
    transform: scale(0.96);
  }

  70% {
    opacity: 0.12;
  }

  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

@keyframes miniPlaySpin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .audio-player__toggle span,
  .audio-player.is-playing .audio-player__mini-play::before,
  .audio-player.is-playing .audio-player__mini-play::after,
  .hero-music__ring,
  .hero-music__center::before {
    animation: none;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  justify-items: center;
  gap: 18px;
  padding: 78px 24px 22px;
  background: rgba(12, 10, 8, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__stage {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 16px;
  width: min(1180px, 100%);
  min-height: 0;
}

.lightbox__figure {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-width: 0;
  margin: 0;
}

.lightbox__figure img {
  max-height: calc(100svh - 220px);
  width: auto;
  max-width: min(1120px, 100%);
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  touch-action: pan-y;
  user-select: none;
}

.lightbox__caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: min(760px, 100%);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  line-height: 1.3;
  text-align: center;
}

.lightbox__caption strong {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 0.84rem;
}

.lightbox__nav {
  width: 52px;
  height: 52px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  backdrop-filter: blur(12px);
}

.lightbox__nav:hover,
.lightbox__close:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.18);
}

.lightbox__nav svg {
  width: 24px;
  height: 24px;
}

.lightbox__thumbs {
  display: flex;
  gap: 10px;
  width: min(940px, calc(100vw - 48px));
  min-height: 66px;
  padding: 4px 2px 8px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
}

.lightbox__thumb {
  flex: 0 0 82px;
  height: 58px;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.66;
  transition:
    border-color 160ms ease,
    opacity 160ms ease,
    transform 160ms ease;
}

.lightbox__thumb:hover,
.lightbox__thumb.is-active {
  border-color: var(--gold);
  opacity: 1;
  transform: translateY(-2px);
}

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

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--white);
}

@media (max-width: 620px) {
  .cookie-banner {
    right: 12px;
    bottom: 82px;
    left: 12px;
    width: auto;
    padding: 11px;
  }

  .lightbox {
    gap: 10px;
    padding: 64px 12px 12px;
  }

  .lightbox__stage {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .lightbox__figure {
    gap: 10px;
  }

  .lightbox__figure img {
    max-width: 100%;
    max-height: calc(100svh - 190px);
  }

  .lightbox__caption {
    gap: 8px;
    font-size: 0.82rem;
  }

  .lightbox__nav {
    position: absolute;
    top: 50%;
    z-index: 1;
    width: 44px;
    height: 44px;
    transform: translateY(-50%);
  }

  .lightbox__nav--prev {
    left: 8px;
  }

  .lightbox__nav--next {
    right: 8px;
  }

  .lightbox__thumbs {
    width: calc(100vw - 24px);
    min-height: 56px;
    gap: 8px;
  }

  .lightbox__thumb {
    flex-basis: 64px;
    height: 48px;
  }

  .lightbox__close {
    top: 14px;
    right: 14px;
  }

}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .main-nav {
    gap: 12px;
    font-size: 0.94rem;
  }

  h1 {
    font-size: 4rem;
  }

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

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

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

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

@media (max-width: 900px) {
  .container {
    width: min(100% - 28px, 720px);
  }

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

  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-aside {
    position: static;
    order: -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .policy-aside strong {
    grid-column: 1 / -1;
  }

  .site-header {
    top: 10px;
    grid-template-columns: 1fr auto auto auto;
    width: calc(100% - 20px);
    min-height: 62px;
    padding: 8px 10px 8px 12px;
    gap: 8px;
  }

  .brand {
    order: 1;
    min-width: 0;
  }

  .brand__text strong {
    font-size: 0.84rem;
  }

  .brand__text small,
  .header-phone span {
    display: none;
  }

  .header-phone {
    display: inline-flex;
    order: 2;
    width: 44px;
    min-height: 44px;
    padding: 0;
  }

  .header-map {
    display: inline-grid;
    order: 3;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--white);
    background: var(--brick);
    border-radius: 8px;
  }

  .menu-toggle {
    display: inline-grid;
    order: 4;
  }

  .main-nav {
    position: fixed;
    top: 82px;
    right: 10px;
    left: 10px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    font-size: 1.08rem;
    background: var(--paper);
    border: 1px solid rgba(24, 19, 15, 0.12);
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    min-height: 52px;
    padding: 15px 16px;
    border-radius: 8px;
  }

  .main-nav a:hover {
    background: rgba(36, 75, 57, 0.08);
  }

  .hero {
    min-height: 86svh;
  }

  .hero__bg {
    background-image: url("assets/images/hero-mobile.jpg");
    background-position: center;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(17, 13, 10, 0.44), rgba(17, 13, 10, 0.28) 34%, rgba(17, 13, 10, 0.82)),
      linear-gradient(90deg, rgba(17, 13, 10, 0.6), rgba(17, 13, 10, 0.18));
  }

  .hero__content {
    padding: 150px 0 52px;
  }

  .hero-media-actions {
    right: 8px;
    bottom: 178px;
    gap: 14px;
  }

  .hero-music {
    width: 154px;
    height: 154px;
  }

  .hero-music__center {
    width: 74px;
    height: 74px;
  }

  .hero-music__center::before {
    inset: -15px;
  }

  .hero-music__ring text {
    font-size: 10px;
  }

  h1 {
    font-size: 3.2rem;
  }

  .hero__lead {
    font-size: 1.05rem;
  }

  .strip-grid,
  .split,
  .local-layout,
  .steps,
  .reviews-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .strip-grid > div {
    min-height: 92px;
    padding: 20px;
  }

  .strip-grid .map-link {
    white-space: normal;
  }

  .section {
    padding: 74px 0;
  }

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

  .section-copy h2,
  .section-heading h2,
  .contact-copy h2,
  .reviews-layout h2 {
    font-size: 2.35rem;
  }

  .section-heading--row {
    display: grid;
  }

  .experience-grid,
  .price-grid,
  .service-grid,
  .program-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .experience-card {
    min-height: auto;
  }

  .experience-card img {
    height: 260px;
  }

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

  .local-media {
    grid-auto-rows: 180px;
  }

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

  .contact-layout {
    gap: 34px;
  }

  .contact-panel {
    min-height: auto;
  }
}

@media (max-width: 900px) {
  .hero-media-actions {
    position: relative;
    right: auto;
    bottom: auto;
    align-items: flex-end;
    justify-content: flex-end;
    width: 148px;
    margin: 0 0 28px auto;
  }

  .hero-music {
    width: 148px;
    height: 148px;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 0;
  }

  .policy-hero {
    padding: 128px 0 58px;
  }

  .policy-back {
    margin-bottom: 24px;
  }

  .policy-meta {
    gap: 8px;
  }

  .policy-meta span {
    width: 100%;
    justify-content: center;
  }

  .policy-main {
    padding: 42px 0 68px;
  }

  .policy-aside {
    grid-template-columns: 1fr;
  }

  .policy-card {
    padding: 20px;
  }

  .policy-table th,
  .policy-table td {
    padding: 13px;
  }

  .video-card__body {
    padding: 15px;
  }

  .policy-actions .button,
  .policy-links a {
    width: 100%;
  }

  .audio-player {
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    justify-content: flex-end;
  }

  .audio-player__panel {
    right: 0;
    left: 0;
    width: 100%;
    height: auto;
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "list";
    max-height: calc(100svh - 28px);
    padding: 48px 10px 10px;
    overflow-y: auto;
  }

  .audio-player__head {
    top: 10px;
    right: 10px;
  }

  .audio-player__main,
  .audio-player__list {
    padding: 10px;
  }

  .audio-player__control-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .audio-player__controls {
    justify-content: center;
    gap: 8px;
    padding: 8px;
  }

  .audio-player__icon {
    width: 36px;
    height: 36px;
  }

  .audio-player__play {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }

  .audio-player__volume-popover {
    width: min(156px, calc(100vw - 68px));
    min-height: 40px;
    padding: 9px 10px;
  }

  .audio-player__playlist {
    max-height: 186px;
  }

  .audio-player__list-head {
    min-height: auto;
    padding-right: 0;
  }

  .audio-player__mini {
    right: 0;
    left: 0;
    width: 100%;
    grid-template-columns: 34px 68px 34px 34px 34px;
    grid-template-areas: "prev play next volume expand";
    justify-content: center;
    gap: 8px;
    min-height: 66px;
    padding: 8px;
  }

  .audio-player__mini-button {
    width: 34px;
    height: 34px;
  }

  [data-audio-mini-prev] {
    grid-area: prev;
  }

  .audio-player__mini-play {
    grid-area: play;
    align-self: center;
    width: 68px;
    height: 68px;
    margin-block: -16px;
    transform: translateY(-10px);
  }

  [data-audio-mini-next] {
    grid-area: next;
  }

  .audio-player__mini-play svg {
    width: 22px;
    height: 22px;
  }

  .audio-player__mini-volume-popover {
    bottom: calc(100% + 20px);
    height: 166px;
  }

  .audio-player__mini-volume {
    grid-area: volume;
    justify-self: start;
  }

  .audio-player__mini-expand {
    grid-area: expand;
    align-self: center;
  }

  .audio-player__track strong,
  .audio-player__playlist strong {
    white-space: normal;
  }

  .container {
    width: calc(100% - 24px);
  }

  .hero {
    min-height: 88svh;
  }

  .hero__content {
    padding: 132px 0 42px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.76rem;
  }

  h1 {
    font-size: 2.45rem;
    line-height: 1.02;
  }

  .hero__lead {
    margin-bottom: 24px;
  }

  .hero-media-actions {
    gap: 10px;
    width: 124px;
    margin-bottom: 24px;
  }

  .hero-music {
    width: 124px;
    height: 124px;
  }

  .hero-music__ring text {
    font-size: 9px;
  }

  .hero-music__center {
    width: 58px;
    height: 58px;
    box-shadow:
      inset 0 0 0 1px rgba(24, 19, 15, 0.1),
      0 0 0 8px rgba(200, 135, 67, 0.18);
  }

  .hero-music__center::before {
    inset: -11px;
  }

  .hero-music__center svg {
    width: 22px;
    height: 22px;
  }

  .button,
  .hero__actions .button {
    width: 100%;
  }

  .hero__facts span {
    min-height: 34px;
    font-size: 0.86rem;
  }

  .strip-grid strong {
    font-size: 1rem;
  }

  .section {
    padding: 58px 0;
  }

  .section-copy h2,
  .section-heading h2,
  .contact-copy h2,
  .reviews-layout h2 {
    font-size: 2rem;
  }

  .feature-card,
  .service-card,
  .program-card,
  .price-card,
  .steps article,
  .contact-panel {
    padding: 22px;
  }

  .gallery-grid {
    grid-auto-rows: 170px;
    grid-template-columns: 1fr;
  }

  .local-media {
    grid-template-columns: 1fr;
    grid-auto-rows: 190px;
  }

  .gallery-item::after,
  .gallery-caption {
    opacity: 1;
  }

  .gallery-caption {
    transform: none;
  }

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

  .review-cards article {
    min-height: 134px;
  }

  .review-cards strong {
    font-size: 2.5rem;
  }

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

  .faq-list summary {
    min-height: 58px;
    padding: 18px;
  }

  .faq-list p {
    padding: 0 18px 18px;
  }

  .contact-panel__top,
  .contact-panel__actions,
  .contact-panel__meta {
    grid-template-columns: 1fr;
  }

  .contact-panel__top {
    display: grid;
  }

  .contact-panel__top strong {
    font-size: 2.5rem;
  }

  .map-wrap {
    margin-top: 52px;
  }

  .map-wrap iframe {
    height: 340px;
  }

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

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}
