:root {
  --navy: #0b4a73;
  --navy-dark: #07344f;
  --red: #e5352f;
  --red-dark: #b92322;
  --orange: #ef9b2d;
  --cream: #f5edd8;
  --paper: #fffaf0;
  --ink: #141414;
  --white: #ffffff;
  --muted: #625f57;
  --border: 3px solid var(--ink);
  --shadow: 8px 8px 0 var(--ink);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: .75rem 1rem;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.topbar {
  background: var(--navy-dark);
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar p { margin: 0; }
.topbar a { color: var(--white); text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 240, .96);
  border-bottom: 3px solid var(--ink);
  backdrop-filter: blur(12px);
}
.header__inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand { flex: 0 0 auto; }
.brand img { width: 380px; max-height: 164px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 1.5rem; }
.site-nav > a:not(.button) {
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  font-size: .85rem;
  letter-spacing: .05em;
}
.site-nav > a:not(.button):hover { color: var(--red); }
.nav-toggle { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: .85rem 1.35rem;
  border: var(--border);
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .04em;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translate(3px, 3px); box-shadow: 1px 1px 0 var(--ink); background: var(--red-dark); }
.button--small { min-height: 44px; padding: .65rem 1rem; font-size: .78rem; }
.button--outline { background: var(--cream); color: var(--ink); }
.button--outline:hover { background: var(--orange); }

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,.15), rgba(255,255,255,.15)),
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(11,74,115,.035) 35px 36px),
    var(--cream);
  border-bottom: 4px solid var(--ink);
}
.hero__sunburst {
  position: absolute;
  width: 620px;
  height: 620px;
  right: -170px;
  top: -250px;
  opacity: .16;
  background: repeating-conic-gradient(var(--orange) 0 8deg, transparent 8deg 16deg);
  border-radius: 50%;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 4rem;
  min-height: 680px;
  padding-block: 4.5rem 5.5rem;
}
.eyebrow {
  margin: 0 0 .9rem;
  color: var(--navy);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .82rem;
}
.hero h1,
.section-heading h2,
.about__copy h2,
.estimate__copy h2,
.service-area h2 {
  margin: 0;
  font-family: "Fugaz One", sans-serif;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: -.025em;
}
.hero h1 { font-size: clamp(3.5rem, 7vw, 6.8rem); }
.hero h1 span { color: var(--red); text-shadow: 4px 4px 0 var(--ink); -webkit-text-stroke: 2px var(--ink); }
.hero__lead { max-width: 650px; font-size: 1.18rem; font-weight: 600; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin: 2rem 0 1.6rem; }
.hero__checks { display: flex; flex-wrap: wrap; gap: 1.2rem; padding: 0; margin: 0; list-style: none; font-weight: 800; }
.hero__checks li::before { content: "★"; color: var(--orange); margin-right: .4rem; -webkit-text-stroke: 1px var(--ink); }

.hero__visual { position: relative; }
.photo-frame {
  position: relative;
  padding: 12px;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}
.photo-frame--hero { min-height: 450px; }
.before-after.png,
.portrait-placeholder {
  min-height: 240px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(11,74,115,.95), rgba(7,52,79,.9)),
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(255,255,255,.05) 12px 14px);
  color: var(--white);
  border: 2px dashed rgba(255,255,255,.75);
  border-radius: 14px;
  font-family: "Fugaz One", sans-serif;
  letter-spacing: .05em;
}
.photo-frame--hero .photo-placeholder { min-height: 420px; }
.photo-label {
  position: absolute;
  bottom: 30px;
  padding: .45rem 1rem;
  border: 2px solid var(--ink);
  color: var(--white);
  font-family: "Fugaz One", sans-serif;
  text-transform: uppercase;
  transform: rotate(-2deg);
}
.photo-label--before { left: -18px; background: var(--navy); }
.photo-label--after { right: -18px; background: var(--orange); color: var(--ink); }
.retro-badge {
  position: absolute;
  right: -34px;
  top: -42px;
  width: 132px;
  height: 132px;
  display: grid;
  place-content: center;
  text-align: center;
  background: var(--orange);
  border: var(--border);
  border-radius: 50%;
  box-shadow: 5px 5px 0 var(--ink);
  transform: rotate(9deg);
}
.retro-badge::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 2px dashed var(--ink);
  border-radius: 50%;
}
.retro-badge strong { font-family: "Fugaz One", sans-serif; font-size: 1.55rem; line-height: 1; }
.retro-badge span { font-weight: 900; font-size: .8rem; }

