:root {
  --ink: #17211f;
  --muted: #63706d;
  --line: #dce4df;
  --paper: #fbfaf6;
  --wash: #eef5f1;
  --sea: #0f6f78;
  --sea-dark: #09505a;
  --olive: #7b8f52;
  --sun: #d99f43;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(23, 33, 31, 0.14);
  --page-max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 10px max(clamp(18px, 4vw, 56px), calc((100vw - var(--page-max)) / 2));
  background: rgba(251, 250, 246, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220, 228, 223, 0.7);
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 210px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sea);
  color: var(--white);
  font-weight: 800;
}
.brand strong, .brand small { display: block; }
.brand small { color: var(--muted); margin-top: 2px; }
.nav { display: flex; align-items: center; gap: clamp(12px, 2vw, 28px); color: #34413e; }
.nav a { padding: 8px 0; border-bottom: 2px solid transparent; }
.nav a:hover { border-color: var(--sea); }
.top-actions { display: flex; align-items: center; gap: 8px; }
.ghost, .secondary, .primary, .admin-open {
  border: 1px solid var(--line);
  min-height: 42px;
  padding: 0 16px;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
}
.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sea);
  border-color: var(--sea);
  color: var(--white);
  font-weight: 750;
}
.primary:hover { background: var(--sea-dark); }
.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-color: #9bb5ae;
  color: var(--sea-dark);
  font-weight: 700;
}
.admin-open { background: var(--ink); color: var(--white); border-color: var(--ink); }
.lang-btn.active { border-color: var(--sea); color: var(--sea); font-weight: 750; }

.hero {
  position: relative;
  min-height: min(700px, calc(100vh - 68px));
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.05), rgba(12, 24, 23, 0.18) 44%, rgba(12, 24, 23, 0.46) 100%),
    linear-gradient(90deg, rgba(8, 17, 16, 0.82), rgba(8, 17, 16, 0.40) 48%, rgba(8, 17, 16, 0.16));
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.05) brightness(0.92);
}
.hero-copy {
  max-width: 820px;
  padding: clamp(44px, 6vw, 76px) max(clamp(22px, 6vw, 76px), calc((100vw - var(--page-max)) / 2)) 132px;
  color: var(--white);
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--sea);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.78rem;
  font-weight: 850;
}
.hero .eyebrow { color: #aee4de; }
h1, h2, h3 { overflow-wrap: normal; word-break: normal; }
p { overflow-wrap: anywhere; }
h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.85rem, 4.6vw, 5.05rem);
  line-height: 0.98;
  letter-spacing: 0;
}
h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3.1vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: 0;
}
h3 { margin: 0 0 12px; font-size: 1.1rem; }
.hero-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255,255,255,0.88);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.55;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.hero-actions .primary, .hero-actions .secondary { min-height: 46px; padding: 0 20px; }
.hero-actions .secondary { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.45); color: var(--white); }
.hero-stats {
  position: absolute;
  left: max(clamp(22px, 6vw, 76px), calc((100vw - var(--page-max)) / 2));
  right: max(clamp(22px, 6vw, 76px), calc((100vw - var(--page-max)) / 2));
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: rgba(251, 250, 246, 0.92);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: var(--shadow);
}
.hero-stats div { padding: 18px 22px; border-right: 1px solid var(--line); }
.hero-stats div:last-child { border-right: 0; }
.hero-stats strong { display: block; font-size: clamp(1.45rem, 3vw, 2rem); line-height: 1.05; }
.hero-stats span { color: var(--muted); font-size: 0.95rem; line-height: 1.3; display: block; margin-top: 5px; }

section { padding: clamp(46px, 6.5vw, 78px) max(clamp(22px, 6vw, 76px), calc((100vw - var(--page-max)) / 2)); }
.band { background: var(--wash); }
.section-head {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 54px);
  align-items: start;
  margin-bottom: 34px;
}
.intro-grid, .split, .contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(26px, 6vw, 82px);
  align-items: start;
}
.intro article p, .split p, .contact p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.feature {
  min-height: 118px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.feature strong { display: block; margin-bottom: 8px; }
.feature span { color: var(--muted); line-height: 1.45; }

.gallery-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.gallery-filter button.active { background: var(--sea); border-color: var(--sea); color: var(--white); }
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.gallery-item {
  position: relative;
  grid-column: span 3;
  min-height: 220px;
  border: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #d8e1de;
}
.gallery-item:nth-child(1), .gallery-item:nth-child(8) { grid-column: span 6; min-height: 452px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 220ms ease; }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-item span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  max-width: calc(100% - 20px);
  padding: 7px 10px;
  border-radius: 5px;
  background: rgba(23, 33, 31, 0.72);
  color: var(--white);
  font-size: 0.86rem;
}

