@view-transition {
  navigation: auto;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/manrope-400.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/manrope-500.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/manrope-600.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/manrope-700.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("assets/fonts/manrope-800.ttf") format("truetype");
}

@font-face {
  font-family: "Prata";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/prata-400.ttf") format("truetype");
}

:root {
  --bg: #ede4d5;
  --bg-strong: #e2d5c2;
  --panel: linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(247, 239, 228, 0.28));
  --panel-strong: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(247, 239, 228, 0.4));
  --panel-dark: linear-gradient(180deg, rgba(18, 29, 24, 0.88), rgba(18, 29, 24, 0.72));
  --line: rgba(92, 74, 48, 0.14);
  --line-strong: rgba(92, 74, 48, 0.22);
  --text: #171d19;
  --muted: #5b6159;
  --forest: #193227;
  --forest-2: #2f4d3d;
  --sand: #d7c4a6;
  --gold: #a57a45;
  --cream: #fbf7f0;
  --glass-white: rgba(255, 255, 255, 0.42);
  --glass-line: rgba(255, 255, 255, 0.34);
  --glass-shadow: 0 30px 90px rgba(19, 22, 18, 0.12);
  --glass-shadow-soft: 0 18px 50px rgba(19, 22, 18, 0.08);
  --danger: #964d41;
  --success: #28543f;
  --shadow-xl: 0 40px 100px rgba(22, 21, 15, 0.14);
  --shadow-lg: 0 24px 60px rgba(22, 21, 15, 0.1);
  --radius-2xl: 40px;
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --content-width: 1320px;
  --header-height: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 12% 6%, rgba(233, 196, 136, 0.32), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(60, 96, 78, 0.18), transparent 24%),
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.42), transparent 34%),
    linear-gradient(180deg, #f8f4ed 0%, #f2eadf 46%, #efe6d8 100%);
  min-height: 100vh;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0, transparent 18%, transparent 82%, rgba(255, 255, 255, 0.16) 100%);
  pointer-events: none;
  z-index: 0;
}

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

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

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

button {
  cursor: pointer;
}

.ambient,
.grain {
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: 0;
}

.ambient {
  width: 40vw;
  height: 40vw;
  filter: blur(90px);
  opacity: 0.42;
}

.ambient--one {
  top: 6%;
  left: -10%;
  background: rgba(215, 196, 166, 0.8);
}

.ambient--two {
  top: 28%;
  right: -12%;
  background: rgba(44, 78, 60, 0.34);
}

.grain {
  inset: 0;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 15% 25%, #000 0, transparent 24%),
    radial-gradient(circle at 70% 40%, #000 0, transparent 22%);
  background-size: 9px 9px;
}

.site-shell {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, var(--content-width));
  margin: 0 auto;
  padding-bottom: 0;
}

.site-header {
  position: sticky;
  top: 22px;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  margin-top: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(247, 239, 228, 0.48));
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 34px;
  backdrop-filter: blur(24px);
  box-shadow:
    0 24px 72px rgba(14, 17, 14, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.brand__eyebrow,
.eyebrow {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.brand__title {
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.site-header__toggle,
.mobile-nav {
  display: none;
}

.site-header__toggle {
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 18px;
  background: rgba(25, 50, 39, 0.08);
  box-shadow: inset 0 0 0 1px rgba(25, 50, 39, 0.1);
}

.site-header__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--forest);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.site-header__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.site-header__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-current {
  color: var(--forest);
  background: rgba(25, 50, 39, 0.08);
  transform: translateY(-1px);
}

.site-header__actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--forest) 0%, #284737 100%);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 18px 40px rgba(20, 43, 33, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(20, 43, 33, 0.28);
}

.button--compact {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.93rem;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.66);
  color: var(--forest);
  box-shadow:
    inset 0 0 0 1px rgba(25, 50, 39, 0.14),
    0 12px 28px rgba(20, 43, 33, 0.08);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.96);
}

/* Homepage sections flow in natural HTML order — no order overrides needed */

.section {
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 34px;
  padding: 68px 0 28px;
}

.page-intro {
  padding: 42px 0 18px;
}

.page-intro__grid,
.overview-links__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr);
  gap: 22px;
}

.overview-links__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-bottom: 18px;
}

