:root {
  --bg: #f4efe5;
  --bg-alt: #efe5d6;
  --panel: rgba(255, 251, 245, 0.78);
  --panel-strong: rgba(255, 249, 241, 0.94);
  --text: #112033;
  --muted: #56667c;
  --line: rgba(17, 32, 51, 0.1);
  --line-strong: rgba(17, 32, 51, 0.16);
  --navy: #081322;
  --teal: #167a7d;
  --sand: #d8bc84;
  --coral: #e77d5f;
  --white: #ffffff;
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --shadow-soft: 0 25px 60px rgba(8, 19, 34, 0.12);
  --shadow-strong: 0 32px 80px rgba(8, 19, 34, 0.18);
  --shell: min(1200px, calc(100vw - 32px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(22, 122, 125, 0.16), transparent 36%),
    radial-gradient(circle at bottom right, rgba(231, 125, 95, 0.14), transparent 28%),
    linear-gradient(180deg, #f7f2e9 0%, #f4efe5 52%, #efe6d7 100%);
  color: var(--text);
  line-height: 1.65;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-bg {
  position: fixed;
  inset: auto auto 10% -12%;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(22, 122, 125, 0.22), transparent 72%);
  filter: blur(12px);
  pointer-events: none;
  z-index: -2;
}

.page-bg--top {
  top: -10rem;
  left: -8rem;
}

.page-bg--bottom {
  right: -10rem;
  left: auto;
  bottom: -9rem;
  background: radial-gradient(circle, rgba(231, 125, 95, 0.16), transparent 72%);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: 104px 0;
}

.section--sand {
  background:
    radial-gradient(circle at top right, rgba(8, 19, 34, 0.08), transparent 25%),
    linear-gradient(180deg, rgba(239, 229, 214, 0.65), rgba(247, 240, 229, 0.6));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-heading h2,
.section-copy h2,
.booking-card h3,
.site-footer h2,
.page-hero h1,
.hero h1 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.section-heading h2,
.section-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.section-heading p,
.section-copy p,
.hero p,
.page-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-kicker--light {
  color: rgba(255, 245, 234, 0.78);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(247, 242, 233, 0.56);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17, 32, 51, 0.08);
  opacity: 0;
  transition: opacity 180ms ease;
}

.site-header.is-scrolled::before {
  opacity: 1;
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header__lead {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1 1 auto;
  min-width: 0;
}

.site-header__contact {
  display: grid;
  gap: 8px;
  flex: 0 0 auto;
  width: max-content;
  min-width: 0;
  padding: 12px 16px;
  border: 1px solid rgba(17, 32, 51, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(250, 245, 236, 0.92));
  box-shadow: 0 14px 28px rgba(8, 19, 34, 0.06);
}

.site-header__contact-row {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: baseline;
  gap: 10px;
  min-width: 0;
  padding: 2px 0;
  text-decoration: none;
  white-space: nowrap;
}

.site-header__contact-label {
  color: var(--teal);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-header__contact-value {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.2;
}

.site-header__contact a.site-header__contact-row:hover .site-header__contact-value {
  color: var(--teal);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  margin-left: auto;
}

.brand__logo {
  width: 94px;
  height: auto;
  object-fit: contain;
}

.brand__copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand__copy strong {
  font-size: 1rem;
}

.brand__copy span:last-child {
  color: var(--muted);
  font-size: 0.8rem;
}

.site-header__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.65);
}

.site-header__toggle span:not(.sr-only) {
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header__toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.site-header__toggle span:nth-child(2) {
  transform: translateY(0);
}

.site-header__toggle span:nth-child(3) {
  transform: translateY(6px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

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

.site-nav__link {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.75);
  transform: translateY(-1px);
}

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

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

.button--primary {
  background: linear-gradient(135deg, var(--teal), #0f5e67);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(15, 94, 103, 0.24);
}

.button--secondary {
  background: linear-gradient(135deg, #fff8ef, #f3ebdd);
  color: var(--navy);
  border-color: var(--line);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.58);
  border-color: var(--line);
  color: var(--navy);
}

.button--danger {
  background: linear-gradient(135deg, #d86051, #b53f33);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(181, 63, 51, 0.22);
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 46px;
  padding-top: 72px;
  padding-bottom: 42px;
  align-items: center;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(3.4rem, 8vw, 6.2rem);
}

.hero p {
  max-width: 620px;
  font-size: 1.04rem;
}

.hero-cinematic {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(560px, 76vh, 860px);
  overflow: hidden;
  isolation: isolate;
  background: #081322;
}

.hero-cinematic__media,
.hero-cinematic__overlay {
  position: absolute;
  inset: 0;
}

.hero-cinematic__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.04) brightness(0.98);
  transform: scale(1.03);
  animation: hero-cinematic-drift 22s ease-in-out infinite alternate;
}

.hero-cinematic__overlay {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 19, 34, 0.12) 0%, rgba(8, 19, 34, 0.18) 34%, rgba(8, 19, 34, 0.52) 100%);
}

.hero-cinematic__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  width: 100%;
  min-height: inherit;
  padding-top: min(14vh, 120px);
  padding-bottom: clamp(34px, 6vw, 72px);
}

.hero-cinematic__stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.hero-actions--overlay {
  margin-top: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 30px;
  background: rgba(8, 19, 34, 0.2);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-strong);
}