.distance-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 0;
}
.distance-list div { padding: 18px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; }
.distance-list dt { color: var(--muted); }
.distance-list dd { margin: 6px 0 0; font-size: 1.8rem; font-weight: 850; }
.location-panel {
  display: grid;
  gap: 14px;
}
.map-card {
  position: relative;
  min-height: 438px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #d8e1de;
}
.map-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.94) contrast(1.02);
}
.map-link {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 13px 16px;
  background: var(--white);
  border: 1px solid rgba(220, 228, 223, 0.92);
  border-radius: 6px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(23, 33, 31, 0.16);
}
.map-details {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(23, 33, 31, 0.06);
}
.map-details strong {
  font-size: 1.08rem;
  line-height: 1.25;
}
.map-details span {
  color: var(--muted);
  line-height: 1.55;
}
.map-details dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 2px 0 0;
}
.map-details div {
  padding: 12px;
  border-radius: 6px;
  background: var(--wash);
}
.map-details dt {
  color: var(--muted);
  font-size: 0.8rem;
}
.map-details dd {
  margin: 4px 0 0;
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.25;
}

.rate-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.attraction-grid, .welcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.attraction-card, .welcome-card, .export-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}
.attraction-card {
  min-height: 100%;
  box-shadow: 0 16px 36px rgba(23, 33, 31, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.attraction-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 111, 120, 0.28);
  box-shadow: 0 22px 48px rgba(23, 33, 31, 0.13);
}
.welcome-card, .export-note { padding: 22px; }
.attraction-image {
  width: 100%;
  aspect-ratio: 16 / 9.6;
  object-fit: cover;
  display: block;
  background: #d8e1de;
  transition: transform 220ms ease, filter 220ms ease;
}
.attraction-card:hover .attraction-image {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.03);
}
.attraction-card small {
  display: inline-flex;
  width: fit-content;
  margin: 18px 18px 7px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(15, 111, 120, 0.08);
  color: var(--sea-dark);
  font-weight: 800;
  font-size: 0.72rem;
}
.attraction-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 4px;
}
.attraction-card h3,
.attraction-card p,
.attraction-actions { margin-left: 18px; margin-right: 18px; }
.attraction-card h3 {
  margin-bottom: 3px;
  font-size: 1.08rem;
}
.attraction-card p, .welcome-card p, .export-note p {
  color: var(--muted);
  line-height: 1.6;
}
.attraction-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-self: end;
  margin-top: 10px;
  margin-bottom: 18px;
}
.map-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 36px;
  margin-top: 8px;
  padding: 0 12px;
  border: 1px solid #9bb5ae;
  border-radius: 6px;
  color: var(--sea-dark);
  font-weight: 800;
  font-size: 0.92rem;
}
.wifi-card {
  width: 100%;
  max-height: 330px;
  object-fit: contain;
  border-radius: 8px;
  background: #f3f5f4;
  border: 1px solid var(--line);
  margin: 8px 0 16px;
}
.compact-list {
  display: grid;
  gap: 8px;
  margin: 0;
}
.compact-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.compact-list dt { color: var(--muted); }
.compact-list dd { margin: 0; font-weight: 850; }
.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
}
.check-list li {
  padding-left: 20px;
  position: relative;
  color: var(--muted);
  line-height: 1.45;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sea);
}
.guest-checkin { background: #f7fbfa; }
.checkin-form {
  display: grid;
  gap: 14px;
  max-width: 980px;
}
.rate-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.rate-card strong { display: block; font-size: 2.2rem; margin: 16px 0 4px; }
.rate-card small { color: var(--muted); }
.rate-card p { color: var(--muted); line-height: 1.55; }

.reviews {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: clamp(18px, 5vw, 70px);
  align-items: center;
}
.review-score strong { display: block; font-size: clamp(4rem, 10vw, 8rem); line-height: 0.9; color: var(--sea-dark); }
.review-score span { color: var(--muted); }
blockquote {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 3rem);
  line-height: 1.18;
}