.page-intro__content,
.page-intro__panel,
.overview-card,
.page-cta__card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: var(--panel);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px);
}

.page-intro__content,
.page-intro__panel,
.page-cta__card {
  padding: 34px;
  border-radius: 34px;
}

.page-intro__content h1,
.overview-card h2,
.page-cta__card h2 {
  margin: 14px 0 0;
  font-family: "Prata", serif;
  font-size: clamp(2.4rem, 4.8vw, 4.6rem);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.page-intro__lead {
  margin-top: 20px;
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.82;
}

.page-intro__panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(246, 239, 228, 0.52));
  box-shadow: 0 26px 68px rgba(31, 25, 18, 0.08);
}

.page-intro__stats {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.page-intro__stats div {
  display: grid;
  gap: 6px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(61, 49, 31, 0.08);
}

.page-intro__stats div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.page-intro__stats strong {
  color: var(--forest);
  font-size: 1.08rem;
}

.page-intro__stats span {
  color: var(--muted);
  line-height: 1.7;
}

.overview-card {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.overview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 64px rgba(22, 21, 15, 0.13);
}

.overview-card h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
}

.overview-card p {
  color: var(--muted);
  line-height: 1.8;
}

.overview-card__link {
  color: var(--forest);
  font-weight: 800;
}

.signature-program__grid,
.arrival-journey__grid,
.compare-band__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.program-card,
.journey-card,
.compare-band__card {
  padding: 30px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}

