:root {
  --bg: #eef8ff;
  --paper: rgba(255, 255, 255, 0.88);
  --paper-strong: #ffffff;
  --ink: #13344d;
  --muted: #5f7f98;
  --line: rgba(19, 52, 77, 0.1);
  --sea: #54b9ef;
  --sea-deep: #1784cf;
  --sand: #dff4ff;
  --sun: #84d9ff;
  --accent: #5fc8ff;
  --success: #2aa9d2;
  --shadow: 0 26px 80px rgba(44, 112, 161, 0.14);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(95, 200, 255, 0.2), transparent 28%),
    radial-gradient(circle at top right, rgba(84, 185, 239, 0.2), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f5fbff 26%, #ecf8ff 100%);
}

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

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

.shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(84, 185, 239, 0.15);
}

.site-header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 14px 0;
}

.brand {
  display: block;
  text-align: center;
}

.brand-copy strong,
.eyebrow {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.brand-copy p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.top-links {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  justify-content: center;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.top-links::-webkit-scrollbar {
  display: none;
}

.lang-link,
.pill-link {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.92);
  transition: 0.2s ease;
}

.lang-link.active {
  background: linear-gradient(135deg, var(--sea), var(--sea-deep));
  color: white;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(8, 110, 173, 0.22);
}

.lang-link:hover,
.pill-link:hover,
.cta:hover,
.ghost:hover,
.card:hover,
.mini-gallery figure:hover,
.gallery-card:hover,
.restaurant-card:hover,
.beach-card:hover,
details:hover {
  transform: translateY(-2px);
}

.hero {
  padding: 22px 0 16px;
}

.hero-visual,
.section-card,
.gallery-card,
.restaurant-card,
.beach-card,
details,
.contact-card,
.info-strip,
.story-card {
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2,
.section-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
  margin: 12px 0 18px;
}

.lead {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 58ch;
}

.cta,
.ghost,
.copy-btn,
.contact-link,
.quick-link {
  border: none;
  cursor: pointer;
  font: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta,
.ghost,
.copy-btn,
.contact-link {
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 800;
}

.cta {
  color: white;
  background: linear-gradient(135deg, var(--sea), var(--sea-deep));
  box-shadow: 0 18px 28px rgba(10, 85, 111, 0.28);
}

.ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
}

.hero-visual {
  border-radius: 38px;
  padding: 24px;
  background: white;
  box-shadow: 0 36px 80px rgba(85, 166, 218, 0.16);
}

.hero-visual img {
  width: 100%;
  height: min(56vw, 680px);
  object-fit: cover;
  object-position: center top;
  border-radius: 26px;
  background: white;
}

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

.hero-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  min-height: 100%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: 280px;
  padding: 18px 20px;
  border-radius: 20px;
  color: white;
  background: linear-gradient(135deg, rgba(10, 85, 111, 0.94), rgba(242, 106, 75, 0.9));
}

.hero-badge strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 8px;
}

.info-strip {
  border-radius: var(--radius-xl);
  padding: 18px;
  margin: 14px auto 44px;
}

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

.quick-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  padding: 14px;
  text-align: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  font-weight: 700;
  color: var(--ink);
}

.app-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: start;
}

.app-shell {
  border-radius: 32px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 250, 255, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.app-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: 20px;
}

.app-toolbar p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.8;
  max-width: 56ch;
}

.app-status {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(84, 185, 239, 0.12);
  color: var(--sea-deep);
  font-weight: 700;
  white-space: nowrap;
}

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

.app-card {
  position: relative;
  overflow: hidden;
  min-height: 196px;
  padding: 24px;
  border: 1px solid rgba(22, 50, 71, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(84, 185, 239, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 50px rgba(63, 143, 192, 0.1);
  text-align: left;
  cursor: pointer;
}

.app-card::after {
  content: "";
  position: absolute;
  inset: auto -20px -45px auto;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95, 200, 255, 0.16), transparent 70%);
}

.app-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  margin-bottom: 18px;
  font-size: 1rem;
  color: white;
  background: linear-gradient(135deg, #76d6ff, #1784cf);
  box-shadow: 0 12px 24px rgba(10, 85, 111, 0.24);
}

.app-card h3 {
  font-size: 1.22rem;
  margin-bottom: 10px;
}

.app-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  font-size: 0.95rem;
}

.app-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--sea-deep);
}

.drawer-desktop {
  position: sticky;
  top: 96px;
  min-height: 72vh;
  max-width: 360px;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 22px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  z-index: 2;
}

.drawer-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.drawer-head h3 {
  font-size: 1.7rem;
}