.contact { background: var(--ink); color: var(--white); }
.contact .eyebrow { color: #9fded7; }
.contact p, .contact-lines { color: rgba(255,255,255,0.72); }
.contact-lines { display: grid; gap: 10px; margin-top: 26px; }
.booking-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 28px);
  background: #fff8eb;
  color: var(--ink);
  border: 1px solid rgba(217, 159, 67, 0.22);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}
.booking-form label {
  color: #4a3924;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 850;
}
label { display: grid; gap: 7px; font-weight: 750; }
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
}
.booking-form input {
  min-height: 50px;
  border-color: #dbcdb8;
  border-radius: 12px;
  background: #fffdf8;
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: 0;
}
textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.booking-form .form-note {
  margin: 2px 0;
  padding: 14px;
  border: 1px solid rgba(217, 159, 67, 0.34);
  border-radius: 12px;
  background: #fff3da;
  color: #5f4b32 !important;
  line-height: 1.5;
}
.whatsapp-submit {
  min-height: 54px;
  border-radius: 999px;
  background: #050505;
  border-color: #050505;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 900;
}
.whatsapp-submit:hover { background: #111; border-color: #111; }
.form-note { margin: 0; font-size: 0.88rem; color: var(--muted) !important; }

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 28px max(clamp(22px, 6vw, 76px), calc((100vw - var(--page-max)) / 2));
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
}
.site-footer strong { display: block; color: var(--ink); margin-bottom: 4px; }
.footer-admin {
  color: var(--muted);
  font-size: 0.9rem;
  border-bottom: 1px solid transparent;
}
.footer-admin:hover { color: var(--sea-dark); border-color: var(--sea-dark); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 70px clamp(18px, 4vw, 60px) 28px;
  background: rgba(8, 17, 16, 0.92);
  color: var(--white);
}
.lightbox img { max-width: 100%; max-height: 78vh; border-radius: 8px; box-shadow: var(--shadow); }
.lightbox-close { position: fixed; right: 22px; top: 18px; min-height: 42px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.35); background: transparent; color: var(--white); }

