:root {
  --ink: #f7f2e7;
  --muted: #c8d2dc;
  --navy-950: #020b14;
  --navy-900: #051525;
  --navy-850: #071d31;
  --navy-800: #0b2942;
  --blue: #0f5c8a;
  --gold: #d7a64b;
  --gold-light: #f3cf7a;
  --line: rgba(215,166,75,.42);
  --panel: rgba(7,29,49,.86);
  --shadow: 0 24px 70px rgba(0,0,0,.42);
  --radius: 22px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 84% 4%, rgba(27,100,145,.21), transparent 36rem),
    linear-gradient(180deg, var(--navy-950), #04111f 45%, #061b2e 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 9999; background: var(--gold-light); color: #07111c; padding: .75rem 1rem; border-radius: 10px; font-weight: 800; }
.skip-link:focus { top: 1rem; }
.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.eyebrow { display: inline-flex; align-items: center; gap: .55rem; text-transform: uppercase; letter-spacing: .18em; color: var(--gold-light); font-size: .78rem; font-weight: 800; }
.eyebrow::before, .eyebrow::after { content: ""; width: 26px; height: 1px; background: var(--gold); }
h1,h2,h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.08; margin: 0 0 1rem; letter-spacing: .015em; }
h1 { font-size: clamp(2.65rem, 7vw, 6.3rem); text-transform: uppercase; text-shadow: 0 5px 20px rgba(0,0,0,.48); }
h2 { font-size: clamp(2rem, 4vw, 3.7rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1rem; }
.lead { font-size: clamp(1.05rem, 2vw, 1.28rem); color: var(--muted); max-width: 760px; }
.gold { color: var(--gold-light); }
.section { padding: clamp(4.5rem, 8vw, 7.5rem) 0; position: relative; }
.section-sm { padding: 3rem 0; }
.section-heading { max-width: 790px; margin-bottom: 2.3rem; }
.section-heading.center { text-align: center; margin-inline: auto; }
.wave-divider { height: 34px; background: linear-gradient(135deg, transparent 0 45%, rgba(215,166,75,.45) 46% 48%, transparent 49% 100%); background-size: 66px 34px; opacity: .45; }
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(2,11,20,.9); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); }
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .85rem; text-decoration: none; min-width: 0; }
.brand img { width: 62px; height: 62px; object-fit: contain; filter: drop-shadow(0 6px 10px rgba(0,0,0,.35)); }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-family: Georgia, serif; font-size: 1.07rem; letter-spacing: .06em; text-transform: uppercase; }
.brand-copy span { color: var(--gold-light); font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; margin-top: .3rem; }
.site-nav { display: flex; align-items: center; gap: .15rem; }
.site-nav a { padding: .7rem .72rem; text-decoration: none; color: #dbe4ec; font-size: .83rem; font-weight: 750; text-transform: uppercase; letter-spacing: .055em; border-radius: 10px; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--gold-light); background: rgba(215,166,75,.08); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; color: var(--ink); background: rgba(255,255,255,.03); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; min-height: 50px; padding: .72rem 1.25rem; border-radius: 11px; border: 1px solid var(--gold); text-decoration: none; text-transform: uppercase; letter-spacing: .08em; font-weight: 850; font-size: .82rem; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,.25); }
.btn-primary { color: #101722; background: linear-gradient(180deg, var(--gold-light), var(--gold)); }
.btn-secondary { color: var(--gold-light); background: rgba(5,21,37,.55); }
.hero { position: relative; min-height: 690px; display: grid; align-items: center; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,11,20,.97) 0%, rgba(2,11,20,.82) 46%, rgba(2,11,20,.48) 100%), url('../images/logo-ambient.webp') center/cover no-repeat; transform: scale(1.04); }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 170px; background: linear-gradient(to top, #04111f, transparent); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(2rem, 6vw, 5rem); padding: 5.5rem 0; }
.hero-copy p { max-width: 660px; color: #d7e2ea; font-size: 1.12rem; }
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.7rem; }
.hero-logo { width: min(100%, 560px); margin-inline: auto; filter: drop-shadow(0 35px 45px rgba(0,0,0,.48)); animation: float 7s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.trust-strip { border-block: 1px solid var(--line); background: rgba(7,29,49,.78); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-item { padding: 1.35rem; text-align: center; border-right: 1px solid rgba(215,166,75,.22); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--gold-light); font-family: Georgia, serif; text-transform: uppercase; letter-spacing: .07em; }
.trust-item span { color: var(--muted); font-size: .9rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1.35rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 1.15rem; }
.card { position: relative; padding: 1.55rem; border: 1px solid rgba(215,166,75,.28); border-radius: var(--radius); background: linear-gradient(150deg, rgba(13,46,74,.92), rgba(5,21,37,.92)); box-shadow: var(--shadow); overflow: hidden; }
.card::after { content: ""; position: absolute; right: -35px; bottom: -48px; width: 135px; height: 135px; border: 1px solid rgba(215,166,75,.13); border-radius: 50%; box-shadow: 0 0 0 18px rgba(215,166,75,.035), 0 0 0 36px rgba(215,166,75,.025); }
.card p { color: var(--muted); }
.icon-badge { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 1rem; border-radius: 50%; border: 1px solid var(--gold); color: var(--gold-light); font-family: Georgia, serif; font-size: 1.25rem; background: rgba(215,166,75,.08); }
.sails-grid { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: .9rem; }
.sail-card { padding: 1.35rem 1.05rem; min-height: 260px; text-align: center; border-radius: 16px; color: #102033; background: linear-gradient(150deg,#f6e9cc,#d7c49f); border: 2px solid rgba(215,166,75,.8); box-shadow: 0 17px 35px rgba(0,0,0,.25); }
.sail-letter { font: 700 3.35rem/1 Georgia,serif; color: #0b2942; }
.sail-card h3 { margin-top: .55rem; font-size: 1.05rem; text-transform: uppercase; }
.sail-card p { color: #283541; font-size: .9rem; }
.band { background: linear-gradient(90deg, rgba(7,29,49,.95), rgba(11,41,66,.88), rgba(7,29,49,.95)); border-block: 1px solid var(--line); }
.quote { font-family: Georgia, serif; font-size: clamp(1.6rem,3vw,2.7rem); color: var(--gold-light); text-align: center; max-width: 920px; margin: auto; }
.page-hero { position: relative; padding: 7rem 0 5rem; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero::before { content:""; position:absolute; inset:0; background: linear-gradient(90deg,rgba(2,11,20,.97),rgba(2,11,20,.68)), url('../images/logo-ambient.webp') center 42%/cover no-repeat; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.8rem,6vw,5.2rem); max-width: 900px; }
.prose { max-width: 850px; }
.prose h2 { margin-top: 2.4rem; }
.prose p, .prose li { color: var(--muted); }
.list-clean { list-style: none; padding: 0; margin: 0; }
.list-clean li { padding: .9rem 0; border-bottom: 1px solid rgba(215,166,75,.16); }
.list-clean li::before { content: "✦"; color: var(--gold); margin-right: .7rem; }
.notice { padding: 1.25rem 1.4rem; border-left: 4px solid var(--gold); border-radius: 0 16px 16px 0; background: rgba(215,166,75,.08); color: #e4ebf0; }
.filter-bar { display: flex; gap: .65rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.filter-btn { border: 1px solid rgba(215,166,75,.35); color: var(--muted); background: rgba(7,29,49,.8); padding: .65rem .9rem; border-radius: 999px; }
.filter-btn.active, .filter-btn:hover { color: #09121c; background: var(--gold-light); }
.resource-card[hidden] { display: none; }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; }
.field { display: grid; gap: .45rem; }
.field.full { grid-column: 1/-1; }
label { font-weight: 750; color: #e6edf2; }
input, textarea, select { width: 100%; border: 1px solid rgba(215,166,75,.3); border-radius: 12px; padding: .9rem 1rem; color: var(--ink); background: rgba(2,11,20,.74); outline: none; }
input:focus, textarea:focus, select:focus { border-color: var(--gold-light); box-shadow: 0 0 0 3px rgba(215,166,75,.12); }
textarea { min-height: 170px; resize: vertical; }
.form-status { min-height: 1.5rem; color: var(--gold-light); margin-top: .8rem; }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-button { width: 100%; display:flex; justify-content:space-between; gap:1rem; padding:1.15rem 0; border:0; color:var(--ink); background:transparent; text-align:left; font-weight:850; }
.accordion-panel { display:none; padding:0 0 1.2rem; color:var(--muted); }
.accordion-item.open .accordion-panel { display:block; }
.cta-panel { display:grid; grid-template-columns:1.4fr auto; align-items:center; gap:2rem; padding:clamp(2rem,5vw,4rem); border:1px solid var(--line); border-radius:28px; background:linear-gradient(135deg,rgba(11,41,66,.95),rgba(3,17,31,.96)); box-shadow:var(--shadow); }
.site-footer { border-top: 1px solid var(--line); background: #020a12; padding: 3.5rem 0 1.4rem; }
.footer-grid { display:grid; grid-template-columns:1.2fr repeat(3,.8fr); gap:2rem; }
.footer-logo { width:120px; margin-bottom:1rem; }
.footer-title { color:var(--gold-light); font-family:Georgia,serif; text-transform:uppercase; letter-spacing:.08em; }
.footer-links { list-style:none; padding:0; margin:0; }
.footer-links a { display:block; padding:.3rem 0; color:var(--muted); text-decoration:none; }
.footer-links a:hover { color:var(--gold-light); }
.footer-bottom { margin-top:2.5rem; padding-top:1.25rem; border-top:1px solid rgba(215,166,75,.18); display:flex; justify-content:space-between; gap:1rem; color:#92a5b5; font-size:.88rem; }
.reveal { opacity:0; transform:translateY(18px); transition:opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:none; }
@media (max-width: 1040px) {
  .site-nav { display:none; position:absolute; left:1rem; right:1rem; top:82px; padding:1rem; border:1px solid var(--line); border-radius:16px; background:#051525; box-shadow:var(--shadow); flex-direction:column; align-items:stretch; }
  .site-nav.open { display:flex; }
  .site-nav a { padding:.85rem 1rem; }
  .nav-toggle { display:block; }
  .hero-grid { grid-template-columns:1fr; text-align:center; }
  .hero-copy p { margin-inline:auto; }
  .hero-actions { justify-content:center; }
  .hero-logo { max-width:470px; }
  .sails-grid { grid-template-columns:repeat(2,1fr); }
  .sail-card:last-child { grid-column:1/-1; max-width:50%; width:100%; justify-self:center; }
  .grid-4 { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width: 720px) {
  .brand-copy { display:none; }
  .hero { min-height:auto; }
  .hero-grid { padding:4.5rem 0; }
  .hero-logo { max-width:330px; }
  .trust-grid, .grid-2, .grid-3, .grid-4, .form-grid, .footer-grid { grid-template-columns:1fr; }
  .trust-item { border-right:0; border-bottom:1px solid rgba(215,166,75,.22); }
  .sails-grid { grid-template-columns:1fr; }
  .sail-card:last-child { grid-column:auto; max-width:none; }
  .cta-panel { grid-template-columns:1fr; text-align:center; }
  .footer-bottom { flex-direction:column; }
  h1 { font-size:clamp(2.25rem,13vw,4rem); }
}
@media (prefers-reduced-motion: reduce) { * { scroll-behavior:auto !important; animation:none !important; transition:none !important; } .reveal { opacity:1; transform:none; } }
