:root {
  --sand: #f7f2e7;
  --shell: #fffaf0;
  --ink: #26302c;
  --muted: #617069;
  --teal: #007f7b;
  --reef: #0fa9a3;
  --coral: #d85d4f;
  --leaf: #517b4f;
  --sun: #f1b94f;
  --line: rgba(38, 48, 44, 0.16);
  --shadow: 0 18px 45px rgba(38, 48, 44, 0.18);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 32px;
  color: var(--shell);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 250, 240, 0.94);
  box-shadow: 0 10px 28px rgba(38, 48, 44, 0.12);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.14);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 1.05rem;
}

.brand small {
  margin-top: 3px;
  color: currentColor;
  font-size: 0.78rem;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 14px;
  color: currentColor;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 250, 240, 0.18);
  outline: none;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible,
.site-header.is-open .site-nav a:hover,
.site-header.is-open .site-nav a:focus-visible {
  background: rgba(15, 169, 163, 0.12);
}

.site-nav .nav-cta {
  margin-left: 8px;
  color: var(--shell);
  background: var(--coral);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: #bd483e;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: currentColor;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #30534c;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(25, 45, 39, 0.72), rgba(25, 45, 39, 0.18) 58%, rgba(25, 45, 39, 0.35)),
    linear-gradient(0deg, rgba(25, 45, 39, 0.32), rgba(25, 45, 39, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 150px 32px 72px;
  color: var(--shell);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #ffd27b;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.75rem;
  line-height: 0.98;
  font-weight: 700;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.65rem;
  line-height: 1.05;
  font-weight: 700;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 250, 240, 0.9);
  font-size: 1.18rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 20px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

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

.button.primary {
  color: var(--shell);
  background: var(--teal);
  border-color: var(--teal);
}

.hero .button.primary {
  background: var(--coral);
  border-color: var(--coral);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #006d69;
}

.hero .button.primary:hover,
.hero .button.primary:focus-visible {
  background: #bd483e;
}

.button.secondary,
.button.ghost {
  color: var(--ink);
  background: var(--shell);
  border-color: rgba(255, 250, 240, 0.72);
}

.button.ghost {
  background: transparent;
  border-color: var(--line);
}

.quick-info {
  width: min(calc(100% - 36px), var(--max));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: -36px auto 0;
  position: relative;
  z-index: 4;
  overflow: hidden;
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.quick-info div {
  min-height: 112px;
  padding: 24px;
  background: var(--shell);
}

.quick-info span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-info strong {
  display: block;
  color: var(--ink);
  font-size: 1.08rem;
}

.section {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 96px 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1fr);
  gap: 60px;
  align-items: start;
}

.section-copy h2,
.section-heading h2,
.amenity-heading h2,
.split-copy h2 {
  color: var(--ink);
}

.intro-text {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 1.04rem;
}

.intro-text p,
.section-heading p,
.image-band-copy p,
.split-copy p {
  color: var(--muted);
}

.image-band {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
  background: var(--shell);
}

.image-band img {
  width: 100%;
  height: 580px;
  object-fit: cover;
}

.image-band-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 34px;
}

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

.room-card {
  min-height: 365px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--shell);
}

.room-card.accent {
  border-color: rgba(0, 127, 123, 0.22);
  background: #edf9f6;
}

.room-card.warm {
  border-color: rgba(216, 93, 79, 0.22);
  background: #fff2e8;
}

.room-tag {
  width: max-content;
  margin-bottom: 28px;
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--teal);
  background: rgba(15, 169, 163, 0.12);
  font-size: 0.78rem;
  font-weight: 900;
}

.room-card p,
.room-card li {
  color: var(--muted);
}

.room-card ul {
  display: grid;
  gap: 6px;
  margin: auto 0 24px;
  padding-left: 18px;
}

.room-card a {
  width: max-content;
  color: var(--teal);
  font-weight: 900;
}

.amenities {
  padding: 84px max(20px, calc((100% - var(--max)) / 2));
  background: #214c43;
  color: var(--shell);
}

.amenities .eyebrow {
  color: var(--sun);
}

.amenity-heading {
  max-width: 620px;
  margin-bottom: 34px;
}

.amenity-heading h2 {
  color: var(--shell);
}

.amenity-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.22);
}

.amenity-list article {
  min-height: 230px;
  padding: 28px;
  background: rgba(255, 250, 240, 0.08);
}

.amenity-list span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 34px;
  place-items: center;
  border: 1px solid rgba(255, 250, 240, 0.44);
  border-radius: 8px;
  color: var(--sun);
  font-weight: 900;
}

.amenity-list h3 {
  color: var(--shell);
}

.amenity-list p {
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.78);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.split-media img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.split-copy {
  max-width: 570px;
  padding: 64px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.pill-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--leaf);
  background: var(--shell);
  font-weight: 800;
}

.booking-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: start;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: var(--shell);
  box-shadow: 0 16px 34px rgba(38, 48, 44, 0.08);
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fffdf7;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(15, 169, 163, 0.18);
}

.booking-form .wide {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--leaf);
  font-weight: 800;
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 58px max(20px, calc((100% - var(--max)) / 2));
  color: var(--shell);
  background: var(--teal);
}

.contact-strip .eyebrow {
  color: var(--sun);
}

.contact-strip h2 {
  margin-bottom: 6px;
  color: var(--shell);
}

.contact-strip p {
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.82);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 32px;
  color: var(--muted);
  background: var(--shell);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    padding: 14px 20px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 72px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px;
    color: var(--ink);
    background: var(--shell);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 48px;
    justify-content: center;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-content {
    padding: 132px 22px 58px;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .quick-info,
  .room-grid,
  .amenity-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro,
  .image-band,
  .split-section,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .image-band img,
  .split-media img {
    height: 420px;
  }

  .image-band-copy,
  .split-copy {
    padding: 40px 24px;
  }
}

@media (max-width: 640px) {
  .brand strong {
    font-size: 0.98rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

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

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .quick-info,
  .room-grid,
  .amenity-list,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .quick-info {
    width: min(calc(100% - 24px), var(--max));
    margin-top: -22px;
  }

  .quick-info div {
    min-height: 96px;
    padding: 20px;
  }

  .section {
    width: min(100% - 28px, var(--max));
    padding: 68px 0;
  }

  .room-card {
    min-height: 315px;
  }

  .amenities {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .amenity-list article {
    min-height: 190px;
  }

  .image-band img,
  .split-media img {
    height: 340px;
  }

  .booking-form {
    padding: 18px;
  }

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