:root {
  --ink: #0b2d42;
  --ocean: #176f86;
  --ocean-dark: #0f5063;
  --coral: #d66b4a;
  --sun: #f2b84b;
  --mint: #d9ede4;
  --sand: #f7eddd;
  --paper: #fffaf3;
  --white: #ffffff;
  --muted: #617385;
  --line: rgba(11, 45, 66, 0.14);
  --shadow: 0 24px 70px rgba(11, 45, 66, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(255, 250, 243, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: clamp(2rem, 2.9vw, 2.45rem);
  font-weight: 800;
  line-height: 1;
}

.brand span {
  overflow-wrap: anywhere;
}

.brand img {
  width: 98px;
  height: 98px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.96rem;
  font-weight: 800;
}

nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  color: rgba(11, 45, 66, 0.78);
}

nav a:hover {
  color: var(--ocean-dark);
}

.nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.hero {
  min-height: calc(100vh - 95px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(52px, 8vw, 96px) clamp(18px, 5vw, 72px) clamp(38px, 6vw, 72px);
  background:
    linear-gradient(120deg, rgba(255, 250, 243, 0.92), rgba(247, 237, 221, 0.82)),
    radial-gradient(circle at 85% 18%, rgba(242, 184, 75, 0.28), transparent 28%),
    linear-gradient(135deg, var(--paper), var(--mint));
}

.hero-copy {
  max-width: 790px;
}

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

h1,
h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  line-height: 1;
  letter-spacing: 0;
}

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

h2 {
  max-width: 840px;
  font-size: clamp(2.1rem, 4vw, 4rem);
}

h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

p {
  margin: 0;
}

.hero-text {
  max-width: 720px;
  margin-top: 24px;
  color: #344c5d;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

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

.hero-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  color: #344c5d;
  font-weight: 800;
}

.hero-rating strong {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--white);
  background: var(--ocean);
  border-radius: 50%;
  font-size: 1.2rem;
}

.hero-rating span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(11, 45, 66, 0.08);
  border-radius: 8px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.primary {
  color: var(--white);
  background: var(--coral);
}

.primary:hover {
  background: #bd5638;
}

.secondary {
  color: var(--ink);
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
}

.hero-panel {
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(18px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.hero-main-photo {
  aspect-ratio: 16 / 10;
}

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

.photo-stack img {
  aspect-ratio: 4 / 3;
}

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

.stat-grid span {
  min-height: 86px;
  display: grid;
  place-items: center;
  padding: 12px;
  text-align: center;
  color: var(--ink);
  background: var(--sand);
  border: 1px solid rgba(11, 45, 66, 0.08);
  border-radius: 8px;
  font-weight: 800;
}

.stat-grid strong {
  display: block;
  color: var(--ocean-dark);
  font-size: 1.5rem;
  line-height: 1;
}

.section {
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.section-heading {
  margin-bottom: clamp(24px, 4vw, 42px);
}

.compact-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px clamp(18px, 5vw, 72px);
  background: var(--ink);
}

.quick-strip div {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 22px;
  background: var(--white);
}

.quick-strip strong {
  font-size: 1.05rem;
}

.quick-strip span {
  color: var(--muted);
  font-size: 0.94rem;
}

.gallery-section {
  background: var(--white);
}

.photo-gallery {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-auto-rows: minmax(210px, 18vw);
  gap: 12px;
}

.photo-gallery figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--sand);
  border-radius: 8px;
}

.photo-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.photo-gallery figure:hover img {
  transform: scale(1.025);
}

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

.photo-gallery figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  color: var(--white);
  background: rgba(8, 32, 51, 0.78);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 900;
}

.facts-band {
  background: var(--paper);
}

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

.facts-grid article {
  min-height: 150px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.facts-grid strong {
  color: var(--ocean-dark);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.facts-grid span {
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.08;
}

.facts-grid .stacked-detail {
  display: grid;
  gap: 8px;
}

.facts-grid .stacked-detail span {
  display: block;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--ink);
}

.intro-item {
  min-height: 190px;
  padding: 30px;
  background: var(--white);
}

.intro-item span {
  display: block;
  margin-bottom: 22px;
  color: var(--coral);
  font-weight: 900;
}

.intro-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.intro-item p,
.copy-block p,
.map-card p,
.trip-grid p,
.rules-grid p,
.proof-grid p,
.booking-card p,
footer p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: stretch;
}