.hero-actions--overlay .button {
  min-width: 196px;
}

.hero-actions--overlay .button--primary {
  box-shadow: 0 18px 36px rgba(15, 94, 103, 0.34);
}

.hero-actions--overlay .button--ghost {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
}

.hero-actions--overlay .button--ghost:hover {
  background: rgba(255, 255, 255, 0.24);
}

.hero-cinematic__note {
  max-width: 540px;
  margin: 0;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(8, 19, 34, 0.22);
  color: rgba(255, 248, 238, 0.92);
  font-size: 0.92rem;
  line-height: 1.5;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

@keyframes hero-cinematic-drift {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.12) translate3d(0, -1.5%, 0);
  }
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.section-actions--center {
  justify-content: center;
}

.fact-chip-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.fact-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 252, 247, 0.8);
  box-shadow: var(--shadow-soft);
}

.fact-chip__icon,
.perk-card__icon,
.amenity-card__icon,
.address-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(22, 122, 125, 0.14), rgba(231, 125, 95, 0.14));
  color: var(--teal);
}

.fact-chip__icon svg,
.perk-card__icon svg,
.amenity-card__icon svg,
.address-card__icon svg,
.detail-list svg,
.feature-list svg {
  width: 22px;
  height: 22px;
}

.fact-chip__content {
  display: flex;
  flex-direction: column;
}

.fact-chip__content strong {
  font-size: 1rem;
}

.fact-chip__content span:last-child {
  color: var(--muted);
  font-size: 0.84rem;
}

.hero__visual {
  position: relative;
  min-height: 580px;
}

.hero-image {
  position: absolute;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow-strong);
}

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

.hero-image--primary {
  inset: 0 16% 12% 0;
}

.hero-image--secondary {
  inset: 34% 0 0 42%;
  border: 8px solid rgba(255, 249, 241, 0.85);
}

.floating-note {
  position: absolute;
  left: 8%;
  bottom: 6%;
  max-width: 290px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 24px;
  background: rgba(8, 19, 34, 0.78);
  color: rgba(255, 249, 241, 0.94);
  box-shadow: var(--shadow-strong);
}

.floating-note strong {
  display: block;
  margin-bottom: 6px;
}

.booking-strip {
  margin-top: 18px;
  margin-bottom: 8px;
}

.booking-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.94), rgba(255, 246, 234, 0.82));
  box-shadow: var(--shadow-strong);
}

.booking-card h3 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3vw, 3rem);
}

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

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.field span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(22, 122, 125, 0.55);
  box-shadow: 0 0 0 4px rgba(22, 122, 125, 0.12);
}

.booking-summary {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(22, 122, 125, 0.16);
  border-radius: 22px;
  background: rgba(22, 122, 125, 0.07);
}

.booking-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
}

.booking-summary__row span {
  color: var(--muted);
  font-size: 0.88rem;
}

.booking-summary__row strong {
  font-size: 0.98rem;
}

