:root {
  --pine-950: #080c09;
  --pine-900: #0c120e;
  --pine-800: #142019;
  --pine-700: #203229;
  --ivory: #f4efe6;
  --ivory-soft: #d9d2c7;
  --bronze: #c79058;
  --bronze-light: #e0b27d;
  --line: rgba(244, 239, 230, 0.18);
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--pine-950);
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  background: var(--pine-950);
  color: var(--ivory);
  font-family: var(--body);
  margin: 0;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-loading {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button,
a,
select,
input {
  -webkit-tap-highlight-color: transparent;
}

.page-loader {
  align-items: center;
  background: var(--pine-950);
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: center;
  opacity: 1;
  position: fixed;
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), visibility 700ms;
  visibility: visible;
  z-index: 500;
}

body:not(.is-loading) .page-loader {
  opacity: 0;
  visibility: hidden;
}

.page-loader__mark {
  align-items: center;
  border: 1px solid rgba(224, 178, 125, 0.6);
  border-radius: 50%;
  color: var(--bronze-light);
  display: flex;
  font-family: var(--display);
  font-size: 2.4rem;
  height: 70px;
  justify-content: center;
  line-height: 1;
  width: 70px;
}

.page-loader p {
  font-family: var(--display);
  font-size: 1.7rem;
  letter-spacing: 0.03em;
  margin: 18px 0 14px;
}

.page-loader small {
  color: rgba(244, 239, 230, 0.72);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin: -4px 0 18px;
  text-transform: uppercase;
}

.page-loader span {
  background: rgba(244, 239, 230, 0.12);
  height: 1px;
  overflow: hidden;
  position: relative;
  width: 120px;
}

.page-loader span::after {
  animation: loader-line 1.4s ease-in-out infinite;
  background: var(--bronze);
  content: "";
  inset: 0;
  position: absolute;
  transform: translateX(-100%);
}

@keyframes loader-line {
  50%, 100% { transform: translateX(100%); }
}

#world {
  --sw-bg: var(--pine-950);
  --sw-ink: var(--ivory);
  --sw-ink-soft: #bdb5a9;
  --sw-accent: var(--bronze);
  --sw-font-display: var(--display);
  --sw-font-body: var(--body);
  background: var(--pine-950);
  isolation: isolate;
  min-height: 100svh;
  position: relative;
}

#world .sw-sky {
  background: var(--pine-950);
}

#world .sw-sky__grad {
  background:
    radial-gradient(circle at 22% 20%, rgba(199, 144, 88, 0.08), transparent 34%),
    linear-gradient(180deg, #101712 0%, var(--pine-950) 72%);
}

#world .sw-sky__glow,
#world .sw-particles {
  display: none;
}

#world .sw-scrollbar {
  background: rgba(244, 239, 230, 0.08);
  height: 2px;
}

#world .sw-scrollbar span {
  background: var(--bronze-light);
}

#world .sw-topbar {
  isolation: isolate;
  padding: 24px clamp(22px, 4vw, 58px);
}

#world .sw-topbar::before {
  background: linear-gradient(180deg, rgba(4, 8, 5, 0.72) 0%, rgba(4, 8, 5, 0.38) 58%, transparent 100%);
  content: "";
  inset: 0 0 -32px;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

#world .sw-brand {
  backdrop-filter: blur(14px) saturate(0.8);
  background: rgba(5, 9, 6, 0.78);
  border: 1px solid rgba(244, 239, 230, 0.2);
  color: var(--ivory);
  gap: 12px;
  margin: -9px 0;
  padding: 9px 13px 9px 9px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

#world .sw-brand__mark {
  align-items: center;
  background: rgba(9, 14, 10, 0.34);
  border: 1px solid rgba(224, 178, 125, 0.72);
  border-radius: 50%;
  box-shadow: none;
  display: flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

#world .sw-brand__mark::before {
  color: var(--bronze-light);
  content: "C";
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1;
}

#world .sw-brand__name {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 0.9;
}

