:root {
  --ink: #3a1f1d;
  --muted: #6b5a52;
  --deep: #3a1f1d;
  --olive: #5d8e2e;
  --sage: #8cc63f;
  --sand: #f7f1e3;
  --soft-sand: #fff8ec;
  --stone: #e7d9c2;
  --clay: #f57a1f;
  --gold: #f2c63d;
  --primary: #f57a1f;
  --primary-hover: #d96514;
  --teal: #28c7d9;
  --aqua: #159bb0;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(58, 31, 29, 0.16);
  --shadow-soft: 0 16px 48px rgba(58, 31, 29, 0.1);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--soft-sand);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-wrap: break-word;
}

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

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

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

button,
input,
textarea {
  font: inherit;
}

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

.skip-link,
.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;
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 999;
  left: 16px;
  top: 16px;
  padding: 10px 14px;
  background: var(--deep);
  color: var(--white);
  border-radius: 999px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  background: rgba(251, 246, 238, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(58, 31, 29, 0.09);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(251, 246, 238, 0.92);
  box-shadow: 0 10px 30px rgba(58, 31, 29, 0.08);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: var(--soft-sand);
  border: 1px solid rgba(58, 31, 29, 0.1);
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(58, 31, 29, 0.14);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  padding: 3px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 1.05rem;
  letter-spacing: -0.04em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-actions {
  order: 3;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-menu {
  order: 2;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu a {
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(58, 31, 29, 0.74);
  font-size: 0.95rem;
  font-weight: 650;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--ink);
  background: rgba(58, 31, 29, 0.08);
}

.nav-menu .nav-cta {
  background: var(--primary);
  color: var(--white);
  padding-inline: 18px;
  box-shadow: 0 12px 28px rgba(245, 122, 31, 0.24);
}

.nav-menu .nav-cta:hover,
.nav-menu .nav-cta:focus-visible {
  color: var(--white);
  background: var(--primary-hover);
}

.lang-switcher {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.lang-btn {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.lang-btn:hover,
.lang-btn:focus-visible {
  border-color: rgba(245, 122, 31, 0.28);
  background: rgba(245, 122, 31, 0.1);
  transform: scale(1.08);
  outline: none;
}

.lang-btn.active {
  border-color: var(--primary);
  background: rgba(245, 122, 31, 0.14);
  transform: scale(1.08);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: rgba(58, 31, 29, 0.08);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--deep);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  padding: 70px 0 54px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(242, 198, 61, 0.28), transparent 34%),
    radial-gradient(circle at 8% 20%, rgba(40, 199, 217, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 248, 236, 1), rgba(247, 241, 227, 0.94));
  z-index: -2;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: auto -10% -28% 45%;
  height: 58%;
  transform: rotate(-8deg);
  background: rgba(58, 31, 29, 0.08);
  border-radius: 60px;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(36px, 5vw, 80px);
}

.hero-copy,
.hero-media,
.section-copy,
.section-heading,
.location-card,
.distance-list,
.contact-panel,
.faq-list,
.site-footer,
.feature-card,
.booking-card,
.amenity,
.trust-grid article {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -0.055em;
  overflow-wrap: break-word;
  hyphens: none;
}

h1 {
  max-width: 860px;
  font-size: clamp(3rem, 7vw, 6.75rem);
}

h2 {
  font-size: clamp(2.1rem, 4.4vw, 4rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.hero-lead,
.section-copy p,
.section-heading p,
.location-card p,
.site-footer p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-lead {
  max-width: 690px;
  margin: 26px 0 0;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 52px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
  overflow-wrap: break-word;
  hyphens: none;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.button-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(245, 122, 31, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--primary-hover);
  box-shadow: 0 20px 44px rgba(217, 101, 20, 0.28);
}

.button-secondary {
  color: var(--aqua);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(40, 199, 217, 0.32);
  box-shadow: 0 12px 32px rgba(58, 31, 29, 0.08);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--white);
}

.button-booking {
  background: #006ce4;
  color: var(--white);
  box-shadow: 0 18px 36px rgba(0, 108, 228, 0.24);
}

.button-booking:hover,
.button-booking:focus-visible {
  background: #003b95;
  box-shadow: 0 20px 44px rgba(0, 59, 149, 0.28);
}

.button-airbnb {
  background: #ff385c;
  color: var(--white);
  box-shadow: 0 18px 36px rgba(255, 56, 92, 0.24);
}

.button-airbnb:hover,
.button-airbnb:focus-visible {
  background: #e31c5f;
  box-shadow: 0 20px 44px rgba(227, 28, 95, 0.28);
}

.booking-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 34px 0 0;
  max-width: 640px;
}

.quick-facts div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(58, 31, 29, 0.1);
  border-radius: 18px;
}

.quick-facts dt {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.quick-facts dd {
  margin: 4px 0 0;
  color: var(--deep);
  font-size: 1.05rem;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.hero-media {
  position: relative;
  padding-bottom: 42px;
}

.hero-photo-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(0, 0, 0, 0.38));
  pointer-events: none;
}

.hero-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
}

.glass-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.12);
}