.booking-summary__note {
  font-size: 0.82rem;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.offer-grid,
.perk-grid,
.pricing-grid,
.address-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

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

.offer-card,
.perk-card,
.pricing-card,
.address-card,
.amenity-card,
.calculator-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.offer-card__media {
  position: relative;
  aspect-ratio: 1.2 / 1;
}

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

.offer-card__badge,
.pricing-card__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(8, 19, 34, 0.78);
  color: rgba(255, 248, 238, 0.92);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-card__content,
.perk-card,
.pricing-card,
.address-card,
.amenity-card,
.calculator-card {
  padding: 24px;
}

.offer-card__content h3,
.perk-card h3,
.pricing-card h2,
.pricing-card h3,
.address-card h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill-row--light .pill {
  background: rgba(255, 250, 244, 0.16);
  color: rgba(255, 247, 238, 0.92);
  border-color: rgba(255, 255, 255, 0.16);
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.detail-list,
.feature-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.detail-list li,
.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
}

.detail-list svg,
.feature-list svg {
  flex: none;
  margin-top: 2px;
  color: var(--teal);
}

.offer-card__actions {
  margin-top: 22px;
}

.promo-offers-slot {
  width: min(100%, 740px);
}

.promo-offers {
  display: block;
}

.promo-offers__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.promo-offer-card {
  display: grid;
  flex: 0 0 228px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.promo-offer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 122, 125, 0.24);
  box-shadow: 0 26px 46px rgba(8, 19, 34, 0.14);
}

.promo-offer-card__media {
  aspect-ratio: 1.22 / 1;
  background: rgba(8, 19, 34, 0.08);
}

.promo-offer-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-offer-card__body {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.promo-offer-card__body .section-kicker {
  margin-bottom: 0;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.promo-offer-card__body h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
}

.promo-offer-card__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.promo-offer-card__cta {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  width: fit-content;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(22, 122, 125, 0.12);
  color: var(--teal);
  font-weight: 700;
  font-size: 0.86rem;
}

.offer-detail__intro h2 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.perk-grid {
  align-items: stretch;
}

.perk-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.perk-card--left {
  text-align: left;
}

.perk-card p,
.offer-card__content p,
.pricing-card p,
.address-card p {
  color: var(--muted);
}

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

.gallery-card {
  position: relative;
  grid-column: span 4;
  min-height: 260px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.gallery-card:nth-child(5n + 1),
.gallery-card:nth-child(7n + 4) {
  grid-column: span 6;
}

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

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(8, 19, 34, 0.72));
}

.gallery-card__label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  color: rgba(255, 248, 238, 0.94);
  font-size: 0.92rem;
  font-weight: 600;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.managed-gallery-shell {
  display: grid;
  gap: 20px;
}

.managed-gallery__empty {
  padding: 22px 24px;
  border: 1px dashed var(--line-strong);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--muted);
}

.offer-detail {
  display: grid;
  gap: 28px;
}

.offer-detail__hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: stretch;
}

.offer-detail__media,
.offer-detail__intro,
.offer-detail__body {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.offer-detail__media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.offer-detail__intro {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 30px;
}

.offer-detail__intro p,
.offer-detail__body p {
  margin: 0;
  color: var(--muted);
}

.offer-detail__summary {
  font-size: 1.05rem;
}

.offer-detail__body {
  display: grid;
  gap: 18px;
  padding: 30px;
}

.offer-detail__body > * + * {
  margin-top: 0;
}

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

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-bar__button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--muted);
}

.filter-bar__button.is-active {
  background: var(--navy);
  color: var(--white);
  border-color: transparent;
}

.page-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: clip;
}

.page-hero__media,
.page-hero__overlay {
  position: absolute;
  inset: 0;
}

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

.page-hero__overlay {
  background:
    linear-gradient(130deg, rgba(8, 19, 34, 0.78), rgba(8, 19, 34, 0.2)),
    linear-gradient(180deg, rgba(8, 19, 34, 0.05), rgba(8, 19, 34, 0.66));
}

.page-hero__content {
  position: relative;
  z-index: 1;
  padding: 120px 0 92px;
  color: rgba(255, 247, 236, 0.96);
}

.page-hero h1 {
  margin: 0 0 20px;
  max-width: 860px;
  font-size: clamp(3.2rem, 7vw, 5.7rem);
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 246, 235, 0.82);
}

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

