:root {
  --sand: #efe6d8;
  --shell: #f8f4ed;
  --ink: #13212a;
  --muted: #5d675f;
  --sea: #134f59;
  --foam: #dfe9e5;
  --line: rgba(19, 33, 42, 0.12);
  --shadow: 0 18px 45px rgba(19, 33, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Instrument Sans", sans-serif;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.2)),
    linear-gradient(135deg, #e6dccb 0%, #f6f0e6 48%, #e8dfd1 100%);
}

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

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

.page-frame {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
  padding: 20px 0 42px;
}

.topbar,
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.topbar {
  padding: 8px 0 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--sea);
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-copy strong,
.brand-copy em {
  display: block;
}

.brand-copy strong {
  font-weight: 700;
}

.brand-copy em {
  color: var(--muted);
  font-style: normal;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 0.96rem;
  font-weight: 600;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: end;
  padding-bottom: 18px;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.94;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.8rem, 8vw, 7rem);
}

h2 {
  max-width: 11ch;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h3 {
  font-size: 2rem;
}

.lede,
.section p,
.break-list p,
.cards p,
.reserve-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.lede {
  max-width: 56ch;
  font-size: 1.03rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.button-dark {
  background: var(--ink);
  color: white;
  box-shadow: 0 14px 30px rgba(19, 33, 42, 0.16);
}

.button-light {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.56);
}

.hero-meta {
  display: grid;
  gap: 6px;
  font-size: 0.95rem;
  color: var(--ink);
}

.hero-photo {
  margin: 0;
  position: relative;
  min-height: 660px;
  overflow: hidden;
  border-radius: 36px 36px 8px 8px;
  box-shadow: var(--shadow);
}

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

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 31, 36, 0.04), rgba(14, 31, 36, 0.34));
}

.hero-photo figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  max-width: 300px;
  padding: 18px 20px;
  border-left: 2px solid rgba(255, 255, 255, 0.75);
  color: white;
  line-height: 1.6;
  background: rgba(10, 25, 31, 0.28);
  backdrop-filter: blur(8px);
}

.hero-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 16px 0 8px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-band article {
  padding: 16px 18px;
}

.hero-band article:not(:last-child) {
  border-right: 1px solid var(--line);
}

.hero-band span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-band strong {
  font-size: 1.05rem;
  font-weight: 600;
}

.section {
  padding-top: 86px;
}

.editorial-layout,
.photo-spread,
.reserve-panel {
  display: grid;
  gap: 34px;
}

.editorial-layout {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.section-copy.narrow {
  max-width: 720px;
}

.break-list {
  display: grid;
  gap: 18px;
}

.break-list article {
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
}

.break-list article:last-child {
  border-bottom: 0;
}

.break-list span {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
}

.photo-spread {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
}

.spread-copy ul {
  margin: 22px 0 0;
  padding-left: 18px;
  line-height: 1.9;
  color: var(--ink);
}

.spread-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 18px;
  align-items: end;
}

.stacked-photo {
  height: 520px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.rate-card {
  padding: 24px;
  border-radius: 20px;
  background: var(--sea);
  color: white;
  box-shadow: var(--shadow);
}

.rate-card p,
.rate-card span {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.rate-card strong {
  display: block;
  margin-top: 16px;
  font-size: 2.3rem;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.9;
}

.services-grid .cards,
.journal-list {
  display: grid;
  gap: 16px;
}

.cards {
  grid-template-columns: repeat(4, 1fr);
}

.cards article {
  padding: 22px;
  border-top: 3px solid var(--ink);
  background: rgba(255, 255, 255, 0.42);
}

.journal-strip {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.journal-list {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
}

.journal-list article {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.journal-list span {
  display: block;
  margin-bottom: 10px;
  color: var(--sea);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reserve-panel {
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  align-items: start;
  padding-bottom: 56px;
}

.reserve-copy ul {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
  line-height: 1.95;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(19, 33, 42, 0.14);
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
  font: inherit;
}

.form-response {
  min-height: 24px;
  margin: 0;
  color: var(--sea);
  font-weight: 700;
}

.footer {
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
}

@media (max-width: 1024px) {
  .hero,
  .editorial-layout,
  .photo-spread,
  .reserve-panel,
  .cards,
  .journal-list,
  .spread-media {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .page-frame {
    width: min(100% - 22px, 1220px);
  }

  .topbar,
  .footer,
  .hero-band {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-band {
    display: grid;
  }

  .hero-band article:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.8rem;
  }
}
