:root{
  --bg: #ffffff;
  --text: #0b0b0b;
  --muted: #5b5b5b;
  --silver: #c7c7c7;
  --silver2:#e9e9e9;
  --line: rgba(0,0,0,.12);
  --red: #c1121f;
  --red2:#9b0e18;
  --shadow: 0 10px 30px rgba(0,0,0,.10);
  --radius: 18px;
  --max: 1120px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  --serif: ui-serif, Georgia, "Times New Roman", Times, serif;
}

*{box-sizing:border-box}
html,body{margin:0; padding:0; background:var(--bg); color:var(--text); font-family:var(--font); line-height:1.5}
a{color:inherit; text-decoration:none}
a:hover{color:var(--red)}
img{max-width:100%; height:auto; display:block}

.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.divider{height:1px; background:var(--line)}

.topbar{
  background:linear-gradient(90deg, #fff, #fff);
  border-bottom:1px solid var(--line);
  font-size:14px;
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0;
  gap:12px;
}
.topbar-left{display:flex; align-items:center; gap:14px; flex-wrap:wrap; color:var(--muted)}
.topbar-left a{color:var(--text); font-weight:600}
.topbar-left a:hover{color:var(--red)}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 10px; border:1px solid var(--line);
  border-radius:999px; background:#fff;
}
.pill svg{width:16px; height:16px; color:var(--red)}
.social{
  display:flex; align-items:center; gap:10px;
}
.social .label{color:var(--muted); font-weight:600; margin-right:6px}
.iconbtn{
  display:inline-flex; align-items:center; justify-content:center;
  width:36px; height:36px; border-radius:12px;
  border:1px solid var(--line); background:#fff;
  transition:transform .12s ease, border-color .12s ease;
}
.iconbtn:hover{transform:translateY(-1px); border-color:rgba(0,0,0,.28); color:var(--red)}
.iconbtn svg{width:18px; height:18px}

.header{
  position:relative; top:0; z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(150%) blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex; justify-content:center;
}
.brand a{display:inline-flex; align-items:center; gap:12px}
.brand img{
  width:min(320px, 70vw);
  height:auto;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.10));
}
.header-cta{
  display:flex; justify-content:flex-end; gap:10px; align-items:center;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  font-weight:800;
  letter-spacing:.2px;
}
.btn:hover{border-color:rgba(0,0,0,.28)}
.btn.primary{
  background:linear-gradient(180deg, var(--red), var(--red2));
  color:#fff;
  border-color:rgba(0,0,0,.1);
  box-shadow:0 10px 18px rgba(193,18,31,.22);
}
.btn.primary:hover{filter:brightness(1.03)}
.btn.ghost{background:transparent}

.nav{
  display:flex; justify-content:flex-start; gap:14px; align-items:center;
  flex-wrap:wrap;
  padding:10px 0 14px;
}
.nav a{
  padding:8px 10px;
  border-radius:12px;
  font-weight:750;
  color:var(--text);
}
.nav a.active{
  background:rgba(193,18,31,.08);
  color:var(--red);
}
.nav a:hover{background:rgba(0,0,0,.04)}

.hero{
  padding:42px 0 22px;
  background:
    radial-gradient(900px 300px at 50% 0%, rgba(193,18,31,.10), rgba(255,255,255,0) 65%),
    radial-gradient(900px 340px at 50% 100%, rgba(0,0,0,.06), rgba(255,255,255,0) 60%);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:center;
}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  font-weight:900; letter-spacing:.3px;
  color:var(--red);
  text-transform:uppercase;
  font-size:12px;
}
.h1{
  margin:10px 0 10px;
  font-family:var(--serif);
  font-size: clamp(30px, 4vw, 44px);
  line-height:1.1;
}
.sub{
  color:var(--muted);
  font-size: clamp(16px, 2vw, 18px);
  margin:0 0 14px;
}
.hero-card{
  background:linear-gradient(180deg, #fff, #fafafa);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px;
}
.hero-card h3{margin:0 0 8px; font-size:16px}
.hero-card ul{margin:0; padding-left:18px; color:var(--muted)}
.badge-row{
  display:flex; gap:10px; flex-wrap:wrap; margin-top:12px
}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  font-weight:800;
  font-size:13px;
}
.badge span.dot{
  width:10px; height:10px; border-radius:999px; background:var(--red);
  box-shadow:0 0 0 4px rgba(193,18,31,.12);
}

