/* =========================================================
   Par Anywhere — styles.css
   Palette: fairway green + charcoal + warm off-white
   ========================================================= */

:root {
  --green:      #1f8a4c;
  --green-dark: #14633a;
  --green-deep: #0c3b22;
  --lime:       #8bd450;
  --charcoal:   #16191c;
  --ink:        #1b1f24;
  --slate:      #5a6470;
  --cloud:      #f5f7f4;
  --paper:      #ffffff;
  --line:       #e4e8e2;
  --shadow:     0 14px 40px rgba(12, 59, 34, .12);
  --radius:     16px;
  --radius-sm:  10px;
  --maxw:       1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: "Sora", "Outfit", sans-serif; line-height: 1.15; letter-spacing: -0.02em; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 760px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: "Outfit", sans-serif; font-weight: 600; font-size: 1rem;
  padding: .85rem 1.5rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--green); color: #fff; box-shadow: 0 8px 22px rgba(31,138,76,.35); }
.btn--primary:hover { background: var(--green-dark); }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,.6); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.12); }
.section .btn--ghost { border-color: var(--green); color: var(--green); }
.section .btn--ghost:hover { background: rgba(31,138,76,.08); }
.btn--small { padding: .55rem 1.1rem; font-size: .92rem; background: var(--green); color:#fff; }
.btn--small:hover { background: var(--green-dark); }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.1rem; }
.btn--block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.nav.scrolled { box-shadow: 0 6px 20px rgba(0,0,0,.06); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: .55rem; font-family: "Sora", sans-serif; font-weight: 800; font-size: 1.3rem; }
.brand__mark { width: auto; height: 34px; display: block; }
.footer__brand .brand__mark { height: 38px; }
.brand__name span { color: var(--green); }
.nav__links { display: flex; align-items: center; gap: 1.6rem; }
.nav__links a { font-weight: 500; color: var(--ink); font-size: .98rem; transition: color .15s; }
.nav__links a:hover { color: var(--green); }
.nav__links a.btn--small { color: #fff; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; padding: 84px 0 96px; }
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(139,212,80,.35), transparent 60%),
    radial-gradient(700px 500px at 0% 110%, rgba(31,138,76,.5), transparent 55%),
    linear-gradient(160deg, var(--green-deep), var(--green-dark) 55%, #0a2f1b);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 22px 22px; opacity: .5;
}
.hero__inner { max-width: 820px; }
.badge {
  display: inline-block; background: rgba(139,212,80,.18); color: var(--lime);
  border: 1px solid rgba(139,212,80,.4); padding: .4rem 1rem; border-radius: 999px;
  font-weight: 600; font-size: .9rem; margin-bottom: 1.4rem;
}
.hero__title { font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 800; }
.hero__title .accent { color: var(--lime); }
.hero__sub { font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: rgba(255,255,255,.85); margin: 1.3rem 0 0; max-width: 640px; }

.countdown { display: flex; gap: .8rem; margin: 2rem 0 .8rem; }
[hidden] { display: none !important; }
.countdown__item {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-sm); padding: .8rem 1rem; min-width: 78px; text-align: center;
  backdrop-filter: blur(4px);
}
.countdown__item span { display: block; font-family: "Sora", sans-serif; font-size: 1.9rem; font-weight: 800; }
.countdown__item label { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.7); }
.hero__date { color: rgba(255,255,255,.78); font-size: .98rem; margin-top: .6rem; }

.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.8rem; }
.hero__trust { list-style: none; display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 2.2rem; color: rgba(255,255,255,.82); font-size: .95rem; }