#world .sw-brand__name::after {
  color: rgba(244, 239, 230, 0.9);
  content: "FICTIONAL HOSPITALITY CONCEPT";
  display: block;
  font-family: var(--body);
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  margin-top: 7px;
}

#world .sw-nav {
  background: rgba(6, 10, 7, 0.78);
  border: 1px solid rgba(244, 239, 230, 0.24);
  backdrop-filter: blur(18px) saturate(1.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#world .sw-nav__item {
  color: rgba(244, 239, 230, 0.86);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 8px 12px;
}

#world .sw-nav__item:hover,
#world .sw-nav__item.is-active {
  color: var(--ivory);
}

#world .sw-nav__item.is-active {
  background: rgba(199, 144, 88, 0.24);
}

#world .sw-topcta {
  background: var(--ivory);
  border: 1px solid var(--ivory);
  border-radius: 0;
  color: var(--pine-950);
  font-size: 0.76rem;
  letter-spacing: 0.07em;
  padding: 12px 18px;
  text-transform: uppercase;
  transition: background 200ms, color 200ms;
}

#world .sw-topcta:hover {
  background: rgba(5, 9, 6, 0.9);
  color: var(--ivory);
}

#world .sw-scene::after {
  background:
    linear-gradient(180deg, rgba(5, 8, 6, 0.36), transparent 24%, transparent 66%, rgba(5, 8, 6, 0.42)),
    radial-gradient(circle at center, transparent 48%, rgba(4, 7, 5, 0.32) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 3;
}

#world .sw-scene__video,
#world .sw-scene__still {
  filter: saturate(0.9) contrast(1.02);
}

#world .scene-1 .sw-scene__video,
#world .scene-1 .sw-scene__still {
  object-position: 45% center;
}

#world .scene-3 .sw-scene__video,
#world .scene-3 .sw-scene__still {
  object-position: 44% center;
}

#world .sw-copylayer::before {
  background: linear-gradient(90deg, rgba(4, 8, 5, 0.97) 0%, rgba(4, 8, 5, 0.78) 34%, rgba(4, 8, 5, 0.34) 66%, transparent 100%);
  width: min(76vw, 1040px);
}

#world .sw-copy {
  backdrop-filter: blur(10px) saturate(0.78);
  background: linear-gradient(100deg, rgba(4, 8, 5, 0.9) 0%, rgba(4, 8, 5, 0.78) 72%, rgba(4, 8, 5, 0.56) 100%);
  border-left: 2px solid color-mix(in srgb, var(--sw-accent) 78%, var(--ivory));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  left: clamp(24px, 7vw, 104px);
  padding: clamp(22px, 2.4vw, 34px);
  top: 27%;
  width: min(45vw, 610px);
}

#world .sw-copy__num {
  color: rgba(244, 239, 230, 0.82);
  font-family: var(--body);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
}

#world .sw-copy__eyebrow {
  color: var(--bronze-light);
  font-family: var(--body);
  font-size: 0.7rem;
  letter-spacing: 0.23em;
  margin-top: 22px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.92);
}

#world .sw-copy__title {
  color: var(--ivory);
  font-family: var(--display);
  font-size: clamp(3.4rem, 6.2vw, 6.4rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.86;
  margin-top: 18px;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.92), 0 6px 32px rgba(0, 0, 0, 0.85);
}

#world .sw-copy__body {
  color: rgba(244, 239, 230, 0.96);
  font-size: clamp(0.94rem, 1.1vw, 1.08rem);
  font-weight: 400;
  line-height: 1.7;
  margin-top: 24px;
  max-width: 42ch;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.92);
}

#world .sw-copy__tags {
  gap: 0;
  margin-top: 26px;
}

#world .sw-copy__tags li {
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(244, 239, 230, 0.48);
  border-radius: 0;
  color: rgba(244, 239, 230, 0.94);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 2px 16px;
  text-transform: uppercase;
}

#world .sw-copy__tags li:first-child {
  border-left: 0;
  padding-left: 0;
}

