:root {
  --sea: #0a6f8f;
  --sea-deep: #06475f;
  --aqua: #49aebe;
  --sand: #e8d7b7;
  --sand-light: #f7f0e4;
  --gold: #c79a48;
  --white: #ffffff;
  --ink: #17313b;
  --muted: #6a7a80;
  --success: #dff3e7;
  --success-strong: #2e9b5c;
  --danger: #ffe2df;
  --danger-strong: #d84a3a;
  --selected: #dcecff;
  --selected-strong: #176fd1;
  --shadow: 0 18px 45px rgba(8, 52, 68, 0.14);
  --radius: 8px;
}
* { 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: #fbfaf6;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(10,111,143,0.12);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: 0; color: var(--sea-deep); white-space: nowrap; }
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--sea-deep);
  color: var(--white);
  font-weight: 900;
}
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 18px; font-size: 0.94rem; color: #2c4a54; }
.main-nav a { position: relative; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -7px; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.main-nav a:hover::after { transform: scaleX(1); }
.language-switch { display: inline-flex; gap: 4px; padding: 3px; border: 1px solid rgba(10,111,143,0.2); border-radius: 999px; background: #fff; }
.language-switch button { border: 0; border-radius: 999px; background: transparent; color: var(--sea-deep); padding: 6px 9px; cursor: pointer; font-size: .78rem; font-weight: 800; }
.language-switch button.active { background: var(--sea); color: var(--white); }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid rgba(10,111,143,.18); border-radius: var(--radius); background: #fff; }
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--sea-deep); }
.hero { position: relative; min-height: 92vh; display: grid; align-items: end; overflow: hidden; padding: 140px clamp(20px, 6vw, 84px) 82px; }
.hero-image, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; }
.hero-overlay { background: linear-gradient(90deg, rgba(4,49,68,.78), rgba(4,49,68,.38) 48%, rgba(4,49,68,.1)), linear-gradient(0deg, rgba(4,49,68,.42), transparent 45%); }
.hero-content { position: relative; max-width: 830px; color: #fff; }
.eyebrow { margin: 0 0 10px; text-transform: uppercase; letter-spacing: .08em; font-size: .76rem; font-weight: 850; color: var(--gold); }
h1, h2, h3 { margin: 0; line-height: 1.1; letter-spacing: 0; }
h1 { font-size: clamp(2.25rem, 5.3vw, 5.3rem); max-width: 900px; }
h2 { font-size: clamp(1.9rem, 3vw, 3.2rem); }
h3 { font-size: 1.25rem; }
.hero p:not(.eyebrow) { max-width: 660px; font-size: clamp(1.04rem, 2vw, 1.32rem); color: rgba(255,255,255,.9); }
.hero-actions, .form-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.btn { border: 0; border-radius: var(--radius); padding: 13px 18px; min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; cursor: pointer; font-weight: 850; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 26px rgba(0,0,0,.14); }
.btn.primary { background: var(--sea); color: #fff; }
.btn.secondary { background: rgba(255,255,255,.9); color: var(--sea-deep); border: 1px solid rgba(10,111,143,.16); }
.btn.whatsapp { background: #1f9d62; color: #fff; }
.section { padding: 88px clamp(20px, 5vw, 72px); }
.section-heading { max-width: 820px; margin-bottom: 34px; }
.section-heading.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading p:not(.eyebrow), .lead { color: var(--muted); font-size: 1.08rem; }
.intro-band { background: var(--sand-light); }
.intro-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr .8fr; gap: 34px; align-items: center; }
.fact-strip { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.fact-strip div, .amenity-card, .trip-card, .review-card, .contact-card, .calendar-panel, .inquiry-form, .admin-card, .admin-form, .admin-list-panel, .sql-panel {
  background: #fff;
  border: 1px solid rgba(10,111,143,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.fact-strip div { padding: 18px; min-height: 112px; }
.fact-strip strong { display: block; color: var(--sea); font-size: 1.8rem; line-height: 1; }
.fact-strip span { color: var(--muted); font-size: .94rem; }
.amenities-grid, .trip-grid, .reviews-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.amenity-card { padding: 20px; min-height: 148px; }
.amenity-card .icon, .trip-card .icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(10,111,143,.1); color: var(--sea); font-size: 1.35rem; margin-bottom: 14px; }
.amenity-card p, .trip-card p, .review-card p { color: var(--muted); margin-bottom: 0; }
.gallery-section { background: #f4faf9; }
.gallery-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-item { position: relative; overflow: hidden; border: 0; padding: 0; min-height: 210px; border-radius: var(--radius); cursor: pointer; background: #e5f0ef; }
.gallery-item:nth-child(1), .gallery-item:nth-child(8) { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item span { position: absolute; left: 12px; right: 12px; bottom: 12px; color: #fff; font-weight: 850; text-align: left; text-shadow: 0 2px 10px rgba(0,0,0,.5); }
.availability-section { background: linear-gradient(180deg, #fff, #f7f0e4); }
.notice, .form-warning, .admin-warning { background: rgba(199,154,72,.12); border-left: 4px solid var(--gold); padding: 14px 16px; border-radius: var(--radius); color: #634718; }
.availability-layout { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr); gap: 18px; align-items: start; }
.calendar-panel, .inquiry-form { padding: 20px; }
.calendar-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 16px; }
.calendar-status { display: block; color: var(--muted); font-size: .9rem; margin-top: 4px; }
.icon-btn { width: 42px; height: 42px; border-radius: var(--radius); border: 1px solid rgba(10,111,143,.18); background: #fff; color: var(--sea-deep); font-size: 1.6rem; cursor: pointer; }
.legend { display: flex; flex-wrap: wrap; gap: 10px 16px; margin-bottom: 16px; color: var(--muted); font-size: .92rem; }
.legend span { display: inline-flex; align-items: center; gap: 7px; }
.legend i { width: 14px; height: 14px; border-radius: 50%; display: inline-block; }
.legend-free { background: var(--success-strong); }
.legend-booked { background: var(--danger-strong); }
.legend-selected { background: var(--selected-strong); }
.calendar-months { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.month { border: 1px solid rgba(10,111,143,.12); border-radius: var(--radius); padding: 14px; background: #fbfefe; }
.month h3 { font-size: 1.08rem; margin-bottom: 12px; color: var(--sea-deep); }
.weekdays, .days { display: grid; grid-template-columns: repeat(7, minmax(0,1fr)); gap: 6px; }
.weekdays span { text-align: center; color: var(--muted); font-size: .78rem; font-weight: 850; }
.day { aspect-ratio: 1; border: 1px solid rgba(10,111,143,.1); border-radius: 6px; background: var(--success); color: #17442d; cursor: pointer; font-weight: 800; min-width: 0; }
.day:hover { outline: 2px solid rgba(10,111,143,.22); }
.day.booked { background: var(--danger); color: #84271e; border-color: rgba(216,74,58,.25); cursor: not-allowed; }
.day.unknown { background: #eef2f3; color: #6a7a80; cursor: not-allowed; }
.day.selected { background: var(--selected-strong); color: #fff; border-color: var(--selected-strong); }
.day.in-range { background: var(--selected); color: var(--selected-strong); border-color: rgba(23,111,209,.4); }
.day.past { opacity: .42; }
.day.empty { visibility: hidden; }
.inquiry-form { display: grid; gap: 14px; }
.inquiry-form label, .admin-form label, .admin-card label { display: grid; gap: 6px; font-weight: 800; color: var(--sea-deep); }
input, textarea { width: 100%; border: 1px solid rgba(10,111,143,.2); border-radius: var(--radius); padding: 11px 12px; background: #fff; color: var(--ink); }
textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.trip-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
.trip-card { padding: 20px; display: grid; gap: 10px; }
.map-link { color: var(--sea); font-weight: 850; margin-top: 8px; }
.reviews-section { background: var(--sea-deep); color: #fff; }
.reviews-section .eyebrow { color: #f1c36c; }
.reviews-section .review-card { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); color: #fff; box-shadow: none; padding: 22px; }
.review-card p { color: rgba(255,255,255,.82); }
.stars { color: #f5c45c; letter-spacing: .08em; margin-bottom: 12px; }
.contact-layout { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: .8fr 1.2fr; gap: 18px; }
.contact-card { padding: 24px; }
.map { width: 100%; min-height: 380px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow); }
.lightbox { position: fixed; inset: 0; z-index: 50; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(6, 45, 60, .88); }
.lightbox.open { display: flex; }
.lightbox img { max-height: 82vh; width: min(100%, 1040px); object-fit: contain; border-radius: var(--radius); }
.lightbox p { position: absolute; left: 24px; right: 24px; bottom: 24px; text-align: center; color: #fff; font-weight: 850; }
.lightbox-close { position: absolute; top: 18px; right: 18px; width: 44px; height: 44px; border: 0; border-radius: 50%; background: #fff; color: var(--sea-deep); font-size: 2rem; cursor: pointer; }
.site-footer { position: relative; display: grid; grid-template-columns: 1fr auto auto; gap: 26px; align-items: start; padding: 36px clamp(20px, 5vw, 72px); background: #062f40; color: #fff; }
.site-footer p { color: rgba(255,255,255,.72); margin: 8px 0 0; }
.site-footer nav { display: flex; gap: 16px; flex-wrap: wrap; color: rgba(255,255,255,.84); }
.admin-dot { position: absolute; right: 8px; bottom: 4px; font-size: 10px; opacity: .32; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.admin-page { background: linear-gradient(160deg, #f7f0e4, #eaf7f7); min-height: 100vh; }
.admin-shell { padding: 42px clamp(18px, 4vw, 60px); }
.admin-login { min-height: 80vh; display: grid; place-items: center; }
.admin-card { width: min(100%, 440px); padding: 26px; }
.back-link { color: var(--sea); font-weight: 850; display: inline-flex; margin-bottom: 12px; }
.admin-content { max-width: 1180px; margin: 0 auto; }
.admin-topbar { display: flex; justify-content: space-between; gap: 20px; align-items: start; margin-bottom: 20px; }
.admin-grid { display: grid; grid-template-columns: 420px 1fr; gap: 18px; align-items: start; }
.admin-form, .admin-list-panel, .sql-panel { padding: 22px; }
.admin-form { display: grid; gap: 14px; }
.admin-status { color: var(--sea-deep); font-weight: 800; }
.admin-booking-item { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; padding: 13px 0; border-bottom: 1px solid rgba(10,111,143,.12); }
.admin-booking-item:last-child { border-bottom: 0; }
.admin-booking-item small { color: var(--muted); display: block; }
.delete-btn { background: var(--danger); color: #84271e; border: 1px solid rgba(216,74,58,.2); border-radius: var(--radius); padding: 9px 12px; cursor: pointer; font-weight: 850; }
.sql-panel { margin-top: 18px; }
.sql-panel pre { overflow: auto; background: #082f3f; color: #e7f7fb; padding: 18px; border-radius: var(--radius); }
.admin-hint { color: var(--muted); font-size: .92rem; }
@media (max-width: 1080px) {
  .main-nav { display: none; position: absolute; left: 18px; right: 18px; top: 72px; padding: 16px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); flex-direction: column; align-items: flex-start; }
  .main-nav.open { display: flex; }
  .menu-toggle { display: block; margin-left: auto; }
  .amenities-grid, .trip-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .availability-layout, .intro-grid, .contact-layout, .admin-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .site-header { gap: 10px; padding: 12px 14px; }
  .brand span:last-child { max-width: 145px; overflow: hidden; text-overflow: ellipsis; }
  .language-switch button { padding: 5px 7px; }
  .hero { min-height: 86vh; padding: 120px 20px 54px; }
  .section { padding: 62px 18px; }
  .calendar-months, .form-row, .fact-strip, .gallery-grid, .amenities-grid, .trip-grid, .reviews-grid { grid-template-columns: 1fr; }
  .gallery-item, .gallery-item:nth-child(1), .gallery-item:nth-child(8) { grid-column: auto; min-height: 230px; }
  .site-footer { grid-template-columns: 1fr; }
  .admin-topbar { display: grid; }
}

.field-error {
  min-height: 18px;
  color: #b43328;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.35;
}
input.is-invalid,
textarea.is-invalid {
  border-color: #d84a3a;
  box-shadow: 0 0 0 3px rgba(216, 74, 58, .14);
}
.form-message {
  min-height: 22px;
  margin: 0;
  font-weight: 800;
}
.form-message.is-error { color: #b43328; }
.form-message.is-success { color: var(--success-strong); }
.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: .9rem;
}


/* Professional responsive finish */
:root {
  --radius: 22px;
  --radius-lg: 28px;
  --container: 1180px;
  --section-pad-x: clamp(16px, 4.5vw, 56px);
  --section-pad-y: clamp(56px, 8vw, 108px);
  --shadow: 0 20px 60px rgba(8, 52, 68, 0.13);
  --shadow-soft: 0 12px 34px rgba(8, 52, 68, 0.09);
}
html { overflow-x: hidden; }
body { overflow-x: hidden; background: linear-gradient(180deg, #fbfaf6 0%, #fff 42%, #fbfaf6 100%); }
img { max-width: 100%; height: auto; }
.site-header {
  min-height: 72px;
  padding: 12px var(--section-pad-x);
  gap: 14px;
  box-shadow: 0 10px 30px rgba(6, 47, 64, .07);
}
.brand { min-width: 0; font-size: clamp(.98rem, 1.5vw, 1.12rem); }
.brand-mark { flex: 0 0 auto; width: 38px; height: 38px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.24); }
.main-nav { gap: clamp(10px, 1.25vw, 18px); font-size: clamp(.84rem, .95vw, .95rem); }
.language-switch { flex: 0 0 auto; }
.hero {
  min-height: clamp(620px, 82vh, 880px);
  padding: clamp(118px, 15vh, 180px) var(--section-pad-x) clamp(52px, 9vh, 92px);
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
}
.hero-image { object-fit: cover; object-position: center; transform: scale(1.01); }
.hero-overlay { background: linear-gradient(90deg, rgba(4,49,68,.82), rgba(4,49,68,.5) 48%, rgba(4,49,68,.18)), linear-gradient(0deg, rgba(4,49,68,.46), transparent 48%); }
.hero-content { width: min(100%, var(--container)); margin: 0 auto; }
h1 { font-size: clamp(2.35rem, 5.2vw, 5rem); max-width: 920px; overflow-wrap: anywhere; }
h2 { font-size: clamp(1.65rem, 3.1vw, 3.05rem); overflow-wrap: anywhere; }
h3 { font-size: clamp(1.08rem, 1.45vw, 1.32rem); }
.hero p:not(.eyebrow) { font-size: clamp(1rem, 1.7vw, 1.28rem); }
.btn { border-radius: 999px; min-height: 52px; padding: 14px 22px; box-shadow: 0 8px 20px rgba(8, 52, 68, .08); white-space: normal; text-align: center; }
.btn.primary { background: linear-gradient(135deg, var(--sea), #0c86a8); }
.btn.secondary { background: rgba(255,255,255,.95); }
.section { padding: var(--section-pad-y) var(--section-pad-x); }
.section-heading, .intro-grid, .amenities-grid, .gallery-grid, .availability-layout, .trip-grid, .reviews-grid, .contact-layout, .admin-content { width: min(100%, var(--container)); }
.section-heading { margin-left: auto; margin-right: auto; }
.section-heading:not(.centered) { margin-left: auto; margin-right: auto; }
.section-heading p:not(.eyebrow), .lead { font-size: clamp(1rem, 1.25vw, 1.12rem); }
.intro-grid { grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: clamp(20px, 4vw, 48px); }
.fact-strip { gap: 14px; }
.fact-strip div, .amenity-card, .trip-card, .review-card, .contact-card, .calendar-panel, .inquiry-form, .admin-card, .admin-form, .admin-list-panel {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.fact-strip div { padding: clamp(16px, 2vw, 22px); }
.amenities-grid, .trip-grid, .reviews-grid { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: clamp(14px, 2vw, 22px); }
.amenity-card, .trip-card, .review-card { padding: clamp(18px, 2.4vw, 26px); transition: transform .2s ease, box-shadow .2s ease; }
.amenity-card:hover, .trip-card:hover, .review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.gallery-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(12px, 1.7vw, 18px); }
.gallery-item { min-height: 0; height: clamp(210px, 20vw, 292px); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; height: auto; min-height: clamp(440px, 42vw, 602px); }
.gallery-item:nth-child(8) { grid-column: auto; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(4,49,68,.72)); pointer-events: none; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.gallery-item span { z-index: 1; font-size: .98rem; }
.availability-layout { grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr); gap: clamp(18px, 3vw, 30px); }
.calendar-panel, .inquiry-form { padding: clamp(18px, 2.5vw, 28px); min-width: 0; }
.calendar-toolbar { gap: 12px; }
.calendar-toolbar > div { min-width: 0; text-align: center; }
.legend { gap: 10px 14px; }
.calendar-months { grid-template-columns: repeat(2, minmax(0,1fr)); gap: clamp(12px, 2vw, 18px); }
.month { border-radius: 18px; padding: clamp(10px, 1.6vw, 16px); min-width: 0; }
.weekdays, .days { gap: clamp(3px, .6vw, 6px); }
.weekdays span { font-size: clamp(.66rem, 1vw, .78rem); }
.day { min-height: 34px; border-radius: 10px; font-size: clamp(.78rem, 1vw, .92rem); display: grid; place-items: center; }
.inquiry-form { gap: 12px; }
.inquiry-form label, .admin-form label, .admin-card label { gap: 7px; }
input, textarea { min-height: 50px; border-radius: 16px; padding: 12px 14px; font-size: 1rem; }
textarea { min-height: 120px; }
.form-row { gap: 12px; }
.form-actions { margin-top: 8px; }
.contact-layout { grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr); gap: clamp(18px, 3vw, 30px); }
.contact-card { padding: clamp(20px, 3vw, 32px); }
.map { min-height: clamp(320px, 38vw, 460px); border-radius: var(--radius); }
.lightbox { padding: clamp(14px, 3vw, 32px); }
.lightbox img { width: min(100%, 1100px); max-height: 82vh; object-fit: contain; border-radius: var(--radius); box-shadow: 0 24px 70px rgba(0,0,0,.35); }
.lightbox-close, .lightbox-nav { border: 0; background: rgba(255,255,255,.95); color: var(--sea-deep); cursor: pointer; box-shadow: 0 12px 30px rgba(0,0,0,.24); }
.lightbox-close { z-index: 2; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; font-size: 2.1rem; display: grid; place-items: center; z-index: 2; }
.lightbox-prev { left: clamp(12px, 3vw, 32px); }
.lightbox-next { right: clamp(12px, 3vw, 32px); }
.lightbox p { bottom: clamp(12px, 3vw, 28px); padding: 0 64px; }
.site-footer { grid-template-columns: minmax(0, 1fr) auto auto; padding: clamp(30px, 5vw, 48px) var(--section-pad-x); gap: 18px 28px; }
.admin-shell { padding: clamp(24px, 5vw, 56px) var(--section-pad-x); }
.admin-card { width: min(100%, 480px); padding: clamp(22px, 4vw, 34px); }
.admin-grid { grid-template-columns: minmax(300px, 420px) minmax(0, 1fr); gap: clamp(16px, 3vw, 28px); }
.admin-form, .admin-list-panel { padding: clamp(18px, 2.7vw, 28px); }
.admin-topbar h1, .admin-card h1 { font-size: clamp(1.75rem, 3vw, 2.8rem); }
.admin-booking-item { min-width: 0; }
.admin-booking-item strong, .admin-booking-item small { overflow-wrap: anywhere; }
@media (max-width: 1160px) {
  .main-nav { display: none; position: absolute; left: var(--section-pad-x); right: var(--section-pad-x); top: calc(100% + 8px); padding: 16px; background: rgba(255,255,255,.98); border: 1px solid rgba(10,111,143,.12); border-radius: 20px; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; gap: 2px; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 11px 12px; border-radius: 14px; }
  .main-nav a:hover { background: rgba(10,111,143,.08); }
  .main-nav a::after { display: none; }
  .menu-toggle { display: grid; place-content: center; margin-left: auto; flex: 0 0 auto; border-radius: 16px; }
  .availability-layout, .intro-grid, .contact-layout, .admin-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .hero { min-height: 680px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-item:first-child { grid-column: span 2; min-height: 360px; }
  .calendar-months { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  :root { --section-pad-x: 16px; --section-pad-y: 52px; --radius: 18px; --radius-lg: 22px; }
  .site-header { min-height: 66px; gap: 8px; }
  .brand span:last-child { max-width: 150px; overflow: hidden; text-overflow: ellipsis; }
  .brand-mark { width: 34px; height: 34px; }
  .language-switch button { padding: 6px 8px; font-size: .74rem; }
  .hero { min-height: 560px; padding-top: 108px; padding-bottom: 44px; align-items: end; }
  h1 { font-size: clamp(2rem, 10vw, 3rem); }
  h2 { font-size: clamp(1.55rem, 7vw, 2.25rem); }
  .hero-actions, .form-actions, .contact-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .btn { width: 100%; min-height: 50px; padding: 13px 16px; }
  .fact-strip, .form-row, .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item, .gallery-item:first-child { grid-column: auto; min-height: 248px; height: 248px; }
  .calendar-panel, .inquiry-form { padding: 16px; }
  .calendar-toolbar { grid-template-columns: 42px 1fr 42px; display: grid; align-items: center; }
  .legend { display: grid; grid-template-columns: 1fr; font-size: .88rem; }
  .month { padding: 10px; }
  .day { min-height: 36px; border-radius: 9px; }
  input, textarea { min-height: 52px; font-size: 16px; }
  .admin-topbar { display: grid; }
  .admin-booking-item { grid-template-columns: 1fr; align-items: stretch; }
  .delete-btn { width: 100%; min-height: 44px; }
}
@media (max-width: 380px) {
  .brand span:last-child { max-width: 112px; }
  .language-switch { gap: 2px; padding: 2px; }
  .language-switch button { padding: 5px 6px; }
  .menu-toggle { width: 38px; height: 38px; }
  .hero { min-height: 520px; }
  .day { min-height: 32px; font-size: .76rem; }
  .weekdays, .days { gap: 3px; }
  .lightbox-nav { width: 42px; height: 42px; }
  .lightbox p { padding: 0 48px; font-size: .9rem; }
}

.hero-image { object-position: center center; }
.gallery-item img { object-position: center center; }
.gallery-item:nth-child(3) img, .gallery-item:nth-child(4) img, .gallery-item:nth-child(5) img, .gallery-item:nth-child(6) img { object-position: center center; }


/* Kraken brand integration */
:root {
  --sea: #075f78;
  --sea-deep: #05384c;
  --aqua: #2f9db0;
  --sand: #e7d6b8;
  --sand-light: #f8f2e7;
  --gold: #d0a04d;
  --brand-cream: #fffaf1;
}
.brand { gap: 12px; }
.brand-logo {
  width: clamp(42px, 4.4vw, 58px);
  height: clamp(42px, 4.4vw, 58px);
  border-radius: 50%;
  object-fit: contain;
  background: rgba(255,255,255,.92);
  box-shadow: 0 8px 22px rgba(5, 56, 76, .12);
  flex: 0 0 auto;
}
.brand-text { font-family: Georgia, 'Times New Roman', serif; font-weight: 700; color: var(--sea-deep); letter-spacing: .02em; }
.hero-brand-logo {
  width: clamp(84px, 11vw, 132px);
  height: clamp(84px, 11vw, 132px);
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255,255,255,.88);
  padding: 8px;
  box-shadow: 0 18px 48px rgba(0,0,0,.18);
  margin-bottom: 18px;
}
.hero-logo-watermark {
  position: absolute;
  right: clamp(16px, 7vw, 110px);
  bottom: clamp(54px, 11vh, 130px);
  width: clamp(170px, 23vw, 360px);
  height: auto;
  opacity: .16;
  filter: saturate(1.05);
  pointer-events: none;
  z-index: 1;
}
.hero-content { z-index: 2; }
.brand-tentacles { color: rgba(47, 157, 176, .34); pointer-events: none; overflow: hidden; }
.hero-tentacles {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: clamp(78px, 12vw, 150px);
  z-index: 1;
  opacity: .78;
}
.brand-tentacles svg { width: 100%; height: 100%; display: block; }
.brand-tentacles path { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; }
.tentacle { stroke-width: 18; animation: tentacleSway 9s ease-in-out infinite; transform-origin: 50% 70%; }
.tentacle-b { stroke-width: 11; animation-duration: 11s; animation-delay: -2s; opacity: .72; }
.wave-line { stroke: rgba(208, 160, 77, .46); stroke-width: 5; animation: waveFloat 7s ease-in-out infinite; }
@keyframes tentacleSway {
  0%, 100% { transform: translate3d(-8px, 3px, 0) scaleY(1); }
  50% { transform: translate3d(8px, -5px, 0) scaleY(1.035); }
}
@keyframes waveFloat {
  0%, 100% { transform: translate3d(5px, 0, 0); opacity: .42; }
  50% { transform: translate3d(-6px, -4px, 0); opacity: .68; }
}
.contact-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--brand-cream);
  box-shadow: 0 12px 28px rgba(5,56,76,.12);
  margin-bottom: 14px;
}
.footer-brand { display: flex; gap: 16px; align-items: center; min-width: 0; }
.footer-logo {
  width: 84px;
  height: 84px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  padding: 4px;
  flex: 0 0 auto;
}
.footer-brand span { display: block; color: rgba(255,255,255,.76); margin-top: 3px; font-size: .92rem; }
.site-footer { overflow: hidden; }
.footer-tentacles {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(58vw, 720px);
  height: 108px;
  opacity: .28;
}
.admin-logo {
  display: block;
  width: 112px;
  height: 112px;
  object-fit: contain;
  border-radius: 50%;
  margin: 0 auto 12px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(5,56,76,.12);
}
.admin-title-lockup { display: flex; align-items: center; gap: 14px; min-width: 0; }
.admin-logo-small { width: 58px; height: 58px; object-fit: contain; border-radius: 50%; background: #fff; flex: 0 0 auto; }
@media (max-width: 720px) {
  .brand-logo { width: 38px; height: 38px; }
  .hero-brand-logo { width: 82px; height: 82px; margin-bottom: 14px; }
  .hero-logo-watermark { width: 170px; right: -24px; bottom: 70px; opacity: .10; }
  .hero-tentacles { height: 72px; opacity: .38; }
  .tentacle { stroke-width: 12; }
  .tentacle-b { display: none; }
  .footer-brand { align-items: flex-start; }
  .footer-logo { width: 64px; height: 64px; }
  .footer-tentacles { display: none; }
  .admin-title-lockup { align-items: flex-start; }
}
@media (max-width: 380px) {
  .brand-text { max-width: 116px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .hero-brand-logo { width: 74px; height: 74px; }
}
@media (prefers-reduced-motion: reduce) {
  .tentacle, .wave-line { animation: none !important; }
  .brand-tentacles { opacity: .22; }
}
.admin-title-lockup p {
  margin: 6px 0 0;
  color: var(--muted);
}
.brand-mark { display: none; }


/* Compact responsive polish - mobile/tablet/desktop */
* { box-sizing: border-box; }
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
}
section {
  padding-left: clamp(18px, 4vw, 64px);
  padding-right: clamp(18px, 4vw, 64px);
}
.container {
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
}

.site-header { width: 100%; }
.main-nav, .brand-text, .btn, .map-link, .calendar-toolbar strong, .calendar-status { overflow-wrap: anywhere; }

h1 { font-size: clamp(2rem, 7vw, 4.5rem); line-height: 1.05; }
h2 { font-size: clamp(1.55rem, 4.8vw, 2.85rem); line-height: 1.12; }
h3 { font-size: clamp(1rem, 2.1vw, 1.26rem); line-height: 1.18; }
.section-heading { margin-bottom: clamp(22px, 4vw, 36px); }
.section-heading p:not(.eyebrow), .lead { font-size: clamp(.96rem, 1.35vw, 1.1rem); }

.fact-strip { align-items: stretch; }
.fact-strip div {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 3px;
  align-items: center;
  min-height: 0;
  padding: clamp(14px, 2vw, 20px);
}
.fact-strip div::before {
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(7, 95, 120, .1);
  color: var(--sea);
  font-size: 1.15rem;
  font-weight: 900;
}
.fact-strip div:nth-child(1)::before { content: "🏖"; }
.fact-strip div:nth-child(2)::before { content: "🛏"; }
.fact-strip div:nth-child(3)::before { content: "⌁"; }
.fact-strip div:nth-child(4)::before { content: "P"; }
.fact-strip strong {
  grid-column: 2;
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  line-height: 1.02;
}
.fact-strip span {
  grid-column: 2;
  font-size: clamp(.86rem, 1.4vw, .96rem);
  line-height: 1.35;
}

.amenities-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
  align-items: stretch;
}
.amenity-card {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 164px;
  padding: clamp(18px, 2.1vw, 24px);
}
.amenity-card .icon, .trip-card .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 4px;
  font-size: 1.15rem;
  flex: 0 0 auto;
}
.amenity-card h3, .trip-card h3, .review-card h3 { overflow-wrap: anywhere; }
.amenity-card p, .trip-card p, .review-card p {
  margin: 0;
  font-size: clamp(.92rem, 1.15vw, 1rem);
  line-height: 1.48;
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.5vw, 18px);
}
.gallery-item {
  height: clamp(220px, 20vw, 300px);
  min-height: 0;
  border-radius: min(var(--radius), 22px);
}
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
  height: auto;
  min-height: clamp(430px, 42vw, 610px);
}
.gallery-item span {
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(5, 56, 76, .58);
  backdrop-filter: blur(6px);
  font-size: clamp(.82rem, 1.2vw, .98rem);
  line-height: 1.2;
}

.availability-layout, .calendar-panel, .inquiry-form, .month, .calendar-months { min-width: 0; }
.calendar-panel { overflow-x: hidden; }
.calendar-toolbar {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
}
.icon-btn {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: grid;
  place-items: center;
  line-height: 1;
}
.legend {
  gap: 8px 12px;
  font-size: clamp(.78rem, 1.25vw, .92rem);
  line-height: 1.35;
}
.legend span { min-width: 0; }
.calendar-months { overflow: hidden; }
.weekdays, .days {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: clamp(3px, .6vw, 6px);
}
.day {
  width: 100%;
  height: clamp(38px, 4.8vw, 72px);
  min-height: 0;
  aspect-ratio: auto;
  padding: 0;
  font-size: clamp(.72rem, 1.2vw, .92rem);
  line-height: 1;
}
.weekdays span { font-size: clamp(.64rem, 1vw, .78rem); }

.inquiry-form {
  gap: clamp(9px, 1.3vw, 13px);
}
.inquiry-form label, .admin-form label, .admin-card label {
  gap: 5px;
  font-size: clamp(.9rem, 1.2vw, 1rem);
}
input, textarea {
  min-height: 48px;
  padding: 10px 13px;
  font-size: clamp(.92rem, 1.2vw, 1rem);
}
textarea { min-height: 104px; }
.form-row { gap: 10px; }
.field-error { min-height: 16px; font-size: .78rem; }
.form-warning, .notice, .form-note { font-size: clamp(.86rem, 1.2vw, .95rem); }
.form-warning, .notice { padding: 12px 14px; }
.form-actions { gap: 10px; }

.trip-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
}
.trip-card {
  display: flex;
  flex-direction: column;
  min-height: 228px;
  padding: clamp(18px, 2.1vw, 24px);
  gap: 8px;
}
.map-link { margin-top: auto; }

.reviews-section { padding-top: clamp(48px, 7vw, 92px); padding-bottom: clamp(48px, 7vw, 92px); }
.reviews-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 20px);
}
.reviews-section .review-card {
  padding: clamp(16px, 2vw, 22px);
  min-height: 0;
}
.stars {
  font-size: clamp(.84rem, 1.2vw, 1rem);
  margin-bottom: 8px;
}
.review-card h3 { margin-bottom: 6px; }
.review-card p { font-size: clamp(.9rem, 1.15vw, .98rem); line-height: 1.48; }

.admin-grid, .admin-topbar, .admin-booking-item { min-width: 0; }
.admin-form, .admin-list-panel, .admin-card { min-width: 0; }

@media (max-width: 1024px) {
  :root { --section-pad-x: clamp(18px, 4vw, 42px); --section-pad-y: clamp(50px, 7vw, 76px); }
  .intro-grid, .availability-layout, .contact-layout, .admin-grid { grid-template-columns: 1fr; }
  .amenities-grid, .trip-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .calendar-months { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-item:first-child { grid-column: span 2; min-height: clamp(330px, 46vw, 470px); }
  .amenity-card { min-height: 0; }
  .trip-card { min-height: 0; }
  .admin-topbar { align-items: center; }
}

@media (max-width: 768px) {
  :root { --section-pad-x: 16px; --section-pad-y: 44px; --radius: 18px; --radius-lg: 22px; }
  .site-header {
    min-height: 62px;
    padding: 9px 12px;
    gap: 7px;
  }
  .brand { gap: 8px; min-width: 0; }
  .brand-logo { width: 34px; height: 34px; }
  .brand-text { max-width: 132px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .95rem; }
  .language-switch { margin-left: 0; }
  .language-switch button { padding: 5px 7px; font-size: .72rem; }
  .menu-toggle { width: 38px; height: 38px; border-radius: 14px; }
  .main-nav { left: 12px; right: 12px; top: calc(100% + 6px); max-height: calc(100vh - 82px); overflow-y: auto; }

  .hero {
    min-height: 540px;
    padding-top: 96px;
    padding-bottom: 38px;
  }
  .hero-image { object-position: center center; }
  .hero-brand-logo { width: 72px; height: 72px; margin-bottom: 10px; }
  .hero-logo-watermark { display: none; }
  .hero-tentacles { height: 58px; opacity: .28; }
  h1 { font-size: clamp(1.82rem, 8vw, 2.7rem); }
  h2 { font-size: clamp(1.38rem, 6.2vw, 2.05rem); }
  .eyebrow { font-size: .68rem; margin-bottom: 7px; }
  .hero p:not(.eyebrow) { font-size: .98rem; line-height: 1.48; }
  .hero-actions, .form-actions, .contact-actions { flex-direction: column; align-items: stretch; gap: 9px; margin-top: 18px; }
  .btn { width: 100%; min-height: 46px; padding: 11px 15px; font-size: .94rem; }

  .section { padding-top: var(--section-pad-y); padding-bottom: var(--section-pad-y); }
  .section-heading { margin-bottom: 20px; }
  .intro-grid { gap: 18px; }
  .lead { margin: 0; }
  .fact-strip { grid-template-columns: 1fr; gap: 9px; }
  .fact-strip div {
    grid-template-columns: 36px minmax(0, 1fr);
    min-height: 0;
    padding: 12px 13px;
    column-gap: 10px;
  }
  .fact-strip div::before { width: 36px; height: 36px; font-size: 1rem; }
  .fact-strip strong { font-size: clamp(1.16rem, 5.4vw, 1.45rem); }
  .fact-strip span { font-size: .86rem; }

  .amenities-grid, .trip-grid, .reviews-grid, .gallery-grid { grid-template-columns: 1fr; gap: 10px; }
  .amenity-card, .trip-card, .reviews-section .review-card {
    min-height: 0;
    padding: 14px;
    gap: 6px;
  }
  .amenity-card .icon, .trip-card .icon { width: 34px; height: 34px; font-size: 1rem; margin-bottom: 2px; }
  .amenity-card p, .trip-card p, .review-card p { font-size: .9rem; line-height: 1.42; }

  .gallery-grid { gap: 10px; }
  .gallery-item, .gallery-item:first-child {
    grid-column: auto;
    grid-row: auto;
    height: clamp(220px, 55vw, 360px);
    min-height: 0;
    border-radius: 18px;
  }
  .gallery-item span { left: 10px; right: 10px; bottom: 10px; font-size: .84rem; padding: 5px 8px; }

  .availability-layout { gap: 14px; }
  .calendar-panel, .inquiry-form { padding: 12px; border-radius: 18px; }
  .calendar-toolbar { grid-template-columns: 38px minmax(0, 1fr) 38px; gap: 8px; margin-bottom: 12px; }
  .icon-btn { width: 38px; height: 38px; min-width: 38px; border-radius: 12px; font-size: 1.35rem; }
  .calendar-status { font-size: .78rem; }
  .legend { display: grid; grid-template-columns: 1fr; gap: 5px; margin-bottom: 12px; font-size: .78rem; }
  .legend i { width: 11px; height: 11px; }
  .month { padding: 8px; border-radius: 14px; }
  .month h3 { font-size: .95rem; margin-bottom: 8px; }
  .weekdays, .days { gap: 3px; }
  .weekdays span { font-size: .62rem; }
  .day { height: clamp(36px, 10.5vw, 44px); border-radius: 8px; font-size: .72rem; }

  .form-row { grid-template-columns: 1fr; gap: 8px; }
  .inquiry-form { gap: 8px; }
  input, textarea { min-height: 44px; padding: 9px 11px; font-size: 16px; border-radius: 13px; }
  textarea { min-height: 88px; }
  .field-error { min-height: 14px; font-size: .74rem; }
  .form-message { min-height: 18px; font-size: .88rem; }
  .form-warning, .notice { padding: 10px 12px; }

  .trip-card { display: grid; }
  .map-link { margin-top: 4px; }
  .reviews-section { padding-top: 42px; padding-bottom: 42px; }
  .stars { font-size: .78rem; margin-bottom: 5px; }
  .contact-card { padding: 16px; }
  .map { min-height: 280px; }
  .site-footer { padding: 28px 16px; gap: 16px; }
  .footer-brand { gap: 12px; }
  .footer-logo { width: 56px; height: 56px; }

  .admin-shell { padding: 22px 16px; }
  .admin-login { min-height: 74vh; }
  .admin-card, .admin-form, .admin-list-panel { padding: 16px; }
  .admin-title-lockup { gap: 10px; }
  .admin-logo-small { width: 46px; height: 46px; }
  .admin-topbar { display: grid; gap: 12px; }
  .admin-booking-item { grid-template-columns: 1fr; gap: 9px; align-items: stretch; }
  .delete-btn { width: 100%; min-height: 42px; }
}

@media (max-width: 480px) {
  :root { --section-pad-x: 14px; --section-pad-y: 38px; --radius: 16px; }
  .site-header { padding: 8px 10px; }
  .brand-logo { width: 32px; height: 32px; }
  .brand-text { max-width: 104px; font-size: .88rem; }
  .language-switch button { padding: 4px 6px; font-size: .68rem; }
  .menu-toggle { width: 36px; height: 36px; }
  .hero { min-height: 500px; padding-top: 88px; padding-bottom: 32px; }
  .hero-brand-logo { width: 64px; height: 64px; }
  h1 { font-size: clamp(1.62rem, 8.8vw, 2.25rem); }
  h2 { font-size: clamp(1.26rem, 6.5vw, 1.8rem); }
  .section-heading p:not(.eyebrow), .lead { font-size: .94rem; }
  .fact-strip div { padding: 10px 11px; }
  .fact-strip div::before { width: 32px; height: 32px; }
  .amenity-card, .trip-card, .reviews-section .review-card { padding: 12px; }
  .gallery-item, .gallery-item:first-child { height: clamp(200px, 58vw, 280px); }
  .calendar-panel, .inquiry-form { padding: 10px; }
  .calendar-toolbar { grid-template-columns: 34px minmax(0, 1fr) 34px; gap: 6px; }
  .icon-btn { width: 34px; height: 34px; min-width: 34px; font-size: 1.2rem; }
  .month { padding: 6px; }
  .weekdays, .days { gap: 2px; }
  .day { height: clamp(32px, 9.6vw, 38px); font-size: .68rem; border-radius: 7px; }
  .weekdays span { font-size: .58rem; }
  .legend { font-size: .74rem; }
  input, textarea { min-height: 42px; padding: 8px 10px; }
  textarea { min-height: 82px; }
  .map { min-height: 240px; }
  .admin-shell { padding: 18px 12px; }
}


/* Calendar sizing correction */
.day {
  height: auto;
  aspect-ratio: 1;
}
@media (max-width: 768px) {
  .day {
    height: clamp(36px, 10.5vw, 44px);
    aspect-ratio: auto;
  }
}
@media (max-width: 480px) {
  .day {
    height: clamp(32px, 9.6vw, 38px);
    aspect-ratio: auto;
  }
}


/* Final responsive refinements from viewport checks */
.hero-image { transform: none; }
.field-error:empty {
  display: none;
  min-height: 0;
}
.field-error:not(:empty) {
  display: block;
}
.inquiry-form h3 { margin-bottom: 0; }

@media (min-width: 700px) and (max-width: 768px) {
  .amenities-grid, .trip-grid, .reviews-grid, .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-item:first-child {
    grid-column: span 2;
    min-height: clamp(330px, 46vw, 430px);
  }
  .gallery-item:not(:first-child) {
    height: clamp(220px, 31vw, 280px);
  }
  .amenity-card, .trip-card, .reviews-section .review-card {
    padding: 16px;
  }
}


/* Animated mobile hamburger menu */
.menu-toggle {
  position: relative;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease, background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.menu-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: var(--sea-deep);
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition: transform .32s cubic-bezier(.22, .61, .36, 1), opacity .25s ease, background-color .25s ease;
}
.menu-toggle span:nth-child(1) { transform: translate(-50%, calc(-50% - 7px)); }
.menu-toggle span:nth-child(2) { transform: translate(-50%, -50%) scaleX(1); }
.menu-toggle span:nth-child(3) { transform: translate(-50%, calc(-50% + 7px)); }
.menu-toggle:hover {
  background: #f4faf9;
  border-color: rgba(7, 95, 120, .32);
  box-shadow: 0 8px 20px rgba(5, 56, 76, .1);
  transform: scale(1.04);
}
.menu-toggle:active { transform: scale(.97); }
.menu-toggle:focus-visible {
  outline: 3px solid rgba(208, 160, 77, .4);
  outline-offset: 3px;
}
.menu-toggle.is-open span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; transform: translate(-50%, -50%) scaleX(.2); }
.menu-toggle.is-open span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

@media (max-width: 1160px) {
  .menu-toggle { display: inline-grid; }
  .main-nav {
    display: flex;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(.98);
    transform-origin: top center;
    transition: opacity .28s ease, transform .32s cubic-bezier(.22, .61, .36, 1), visibility 0s linear .32s;
  }
  .main-nav.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
  }
}

@media (min-width: 1161px) {
  .menu-toggle { display: none !important; }
  .main-nav {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
}

@media (max-width: 480px) {
  .menu-toggle span { width: 18px; }
  .menu-toggle span:nth-child(1) { transform: translate(-50%, calc(-50% - 6px)); }
  .menu-toggle span:nth-child(3) { transform: translate(-50%, calc(-50% + 6px)); }
  .menu-toggle.is-open span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }
}

@media (prefers-reduced-motion: reduce) {
  .menu-toggle,
  .menu-toggle span,
  .main-nav {
    transition: none !important;
  }
}


/* Compact mobile image gallery */
@media (max-width: 768px) {
  .gallery-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .gallery-section .section-heading {
    margin-bottom: 16px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:first-child,
  .gallery-item:nth-child(8) {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
  }
  .gallery-item:first-child,
  .gallery-item:nth-child(1) {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 10;
    max-height: 300px;
  }
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .gallery-item::after {
    background: linear-gradient(180deg, transparent 56%, rgba(4, 49, 68, .72));
  }
  .gallery-item span {
    left: 8px;
    right: 8px;
    bottom: 8px;
    width: auto;
    padding: 6px 8px;
    border-radius: 12px;
    font-size: clamp(.72rem, 2.6vw, .88rem);
    line-height: 1.15;
    text-align: left;
    max-height: 42%;
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  .gallery-section {
    padding-top: 34px;
    padding-bottom: 34px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:first-child,
  .gallery-item:nth-child(8) {
    aspect-ratio: 1 / 1;
    border-radius: 16px;
  }
  .gallery-item:first-child,
  .gallery-item:nth-child(1) {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 10;
    max-height: 260px;
  }
  .gallery-item span {
    left: 7px;
    right: 7px;
    bottom: 7px;
    padding: 5px 7px;
    border-radius: 10px;
    font-size: clamp(.68rem, 3vw, .8rem);
  }
}


/* Compact mobile amenities cards */
@media (max-width: 768px) {
  #amenities.section {
    padding-top: 38px;
    padding-bottom: 38px;
  }
  #amenities .section-heading {
    margin-bottom: 16px;
  }
  #amenities .section-heading h2 {
    font-size: clamp(1.55rem, 7vw, 2.1rem);
    line-height: 1.12;
  }
  .amenities-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .amenity-card {
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5px;
    padding: 13px 14px;
    border-radius: 18px;
  }
  .amenity-card .icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    margin: 0 0 3px;
    font-size: 1rem;
  }
  .amenity-card h3 {
    font-size: clamp(1rem, 4vw, 1.18rem);
    line-height: 1.16;
    margin: 0;
  }
  .amenity-card p {
    font-size: clamp(.86rem, 3vw, .96rem);
    line-height: 1.36;
    margin: 0;
  }
}

@media (max-width: 480px) {
  #amenities.section {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  #amenities .section-heading {
    margin-bottom: 14px;
  }
  #amenities .section-heading h2 {
    font-size: clamp(1.38rem, 7.2vw, 1.82rem);
  }
  .amenities-grid {
    gap: 10px;
  }
  .amenity-card {
    padding: 11px 12px;
    gap: 4px;
    border-radius: 16px;
  }
  .amenity-card .icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: .92rem;
    margin-bottom: 2px;
  }
  .amenity-card h3 {
    font-size: clamp(.96rem, 4.2vw, 1.1rem);
  }
  .amenity-card p {
    font-size: clamp(.82rem, 3.3vw, .92rem);
    line-height: 1.32;
  }
}


/* Summer season availability */
.season-notice {
  margin-top: 10px;
}
.calendar-panel.season-fixed .icon-btn {
  visibility: hidden;
  pointer-events: none;
}
.day.off-season {
  background: #eef2f3;
  color: #87949a;
  cursor: not-allowed;
}
@media (max-width: 768px) {
  .season-notice { margin-top: 8px; }
}


/* Dynamic season year switcher */
.calendar-year-label {
  display: block;
  margin-top: 3px;
  color: var(--gold);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 900;
  line-height: 1.1;
}
.calendar-panel.season-year-nav .icon-btn {
  visibility: visible;
  pointer-events: auto;
}
@media (max-width: 768px) {
  .calendar-year-label { font-size: 1.12rem; }
}


/* Four-language switcher: keep CZ/EN/SR/GR compact on small screens. */
.language-switch { gap: 3px; }
.language-switch button { min-width: 32px; padding-left: 7px; padding-right: 7px; white-space: nowrap; }

@media (max-width: 768px) {
  .language-switch { gap: 2px; padding: 2px; }
  .language-switch button { min-width: 28px; padding: 5px 5px; font-size: .68rem; }
}

@media (max-width: 480px) {
  .language-switch button { min-width: 26px; padding: 4px 4px; font-size: .64rem; }
}


/* Trip cards with local destination photos. */
.trip-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}
.trip-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.trip-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(10,111,143,.16), rgba(208,160,77,.2));
  border-radius: var(--radius) var(--radius) 0 0;
}
.trip-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .35s ease;
}
.trip-card:hover .trip-image { transform: scale(1.04); }
.trip-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--sea);
  box-shadow: 0 10px 26px rgba(5, 56, 76, .18);
  font-size: 1.25rem;
  font-weight: 900;
}
.trip-media.is-missing::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 28% 24%, rgba(255,255,255,.7), transparent 34%), linear-gradient(135deg, rgba(10,111,143,.2), rgba(244,236,218,.88));
}
.trip-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: clamp(16px, 2vw, 22px);
}
.trip-card-body h3 { margin: 0; }
.trip-card-body p { flex: 1; }
.trip-card-body .map-link { align-self: flex-start; margin-top: 8px; }

@media (max-width: 1024px) {
  .trip-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .trip-grid { grid-template-columns: 1fr; gap: 14px; }
  .trip-card { display: flex; padding: 0; }
  .trip-media { aspect-ratio: 16 / 9; max-height: 220px; }
  .trip-badge { width: 36px; height: 36px; left: 12px; bottom: 12px; font-size: 1.05rem; }
  .trip-card-body { padding: 14px; gap: 7px; }
  .trip-card-body .map-link { margin-top: 4px; }
}

@media (max-width: 480px) {
  .trip-grid { gap: 12px; }
  .trip-media { aspect-ratio: 16 / 10; max-height: 190px; }
  .trip-card-body { padding: 12px; gap: 6px; }
  .trip-badge { width: 34px; height: 34px; font-size: 1rem; }
}


/* Keep trip cards in two columns on tablet widths, one column only on phones. */
@media (min-width: 641px) and (max-width: 1024px) {
  .trip-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .trip-grid { grid-template-columns: 1fr; }
}
