/* Beyond Pools — landing site
   Palette (shared with the venture's document brand):
   Ink #18262A · Petrol teal #0E6E78 · Bronze #B5824A
   Limestone #F2EEE6 · Sand #D8D0C2 · Water #4FB4BE
   Type: Fraunces (display) + Manrope (body/UI) */

:root {
  --ink:        #18262A;
  --teal:       #0E6E78;
  --teal-deep:  #0A565E;
  --bronze:     #B5824A;
  --limestone:  #F2EEE6;
  --sand:       #D8D0C2;
  --water:      #4FB4BE;
  --white:      #ffffff;
  --maxw: 1120px;
  --radius: 16px;
  --shadow: 0 18px 50px rgba(24,38,42,.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', -apple-system, system-ui, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'Fraunces', Georgia, 'Times New Roman', serif; font-weight: 600; line-height: 1.12; color: var(--ink); margin: 0 0 .5em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); letter-spacing: -.5px; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1rem; }
a  { color: var(--teal); }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow { font-family: 'Manrope', sans-serif; text-transform: uppercase; letter-spacing: 3px; font-size: .78rem; font-weight: 700; color: var(--bronze); margin: 0 0 14px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; padding: 15px 30px; border-radius: 999px;
  font-weight: 700; font-size: 1rem; text-decoration: none; cursor: pointer;
  border: 2px solid transparent; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary { background: var(--bronze); color: var(--white); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(181,130,74,.4); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(242,238,230,.6); }
.btn-ghost:hover { background: rgba(242,238,230,.12); }
.btn-dark { background: var(--teal); color: var(--white); }
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(14,110,120,.35); }

/* ---------- header ---------- */
header.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sand);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 42px; width: 42px; display: block; }
.brand .name { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.45rem; color: var(--ink); line-height: 1; }
.brand .name small { display: block; font-family: 'Manrope', sans-serif; font-weight: 600; font-size: .62rem; letter-spacing: 5px; color: var(--teal); margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: .95rem; }
.nav-links a.cta { color: var(--white); background: var(--teal); padding: 11px 22px; border-radius: 999px; }
.nav-links a:not(.cta):hover { color: var(--teal); }
.menu-toggle { display: none; }

/* ---------- hero ---------- */
.hero {
  position: relative; color: var(--limestone);
  background:
    linear-gradient(180deg, rgba(10,86,94,.78), rgba(24,38,42,.86)),
    url("assets/hero.jpg") center/cover no-repeat,
    linear-gradient(135deg, var(--teal), var(--teal-deep));
  padding: 100px 0 110px;
}
.hero h1 { color: var(--white); max-width: 16ch; }
.hero .lead { font-size: 1.3rem; max-width: 56ch; color: rgba(242,238,230,.95); margin-bottom: 32px; }
.hero .eyebrow { color: var(--water); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 26px; font-size: .92rem; color: rgba(242,238,230,.92); }
.hero-trust span { display: flex; align-items: center; gap: 8px; }
.tick { color: var(--water); font-weight: 800; }

/* ---------- strip ---------- */
.strip { background: var(--ink); color: var(--limestone); }
.strip .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 30px 24px; text-align: center; }
.strip .stat b { font-family: 'Fraunces', serif; display: block; font-size: 1.7rem; color: var(--water); }
.strip .stat span { font-size: .85rem; color: rgba(242,238,230,.8); }

/* ---------- sections ---------- */
section { padding: 84px 0; }
.section-head { max-width: 60ch; margin-bottom: 48px; }
.bg-limestone { background: var(--limestone); }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* problem -> promise */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.card {
  background: var(--white); border: 1px solid var(--sand); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow);
}
.card.problem { border-top: 4px solid var(--sand); }
.card.promise { border-top: 4px solid var(--bronze); }
.card h3 { margin-bottom: 18px; }
.card ul { list-style: none; padding: 0; margin: 0; }
.card li { padding: 9px 0 9px 30px; position: relative; border-bottom: 1px solid var(--limestone); }
.card li:last-child { border-bottom: 0; }
.card.problem li::before { content: "✕"; position: absolute; left: 0; color: #b35; font-weight: 700; }
.card.promise li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 800; }

