:root {
  --ink: #17211d;
  --muted: #6f6a62;
  --line: #ded7ca;
  --paper: #f3efe6;
  --white: #ffffff;
  --charcoal: #11100d;
  --airbnb: #ff385c;
  --airbnb-dark: #de1f48;
  --booking: #003b95;
  --booking-dark: #002b6f;
  --coral: #9a6f48;
  --blue: #5f7f80;
  --shadow: 0 24px 70px rgba(23, 35, 31, 0.12);
  --display: "Bodoni 72", Didot, "Baskerville", "Cormorant Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

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

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

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 84px;
  padding: 18px clamp(24px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(8, 21, 27, 0.42), rgba(8, 21, 27, 0));
}

.brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

nav {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

nav a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

nav a:hover {
  border-color: currentColor;
}

.hero {
  position: relative;
  min-height: min(100vh, 900px);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(5, 16, 22, 0.36), rgba(5, 16, 22, 0.02) 36%, rgba(5, 16, 22, 0.12) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.02) 46%, rgba(0, 0, 0, 0.06));
}

.hero img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center 74%;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(540px, calc(100% - 48px));
  padding-top: 12vh;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: currentColor;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 660px;
  margin-bottom: 18px;
  font-size: clamp(46px, 8vw, 86px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(34px, 3.3vw, 54px);
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.42);
}

.hero-cta {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.hero-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 2px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.hero-cta a:hover {
  color: var(--ink);
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.92);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.airbnb-button {
  color: var(--ink);
  border-color: rgba(23, 35, 31, 0.32);
  background: rgba(255, 255, 255, 0.04);
}

.button.airbnb-button:hover {
  color: var(--white);
  border-color: var(--airbnb);
  background: var(--airbnb);
}

.button.booking-button {
  color: var(--ink);
  border-color: rgba(23, 35, 31, 0.32);
  background: rgba(255, 255, 255, 0.04);
}

.button.booking-button:hover {
  color: var(--white);
  border-color: var(--booking);
  background: var(--booking);
}

.button.contact-button {
  color: var(--ink);
  border-color: rgba(23, 35, 31, 0.42);
  background: transparent;
}

.button.contact-button:hover {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(1040px, calc(100% - 36px));
  margin: -46px auto 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(222, 215, 202, 0.75);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.quick-facts div {
  min-height: 104px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
}

.quick-facts strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.quick-facts span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0 0;
}

.intro,
.reservation,
.boat-booking {
  display: grid;
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.intro {
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
}

.reservation {
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  padding-bottom: 96px;
}

.boat-booking {
  grid-template-columns: minmax(280px, 0.95fr) minmax(260px, 0.8fr) minmax(300px, 0.95fr);
  width: 100%;
  padding: 88px clamp(24px, 8vw, 112px);
  color: var(--ink);
  background: #fbf8f0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro .eyebrow,
.reservation .eyebrow,
.boat-booking .eyebrow {
  color: var(--coral);
}

h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.intro > p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.75;
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 18px;
}

.gallery img {
  height: 300px;
  border-radius: 4px;
  object-fit: cover;
}

.gallery-feature {
  position: relative;
  isolation: isolate;
  grid-column: span 2;
  margin: 0;
}

.gallery-feature img {
  width: 100%;
}

.gallery-feature::after,
.room-card::after {
  position: absolute;
  z-index: 1;
  inset: 46% 0 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.48));
  pointer-events: none;
}

.gallery-feature figcaption {
  position: absolute;
  z-index: 2;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

.gallery .wide {
  grid-row: span 2;
  height: 618px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1.2fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: end;
  margin-bottom: 30px;
}

.section-heading > *,
.room-grid,
.room-card {
  min-width: 0;
}

.section-heading .eyebrow {
  color: var(--coral);
}

.rooms h2 {
  max-width: 700px;
}

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

.room-card {
  position: relative;
  isolation: isolate;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: var(--white);
}

.room-card.large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 534px;
}

.room-card.wide {
  grid-column: span 2;
}

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

.room-card figcaption {
  position: absolute;
  z-index: 2;
  left: 16px;
  bottom: 16px;
  max-width: calc(100% - 32px);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.62);
}

.amenity-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.amenity-list article {
  min-height: 230px;
  padding: 30px 26px;
}

.amenity-list article + article {
  border-left: 1px solid var(--line);
}

.amenity-list span {
  display: block;
  margin-bottom: 38px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.15;
  text-transform: uppercase;
}

.amenity-list p,
.booking-card span,
.guest-reviews p,
.reservation-intro > p,
.trust-row span,
.boat-booking-copy p {
  color: var(--muted);
  line-height: 1.6;
}

.boat-booking h2 {
  max-width: 600px;
}

.boat-booking-copy p {
  max-width: 460px;
  margin: 22px 0 0;
  font-size: 19px;
}

.boat-booking-media {
  height: 330px;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(23, 35, 31, 0.12);
}

.boat-booking-media img {
  height: 100%;
  object-fit: cover;
}

.boat-booking-panel {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 330px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.42);
  font-style: normal;
}

.boat-booking-panel strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
}

.boat-booking-panel span {
  display: block;
  color: var(--muted);
}

.boat-booking-panel > a {
  color: var(--ink);
  font-weight: 800;
}

.boat-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin: 22px 0 6px;
}

.boat-contact-actions > a:not(.button) {
  color: var(--ink);
  font-weight: 800;
  border-bottom: 1px solid rgba(23, 35, 31, 0.42);
}