.admin-shell {
  position: fixed;
  inset: 0;
  z-index: 80;
  background:
    radial-gradient(circle at 16% 16%, rgba(217, 159, 67, 0.16), transparent 28%),
    rgba(11, 20, 19, 0.68);
  display: grid;
  place-items: center;
  padding: 20px;
}
.admin-login, .admin-panel {
  width: min(1180px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  background: #fff8eb;
  border: 1px solid rgba(217, 159, 67, 0.22);
  border-radius: 14px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}
.admin-login {
  width: min(420px, 100%);
  padding: 28px;
  display: grid;
  gap: 14px;
}
.admin-login h2, .admin-head h2 { margin: 0; }
.admin-login h2, .admin-head h2 {
  max-width: none;
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1.08;
}
.admin-panel {
  min-height: min(760px, calc(100vh - 40px));
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
}
.admin-head, .admin-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(220, 205, 184, 0.82);
}
.admin-footer { border-top: 1px solid rgba(220, 205, 184, 0.82); border-bottom: 0; background: rgba(255, 248, 235, 0.96); }
.admin-tabs {
  display: flex;
  gap: 8px;
  padding: 12px 22px;
  overflow-x: auto;
  border-bottom: 1px solid rgba(220, 205, 184, 0.82);
}
.admin-tabs button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(220, 205, 184, 0.92);
  border-radius: 999px;
  background: #fffdf8;
  color: #4a3924;
  font-weight: 850;
}
.admin-tabs button.active { background: #050505; border-color: #050505; color: var(--white); }
.admin-body {
  min-height: 0;
  overflow: auto;
  padding: 24px;
  background: #fbfaf6;
}
.admin-tab {
  display: none;
  gap: 16px;
  padding: 0;
}
.admin-tab.active { display: grid; }
.admin-tab[data-panel="content"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}
.admin-tab[data-panel="content"] label:nth-child(2),
.admin-tab[data-panel="content"] label:nth-child(3),
.admin-tab[data-panel="content"] label:nth-child(4) {
  grid-column: 1 / -1;
}
.admin-tab textarea {
  min-height: 118px;
}
.admin-tab .form-row {
  grid-column: 1 / -1;
  max-width: 420px;
}
#rateEditor, .admin-gallery, #bookingList { display: grid; gap: 12px; }
.rate-edit, .booking-item, .guest-item {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 12px;
  align-items: end;
  padding: 16px;
  background: #fffdf8;
  border: 1px solid rgba(220, 205, 184, 0.86);
  border-radius: 12px;
  box-shadow: 0 12px 26px rgba(23, 33, 31, 0.06);
}
.admin-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.admin-photo {
  background: #fffdf8;
  border: 1px solid rgba(220, 205, 184, 0.86);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(23, 33, 31, 0.06);
}
.admin-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.admin-photo div { display: grid; gap: 8px; padding: 10px; }
.admin-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.regulation-list {
  display: grid;
  gap: 12px;
}
.regulation-list article {
  padding: 16px;
  border: 1px solid rgba(220, 205, 184, 0.86);
  border-radius: 12px;
  background: #fffdf8;
  box-shadow: 0 12px 26px rgba(23, 33, 31, 0.06);
}
.regulation-list a { color: var(--sea-dark); font-weight: 800; }
.admin-tab label {
  color: #4a3924;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 850;
}
.admin-tab input,
.admin-tab textarea,
.admin-login input {
  min-height: 48px;
  border-color: #dbcdb8;
  border-radius: 12px;
  background: #fffdf8;
  font-weight: 650;
}
.admin-tab textarea { line-height: 1.5; }
.admin-tab .secondary,
.admin-actions .secondary,
.admin-footer .primary,
.admin-login .primary {
  min-height: 46px;
  border-radius: 999px;
  padding: 0 20px;
  background: #050505;
  border-color: #050505;
  color: #fff;
  font-weight: 900;
}
.admin-tab .ghost,
.admin-actions .ghost,
.admin-head .ghost {
  min-height: 44px;
  border-radius: 999px;
  border-color: #dbcdb8;
  background: #fffdf8;
  color: #4a3924;
  font-weight: 850;
}
.export-note {
  border-color: rgba(217, 159, 67, 0.28);
  border-radius: 14px;
  background: #fff3da;
}

@media (max-width: 980px) {
  .topbar { align-items: flex-start; flex-wrap: wrap; }
  .nav { order: 3; width: 100%; overflow-x: auto; padding-bottom: 2px; }
  .hero-stats, .section-head, .intro-grid, .split, .reviews, .contact { grid-template-columns: 1fr; }
  .hero-stats { position: static; margin: -104px 18px 28px; }
  .hero-copy { padding-bottom: 150px; }
  .gallery-item, .gallery-item:nth-child(1), .gallery-item:nth-child(8) { grid-column: span 6; min-height: 260px; }
  .rate-grid, .attraction-grid, .welcome-grid { grid-template-columns: 1fr; }
  .admin-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rate-edit { grid-template-columns: 1fr 1fr; }
  .admin-tab[data-panel="content"] { grid-template-columns: 1fr; }
  .map-details dl { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .topbar { min-height: auto; gap: 12px; }
  .brand { min-width: 180px; }
  .nav { gap: 16px; font-size: 0.95rem; }
  .top-actions { width: 100%; overflow-x: auto; padding-bottom: 2px; }
  .admin-open { margin-left: auto; }
  h1 { font-size: 3.2rem; }
  .hero-copy { padding: 78px 20px 136px; }
  .hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-stats strong { font-size: 1.35rem; }
  .hero-stats div { padding: 14px 16px; }
  .hero-stats div:nth-child(2) { border-right: 0; }
  .site-footer { align-items: flex-start; flex-direction: column; }
  section { padding-left: 20px; padding-right: 20px; }
  .feature-list, .distance-list, .form-row { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery-item, .gallery-item:nth-child(1), .gallery-item:nth-child(8) { grid-column: auto; min-height: 260px; }
  .map-card { min-height: 360px; }
  .map-link { left: 12px; right: 12px; bottom: 12px; text-align: center; }
  .admin-gallery, .rate-edit, .booking-item, .guest-item { grid-template-columns: 1fr; }
}
