/* Frozen Dutchman Ice - simple, clean one-page site
   Deploy-ready for Netlify (static).
*/
:root{
  --bg:#0b1220;
  --panel:#0f1b33;
  --card:#0f1a2d;
  --card2:#0d1e2a;
  --text:#e9eefc;
  --muted:#b7c2e1;
  --muted2:#93a3c7;
  --accent:#57d1ff;
  --accent2:#8ef2c5;
  --border:rgba(255,255,255,.10);
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius:18px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif; color:var(--text); background: radial-gradient(1000px 600px at 20% -10%, rgba(87,209,255,.20), transparent 60%), radial-gradient(900px 700px at 110% 10%, rgba(142,242,197,.16), transparent 55%), var(--bg); }
a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }
.container{ width:min(1100px, 92vw); margin:0 auto; }

.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.70);
  border-bottom:1px solid var(--border);
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; gap:16px; padding:14px 0; }
.brand{ display:flex; align-items:center; gap:10px; }
.brand-mark{ font-size:20px; }
.brand-text{ display:flex; flex-direction:column; line-height:1.1; }
.brand-name{ font-weight:800; letter-spacing:.2px; }
.brand-tag{ font-size:12px; color:var(--muted2); }

.nav{ display:flex; align-items:center; gap:14px; }
.nav a{ color:var(--muted); font-weight:600; font-size:14px; padding:10px 10px; border-radius:12px; }
.nav a:hover{ background: rgba(255,255,255,.06); text-decoration:none; color:var(--text); }

.nav-toggle{ display:none; background:transparent; border:1px solid var(--border); border-radius:12px; padding:10px; cursor:pointer; }
.nav-toggle span{ display:block; width:22px; height:2px; background:var(--text); margin:4px 0; opacity:.9; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:14px; border:1px solid transparent;
  background: linear-gradient(135deg, rgba(87,209,255,.95), rgba(142,242,197,.85));
  color:#06101e; font-weight:800; box-shadow: var(--shadow);
}
.btn:hover{ text-decoration:none; filter:brightness(1.03); }
.btn-ghost{
  background: transparent; border-color: rgba(255,255,255,.18);
  color:var(--text); box-shadow:none;
}
.btn-small{ padding:10px 12px; font-size:13px; }
.btn-wide{ width:100%; }

.hero{ padding:54px 0 24px; }
.hero-grid{ display:grid; grid-template-columns: 1.1fr .9fr; gap:26px; align-items:start; }
.eyebrow{ color:var(--muted2); margin:0 0 10px; font-weight:600; }
h1{ font-size:44px; line-height:1.05; margin:0 0 14px; letter-spacing:-.6px; }
.accent{ color:var(--accent); }
.lead{ color:var(--muted); font-size:18px; line-height:1.6; margin:0 0 18px; }
.micro{ color:var(--muted2); font-size:13px; margin-top:14px; }
.micro a{ color:var(--text); font-weight:700; }
.hero-points{ display:flex; flex-wrap:wrap; gap:10px; margin:14px 0 18px; }
.pill{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color:var(--text);
  padding:10px 12px;
  border-radius:999px;
  font-weight:700;
  font-size:13px;
}
.cta-row{ display:flex; gap:12px; flex-wrap:wrap; }

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.card-alt{ background: linear-gradient(180deg, rgba(87,209,255,.10), rgba(255,255,255,.02)); }
.divider{ height:1px; background: rgba(255,255,255,.10); margin:14px 0; }
.muted{ color:var(--muted); }

.section{ padding:56px 0; }
.section-alt{ background: rgba(255,255,255,.02); border-top:1px solid rgba(255,255,255,.06); border-bottom:1px solid rgba(255,255,255,.06); }
h2{ font-size:28px; margin:0 0 10px; letter-spacing:-.2px; }
.section-lead{ color:var(--muted); margin:0 0 18px; line-height:1.6; }

.grid-3{ display:grid; grid-template-columns: repeat(3, 1fr); gap:14px; }
.feature{
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:18px;
}
.feature h3{ margin:0 0 8px; }
.feature p{ margin:0; color:var(--muted); line-height:1.55; }

.callout{
  margin-top:18px;
  border-radius: var(--radius);
  padding:18px;
  border:1px solid rgba(87,209,255,.18);
  background: rgba(87,209,255,.06);
}

.steps{ display:grid; gap:14px; }
.step{ display:flex; gap:12px; align-items:flex-start; padding:16px; border-radius:var(--radius); border:1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.03); }
.step-num{
  width:34px; height:34px; border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(142,242,197,.16); border:1px solid rgba(142,242,197,.22);
  color: var(--text); font-weight:900;
}

.two-col{ display:grid; grid-template-columns: 1.05fr .95fr; gap:16px; align-items:start; }
.note{
  margin-top:14px;
  border-radius: var(--radius);
  padding:14px 16px;
  border:1px solid rgba(142,242,197,.18);
  background: rgba(142,242,197,.06);
  color: var(--muted);
}

.form-card{ padding:18px; }
.form-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:12px; }
label{ display:flex; flex-direction:column; gap:6px; font-weight:700; font-size:13px; color:var(--muted); }
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color: var(--text);
  outline:none;
}
input:focus, select:focus, textarea:focus{ border-color: rgba(87,209,255,.55); box-shadow: 0 0 0 4px rgba(87,209,255,.12); }
.full{ grid-column: 1 / -1; }
.hidden{ display:none; }

.faq{ display:grid; gap:10px; }
details{
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:12px 14px;
  background: rgba(255,255,255,.03);
}
summary{ cursor:pointer; font-weight:800; color:var(--text); }
details p{ color:var(--muted); line-height:1.6; margin:10px 0 0; }

.flyer-wrap{
  margin-top:16px;
  display:grid; gap:12px;
  justify-items:center;
}
.flyer-wrap img{
  width:min(520px, 92vw);
  height:auto;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow);
  background:white;
}
.flyer-actions{ display:flex; gap:10px; flex-wrap:wrap; justify-content:center; }

.contact-side{ display:grid; gap:14px; }
.contact-block{ display:grid; gap:10px; margin:14px 0 10px; }
.k{ font-size:12px; color:var(--muted2); font-weight:700; margin-bottom:4px; }

.footer{ padding:28px 0; border-top:1px solid rgba(255,255,255,.08); }
.footer-inner{ display:flex; flex-direction:column; gap:8px; color:var(--muted2); font-size:13px; }

@media (max-width: 920px){
  h1{ font-size:38px; }
  .hero-grid{ grid-template-columns:1fr; }
  .two-col{ grid-template-columns:1fr; }
  .grid-3{ grid-template-columns:1fr; }
}

@media (max-width: 780px){
  .nav{ display:none; position:absolute; top:62px; right:4vw; left:4vw; flex-direction:column; gap:0; padding:10px; border-radius:16px; background: rgba(11,18,32,.96); border:1px solid rgba(255,255,255,.10); }
  .nav a{ width:100%; }
  .nav.open{ display:flex; }
  .nav-toggle{ display:block; }
}

/* Shared highlight pills */
.stat-row{ display:flex; flex-wrap:wrap; gap:10px; margin-top:12px; }
.stat{
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
  padding:10px 12px;
  border-radius:999px;
  color: rgba(255,255,255,.85);
  font-weight:800;
  font-size:13px;
}

/* Customer comments */
.comments-list{ display:grid; gap:12px; }
.comment{
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  border-radius: 16px;
  padding: 12px 14px;
}
.comment-head{ font-size: 13px; margin-bottom: 6px; }
.comment-body{ color: rgba(255,255,255,.82); line-height: 1.6; white-space: pre-wrap; }
