/* Northway Golf — marketing site. Plain CSS, no build tooling needed. */
:root{
  --green:#2a7b3c; --green-dark:#1b3120; --cream:#e5ecdf;
  --ink:#333; --ink-strong:#001122; --muted:#888; --line:#ececec; --wash:#f7f7f7;
  --max:1100px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{margin:0;font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;color:var(--ink);background:#fff;line-height:1.5;-webkit-font-smoothing:antialiased}
img{max-width:100%;height:auto;display:block}
a{color:var(--green)}
.wrap{max-width:var(--max);margin:0 auto;padding:0 24px}

/* header */
.site-header{border-bottom:1px solid var(--line);background:#fff}
.site-header .wrap{display:flex;align-items:center;justify-content:space-between;height:64px}
.site-header img{height:34px;width:auto}
.site-header nav a{font-size:14px;font-weight:600;color:var(--ink);text-decoration:none;margin-left:22px}
.site-header nav a:hover{color:var(--green)}

/* buttons */
.btn{display:inline-block;background:var(--green);color:#fff;font-weight:700;font-size:15px;text-decoration:none;border:0;border-radius:8px;padding:12px 22px;cursor:pointer;font-family:inherit;transition:background .15s,transform .15s}
.btn:hover{background:#23682f;transform:translateY(-1px)}
.btn[disabled]{opacity:.6;cursor:default;transform:none}

/* hero */
.hero .wrap{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center;padding-top:56px;padding-bottom:56px}
.hero h1{font-size:40px;line-height:1.15;letter-spacing:-.02em;font-weight:700;margin:0 0 18px}
.lead{font-size:22px;line-height:1.45;color:var(--muted);font-weight:500;margin:0 0 28px}
/* The animation already contains the phone (transparent edges): no frame of our own. */
.phone{justify-self:center;width:340px}
.phone img{width:100%;height:auto;filter:drop-shadow(0 24px 40px rgba(0,0,0,.22))}

/* intro + video */
.intro{text-align:center;padding:40px 0 72px}
.intro h2,.faq h2,.cta h2{font-size:40px;letter-spacing:-.02em;line-height:1.15;margin:0 0 18px;font-weight:700}
.intro p{max-width:560px;margin:0 auto 36px}
.video{max-width:900px;margin:0 auto;aspect-ratio:16/9;border-radius:20px;overflow:hidden;background:#000}
.video iframe{width:100%;height:100%;border:0;display:block}

/* features */
.features{background:var(--wash);padding:40px 0}
.feature{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center;padding:48px 0}
.feature img{width:300px;justify-self:center}
.feature .copy{text-align:center;max-width:420px;justify-self:center}
.feature h3{font-size:30px;letter-spacing:-.02em;color:var(--ink-strong);margin:0 0 14px;font-weight:700}
.feature p{font-size:21px;color:var(--muted);font-weight:500;margin:0}
.feature:nth-child(even) img{order:2}

/* faq */
.faq{padding:88px 0 40px;text-align:center}
.faq-list{max-width:860px;margin:32px auto 0;background:var(--wash);border-radius:16px;padding:8px 24px;text-align:left}
.faq details{border-bottom:1px solid #e6e6e6}
.faq details:last-child{border-bottom:0}
.faq summary{list-style:none;cursor:pointer;font-weight:700;font-size:17px;padding:18px 0 18px 30px;position:relative}
.faq summary::-webkit-details-marker{display:none}
.faq summary::before{content:"+";position:absolute;left:4px;top:15px;font-size:22px;font-weight:400;color:var(--muted);transition:transform .15s}
.faq details[open] summary::before{transform:rotate(45deg)}
.faq details p{margin:0 0 18px 30px;color:#555;font-size:16px}

/* cta */
.cta{text-align:center;padding:72px 0 96px}

/* footer */
.site-footer{background:var(--green);color:#fff;padding:28px 0}
.site-footer .wrap{display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap}
.site-footer nav a{color:#fff;text-decoration:none;font-size:14px;font-weight:600;margin-right:26px}
.site-footer nav a:hover{text-decoration:underline}
.site-footer small{display:block;margin-top:12px;font-size:13px;opacity:.9}
.social{display:flex;gap:16px}
.social a{color:#fff;display:flex}
.social svg{width:26px;height:26px;fill:currentColor}

/* legal + simple pages */
.page{padding:48px 0 80px}
.page .wrap{max-width:820px}
.page h1{font-size:34px;letter-spacing:-.02em;margin:0 0 4px}
.page .updated{color:#666;margin:0 0 28px}
.page h2{font-size:22px;margin:36px 0 10px;color:var(--ink-strong)}
.page h3{font-size:17px;margin:24px 0 8px;color:var(--ink-strong)}
.page p,.page li{font-size:16px;line-height:1.7}
.page ul,.page ol{padding-left:22px}

/* form */
.form{max-width:460px;margin:28px auto 0;text-align:left}
.form label{display:block;font-size:14px;font-weight:700;margin:18px 0 6px}
.form .hint{font-weight:500;color:var(--muted)}
.form input,.form select{width:100%;font:inherit;font-size:16px;padding:12px 14px;border:1px solid #d5d5d5;border-radius:8px;background:#fff}
.form input:focus,.form select:focus{outline:2px solid var(--green);outline-offset:1px;border-color:var(--green)}
.form .btn{width:100%;margin-top:26px}
.form .hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
.notice{max-width:460px;margin:24px auto 0;padding:14px 16px;border-radius:8px;font-weight:600;text-align:center}
.notice.ok{background:#e8f4ea;color:#1d5a2b}
.notice.err{background:#fdecec;color:#a12626}
.center{text-align:center}

@media (max-width:800px){
  .hero .wrap,.feature{grid-template-columns:1fr;gap:32px;text-align:center}
  .hero .wrap{padding-top:36px}
  .hero h1,.intro h2,.faq h2,.cta h2{font-size:32px}
  .lead,.feature p{font-size:19px}
  .feature:nth-child(even) img{order:0}
  .feature img{width:260px}
  .phone{width:280px;margin:0 auto}
  .site-header nav{display:none}
  .site-footer .wrap{flex-direction:column;align-items:flex-start}
}
