:root {
  --cream: #F2EAD5;
  --cream-dark: #E8DEC1;
  --orange: #C96C2C;
  --orange-dark: #A85415;
  --green: #4F8C3A;
  --green-dark: #3D6F2B;
  --blue: #5991BC;
  --blue-dark: #3D7BA5;
  --ink: #1E1A16;
  --ink-soft: #4A3F33;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width:100%; display:block; }
a { color: var(--orange-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, .slab {
  font-family: 'Alfa Slab One', 'Archivo Black', serif;
  font-weight: normal;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

/* Flyer-style cream fill with dark outline (matches the printed flyer) */
.outlined {
  color: #F2EAD5;
  -webkit-text-stroke: 3px #1E1A16;
  text-shadow:
    4px 4px 0 #1E1A16,
    4px 5px 0 #1E1A16;
  paint-order: stroke fill;
}
@media (max-width: 700px) {
  .outlined {
    -webkit-text-stroke: 2px #1E1A16;
    text-shadow: 3px 3px 0 #1E1A16;
  }
}

/* ====================== NAV ====================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--cream);
  border-bottom: 3px solid var(--ink);
}
.nav-inner {
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 24px; max-width: 1180px; margin: 0 auto;
}
.brand {
  display:flex; align-items:center; gap:12px;
  font-family: 'Alfa Slab One', serif;
  font-size: 18px; color: var(--ink);
}
.brand-mark {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--cream);
  display:grid; place-items:center;
  border: 3px solid var(--ink);
  overflow: hidden;
}
.brand-mark img { width: 90%; height: auto; display:block; }
.nav-links { display:flex; gap: 28px; align-items:center; }
.nav-links a {
  color: var(--ink); font-weight: 600; font-size: 15px; text-decoration: none;
}
.nav-links a:hover { color: var(--orange-dark); }
.nav-cta {
  background: var(--orange); color: var(--cream) !important;
  padding: 10px 18px; border-radius: 999px;
  border: 3px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform .15s ease, box-shadow .15s ease;
  font-family: 'Alfa Slab One', serif !important;
  font-size: 14px !important;
}
.nav-cta:hover { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 var(--ink); text-decoration: none; }
.nav-cta:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--ink); }
.menu-toggle { display:none; background:none; border:none; cursor:pointer; font-size:28px; color:var(--ink); }

@media (max-width: 780px) {
  .nav-links { display:none; position:absolute; top:100%; left:0; right:0; background: var(--cream); flex-direction:column; padding: 20px; border-bottom: 3px solid var(--ink); gap:16px; }
  .nav-links.open { display:flex; }
  .menu-toggle { display:block; }
}

/* ====================== HERO ====================== */
.hero {
  position: relative;
  padding: 80px 0 100px;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(89,145,188,.2), transparent 60%),
    radial-gradient(ellipse at 10% 90%, rgba(79,140,58,.25), transparent 55%),
    var(--cream);
  overflow: hidden;
  border-bottom: 4px solid var(--ink);
}
.hero-grid {
  display:grid; grid-template-columns: 1.1fr .9fr; gap: 60px;
  align-items: center;
}
.eyebrow {
  display:inline-block;
  font-family: 'Alfa Slab One', serif;
  font-size: 13px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--cream); background: var(--green);
  padding: 6px 14px; border-radius: 4px;
  border: 2px solid var(--ink);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(54px, 10vw, 128px);
  color: var(--ink);
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 0.98;
}
.hero h1 .orange { color: var(--orange); }
.hero h1 .green { color: var(--green); }
.hero h1 .blue { color: var(--blue-dark); }
.hero-sub {
  font-size: 20px; color: var(--ink-soft);
  max-width: 520px; margin-bottom: 36px;
  font-weight: 500;
}
.hero-ctas { display:flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display:inline-flex; align-items:center; gap: 10px;
  padding: 16px 28px;
  font-family: 'Alfa Slab One', serif;
  font-size: 18px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .15s ease, box-shadow .15s ease;
  cursor: pointer;
}
.btn:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--ink); text-decoration:none; }
.btn:active { transform: translate(3px,3px); box-shadow: 1px 1px 0 var(--ink); }
.btn-primary { background: var(--orange); color: var(--cream) !important; }
.btn-secondary { background: var(--cream); color: var(--ink) !important; }
.btn-green { background: var(--green); color: var(--cream) !important; }
.btn-block { display:flex; width:100%; justify-content:center; }