.section-grid--reverse > :first-child {
  order: 2;
}

.stacked-visual {
  position: relative;
  min-height: 540px;
}

.stacked-visual__main,
.stacked-visual__accent {
  position: absolute;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow-strong);
}

.stacked-visual__main {
  inset: 0 12% 12% 0;
}

.stacked-visual__accent {
  inset: 42% 0 0 48%;
  border: 8px solid rgba(255, 249, 241, 0.92);
}

.stacked-visual__main img,
.stacked-visual__accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stacked-visual__card {
  position: absolute;
  left: 7%;
  bottom: 8%;
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 250, 244, 0.88);
  box-shadow: var(--shadow-soft);
}

.stacked-visual__card strong {
  font-size: 1.2rem;
}

.stacked-visual__card span {
  color: var(--muted);
  font-size: 0.88rem;
}

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

.amenity-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.availability-layout,
.calculator-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: start;
}

.availability-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--panel-strong);
  box-shadow: var(--shadow-soft);
}

.availability-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.availability-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
}

.legend {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(8, 19, 34, 0.1);
}

.legend--promo {
  background: rgba(216, 188, 132, 0.8);
}

.legend--peak {
  background: rgba(231, 125, 95, 0.78);
}

.legend--selected {
  background: var(--teal);
}

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

.calendar-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
}

.calendar-card__header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 14px;
}

.calendar-card__header h3 {
  margin: 0;
  font-size: 1rem;
}

.calendar-card__header span {
  color: var(--muted);
  font-size: 0.82rem;
}

.calendar-grid,
.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.calendar-weekdays {
  margin-bottom: 8px;
}

.calendar-weekdays span {
  display: grid;
  place-items: center;
  min-height: 24px;
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.calendar-day,
.calendar-day--empty {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 16px;
  font-size: 0.85rem;
}

.calendar-day--empty {
  color: transparent;
}

.calendar-day {
  border: none;
  background: rgba(8, 19, 34, 0.05);
  color: var(--text);
  cursor: pointer;
  transition: transform 140ms ease, background-color 140ms ease, color 140ms ease;
}

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

.calendar-day.is-weekend {
  background: rgba(8, 19, 34, 0.1);
}

.calendar-day.is-promo {
  background: rgba(216, 188, 132, 0.6);
}

.calendar-day.is-peak {
  background: rgba(231, 125, 95, 0.45);
}

.calendar-day.is-selected,
.calendar-day.is-in-range {
  background: var(--teal);
  color: var(--white);
}

.legend--available {
  background: rgba(47, 143, 78, 0.9);
}

.legend--unavailable {
  background: rgba(190, 68, 68, 0.82);
}

.availability-panel--wide {
  padding: 28px;
}

.reservation-browser__loading {
  margin: 0;
  color: var(--muted);
}

.reservation-widget,
.admin-panel {
  display: grid;
  gap: 20px;
}

.reservation-widget__header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.reservation-widget__header--admin {
  margin-bottom: 4px;
}

.reservation-widget__eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.reservation-widget__header h3,
.admin-panel__intro h3 {
  margin: 0 0 10px;
  font-size: 1.6rem;
}

.reservation-widget__copy,
.admin-panel__intro p {
  margin: 0;
  color: var(--muted);
}

.reservation-widget__controls {
  display: grid;
  gap: 14px;
  justify-items: end;
}

.reservation-switch {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
}

.reservation-switch--locked {
  justify-content: flex-end;
}

.reservation-switch__button,
.reservation-switch__badge,
.reservation-nav__button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
}

.reservation-switch__button.is-active {
  background: var(--navy);
  border-color: transparent;
  color: var(--white);
}

.reservation-switch__badge {
  display: inline-flex;
  align-items: center;
  color: var(--navy);
  font-weight: 700;
}

.reservation-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.reservation-nav__button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.reservation-widget__status,
.admin-panel__status {
  display: none;
  padding: 14px 16px;
  border: 1px solid rgba(22, 122, 125, 0.16);
  border-radius: 18px;
  background: rgba(22, 122, 125, 0.08);
  color: var(--navy);
  font-size: 0.9rem;
}

.reservation-widget__status.is-visible,
.admin-panel__status.is-visible {
  display: block;
}