.drawer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 14px;
  background: rgba(84, 185, 239, 0.12);
  color: var(--ink);
  font: inherit;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

.app-stage > .drawer-desktop .drawer-close {
  background: transparent;
  color: var(--muted);
  box-shadow: none;
  cursor: default;
  pointer-events: none;
}

.drawer-body {
  padding: 18px;
  max-height: calc(72vh - 84px);
  overflow: auto;
}

.drawer-body p,
.drawer-body li {
  color: var(--muted);
  line-height: 1.85;
}

.drawer-body h4 {
  margin: 26px 0 10px;
  font-size: 1rem;
}

.drawer-body ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.drawer-media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 16px;
}

.drawer-media-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 18px;
}

.drawer-stack {
  display: grid;
  gap: 18px;
}

.drawer-rich-card {
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(84, 185, 239, 0.16);
  box-shadow: 0 16px 34px rgba(73, 146, 193, 0.08);
}

.drawer-rich-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.drawer-rich-body {
  padding: 16px;
}

.drawer-rich-body h4 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.drawer-rich-body p {
  margin: 0;
}

.drawer-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 31, 45, 0.36);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s ease;
  z-index: 39;
}

.drawer-mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: min(92vw, 430px);
  height: 100dvh;
  transform: translateX(104%);
  transition: transform 0.34s ease;
  z-index: 40;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.drawer-mobile .drawer-desktop {
  position: static;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  height: auto;
  border-radius: 30px 0 0 30px;
}

.drawer-mobile .drawer-body {
  max-height: none;
  overflow: visible;
}

body.drawer-open {
  overflow: hidden;
}

body.drawer-open .drawer-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.drawer-open .drawer-mobile {
  transform: translateX(0);
}

.panel-template {
  display: none;
}

section {
  padding: 34px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 24px;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.section-note {
  max-width: 48ch;
  color: var(--muted);
  line-height: 1.75;
}

.story-card {
  border-radius: var(--radius-xl);
  padding: 34px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: start;
}

.story-text p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.9;
}

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

.mini-gallery figure,
.gallery-card {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: transform 0.2s ease;
}

.mini-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

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

.card {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.card p,
.card li,
.restaurant-card p,
.beach-card p,
.contact-card p {
  color: var(--muted);
  line-height: 1.75;
}

.card ul,
.distance-list,
.ferry-list {
  margin: 14px 0 0;
  padding-left: 18px;
}

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

details {
  border-radius: 22px;
  padding: 0 22px;
  transition: transform 0.2s ease;
}

summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--sea);
}

details[open] summary::after {
  content: "−";
}

.details-content {
  padding: 0 0 22px;
}

.details-content p,
.details-content li {
  color: var(--muted);
  line-height: 1.8;
}

.distance-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.section-card {
  border-radius: var(--radius-xl);
  padding: 26px;
}

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

.stat-row {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
}

.stat-row strong {
  display: block;
  margin-bottom: 5px;
}

.beaches-grid,
.restaurants-grid,
.gallery-grid,
.video-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

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

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

.beach-card,
.restaurant-card,
.gallery-card,
.contact-card {
  border-radius: 24px;
  overflow: hidden;
}

.beach-card img,
.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.beach-card-body,
.restaurant-body,
.gallery-body,
.contact-body {
  padding: 22px;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(15, 124, 144, 0.1);
  color: var(--sea-deep);
  font-weight: 700;
  font-size: 0.92rem;
}

.chip.info {
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  cursor: default;
  pointer-events: none;
}

.chip.info svg {
  width: 14px;
  height: 14px;
  color: var(--sea-deep);
}

.chip svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.chip.google {
  background: #ea4335;
  color: white;
}

.chip.youtube {
  background: #ff0000;
  color: white;
}

.chip.tripadvisor {
  background: #34e0a1;
  color: #073b2d;
}

.chip.instagram {
  background: linear-gradient(135deg, #fdc468, #df4996 55%, #6f45e9);
  color: white;
}

.chip.facebook {
  background: #1877f2;
  color: white;
}

.video-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.video-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--paper);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.video-card iframe,
.video-card video {
  width: 100%;
  display: block;
  border: 0;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-card .gallery-body {
  padding-top: 18px;
}

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

.gallery-card img {
  height: 240px;
}

.gallery-shot {
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.gallery-shot img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-card:hover .gallery-shot img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.gallery-body h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.contact-grid {
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
}

.contact-card {
  min-height: 100%;
}

.contact-stack {
  display: grid;
  gap: 14px;
}

.contact-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
}

.contact-line input {
  border: none;
  background: transparent;
  color: var(--ink);
  font: inherit;
  min-width: 0;
}

.line-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.copy-btn {
  padding: 10px 14px;
  color: white;
  background: linear-gradient(135deg, var(--sea), var(--sea-deep));
}

.line-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 14px;
  color: white;
  font-weight: 700;
  background: linear-gradient(135deg, var(--sea), var(--sea-deep));
  white-space: nowrap;
}

