:root{
  --bg:#fafaf9;
  --bg-alt:#f5f5f4;
  --text:#1c1917;
  --muted:#57534e;
  --card:#ffffff;
  --border:#e7e5e4;
  --accent:#c41e0a;
  --accent-hover:#a61a09;
  --radius:16px;
  --radius-lg:24px;
  --shadow:0 4px 24px rgba(0,0,0,0.06);
  --shadow-hover:0 12px 40px rgba(0,0,0,0.08);
}

html,body{height:100%}
body{
  margin:0;
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background:var(--bg);
  color:var(--text);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

*{box-sizing:border-box}

a{color:inherit;text-decoration:none}
a:hover{text-decoration:underline}

.skip-link{
  position:absolute;
  left:-9999px;
  top:10px;
  background:#000;
  color:#fff;
  padding:10px 14px;
  border-radius:10px;
  z-index:9999;
}
.skip-link:focus{left:10px}

.container{
  max-width:980px;
  margin:0 auto;
  padding:0 18px;
}

header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(250,250,249,0.92);
  border-bottom:1px solid var(--border);
  backdrop-filter:blur(12px);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:16px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo-mark{
  background:transparent;
  border-radius:0;
  padding:0;
  display:inline-flex;
  align-items:center;
  justify-content:flex-start;
  height:46px;
  overflow:hidden;
}

.logo-mark img{
  width:180px;
  height:46px;
  object-fit:contain; /* we already cropped the baked background out */
  object-position:center;
  display:block;
}

nav[aria-label="Primary navigation"] ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  gap:16px;
  /* Keep top navigation aligned on a single row to avoid "staggering" */
  flex-wrap:nowrap;
  align-items:center;
  justify-content:flex-end;
}

nav a{
  font-size:14px;
  font-weight:500;
  color:var(--muted);
  padding:6px 12px;
  border-radius:999px;
  transition:color .2s ease, background .2s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  /* Consistent vertical alignment across fonts/sizes */
  line-height:1;
}

nav a:hover{color:var(--text); background:var(--bg-alt); text-decoration:none}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  border-radius:999px;
  font-size:14px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--text);
  box-shadow:none;
}
.btn:hover{
  background:#fff;
  border-color:#cfcfcb;
  text-decoration:none;
}

.btn-primary{
  background:var(--accent);
  border-color:var(--accent);
  color:#fff;
  font-weight:600;
  box-shadow:var(--shadow);
}
.btn-primary:hover{
  background:var(--accent-hover);
  border-color:var(--accent-hover);
  box-shadow:var(--shadow-hover);
}

.btn-secondary{
  background:transparent;
  border-color:rgba(227,227,224,0.95);
  box-shadow:none;
}

.btn-secondary:hover{
  background:#fff;
}

.btn-hero-primary{
  background:#fff;
  border-color:var(--border);
  color:var(--accent);
  box-shadow:var(--shadow);
  font-weight:600;
}
.btn-hero-primary:hover{
  background:#fff;
  border-color:var(--muted);
  box-shadow:var(--shadow-hover);
}

main{padding:32px 0 64px}

.hero{
  padding:80px 20px 56px;
  position:relative;
  overflow:hidden;
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
}

.hero-content{
  max-width:820px;
  margin:0 auto;
  text-align:center;
  padding:48px 40px;
  border-radius:var(--radius-lg);
  background:rgba(255,255,255,0.88);
  border:1px solid rgba(231,229,228,0.8);
  backdrop-filter:blur(14px);
  box-shadow:var(--shadow);
}
.hero h1{
  margin:0 0 14px 0;
  font-size:clamp(32px, 5vw, 52px);
  font-weight:700;
  line-height:1.12;
  letter-spacing:-0.03em;
  color:var(--text);
}
.hero p{
  margin:0 auto;
  max-width:640px;
  color:var(--muted);
  font-size:17px;
  line-height:1.65;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(180deg, rgba(250,250,249,0.94) 0%, rgba(250,250,249,0.82) 50%, rgba(250,250,249,0.94) 100%),
    url("/images/hero-bg.jpg");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  z-index:0;
  pointer-events:none;
}

.hero > *{
  position:relative;
  z-index:1;
}

.hero-wave{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:64px;
  z-index:1;
}

.hero::before{
  transform: scale(1.06);
  transform-origin: center;
  animation: none;
}

.hero-content{
  animation: none;
}

.hero-content .btn-primary{
  animation: none;
}

@keyframes heroBg{
  0% { transform: scale(1.04); opacity: 1; }
  50% { transform: scale(1.09); opacity: 1; }
  100% { transform: scale(1.04); opacity: 1; }
}