.section{padding:26px 0}
.section h2{
  margin:0 0 8px;
  font-family:var(--serif);
  font-size: clamp(22px, 3vw, 30px);
}
.section p{margin:0 0 14px; color:var(--muted)}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.grid-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow: 0 12px 28px rgba(0,0,0,.07);
  padding:18px;
}
.card h3{margin:0 0 8px; font-size:18px}
.card p{margin:0; color:var(--muted)}
.card .more{margin-top:12px; display:flex; gap:10px; flex-wrap:wrap}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:start;
}

.list{
  margin:0; padding-left:18px; color:var(--muted);
}
.callout{
  border-left:4px solid var(--red);
  padding:12px 14px;
  background:linear-gradient(180deg, rgba(193,18,31,.06), rgba(193,18,31,.02));
  border-radius:14px;
  border:1px solid rgba(193,18,31,.20);
}
.callout strong{color:var(--text)}
.hr{height:1px; background:var(--line); margin:18px 0}

.form{
  display:grid;
  gap:10px;
}
.field label{
  display:block; font-weight:850; margin-bottom:6px;
}
.field input, .field textarea, .field select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  outline:none;
  font-size:15px;
  background:#fff;
}
.field input:focus, .field textarea:focus, .field select:focus{
  border-color: rgba(193,18,31,.55);
  box-shadow:0 0 0 4px rgba(193,18,31,.10);
}
.field textarea{min-height:120px; resize:vertical}
.small{font-size:13px; color:var(--muted)}

.photo{
  border-radius:16px;
  border:1px dashed rgba(0,0,0,.25);
  background:
    linear-gradient(135deg, rgba(0,0,0,.04), rgba(0,0,0,.02)),
    repeating-linear-gradient(45deg, rgba(0,0,0,.06), rgba(0,0,0,.06) 10px, rgba(0,0,0,0) 10px, rgba(0,0,0,0) 20px);
  aspect-ratio: 16/10;
  display:flex; align-items:center; justify-content:center;
  color:rgba(0,0,0,.55);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.25em;
}
.dual{
  display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:12px;
}
.dual .mini{
  border:1px solid var(--line);
  border-radius:16px;
  padding:12px;
  background:linear-gradient(180deg, #fff, #fafafa);
}
.dual .mini h4{margin:0 0 6px}
.dual .mini p{margin:0; color:var(--muted); font-size:14px}

.quote{
  padding:16px 18px;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:linear-gradient(180deg, #fff, #fafafa);
}
.quote .who{font-weight:900; margin-top:10px}
.stars{letter-spacing:2px; color:var(--red); font-weight:900}

.footer{
  margin-top:18px;
  padding:18px 0;
  border-top:1px solid var(--line);
  background:#fff;
}
.footer-inner{
  display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap;
  color:var(--muted);
  font-size:14px;
}
.footer a{font-weight:800}

@media (max-width: 920px){
  .hero-grid{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .header-inner{grid-template-columns: 1fr; gap:10px}
  .brand{justify-content:center}
  .header-cta{justify-content:flex-start}
  .brand img{width:min(320px, 86vw)}
  .nav{justify-content:flex-start}
}
/* =========================
   Mobile polish (phones)
   ========================= */
@media (max-width: 520px){

  /* Top bar: stack neatly, tighten spacing */
  .topbar-inner{
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .topbar-left{
    justify-content: center;
    gap: 8px;
  }

  .topbar-left .pill{
    width: 100%;
    justify-content: center;
  }

  .social{
    justify-content: center;
    gap: 10px;
  }
  .social .label{
    display: none; /* hides "View our social media" to save vertical space */
  }

  /* Header: reduce vertical padding */
  .header-inner{
    padding: 10px 0;
    gap: 10px;
  }

  /* Logo: make it smaller on phones */
  .brand img{
    width: min(240px, 82vw);
  }

  /* Buttons: full width, stacked (more “mobile app” feel) */
  .header-cta{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    justify-content: center;
  }
  .header-cta .btn{
    width: 100%;
  }

  /* Nav: convert to a clean 3-column grid */
  .nav{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px 0 12px;
  }
  .nav a{
    text-align: center;
    padding: 10px 8px;
    font-size: 14px;
    border: 1px solid rgba(0,0,0,.08);
    background: rgba(0,0,0,.02);
  }
    .nav a.active{
    border-color: rgba(193,18,31,.28);
    background: rgba(193,18,31,.08);
  }
} /* ✅ CLOSES max-width:520px */


/* =========================
   Desktop navbar centering
   ========================= */
@media (min-width: 921px){
  .nav{
    justify-content: center;
  }
}