.availability-calendar--dynamic {
  align-items: start;
}

.calendar-day {
  position: relative;
  font-weight: 700;
}

.calendar-day.is-available {
  background: rgba(47, 143, 78, 0.18);
  color: #1e6d39;
}

.calendar-day.is-unavailable {
  background: rgba(190, 68, 68, 0.16);
  color: #984141;
}

.calendar-day.is-selected,
.calendar-day.is-in-range {
  background: linear-gradient(135deg, var(--teal), #0f5e67);
  color: var(--white);
}

.calendar-day:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.calendar-day.is-past {
  opacity: 0.35;
}

.reservation-summary {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(8, 19, 34, 0.05);
}

.reservation-summary strong {
  font-size: 1rem;
}

.reservation-summary span {
  color: var(--muted);
  font-size: 0.9rem;
}

.admin-panel-shell {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--panel-strong);
  box-shadow: var(--shadow-soft);
}

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

.photo-admin {
  display: grid;
  gap: 20px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.photo-admin__header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.photo-admin__count {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--navy);
  font-weight: 700;
  white-space: nowrap;
}

.photo-admin__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.photo-admin__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--navy);
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.photo-admin__tab:hover {
  transform: translateY(-1px);
  border-color: rgba(22, 122, 125, 0.28);
}

.photo-admin__tab.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, rgba(22, 122, 125, 0.92), rgba(8, 19, 34, 0.92));
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.photo-admin__section {
  display: grid;
  gap: 18px;
}

.photo-admin__toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.52);
}

.photo-admin__selection {
  display: grid;
  gap: 4px;
}

.photo-admin__selection strong {
  color: var(--navy);
}

.photo-admin__selection span {
  color: var(--muted);
  font-size: 0.9rem;
}

.photo-admin__toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.photo-upload-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.5);
}

.photo-upload-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.photo-upload-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.photo-upload-form__note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.photo-admin__status {
  display: none;
  padding: 14px 16px;
  border: 1px solid rgba(22, 122, 125, 0.16);
  border-radius: 18px;
  background: rgba(22, 122, 125, 0.08);
  color: var(--navy);
  font-size: 0.9rem;
}

.photo-admin__status.is-visible {
  display: block;
}

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

.photo-admin__card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
}

.photo-admin__card.is-selected {
  border-color: rgba(22, 122, 125, 0.3);
  box-shadow: 0 18px 34px rgba(22, 122, 125, 0.14);
}

.photo-admin__thumb {
  aspect-ratio: 4 / 3;
  background: rgba(8, 19, 34, 0.08);
}

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

.photo-admin__body {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.photo-admin__select {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}

.photo-admin__select input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--teal);
}

.photo-admin__title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
}

.photo-admin__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
}

.photo-admin__badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(22, 122, 125, 0.12);
  color: var(--teal);
  font-weight: 700;
}

.photo-admin__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.photo-admin__subtle {
  color: var(--muted);
  font-size: 0.82rem;
}

.photo-admin__empty {
  padding: 24px;
  border: 1px dashed var(--line-strong);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.4);
  color: var(--muted);
}

.offer-admin {
  display: grid;
  gap: 20px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.offer-admin__header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

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

.offer-admin__card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
}

.offer-admin__card.is-selected {
  border-color: rgba(22, 122, 125, 0.3);
  box-shadow: 0 18px 34px rgba(22, 122, 125, 0.14);
}

.offer-admin__thumb {
  aspect-ratio: 1.4 / 1;
  background: rgba(8, 19, 34, 0.08);
}

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

.offer-admin__body {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.offer-admin__select {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}

.offer-admin__select input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--teal);
}

.offer-admin__title {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.35;
}

.offer-admin__summary {
  margin: 0;
  color: var(--muted);
}

.offer-admin__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
}

.offer-admin__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.offer-admin__subtle {
  color: var(--muted);
  font-size: 0.82rem;
}

.offer-admin__empty {
  padding: 24px;
  border: 1px dashed var(--line-strong);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.4);
  color: var(--muted);
}

.offer-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.5);
}

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

.offer-form__preview {
  display: grid;
  gap: 10px;
}

.offer-form__preview > span {
  font-weight: 600;
  color: var(--text);
}

