:root {
  --ink: #13201d;
  --muted: #66716e;
  --paper: #fbf8f2;
  --cream: #f3ecdf;
  --white: #fffefa;
  --line: rgba(19, 32, 29, 0.14);
  --brand: #0d6b63;
  --brand-dark: #084b46;
  --terracotta: #b8643e;
  --gold: #c99449;
  --shadow: 0 24px 70px rgba(19, 32, 29, 0.16);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

body.locked {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  align-items: center;
  background: rgba(251, 248, 242, 0.86);
  border-bottom: 1px solid transparent;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  left: 0;
  padding: 16px clamp(18px, 4vw, 54px);
  position: fixed;
  right: 0;
  top: 0;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    padding 180ms ease;
  z-index: 50;
}

.site-header.is-scrolled {
  background: rgba(251, 248, 242, 0.96);
  border-color: var(--line);
  padding-block: 10px;
}

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

.brand-mark {
  align-items: center;
  background: var(--brand);
  border-radius: 50%;
  color: white;
  display: inline-flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1;
  white-space: nowrap;
}

.brand small {
  color: var(--muted);
  display: block;
  font-size: 12px;
  margin-top: 4px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 2.5vw, 34px);
  justify-content: center;
}

.nav-links a {
  color: rgba(19, 32, 29, 0.76);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--brand);
}

.header-cta,
.primary-button,
.ghost-button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
  white-space: nowrap;
}

.header-cta,
.primary-button {
  background: var(--brand);
  box-shadow: 0 12px 26px rgba(13, 107, 99, 0.2);
  color: white;
}

.header-cta:hover,
.primary-button:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.ghost-button {
  border: 1px solid rgba(255, 255, 255, 0.52);
  color: white;
}

.ghost-button:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.hero {
  min-height: 92vh;
  overflow: hidden;
  position: relative;
}

.hero-media,
.hero-overlay {
  inset: 0;
  position: absolute;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 23, 23, 0.86), rgba(9, 23, 23, 0.5) 48%, rgba(9, 23, 23, 0.14)),
    linear-gradient(0deg, rgba(9, 23, 23, 0.55), rgba(9, 23, 23, 0.02) 42%);
}

.hero-content {
  color: white;
  max-width: 810px;
  padding: 170px clamp(22px, 6vw, 86px) 130px;
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 9vw, 132px);
  letter-spacing: 0;
  line-height: 0.9;
  margin: 0;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
  margin: 28px 0 0;
  max-width: 680px;
}

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

.trust-row {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 52px;
  max-width: 760px;
}

.trust-row span {
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  padding-top: 16px;
}

.trust-row b {
  color: white;
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 5px;
}

.scroll-cue {
  border-bottom: 2px solid white;
  border-right: 2px solid white;
  bottom: 34px;
  height: 18px;
  left: 50%;
  opacity: 0.8;
  position: absolute;
  transform: translateX(-50%) rotate(45deg);
  width: 18px;
  z-index: 2;
}

.booking-band {
  align-items: end;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1.28fr);
  padding: clamp(34px, 5vw, 74px) clamp(20px, 5vw, 72px);
}

.booking-intro h2,
.intro-grid h2,
.section-heading h2,
.service-copy h2,
.location-copy h2,
.final-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.5vw, 64px);
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}

.booking-intro p,
.intro-grid p,
.section-heading p,
.service-copy p,
.location-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.booking-form {
  background: var(--cream);
  border: 1px solid rgba(19, 32, 29, 0.08);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  padding: 16px;
}

.booking-form label {
  color: var(--muted);
  display: grid;
  font-size: 12px;
  font-weight: 800;
  gap: 7px;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select {
  background: var(--white);
  border: 1px solid rgba(19, 32, 29, 0.12);
  border-radius: 6px;
  color: var(--ink);
  min-height: 48px;
  padding: 0 12px;
  width: 100%;
}

.form-button {
  align-self: end;
  border: 0;
  cursor: pointer;
  min-width: 160px;
}

.intro-grid {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(260px, 0.9fr) minmax(260px, 1.1fr);
  padding: clamp(58px, 8vw, 120px) clamp(20px, 6vw, 92px);
}

.intro-grid p {
  font-size: clamp(18px, 2vw, 22px);
  margin: 32px 0 0;
}

.photo-strip {
  display: grid;
  grid-template-columns: 1fr 0.9fr 1.1fr;
  min-height: 430px;
}

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

.section,
.service-section,
.location-section,
.reviews-section,
.faq-section,
.final-cta {
  padding: clamp(58px, 8vw, 118px) clamp(20px, 6vw, 92px);
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(260px, 0.9fr) minmax(260px, 0.8fr);
  margin-bottom: 40px;
}

.section-heading p {
  margin: 0;
}

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

.room-card {
  background: var(--white);
  border: 1px solid rgba(19, 32, 29, 0.1);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(19, 32, 29, 0.08);
  overflow: hidden;
}

.room-card img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.room-card div {
  padding: 22px;
}

.room-card span {
  color: var(--terracotta);
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.room-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  margin: 0;
}

.room-card p {
  color: var(--muted);
  line-height: 1.6;
  min-height: 76px;
}

.room-card a {
  border-bottom: 2px solid var(--brand);
  color: var(--brand-dark);
  font-weight: 900;
}

.service-section {
  align-items: start;
  background: var(--brand-dark);
  color: white;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
}

.service-copy p {
  color: rgba(255, 255, 255, 0.74);
}

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

.service-list div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  min-height: 126px;
  padding: 22px;
}

