:root {
  --bg: #fff9f2;
  --bg-soft: #f7e5d7;
  --panel: rgba(255, 250, 246, 0.84);
  --panel-strong: #fffdf9;
  --line: rgba(126, 88, 66, 0.16);
  --text: #37231d;
  --muted: #74584f;
  --accent: #c56f4a;
  --accent-deep: #8f4729;
  --champagne: #f1d4ae;
  --shadow: 0 24px 80px rgba(105, 60, 33, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.92), transparent 28%),
    radial-gradient(circle at top right, rgba(241, 212, 174, 0.42), transparent 24%),
    linear-gradient(145deg, #fff8f1, #f4e0d5 52%, #eed8c8);
}

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

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

h1,
h2,
h3,
.brand {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}

p,
ul {
  margin: 0;
}

.page-shell {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 24px 0 40px;
}

.hero {
  padding: 18px 0 26px;
}

.hero-compact {
  padding-bottom: 18px;
}

.topbar,
.panel,
.hero-card,
.highlight-card,
.footer {
  position: relative;
  overflow: hidden;
}

.topbar::before,
.panel::before,
.hero-card::before,
.highlight-card::before,
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: inherit;
  pointer-events: none;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 16px 22px;
  border-radius: 999px;
  background: rgba(255, 252, 248, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.brand {
  font-size: 1.6rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.95fr;
  gap: 22px;
  margin-top: 22px;
  align-items: stretch;
}

.hero-copy {
  padding: 46px 42px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 252, 248, 0.9), rgba(248, 231, 217, 0.78)),
    var(--panel-strong);
  box-shadow: var(--shadow);
}

.eyebrow,
.card-label,
.price-tier {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--accent-deep);
}

.hero-copy h1 {
  margin-top: 14px;
  font-size: clamp(3.4rem, 8vw, 6.3rem);
  line-height: 0.88;
  max-width: 11ch;
}

.lead,
.section-copy,
.card-copy,
.price-copy,
.notes-list,
.mini-card p,
.footer {
  line-height: 1.7;
  color: var(--muted);
}

.lead {
  margin-top: 20px;
  max-width: 58ch;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-card,
.highlight-card,
.panel,
.footer {
  border-radius: var(--radius-xl);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-card {
  padding: 34px 30px;
  background:
    linear-gradient(180deg, rgba(197, 111, 74, 0.12), rgba(255, 255, 255, 0.52)),
    var(--panel-strong);
}

.hero-card h2,
.section-heading h2,
.story h2,
.booking-sidebar h2 {
  margin-top: 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
}

.hero-list,
.price-card ul,
.notes-list {
  padding-left: 18px;
}

.hero-list {
  margin-top: 18px;
  display: grid;
  gap: 12px;
  color: var(--text);
}

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

.highlight-card,
.panel,
.footer {
  padding: 28px;
}

.highlight-card h3 {
  margin-top: 10px;
  font-size: 2rem;
  line-height: 0.98;
}

.story {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 24px;
  align-items: center;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 22px;
}

.narrow {
  max-width: 42ch;
}

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

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

.gallery-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.gallery-card img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 16px 18px 18px;
  color: var(--muted);
  line-height: 1.6;
}

.price-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

.price-card.featured {
  background:
    linear-gradient(180deg, rgba(241, 212, 174, 0.42), rgba(255, 255, 255, 0.8)),
    rgba(255, 255, 255, 0.84);
  transform: translateY(-8px);
}

.price-value {
  margin-top: 10px;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text);
}

.price-copy {
  margin-top: 8px;
}

.price-card ul {
  margin-top: 18px;
  display: grid;
  gap: 12px;
  color: var(--text);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr;
  gap: 18px;
  margin-top: 18px;
}

.booking-page-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 18px;
}