.offer-form__preview-card {
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 14px;
  border: 1px dashed var(--line-strong);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  overflow: hidden;
}

.offer-form__preview-empty {
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.offer-form__preview-image {
  width: min(100%, 220px);
  max-height: 220px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.admin-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pricing-card {
  position: relative;
}

.pricing-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.8rem;
  line-height: 1.1;
}

.pricing-card--featured {
  background:
    radial-gradient(circle at top right, rgba(216, 188, 132, 0.24), transparent 35%),
    linear-gradient(180deg, rgba(255, 249, 241, 0.94), rgba(255, 244, 230, 0.88));
}

.pricing-card--soft {
  background:
    radial-gradient(circle at top right, rgba(22, 122, 125, 0.16), transparent 35%),
    rgba(255, 255, 255, 0.72);
}

.address-card {
  display: block;
  transition: transform 180ms ease, border-color 180ms ease;
}

.address-card:hover {
  transform: translateY(-3px);
  border-color: rgba(22, 122, 125, 0.25);
}

.address-card__lines {
  display: grid;
  gap: 4px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.88rem;
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
}

.faq-item__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 22px;
  border: none;
  background: transparent;
  text-align: left;
  font-weight: 700;
  color: var(--navy);
}

.faq-item__icon {
  font-size: 1.3rem;
  transition: transform 180ms ease;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__content {
  display: none;
  padding: 0 22px 20px;
  color: var(--muted);
}

.faq-item.is-open .faq-item__content {
  display: block;
}

.rule-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  counter-reset: rules;
  list-style: none;
}

.rule-list__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
}

.rule-list__item p {
  margin: 0;
  color: var(--muted);
}

.rule-list__count {
  counter-increment: rules;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(22, 122, 125, 0.14), rgba(231, 125, 95, 0.14));
  color: var(--teal);
  font-weight: 700;
}

.rule-list__count::before {
  content: counter(rules);
}

.calculator-card {
  padding: 28px;
}

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

.calculator-output {
  margin-top: 6px;
  padding: 20px;
  border: 1px solid rgba(8, 19, 34, 0.08);
  border-radius: 24px;
  background: rgba(8, 19, 34, 0.04);
}

.calculator-output span,
.calculator-output p {
  color: var(--muted);
}