.line-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  color: white;
}

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

.line-icon.viber {
  background: #7360f2;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--line);
}

.contact-link.primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--sun));
  border: none;
}

.contact-link.whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: white;
}

.contact-link.viber {
  background: #7360f2;
  border-color: #7360f2;
  color: white;
}

.contact-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  flex: 0 0 18px;
}

.save-contacts {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  font-weight: 800;
  color: white;
  background: linear-gradient(135deg, var(--sea), var(--sea-deep));
}

.booking-box {
  padding: 24px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.9), transparent 36%),
    linear-gradient(145deg, rgba(0, 113, 194, 0.12), rgba(233, 247, 255, 0.96));
  border: 1px solid rgba(0, 113, 194, 0.16);
  margin-top: 20px;
  text-align: center;
}

.booking-label {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #003b95;
  color: white;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.booking-actions {
  margin-top: 16px;
  justify-content: center;
}

.booking-cta {
  width: min(100%, 520px);
  min-height: 60px;
  border: none;
  border-radius: 18px;
  color: white;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, #003b95, #0068b5 55%, #0a84d8);
  box-shadow:
    0 18px 36px rgba(0, 113, 194, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 0 22px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.booking-cta span {
  display: block;
  text-align: center;
}

.booking-cta:hover {
  transform: translateY(-1px);
  box-shadow:
    0 22px 40px rgba(0, 113, 194, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  filter: saturate(1.04);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(5, 25, 39, 0.78);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s ease;
  z-index: 60;
}

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

.lightbox-frame {
  position: relative;
  max-width: min(1200px, 100%);
  max-height: 100%;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.28);
}

.lightbox-frame img {
  max-width: min(1100px, 100%);
  max-height: 78vh;
  border-radius: 18px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 14px;
  background: rgba(19, 52, 77, 0.08);
  color: var(--ink);
  font: inherit;
  font-size: 1.4rem;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 16px;
  background: rgba(19, 52, 77, 0.08);
  color: var(--ink);
  font-size: 1.5rem;
  cursor: pointer;
}

.lightbox-prev {
  left: 12px;
}

.lightbox-next {
  right: 12px;
}

.booking-box strong {
  display: block;
  margin-bottom: 8px;
}

footer {
  padding: 28px 0 60px;
}

.footer-card {
  border-radius: var(--radius-xl);
  padding: 26px;
  color: #0f3754;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(226, 245, 255, 0.95));
  box-shadow: var(--shadow);
}

.footer-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.8s ease forwards;
}

.fade-up.delay-1 {
  animation-delay: 0.08s;
}

.fade-up.delay-2 {
  animation-delay: 0.16s;
}

.fade-up.delay-3 {
  animation-delay: 0.24s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1380px) {
  .app-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .story-grid,
  .distance-panel,
  .video-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .app-stage {
    grid-template-columns: 1fr;
  }

  .app-stage > .drawer-desktop {
    display: none;
  }

  .drawer-mobile .drawer-desktop {
    display: block;
    overflow: visible;
  }

  .drawer-mobile .drawer-head {
    position: sticky;
    top: 0;
    z-index: 12;
  }

  .quick-nav,
  .app-grid,
  .cards-grid,
  .details-grid,
  .beaches-grid,
  .restaurants-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy,
  .story-card,
  .section-card,
  .beach-card-body,
  .restaurant-body,
  .gallery-body,
  .contact-body {
    padding: 22px;
  }

  .hero-facts,
  .quick-nav,
  .app-grid,
  .cards-grid,
  .details-grid,
  .stats-list,
  .beaches-grid,
  .restaurants-grid,
  .gallery-grid,
  .mini-gallery {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    min-height: 380px;
  }

  .hero-visual {
    padding: 12px;
    border-radius: 24px;
  }

  .hero-visual img {
    height: auto;
    max-height: none;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center center;
    border-radius: 18px;
  }

  .hero-badge {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
  }

  .top-links {
    justify-content: flex-start;
    gap: 8px;
  }

  .lang-link {
    padding: 10px 12px;
    min-width: max-content;
  }

  .contact-line {
    grid-template-columns: 1fr;
  }

  .copy-btn {
    width: 100%;
  }

  .app-shell {
    padding: 22px;
  }

  .app-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 1100px) {
  body.drawer-open {
    overflow: auto;
  }
}
