:root{
  --ink:#15222D;
  --ink-soft:#4b5a64;
  --paper:#FCFBF8;
  --panel:#F3F1EA;
  --stamp:#B8202E;
  --teal:#1C6360;
  --rule:#C9C5B9;
  --measure:64ch;
}
:root:not([data-theme="light"]){
  color-scheme: light;
}
@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]){
    --ink:#EDEAE1;
    --ink-soft:#A8B0B5;
    --paper:#14191D;
    --panel:#1D2429;
    --stamp:#E8626C;
    --teal:#5FB3AE;
    --rule:#3A444B;
    color-scheme: dark;
  }
}
:root[data-theme="dark"]{
  --ink:#EDEAE1;
  --ink-soft:#A8B0B5;
  --paper:#14191D;
  --panel:#1D2429;
  --stamp:#E8626C;
  --teal:#5FB3AE;
  --rule:#3A444B;
  color-scheme: dark;
}

*{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:"Archivo","Helvetica Neue",Arial,sans-serif;
  font-size:17px;
  line-height:1.6;
  font-synthesis-weight:none;
}
img{max-width:100%;height:auto}
a{color:inherit}
.wrap{width:min(1080px,92vw);margin-inline:auto}

/* ---------- masthead ---------- */
.masthead{
  border-bottom:2px solid var(--ink);
  background:var(--paper);
  position:sticky;top:0;z-index:20;
}
.masthead .wrap{
  display:flex;align-items:center;justify-content:space-between;
  gap:1rem;padding:.85rem 0;flex-wrap:wrap;
}
.logo{
  font-weight:800;letter-spacing:-.025em;font-size:1.22rem;line-height:1.1;
  text-decoration:none;
}
.logo span{display:block;font-weight:500;font-size:.74rem;letter-spacing:.02em;color:var(--ink-soft)}
nav ul{display:flex;gap:1.1rem;list-style:none;margin:0;padding:0;flex-wrap:wrap}
nav a{text-decoration:none;font-size:.92rem;font-weight:500;padding-bottom:2px;border-bottom:2px solid transparent}
nav a:hover,nav a:focus-visible{border-bottom-color:var(--stamp)}
.callnow{
  font-weight:600;font-size:.95rem;text-decoration:none;
  border:2px solid var(--ink);padding:.36rem .8rem;white-space:nowrap;
}
.callnow:hover{background:var(--ink);color:var(--paper)}
/* when the menu doesn't fit on one line: logo and phone on top, menu on its own row below */
@media(max-width:1240px){
  .masthead nav{order:3;flex-basis:100%}
}

/* ---------- hero ---------- */
.hero{padding:4rem 0 2.5rem}
.hero h1{
  font-size:clamp(2.1rem,6.2vw,4rem);
  font-weight:800;letter-spacing:-.035em;line-height:1.02;
  margin:0 0 1.1rem;max-width:18ch;
}
.hero p.lede{
  font-size:clamp(1.02rem,2.1vw,1.19rem);
  max-width:var(--measure);margin:0 0 2rem;color:var(--ink-soft);
}
.hero-actions{display:flex;gap:.8rem;flex-wrap:wrap;margin-bottom:3rem}
.btn{
  display:inline-block;text-decoration:none;font-weight:600;
  padding:.7rem 1.4rem;border:2px solid var(--ink);
}
.btn-solid{background:var(--ink);color:var(--paper)}
.btn-solid:hover{background:var(--stamp);border-color:var(--stamp)}
.btn-ghost:hover{background:var(--panel)}