/* what's included grid */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature { background: var(--white); border: 1px solid var(--sand); border-radius: var(--radius); padding: 30px; }
.feature .ic { width: 50px; height: 50px; border-radius: 12px; background: var(--limestone); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 16px; }
.feature h3 { margin-bottom: 8px; }
.feature p { color: #44555a; font-size: .96rem; margin: 0; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding-top: 14px; }
.step .num { font-family: 'Fraunces', serif; font-size: 2.6rem; color: var(--bronze); line-height: 1; }
.step h3 { margin: 10px 0 6px; }
.step p { font-size: .95rem; color: #44555a; margin: 0; }

/* packages */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.tier { background: var(--white); border: 1px solid var(--sand); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; }
.tier.hero-tier { background: var(--teal); color: var(--limestone); border-color: var(--teal); transform: translateY(-8px); box-shadow: var(--shadow); }
.tier.hero-tier h3, .tier.hero-tier .price { color: var(--white); }
.tier .tag { font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; color: var(--bronze); }
.tier.hero-tier .tag { color: var(--water); }
.tier .price { font-family: 'Fraunces', serif; font-size: 1.5rem; margin: 10px 0 4px; }
.tier .note { font-size: .82rem; opacity: .8; margin-bottom: 18px; }
.tier ul { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.tier li { padding: 8px 0 8px 26px; position: relative; font-size: .95rem; border-bottom: 1px solid rgba(0,0,0,.06); }
.tier.hero-tier li { border-bottom-color: rgba(255,255,255,.15); }
.tier li::before { content: "✓"; position: absolute; left: 0; color: var(--bronze); font-weight: 800; }
.tier.hero-tier li::before { color: var(--water); }

/* owners / trust */
.owners { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.owner { text-align: center; }
.owner .avatar { width: 90px; height: 90px; border-radius: 50%; background: var(--limestone); margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-family: 'Fraunces', serif; font-size: 2rem; color: var(--teal); border: 2px solid var(--sand); }
.owner h3 { margin: 0 0 2px; }
.owner .role { color: var(--bronze); font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: 1px; }
.owner p { font-size: .92rem; color: #44555a; margin-top: 8px; }

/* regions */
.regions { display: flex; flex-wrap: wrap; gap: 12px; }
.chip { background: var(--white); border: 1px solid var(--sand); border-radius: 999px; padding: 10px 20px; font-weight: 600; }

/* CTA band */
.cta-band { background: linear-gradient(135deg, var(--teal), var(--teal-deep)); color: var(--limestone); text-align: center; }
.cta-band h2 { color: var(--white); }
.cta-band p { max-width: 50ch; margin: 0 auto 28px; color: rgba(242,238,230,.92); }

/* lead form */
.lead { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: start; }
.form-card { background: var(--white); border: 1px solid var(--sand); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
label { display: block; font-weight: 600; font-size: .9rem; margin: 14px 0 6px; }
input, select, textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--sand); border-radius: 10px;
  font-family: inherit; font-size: 1rem; color: var(--ink); background: #fdfcf9;
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--water); border-color: var(--water); }
.form-card .btn { width: 100%; margin-top: 22px; border: none; }
.form-note { font-size: .8rem; color: #6a7a7e; margin-top: 12px; text-align: center; }

/* faq */
details { background: var(--white); border: 1px solid var(--sand); border-radius: 12px; padding: 4px 22px; margin-bottom: 12px; }
details summary { cursor: pointer; font-weight: 700; padding: 16px 0; list-style: none; position: relative; }
details summary::-webkit-details-marker { display: none; }
details summary::after { content: "+"; position: absolute; right: 0; color: var(--bronze); font-size: 1.4rem; }
details[open] summary::after { content: "–"; }
details p { padding-bottom: 16px; margin: 0; color: #44555a; }

/* footer */
footer { background: var(--ink); color: rgba(242,238,230,.8); padding: 56px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
footer .brand .name { color: var(--limestone); }
footer h4 { color: var(--limestone); margin: 0 0 14px; font-size: .95rem; }
footer a { color: rgba(242,238,230,.8); text-decoration: none; display: block; margin-bottom: 8px; font-size: .92rem; }
footer a:hover { color: var(--water); }
.foot-bottom { border-top: 1px solid rgba(242,238,230,.15); padding-top: 22px; font-size: .82rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.disclaimer { font-size: .75rem; color: rgba(242,238,230,.5); margin-top: 14px; max-width: 70ch; }

/* responsive */
@media (max-width: 900px) {
  .split, .grid-3, .steps, .tiers, .owners, .lead, .foot-grid { grid-template-columns: 1fr; }
  .strip .wrap { grid-template-columns: 1fr 1fr; gap: 22px; }
  .tier.hero-tier { transform: none; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; background: var(--white); padding: 20px 24px; gap: 16px; border-bottom: 1px solid var(--sand); }
  .menu-toggle { display: block; background: none; border: none; font-size: 1.6rem; color: var(--ink); cursor: pointer; }
}