@keyframes heroFadeUp{
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes heroBtnIn{
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce){
  .hero::before,
  .hero-content,
  .hero-content .btn-primary{
    animation: none !important;
  }
}

.hero-actions{
  margin-top:22px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
}

.hero-pill{
  display:inline-block;
  font-size:12px;
  color:var(--muted);
  border:1px solid rgba(227,227,224,0.9);
  background:rgba(255,255,255,0.7);
  padding:7px 12px;
  border-radius:999px;
  margin-bottom:14px;
  letter-spacing:0.01em;
}

.section{
  padding:56px 20px;
  scroll-margin-top:88px;
  margin-left:0;
  margin-right:0;
  text-align:left;
}
.section-alt{
  /* Use a pseudo-element for the background so content alignment stays consistent. */
  background:transparent;
  /* Align content exactly like non-alt sections */
  margin-left:0;
  margin-right:0;
  /* Keep internal content aligned with non-alt sections */
  padding-left:20px;
  padding-right:20px;
  position:relative;
  z-index:0;
}

.section-alt::before{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:50%;
  width:100vw;
  transform:translateX(-50%);
  background:var(--bg-alt);
  z-index:-1;
}
.section-heading{
  margin:0 0 12px 0;
  font-size:clamp(26px, 3.2vw, 34px);
  font-weight:700;
  letter-spacing:-0.02em;
  color:var(--text);
}
.section-lead{
  margin:0 0 28px 0;
  max-width:640px;
  color:var(--muted);
  font-size:17px;
  line-height:1.65;
}
.muted{ color:var(--muted); }
.section p{
  margin:0 0 14px 0;
  color:var(--muted);
  line-height:1.65;
}

.grid{
  display:grid;
  gap:14px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-inline{
  display:flex;
  flex-wrap:wrap;
  gap:10px 14px;
  align-items:center;
  font-size:15px;
}

.service-sep{
  color:rgba(227,227,224,0.95);
  font-size:14px;
  line-height:1;
  margin:0 2px;
}

.steps{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
  color:var(--muted);
  font-size:14px;
}

.step{
  font-weight:600;
  color:var(--text);
}

.step-sep{
  color:rgba(227,227,224,0.95);
}

.card{
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:28px 26px;
  background:var(--card);
  box-shadow:var(--shadow);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card h3{
  margin:0 0 10px 0;
  font-size:17px;
  font-weight:600;
  color:var(--text);
  letter-spacing:-0.01em;
}
.card p{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.65;
}

.card:hover{
  transform:translateY(-2px);
  border-color:var(--border);
  box-shadow:var(--shadow-hover);
}

.offer-grid{
  display:grid;
  gap:16px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px){
  .offer-grid{ grid-template-columns: repeat(2, 1fr); }
}

.offer-card{
  padding:30px 28px 26px;
  border-radius:var(--radius-lg);
  background:var(--card);
  position:relative;
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
}

.offer-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg, var(--accent), var(--accent-hover));
  border-radius:var(--radius-lg) var(--radius-lg) 0 0;
}

.offer-card h3{
  margin-top:4px;
  font-weight:600;
}

.feature-grid{
  display:grid;
  gap:16px;
  grid-template-columns: 1fr;
}

.offer-grid,
.feature-grid{
  max-width:1000px;
  margin:0 auto;
}

@media (min-width: 640px){
  .feature-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px){
  .feature-grid{ grid-template-columns: repeat(3, 1fr); }
}

.feature-card{
  background:var(--card);
  position:relative;
  overflow:hidden;
  border:1px solid var(--border);
}

.feature-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg, var(--accent), var(--accent-hover));
  border-radius:var(--radius-lg) var(--radius-lg) 0 0;
  z-index:0;
  pointer-events:none;
}

.feature-card > *{
  position:relative;
  z-index:1;
}

.hero-kicker{
  font-size:12px;
  font-weight:600;
  color:var(--accent);
  letter-spacing:0.08em;
  text-transform:uppercase;
  margin-bottom:16px;
}

.mini-list{
  margin:0;
  padding-left:20px;
  color:var(--muted);
  line-height:1.75;
  font-size:15px;
}
.mini-list li{ margin-bottom:6px; }
.mini-list li:last-child{ margin-bottom:0; }

.list{
  margin:0;
  padding-left:18px;
  color:var(--muted);
  line-height:1.7;
}

.form{
  display:grid;
  gap:12px;
  max-width:720px;
}
.field label{
  display:block;
  font-size:14px;
  margin-bottom:6px;
  color:var(--muted);
}
.field input,.field textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius:12px;
  padding:12px 14px;
  font-size:15px;
  background:#fff;
  color:var(--text);
}
.field textarea{min-height:120px; resize:vertical}
.note{
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
}
.status{
  border:1px solid var(--border);
  background:#fff;
  border-radius:12px;
  padding:14px;
  color:var(--text);
}

footer{
  border-top:1px solid var(--border);
  padding:40px 0;
  color:var(--muted);
  font-size:14px;
  background:var(--bg-alt);
}

.footer-inner{
  display:flex;
  flex-wrap:wrap;
  gap:24px;
  justify-content:space-between;
  align-items:flex-start;
}
.footer-brand strong{
  display:block;
  color:var(--text);
  font-size:15px;
  margin-bottom:4px;
}
.footer-tagline{
  margin:0;
  font-size:13px;
  color:var(--muted);
  max-width:280px;
  line-height:1.5;
}
.footer-contact{
  text-align:right;
}
.footer-contact a{
  font-weight:500;
  color:var(--text);
}
.footer-contact a:hover{ color:var(--accent); text-decoration:none; }
.footer-sep{
  margin:0 8px;
  color:var(--border);
}
.footer-location{
  margin:6px 0 0 0;
  font-size:13px;
  color:var(--muted);
}

@media (max-width: 640px){
  .logo-mark{height:42px; padding:7px 9px}
  .logo-mark img{width:130px; height:28px}
  .header-inner{flex-direction:column; align-items:flex-start}
  /* On small screens, allow wrapping but keep alignment consistent */
  nav[aria-label="Primary navigation"] ul{justify-content:flex-start; flex-wrap:wrap}
  .hero{padding-top:26px}
  .hero-actions{justify-content:center}

  /* Mobile spacing tweaks */
  .section{padding:48px 16px}
  .section-alt{padding-left:16px; padding-right:16px}
  .section-heading{font-size:clamp(24px, 6.5vw, 30px)}
  .section-lead{margin-bottom:22px; font-size:16px}
  .card{padding:22px 18px}
}

