:root {
  --ink: #18322f;
  --muted: #6b766f;
  --ivory: #fbf8ef;
  --sand: #e8d7b8;
  --warm-sand: #caa86a;
  --teal: #0f6f71;
  --deep-teal: #073f45;
  --sea-glass: #cfe8df;
  --coral: #d96955;
  --leaf: #4e7d54;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(15, 53, 51, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(251, 248, 239, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(24, 50, 47, 0.08);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 16px clamp(18px, 4vw, 56px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: var(--deep-teal);
  color: var(--ivory);
  display: inline-flex;
  font-size: 0.78rem;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(14px, 2vw, 28px);
}

.site-nav a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--deep-teal);
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 42px;
  padding: 9px;
  width: 42px;
}

.nav-toggle span {
  background: var(--ink);
  display: block;
  height: 2px;
  margin: 5px 0;
  width: 24px;
}

.hero {
  min-height: calc(100svh - 72px);
  overflow: hidden;
  position: relative;
}

.hero img {
  height: calc(100svh - 72px);
  min-height: 660px;
  object-fit: cover;
  width: 100%;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(7, 63, 69, 0.72), rgba(7, 63, 69, 0.24) 52%, rgba(7, 63, 69, 0.02));
  inset: 0;
  position: absolute;
}

.hero-content {
  color: var(--white);
  left: clamp(22px, 7vw, 96px);
  max-width: 760px;
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
}

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

.hero .eyebrow {
  color: var(--sand);
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
  line-height: 1.04;
  margin: 0;
}

h1 {
  font-size: clamp(4.5rem, 12vw, 9rem);
}

.page-hero h1 {
  font-size: clamp(2.7rem, 7vw, 5.7rem);
  max-width: 1080px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
  font-size: 1.45rem;
}

p {
  margin: 0;
}

.lede {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  margin-top: 22px;
  max-width: 680px;
}

.hero-actions,
.cta .button {
  margin-top: 32px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

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

.button.secondary {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--white);
  margin-left: 10px;
}

.button.tertiary,
.housing-card .button.secondary {
  background: var(--deep-teal);
  color: var(--white);
  margin-left: 0;
}

.summary-panel .button.secondary {
  background: var(--deep-teal);
  color: var(--white);
  margin-left: 0;
}

.button.full {
  width: 100%;
}

.band,
.highlights,
.housing-grid,
.faq-list,
.gallery-grid,
.form-layout,
.cta,
.page-hero {
  padding: clamp(64px, 8vw, 116px) clamp(20px, 5vw, 72px);
}

.section-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.8fr);
  margin: 0 auto;
  max-width: 1180px;
}

.section-grid p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.highlight,
.summary-panel,
.form-panel,
.housing-card,
.faq-list details,
.gallery-item {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(24, 50, 47, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.highlight {
  padding: 30px;
}

.highlight span {
  color: var(--warm-sand);
  display: block;
  font-weight: 800;
  margin-bottom: 20px;
}

.highlight p,
.housing-card p,
.faq-list p,
.page-hero p,
.cta p {
  color: var(--muted);
}

.ocean {
  background: var(--deep-teal);
  color: var(--white);
}

.section-heading {
  margin: 0 auto 36px;
  max-width: 900px;
  text-align: center;
}

.timeline,
.preference-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1160px;
}

.timeline div,
.preference-grid div {
  background: rgba(255, 255, 255, 0.1);
  padding: 28px;
}

.timeline p {
  color: rgba(255, 255, 255, 0.74);
  margin-top: 8px;
}

.cta {
  margin: 0 auto;
  max-width: 920px;
  text-align: center;
}

.page-hero {
  background: linear-gradient(135deg, var(--sea-glass), var(--ivory) 48%, #f3e6ce);
}

.image-hero {
  align-items: stretch;
  display: grid;
  gap: clamp(24px, 4vw, 54px);
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
}

.image-hero img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.page-hero.compact {
  padding-bottom: 76px;
}

.page-hero p {
  font-size: 1.08rem;
  margin-top: 18px;
  max-width: 760px;
}

.form-layout {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) 360px;
}

.form-panel {
  overflow: hidden;
}

.form-panel iframe {
  background: var(--white);
  display: block;
}

.summary-panel {
  padding: 28px;
  position: sticky;
  top: 96px;
}

.panel-image {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  margin: 0 0 24px;
  object-fit: cover;
  width: 100%;
}

.check-list {
  color: var(--muted);
  display: grid;
  gap: 10px;
  margin: 22px 0 26px;
  padding-left: 20px;
}

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

.housing-card {
  overflow: hidden;
}

.housing-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.housing-card div {
  padding: 26px;
}

.housing-card p {
  margin-top: 14px;
}

.card-button {
  margin-top: 22px;
}

.hotel-band {
  background: linear-gradient(135deg, rgba(207, 232, 223, 0.8), rgba(251, 248, 239, 0.92));
}

.hotel-copy {
  display: grid;
  gap: 24px;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.preference {
  background: var(--sea-glass);
}

.preference-grid div {
  background: rgba(255, 255, 255, 0.62);
}

.preference-grid strong,
.preference-grid span {
  display: block;
}

.preference-grid span {
  color: var(--muted);
  margin-top: 8px;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin: 0 auto;
  max-width: 980px;
}

.faq-list details {
  padding: 22px 26px;
}

.faq-list summary {
  cursor: pointer;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.faq-list p {
  margin-top: 12px;
}

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

.gallery-item {
  margin: 0;
  overflow: hidden;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img,
.photo-placeholder {
  aspect-ratio: 1 / 1;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.gallery-item.large img {
  aspect-ratio: 1 / 1;
}

.photo-placeholder {
  align-items: center;
  background: linear-gradient(135deg, var(--sea-glass), var(--teal));
  color: var(--white);
  display: flex;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  justify-content: center;
  min-height: 220px;
}

.photo-placeholder.coral {
  background: linear-gradient(135deg, #f2c4b6, var(--coral));
}

.photo-placeholder.green {
  background: linear-gradient(135deg, #d9e7be, var(--leaf));
}

.photo-placeholder.gold {
  background: linear-gradient(135deg, #f5dfb5, var(--warm-sand));
}

.photo-placeholder.blue {
  background: linear-gradient(135deg, #b9dde2, #2c7785);
}

figcaption {
  color: var(--muted);
  font-weight: 700;
  padding: 14px 16px 16px;
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
  display: flex;
  justify-content: space-between;
  padding: 26px clamp(20px, 5vw, 72px);
}

.site-footer a {
  color: var(--sand);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    background: var(--ivory);
    border-bottom: 1px solid rgba(24, 50, 47, 0.08);
    display: none;
    flex-direction: column;
    left: 0;
    padding: 18px 22px 22px;
    position: absolute;
    right: 0;
    top: 71px;
  }

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

  .hero img {
    height: 720px;
    min-height: 720px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(7, 63, 69, 0.38), rgba(7, 63, 69, 0.76));
  }

  .hero-content {
    bottom: 56px;
    left: 22px;
    right: 22px;
    top: auto;
    transform: none;
  }

  h1 {
    font-size: clamp(4rem, 18vw, 6.2rem);
  }

  .section-grid,
  .image-hero,
  .highlights,
  .timeline,
  .form-layout,
  .housing-grid,
  .preference-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .summary-panel {
    position: static;
  }

  .gallery-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    display: grid;
    gap: 10px;
  }

  .button.secondary {
    margin-left: 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