.media-badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 18px;
  border-radius: 22px;
  display: grid;
  gap: 3px;
}

.media-badge strong {
  font-size: 1.05rem;
  overflow-wrap: break-word;
  hyphens: none;
}

.media-badge span {
  color: var(--muted);
}

.photo-strip {
  position: absolute;
  right: -18px;
  bottom: -44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: min(320px, 58%);
  padding: 10px;
  border-radius: 24px;
  background: rgba(251, 246, 238, 0.84);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.photo-strip img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
}

.trust-strip {
  padding: 24px 0 70px;
  background: var(--sand);
}

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

.trust-grid article {
  padding: 22px;
  min-height: 154px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(58, 31, 29, 0.1);
  box-shadow: 0 18px 50px rgba(58, 31, 29, 0.05);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: rgba(189, 116, 76, 0.14);
  color: var(--clay);
  font-weight: 900;
}

.trust-grid strong {
  display: block;
  font-size: 1.1rem;
  overflow-wrap: break-word;
  hyphens: none;
}

.trust-grid p {
  margin: 8px 0 0;
  color: var(--muted);
}

.section {
  padding: clamp(76px, 9vw, 130px) 0;
}

.section-soft {
  background:
    radial-gradient(circle at 8% 8%, rgba(216, 168, 95, 0.17), transparent 32%),
    var(--sand);
}

.split-grid,
.location-grid,
.contact-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(32px, 5vw, 76px);
  align-items: start;
}

.section-copy p {
  margin: 24px 0 0;
}

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

.feature-card {
  padding: clamp(22px, 3vw, 30px);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(58, 31, 29, 0.1);
  box-shadow: 0 18px 60px rgba(58, 31, 29, 0.06);
}

.feature-card span {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--clay);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.feature-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading p {
  margin: 18px 0 0;
}

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

.amenity {
  min-height: 92px;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(58, 31, 29, 0.1);
  box-shadow: 0 14px 34px rgba(58, 31, 29, 0.04);
}

.amenity span {
  font-weight: 800;
  color: var(--deep);
  overflow-wrap: break-word;
  hyphens: none;
}

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

.gallery-item {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  background: var(--stone);
  cursor: pointer;
  box-shadow: 0 18px 48px rgba(58, 31, 29, 0.08);
}

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

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

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.48));
  opacity: 0.9;
}

.gallery-item span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  color: var(--white);
  font-weight: 850;
  text-align: left;
}

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

.location-section {
  background:
    radial-gradient(circle at 84% 12%, rgba(40, 199, 217, 0.14), transparent 34%),
    var(--sand);
  color: var(--ink);
}

.location-section .eyebrow {
  color: var(--aqua);
}

.location-card p,
.location-section .text-link,
.distance-list span {
  color: var(--muted);
}

