:root {
  --navy: #0b1f3a;
  --navy-2: #081527;
  --ink: #16233a;
  --gold: #c9a24b;
  --gold-light: #e4c778;
  --cream: #f6efe0;
  --paper: #fbf8f1;
  --line: rgba(11, 31, 58, .14);
  --white-line: rgba(255, 255, 255, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
img { max-width: 100%; display: block; }

.site-header {
  height: 78px;
  padding: 0 clamp(22px, 4vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(251, 248, 241, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.brand { display: flex; align-items: center; gap: 11px; font-family: "Playfair Display", serif; font-weight: 600; font-size: 18px; letter-spacing: .01em; }
.brand-mark { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: var(--navy); color: var(--gold-light); font-size: 17px; }
nav { display: flex; gap: 36px; font-size: 14px; font-weight: 700; }
nav a:hover { color: var(--gold); }
.header-cta { padding: 11px 20px; border: 1px solid var(--navy); border-radius: 50px; font-size: 13px; font-weight: 800; }
.header-cta:hover { background: var(--navy); color: white; }

.hero {
  min-height: calc(100vh - 78px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center 60%; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(8,21,39,.94) 0%, rgba(8,21,39,.74) 46%, rgba(8,21,39,.18) 82%),
    linear-gradient(0deg, rgba(8,21,39,.55), transparent 40%);
}
.hero-content { position: relative; z-index: 2; width: min(760px, 80%); margin-left: clamp(22px, 7vw, 120px); padding: 70px 0 60px; color: #fff; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 800; color: #6a7385; }
.eyebrow span { width: 32px; height: 2px; background: var(--gold); }
.eyebrow.light { color: rgba(255,255,255,.85); }
h1, h2 { font-family: "Playfair Display", serif; font-weight: 600; letter-spacing: -.01em; line-height: 1.16; margin: 0; }
h1 { font-size: clamp(32px, 4vw, 58px); }
.hero-content > p { max-width: 620px; margin: 26px 0 36px; font-size: clamp(16px, 1.3vw, 19px); color: rgba(255,255,255,.82); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; padding: 17px 26px; border-radius: 4px; border: 0; font-weight: 800; cursor: pointer; transition: transform .2s, background .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button span { font-size: 18px; }
.button-primary { background: var(--gold); color: var(--navy-2); }
.button-primary:hover { background: var(--gold-light); }
.button-gold { background: var(--gold); color: var(--navy-2); }
.button-gold:hover { background: var(--gold-light); }
.button-outline { background: transparent; border: 1px solid var(--navy); color: var(--navy); }
.button-outline:hover { background: var(--navy); color: #fff; }

.section { padding: 110px clamp(22px, 7vw, 120px); }
.section-heading { margin-bottom: 56px; }
.section-heading.split { display: grid; grid-template-columns: 1.3fr .9fr; gap: 8vw; align-items: end; }
.section-heading.center { text-align: center; max-width: 780px; margin-left: auto; margin-right: auto; }
.section-heading.center .eyebrow { justify-content: center; }
h2 { font-size: clamp(28px, 3.4vw, 46px); max-width: 950px; }
.section-heading.center h2 { margin: 0 auto; }
.section-heading > p { margin: 0; color: #566079; font-size: 17px; }
.center { text-align: center; }

.icon-box { width: 66px; height: 66px; margin: 0 auto 22px; display: grid; place-items: center; border-radius: 50%; background: var(--cream); font-size: 27px; }
.icon-box.small { width: 46px; height: 46px; margin: 0 0 16px; font-size: 20px; }

.audience { background: var(--paper); }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.audience-card { padding: 40px 26px; text-align: center; background: var(--cream); border: 1px solid var(--line); }
.audience-card h3 { font-family: "Playfair Display", serif; font-size: 21px; font-weight: 600; margin: 0 0 10px; }
.audience-card p { margin: 0; color: #5b6478; }

.yacht-section { background: var(--cream); }
.yacht-section .section-heading.split p { max-width: 480px; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 60px; }
.gallery-item { position: relative; margin: 0; overflow: hidden; aspect-ratio: 4 / 5; background: var(--navy); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 16px 18px;
  background: linear-gradient(0deg, rgba(8,21,39,.85), transparent);
  color: #fff; font-size: 13px; font-weight: 700;
}
.gallery-item.placeholder { display: flex; }
.placeholder-fill {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #16345f 0%, #0b1f3a 45%, var(--gold) 130%);
  opacity: .9;
}
.gallery-item.placeholder figcaption { background: rgba(8,21,39,.55); color: rgba(255,255,255,.85); font-weight: 600; }
.perks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.perks article { padding: 26px; background: var(--paper); border: 1px solid var(--line); }
.perks p { margin: 0; font-weight: 600; }

.packages { background: var(--navy); color: #fff; }
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 36px; }
.package-card { display: flex; flex-direction: column; padding: 34px 28px; background: var(--navy-2); border: 1px solid var(--white-line); position: relative; }
.package-card.featured { background: linear-gradient(160deg, #1b3760, #0b1f3a); border-color: var(--gold); transform: translateY(-10px); }
.popular { position: absolute; right: 22px; top: 0; transform: translateY(-50%); padding: 6px 14px; border-radius: 30px; background: var(--gold); color: var(--navy-2); text-transform: uppercase; font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.package-kicker { display: block; margin-bottom: 8px; color: var(--gold-light); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.package-top h3 { font-family: "Playfair Display", serif; font-size: clamp(20px, 2vw, 26px); font-weight: 600; line-height: 1.25; margin: 0 0 26px; }
.package-card ul { list-style: none; padding: 22px 0 0; margin: 0 0 28px; border-top: 1px solid var(--white-line); flex-grow: 1; }
.package-card li { margin: 11px 0; padding-left: 22px; position: relative; font-size: 14px; color: rgba(255,255,255,.82); }
.package-card li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); font-size: 11px; top: 3px; }
.package-bottom { display: flex; flex-direction: column; gap: 16px; padding-top: 20px; border-top: 1px solid var(--white-line); }
.price { font-family: "Playfair Display", serif; font-size: 24px; color: var(--gold-light); }
.package-bottom .button { width: 100%; }

.reasons { background: var(--paper); }
.reasons-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line); }
.reasons-list li { display: flex; align-items: baseline; gap: 18px; padding: 22px 20px; border-bottom: 1px solid var(--line); }
.reasons-list li:nth-child(odd) { border-right: 1px solid var(--line); }
.reasons-list .num { font-family: "Playfair Display", serif; color: var(--gold); font-size: 20px; }
.reasons-list p { margin: 0; }

.stories { background: var(--navy-2); color: #fff; }
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 20px; }
.story-card { margin: 0; overflow: hidden; aspect-ratio: 3 / 4; position: relative; }
.story-card img { width: 100%; height: 100%; object-fit: cover; }
.story-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 20px 18px;
  background: linear-gradient(0deg, rgba(8,21,39,.9), transparent 60%);
  font-family: "Playfair Display", serif; font-style: italic; font-size: 16px;
}
.fineprint { color: #7a8397; font-size: 12px; margin-top: 8px; }
.fineprint.light { color: rgba(255,255,255,.5); }

.guarantees { background: var(--cream); }
.guarantee-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.guarantee-grid article { padding: 30px 22px; background: var(--paper); border: 1px solid var(--line); text-align: center; }
.guarantee-grid h3 { font-family: "Playfair Display", serif; font-size: 18px; font-weight: 600; margin: 0 0 10px; }
.guarantee-grid p { margin: 0; font-size: 14px; color: #5b6478; }

.process { background: var(--navy); color: #fff; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.steps article { padding: 34px 26px; border: 1px solid var(--white-line); text-align: center; }
.steps .num { display: block; font-family: "Playfair Display", serif; color: var(--gold); font-size: 30px; margin-bottom: 16px; }
.steps h3 { font-family: "Playfair Display", serif; font-weight: 500; font-size: 19px; line-height: 1.4; margin: 0; }

.contact { padding: 110px clamp(22px, 7vw, 120px); display: grid; grid-template-columns: 1fr .8fr; gap: 8vw; background: var(--navy-2); color: #fff; }
.contact h2 { color: var(--gold-light); }
.contact-copy > p { max-width: 560px; color: rgba(255,255,255,.72); font-size: 17px; margin: 18px 0 30px; }
.messengers { display: flex; gap: 26px; margin-bottom: 32px; }
.messengers a { color: var(--gold-light); font-weight: 800; }
.map-card { max-width: 560px; min-height: 100px; padding: 20px; display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 14px; background: #142d4f; border: 1px solid var(--white-line); }
.map-pin { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: var(--gold); color: var(--navy-2); }
.map-card span { display: flex; flex-direction: column; }
.map-card small { color: rgba(255,255,255,.56); }
.map-card b { font-size: 11px; color: var(--gold-light); }
.lead-form { padding: 34px; background: var(--paper); color: var(--ink); }
.form-title { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.form-title span { font-family: "Playfair Display", serif; font-size: 20px; }
.form-title small { color: #77837c; }
.lead-form label { display: flex; flex-direction: column; margin-top: 18px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: #566079; }
.lead-form input, .lead-form select { padding: 11px 0; border: 0; border-bottom: 1px solid var(--line); background: transparent; outline: none; font-size: 16px; text-transform: none; color: var(--ink); }
.lead-form input:focus, .lead-form select:focus { border-color: var(--gold); }
.lead-form .button { width: 100%; margin-top: 30px; }
.consent { display: block; margin-top: 12px; color: #849088; font-size: 9px; text-align: center; }

footer { min-height: 110px; padding: 25px clamp(22px, 7vw, 120px); display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--white-line); background: var(--navy-2); color: #fff; font-size: 11px; }
footer p { color: rgba(255,255,255,.42); }
.toast { position: fixed; right: 24px; bottom: 24px; z-index: 30; max-width: 360px; padding: 16px 20px; background: var(--gold); color: var(--navy-2); box-shadow: 0 15px 50px rgba(0,0,0,.25); transform: translateY(150%); transition: transform .3s; font-weight: 700; }
.toast.show { transform: translateY(0); }
.toast.error { background: #e05656; color: #fff; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 1000px) {
  nav { display: none; }
  .hero-content { width: 88%; margin-left: 6vw; }
  .audience-grid, .package-grid, .story-grid, .perks { grid-template-columns: 1fr 1fr; }
  .package-card.featured { transform: none; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .guarantee-grid { grid-template-columns: 1fr 1fr; }
  .section-heading.split { grid-template-columns: 1fr; gap: 20px; }
  .contact { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .site-header { height: 66px; }
  .header-cta { display: none; }
  .section, .contact { padding: 74px 20px; }
  .hero { min-height: calc(100svh - 66px); align-items: flex-end; }
  .hero-shade { background: linear-gradient(0deg, rgba(8,21,39,.97) 6%, rgba(8,21,39,.75) 55%, rgba(8,21,39,.2)); }
  .hero-content { width: auto; margin: 0; padding: 90px 20px 34px; }
  h1 { font-size: clamp(28px, 8.5vw, 38px); }
  .audience-grid, .package-grid, .story-grid, .perks, .gallery, .guarantee-grid, .steps { grid-template-columns: 1fr; }
  .reasons-list { grid-template-columns: 1fr; }
  .reasons-list li:nth-child(odd) { border-right: 0; }
  .map-card { grid-template-columns: 40px 1fr; }
  .map-card b { display: none; }
  .lead-form { padding: 24px 18px; }
  footer { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
