:root {
  color-scheme: only light;
  --navy: #0b5f75;
  --navy-dark: #08465a;
  --sand: #dff6f2;
  --paper: #f7fcfb;
  --sun: #ffc857;
  --charcoal: #17323a;
  --muted: #5b7378;
  --line: #cfe8e5;
  --white: #ffffff;
  --teal: #00a6a6;
  --terracotta: #ff6f61;
  --shadow: 0 18px 50px rgba(11, 95, 117, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: only light;
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

@media (prefers-color-scheme: dark) {
  :root,
  html,
  body {
    color-scheme: only light;
  }

  body {
    color: var(--charcoal);
    background: var(--paper);
  }
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--navy);
  background: rgba(247, 252, 251, 0.92);
  border-bottom: 1px solid rgba(207, 232, 229, 0.9);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--navy);
  background: var(--sun);
  border-radius: 50%;
}

.brand-mark svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.7;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.76rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.4vw, 22px);
  color: #3f6470;
  font-size: 0.9rem;
  font-weight: 650;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--sun);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.icon-link {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: border-color 180ms ease, transform 180ms ease;
}

.icon-link svg {
  width: 20px;
  height: 20px;
}

.icon-link:hover,
.icon-link:focus-visible {
  border-color: var(--sun);
  transform: translateY(-1px);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 750;
  line-height: 1;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-small {
  min-height: 42px;
  padding: 11px 17px;
  font-size: 0.9rem;
}

.button-primary {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
}

.button-ghost {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(11, 95, 117, 0.24);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: var(--white);
  border-color: var(--sun);
}

.hero {
  position: relative;
  display: grid;
  min-height: 84svh;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 45, 64, 0.72) 0%, rgba(4, 45, 64, 0.46) 39%, rgba(4, 45, 64, 0.08) 72%),
    linear-gradient(0deg, rgba(4, 45, 64, 0.44) 0%, rgba(4, 45, 64, 0) 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 36px));
  margin: 0 0 clamp(42px, 9vh, 88px) clamp(18px, 6vw, 76px);
  padding-top: 118px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffe7a3;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

[id] {
  scroll-margin-top: 92px;
}

h1,
h2 {
  color: var(--navy);
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 690px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(2.7rem, 7vw, 6.7rem);
  font-weight: 820;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-note {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin: -28px auto 0;
  padding: 0 clamp(18px, 3vw, 28px);
  position: relative;
  z-index: 2;
}

.trust-item {
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 13px;
  padding: 18px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(11, 95, 117, 0.08);
  font-weight: 760;
}

.trust-item:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.trust-item:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.trust-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--teal);
  background: #e8fbf8;
  border-radius: 50%;
}

.trust-icon svg {
  width: 22px;
  height: 22px;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 126px) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.8fr);
  gap: clamp(40px, 8vw, 96px);
  align-items: start;
}

.section-heading {
  max-width: 720px;
}

.intro-copy {
  max-width: 620px;
  color: #526b70;
  font-size: 1.1rem;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.details-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: stretch;
  padding: clamp(44px, 7vw, 76px) clamp(18px, 6vw, 76px);
  background: #e7f8f5;
}

.details-panel {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 5vw, 52px);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(8, 70, 90, 0.94), rgba(0, 128, 128, 0.86)),
    url("assets/photos/calis-sunstay-hero.webp") center / cover;
  border-radius: 8px;
}

.details-panel h2 {
  max-width: 620px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.details-panel p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

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

.detail-card {
  display: flex;
  min-height: 168px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-card strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.detail-card span {
  color: #526b70;
  font-weight: 650;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--navy);
  color: var(--white);
}

.feature {
  min-height: 260px;
  padding: clamp(30px, 5vw, 58px);
  background: var(--navy);
}

.feature:nth-child(2) {
  background: #087f94;
}

.feature:nth-child(3) {
  background: #008c86;
}

.feature-kicker {
  display: inline-block;
  margin-bottom: 26px;
  color: #ffe07a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature strong {
  display: block;
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.6vw, 2.4rem);
  line-height: 1.1;
}