.booking-cards {
  display: grid;
  gap: 0;
}

.reservation-panel {
  grid-column: 2;
  display: grid;
  gap: 28px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.24);
}

.reservation-intro h2 {
  margin-bottom: 24px;
  max-width: 520px;
  font-size: clamp(34px, 4vw, 52px);
}

.reservation-intro > p {
  max-width: 420px;
  font-size: 18px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.trust-row div {
  padding: 0 20px 24px;
}

.trust-row div:first-child {
  padding-left: 0;
}

.trust-row div:last-child {
  padding-right: 0;
}

.trust-row div + div {
  border-left: 1px solid var(--line);
}

.trust-row strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.trust-row span {
  display: block;
  font-size: 13px;
}

.guest-reviews {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.guest-reviews article {
  min-width: 0;
}

.guest-reviews strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
}

.guest-reviews p {
  margin: 0;
  font-size: 14px;
}

.booking-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 28px;
  align-items: center;
  min-height: 142px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  background: transparent;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.booking-card:first-child {
  border-top: 0;
  padding-top: 0;
}

.booking-card:last-child {
  padding-bottom: 0;
}

.booking-card:hover {
  transform: translateX(2px);
}

.booking-card p {
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-card span {
  display: block;
  max-width: 260px;
  margin-bottom: 0;
}

.booking-card .button {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 168px;
  min-height: 52px;
  border-radius: 3px;
}

.airbnb p {
  color: var(--airbnb);
}

.booking-com p {
  color: var(--booking);
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 36px;
  padding: 56px clamp(24px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--charcoal);
}

footer p,
footer address {
  margin: 0;
}

footer a {
  font-weight: 800;
}

footer address {
  display: grid;
  gap: 6px;
  max-width: 360px;
  font-style: normal;
  line-height: 1.45;
  text-align: right;
}

footer address strong {
  color: var(--white);
  font-size: 18px;
}

footer address span {
  display: block;
}

@media (max-width: 1040px) {
  .boat-booking {
    grid-template-columns: 1fr;
  }

  .boat-booking-copy p,
  .boat-booking h2 {
    max-width: 680px;
  }
}

@media (max-width: 760px) {
  .site-header {
    display: block;
    min-height: 112px;
    padding: 18px 24px;
  }

  .brand {
    position: static;
    transform: none;
    display: block;
    font-size: 29px;
  }

  nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    margin-top: 10px;
    margin-left: 0;
  }

  .hero {
    min-height: min(78vh, 720px);
  }

  .hero img {
    object-position: center 61%;
  }

  .hero-copy {
    width: min(100% - 56px, 320px);
    padding-top: min(24vh, 190px);
  }

  h1 {
    max-width: 560px;
    font-size: clamp(34px, 10vw, 46px);
  }

  .hero-copy > p:not(.eyebrow) {
    max-width: 260px;
    margin-inline: auto;
    font-size: clamp(23px, 6.7vw, 28px);
    line-height: 0.96;
  }

  .hero-cta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 310px);
    margin: 20px auto 0;
    gap: 8px;
  }

  .hero-cta a {
    min-width: 0;
    min-height: 46px;
    padding: 0 8px;
    font-size: 11px;
  }

  .quick-facts {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0;
    width: 100%;
    border-radius: 0;
  }

  .quick-facts div {
    display: grid;
    place-content: center;
    text-align: center;
  }

  .intro,
  .reservation,
  .boat-booking,
  .gallery,
  .section-heading,
  .amenity-list {
    grid-template-columns: 1fr;
  }

  .amenity-list article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .boat-booking {
    padding: 54px 24px;
  }

  .boat-booking-media,
  .boat-booking-panel {
    height: auto;
    min-height: 0;
  }

  .boat-booking-media {
    aspect-ratio: 1.18;
  }

  .boat-booking-panel {
    padding: 26px;
  }

  h2 {
    font-size: clamp(24px, 6.3vw, 28px);
    line-height: 1.05;
  }

  .intro > p,
  .boat-booking-copy p {
    font-size: 18px;
  }

  .booking-cards,
  .guest-reviews,
  .trust-row,
  .reservation-panel {
    grid-column: auto;
  }

  .reservation-panel {
    padding: 24px;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .guest-reviews {
    grid-template-columns: 1fr;
  }

  .trust-row div,
  .trust-row div:first-child,
  .trust-row div:last-child {
    padding: 18px 0;
  }

  .trust-row div:first-child {
    padding-top: 0;
  }

  .trust-row div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .booking-card {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
    padding: 24px 0;
  }

  .booking-card:hover {
    transform: none;
  }

  .booking-card span {
    max-width: none;
  }

  .booking-card .button {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
  }

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

  .section {
    padding-top: 54px;
  }

  .reservation {
    padding-bottom: 54px;
  }

  .gallery img,
  .gallery .wide,
  .gallery-feature img,
  .gallery-feature,
  .room-card,
  .room-card.large,
  .room-card.wide {
    grid-column: auto;
    grid-row: auto;
    height: auto;
    aspect-ratio: 1.18;
    min-height: 0;
  }

  .amenity-list article {
    min-height: 0;
  }

  footer {
    flex-direction: column;
  }

  footer address {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .section {
    width: min(354px, calc(100% - 36px));
  }
}

@media (max-width: 460px) {
  .site-header {
    position: absolute;
  }

  h1 {
    font-size: 42px;
  }

  .quick-facts div {
    padding: 18px;
  }
}