.calculator-output strong {
  display: block;
  margin: 8px 0 6px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.site-footer {
  margin-top: 40px;
  padding: 42px 0 30px;
  background: linear-gradient(180deg, rgba(8, 19, 34, 0.98), rgba(11, 24, 40, 0.98));
  color: rgba(255, 245, 233, 0.92);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: end;
}

.footer-label {
  margin: 0 0 12px;
  color: rgba(216, 188, 132, 0.92);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer h2 {
  margin: 0 0 12px;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.footer-copy {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 245, 233, 0.74);
}

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

.footer-contact {
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.footer-social__link {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 245, 233, 0.84);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 245, 233, 0.62);
  font-size: 0.9rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  background: rgba(8, 19, 34, 0.92);
  padding: 28px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__figure {
  margin: 0;
  max-width: min(1100px, 100%);
}

.lightbox__image {
  max-height: 82vh;
  border-radius: 26px;
  box-shadow: var(--shadow-strong);
}

.lightbox__caption {
  margin-top: 14px;
  color: rgba(255, 248, 238, 0.86);
  text-align: center;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1.8rem;
}

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

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

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

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

@media (max-width: 1080px) {
  .site-header__lead {
    gap: 16px;
  }

  .site-header__contact {
    padding: 10px 12px;
  }

  .site-header__contact-label {
    font-size: 0.6rem;
  }

  .site-header__contact-value {
    font-size: 0.82rem;
  }

  .hero,
  .section-grid,
  .availability-layout,
  .calculator-grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .offer-grid,
  .pricing-grid,
  .address-grid,
  .amenity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gallery-card,
  .gallery-card:nth-child(5n + 1),
  .gallery-card:nth-child(7n + 4) {
    grid-column: auto;
  }

  .availability-calendar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-header__lead {
    gap: 14px;
  }

  .brand {
    margin-left: auto;
  }

  .brand__copy {
    display: none;
  }

  .brand__logo {
    width: 82px;
  }

  .site-header__toggle {
    display: inline-flex;
    position: relative;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 250, 243, 0.96);
    box-shadow: var(--shadow-strong);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav__links,
  .site-nav__cta {
    width: 100%;
  }

  .site-nav__link {
    display: block;
    width: 100%;
  }

  .hero__visual,
  .stacked-visual {
    min-height: 460px;
  }

  .hero-cinematic {
    min-height: 520px;
  }

  .hero-cinematic__content {
    padding-top: 112px;
    padding-bottom: 40px;
  }

  .hero-cinematic__note {
    max-width: 460px;
  }

  .fact-chip-row,
  .form-grid,
  .offer-grid,
  .perk-grid,
  .pricing-grid,
  .address-grid,
  .amenity-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 82px 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 0;
  }

  .site-header__lead {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    width: 100%;
  }

  .site-header__inner {
    align-items: center;
    gap: 12px;
  }

  .site-header__contact {
    gap: 6px;
    width: 100%;
    padding: 9px 10px;
  }

  .site-header__contact-row {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 8px;
  }

  .site-header__contact-label {
    font-size: 0.56rem;
  }

  .site-header__contact-value {
    font-size: 0.72rem;
  }

  .brand__copy {
    display: none;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-cinematic {
    min-height: 440px;
  }

  .hero-cinematic__content {
    padding-top: 88px;
    padding-bottom: 22px;
  }

  .hero-cinematic__stack {
    width: 100%;
  }

  .hero-actions--overlay {
    width: 100%;
    padding: 14px;
    gap: 12px;
  }

  .hero-actions--overlay .button {
    flex: 1 1 220px;
    min-width: 0;
  }

  .hero-cinematic__note {
    max-width: none;
    font-size: 0.84rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .page-hero h1,
  .section-heading h2,
  .section-copy h2,
  .booking-card h3,
  .site-footer h2 {
    font-size: 2.6rem;
  }

  .hero__visual,
  .stacked-visual,
  .page-hero {
    min-height: 380px;
  }

  .hero-image--secondary,
  .stacked-visual__accent {
    inset: auto 0 0 28%;
    height: 44%;
  }

  .hero-image--primary,
  .stacked-visual__main {
    inset: 0 12% 14% 0;
  }

  .floating-note,
  .stacked-visual__card {
    left: 4%;
    right: 4%;
    max-width: none;
  }

  .page-hero__content {
    padding: 92px 0 72px;
  }

  .booking-card,
  .calculator-card,
  .availability-panel,
  .offer-card__content,
  .perk-card,
  .pricing-card,
  .address-card,
  .amenity-card {
    padding: 20px;
  }

  .lightbox {
    padding: 18px;
  }

  .lightbox__nav {
    display: none;
  }

  .site-footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 1080px) {
  .offer-detail__hero {
    grid-template-columns: 1fr;
  }

  .reservation-widget__header {
    flex-direction: column;
  }

  .reservation-widget__controls {
    justify-items: start;
  }

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

@media (max-width: 640px) {
  .availability-panel--wide,
  .admin-panel-shell {
    padding: 20px;
  }

  .reservation-switch,
  .reservation-nav,
  .admin-action-row {
    width: 100%;
  }

  .reservation-switch__button,
  .reservation-nav__button {
    flex: 1 1 calc(50% - 10px);
    justify-content: center;
  }

  .photo-upload-form {
    padding: 18px;
  }

  .photo-upload-form__grid,
  .photo-admin__grid,
  .offer-admin__grid,
  .offer-form__grid {
    grid-template-columns: 1fr;
  }

  .photo-admin__tabs,
  .photo-admin__toolbar,
  .photo-admin__toolbar-actions,
  .photo-admin__header,
  .photo-upload-form__actions,
  .photo-admin__actions,
  .offer-admin__header,
  .offer-admin__actions,
  .offer-detail .section-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .photo-admin__tab {
    width: 100%;
  }

  .promo-offers-slot {
    width: 100%;
  }

  .promo-offers__grid {
    gap: 10px;
  }

  .promo-offer-card {
    flex: 1 1 180px;
  }

  .offer-form,
  .offer-detail__intro,
  .offer-detail__body {
    padding: 20px;
  }

  .photo-admin__count {
    width: fit-content;
  }
}