.booking-hero {
  align-items: start;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.booking-form-detailed {
  align-items: start;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field-group {
  grid-column: 1 / -1;
  margin: 0;
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.field-group legend {
  padding: 0 8px;
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.addon-option {
  display: grid;
  grid-template-columns: auto 88px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
}

.addon-option input {
  width: 18px;
  height: 18px;
}

.addon-option img {
  display: block;
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.addon-copy {
  display: grid;
  gap: 4px;
}

.addon-copy span {
  font-weight: 700;
}

.addon-copy small {
  color: var(--muted);
  line-height: 1.5;
}

.booking-summary-card {
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(241, 212, 174, 0.36), rgba(255, 255, 255, 0.8)),
    rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
}

.booking-total {
  margin-top: 8px;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 700;
  line-height: 1;
}

.booking-preview {
  display: grid;
  gap: 18px;
  align-items: start;
}

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.primary-button {
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff8f1;
  font-weight: 700;
}

.ghost-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  color: var(--text);
}

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

.status-box {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(197, 111, 74, 0.1);
  border: 1px solid rgba(197, 111, 74, 0.16);
  color: var(--text);
  line-height: 1.6;
}

.notes-list {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.mini-card {
  margin-top: 22px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.map-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  min-height: 420px;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
}

@media (max-width: 980px) {
  .hero-grid,
  .story,
  .pricing-grid,
  .booking-grid,
  .booking-page-grid,
  .highlights {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .section-heading,
  .footer,
  .topbar {
    display: grid;
    grid-template-columns: 1fr;
  }

  .topbar {
    justify-items: center;
    border-radius: 28px;
    padding: 18px;
  }

  .nav-links {
    justify-content: center;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

  .hero-actions {
    width: 100%;
  }

  .booking-sidebar {
    order: -1;
  }
}

@media (max-width: 700px) {
  .page-shell {
    width: min(100% - 16px, 1180px);
    padding: 14px 0 28px;
  }

  .hero-copy,
  .panel,
  .highlight-card,
  .hero-card,
  .footer {
    padding: 20px 18px;
    border-radius: 24px;
  }

  .topbar {
    gap: 14px;
    padding: 16px;
    border-radius: 24px;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

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

  .addon-option {
    grid-template-columns: auto 1fr auto;
    align-items: start;
    padding: 12px;
  }

  .addon-option strong {
    grid-column: 3;
    grid-row: 1;
    align-self: center;
  }

  .addon-option img {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    height: 168px;
    margin-top: 8px;
  }

  .addon-copy {
    gap: 6px;
  }

  .field-group {
    padding: 14px;
  }

  .field input,
  .field select,
  .field textarea {
    min-height: 52px;
    padding: 14px 15px;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 15vw, 4.1rem);
    max-width: none;
  }

  .highlight-card h3,
  .hero-card h2,
  .section-heading h2,
  .story h2,
  .booking-sidebar h2 {
    font-size: 2rem;
  }

  .lead,
  .section-copy,
  .gallery-card figcaption,
  .status-box,
  .mini-card p {
    font-size: 0.97rem;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 8px 12px;
    font-size: 0.92rem;
  }

  .hero-actions,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero-actions .primary-button,
  .hero-actions .ghost-button,
  .booking-form .primary-button {
    width: 100%;
  }

  .section-heading {
    gap: 12px;
  }

  .price-value,
  .booking-total {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 320px;
  }

  .footer {
    text-align: center;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 1.4rem;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
  }

  .hero {
    padding-top: 12px;
  }

  .hero-grid {
    gap: 16px;
    margin-top: 16px;
  }

  .hero-copy,
  .panel,
  .highlight-card,
  .hero-card,
  .footer {
    padding: 18px 16px;
    border-radius: 22px;
  }

  .highlight-card h3,
  .hero-card h2,
  .section-heading h2,
  .story h2,
  .booking-sidebar h2 {
    font-size: 1.8rem;
  }

  .eyebrow,
  .card-label,
  .price-tier {
    letter-spacing: 0.12em;
    font-size: 0.68rem;
  }

  .hero-list,
  .price-card ul,
  .notes-list {
    padding-left: 16px;
  }

  .addon-option {
    grid-template-columns: 20px 1fr auto;
  }

  .addon-option img {
    height: 144px;
  }

  .booking-summary-card {
    padding: 18px;
  }
}
