:root {
  --cream: #f6f1e8;
  --cream-2: #fbf8f1;
  --navy: #102338;
  --navy-2: #0f2c35;
  --teal: #08747d;
  --teal-dark: #075963;
  --red: #c7352b;
  --red-dark: #9f261f;
  --taupe: #dfd4c4;
  --muted: #526464;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 35, 56, 0.16);
  --radius: 8px;
  --container: 1180px;
  --gutter: clamp(1rem, 3vw, 2rem);
  --serif: Georgia, Cambria, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  color: var(--navy);
  background: var(--cream);
  font-family: var(--sans);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  background: var(--navy);
  color: var(--white);
}

.skip-link:focus {
  top: 1rem;
}

.concept-bar {
  background: var(--navy);
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.55rem var(--gutter);
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 0.8rem var(--gutter);
  background: rgba(246, 241, 232, 0.92);
  border-bottom: 1px solid rgba(16, 35, 56, 0.1);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 116px;
  height: auto;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.6rem);
  font-size: 0.9rem;
  font-weight: 750;
}

.site-nav a,
.text-link,
.room-card a {
  text-decoration-color: rgba(199, 53, 43, 0.38);
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1px;
}

.site-nav a:hover,
.text-link:hover,
.room-card a:hover {
  color: var(--red);
}

.menu-toggle {
  display: none;
  justify-self: end;
  border: 1px solid var(--taupe);
  border-radius: 999px;
  padding: 0.62rem 0.9rem;
  color: var(--navy);
  background: var(--white);
  font: inherit;
  font-weight: 800;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 1rem;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: none;
}

.header-cta:hover,
.btn-primary:hover {
  background: var(--red-dark);
}

.hero {
  position: relative;
  min-height: calc(100svh - 112px);
  display: grid;
  align-items: end;
  padding: min(9vw, 6rem) var(--gutter);
  color: var(--white);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 26, 39, 0.86), rgba(9, 26, 39, 0.5) 45%, rgba(9, 26, 39, 0.2)),
    linear-gradient(0deg, rgba(9, 26, 39, 0.68), rgba(9, 26, 39, 0.05) 42%);
}

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

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

.hero-content,
.arrival-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  width: min(680px, 100%);
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.area-section .eyebrow,
.owner-cta .eyebrow {
  color: #ffcbc1;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 8.5vw, 6.5rem);
  line-height: 0.94;
}

h2 {
  font-size: clamp(2.15rem, 5vw, 4.2rem);
  line-height: 1;
}

h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 620px;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  text-decoration: none;
  text-align: center;
}

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

.btn-secondary {
  background: var(--white);
  border-color: var(--taupe);
  color: var(--navy);
}

.btn-secondary:hover {
  border-color: var(--red);
  color: var(--red);
}

.btn-light {
  background: var(--cream);
  color: var(--navy);
}

.btn-light:hover {
  background: var(--white);
}

.arrival-panel {
  position: absolute;
  right: var(--gutter);
  bottom: var(--gutter);
  width: min(330px, calc(100% - 2 * var(--gutter)));
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(16, 35, 56, 0.64);
  backdrop-filter: blur(12px);
}

.arrival-panel p,
.arrival-panel strong,
.arrival-panel span {
  display: block;
}

.arrival-panel p {
  margin: 0 0 0.25rem;
  color: #ffcbc1;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.arrival-panel strong {
  font-size: 1.2rem;
}

.arrival-panel span {
  color: rgba(255, 255, 255, 0.82);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--taupe);
  border-top: 1px solid var(--taupe);
  border-bottom: 1px solid var(--taupe);
}

.trust-strip div {
  min-height: 126px;
  padding: clamp(1.1rem, 2.2vw, 1.8rem);
  background: var(--cream-2);
}

.trust-strip span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trust-strip strong {
  display: block;
  max-width: 18rem;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.3;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
}

.section-heading {
  max-width: var(--container);
  margin: 0 auto clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
}

.section-heading p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading.compact {
  display: block;
  max-width: 780px;
  text-align: center;
}

.room-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.room-card {
  display: grid;
  grid-template-rows: 230px 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--taupe);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

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

.room-card div {
  display: grid;
  gap: 0.85rem;
  align-content: start;
  padding: 1.15rem;
}

.room-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.room-card a,
.text-link {
  color: var(--red);
  font-weight: 850;
}

.stay-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  max-width: calc(var(--container) + 2 * var(--gutter));
  margin: 0 auto;
}

.stay-media img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stay-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-list {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}

.feature-list div,
.policy-grid div {
  padding: 1.1rem;
  border-left: 3px solid var(--red);
  background: var(--cream-2);
}

.feature-list p,
.policy-grid p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.area-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: stretch;
  background: var(--teal);
  color: var(--white);
}

.area-inner {
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  max-width: 760px;
  justify-self: end;
}

.area-inner > p {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.area-list {
  display: grid;
  gap: 0.8rem;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.area-list li {
  padding-left: 1.35rem;
  position: relative;
}

.area-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #ffcbc1;
}

.area-section > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  max-width: calc(var(--container) + 2 * var(--gutter));
  margin: 0 auto;
}

.booking-copy p:not(.eyebrow) {
  max-width: 62ch;
  color: var(--muted);
}

.booking-actions {
  margin: 0;
  padding: 1.25rem;
  border: 1px solid var(--taupe);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-line {
  flex-basis: 100%;
  color: var(--navy);
  font-weight: 750;
  text-decoration-color: rgba(8, 116, 125, 0.35);
  text-underline-offset: 0.22em;
}

.policy-section {
  background: var(--cream-2);
}

.policy-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.policy-grid div {
  border: 1px solid var(--taupe);
  border-top: 4px solid var(--red);
  border-left: 1px solid var(--taupe);
  background: var(--white);
}

.owner-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  background: var(--navy-2);
  color: var(--white);
}

.owner-cta div {
  max-width: 820px;
}

.owner-cta p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  padding: 2rem var(--gutter);
  color: var(--navy);
  background: var(--cream);
  border-top: 1px solid var(--taupe);
}

.site-footer img {
  width: 116px;
  margin-bottom: 1rem;
}

.site-footer p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem 1.2rem;
  font-weight: 800;
}

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

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: var(--gutter);
    right: var(--gutter);
    top: calc(100% + 0.5rem);
    display: none;
    justify-self: stretch;
    padding: 1rem;
    border: 1px solid var(--taupe);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
    gap: 0.75rem;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 760px;
    align-items: center;
  }

  .arrival-panel {
    left: var(--gutter);
    right: auto;
  }

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

  .section-heading,
  .stay-section,
  .area-section,
  .booking-section,
  .owner-cta,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .area-inner {
    justify-self: start;
  }

  .area-section > img {
    min-height: 360px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 86px;
  }

  .concept-bar {
    font-size: 0.74rem;
  }

  .hero {
    min-height: 720px;
    padding-top: 4rem;
    padding-bottom: 11rem;
  }

  h1 {
    max-width: 9ch;
  }

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

  .btn {
    width: 100%;
  }

  .arrival-panel {
    bottom: 1rem;
  }

  .trust-strip,
  .room-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    min-height: auto;
  }

  .room-card {
    grid-template-rows: 210px 1fr;
  }

  .stay-media {
    order: 2;
  }

  .owner-cta .btn {
    width: 100%;
  }
}

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