/* ---------- Section base ---------- */
.section { padding: 88px 0; }
.section--muted { background: var(--cloud); }
.section--accent { background: linear-gradient(120deg, var(--green), var(--green-dark)); color: #fff; }
.section--dark { background: var(--charcoal); color: #fff; }
.section--cta { background: linear-gradient(160deg, var(--green-deep), var(--green-dark)); color: #fff; text-align: center; }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.eyebrow { display: inline-block; color: var(--green); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; font-size: .82rem; margin-bottom: .6rem; }
.section--dark .eyebrow { color: var(--lime); }
.section__head h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
.section__lead { color: var(--slate); margin-top: .9rem; font-size: 1.08rem; }
.section--dark .section__lead { color: rgba(255,255,255,.75); }

/* ---------- Waitlist ---------- */
.waitlist { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.waitlist__text h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
.waitlist__text p { color: rgba(255,255,255,.88); margin-top: .8rem; max-width: 460px; }
.waitlist__form { display: grid; gap: .8rem; background: rgba(255,255,255,.1); padding: 1.6rem; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.2); }
.waitlist__form input { padding: .9rem 1rem; border-radius: var(--radius-sm); border: 0; font-size: 1rem; font-family: inherit; }
.waitlist__form .btn { margin-top: .2rem; }
.form__msg { font-size: .9rem; min-height: 1.2em; }
.form__msg.ok { color: var(--lime); }
.form__msg.err { color: #ffd2d2; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); position: relative; }
.step__num { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 50%; background: var(--green); color: #fff; font-family: "Sora", sans-serif; font-weight: 800; font-size: 1.2rem; margin-bottom: 1rem; }
.step h3 { font-size: 1.25rem; margin-bottom: .4rem; }
.step p { color: var(--slate); }

/* ---------- Uses ---------- */
.uses { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.use { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; transition: transform .2s, box-shadow .2s; }
.use:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.use span { font-size: 2rem; display: block; margin-bottom: .6rem; }
.use h3 { font-size: 1.12rem; margin-bottom: .25rem; }
.use p { color: var(--slate); font-size: .96rem; }

/* ---------- Kit ---------- */
.kit { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.kit__imgph { aspect-ratio: 4/3; border-radius: var(--radius); background: linear-gradient(135deg, var(--cloud), #e7ede6); border: 2px dashed var(--line); display: grid; place-content: center; text-align: center; gap: .6rem; font-size: 3rem; color: var(--slate); }
.kit__imgph span { font-size: .9rem; }
.kit__text h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin: .3rem 0 1rem; }
.kit__text > p { color: var(--slate); font-size: 1.06rem; }
.speclist { list-style: none; margin: 1.4rem 0; display: grid; gap: .7rem; }
.speclist li { padding-left: 1.8rem; position: relative; color: var(--ink); }
.speclist li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }

/* ---------- Video ---------- */
.video { max-width: 900px; margin: 0 auto; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.video iframe { width: 100%; height: 100%; border: 0; }
.video__ph { width: 100%; height: 100%; display: grid; place-content: center; justify-items: center; gap: 1rem; background: linear-gradient(135deg, #23282d, #14181c); color: rgba(255,255,255,.7); }
.video__play { width: 76px; height: 76px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-content: center; font-size: 1.7rem; box-shadow: 0 10px 30px rgba(31,138,76,.5); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery__item { aspect-ratio: 4/3; border-radius: var(--radius); background: linear-gradient(135deg, var(--cloud), #e7ede6); border: 1px solid var(--line); display: grid; place-content: center; font-size: 2.6rem; transition: transform .2s; }
.gallery__item:hover { transform: scale(1.02); }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.plan { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; position: relative; }
.plan--featured { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-8px); }
.plan__tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--green); color: #fff; font-size: .78rem; font-weight: 700; padding: .3rem .9rem; border-radius: 999px; }
.plan h3 { font-size: 1.35rem; }
.plan__price { font-size: 1.05rem; color: var(--slate); margin: .6rem 0 .1rem; }
.plan__price strong { font-family: "Sora", sans-serif; font-size: 1.9rem; color: var(--ink); }
.plan__note { color: var(--slate); font-size: .92rem; margin-bottom: 1.1rem; }
.plan ul { list-style: none; display: grid; gap: .55rem; margin-bottom: 1.4rem; }
.plan ul li { padding-left: 1.5rem; position: relative; font-size: .96rem; }
.plan ul li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.plan .btn { width: 100%; }

/* ---------- Booking ---------- */
.booking { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.booking__text h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin: .3rem 0 1rem; }
.booking__text > p { color: var(--slate); font-size: 1.06rem; }
.booking__or { margin-top: 1.4rem !important; }
.link-wa { color: var(--green); font-weight: 600; }
.booking__form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); display: grid; gap: 1rem; }
.field { display: grid; gap: .35rem; }
.field label { font-weight: 600; font-size: .9rem; }
.field input, .field select, .field textarea {
  padding: .8rem .9rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-size: 1rem; font-family: inherit; background: #fff; transition: border-color .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .8rem; }
.faq details { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0 1.3rem; }
.faq summary { cursor: pointer; font-weight: 600; padding: 1.1rem 0; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--green); font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 1.2rem; color: var(--slate); }

/* ---------- CTA ---------- */
.cta h2 { font-size: clamp(2rem, 4vw, 3rem); }
.cta p { color: rgba(255,255,255,.85); margin: .8rem 0 1.8rem; font-size: 1.1rem; }

/* ---------- Footer ---------- */
.footer { background: var(--charcoal); color: rgba(255,255,255,.78); padding: 64px 0 28px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
.footer__brand .brand__name { color: #fff; font-family: "Sora", sans-serif; font-weight: 800; font-size: 1.3rem; }
.footer__brand .brand__name span { color: var(--lime); }
.footer__brand p { margin-top: .6rem; font-size: .92rem; }
.footer__col h4 { color: #fff; margin-bottom: .9rem; font-size: 1rem; }
.footer__col a { display: block; padding: .25rem 0; font-size: .95rem; transition: color .15s; }
.footer__col a:hover { color: var(--lime); }
.footer__bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: .86rem; }

/* ---------- Floating WhatsApp ---------- */
.wa-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-content: center; font-size: 1.6rem;
  box-shadow: 0 10px 26px rgba(37,211,102,.5); transition: transform .2s;
}
.wa-fab:hover { transform: scale(1.08); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 12px 24px 20px; box-shadow: 0 12px 24px rgba(0,0,0,.08);
    display: none;
  }
  .nav__links.open { display: flex; }
  .nav__links a { padding: .9rem 0; border-bottom: 1px solid var(--line); }
  .nav__links a.btn--small { margin-top: .8rem; border: 0; text-align: center; }

  .steps, .uses, .gallery, .pricing { grid-template-columns: 1fr; }
  .uses { grid-template-columns: 1fr 1fr; }
  .waitlist, .kit, .booking { grid-template-columns: 1fr; }
  .plan--featured { transform: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .uses { grid-template-columns: 1fr; }
  .countdown__item { min-width: 64px; padding: .6rem .7rem; }
  .countdown__item span { font-size: 1.5rem; }
  .field-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