.feature p {
  max-width: 390px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.amenities {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(34px, 8vw, 86px);
  align-items: start;
}

.amenity-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.amenity-list div {
  min-height: 150px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
}

.amenity-list strong,
.amenity-list span {
  display: block;
}

.amenity-list strong {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.05rem;
}

.amenity-list span {
  color: #526b70;
}

.gallery-section {
  display: grid;
  gap: 34px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(190px, 22vw);
  gap: 14px;
}

.photo-card {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(11, 95, 117, 0.08);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-card figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 9px 11px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 7px;
  font-size: 0.86rem;
  font-weight: 750;
}

.photo-placeholder {
  display: grid;
  place-items: center;
  isolation: isolate;
  color: var(--white);
}

.photo-placeholder::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(135deg, rgba(5, 47, 64, 0.2), rgba(5, 47, 64, 0.5)),
    var(--teal);
}

.photo-placeholder::after {
  position: absolute;
  inset: 22px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 7px;
}

.photo-placeholder span {
  padding: 0 18px;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
  text-wrap: balance;
}

.photo-placeholder.living::before {
  background:
    linear-gradient(135deg, rgba(5, 47, 64, 0.28), rgba(5, 47, 64, 0.48)),
    #69c9bd;
}

.photo-placeholder.bedroom::before {
  background:
    linear-gradient(135deg, rgba(5, 47, 64, 0.25), rgba(5, 47, 64, 0.46)),
    #ff7a5c;
}

.photo-placeholder.kitchen::before {
  background:
    linear-gradient(135deg, rgba(5, 47, 64, 0.28), rgba(5, 47, 64, 0.5)),
    #6fb7d8;
}

.photo-placeholder.beach::before {
  background:
    linear-gradient(135deg, rgba(5, 47, 64, 0.18), rgba(5, 47, 64, 0.48)),
    #00a6a6;
}

.location {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(34px, 8vw, 86px);
  align-items: center;
  padding-top: 0;
}

.location-copy p:not(.eyebrow) {
  max-width: 650px;
  color: #526b70;
  font-size: 1.1rem;
}

.map-panel {
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-line {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 17px 19px;
  border-bottom: 1px solid var(--line);
}

.map-line:last-child {
  border-bottom: 0;
}

.map-line span {
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 800;
}

.map-line strong {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  text-align: right;
}

.policy-section {
  display: grid;
  gap: 34px;
  padding: clamp(76px, 10vw, 124px) clamp(18px, 6vw, 76px);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.policy-card {
  min-height: 250px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.policy-card h3 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.15;
}

.policy-card p {
  margin-bottom: 0;
  color: #526b70;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: clamp(34px, 8vw, 86px);
  align-items: start;
}

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

.faq-list details {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--navy);
  background: var(--sand);
  border-radius: 50%;
  content: "+";
  font-weight: 800;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: -4px 20px 20px;
  color: #526b70;
}

.guide-preview-section {
  display: grid;
  gap: 34px;
  padding: clamp(76px, 10vw, 124px) clamp(18px, 6vw, 76px);
  background: #e7f8f5;
  border-top: 1px solid var(--line);
}

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

.guide-preview-grid article {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.guide-preview-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--terracotta);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-preview-grid h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.38rem;
  line-height: 1.12;
}

.guide-preview-grid p {
  color: #526b70;
}

.guide-preview-grid a,
.guide-index-card a,
.article-sidebar a,
.source-box a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.guide-hero {
  display: grid;
  min-height: 58svh;
  align-items: end;
  padding: 140px clamp(18px, 6vw, 76px) clamp(48px, 8vw, 86px);
  color: var(--white);
  background: var(--navy);
}

.guide-hero-photo {
  background:
    linear-gradient(90deg, rgba(4, 45, 64, 0.76), rgba(4, 45, 64, 0.25)),
    url("/assets/photos/calis-sunstay-hero.webp") center / cover;
}

.guide-hero div {
  max-width: 850px;
}