.program-card--forest,
.journey-card--accent {
  background:
    radial-gradient(circle at top right, rgba(165, 122, 69, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(19, 33, 27, 0.96), rgba(31, 51, 41, 0.92));
  color: rgba(255, 255, 255, 0.96);
}

.program-card--forest p,
.journey-card--accent p,
.journey-card--accent span,
.program-card--forest li {
  color: rgba(255, 255, 255, 0.84);
}

.program-card--forest p,
.journey-card--accent p,
.journey-card--accent span,
.program-card--forest li {
  color: rgba(255, 255, 255, 0.84);
}

.program-card h3,
.journey-card h2 {
  margin: 14px 0 0;
  font-family: "Prata", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.04;
  font-weight: 400;
}

.journey-steps {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.journey-steps div {
  display: grid;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(61, 49, 31, 0.1);
}

.journey-card--accent .journey-steps div,
.program-card--forest .list li {
  border-color: rgba(255, 255, 255, 0.14);
}

.compare-band__card {
  display: grid;
  gap: 12px;
  align-items: end;
  min-height: 180px;
}

.compare-band__card strong {
  font-family: "Prata", serif;
  font-size: clamp(1.5rem, 2.3vw, 2.2rem);
  line-height: 1.16;
  font-weight: 400;
}

.page-cta {
  padding-top: 24px;
}

.page-cta__card {
  background:
    radial-gradient(circle at top right, rgba(165, 122, 69, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(255, 250, 244, 0.94), rgba(247, 242, 234, 0.92));
}

.hero__content h1,
.section-heading h2,
.manifesto-card h2,
.showcase__sticky h2 {
  margin: 16px 0 0;
  font-family: "Prata", serif;
  font-size: clamp(2.8rem, 5.8vw, 5.35rem);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.hero__lead,
.section-intro,
.house-card__lead,
.manifesto-card p,
.occasion-card p,
.showcase__lead,
.showcase__note,
.video-panel__caption,
.service-card p,
.contact-card p,
.map-card p,
.faq-item p,
.booking-form__footnote,
.field-hint,
.summary-card p,
.calendar-card p,
.status-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.82;
}

.hero__lead {
  max-width: 640px;
  margin-top: 24px;
  font-size: 1.08rem;
}

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

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

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

.signature-note {
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 251, 245, 0.76);
  border: 1px solid rgba(61, 49, 31, 0.1);
}

.signature-note--dark {
  background: linear-gradient(180deg, rgba(19, 33, 27, 0.96), rgba(31, 51, 41, 0.92));
  color: rgba(255, 255, 255, 0.94);
}

.signature-note__label,
.compare-band__label,
.program-card__index {
  display: inline-flex;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.signature-note p,
.program-card p,
.journey-card p {
  margin: 10px 0 0;
  line-height: 1.78;
}

.fact-card,
.hero-media,
.house-card,
.manifesto-card,
.occasion-card,
.service-card,
.booking-form,
.summary-card,
.calendar-card,
.status-card,
.booking-log,
.faq-item,
.map-card,
.contact-card,
.video-panel,
.editorial-card,
.rate-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: var(--panel);
  box-shadow: var(--glass-shadow-soft);
  backdrop-filter: blur(18px);
}

.fact-card {
  padding: 18px 20px;
  border-radius: var(--radius-md);
}

.fact-card strong {
  display: block;
  color: var(--forest);
  font-size: 1.08rem;
}

.fact-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.6;
}

.hero__stage {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: end;
}

.hero-media {
  overflow: hidden;
  border-radius: var(--radius-2xl);
}

.hero-media--primary {
  padding: 16px;
}

.hero-media--secondary {
  padding: 16px;
  background: linear-gradient(180deg, rgba(20, 33, 27, 0.92), rgba(25, 44, 35, 0.88));
  color: rgba(255, 255, 255, 0.96);
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 26px;
}

.hero-media__caption {
  padding: 18px 6px 4px;
  font-size: 0.96rem;
  line-height: 1.72;
}

.hero-media--secondary .hero-media__caption {
  color: rgba(255, 255, 255, 0.72);
}

.hero-media__meta,
.house-card__overlay,
.map-card__meta,
.service-card__index {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(25, 50, 39, 0.1);
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag--soft {
  background: rgba(165, 122, 69, 0.14);
  color: #8c6231;
}

.hero-media--secondary .tag {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
}

.ticker {
  padding: 16px 0 8px;
  overflow: hidden;
}

.ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  min-width: 100%;
  animation: ticker-scroll 28s linear infinite;
}

.ticker__track span {
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 700;
}

.ticker__track span::after {
  content: "•";
  margin-left: 24px;
  color: rgba(25, 50, 39, 0.4);
}

.collection {
  padding: 40px 0 56px;
}

.section-heading {
  max-width: 940px;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
}

.section-intro {
  max-width: 760px;
  margin-top: 18px;
  font-size: 1.02rem;
}

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

.house-card {
  overflow: hidden;
  border-radius: var(--radius-2xl);
}

.house-card.is-selected {
  box-shadow: 0 0 0 2px rgba(25, 50, 39, 0.22), var(--shadow-lg);
}

.house-card__media {
  position: relative;
}

.house-card__media img,
.house-card__media video {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.house-card--eco .house-card__media {
  display: grid;
  place-items: center;
  min-height: 420px;
  background: linear-gradient(180deg, #102019 0%, #152720 100%);
}

.house-card--eco .house-card__media img {
  width: min(72%, 340px);
  height: 360px;
  margin: 34px auto 42px;
  border-radius: 28px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.house-card__overlay {
  position: absolute;
  inset: auto 20px 20px 20px;
}

.house-card__body {
  padding: 28px;
}

.house-card__eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.house-card__body h3,
.occasion-card h3,
.service-card h3,
.map-card h3,
.contact-card h3 {
  margin: 14px 0 0;
  font-size: 1.75rem;
  line-height: 1.1;
}

.house-card__body h3 {
  font-family: "Prata", serif;
  font-size: 2.1rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 20px;
  line-height: 1.68;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.83em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--forest), var(--gold));
}

.house-card__actions,
.showcase__actions,
.link-cluster,
.link-column,
.amenity-list,
.checkbox-list,
.length-pills,
.status-card__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.house-card__actions {
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}

.link-cluster a,
.link-column a {
  color: var(--forest);
  font-weight: 700;
}

.link-column {
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.manifesto {
  padding: 64px 0;
}

.manifesto__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
}

.manifesto-card,
.occasion-card {
  border-radius: var(--radius-2xl);
}

.manifesto-card {
  padding: 42px;
}

.quote-block {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(61, 49, 31, 0.1);
}

.quote-block__line {
  display: block;
  width: 84px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 14px;
}

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

.occasion-card {
  padding: 26px;
}

.occasion-card__index,
.service-card__index {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.showcase {
  padding: 68px 0;
}

.showcase__grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: start;
}

.showcase__grid--eco {
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
}

.showcase__sticky {
  position: sticky;
  top: calc(var(--header-height) + 46px);
}

.showcase__lead {
  margin-top: 22px;
  font-size: 1.02rem;
}

.amenity-list {
  margin-top: 26px;
}

.amenity-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(25, 50, 39, 0.08);
  color: var(--forest);
  font-size: 0.86rem;
  font-weight: 700;
}

.rate-card,
.editorial-card {
  padding: 22px 24px;
  margin-top: 24px;
  border-radius: var(--radius-xl);
}

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

.rate-card div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(61, 49, 31, 0.08);
}

