:root {
  --navy: #071827;
  --navy-2: #0d2a40;
  --blue: #164c6d;
  --copper: #d89b43;
  --copper-light: #f2c06d;
  --cream: #f5f2ec;
  --white: #ffffff;
  --ink: #132333;
  --muted: #5d6974;
  --line: #d8dee3;
  --shadow: 0 24px 60px rgba(3, 18, 30, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font: 400 1rem/1.65 Manrope, system-ui, sans-serif; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.skip-link { position: fixed; top: -5rem; left: 1rem; z-index: 100; background: var(--white); padding: .75rem 1rem; }
.skip-link:focus { top: 1rem; }
.topbar { min-height: 38px; padding: .4rem clamp(1rem, 5vw, 5rem); display: flex; justify-content: space-between; align-items: center; gap: 1rem; background: var(--navy); color: #d7e5ed; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.topbar p { margin: 0; }
.topbar a { color: var(--copper-light); font-weight: 700; text-decoration: none; }
.site-header { height: 86px; padding: 0 clamp(1rem, 5vw, 5rem); display: flex; justify-content: space-between; align-items: center; gap: 2rem; background: rgba(255,255,255,.97); border-bottom: 1px solid rgba(7,24,39,.08); position: sticky; top: 0; z-index: 50; backdrop-filter: blur(12px); }
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--navy); }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; color: var(--navy); background: var(--copper); border-radius: 9px 9px 15px 9px; font: 800 1.65rem/1 Barlow Condensed, sans-serif; }
.brand strong { display: block; font: 800 1.7rem/.82 Barlow Condensed, sans-serif; letter-spacing: .06em; }
.brand small { font-size: .64rem; font-weight: 700; letter-spacing: .16em; }
nav { display: flex; align-items: center; gap: 2rem; }
nav a { text-decoration: none; font-size: .88rem; font-weight: 700; }
nav a:not(.nav-cta):hover { color: var(--blue); }
.nav-cta { background: var(--navy); color: var(--white); padding: .75rem 1.15rem; border-radius: 6px; }
.menu-button { display: none; border: 1px solid var(--line); background: var(--white); border-radius: 6px; padding: .6rem .8rem; font-weight: 700; }

.hero { min-height: 660px; display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(320px, .97fr); background: var(--cream); overflow: hidden; }
.hero-copy { padding: clamp(4rem, 8vw, 7.5rem) clamp(1.25rem, 6vw, 6.5rem); position: relative; }
.hero-copy::after { content: ""; width: 220px; height: 5px; background: var(--copper); position: absolute; left: clamp(1.25rem, 6vw, 6.5rem); bottom: 3rem; }
.eyebrow { margin: 0 0 1rem; color: var(--blue); font-size: .78rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; font-family: Barlow Condensed, sans-serif; line-height: .98; color: var(--navy); }
h1 { max-width: 700px; margin-bottom: 1.5rem; font-size: clamp(4.4rem, 9vw, 8.4rem); font-weight: 800; letter-spacing: -.035em; text-transform: uppercase; }
h1 span { color: var(--blue); }
.hero-lead { max-width: 610px; margin: 0 0 2rem; color: #465866; font-size: clamp(1.05rem, 1.6vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.button { min-height: 50px; padding: .85rem 1.35rem; display: inline-flex; justify-content: center; align-items: center; border: 0; border-radius: 6px; cursor: pointer; text-decoration: none; font-size: .9rem; font-weight: 800; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--copper); color: var(--navy); }
.button-primary:hover { background: var(--copper-light); }
.button-secondary { border: 1px solid var(--navy); color: var(--navy); }
.trust-list { margin: 2rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 1.5rem; list-style: none; font-size: .84rem; font-weight: 700; }
.trust-list li::before { content: "✓"; margin-right: .45rem; color: var(--blue); }
.hero-visual { min-height: 550px; position: relative; background: linear-gradient(145deg, var(--navy), var(--blue)); }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,24,39,.18), transparent 40%), linear-gradient(0deg, rgba(7,24,39,.22), transparent 45%); pointer-events: none; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.experience-card { position: absolute; left: -3rem; bottom: 3rem; z-index: 2; min-width: 220px; padding: 1.15rem 1.4rem; display: flex; align-items: center; gap: 1rem; color: var(--white); background: var(--navy); box-shadow: var(--shadow); }
.experience-card strong { color: var(--copper-light); font: 800 2.3rem/1 Barlow Condensed, sans-serif; text-transform: uppercase; }
.experience-card span { font-size: .8rem; line-height: 1.4; text-transform: uppercase; letter-spacing: .08em; }