/* ---------- ticket strip (the six territories) ---------- */
.strip{
  display:grid;grid-template-columns:repeat(6,1fr);
  border:2px solid var(--ink);
}
.ticket{
  padding:1.15rem .8rem 1.25rem;
  border-right:2px dashed var(--rule);
  text-align:left;text-decoration:none;display:block;
  background:var(--paper);
}
.ticket:last-child{border-right:none}
.ticket:hover,.ticket:focus-visible{background:var(--panel)}
.ticket b{display:block;font-weight:800;font-size:1.02rem;letter-spacing:-.02em;line-height:1.15}
.ticket i{
  display:block;font-style:normal;font-size:.8rem;color:var(--ink-soft);
  margin-top:.35rem;
}
.ticket em{
  font-style:normal;color:var(--stamp);font-weight:600;font-size:.8rem;
  display:block;margin-top:.5rem;
}
@media(max-width:860px){
  .strip{grid-template-columns:repeat(2,1fr)}
  .ticket{border-right:2px dashed var(--rule);border-bottom:2px dashed var(--rule)}
  .ticket:nth-child(2n){border-right:none}
  .ticket:nth-last-child(-n+2){border-bottom:none}
}

/* ---------- sections ---------- */
section{padding:3.4rem 0}
.perf{border-top:2px dashed var(--rule)}
h2{
  font-size:clamp(1.5rem,3.4vw,2.1rem);font-weight:800;
  letter-spacing:-.03em;line-height:1.1;margin:0 0 .6rem;
}
h2 + p.sub{color:var(--ink-soft);max-width:var(--measure);margin:0 0 2rem}
h3{font-size:1.06rem;font-weight:800;letter-spacing:-.015em;margin:0 0 .4rem}

/* territory detail */
/* two big maps per row on desktop, one per row on phones */
.terr-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(420px,100%),1fr));gap:0;border:2px solid var(--ink)}
.terr{padding:1.4rem;border-right:2px dashed var(--rule);border-bottom:2px dashed var(--rule)}
.terr img{width:100%;height:auto;border:2px solid var(--ink);margin-top:.9rem;display:block}
.terr a:hover img,.terr a:focus-visible img{border-color:var(--stamp)}
.terr p{margin:.3rem 0 0;font-size:.93rem;color:var(--ink-soft)}
.terr .zips{margin-top:.7rem;font-size:.87rem;color:var(--ink)}
.terr-soon{opacity:.75}
.terr-soon h3 span{color:var(--stamp);font-weight:600;font-size:.78rem}

/* rates */
.rates{width:100%;border-collapse:collapse;font-size:.98rem}
.rates caption{text-align:left;color:var(--ink-soft);font-size:.9rem;padding-bottom:.7rem}
.rates th,.rates td{text-align:left;padding:.72rem .6rem;border-bottom:1px solid var(--rule)}
.rates thead th{border-bottom:2px solid var(--ink);font-weight:600;font-size:.86rem}
.rates td:not(:first-child),.rates th:not(:first-child){text-align:left}
.rates tbody tr:hover{background:var(--panel)}
/* highlighted note box (under the rates table and the "who advertises" grid) */
.note{
  margin:1.3rem 0 0;padding:1.1rem 1.25rem;background:var(--panel);
  border-left:4px solid var(--stamp);max-width:var(--measure);font-size:.95rem;
}
.table-scroll{overflow-x:auto}

/* schedule */
.sched{width:100%;border-collapse:collapse;font-size:.98rem}
.sched th,.sched td{text-align:left;padding:.72rem .6rem;border-bottom:1px solid var(--rule)}
.sched thead th{border-bottom:2px solid var(--ink);font-weight:600;font-size:.86rem}

/* specs + samples */
.two-col{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:2.4rem}
ul.plain{list-style:none;padding:0;margin:0}
ul.plain li{padding:.42rem 0;border-bottom:1px solid var(--rule);font-size:.95rem;display:flex;justify-content:space-between;gap:1rem}
ul.plain li span{color:var(--ink-soft)}