.rate-card div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.rate-card span {
  color: var(--muted);
}

.editorial-card__title {
  margin: 0;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.editorial-card strong {
  display: block;
  margin-top: 12px;
  font-size: 1.7rem;
}

.showcase__note {
  margin-top: 20px;
}

.showcase__actions {
  margin-top: 26px;
}

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

.gallery-card,
.eco-shot {
  position: relative;
  border: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.7);
}

.gallery-card img,
.eco-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-card:hover img,
.eco-shot:hover img {
  transform: scale(1.04);
}

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

.gallery-card--wide {
  grid-column: 1 / -1;
  min-height: 420px;
}

.showcase--dark {
  position: relative;
  margin-top: 0;
  padding: 72px 0;
  color: rgba(255, 255, 255, 0.95);
}

.showcase--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 48px;
  background:
    radial-gradient(circle at top right, rgba(164, 120, 67, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(18, 29, 24, 0.98), rgba(10, 18, 15, 0.96));
  z-index: -1;
}

.showcase--dark .eyebrow,
.showcase--dark .editorial-card__title,
.showcase--dark .occasion-card__index,
.showcase--dark .service-card__index {
  color: #cba670;
}

.showcase--dark .showcase__lead,
.showcase--dark .showcase__note,
.showcase--dark .video-panel__caption {
  color: rgba(255, 255, 255, 0.72);
}

.showcase--dark .amenity-pill {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
}

.showcase--dark .editorial-card,
.showcase--dark .video-panel {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.eco-media {
  display: grid;
  gap: 16px;
}

.video-panel {
  overflow: hidden;
  border-radius: var(--radius-2xl);
}

.video-panel__head,
.video-panel__caption {
  padding: 20px 22px 0;
}

.video-panel video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #07100c;
  margin-top: 16px;
}

.video-panel__caption {
  padding: 18px 22px 22px;
  margin: 0;
}

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

.eco-shot {
  min-height: 240px;
  background: rgba(255, 255, 255, 0.04);
}

.eco-shot img {
  height: 100%;
  background: #09110d;
}

.services {
  padding: 64px 0;
}

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

.service-card {
  padding: 24px;
  border-radius: var(--radius-xl);
}

.booking {
  padding: 52px 0;
}

.booking-shell {
  padding: 36px;
  border-radius: 48px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.38), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(247, 241, 232, 0.3));
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 34px 100px rgba(18, 18, 12, 0.12);
  backdrop-filter: blur(24px);
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.82fr);
  gap: 22px;
}

.booking-form,
.booking-sidebar {
  align-self: start;
}

.booking-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: 32px;
  background: var(--panel-strong);
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-group label {
  font-weight: 700;
}

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

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(25, 50, 39, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: rgba(25, 50, 39, 0.28);
  box-shadow: 0 0 0 4px rgba(25, 50, 39, 0.08);
  background: rgba(255, 255, 255, 0.96);
}

.segmented-control {
  padding: 6px;
  border-radius: 999px;
  background: rgba(25, 50, 39, 0.07);
}

.segmented-control__button,
.length-pill {
  flex: 1;
  min-height: 46px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--forest);
  font-weight: 800;
}

.segmented-control__button.is-active,
.length-pill.is-active {
  background: #fff;
  box-shadow: 0 12px 24px rgba(16, 23, 18, 0.12);
}

.length-pill {
  min-width: 110px;
  background: rgba(25, 50, 39, 0.06);
}

.checkbox-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(61, 49, 31, 0.08);
}

.checkbox-pill input {
  width: 18px;
  height: 18px;
}

.checkbox-pill.is-hidden {
  display: none;
}

.checkbox-pill--consent {
  align-items: start;
  min-height: auto;
  padding: 16px 18px;
  border-radius: 22px;
}