/* Mascot illustration */
.mascot-wrap {
  position: relative; aspect-ratio: 1/1; max-width: 480px; margin-left: auto;
}
.mascot-ring {
  position: absolute; inset: 0;
  background: var(--cream);
  border: 6px solid var(--ink);
  border-radius: 50%;
  box-shadow: 12px 12px 0 var(--orange), 12px 12px 0 4px var(--ink);
}
.mascot-img {
  position: absolute; inset: 6%; width: 88%; height: 88%;
  object-fit: contain;
  z-index: 2;
}
.hero-sticker {
  position: absolute;
  background: var(--blue); color: var(--cream);
  font-family: 'Alfa Slab One', serif;
  padding: 12px 18px; border-radius: 8px;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  text-transform: uppercase; font-size: 14px;
  transform: rotate(-6deg);
}
.hero-sticker.s1 { top: 6%; right: -4%; background: var(--green); }
.hero-sticker.s2 { bottom: 10%; left: -8%; background: var(--orange); transform: rotate(4deg); }

@media (max-width: 900px) {
  .hero { padding: 50px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .mascot-wrap { margin: 0 auto; max-width: 340px; }
  .hero-sticker.s1 { right: 0; }
  .hero-sticker.s2 { left: 0; }
}

/* ====================== SECTIONS ====================== */
section { padding: 90px 0; border-bottom: 4px solid var(--ink); }
.section-head { text-align:center; max-width: 780px; margin: 0 auto 60px; }
.section-head h2 {
  font-size: clamp(36px, 5vw, 60px);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-head p { font-size: 18px; color: var(--ink-soft); }

/* Breadcrumbs (city/service pages) */
.crumbs {
  background: var(--cream);
  border-bottom: 3px solid var(--ink);
  padding: 14px 0;
  font-size: 14px;
  font-weight: 600;
}
.crumbs a { color: var(--ink-soft); }
.crumbs a:hover { color: var(--orange-dark); }
.crumbs .sep { margin: 0 10px; color: var(--ink-soft); }
.crumbs .current { color: var(--orange-dark); }

/* ====================== SERVICES ====================== */
#services { background: var(--cream); }
.service-grid {
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 900px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .service-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 6px 6px 0 var(--ink);
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
  display: block;
  color: var(--ink);
}
.service-card:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--ink); text-decoration: none; }
.service-card.accent-orange { background: var(--orange); color: var(--cream); }
.service-card.accent-green { background: var(--green); color: var(--cream); }
.service-card.accent-blue { background: var(--blue); color: var(--cream); }
.service-card.accent-orange a, .service-card.accent-green a, .service-card.accent-blue a { color: var(--cream); }
.service-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--cream); color: var(--ink);
  display:grid; place-items:center; margin-bottom: 20px;
  border: 3px solid var(--ink);
}
.service-icon svg { width: 40px; height: 40px; }
.service-card h3 {
  font-size: 24px; text-transform: uppercase; margin-bottom: 10px;
}
.service-card p { font-size: 15px; opacity: .95; line-height: 1.5; }
.card-link {
  display: inline-block; margin-top: 14px;
  font-family: 'Alfa Slab One', serif; font-size: 13px;
  text-transform: uppercase; letter-spacing: .05em;
}

/* ====================== ABOUT (THE MAN) ====================== */
#about {
  background: var(--ink); color: var(--cream);
  position: relative;
}
#about .section-head h2 { color: var(--cream); }
#about .section-head p { color: #D9CFB6; }
.about-grid {
  display:grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }

.about-text h3 {
  font-size: 36px; color: var(--orange); margin-bottom: 20px; text-transform: uppercase;
}
.about-text p { font-size: 17px; color: #E8DEC1; margin-bottom: 16px; line-height: 1.7; }
.tags { display:flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.tag {
  padding: 8px 16px; border-radius: 999px;
  font-family: 'Alfa Slab One', serif; font-size: 13px;
  background: var(--cream); color: var(--ink);
  border: 2px solid var(--cream);
  text-transform: uppercase; letter-spacing: .05em;
}
.tag.t-orange { background: var(--orange); color: var(--cream); border-color: var(--orange); }
.tag.t-green { background: var(--green); color: var(--cream); border-color: var(--green); }
.tag.t-blue { background: var(--blue); color: var(--cream); border-color: var(--blue); }

.hats {
  display:grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.hat {
  background: var(--cream); color: var(--ink);
  border-radius: 14px; padding: 22px;
  border: 3px solid var(--cream);
  box-shadow: 5px 5px 0 var(--orange);
}
.hat:nth-child(2) { box-shadow: 5px 5px 0 var(--green); }
.hat:nth-child(3) { box-shadow: 5px 5px 0 var(--blue); }
.hat:nth-child(4) { box-shadow: 5px 5px 0 var(--orange); }
.hat h4 {
  font-family: 'Alfa Slab One', serif; font-size: 18px;
  text-transform: uppercase; margin-bottom: 6px; color: var(--ink);
}
.hat p { font-size: 14px; color: var(--ink-soft); }

/* ====================== WHY BRAD ====================== */
#why { background: var(--green); color: var(--cream); }
#why .section-head h2 { color: var(--cream); }
#why .section-head p { color: rgba(242,234,213,.85); }
.reason-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .reason-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .reason-grid { grid-template-columns: 1fr; } }
.reason {
  background: var(--cream); color: var(--ink);
  border: 3px solid var(--ink); border-radius: 14px;
  padding: 26px 22px;
  box-shadow: 5px 5px 0 var(--ink);
  text-align: center;
}
.reason-num {
  font-family: 'Alfa Slab One', serif;
  font-size: 40px; color: var(--orange); line-height: 1;
  margin-bottom: 8px;
}
.reason h4 {
  font-family: 'Alfa Slab One', serif;
  text-transform: uppercase; font-size: 16px; margin-bottom: 8px;
}
.reason p { font-size: 14px; color: var(--ink-soft); }

/* ====================== SERVICE AREA ====================== */
#area {
  background: var(--cream);
  background-image:
    repeating-linear-gradient(45deg, rgba(30,26,22,.04) 0 2px, transparent 2px 22px);
}
.area-inner {
  max-width: 900px; margin: 0 auto; text-align: center;
}
.area-inner h2 {
  font-size: clamp(36px, 5vw, 56px); text-transform: uppercase; margin-bottom: 18px;
}
.area-pills {
  display:flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 30px 0 10px;
}
.pill {
  background: var(--cream); border: 3px solid var(--ink);
  padding: 10px 18px; border-radius: 999px;
  font-family: 'Alfa Slab One', serif; font-size: 14px;
  text-transform: uppercase; letter-spacing: .05em;
  color: var(--ink);
}
.pill:hover { background: var(--orange); color: var(--cream); text-decoration: none; }
.pill.active { background: var(--orange); color: var(--cream); }
.area-note { margin-top: 24px; color: var(--ink-soft); font-size: 16px; }

/* ====================== QUOTE FORM ====================== */
#quote {
  background: var(--blue);
  color: var(--cream);
}
#quote .section-head h2 { color: var(--cream); }
#quote .section-head p { color: rgba(242,234,213,.92); }
.quote-grid {
  display:grid; grid-template-columns: 1fr 1fr; gap: 50px;
  max-width: 1080px; margin: 0 auto;
}
@media (max-width: 900px) { .quote-grid { grid-template-columns: 1fr; gap: 30px; } }