.samples{display:grid;grid-template-columns:repeat(auto-fit,minmax(170px,1fr));gap:1rem}
/* each sample is a cover picture that opens the PDF in a new tab */
.sample{
  border:2px solid var(--ink);text-decoration:none;display:block;background:var(--panel);
}
.sample:hover,.sample:focus-visible{border-color:var(--stamp)}
.sample img{display:block;width:100%;aspect-ratio:600/777;object-fit:cover;border-bottom:2px solid var(--ink)}
.sample b{display:block;font-weight:800;letter-spacing:-.02em;padding:.75rem 1rem 0}
.sample i{display:block;padding:.15rem 1rem .85rem;font-style:normal;font-size:.82rem;color:var(--stamp);font-weight:600}

/* contact */
.testimonials{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.5rem}
.stat-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));border:2px solid var(--ink)}
.fit-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));border:2px solid var(--ink);margin-bottom:1.6rem}
.fit{padding:1.3rem 1.1rem;border-right:2px dashed var(--rule);border-bottom:2px dashed var(--rule)}
.fit h3{margin:0 0 .35rem;font-size:1rem}
.fit p{margin:0;font-size:.86rem;color:var(--ink-soft);line-height:1.45}
.why-grid .fit:last-child{border-right:none}
.stat{padding:1.5rem 1.1rem;border-right:2px dashed var(--rule);border-bottom:2px dashed var(--rule)}
.stat:last-child{border-right:none}
.stat b{display:block;font-size:2.1rem;font-weight:800;letter-spacing:-.03em;color:var(--stamp);line-height:1}
.stat span{display:block;margin-top:.5rem;font-size:.88rem;color:var(--ink-soft);line-height:1.4}
@media(max-width:640px){.stat-grid{grid-template-columns:repeat(2,1fr)}.stat:nth-child(2n){border-right:none}}
.about-box{display:grid;grid-template-columns:minmax(160px,220px) 1fr;gap:2.2rem;align-items:start}
.about-box p{margin:0 0 1rem;font-size:1rem;line-height:1.65;max-width:var(--measure)}
.about-box p:last-child{margin-bottom:0}
.about-photo{
  width:100%;aspect-ratio:1/1;border:2px solid var(--ink);background:var(--panel);
  display:block;object-fit:cover;
}
@media(max-width:640px){.about-box{grid-template-columns:1fr}.about-photo{max-width:160px}}
.testimonial{border:2px solid var(--ink);padding:1.5rem;background:var(--panel)}
.testimonial p{margin:0 0 1rem;font-size:1.02rem;line-height:1.55}
.testimonial cite{font-style:normal;font-weight:700;font-size:.88rem}
.testimonial cite span{display:block;font-weight:500;color:var(--ink-soft);font-size:.85rem;margin-top:.15rem}

.contact-box{
  border:2px solid var(--ink);padding:2rem;background:var(--panel);
  display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:2rem;
}
.big-phone{font-size:clamp(1.5rem,4.5vw,2.1rem);font-weight:800;letter-spacing:-.03em;text-decoration:none;display:inline-block}
.big-phone:hover{color:var(--stamp)}
form{display:grid;gap:.7rem}
.hidden{display:none}
label{font-size:.85rem;font-weight:600}
input,select,textarea{
  font:inherit;font-size:.95rem;padding:.6rem;border:2px solid var(--rule);
  background:var(--paper);color:var(--ink);width:100%;border-radius:0;
}
input:focus,select:focus,textarea:focus{outline:2px solid var(--stamp);outline-offset:1px;border-color:var(--ink)}
button[type=submit]{
  font:inherit;font-weight:600;padding:.7rem 1.4rem;cursor:pointer;
  background:var(--ink);color:var(--paper);border:2px solid var(--ink);border-radius:0;
}
button[type=submit]:hover{background:var(--stamp);border-color:var(--stamp)}

footer{border-top:2px solid var(--ink);padding:1.8rem 0 2.6rem;font-size:.88rem;color:var(--ink-soft)}
footer .wrap{display:flex;justify-content:space-between;gap:1rem;flex-wrap:wrap}

a:focus-visible,button:focus-visible{outline:3px solid var(--stamp);outline-offset:2px}
@media (prefers-reduced-motion: reduce){*{transition:none!important;animation:none!important}}