.copy-block {
  display: grid;
  align-content: center;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 34px;
  padding-left: 44px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ocean);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 9px;
  width: 7px;
  height: 12px;
  border: solid var(--white);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.image-feature {
  display: grid;
  gap: 16px;
  align-content: center;
  padding: clamp(18px, 3vw, 30px);
  background: linear-gradient(135deg, var(--mint), var(--sand));
  border-radius: 8px;
}

.image-feature img {
  width: min(520px, 100%);
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(11, 45, 66, 0.12);
}

.image-feature p {
  max-width: 520px;
  margin: 0 auto;
  color: #3e596b;
  font-size: 0.95rem;
  text-align: center;
}

.sleep-band {
  background: var(--white);
}

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

.sleep-grid article {
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.sleep-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
}

.sleep-grid span {
  width: fit-content;
  padding: 6px 10px;
  color: var(--ocean-dark);
  background: var(--mint);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sleep-grid h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.05;
}

.sleep-grid p {
  color: var(--muted);
}

.trip-band {
  background: var(--white);
}

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

.trip-grid article,
.rules-grid article {
  min-height: 190px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trip-grid h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.05;
}

.rules-section {
  background: var(--paper);
}

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

.rules-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ocean-dark);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.color-band {
  color: var(--white);
  background: var(--ocean-dark);
}

.color-band h2,
.color-band .eyebrow {
  color: var(--white);
}

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

.amenity-grid article,
.proof-grid article {
  min-height: 214px;
  padding: 26px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(11, 45, 66, 0.09);
}

.amenity-grid article {
  color: var(--ink);
}

.amenity-grid span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--ocean);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
}

.amenity-grid p {
  color: var(--muted);
}

.location-split {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
}

.map-card {
  min-height: 340px;
  display: grid;
  align-content: end;
  padding: 30px;
  color: var(--white);
  background:
    linear-gradient(0deg, rgba(11, 45, 66, 0.78), rgba(11, 45, 66, 0.18)),
    linear-gradient(135deg, var(--sun), var(--ocean));
  border-radius: 8px;
}

.map-card strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  line-height: 0.95;
}

.map-card p {
  max-width: 440px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.84);
}

.map-card a {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  font-weight: 900;
}

.map-card a:hover {
  background: var(--sand);
}

.map-embed {
  height: clamp(300px, 44vw, 520px);
  margin-top: clamp(28px, 4vw, 46px);
  overflow: hidden;
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.location-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(28px, 4vw, 46px);
}

.location-photos figure {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--sand);
}

.location-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-photos figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  color: var(--white);
  background: rgba(8, 32, 51, 0.78);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 900;
}

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

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

