:root {
  --sand: #d5c0b7;
  --pearl: #f5ece6;
  --foam: #dde3e7;
  --sea: #7f97a8;
  --deep-sea: #5f7383;
  --shell: #efc8b4;
  --text: #5f5b61;
  --shadow: 0 24px 60px rgba(115, 122, 136, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-synthesis: none;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 220, 197, 0.58), transparent 24%),
    radial-gradient(circle at 72% 18%, rgba(255, 232, 214, 0.42), transparent 28%),
    linear-gradient(180deg, #f2ddcf 0%, #f6e9df 20%, #d7d0d2 52%, #b8c6d1 72%, #f0e0d8 100%);
}

.page-shell {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 250, 247, 0.18) 0 2px, transparent 3px),
    radial-gradient(circle at 82% 18%, rgba(255, 243, 234, 0.18) 0 3px, transparent 4px);
  opacity: 0.55;
}

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

.side-nav {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  padding: 28px 36px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 1;
  background: rgba(245, 236, 230, 0.72);
  backdrop-filter: blur(12px);
}

.side-nav__brand,
.side-nav__link {
  font-family: "Inter", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #625c63;
}

.side-nav__brand {
  display: inline-block;
  font-weight: 600;
  font-size: 0.9rem;
}

.side-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.side-nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.72;
  transition: opacity 140ms ease, color 140ms ease, transform 140ms ease;
}

.side-nav__link:hover,
.side-nav__link--active {
  opacity: 1;
}

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

.side-nav__link--active {
  color: var(--deep-sea);
}

.page-content {
  width: min(980px, calc(100% - 72px));
  margin: 0 auto;
  padding: 56px 0 56px;
}

.page-content--home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero-card {
  width: 100%;
  padding: 12px 36px 0 0;
  position: relative;
  overflow: hidden;
}

.hero-card--home {
  max-width: 980px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #b98875;
}

h1,
h2,
blockquote {
  font-family: "Cormorant Garamond", serif;
}

h1 {
  margin: 0;
  font-weight: 600;
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  line-height: 0.98;
  color: var(--deep-sea);
}

h1 span {
  color: var(--sea);
}

.hero-title {
  font-size: clamp(4rem, 9vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: -0.035em;
}

.hero-title span {
  display: inline-block;
  margin: 0 0.08em;
  font-style: italic;
  transform: translateY(-0.04em);
}

.page-title {
  margin: 0 0 28px;
  font-weight: 600;
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  line-height: 0.98;
  color: var(--deep-sea);
}

.lead {
  width: min(620px, 100%);
  margin: 22px 0 42px;
  font-size: 1.08rem;
  line-height: 1.75;
  text-wrap: pretty;
}

.section-label {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

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

.detail-card,
.info-card {
  padding: 0;
}

.detail-card h2,
.info-card h2 {
  margin: 0 0 8px;
  font-weight: 600;
  font-size: 1.8rem;
}

.timeline-item strong {
  font-size: 0.98rem;
  line-height: 1.35;
}

.detail-card p,
.info-card p,
.timeline-item span {
  margin: 0;
  line-height: 1.65;
}

.page-panel {
  padding: 12px 0 0;
}

.timeline-list {
  display: grid;
  gap: 0;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 12px;
}

.stay-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.stay-table th,
.stay-table td {
  padding: 16px 18px 16px 0;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(127, 151, 168, 0.18);
}

.stay-table th {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6d6268;
}

.stay-table td a {
  color: var(--deep-sea);
}

.stay-table td:first-child,
.stay-table td:first-child a {
  font-weight: 500;
}

.table-note {
  display: block;
  margin-top: 4px;
  font-size: 0.9rem;
  color: #b98875;
}

.timeline-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(127, 151, 168, 0.12);
}

.timeline-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

blockquote {
  margin: 18px 0;
  font-size: 2rem;
  line-height: 1.2;
  color: var(--deep-sea);
}

.info-grid {
  margin-top: 24px;
}

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

@media (max-width: 800px) {
  .side-nav {
    position: static;
    width: auto;
    padding: 18px 20px 10px;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    background: transparent;
    backdrop-filter: none;
  }

  .side-nav__links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .page-content,
  .hero-card {
    width: min(100%, calc(100% - 40px));
    margin: 0 auto;
  }

  .page-content {
    padding: 10px 0 40px;
  }

  .hero-card,
  .page-panel {
    padding: 24px 0 0;
  }

  .detail-grid,
  .info-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .info-card--wide {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .side-nav {
    padding: 16px 16px 8px;
  }

  .side-nav__brand {
    font-size: 0.8rem;
  }

  .side-nav__links {
    width: 100%;
    gap: 8px 14px;
  }

  .side-nav__link {
    font-size: 0.8rem;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px 0;
  }

  .page-content,
  .hero-card {
    width: min(100%, calc(100% - 24px));
  }

  .page-content {
    padding-bottom: 32px;
  }

  h1 {
    font-size: clamp(2.3rem, 11vw, 3.4rem);
  }

  .hero-title {
    font-size: clamp(2.9rem, 15vw, 4.1rem);
    line-height: 0.92;
  }

  .lead {
    margin: 18px 0 32px;
    font-size: 1rem;
    line-height: 1.7;
  }

  .eyebrow,
  .section-label,
  .stay-table th {
    font-size: 0.72rem;
  }

  .page-title,
  .detail-card h2,
  .info-card h2 {
    font-size: 1.75rem;
  }

  .detail-card h2 {
    margin-bottom: 0;
  }

  .table-wrap {
    overflow: visible;
  }

  .stay-table,
  .stay-table thead,
  .stay-table tbody,
  .stay-table tr,
  .stay-table th,
  .stay-table td {
    display: block;
  }

  .stay-table {
    min-width: 0;
  }

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

  .stay-table tr {
    padding: 16px 0;
    border-bottom: 1px solid rgba(127, 151, 168, 0.18);
  }

  .stay-table td {
    padding: 0 0 8px;
    border-bottom: 0;
  }

  .stay-table td:first-child {
    padding-bottom: 10px;
  }

  .stay-table td:not(:first-child)::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 2px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6d6268;
  }
}