.quote-info {
  background: var(--ink); color: var(--cream);
  border-radius: 16px; padding: 32px;
  border: 3px solid var(--ink);
}
.quote-info h3 {
  font-family: 'Alfa Slab One', serif;
  font-size: 26px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 16px;
}
.quote-info p { color: #E8DEC1; margin-bottom: 12px; font-size: 16px; }
.quote-info ul { list-style: none; margin-top: 18px; }
.quote-info ul li {
  padding: 10px 0; border-bottom: 1px solid rgba(242,234,213,.15);
  display: flex; align-items: center; gap: 12px;
}
.quote-info ul li:last-child { border-bottom: none; }
.quote-info ul li .check {
  display: inline-grid; place-items: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--green); color: var(--cream);
  font-weight: 800; flex-shrink: 0;
}

.quote-form {
  background: var(--cream); color: var(--ink);
  border-radius: 16px; padding: 32px;
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}
.quote-form h3 {
  font-family: 'Alfa Slab One', serif;
  font-size: 26px; text-transform: uppercase;
  margin-bottom: 18px;
}
.field { margin-bottom: 16px; }
.field label {
  display: block; font-weight: 700; font-size: 14px;
  margin-bottom: 6px; color: var(--ink);
  text-transform: uppercase; letter-spacing: .04em;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px;
  font-family: 'Inter', sans-serif; font-size: 16px;
  background: #FFFAEC;
  border: 2px solid var(--ink); border-radius: 8px;
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(201,108,44,.25);
}
.field textarea { min-height: 110px; resize: vertical; }
.field-row { display:grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }
.honey { position: absolute; left: -9999px; }