#world .sw-copy__cta {
  margin-top: 32px;
}

#world .sw-btn {
  border-radius: 0;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  padding: 15px 22px;
  text-transform: uppercase;
}

#world .sw-btn--primary {
  background: var(--ivory);
  color: var(--pine-950);
}

#world .sw-btn--ghost {
  border-color: rgba(244, 239, 230, 0.42);
  color: var(--ivory);
}

#world .sw-route {
  right: clamp(12px, 2vw, 28px);
}

#world .sw-route::before {
  background: rgba(244, 239, 230, 0.26);
  width: 1px;
}

#world .sw-route__dot i {
  background: rgba(244, 239, 230, 0.45);
  height: 5px;
  width: 5px;
}

#world .sw-route__dot.is-active i {
  background: var(--bronze-light);
  box-shadow: 0 0 0 5px rgba(199, 144, 88, 0.18);
}

#world .sw-route__label {
  background: rgba(5, 9, 6, 0.9);
  border-color: rgba(244, 239, 230, 0.26);
  border-radius: 0;
  color: var(--ivory);
}

#world .sw-hint {
  color: rgba(244, 239, 230, 0.9);
  font-size: 0.62rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95);
}

#world .sw-hint i {
  border-color: rgba(244, 239, 230, 0.44);
}

#world .sw-hint i::after {
  background: var(--bronze-light);
}

.atmospheric-veil {
  background:
    radial-gradient(circle at 50% 45%, rgba(239, 224, 198, 0.34), transparent 40%),
    linear-gradient(100deg, rgba(10, 17, 12, 0.18), rgba(224, 178, 125, 0.22));
  backdrop-filter: blur(13px) saturate(0.76);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: background 300ms ease;
  will-change: opacity;
  z-index: 15;
}

.film-grain {
  background-image:
    repeating-radial-gradient(circle at 10% 20%, rgba(255,255,255,0.04) 0 0.5px, transparent 0.7px 3px),
    repeating-radial-gradient(circle at 70% 60%, rgba(0,0,0,0.05) 0 0.6px, transparent 0.8px 4px);
  inset: 0;
  mix-blend-mode: soft-light;
  opacity: 0.14;
  pointer-events: none;
  position: fixed;
  z-index: 14;
}

.booking {
  background: var(--pine-950);
  min-height: 100svh;
  overflow: hidden;
  position: relative;
  z-index: 180;
}

.booking__backdrop {
  background:
    linear-gradient(90deg, rgba(7, 11, 8, 0.97) 0%, rgba(7, 11, 8, 0.84) 44%, rgba(7, 11, 8, 0.5) 100%),
    linear-gradient(180deg, rgba(7, 11, 8, 0.18), rgba(7, 11, 8, 0.76)),
    url("./assets/images/06-night-still.jpg") center / cover no-repeat;
  inset: 0;
  position: absolute;
  transform: scale(1.02);
}

.booking__inner {
  align-items: center;
  display: grid;
  gap: clamp(52px, 9vw, 150px);
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.72fr);
  margin: 0 auto;
  max-width: 1320px;
  min-height: calc(100svh - 120px);
  padding: clamp(110px, 14vh, 170px) clamp(24px, 6vw, 92px) 90px;
  position: relative;
}

.booking__story {
  max-width: 650px;
}