.trust-strip { background: var(--navy); color: var(--white); border-top: 4px solid var(--ink); }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-strip__grid div { padding: 1.2rem; text-align: center; border-right: 2px solid rgba(255,255,255,.4); }
.trust-strip__grid div:last-child { border-right: 0; }
.trust-strip strong, .trust-strip span { display: block; }
.trust-strip strong { font-family: "Fugaz One", sans-serif; text-transform: uppercase; }
.trust-strip span { opacity: .8; font-size: .86rem; }

.section { padding-block: 6rem; }
.section-heading { max-width: 760px; margin: 0 auto 3rem; text-align: center; }
.section-heading--left { margin-inline: 0; text-align: left; }
.section-heading h2, .about__copy h2, .estimate__copy h2, .service-area h2 { font-size: clamp(2.5rem, 5vw, 4.6rem); }
.section-heading > p:last-child { font-size: 1.08rem; color: var(--muted); }

.services { background: var(--paper); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.service-card {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: 6px 6px 0 var(--ink);
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -70px;
  bottom: -70px;
  border: 18px solid currentColor;
  border-radius: 50%;
  opacity: .12;
}
.service-card--navy { background: var(--navy); color: var(--white); }
.service-card--red { background: var(--red); color: var(--white); }
.service-card--orange { background: var(--orange); }
.service-card--cream { background: var(--cream); }
.service-card__number { font-family: "Fugaz One", sans-serif; font-size: 1rem; opacity: .72; }
.service-card h3 { margin: .8rem 0; font-family: "Fugaz One", sans-serif; text-transform: uppercase; font-size: 1.8rem; line-height: 1.05; }
.service-card p { margin: 0 0 1.2rem; }
.service-card a { margin-top: auto; font-weight: 900; text-transform: uppercase; font-size: .83rem; }

.results { background: var(--cream); border-block: 4px solid var(--ink); }
.results-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.project-card { background: var(--white); border: var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.project-card__photos { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 10px; background: var(--ink); }
.project-card__photos .photo-placeholder { width: 100%; border-radius: 8px; }
.photo-placeholder--light { background: linear-gradient(135deg, var(--orange), #f6c46e); color: var(--ink); }
.project-card__content { padding: 1.5rem; }
.project-card__content span { color: var(--red); font-weight: 900; text-transform: uppercase; font-size: .78rem; letter-spacing: .08em; }
.project-card__content h3 { margin: .35rem 0 0; font-family: "Fugaz One", sans-serif; text-transform: uppercase; line-height: 1.12; }

.about { background: var(--navy); color: var(--white); }
.about .eyebrow { color: var(--orange); }
.about__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 5rem; align-items: center; }
.about__visual { position: relative; }
.portrait-placeholder { min-height: 540px; background: var(--cream); color: var(--navy); border: var(--border); box-shadow: var(--shadow); }
.about__stamp {
  position: absolute;
  right: -20px;
  bottom: -24px;
  width: 130px;
  height: 130px;
  display: grid;
  place-content: center;
  text-align: center;
  background: var(--red);
  border: var(--border);
  border-radius: 50%;
  box-shadow: 5px 5px 0 var(--ink);
  font-family: "Fugaz One", sans-serif;
  transform: rotate(-8deg);
}
.about__copy > p:not(.eyebrow) { font-size: 1.1rem; color: rgba(255,255,255,.82); }
.benefit-list { margin-top: 2.3rem; }
.benefit-list > div { display: grid; grid-template-columns: 54px 1fr; column-gap: 1rem; padding: 1.3rem 0; border-top: 1px solid rgba(255,255,255,.25); }
.benefit-list span { grid-row: 1 / 3; display: grid; place-items: center; width: 46px; height: 46px; background: var(--orange); color: var(--ink); border: 2px solid var(--ink); border-radius: 50%; font-family: "Fugaz One", sans-serif; }
.benefit-list h3 { margin: 0; font-family: "Fugaz One", sans-serif; text-transform: uppercase; }
.benefit-list p { margin: .3rem 0 0; color: rgba(255,255,255,.75); }

.process { background: var(--paper); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; padding: 0; list-style: none; counter-reset: steps; }
.process-grid li { position: relative; padding: 2rem 1.5rem; background: var(--cream); border: var(--border); border-radius: var(--radius); }
.process-grid li:nth-child(even) { transform: translateY(22px); }
.process-grid span { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 1.2rem; background: var(--red); color: var(--white); border: 2px solid var(--ink); border-radius: 50%; box-shadow: 3px 3px 0 var(--ink); font-family: "Fugaz One", sans-serif; font-size: 1.4rem; }
.process-grid h3 { margin: 0 0 .6rem; font-family: "Fugaz One", sans-serif; text-transform: uppercase; line-height: 1.15; }
.process-grid p { margin: 0; color: var(--muted); }

.testimonials { background: var(--orange); border-block: 4px solid var(--ink); }
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
blockquote { margin: 0; padding: 2rem; background: var(--paper); border: var(--border); border-radius: var(--radius); box-shadow: var(--shadow); font-size: 1.05rem; }
.stars { color: var(--red); letter-spacing: .12em; -webkit-text-stroke: 1px var(--ink); }
blockquote cite { font-style: normal; font-weight: 900; color: var(--navy); }

.estimate { background: var(--cream); }
.estimate__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 4rem; align-items: start; }
.estimate__copy { position: sticky; top: 140px; }
.estimate__phone { display: inline-block; margin-top: 1rem; font-family: "Fugaz One", sans-serif; font-size: clamp(2rem, 4vw, 3.4rem); color: var(--red); text-decoration: none; -webkit-text-stroke: 1px var(--ink); text-shadow: 3px 3px 0 var(--ink); }
.estimate__note { font-weight: 800; }
.estimate-form { padding: 2rem; background: var(--white); border: var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.estimate-form label { display: grid; gap: .45rem; margin-bottom: 1rem; font-weight: 900; }
.estimate-form input, .estimate-form select, .estimate-form textarea {
  width: 100%;
  padding: .9rem 1rem;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 10px;
  outline: none;
}
.estimate-form input:focus, .estimate-form select:focus, .estimate-form textarea:focus { box-shadow: 0 0 0 4px rgba(239,155,45,.35); }
.form-disclaimer { margin-bottom: 0; font-size: .78rem; color: var(--muted); }

.service-area { padding-block: 4rem; background: var(--red); color: var(--white); border-top: 4px solid var(--ink); }
.service-area .eyebrow { color: var(--cream); }
.service-area__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 4rem; align-items: end; }
.service-area h2 { font-size: clamp(2.3rem, 4vw, 4rem); }
.service-area__grid > p { font-size: 1.08rem; }

.site-footer { background: var(--navy-dark); color: var(--white); padding-top: 4rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr .7fr 1fr; gap: 3rem; }
.footer__brand img { width: 220px; margin-bottom: 1rem; }
.site-footer h2 { margin: 0 0 1rem; color: var(--orange); font-family: "Fugaz One", sans-serif; font-size: 1rem; text-transform: uppercase; }
.site-footer a { display: block; margin-bottom: .6rem; color: var(--white); text-decoration: none; overflow-wrap: anywhere; }
.site-footer a:hover { color: var(--orange); }
.footer__bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-block: 1.2rem; border-top: 1px solid rgba(255,255,255,.2); font-size: .85rem; }
.footer__bottom p { margin: 0; }

@media (max-width: 980px) {
  .nav-toggle {
    display: grid;
    gap: 5px;
    padding: .7rem;
    background: var(--cream);
    border: 2px solid var(--ink);
    border-radius: 9px;
  }
  .nav-toggle span { width: 25px; height: 3px; background: var(--ink); }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: var(--paper);
    border-bottom: 3px solid var(--ink);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: .9rem; }
  .hero__grid, .about__grid, .estimate__grid { grid-template-columns: 1fr; }
  .hero__grid { gap: 3rem; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid li:nth-child(even) { transform: none; }
  .estimate__copy { position: static; }
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip__grid div:nth-child(2) { border-right: 0; }
  .trust-strip__grid div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.35); }
}

@media (max-width: 700px) {
  .topbar__inner { justify-content: center; }
  .topbar p { display: none; }
  .header__inner { min-height: 78px; }
  .brand img { width: 150px; max-height: 68px; }
  .hero__grid { min-height: auto; padding-block: 3.5rem 4rem; }
  .hero h1 { font-size: clamp(3rem, 16vw, 4.8rem); }
  .hero__actions, .hero__actions .button { width: 100%; }
  .retro-badge { right: -5px; width: 105px; height: 105px; }
  .service-grid, .results-grid, .testimonial-grid, .process-grid, .service-area__grid, .footer__grid, .form-row { grid-template-columns: 1fr; }
  .service-card { min-height: 260px; }
  .project-card__photos { grid-template-columns: 1fr; }
  .about__grid { gap: 3rem; }
  .portrait-placeholder { min-height: 420px; }
  .trust-strip__grid { grid-template-columns: 1fr; }
  .trust-strip__grid div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.35); }
  .section { padding-block: 4.5rem; }
  .estimate-form { padding: 1.3rem; }
  .footer__bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