.service-strip { padding: 1.4rem clamp(1rem, 5vw, 5rem); display: grid; grid-template-columns: repeat(3, 1fr); background: var(--navy); color: var(--white); }
.service-strip div { padding: .4rem 2rem; border-left: 1px solid rgba(255,255,255,.16); }
.service-strip div:first-child { border-left: 0; }
.service-strip span, .service-strip strong { display: block; }
.service-strip span { color: #9fb5c5; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.service-strip strong { margin-top: .2rem; font-size: .95rem; }
.service-strip a { text-decoration: none; }
.section { padding: clamp(4.5rem, 8vw, 8rem) clamp(1.25rem, 6vw, 6.5rem); }
.section-heading { max-width: 800px; margin-bottom: 3rem; }
.section-heading h2, .about h2, .estimate h2 { margin-bottom: 1.25rem; font-size: clamp(2.7rem, 5vw, 5rem); font-weight: 700; letter-spacing: -.025em; }
.section-heading > p:last-child { max-width: 630px; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-grid article { min-height: 285px; padding: 2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-grid article > span { color: var(--copper); font: 700 1rem Barlow Condensed, sans-serif; }
.service-grid h3 { margin: 3.8rem 0 1rem; font-size: 1.75rem; }
.service-grid p { margin: 0; color: var(--muted); font-size: .93rem; }
.real-work { background: #eef2f4; }
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.work-photo { margin: 0; min-height: 0; position: relative; overflow: hidden; background: var(--navy); box-shadow: 0 18px 45px rgba(3,18,30,.12); }
.work-photo img { width: 100%; height: 520px; object-fit: cover; object-position: center; transition: transform .45s ease; }
.work-photo:hover img { transform: scale(1.025); }
.work-photo::after { content: ""; position: absolute; inset: 42% 0 0; background: linear-gradient(transparent, rgba(3,16,27,.92)); pointer-events: none; }
.work-photo figcaption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 1.5rem; color: var(--white); }
.work-photo figcaption strong, .work-photo figcaption span { display: block; }
.work-photo figcaption strong { font: 700 1.55rem/1.1 Barlow Condensed, sans-serif; }
.work-photo figcaption span { margin-top: .35rem; color: #cedbe3; font-size: .8rem; }
.coupons { background: var(--navy); }
.section-heading.light h2 { color: var(--white); }
.section-heading.light > p:last-child { color: #b8c7d1; }
.coupons .eyebrow { color: var(--copper-light); }
.coupon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.coupon { padding: 2.1rem; background: var(--white); border-top: 5px solid var(--copper); position: relative; }
.coupon::after { content: ""; position: absolute; inset: 10px; border: 1px dashed #b7c0c8; pointer-events: none; }
.coupon > * { position: relative; z-index: 1; }
.coupon p { margin: 0; color: var(--blue); font-weight: 800; text-transform: uppercase; letter-spacing: .15em; }
.coupon strong { display: block; color: var(--navy); font: 800 clamp(4.8rem, 8vw, 7rem)/1 Barlow Condensed, sans-serif; }
.coupon h3 { margin: .4rem 0 2.5rem; font-size: 1.65rem; }
.coupon span { color: var(--muted); font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; }
.coupon.featured { transform: translateY(-1rem); background: var(--copper); border-top-color: var(--white); }
.coupon.featured::after { border-color: rgba(7,24,39,.4); }
.coupon.featured p { color: var(--navy); }
.coupon-terms { margin: 1.5rem 0 0; color: #9fb5c5; font-size: .78rem; }
.about { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 8vw, 8rem); background: var(--cream); }
.about-copy { padding-top: 2rem; border-top: 4px solid var(--copper); color: #425462; font-size: 1.05rem; }
.about-copy p:first-child { margin-top: 0; }
.estimate { padding: clamp(4.5rem, 8vw, 8rem) clamp(1.25rem, 6vw, 6.5rem); display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 8rem); background: var(--white); }
.estimate-intro > p:not(.eyebrow) { color: var(--muted); }
.estimate-intro a { font-weight: 700; }
.contact-card { margin-top: 2rem; padding: 1.2rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.contact-card span { display: block; color: var(--muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; }
.contact-card a { overflow-wrap: anywhere; color: var(--blue); }
form { padding: clamp(1.5rem, 4vw, 3rem); background: var(--cream); border-top: 5px solid var(--copper); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; margin-bottom: 1rem; color: var(--navy); font-size: .83rem; font-weight: 800; }
input, select, textarea { width: 100%; margin-top: .45rem; padding: .82rem .9rem; border: 1px solid #c8d0d6; border-radius: 4px; background: var(--white); color: var(--ink); font-size: 1rem; }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(216,155,67,.35); border-color: var(--copper); }
.submit-button { width: 100%; }
.form-note, .form-error { margin: .8rem 0 0; font-size: .78rem; }
.form-note { color: var(--muted); text-align: center; }
.form-error { margin-bottom: .8rem; color: #a32727; font-weight: 700; }
footer { padding: 2.5rem clamp(1.25rem, 6vw, 6.5rem); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 3rem; background: #04111c; color: #b7c7d2; font-size: .82rem; }
footer p { margin: .25rem 0; }
footer a { color: var(--white); }
.footer-brand { color: var(--white); }
.mobile-call { display: none; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 5.5rem; }
  .hero-visual { min-height: 460px; }
  .experience-card { left: 1.25rem; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .coupon-grid { grid-template-columns: 1fr; }
  .coupon.featured { transform: none; }
  .work-photo img { height: 440px; }
  .about, .estimate { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; gap: 1.2rem; }
}

@media (max-width: 720px) {
  body { padding-bottom: 60px; }
  .topbar { justify-content: center; }
  .topbar p { display: none; }
  .site-header { height: 72px; }
  .menu-button { display: block; }
  nav { display: none; position: absolute; top: 72px; left: 0; right: 0; padding: 1rem; flex-direction: column; align-items: stretch; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: 0 16px 25px rgba(3,18,30,.12); }
  nav.open { display: flex; }
  nav a { padding: .6rem; }
  .nav-cta { text-align: center; }
  .hero { min-height: auto; }
  .hero-copy { padding-top: 4rem; }
  h1 { font-size: clamp(4rem, 20vw, 6.4rem); }
  .hero-copy::after { width: 120px; }
  .hero-visual { min-height: 390px; }
  .service-strip { grid-template-columns: 1fr; }
  .service-strip div { padding: 1rem 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.16); }
  .service-strip div:first-child { border-top: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid article { min-height: 230px; }
  .service-grid h3 { margin-top: 2.5rem; }
  .work-grid { grid-template-columns: 1fr; }
  .work-photo img { height: 390px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .mobile-call { height: 60px; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; display: grid; place-items: center; background: var(--copper); color: var(--navy); font-weight: 800; text-decoration: none; box-shadow: 0 -8px 25px rgba(3,18,30,.14); }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }
