:root {
  --ink: #102f2d;
  --teal: #0d5f56;
  --teal-dark: #063b36;
  --gold: #c49a3f;
  --gold-soft: #f5dfaa;
  --paper: #ffffff;
  --mist: #f3f7f5;
  --muted: #61716e;
  --line: #d7e1dc;
  --clay: #9f5845;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--mist);
  color: var(--ink);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.55;
  margin: 0;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3 { margin: 0; }
h1 { font-size: clamp(2.25rem, 4.4vw, 4.55rem); font-weight: 500; line-height: 1.04; max-width: 900px; }
h2 { color: var(--teal-dark); font-size: clamp(1.8rem, 2.6vw, 2.8rem); font-weight: 500; line-height: 1.13; }
h3 { color: var(--teal-dark); font-size: 1.2rem; font-weight: 600; }
.section-inner { margin: 0 auto; max-width: 1200px; padding: 0 24px; width: 100%; }

.site-header {
  align-items: center;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(230px, 1fr) auto auto;
  left: 0;
  min-height: 78px;
  padding: 10px 30px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}
.site-brand img { height: 58px; width: auto; }
.main-nav { display: flex; gap: 22px; }
.main-nav a, .header-cta { font-size: .94rem; font-weight: 600; text-decoration: none; }
.header-cta { background: var(--teal); border-radius: 8px; color: white; padding: 13px 16px; }

.hero {
  min-height: 730px;
  overflow: hidden;
  position: relative;
}
.hero > img { height: 100%; inset: 0; object-fit: cover; position: absolute; width: 100%; }
.hero::after {
  background: linear-gradient(90deg, rgba(5,39,35,.9), rgba(5,39,35,.58) 45%, rgba(5,39,35,.12));
  content: "";
  inset: 0;
  position: absolute;
}
.hero-content {
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: inherit;
  padding-bottom: 64px;
  padding-top: 135px;
  position: relative;
  z-index: 1;
}
.hero-content p:not(.eyebrow) { color: rgba(255,255,255,.88); font-size: 1.18rem; line-height: 1.72; max-width: 670px; }
.eyebrow { color: var(--gold); font-size: .84rem; font-weight: 600; margin: 0 0 12px; }
.hero .eyebrow { color: var(--gold-soft); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { align-items: center; border-radius: 8px; display: inline-flex; font-weight: 600; min-height: 46px; padding: 0 20px; text-decoration: none; }
.primary { background: var(--gold); color: #061f1c; }
.ghost { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.58); color: white; }

.section-block { background: white; padding: 78px 0; }
.section-block.pale { background: var(--mist); }
.section-heading { margin-bottom: 34px; max-width: 780px; }
.section-heading p:not(.eyebrow), .muted { color: var(--muted); font-size: 1.04rem; line-height: 1.75; }
.image-strip { display: grid; grid-template-columns: 1.1fr .9fr .9fr; min-height: 260px; }
.image-strip img { height: 100%; object-fit: cover; width: 100%; }
.grid { display: grid; gap: 18px; }
.cards { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card, .feature, .timeline article, .faq article, .builder-panel, .summary-panel, .contact-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.card { overflow: hidden; }
.card img { aspect-ratio: 1.28 / 1; object-fit: cover; width: 100%; }
.card div { padding: 20px; }
.card span { color: var(--clay); display: block; font-size: .78rem; font-weight: 600; margin-bottom: 8px; }
.card p, .card li, .feature p, .timeline p, .faq p { color: var(--muted); }
.card strong { color: var(--teal-dark); display: block; margin: 10px 0; }
.card a { background: #edf5f1; border-radius: 8px; color: var(--teal-dark); display: block; font-weight: 600; padding: 12px; text-align: center; text-decoration: none; }

.focus-band { background: var(--teal-dark); color: white; padding: 34px 0; }
.focus-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.focus-grid article { border-left: 1px solid rgba(245,223,170,.4); padding: 4px 24px; }
.focus-grid span { color: var(--gold-soft); display: block; font-size: .82rem; font-weight: 600; }
.focus-grid strong { display: block; font-size: 1.25rem; }
.focus-grid p { color: rgba(255,255,255,.76); }
.features { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.feature { display: grid; gap: 12px; grid-template-columns: 30px 1fr; padding: 18px; }
.feature b { align-items: center; background: var(--teal); border-radius: 8px; color: white; display: flex; height: 30px; justify-content: center; }
.split { align-items: center; display: grid; gap: 46px; grid-template-columns: 1fr 1fr; }
.story-image { border-radius: 8px; min-height: 420px; overflow: hidden; }
.story-image img { height: 100%; min-height: 420px; object-fit: cover; width: 100%; }
.timeline { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.timeline article, .faq article { padding: 22px; }
.timeline span { color: var(--gold); display: block; font-weight: 600; margin-bottom: 8px; }
.videos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.video-card { background: white; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.video-card video { aspect-ratio: 16 / 9; background: var(--teal-dark); display: block; width: 100%; }
.video-card h3 { padding: 18px 20px 20px; }
.videos.featured { grid-template-columns: minmax(0, 360px); justify-content: center; }
.videos.featured .video-card video { aspect-ratio: 9 / 16; }
.faq-grid { align-items: start; display: grid; gap: 24px; grid-template-columns: .8fr 1.2fr; }

.builder-layout { align-items: start; display: grid; gap: 24px; grid-template-columns: minmax(0, 1fr) 360px; }
.builder-panel, .summary-panel { box-shadow: 0 18px 46px rgba(13,95,86,.09); padding: 24px; }
.form-grid { display: grid; gap: 16px; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 16px; }
label span { color: var(--teal-dark); display: block; font-size: .9rem; font-weight: 600; margin-bottom: 8px; }
input, select, textarea { border: 1px solid var(--line); border-radius: 8px; font: inherit; min-height: 48px; padding: 0 14px; width: 100%; }
textarea { min-height: 98px; padding: 14px; }
.submit-button { background: var(--gold); border: 0; border-radius: 8px; cursor: pointer; font: inherit; font-weight: 600; min-height: 48px; margin-top: 18px; width: 100%; }
.price { color: var(--teal-dark); display: block; font-size: 2.3rem; font-weight: 500; }
.summary-list div { border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; padding: 12px 0; }
.summary-list dt { color: var(--muted); }
.summary-list dd { color: var(--teal-dark); font-weight: 600; margin: 0; }

.exact-package { background: #f8faf8; }
.brochure-layout { align-items: start; display: grid; gap: 46px; grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr); }
.brochure-image { border: 1px solid var(--line); display: block; }
.brochure-image img { height: auto; width: 100%; }
.package-facts { display: grid; gap: 22px; }
.reserve-panel { background: var(--teal-dark); color: white; padding: 26px; }
.reserve-panel span { color: var(--gold-soft); display: block; font-size: .86rem; font-weight: 600; }
.reserve-panel strong { color: white; display: block; font-size: 3rem; font-weight: 500; line-height: 1.1; }
.reserve-panel p { color: rgba(255,255,255,.78); margin-bottom: 0; }
.date-list { border-top: 1px solid var(--line); }
.date-list article { border-bottom: 1px solid var(--line); padding: 17px 0; }
.date-list span { color: var(--clay); display: block; font-size: .85rem; font-weight: 600; }
.date-list h3 { margin: 3px 0 4px; }
.date-list p { color: var(--muted); margin: 0; }
.included-list { background: white; border-left: 4px solid var(--gold); padding: 22px 24px; }
.included-list ul, .detail-columns ul { color: var(--muted); line-height: 1.75; margin-bottom: 0; padding-left: 20px; }
.price-heading { margin-top: 68px; }
.price-table-grid { display: grid; gap: 22px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.package-price-table { background: white; border: 1px solid var(--line); overflow: hidden; }
.package-price-table h3 { color: white; padding: 16px 20px; }
.package-price-table h3 span { color: rgba(255,255,255,.75); font-size: .8rem; margin-left: 8px; }
.package-price-table.category-c h3 { background: var(--teal-dark); }
.package-price-table.category-b h3 { background: #17477d; }
.package-price-table table { border-collapse: collapse; width: 100%; }
.package-price-table th, .package-price-table td { border-bottom: 1px solid var(--line); padding: 15px 18px; text-align: left; }
.package-price-table th { color: var(--teal-dark); }
.package-price-table td:nth-child(2) { color: var(--muted); }
.package-price-table td:last-child { color: var(--teal-dark); font-size: 1.16rem; font-weight: 700; text-align: right; }
.detail-columns { display: grid; gap: 24px; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 46px; }
.detail-columns article { border-top: 3px solid var(--gold); padding: 24px 8px 8px; }
.detail-columns h3 { margin: 18px 0 6px; }
.detail-columns .button { margin-top: 12px; }

.site-footer { background: var(--teal-dark); color: white; padding: 36px 0; }
.footer-grid { align-items: center; display: grid; gap: 24px; grid-template-columns: 1fr auto; }
.footer-brand img { height: 58px; }
.site-footer p { color: rgba(255,255,255,.72); max-width: 620px; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 16px; }
.site-footer a { color: white; font-weight: 600; text-decoration: none; }

@media (max-width: 1020px) {
  .site-header { grid-template-columns: 1fr auto; }
  .main-nav { grid-column: 1 / -1; overflow-x: auto; padding-bottom: 2px; }
  .cards, .features, .timeline, .videos, .focus-grid, .split, .builder-layout, .faq-grid, .footer-grid, .brochure-layout, .price-table-grid, .detail-columns { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .section-inner { padding: 0 16px; }
  .site-header { padding: 10px 16px; }
  .site-brand img { height: 48px; max-width: 220px; }
  .hero { min-height: 700px; }
  .hero-content { padding-top: 160px; }
  .image-strip, .form-grid { grid-template-columns: 1fr; }
  .actions, .button { width: 100%; }
}
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