/* ====================== CONTACT / CTA ====================== */
#contact {
  background: var(--orange); color: var(--cream);
  text-align: center; border-bottom: none;
}
#contact h2 {
  font-size: clamp(44px, 7vw, 84px);
  text-transform: uppercase; line-height: 1; margin-bottom: 20px;
  color: var(--cream);
}
#contact p.lead { font-size: 20px; margin-bottom: 36px; color: #FFF4DD; }
.phone-hero {
  font-family: 'Alfa Slab One', serif;
  font-size: clamp(48px, 9vw, 96px);
  color: var(--cream); display: inline-block;
  letter-spacing: -0.02em; line-height: 1;
  padding: 10px 30px;
  background: var(--ink); border: 4px solid var(--cream);
  border-radius: 20px;
  box-shadow: 8px 8px 0 var(--green-dark);
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.phone-hero:hover { transform: translate(-3px,-3px); box-shadow: 11px 11px 0 var(--green-dark); text-decoration: none; color: var(--cream); }
.contact-links {
  display:flex; gap: 16px; justify-content:center; flex-wrap: wrap;
  margin-top: 40px;
}
.contact-chip {
  display:inline-flex; align-items: center; gap: 10px;
  background: var(--cream); color: var(--ink) !important;
  padding: 12px 22px; border-radius: 999px;
  font-family: 'Alfa Slab One', serif; font-size: 15px;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}
.contact-chip:hover { transform: translate(-1px,-1px); box-shadow: 5px 5px 0 var(--ink); text-decoration: none; }
.contact-chip svg { width: 20px; height: 20px; }

/* ====================== FOOTER ====================== */
footer {
  background: var(--ink); color: var(--cream);
  padding: 40px 0; text-align: center;
}
footer .foot-brand {
  font-family: 'Alfa Slab One', serif; font-size: 22px; margin-bottom: 8px;
}
footer small { color: #A89C83; font-size: 13px; }
footer nav.foot-nav { margin: 16px 0; display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }
footer nav.foot-nav a { color: var(--cream); font-size: 14px; opacity: .85; }
footer nav.foot-nav a:hover { color: var(--orange); opacity: 1; }

/* ====================== FLOATING CALL BUTTON ====================== */
.floating-call {
  position: fixed; bottom: 24px; right: 24px; z-index: 100;
  background: var(--orange); color: var(--cream) !important;
  font-family: 'Alfa Slab One', serif;
  padding: 14px 22px; border-radius: 999px;
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px;
}
.floating-call:hover { transform: translate(-1px,-1px); box-shadow: 6px 6px 0 var(--ink); text-decoration: none; }
@media (max-width: 520px) { .floating-call span.hide-sm { display:none; } }

/* Decorative strip */
.marquee {
  background: var(--ink); color: var(--cream);
  padding: 14px 0; overflow: hidden;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}
.marquee-track {
  display:flex; gap: 40px; white-space: nowrap;
  animation: scroll 30s linear infinite;
  font-family: 'Alfa Slab One', serif;
  font-size: 18px; text-transform: uppercase; letter-spacing: .05em;
}
.marquee-track span { display:inline-flex; align-items:center; gap: 40px; }
.marquee-track .dot { color: var(--orange); }
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ====================== CITY / SERVICE PAGES ====================== */
.page-hero {
  padding: 70px 0 50px;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(89,145,188,.2), transparent 60%),
    radial-gradient(ellipse at 10% 90%, rgba(79,140,58,.25), transparent 55%),
    var(--cream);
  border-bottom: 4px solid var(--ink);
}
.page-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.page-hero h1 .ink { color: var(--ink); }
.page-hero .lead {
  font-size: 19px; color: var(--ink-soft); max-width: 760px; margin-bottom: 28px;
  font-weight: 500;
}
.page-content { padding: 70px 0; background: var(--cream); border-bottom: 4px solid var(--ink); }
.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; }
@media (max-width: 900px) { .content-grid { grid-template-columns: 1fr; } }
.content-grid h2 {
  font-size: 32px; text-transform: uppercase; margin: 28px 0 14px; color: var(--ink);
}
.content-grid h2:first-child { margin-top: 0; }
.content-grid p { margin-bottom: 14px; font-size: 17px; color: var(--ink); }
.content-grid ul { margin: 14px 0 18px 22px; }
.content-grid ul li { margin-bottom: 8px; font-size: 17px; }
.sidebar {
  background: var(--ink); color: var(--cream);
  border-radius: 16px; padding: 28px; align-self: start;
  position: sticky; top: 100px;
}
.sidebar h3 {
  font-family: 'Alfa Slab One', serif;
  font-size: 22px; color: var(--orange);
  text-transform: uppercase; margin-bottom: 14px;
}
.sidebar p { color: #E8DEC1; margin-bottom: 16px; font-size: 15px; }
.sidebar .phone-cta {
  display:block; text-align:center;
  background: var(--orange); color: var(--cream) !important;
  padding: 16px; border-radius: 12px; border: 3px solid var(--cream);
  font-family: 'Alfa Slab One', serif; font-size: 24px;
  margin-bottom: 12px;
}
.sidebar .phone-cta:hover { background: var(--orange-dark); text-decoration: none; }
.sidebar .text-cta {
  display:block; text-align:center;
  background: transparent; color: var(--cream) !important;
  padding: 12px; border-radius: 10px; border: 2px solid var(--cream);
  font-family: 'Alfa Slab One', serif; font-size: 14px;
  text-transform: uppercase;
}

/* Thank you page */
.thanks {
  min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: var(--cream);
  padding: 80px 24px;
}
.thanks-card {
  max-width: 620px;
  background: var(--cream);
  border: 4px solid var(--ink);
  border-radius: 20px;
  box-shadow: 12px 12px 0 var(--orange);
  padding: 50px 40px;
}
.thanks-card .mascot-mini {
  width: 140px; height: 140px; margin: 0 auto 20px;
}
.thanks-card .mascot-mini img { width: 100%; }
.thanks-card h1 {
  font-size: clamp(36px, 5vw, 56px);
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--orange);
}
.thanks-card p { font-size: 18px; color: var(--ink); margin-bottom: 18px; }