.location-card {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.location-card p {
  margin: 22px 0;
}

.text-link {
  display: inline-flex;
  font-weight: 850;
  border-bottom: 1px solid currentColor;
}

.distance-list {
  display: grid;
  gap: 14px;
}

.distance-list article {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(40, 199, 217, 0.2);
  box-shadow: 0 14px 38px rgba(58, 31, 29, 0.06);
}

.distance-list strong {
  display: block;
  font-size: 1.2rem;
}

.distance-list span {
  display: block;
  margin-top: 7px;
}

.book-section {
  background:
    radial-gradient(circle at 88% 8%, rgba(189, 116, 76, 0.16), transparent 34%),
    var(--soft-sand);
}

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

.booking-card {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 42px);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.booking-card::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.booking-card-booking {
  background: linear-gradient(145deg, #003b95, #006ce4);
  border: 1px solid rgba(0, 108, 228, 0.32);
  color: var(--white);
}

.booking-card-airbnb {
  background: linear-gradient(145deg, #ff385c, #e31c5f);
  border: 1px solid rgba(255, 56, 92, 0.32);
  color: var(--white);
}

.platform-label {
  display: inline-flex;
  position: relative;
  z-index: 1;
  align-items: center;
  padding: 7px 12px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.1em;
  max-width: 100%;
  line-height: 1.1;
  overflow-wrap: break-word;
  hyphens: none;
}

.platform-label-booking {
  font-family: Arial, Helvetica, sans-serif;
}

.platform-label-airbnb {
  font-weight: 850;
}

.booking-card h3,
.booking-card p,
.booking-card .button {
  position: relative;
  z-index: 1;
}

.booking-card p {
  color: rgba(255, 255, 255, 0.78);
  margin: 16px 0 28px;
}

.platform-button {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.booking-card-booking .platform-button {
  color: #003b95;
}

.booking-card-airbnb .platform-button {
  color: #e31c5f;
}

.platform-button:hover,
.platform-button:focus-visible {
  background: rgba(255, 255, 255, 0.9);
}

.contact-grid {
  align-items: center;
}

.contact-panel {
  padding: 12px;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid rgba(58, 31, 29, 0.1);
  box-shadow: var(--shadow-soft);
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px;
  border-radius: 22px;
  transition: background 0.18s ease, transform 0.18s ease;
}

.contact-row + .contact-row {
  border-top: 1px solid rgba(58, 31, 29, 0.08);
}

.contact-row:hover,
.contact-row:focus-visible {
  background: rgba(58, 31, 29, 0.04);
  transform: translateX(3px);
}

.contact-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: var(--white);
}

.contact-icon svg,
.social-link svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.contact-row-email .contact-icon {
  background: var(--aqua);
}

.contact-row-whatsapp .contact-icon {
  background: #25d366;
}

.contact-copy {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.contact-copy > span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-row strong {
  color: var(--deep);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  overflow-wrap: anywhere;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px 22px 22px;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 15px;
  border-radius: 999px;
  color: var(--white);
  font-weight: 800;
}

.social-instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 45%, #8134af 72%, #515bd4);
}

.social-facebook {
  background: #1877f2;
}

.social-facebook svg {
  fill: currentColor;
  stroke: none;
}

.faq-section {
  background: var(--sand);
}

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

.faq-list details {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(58, 31, 29, 0.1);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px;
  font-weight: 850;
  list-style: none;
}

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

.faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.site-footer {
  padding: 46px 0 100px;
  color: rgba(255, 255, 255, 0.72);
  background: #2b1715;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 28px;
  align-items: start;
}

.footer-brand .brand-mark {
  box-shadow: none;
  background: var(--soft-sand);
}

.footer-brand .brand-copy strong {
  color: var(--white);
}

.footer-brand .brand-copy small,
.site-footer p {
  color: rgba(255, 255, 255, 0.66);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--white);
  font-weight: 750;
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(8, 13, 10, 0.86);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

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

.lightbox figure {
  width: min(1120px, 100%);
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 78svh;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.lightbox figcaption {
  margin-top: 14px;
  color: var(--white);
  text-align: center;
  font-weight: 750;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

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

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

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

@media (max-width: 980px) {
  :root {
    --header-height: 72px;
  }

  .hero-grid,
  .split-grid,
  .location-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-media {
    max-width: 680px;
  }

  .hero-photo-card img {
    aspect-ratio: 4 / 3.6;
  }

  .trust-grid,
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-card {
    position: static;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.8rem);
  }

  h3 {
    font-size: clamp(1.18rem, 5.8vw, 1.48rem);
  }

  .hero-lead,
  .section-copy p,
  .section-heading p,
  .location-card p,
  .site-footer p {
    font-size: 1rem;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-menu {
    position: fixed;
    inset: var(--header-height) 14px auto 14px;
    display: grid;
    gap: 4px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(251, 246, 238, 0.98);
    border: 1px solid rgba(58, 31, 29, 0.1);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

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

  .nav-menu a {
    padding: 14px;
  }

  .lang-switcher {
    gap: 2px;
  }

  .lang-btn {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }

  .hero-actions .button,
  .booking-card .button {
    width: 100%;
  }

  .button {
    padding-inline: 18px;
  }

  html[lang="de"] h1,
  html[lang="de"] h2,
  html[lang="de"] h3,
  html[lang="de"] .button,
  html[lang="de"] .media-badge strong,
  html[lang="de"] .trust-grid strong,
  html[lang="de"] .amenity span,
  html[lang="de"] .platform-label {
    overflow-wrap: anywhere;
  }

  .quick-facts,
  .feature-grid,
  .booking-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quick-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-strip {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
  }

  .gallery-grid {
    grid-auto-rows: 210px;
    gap: 10px;
  }

  .gallery-item-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .mobile-booking-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 40;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border-radius: 22px;
    background: rgba(251, 246, 238, 0.92);
    border: 1px solid rgba(58, 31, 29, 0.1);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  .mobile-booking-bar a {
    display: grid;
    place-items: center;
    min-height: 44px;
    border-radius: 999px;
    background: #003b95;
    color: var(--white);
    font-weight: 850;
    font-size: 0.9rem;
  }

  .mobile-booking-bar a:nth-child(2) {
    background: #ff385c;
    color: var(--white);
    border: 0;
  }
}

@media (max-width: 520px) {
  .nav {
    gap: 12px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .brand-copy small {
    display: none;
  }

  .nav-actions {
    gap: 6px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .lang-btn {
    width: 26px;
    height: 26px;
    font-size: 15px;
  }
}

@media (max-width: 380px) {
  .brand-copy strong {
    font-size: 0.98rem;
  }

  .lang-btn {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }
}

@media (max-width: 540px) {
  h1 {
    font-size: clamp(2.18rem, 11.5vw, 3.05rem);
  }

  h2 {
    font-size: clamp(1.78rem, 8.6vw, 2.45rem);
  }

  h3 {
    font-size: clamp(1.12rem, 5.5vw, 1.36rem);
  }

  .brand-copy small {
    display: none;
  }

  .eyebrow {
    letter-spacing: 0.11em;
  }

  .quick-facts dt {
    letter-spacing: 0.08em;
  }

  .trust-grid,
  .amenities-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item-large {
    grid-column: auto;
  }

  .gallery-grid {
    grid-auto-rows: 250px;
  }

  .section {
    padding-block: 72px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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