.booking__eyebrow,
.dialog-eyebrow {
  color: var(--bronze-light);
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.booking__story h2 {
  font-family: var(--display);
  font-size: clamp(4.2rem, 8vw, 8.2rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.82;
  margin: 24px 0 34px;
}

.booking__story > p {
  color: rgba(244, 239, 230, 0.9);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 48ch;
}

.essentials {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 52px 0 0;
}

.essentials div {
  border-right: 1px solid var(--line);
  padding: 22px 20px 6px 0;
}

.essentials div + div {
  padding-left: 20px;
}

.essentials div:last-child {
  border-right: 0;
}

.essentials dt {
  color: rgba(244, 239, 230, 0.74);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.essentials dd {
  color: var(--ivory);
  font-family: var(--display);
  font-size: 1.25rem;
  margin: 8px 0 0;
}

.booking-form {
  background: rgba(13, 20, 15, 0.72);
  border: 1px solid rgba(244, 239, 230, 0.19);
  backdrop-filter: blur(22px) saturate(0.9);
  padding: clamp(24px, 3vw, 40px);
}

.booking-form__heading {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin-bottom: 34px;
}

.booking-form__heading > span {
  font-family: var(--display);
  font-size: 1.75rem;
}

.booking-form__heading strong {
  color: var(--bronze-light);
  font-size: 1rem;
  font-weight: 600;
  text-align: right;
}

.booking-form__heading small {
  color: rgba(244, 239, 230, 0.76);
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-top: 3px;
  text-transform: uppercase;
}

.date-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: 1fr 1fr;
}

.booking-form label {
  background: rgba(244, 239, 230, 0.055);
  border: 1px solid rgba(244, 239, 230, 0.13);
  display: flex;
  flex-direction: column;
  padding: 15px 16px;
}

.booking-form label > span {
  color: rgba(244, 239, 230, 0.76);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select {
  background: transparent;
  border: 0;
  color: var(--ivory);
  min-width: 0;
  outline: none;
  padding: 0;
  width: 100%;
}

.booking-form input::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.6;
}

.guest-field {
  margin-top: 1px;
}

.booking-summary {
  align-items: flex-end;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
  padding: 22px 0;
}

.booking-summary span {
  display: block;
  font-size: 0.84rem;
}

.booking-summary small {
  color: rgba(244, 239, 230, 0.72);
  display: block;
  font-size: 0.65rem;
  margin-top: 6px;
}

.booking-summary strong {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 500;
}

.booking-form > button,
.dialog-return {
  align-items: center;
  background: var(--ivory);
  border: 1px solid var(--ivory);
  border-radius: 0;
  color: var(--pine-950);
  cursor: pointer;
  display: flex;
  font-size: 0.72rem;
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: 0.09em;
  padding: 17px 18px;
  text-transform: uppercase;
  transition: background 200ms, color 200ms, transform 200ms;
  width: 100%;
}

.booking-form > button:hover,
.dialog-return:hover {
  background: transparent;
  color: var(--ivory);
  transform: translateY(-2px);
}

.booking-form__note {
  color: rgba(244, 239, 230, 0.72);
  font-size: 0.62rem;
  line-height: 1.5;
  margin: 14px 0 0;
  text-align: center;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  bottom: 0;
  display: grid;
  font-size: 0.64rem;
  grid-template-columns: 1fr auto 1fr;
  left: clamp(24px, 4vw, 64px);
  padding: 22px 0;
  position: relative;
  right: clamp(24px, 4vw, 64px);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.site-footer > p {
  color: rgba(244, 239, 230, 0.82);
  margin: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.site-footer > p:last-child {
  text-align: right;
}

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

.site-footer__brand > span {
  align-items: center;
  border: 1px solid rgba(224, 178, 125, 0.58);
  border-radius: 50%;
  color: var(--bronze-light);
  display: flex;
  font-family: var(--display);
  font-size: 1rem;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.site-footer__brand p {
  font-family: var(--display);
  font-size: 1rem;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
  text-transform: none;
}

.site-footer__brand small {
  color: rgba(244, 239, 230, 0.78);
  display: block;
  font-family: var(--body);
  font-size: 0.45rem;
  letter-spacing: 0.16em;
  margin-top: 2px;
  text-transform: uppercase;
}

.agency-offer {
  background: #eee7da;
  color: var(--pine-950);
  position: relative;
  z-index: 200;
}

.agency-offer__inner {
  margin: 0 auto;
  max-width: 1320px;
  padding: clamp(92px, 12vw, 170px) clamp(24px, 6vw, 92px);
}

.agency-offer__intro {
  align-items: end;
  display: grid;
  gap: clamp(36px, 8vw, 120px);
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
}

.agency-offer__eyebrow,
.offer-product__summary > p {
  color: #81562f;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.agency-offer__intro h2 {
  font-family: var(--display);
  font-size: clamp(4.1rem, 8.2vw, 8.4rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.82;
  margin: 20px 0 0;
}

.agency-offer__intro h2 em {
  color: #81562f;
  font-weight: 500;
}

.agency-offer__intro > p:last-child {
  color: rgba(8, 12, 9, 0.76);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 6px;
}

.offer-product {
  border-bottom: 1px solid rgba(8, 12, 9, 0.22);
  border-top: 1px solid rgba(8, 12, 9, 0.22);
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  margin-top: clamp(72px, 9vw, 120px);
}

.offer-product__summary,
.offer-product__price {
  min-height: 350px;
  padding: clamp(34px, 4vw, 58px);
}

.offer-product__summary {
  display: flex;
  flex-direction: column;
}

.offer-product__summary h3 {
  font-family: var(--display);
  font-size: clamp(2.7rem, 4.8vw, 5.2rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.93;
  margin: auto 0 34px;
  max-width: 16ch;
}

.offer-product__summary > span {
  color: rgba(8, 12, 9, 0.58);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.offer-product__price {
  align-items: center;
  background: rgba(199, 144, 88, 0.13);
  border-left: 1px solid rgba(8, 12, 9, 0.22);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.offer-product__price small {
  align-self: flex-start;
  color: #81562f;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.offer-product__price strong,
.offer-handoff > strong {
  font-family: var(--display);
  font-size: clamp(5rem, 8vw, 8.6rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.86;
}

.offer-product__price strong sup,
.offer-handoff > strong sup {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-right: 4px;
  vertical-align: top;
}

.offer-inclusions {
  border-bottom: 1px solid rgba(8, 12, 9, 0.22);
  display: grid;
  gap: 0 70px;
  grid-template-columns: repeat(2, 1fr);
}

.offer-inclusions p {
  align-items: baseline;
  border-top: 1px solid rgba(8, 12, 9, 0.14);
  display: flex;
  font-size: 0.84rem;
  gap: 18px;
  line-height: 1.55;
  margin: 0;
  padding: 22px 0;
}

.offer-inclusions p:nth-child(-n+2) {
  border-top: 0;
}

.offer-inclusions span {
  color: #81562f;
  flex: 0 0 auto;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.offer-handoff {
  align-items: center;
  border-bottom: 1px solid rgba(8, 12, 9, 0.22);
  display: grid;
  gap: 50px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(42px, 5vw, 70px) 0;
}

.offer-handoff p {
  color: #81562f;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.offer-handoff h3 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0 0 18px;
}

.offer-handoff div > span {
  color: rgba(8, 12, 9, 0.66);
  display: block;
  font-size: 0.8rem;
  line-height: 1.65;
  max-width: 70ch;
}

.offer-handoff > strong {
  font-size: clamp(4rem, 6vw, 6.4rem);
}

.agency-offer__fineprint {
  color: rgba(8, 12, 9, 0.6);
  font-size: 0.7rem;
  line-height: 1.7;
  margin: 0;
  max-width: 110ch;
  padding: 30px 0 72px;
}

.agency-offer__cta {
  align-items: center;
  border-top: 1px solid rgba(8, 12, 9, 0.22);
  display: flex;
  gap: 40px;
  justify-content: space-between;
  padding-top: 42px;
}

.agency-offer__cta p {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
  margin: 0;
}

.agency-offer__cta div > span {
  color: rgba(8, 12, 9, 0.64);
  display: block;
  font-size: 0.76rem;
  margin-top: 12px;
}

.agency-offer__cta a {
  align-items: center;
  background: var(--pine-950);
  color: var(--ivory);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.72rem;
  font-weight: 800;
  gap: 36px;
  letter-spacing: 0.08em;
  padding: 18px 20px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 200ms, transform 200ms;
}

.agency-offer__cta a:hover {
  background: #81562f;
  transform: translateY(-2px);
}

dialog {
  background: #111b15;
  border: 1px solid rgba(244, 239, 230, 0.22);
  color: var(--ivory);
  max-width: 560px;
  padding: clamp(38px, 6vw, 70px);
  width: calc(100% - 36px);
}

dialog::backdrop {
  background: rgba(3, 6, 4, 0.8);
  backdrop-filter: blur(12px);
}

dialog h2 {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.86;
  margin: 24px 0;
}

dialog p {
  color: rgba(244, 239, 230, 0.64);
  line-height: 1.7;
  margin-bottom: 30px;
}

.dialog-close {
  background: transparent;
  border: 0;
  color: var(--ivory);
  cursor: pointer;
  font-size: 2rem;
  position: absolute;
  right: 20px;
  top: 14px;
}

@media (max-width: 960px) {
  #world .sw-topbar {
    padding: 18px 20px;
  }

  #world .sw-topcta {
    font-size: 0.64rem;
    padding: 10px 12px;
  }

  #world .sw-copylayer::before {
    background: linear-gradient(0deg, rgba(4, 8, 5, 0.99) 0%, rgba(4, 8, 5, 0.82) 46%, rgba(4, 8, 5, 0.28) 78%, transparent 100%);
    height: 78%;
  }

  #world .sw-copy {
    background: linear-gradient(105deg, rgba(4, 8, 5, 0.92), rgba(4, 8, 5, 0.76));
    bottom: calc(clamp(68px, 12dvh, 108px) + env(safe-area-inset-bottom));
    left: 20px;
    max-width: calc(100vw - 40px);
    padding: 18px 20px;
    right: 20px;
    top: auto;
    width: auto;
  }

  #world .sw-copy__num {
    display: none;
  }

  #world .sw-copy__eyebrow {
    font-size: 0.62rem;
    margin-top: 0;
  }

  #world .sw-copy__title {
    font-size: clamp(2.4rem, 11.5vw, 3.35rem);
    line-height: 0.92;
    margin-top: 12px;
  }

  #world .sw-copy__body {
    font-size: 0.88rem;
    line-height: 1.55;
    margin-top: 16px;
    max-width: 36ch;
  }

  #world .sw-copy__tags {
    margin-top: 18px;
  }

  #world .sw-copy__tags li {
    font-size: 0.56rem;
    padding: 1px 10px;
  }

  #world .sw-copy__cta {
    margin-top: 20px;
  }

  #world .sw-btn {
    padding: 13px 16px;
  }

  #world .scene-1 .sw-scene__video,
  #world .scene-1 .sw-scene__still {
    object-position: 34% center;
  }

  #world .scene-3 .sw-scene__video,
  #world .scene-3 .sw-scene__still {
    object-position: 39% center;
  }

  .booking__inner {
    align-items: start;
    gap: 54px;
    grid-template-columns: 1fr;
    padding-top: 112px;
  }

  .booking__story {
    max-width: 720px;
  }

  .booking-form {
    max-width: 640px;
    width: 100%;
  }

  .site-footer {
    gap: 16px;
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .site-footer > p:last-child {
    text-align: left;
  }

  .agency-offer__intro {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .agency-offer__intro > p:last-child {
    max-width: 58ch;
  }

  .offer-product {
    grid-template-columns: 1fr;
  }

  .offer-product__summary,
  .offer-product__price {
    min-height: 300px;
  }

  .offer-product__price {
    border-left: 0;
    border-top: 1px solid rgba(8, 12, 9, 0.22);
  }
}

@media (max-width: 620px) {
  #world .sw-topbar {
    gap: 10px;
    padding: 14px;
  }

  #world .sw-brand {
    gap: 8px;
    margin: 0;
    padding: 7px 10px 7px 7px;
  }

  #world .sw-brand__mark {
    height: 30px;
    width: 30px;
  }

  #world .sw-brand__name {
    font-size: 1rem;
  }

  #world .sw-brand__name::after {
    display: none;
  }

  #world .sw-topcta {
    background: rgba(8, 12, 9, 0.52);
    color: var(--ivory);
    font-size: 0.58rem;
    padding: 10px 9px;
  }

  #world .sw-copylayer::before {
    background: linear-gradient(0deg, rgba(4, 8, 5, 0.92) 0%, rgba(4, 8, 5, 0.54) 34%, rgba(4, 8, 5, 0.12) 68%, transparent 100%);
    height: 52%;
  }

  #world .sw-copy {
    backdrop-filter: none;
    background: transparent;
    border-left: 1px solid color-mix(in srgb, var(--sw-accent) 78%, var(--ivory));
    bottom: calc(62px + env(safe-area-inset-bottom));
    box-shadow: none;
    left: 20px;
    max-width: none;
    padding: 0 36px 0 16px;
    right: 0;
  }

  #world .sw-copy__eyebrow {
    font-size: 0.58rem;
  }

  #world .sw-copy__title {
    font-size: clamp(2.15rem, 10.4vw, 2.65rem);
    line-height: 0.94;
    margin-top: 10px;
  }

  #world .sw-copy__body {
    font-size: 0.8rem;
    line-height: 1.45;
    margin-top: 12px;
    max-width: 32ch;
  }

  #world .sw-copy__tags {
    margin-top: 13px;
  }

  #world .sw-copy:first-child {
    bottom: calc(54px + env(safe-area-inset-bottom));
  }

  #world .sw-copy:first-child .sw-copy__body,
  #world .sw-copy:first-child .sw-copy__tags {
    display: none;
  }

  #world .scene-1 .sw-scene__video,
  #world .scene-1 .sw-scene__still {
    object-position: 42% center;
  }

  #world .sw-hint {
    bottom: calc(10px + env(safe-area-inset-bottom));
    gap: 0;
  }

  #world .sw-hint span {
    display: none;
  }

  #world .sw-hint i {
    height: 28px;
    width: 18px;
  }

  #world .sw-copy__tags li:nth-child(n+3) {
    display: none;
  }

  #world .sw-route {
    right: 0;
  }

  .booking__backdrop {
    background:
      linear-gradient(180deg, rgba(7, 11, 8, 0.92), rgba(7, 11, 8, 0.8)),
      url("./assets/images/06-night-still.jpg") 56% center / cover no-repeat;
  }

  .booking__inner {
    padding: 96px 20px 64px;
  }

  .booking__story h2 {
    font-size: clamp(3.7rem, 18vw, 5.2rem);
    margin-bottom: 28px;
  }

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

  .essentials div:nth-child(2) {
    border-right: 0;
  }

  .essentials div:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }

  .essentials div:nth-child(3) {
    padding-left: 0;
  }

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

  .booking-form {
    padding: 24px 18px;
  }

  .booking-form__heading {
    margin-bottom: 24px;
  }

  .site-footer {
    left: 20px;
    right: 20px;
  }

  .agency-offer__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .agency-offer__intro h2 {
    font-size: clamp(3.45rem, 17vw, 5rem);
  }

  .offer-product__summary,
  .offer-product__price {
    min-height: 260px;
    padding: 30px 22px;
  }

  .offer-product__summary h3 {
    margin-top: 58px;
  }

  .offer-inclusions {
    grid-template-columns: 1fr;
  }

  .offer-inclusions p:nth-child(2) {
    border-top: 1px solid rgba(8, 12, 9, 0.14);
  }

  .offer-handoff {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .agency-offer__fineprint {
    padding-bottom: 60px;
  }

  .agency-offer__cta {
    align-items: stretch;
    flex-direction: column;
  }

  .agency-offer__cta a {
    justify-content: space-between;
    width: 100%;
  }
}

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

  .page-loader span::after {
    animation: none;
  }

  .atmospheric-veil,
  .film-grain {
    display: none;
  }
}