.checkbox-pill--consent span {
  line-height: 1.65;
}

.checkbox-pill--consent a {
  color: var(--forest);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.booking-form__submit {
  width: 100%;
}

.booking-sidebar {
  display: grid;
  gap: 18px;
}

.summary-card,
.calendar-card,
.status-card,
.booking-log {
  padding: 24px;
  border-radius: 28px;
}

.summary-card__header,
.calendar-card__header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
}

.summary-card__total {
  margin-top: 18px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(25, 50, 39, 0.08), rgba(165, 122, 69, 0.14));
}

.summary-card__total strong {
  display: block;
  margin-top: 6px;
  font-size: 2rem;
  color: var(--forest);
}

.summary-list,
.status-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.summary-list div,
.status-list div,
.log-entry__top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.summary-list span,
.status-list span,
.log-entry small {
  color: var(--muted);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.calendar-weekday {
  text-align: center;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calendar-day {
  display: grid;
  place-items: center;
  min-height: 56px;
  padding: 6px;
  border-radius: 16px;
  font-weight: 700;
  border: 1px solid transparent;
}

.calendar-day small {
  display: block;
  opacity: 0.76;
  font-size: 0.68rem;
  font-weight: 600;
}

.calendar-day--free {
  background: rgba(25, 50, 39, 0.08);
  color: var(--forest);
}

.calendar-day--busy {
  background: rgba(150, 77, 65, 0.12);
  color: var(--danger);
}

.calendar-day--today {
  border-color: rgba(25, 50, 39, 0.28);
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.legend-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.legend-dot::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.legend-dot--free::before {
  background: rgba(25, 50, 39, 0.5);
}

.legend-dot--busy::before {
  background: rgba(150, 77, 65, 0.6);
}

.status-card--success {
  background: rgba(238, 247, 242, 0.94);
  border-color: rgba(40, 84, 63, 0.16);
}

.status-card--error {
  background: rgba(252, 241, 238, 0.96);
  border-color: rgba(150, 77, 65, 0.16);
}

.status-card:empty {
  display: none;
}

.booking-log summary {
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
}

.booking-log[open] summary {
  margin-bottom: 16px;
}

.log-entry {
  padding: 14px 0;
  border-bottom: 1px solid rgba(61, 49, 31, 0.08);
}

.log-entry:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.faq {
  padding: 60px 0 72px;
}

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

.faq-item {
  padding: 22px 24px;
  border-radius: var(--radius-xl);
}

.faq-item summary {
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 800;
  list-style: none;
}

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

.faq-item p {
  margin: 14px 0 0;
}

.contact {
  padding: 64px 0 40px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
}

.map-card {
  padding: 30px;
  border-radius: var(--radius-2xl);
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.92), rgba(244, 236, 222, 0.9));
}

.map-card__meta {
  margin: 18px 0 22px;
}

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

.contact-card {
  padding: 24px;
  border-radius: var(--radius-xl);
}

/* ── BOOKING CTA ──────────────────────────────────────────────────── */

.booking-cta {
  padding: 52px 0;
}

.booking-cta__card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 60px 64px;
  border-radius: 48px;
  background:
    radial-gradient(ellipse at top right, rgba(165, 122, 69, 0.22), transparent 34%),
    radial-gradient(ellipse at bottom left, rgba(44, 78, 60, 0.18), transparent 32%),
    linear-gradient(160deg, rgba(18, 29, 24, 0.98), rgba(10, 18, 15, 0.96));
  color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    0 48px 120px rgba(8, 13, 10, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.booking-cta__card .eyebrow {
  color: #cba670;
}

.booking-cta__card h2 {
  max-width: 780px;
  margin: 14px 0 0;
  font-family: "Prata", serif;
  font-size: clamp(2.4rem, 4.8vw, 4.2rem);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.96);
}

.booking-cta__card > p {
  max-width: 640px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.78;
  font-size: 1.02rem;
}

.booking-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.booking-cta__btn-gold {
  background: linear-gradient(135deg, #d4ac72 0%, #a57a45 100%);
  color: #1a2b22;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(165, 122, 69, 0.36);
}

.booking-cta__btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 52px rgba(165, 122, 69, 0.44);
}

.booking-cta__btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.booking-cta__btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.booking-cta__prices {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-cta__price-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.booking-cta__price-item span:last-child {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 600;
  font-size: 1.02rem;
}

/* ── PREMIUM FOOTER ───────────────────────────────────────────────── */

.site-footer {
  margin-top: 40px;
  padding: 56px 0 28px;
  border-top: 1px solid rgba(61, 49, 31, 0.1);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(61, 49, 31, 0.08);
}

.footer-brand {
  display: grid;
  gap: 18px;
  align-content: start;
}

.footer-brand__link {
  display: inline-grid;
  gap: 3px;
  text-decoration: none;
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
  line-height: 1.76;
  font-size: 0.95rem;
  max-width: 32ch;
}

.footer-nav,
.footer-contact {
  display: grid;
  gap: 13px;
  align-content: start;
}

.footer-nav__label {
  display: block;
  color: var(--gold);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-nav a,
.footer-contact a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.18s ease;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--forest);
}

.footer-contact address {
  margin: 0;
  color: var(--muted);
  font-style: normal;
  font-size: 0.95rem;
}

.footer-socials {
  display: grid;
  gap: 10px;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-bottom__links {
  display: flex;
  gap: 22px;
}

.footer-bottom__links a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 0.18s ease;
}

.footer-bottom__links a:hover {
  color: var(--forest);
}

.lightbox {
  width: min(100% - 24px, 1180px);
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}

.lightbox::backdrop {
  background: rgba(10, 14, 12, 0.88);
  backdrop-filter: blur(10px);
}

.lightbox__body {
  position: relative;
  padding: 72px 24px 24px;
}

.lightbox__image {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.lightbox__caption {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  font-size: 1rem;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  backdrop-filter: blur(10px);
}

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

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
}

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

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

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ticker__track {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button,
  .gallery-card img,
  .eco-shot img {
    transition: none;
  }
}

@media (max-width: 1160px) {
  .site-header,
  .hero,
  .page-intro__grid,
  .overview-links__grid,
  .signature-program__grid,
  .arrival-journey__grid,
  .compare-band__grid,
  .collection__grid,
  .manifesto__grid,
  .showcase__grid,
  .booking-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .site-header {
    border-radius: 28px;
    justify-items: start;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .site-header__actions {
    flex-wrap: wrap;
  }

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

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

@media (max-width: 820px) {
  .site-shell {
    width: min(100% - 20px, var(--content-width));
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 16px;
    padding: 18px;
  }

  .site-nav,
  .site-header__actions .button--ghost {
    display: none;
  }

  .site-header__toggle,
  .mobile-nav {
    display: flex;
  }

  .mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 40;
    align-items: flex-start;
    justify-content: center;
    padding: 104px 16px 24px;
    background: rgba(12, 17, 14, 0.42);
    backdrop-filter: blur(10px);
  }

  .mobile-nav[hidden] {
    display: none;
  }

.mobile-nav__panel {
    display: grid;
    gap: 12px;
    width: min(100%, 420px);
    padding: 22px;
    border-radius: 28px;
    background: rgba(255, 251, 245, 0.96);
    border: 1px solid rgba(61, 49, 31, 0.08);
    box-shadow: 0 28px 70px rgba(8, 11, 9, 0.24);
    transform: translateY(0);
  }

  .mobile-nav__panel a:not(.button) {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 18px;
    background: rgba(25, 50, 39, 0.05);
    font-weight: 700;
  }

  .hero {
    padding-top: 34px;
    gap: 22px;
  }

  .hero__content h1,
  .section-heading h2,
  .manifesto-card h2,
  .showcase__sticky h2,
  .page-intro__content h1,
  .overview-card h2,
  .page-cta__card h2 {
    font-size: clamp(2.2rem, 9vw, 3.7rem);
  }

  .hero__facts,
  .hero__signature,
  .overview-links__grid,
  .page-intro__grid,
  .signature-program__grid,
  .arrival-journey__grid,
  .compare-band__grid,
  .occasion-grid,
  .service-grid,
  .faq-grid,
  .contact-cards,
  .field-row,
  .gallery-grid,
  .eco-grid {
    grid-template-columns: 1fr;
  }

  .hero-media img,
  .hero-media video,
  .house-card__media img,
  .house-card__media video,
  .gallery-card,
  .gallery-card--wide {
    height: 300px;
    min-height: 300px;
  }

  .gallery-card--wide {
    grid-column: auto;
  }

  .booking-shell {
    padding: 24px;
    border-radius: 30px;
  }

  .page-intro__content,
  .page-intro__panel,
  .overview-card,
  .page-cta__card,
  .program-card,
  .journey-card,
  .compare-band__card {
    padding: 24px;
  }

  .booking-form,
  .summary-card,
  .calendar-card,
  .status-card,
  .booking-log,
  .faq-item,
  .contact-card,
  .service-card,
  .occasion-card,
  .map-card,
  .manifesto-card {
    padding: 20px;
  }

  .lightbox__nav {
    display: none;
  }

  .lightbox__body {
    padding: 68px 10px 18px;
  }

  .booking-cta__card {
    padding: 36px 28px;
    border-radius: 30px;
  }

  .booking-cta__prices {
    flex-direction: column;
    gap: 16px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
  }

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

.button[disabled] {
  cursor: progress;
  opacity: 0.74;
  transform: none;
  box-shadow: 0 18px 40px rgba(20, 43, 33, 0.18);
}

.calendar-day--free {
  background: rgba(255, 255, 255, 0.78);
}

.calendar-day--pending {
  background: rgba(165, 122, 69, 0.18);
  border-color: rgba(165, 122, 69, 0.26);
  color: #7d5b31;
}

.calendar-day--confirmed {
  background: rgba(40, 84, 63, 0.16);
  border-color: rgba(40, 84, 63, 0.24);
  color: var(--success);
}

.calendar-day--blocked {
  background: rgba(23, 29, 25, 0.12);
  border-color: rgba(23, 29, 25, 0.2);
  color: var(--forest);
}

.legend-dot--pending::before,
.legend-dot--confirmed::before,
.legend-dot--blocked::before {
  content: "";
  display: inline-flex;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-right: 8px;
}

.legend-dot--pending::before {
  background: rgba(165, 122, 69, 0.88);
}

.legend-dot--confirmed::before {
  background: rgba(40, 84, 63, 0.88);
}

.legend-dot--blocked::before {
  background: rgba(23, 29, 25, 0.7);
}

.timeline-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.metric-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(61, 49, 31, 0.08);
  color: var(--forest);
  font-size: 0.86rem;
  font-weight: 800;
}

.summary-card__warning {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(150, 77, 65, 0.08);
  color: var(--danger);
}

.summary-card__warning--ok {
  background: rgba(40, 84, 63, 0.08);
  color: var(--success);
}

/* ── STAGGER ANIMATION FOR GRIDS ──────────────────────────────────── */

.occasion-grid .occasion-card:nth-child(1) { transition-delay: 0s; }
.occasion-grid .occasion-card:nth-child(2) { transition-delay: 0.09s; }
.occasion-grid .occasion-card:nth-child(3) { transition-delay: 0.18s; }
.occasion-grid .occasion-card:nth-child(4) { transition-delay: 0.27s; }

.service-grid .service-card:nth-child(1) { transition-delay: 0s; }
.service-grid .service-card:nth-child(2) { transition-delay: 0.09s; }
.service-grid .service-card:nth-child(3) { transition-delay: 0.18s; }
.service-grid .service-card:nth-child(4) { transition-delay: 0.27s; }

.faq-grid .faq-item:nth-child(1) { transition-delay: 0s; }
.faq-grid .faq-item:nth-child(2) { transition-delay: 0.09s; }
.faq-grid .faq-item:nth-child(3) { transition-delay: 0.18s; }
.faq-grid .faq-item:nth-child(4) { transition-delay: 0.27s; }

.collection__grid .house-card:nth-child(2) { transition-delay: 0.12s; }

.contact-cards .contact-card:nth-child(2) { transition-delay: 0.09s; }
.contact-cards .contact-card:nth-child(3) { transition-delay: 0.18s; }


/* ── BOOKING CTA DECORATIVE ───────────────────────────────────────── */

.booking-cta__card::after {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(165, 122, 69, 0.12), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.booking-cta__card > * {
  position: relative;
  z-index: 1;
}


.site-footer__admin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(25, 50, 39, 0.12);
}