.faq-grid details {
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-grid summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.faq-grid p {
  margin-top: 12px;
  color: var(--muted);
}

.contact-section {
  background: var(--paper);
}

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

.contact-grid article {
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-grid span {
  color: var(--ocean-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-grid a {
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.45rem, 2.6vw, 2.45rem);
  font-weight: 800;
  line-height: 1;
  overflow-wrap: anywhere;
}

.contact-grid p {
  color: var(--muted);
}

.proof-band {
  background: var(--mint);
}

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

.trust-grid article {
  min-height: 270px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 28px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(11, 45, 66, 0.09);
}

.trust-grid span {
  width: fit-content;
  padding: 6px 10px;
  color: var(--white);
  background: var(--ocean);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-grid h3 {
  margin: 2px 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
  line-height: 1;
}

.trust-grid p {
  color: var(--muted);
}

.trust-grid a {
  width: fit-content;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  padding: 0 14px;
  color: var(--ocean-dark);
  background: var(--mint);
  border-radius: 8px;
  font-weight: 900;
}

.proof-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
}

.proof-grid p {
  font-size: 1.05rem;
}

.booking {
  background:
    linear-gradient(120deg, rgba(11, 45, 66, 0.92), rgba(15, 80, 99, 0.9)),
    var(--ink);
}

.booking-card {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 54px);
  padding: clamp(24px, 5vw, 48px);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.booking-card > div {
  display: grid;
  align-content: start;
  gap: 16px;
}

.igms-widget-panel {
  min-height: 420px;
  padding: clamp(18px, 3vw, 28px);
  background: #fbfdfe;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.igms-direct-booking-widget {
  min-height: 360px;
}

.policy-note {
  padding: 14px 16px;
  color: var(--ink);
  background: var(--sand);
  border-left: 4px solid var(--coral);
  border-radius: 8px;
  font-weight: 800;
}

.quote-box {
  display: grid;
  gap: 3px;
  padding: 18px;
  background: var(--ink);
  border-radius: 8px;
}

.quote-box strong,
.quote-box span,
.quote-box small {
  color: var(--white);
}

.quote-box span {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  line-height: 1.05;
}

.quote-box small {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.rules-list {
  display: grid;
  gap: 10px;
}

.contact-options {
  padding: 16px;
  background: var(--mint);
  border-radius: 8px;
}

.contact-options p {
  color: var(--ink);
}

.contact-options a {
  color: var(--ocean-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.trust-grid a:hover {
  color: var(--ink);
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfdfe;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(23, 111, 134, 0.22);
  border-color: var(--ocean);
}

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

footer {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 42px clamp(18px, 5vw, 72px);
  color: var(--white);
  text-align: center;
  background: #082033;
}

footer img {
  width: 92px;
  padding: 6px;
  background: var(--white);
  border-radius: 8px;
}

footer a {
  color: var(--white);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-links {
  max-width: 720px;
  font-size: 0.92rem;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 72px);
  background:
    linear-gradient(120deg, rgba(255, 250, 243, 0.92), rgba(217, 237, 228, 0.86)),
    var(--paper);
}

.thanks-panel {
  max-width: 720px;
  display: grid;
  justify-items: start;
  gap: 18px;
  padding: clamp(28px, 5vw, 54px);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.thanks-panel img {
  width: 96px;
  padding: 6px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.thanks-panel p:not(.eyebrow) {
  color: var(--muted);
}

@media (max-width: 940px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .hero,
  .split,
  .location-split,
  .booking-card {
    grid-template-columns: 1fr;
  }

  .intro-band,
  .amenity-grid,
  .proof-grid,
  .trust-grid,
  .quick-strip,
  .sleep-grid,
  .photo-gallery,
  .facts-grid,
  .location-photos,
  .trip-grid,
  .rules-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .photo-gallery {
    grid-auto-rows: minmax(220px, 52vw);
  }

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

  .hero {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 10px 16px 12px;
  }

  .brand {
    width: 100%;
    gap: 14px;
  }

  .brand img {
    flex: 0 0 auto;
    width: 88px;
    height: 88px;
  }

  .brand span {
    font-size: clamp(1.75rem, 7vw, 2.1rem);
  }

  nav {
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 0 8px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  nav::-webkit-scrollbar {
    display: none;
  }

  nav a {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 10px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(11, 45, 66, 0.08);
    border-radius: 8px;
    scroll-snap-align: start;
  }

  nav .nav-cta {
    padding: 0 14px;
    color: var(--white);
    background: var(--ink);
    border-color: var(--ink);
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 42px;
  }

  h1 {
    font-size: clamp(2.7rem, 12vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-text {
    font-size: 1.04rem;
  }

  .hero-panel,
  .booking-card,
  .igms-widget-panel {
    padding: 18px;
  }

  .quick-strip div,
  .intro-item,
  .facts-grid article,
  .sleep-grid article,
  .trip-grid article,
  .rules-grid article,
  .amenity-grid article,
  .proof-grid article,
  .trust-grid article,
  .contact-grid article,
  .faq-grid details {
    padding: 20px;
  }

  .map-card {
    min-height: 260px;
    padding: 22px;
  }

  .map-card strong {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .location-photos figure {
    min-height: 220px;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 82px;
    height: 82px;
  }

  .brand span {
    font-size: 1.75rem;
  }

  nav a {
    font-size: 0.86rem;
  }

  .nav-cta {
    min-height: 36px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.55rem);
  }

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

  .hero-rating span {
    width: 100%;
  }

  .photo-stack {
    grid-template-columns: 1fr;
  }

  .photo-gallery {
    grid-auto-rows: minmax(210px, 64vw);
  }

  .quote-box span {
    font-size: 1.4rem;
  }

  .contact-grid a {
    font-size: 1.35rem;
  }

  .igms-widget-panel {
    min-height: 390px;
    padding: 14px;
  }

  .igms-direct-booking-widget {
    min-height: 340px;
  }

  .stat-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .intro-item,
  .amenity-grid article,
  .proof-grid article {
    min-height: auto;
  }
}
