:root {
  --navy: #06233f;
  --deep: #03182d;
  --blue: #0c6b8f;
  --cyan: #23d7df;
  --orange: #f28a16;
  --paper: #ffffff;
  --mist: #f3f7f8;
  --ink: #142033;
  --muted: #657488;
  --line: #dce6ea;
  --green: #54d44d;
  --red: #df1717;
  --yellow: #eab318;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Nunito Sans", Arial, sans-serif;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 88px;
  padding: 12px clamp(18px, 4vw, 64px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

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

.brand-mark {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: var(--navy);
  border: 3px solid var(--cyan);
  border-radius: 50%;
}

.brand strong {
  display: block;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a:hover { color: var(--orange); }

.top-action {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero {
  min-height: 670px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(3,24,45,.88), rgba(3,24,45,.45), rgba(3,24,45,.72)),
    var(--hero-image, url("https://images.unsplash.com/photo-1517512006864-7edc3b933137?auto=format&fit=crop&w=2200&q=84")) center / cover;
  color: #fff;
}

.hero-copy {
  width: min(1120px, calc(100% - 36px));
  margin: auto;
}

.eyebrow, .kicker {
  margin: 0 0 12px;
  color: var(--cyan);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(44px, 8vw, 94px);
  line-height: .95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero p:not(.eyebrow) {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.88);
  font-size: 21px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
}

.btn.primary { background: var(--orange); color: #fff; }
.btn.ghost { border: 1px solid rgba(255,255,255,.7); background: rgba(255,255,255,.08); color: #fff; }
.btn.ghost-dark { border: 1px solid var(--line); background: #fff; color: var(--navy); }
.btn:disabled { opacity: .45; cursor: not-allowed; }

section { padding: 86px 0; }
.wrap { width: min(1160px, calc(100% - 36px)); margin: auto; }

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.intro p:last-child, .boat p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.features { background: var(--mist); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-grid article {
  min-height: 210px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-grid i { color: var(--cyan); width: 42px; height: 42px; }
.feature-grid h3 {
  margin: 22px 0 8px;
  color: var(--navy);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}
.feature-grid p { margin: 0; color: var(--muted); line-height: 1.6; }

.boat {
  background: var(--deep);
  color: #fff;
}

.boat h2 { color: #fff; }
.boat-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 50px;
  align-items: center;
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.spec-list span {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(35,215,223,.28);
  border-radius: 8px;
  background: rgba(255,255,255,.04);
  color: #eafcff;
  font-weight: 800;
}

.spec-list i { color: var(--cyan); }

.booking {
  background: #05264a;
  color: #fff;
  padding: 86px 0 78px;
}

.booking-layout {
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 70px;
  align-items: start;
}

.booking-left {
  min-width: 0;
}

.booking-right {
  min-width: 0;
}

.booking-title {
  margin: 0;
  color: #fff;
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.booking-title span {
  color: var(--cyan);
}

.booking-help {
  max-width: 780px;
  margin: 18px 0 38px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.65;
}

.calendar-card {
  width: 100%;
  margin-top: 0;
  background: #fff;
  color: var(--ink);
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.calendar-head {
  min-height: 46px;
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  padding: 6px 8px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.calendar-head strong {
  color: #626262;
  font-size: 15px;
  text-transform: capitalize;
}

.icon-btn {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #8a8a8a;
  cursor: pointer;
}

.weekdays, .calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.weekdays span {
  padding: 10px 4px;
  color: #4f4f4f;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.day {
  aspect-ratio: 1;
  border: 1px solid #fff;
  background: #fff;
  color: #d7d7d7;
  cursor: pointer;
  font-weight: 900;
}

.day.blank, .day.past { cursor: default; background: #fff; color: #e5e5e5; }
.day.available { background: var(--green); color: #fff; }
.day.reserved { background: var(--red); color: #190000; }
.day.pending { background: var(--yellow); color: #3e2d00; }
.day.partial { background: linear-gradient(135deg, var(--green) 50%, var(--yellow) 50%); color: #fff; }
.day.selected { outline: 4px solid var(--cyan); outline-offset: -4px; }
.day:disabled { opacity: .4; cursor: not-allowed; }

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  margin-top: 28px;
  color: #fff;
  font-weight: 800;
  font-size: 17px;
}

.legend span { display: inline-flex; align-items: center; gap: 8px; }
.legend b { width: 42px; height: 42px; border-radius: 0; display: inline-block; }
.legend .available { background: var(--green); }
.legend .reserved { background: var(--red); }
.legend .pending { background: var(--yellow); }
.legend .partial { background: linear-gradient(135deg, var(--green) 50%, var(--yellow) 50%); }

.admin-form, .login-panel form {
  padding: 28px;
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
  box-shadow: 0 20px 56px rgba(0,0,0,.18);
}

.booking-form {
  margin-top: 54px;
  color: #fff;
}

.trip-summary {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
}

.trip-summary span {
  display: grid;
  grid-template-columns: 28px 92px 1fr;
  gap: 10px;
  align-items: center;
  color: #fff;
}

.trip-summary i { color: var(--cyan); }
.trip-summary strong { color: var(--cyan); text-transform: uppercase; font-size: 12px; }
.trip-summary em { font-style: normal; font-weight: 800; }

label {
  display: block;
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-form label {
  margin-bottom: 24px;
  color: #fff;
  font-size: 16px;
  text-transform: none;
}

input, select, textarea {
  width: 100%;
  min-height: 48px;
  margin-top: 7px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  outline: none;
}

.booking-form input,
.booking-form textarea {
  min-height: 43px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
}

.booking-form textarea {
  border-radius: 22px;
}

.booking-form .selected-date-view {
  display: none;
}

.send-button {
  min-width: 150px;
  min-height: 50px;
  padding: 0 30px;
  border: 0;
  border-radius: 5px;
  background: #fff;
  color: #777;
  box-shadow: 0 0 16px rgba(255,255,255,.45);
  cursor: pointer;
  font-size: 18px;
}

.booking-doubts {
  margin-top: 48px;
  display: grid;
  gap: 36px;
  color: var(--cyan);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-doubts a {
  display: inline-grid;
  gap: 4px;
  color: var(--cyan);
  text-transform: none;
}

.booking-doubts span {
  display: block;
  color: #fff;
}

textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(35,215,223,.14); }
.two-col { display: grid; grid-template-columns: 120px 1fr; gap: 14px; }
.form-message { min-height: 22px; margin: 14px 0 0; color: var(--cyan); font-weight: 800; }

.booking-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 26px;
  margin-top: 0;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  min-height: 0;
  overflow: hidden;
  border: 3px solid #0c7899;
  border-radius: 0;
  background: #0b365d;
}

.gallery-item button {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-item:first-child { grid-column: auto; grid-row: auto; min-height: 0; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 0;
  background: rgba(3,24,45,.78);
  color: #fff;
  font-weight: 800;
  display: none;
}

.contact {
  background: var(--deep);
  color: #fff;
}

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

.contact-grid div {
  display: grid;
  gap: 8px;
  color: #d9eef5;
}

.contact-grid i, .contact-grid strong { color: var(--orange); }
.contact-grid strong { font-family: Montserrat, Arial, sans-serif; text-transform: uppercase; }

footer {
  min-height: 72px;
  padding: 20px clamp(18px, 4vw, 64px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  background: #02111f;
  color: #bcd2dc;
}

footer a { color: var(--cyan); font-weight: 900; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #20c05c;
  color: #fff;
  box-shadow: 0 14px 34px rgba(0,0,0,.28);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0,0,0,.86);
}

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 82vh;
  object-fit: contain;
}

.lightbox p {
  margin: 14px 0 0;
  color: #fff;
  font-weight: 800;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
}

.policy-hero {
  min-height: 460px;
  display: grid;
  align-items: center;
  background: var(--deep);
  color: #fff;
}

.policy-hero h1 {
  max-width: 840px;
  margin: 0;
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1;
  text-transform: uppercase;
}

.policy-hero p:not(.kicker) {
  max-width: 780px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.86);
  font-size: 20px;
  line-height: 1.65;
}

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

.policy-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.policy-grid i { color: var(--orange); width: 38px; height: 38px; }
.policy-grid h2 { margin: 18px 0 10px; font-size: 22px; }
.policy-grid p { margin: 0; color: var(--muted); line-height: 1.65; }

.admin-body { background: var(--mist); }
.hidden { display: none !important; }
.admin-shell { min-height: 100vh; }
.login-panel {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 20px;
  background: linear-gradient(135deg, var(--deep), var(--blue));
}
.login-panel form { width: min(420px, 100%); }
.login-panel h1, .admin-top h1 {
  margin: 18px 0 8px;
  color: var(--navy);
  font-family: Montserrat, Arial, sans-serif;
}

.dashboard {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 270px 1fr;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--deep);
  color: #fff;
}

.admin-brand { margin-bottom: 24px; }
.admin-sidebar a, .text-btn {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #d9eef5;
  cursor: pointer;
  font-weight: 800;
  text-align: left;
}
.admin-sidebar a:hover, .text-btn:hover { background: rgba(255,255,255,.08); color: #fff; }

.admin-main { padding: 32px; }
.admin-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.admin-section {
  margin-bottom: 24px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.admin-section h2 {
  margin-bottom: 18px;
  font-size: 25px;
}
.two-panels {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) 1fr;
  gap: 24px;
}
.admin-form { box-shadow: none; border: 1px solid var(--line); }
.range-form { margin-top: 16px; }
.range-form h3 { margin: 0 0 14px; color: var(--navy); font-family: Montserrat, Arial, sans-serif; }
.admin-note { margin: 0 0 18px; color: var(--muted); line-height: 1.6; }
.settings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 14px;
}
.settings-grid .wide { grid-column: 1 / -1; }
.check-row { display: flex; align-items: center; gap: 10px; }
.check-row input { width: auto; min-height: auto; margin: 0; }

.table-wrap { overflow: auto; }
table { width: 100%; border-collapse: collapse; min-width: 760px; }
th, td { padding: 13px 12px; border-bottom: 1px solid var(--line); text-align: left; }
th { color: var(--navy); font-size: 12px; text-transform: uppercase; }
td { color: var(--muted); }
.pill {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}
.row-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.mini-btn {
  min-height: 34px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
}

.status-list, .admin-photos { display: grid; gap: 10px; }
.status-item, .photo-admin-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.photo-admin-item { grid-template-columns: 88px 1fr auto; }
.photo-admin-item img { width: 88px; height: 66px; object-fit: cover; border-radius: 6px; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr; justify-items: center; gap: 14px; }
  .nav-links { flex-wrap: wrap; gap: 14px 20px; }
  .split, .boat-layout, .booking-layout, .two-panels, .dashboard { grid-template-columns: 1fr; }
  .feature-grid, .contact-grid, .policy-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-layout { gap: 36px; }
  .booking-right { display: contents; }
  .booking-title { order: 1; }
  .booking-help { order: 2; }
  .booking-left { order: 3; }
  .booking-gallery { order: 4; }
  .booking-title, .booking-help { text-align: center; }
  .booking-help { margin-left: auto; margin-right: auto; }
  .booking-gallery { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .admin-sidebar { position: static; height: auto; }
  .admin-main { padding: 18px; }
}

@media (max-width: 640px) {
  body { overflow-x: hidden; }
  .site-header {
    min-height: auto;
    padding: 10px 14px 12px;
    gap: 10px;
  }

  .brand {
    width: 100%;
    min-width: 0;
    justify-content: center;
    gap: 10px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-width: 2px;
  }

  .brand strong {
    font-size: 12px;
    line-height: 1.1;
  }

  .brand small {
    font-size: 9px;
    letter-spacing: .12em;
  }

  .nav-links { display: none; }
  .top-action {
    width: 100%;
    min-height: 42px;
    justify-content: center;
    font-size: 12px;
  }

  .hero {
    min-height: min(690px, calc(100svh - 96px));
    align-items: end;
    padding: 56px 0 46px;
    background:
      linear-gradient(180deg, rgba(3,24,45,.58), rgba(3,24,45,.94)),
      var(--hero-image, url("https://images.unsplash.com/photo-1517512006864-7edc3b933137?auto=format&fit=crop&w=2200&q=84")) center / cover;
  }

  .hero-copy { width: min(100% - 28px, 420px); }
  .eyebrow, .kicker {
    font-size: 11px;
    line-height: 1.45;
    letter-spacing: .12em;
  }

  .hero h1 {
    font-size: clamp(38px, 14vw, 58px);
    line-height: .98;
  }

  .hero p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .btn {
    width: 100%;
    min-height: 46px;
  }

  section { padding: 56px 0; }
  .wrap { width: min(100% - 28px, 480px); }
  h2 { font-size: clamp(28px, 9vw, 38px); }
  .split { gap: 18px; }
  .intro p:last-child, .boat p {
    font-size: 16px;
    line-height: 1.7;
  }

  .feature-grid, .spec-list, .contact-grid, .settings-grid, .two-col, .policy-grid { grid-template-columns: 1fr; }
  .feature-grid { gap: 12px; }
  .feature-grid article {
    min-height: auto;
    padding: 20px;
  }

  .boat-layout { gap: 26px; }
  .spec-list span {
    min-height: 58px;
    padding: 14px;
  }

  .booking {
    padding: 52px 0 58px;
  }

  .booking-layout {
    gap: 28px;
  }

  .booking-title {
    font-size: clamp(31px, 10vw, 40px);
    line-height: 1.1;
  }

  .booking-help {
    margin: 14px 0 24px;
    font-size: 15px;
    line-height: 1.55;
    text-align: left;
  }

  .calendar-card {
    border: 1px solid rgba(255,255,255,.16);
  }

  .calendar-head {
    min-height: 44px;
    grid-template-columns: 38px 1fr 38px;
  }

  .calendar-head strong {
    font-size: 14px;
  }

  .icon-btn {
    width: 34px;
    height: 34px;
  }

  .weekdays span {
    padding: 8px 2px;
    font-size: 10px;
  }

  .day {
    min-height: 39px;
    font-size: 13px;
  }

  .day.selected {
    outline-width: 3px;
  }

  .legend {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
    margin-top: 16px;
    font-size: 13px;
  }

  .legend span {
    gap: 7px;
    min-width: 0;
  }

  .legend b {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
  }

  .booking-form {
    margin-top: 34px;
    padding: 0;
  }

  .trip-summary {
    padding: 14px;
  }

  .trip-summary span {
    grid-template-columns: 24px 1fr;
  }

  .trip-summary em {
    grid-column: 2;
  }

  .booking-form label {
    margin-bottom: 16px;
    font-size: 14px;
  }

  .booking-form input,
  .booking-form textarea {
    min-height: 48px;
    padding: 12px 16px;
  }

  .booking-form textarea {
    min-height: 82px;
    border-radius: 22px;
  }

  .send-button {
    width: 100%;
    min-height: 50px;
    font-size: 16px;
    font-weight: 700;
  }

  .booking-doubts {
    margin-top: 34px;
    gap: 16px;
    font-size: 16px;
  }

  .booking-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .gallery-item,
  .gallery-item:first-child {
    grid-column: auto;
    grid-row: auto;
    min-height: 142px;
    border-width: 2px;
  }

  .contact {
    padding: 38px 0;
  }

  .contact-grid {
    gap: 20px;
  }

  .contact-grid div {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .admin-form, .login-panel form { padding: 20px; }
  .admin-top, footer { align-items: flex-start; flex-direction: column; }

  footer {
    padding: 22px 14px 90px;
    font-size: 13px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .policy-hero {
    min-height: 400px;
  }
}

@media (max-width: 390px) {
  .brand strong { font-size: 11px; }
  .hero h1 { font-size: 36px; }
  .booking-title { font-size: 30px; }
  .day {
    min-height: 34px;
    font-size: 12px;
  }
  .legend {
    grid-template-columns: 1fr;
  }
  .gallery-item,
  .gallery-item:first-child {
    min-height: 128px;
  }
}