.service-list b {
  display: block;
  font-size: 18px;
  margin-bottom: 12px;
}

.service-list span {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
}

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

.gallery-grid {
  display: grid;
  gap: 12px;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-grid img {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.gallery-grid .wide {
  aspect-ratio: 2 / 1;
  grid-column: span 2;
}

.gallery-grid .exterior-thumb {
  object-position: center 58%;
}

.location-section {
  align-items: stretch;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(300px, 0.8fr) minmax(320px, 1.2fr);
}

.nearby-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 30px;
}

.nearby-grid span {
  background: var(--white);
  border: 1px solid rgba(19, 32, 29, 0.1);
  border-radius: 8px;
  color: var(--muted);
  min-height: 86px;
  padding: 18px;
}

.nearby-grid b {
  color: var(--brand);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 8px;
}

.map-frame {
  border: 1px solid rgba(19, 32, 29, 0.12);
  border-radius: 8px;
  min-height: 540px;
  overflow: hidden;
}

.map-frame iframe {
  border: 0;
  height: 100%;
  min-height: 540px;
  width: 100%;
}

.reviews-section {
  background: #1a2926;
  color: white;
}

.reviews-section .section-heading p {
  color: rgba(255, 255, 255, 0.74);
}

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

.review-grid figure {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  margin: 0;
  min-height: 210px;
  padding: 28px;
}

.review-grid blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.12;
  margin: 0 0 24px;
}

.review-grid figcaption {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

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

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

details {
  background: var(--paper);
  border: 1px solid rgba(19, 32, 29, 0.1);
  border-radius: 8px;
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  color: var(--muted);
  line-height: 1.6;
  margin: 16px 0 0;
}

.final-cta {
  align-items: center;
  background: var(--terracotta);
  color: white;
  display: flex;
  gap: 32px;
  justify-content: space-between;
}

.final-cta .section-kicker {
  color: rgba(255, 255, 255, 0.72);
}

.final-cta .primary-button {
  background: white;
  color: var(--ink);
  flex: 0 0 auto;
}

.floating-whatsapp {
  align-items: center;
  background: #1fae60;
  border-radius: 999px;
  bottom: 22px;
  box-shadow: var(--shadow);
  color: white;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  min-height: 52px;
  padding: 0 22px;
  position: fixed;
  right: 20px;
  z-index: 60;
}

.site-footer {
  align-items: start;
  background: var(--ink);
  color: white;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto 1.2fr;
  padding: 34px clamp(20px, 6vw, 92px);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.6;
  margin: 8px 0 0;
}

.site-footer a {
  display: block;
  font-weight: 800;
  margin-bottom: 8px;
  text-align: right;
}

.source-note {
  font-size: 12px;
}

@media (max-width: 1080px) {
  .booking-band,
  .booking-form,
  .intro-grid,
  .section-heading,
  .service-section,
  .location-section {
    grid-template-columns: 1fr;
  }

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

  .form-button {
    grid-column: span 2;
  }

  .room-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .room-card {
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) minmax(260px, 1.1fr);
  }

  .room-card img {
    height: 100%;
  }
}

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

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 820px;
  }

  .hero-content {
    padding-top: 148px;
  }

  .trust-row,
  .service-list,
  .faq-grid,
  .nearby-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .photo-strip,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid .wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .room-card {
    display: block;
  }

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

  .site-footer a {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 11px;
  }

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

  .header-cta {
    min-height: 40px;
    padding: 0 15px;
  }

  .hero {
    min-height: 760px;
  }

  .hero h1 {
    font-size: clamp(52px, 17vw, 78px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .ghost-button {
    width: 100%;
  }

  .booking-form,
  .photo-strip,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .form-button {
    grid-column: span 1;
  }

  .photo-strip {
    min-height: auto;
  }

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

  .map-frame,
  .map-frame iframe {
    min-height: 420px;
  }

  .floating-whatsapp {
    bottom: 14px;
    left: 16px;
    justify-content: center;
    right: 16px;
  }
}