.guide-hero h1 {
  max-width: 830px;
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 5.6rem);
}

.guide-hero p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.26rem);
}

.guide-index-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(64px, 9vw, 110px) clamp(18px, 6vw, 76px);
}

.guide-index-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.48fr) minmax(0, 1fr);
  gap: 22px;
  min-height: 260px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(11, 95, 117, 0.08);
}

.guide-index-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: 7px;
}

.guide-index-card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 8px 10px 0;
}

.guide-index-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}

.guide-index-card p:not(.eyebrow) {
  color: #526b70;
}

.guide-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(42px, 6vw, 68px) clamp(18px, 6vw, 76px);
  color: var(--white);
  background: var(--navy);
}

.guide-cta-band h2 {
  max-width: 720px;
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 3.4rem);
}

.guide-cta-band p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.guide-article {
  padding: 118px 0 0;
}

.breadcrumbs {
  display: flex;
  gap: 9px;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 26px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.article-header {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(44px, 7vw, 78px) 0 clamp(34px, 5vw, 58px);
}

.article-header h1 {
  max-width: 980px;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(2.35rem, 6vw, 5.2rem);
}

.article-header p:not(.eyebrow) {
  max-width: 760px;
  color: #526b70;
  font-size: 1.16rem;
}

.article-header img {
  width: 100%;
  max-height: 520px;
  margin-top: 28px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: clamp(34px, 7vw, 80px);
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding-bottom: clamp(56px, 8vw, 96px);
}

.article-body {
  display: grid;
  gap: 34px;
}

.article-body section {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.article-body h2,
.source-box h2,
.article-sidebar h2 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.15;
}

.article-body p {
  max-width: 760px;
  color: #526b70;
  font-size: 1.05rem;
}

.guide-note {
  padding: 26px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-sidebar {
  position: sticky;
  top: 108px;
  align-self: start;
  display: grid;
  gap: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-sidebar ul {
  margin: 0 0 10px;
  padding-left: 20px;
  color: #526b70;
}

.article-sidebar a {
  display: block;
}

.source-box {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto clamp(56px, 8vw, 96px);
  padding: 24px;
  background: #e7f8f5;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.source-box p {
  margin-bottom: 0;
  color: #526b70;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 0.95fr);
  gap: clamp(34px, 8vw, 82px);
  align-items: start;
  padding: clamp(76px, 10vw, 124px) clamp(18px, 6vw, 76px);
  color: var(--white);
  background:
    linear-gradient(rgba(6, 67, 87, 0.95), rgba(4, 76, 93, 0.92)),
    url("assets/photos/calis-sunstay-hero.webp") center / cover;
}

.booking-copy {
  max-width: 620px;
  position: sticky;
  top: 112px;
}

.booking-copy .eyebrow {
  color: #ffe07a;
}

.booking-copy h2 {
  color: var(--white);
}

.booking-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.contact-panel {
  margin-top: 30px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.contact-panel strong,
.contact-panel a {
  display: block;
}

.contact-panel strong {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 1.1rem;
}

.contact-panel a {
  width: fit-content;
  color: #ffe07a;
  font-weight: 780;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
  padding: clamp(20px, 4vw, 34px);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.booking-form label {
  display: grid;
  gap: 8px;
}

.booking-form span {
  font-size: 0.9rem;
  font-weight: 760;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--charcoal);
  background: var(--paper);
  border: 1px solid #cce4e1;
  border-radius: 7px;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form textarea:focus {
  background: var(--white);
  border-color: var(--sun);
  box-shadow: 0 0 0 4px rgba(255, 200, 87, 0.24);
}

.full-field,
.form-submit,
.form-note {
  grid-column: 1 / -1;
}

.form-submit {
  width: 100%;
  margin-top: 3px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 64px);
  color: #526b70;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.site-footer strong,
.site-footer span,
.site-footer small {
  display: block;
}

.site-footer strong {
  color: var(--navy);
}

.site-footer small {
  margin-top: 6px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 20px;
}

.site-footer a {
  color: var(--navy);
  font-weight: 780;
}

.mobile-actions {
  display: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .nav-links {
    display: none;
  }

  .header-actions {
    justify-content: flex-end;
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-item:first-child,
  .trust-item:last-child {
    border-radius: 0;
  }

  .trust-item:nth-child(1) {
    border-top-left-radius: 8px;
  }

  .trust-item:nth-child(2) {
    border-top-right-radius: 8px;
  }

  .trust-item:nth-child(3) {
    border-bottom-left-radius: 8px;
  }

  .trust-item:nth-child(4) {
    border-bottom-right-radius: 8px;
  }

  .intro,
  .details-section,
  .amenities,
  .location,
  .faq-section,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .details-panel {
    min-height: 300px;
  }

  .booking-copy {
    position: static;
  }

  .feature-band {
    grid-template-columns: 1fr;
  }

  .feature {
    min-height: 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(210px, 34vw);
  }

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

  .guide-preview-grid,
  .guide-index-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-index-card {
    grid-template-columns: 1fr;
  }

  .guide-index-card div {
    padding: 0;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 72px;
  }

  .site-header {
    padding: 10px 14px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand small {
    display: none;
  }

  .header-actions .button {
    display: none;
  }

  .hero {
    min-height: 74svh;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 45, 64, 0.74) 0%, rgba(4, 45, 64, 0.54) 58%, rgba(4, 45, 64, 0.16) 100%),
      linear-gradient(0deg, rgba(4, 45, 64, 0.5) 0%, rgba(4, 45, 64, 0) 42%);
  }

  .hero-content {
    width: calc(100% - 30px);
    margin: 0 15px 24px;
    padding-top: 88px;
  }

  h1 {
    max-width: 12ch;
    margin-bottom: 16px;
    font-size: clamp(2.25rem, 9.5vw, 3.35rem);
  }

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

  .hero-copy {
    margin-bottom: 18px;
    font-size: 1rem;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-actions .button {
    flex: 1 1 210px;
  }

  .hero-note {
    display: none;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
    padding: 0;
  }

  .trust-item,
  .trust-item:nth-child(n) {
    min-height: 78px;
    border-radius: 0;
    box-shadow: none;
  }

  .section {
    width: calc(100% - 30px);
    padding: 62px 0;
  }

  .details-section,
  .policy-section {
    padding: 62px 15px;
  }

  .details-grid,
  .amenity-list,
  .policy-grid,
  .guide-preview-grid,
  .guide-index-section {
    grid-template-columns: 1fr;
  }

  .detail-card,
  .amenity-list div,
  .policy-card {
    min-height: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(220px, 62vw);
  }

  .photo-card-large {
    grid-column: auto;
    grid-row: auto;
  }

  .map-line {
    display: grid;
    gap: 5px;
  }

  .map-line strong {
    text-align: left;
  }

  .booking-section {
    padding: 62px 15px;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .guide-hero {
    min-height: 62svh;
    padding: 104px 15px 44px;
  }

  .guide-index-section,
  .guide-preview-section,
  .guide-cta-band {
    padding: 62px 15px;
  }

  .guide-cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .guide-index-card {
    min-height: 0;
  }

  .guide-index-card img {
    min-height: 210px;
  }

  .guide-article {
    padding-top: 72px;
  }

  .breadcrumbs,
  .article-header,
  .article-layout,
  .source-box {
    width: calc(100% - 30px);
  }

  .article-header {
    padding-top: 42px;
  }

  .article-header img {
    max-height: 340px;
  }

  .guide-preview-grid article {
    min-height: 0;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .mobile-actions {
    position: fixed;
    z-index: 30;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 9px;
    background: rgba(247, 252, 251, 0.92);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(11, 95, 117, 0.18);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
  }

  .mobile-actions a {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    background: var(--navy);
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 800;
  }

  .mobile-actions a:first-child {
    color: var(--navy);
    background: var(--sun);
  }

  .mobile-actions svg {
    width: 18px;
    height: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
