:root {
  --ink: #0e1319;
  --ink-soft: #18212b;
  --paper: #f3f5f4;
  --white: #ffffff;
  --blue: #25a8e2;
  --blue-deep: #087fb5;
  --yellow: #f2d51b;
  --muted: #66727d;
  --line: rgba(14, 19, 25, 0.14);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
img { display: block; width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  min-height: 104px;
  padding: 14px max(32px, calc((100vw - var(--max)) / 2));
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
  z-index: 10;
  border-bottom: 1px solid #e7e9e8;
}
.brand { display: block; width: 258px; flex: 0 0 auto; }
.brand img { aspect-ratio: 426 / 176; object-fit: contain; }
#site-nav { display: flex; align-items: center; gap: 30px; }
#site-nav a { text-decoration: none; font-size: .88rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
#site-nav a:not(.nav-cta):hover { color: var(--blue-deep); }
.nav-phone { color: var(--blue-deep); white-space: nowrap; }
.nav-cta { background: var(--ink); color: #fff; padding: 14px 18px; transition: .2s ease; }
.nav-cta:hover { background: var(--blue-deep); transform: translateY(-2px); }
.menu-toggle { display: none; }

.hero {
  min-height: 690px;
  background: var(--ink);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .85fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
  padding: 74px max(32px, calc((100vw - var(--max)) / 2)) 88px;
  overflow: hidden;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow { margin: 0 0 22px; display: flex; align-items: center; gap: 12px; color: var(--blue); font-size: .78rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 34px; height: 3px; background: var(--yellow); }
.eyebrow.dark { color: var(--blue-deep); }
.hero h1, .section h2, .projects h2, .about h2, .estimate h2 {
  margin: 0;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-weight: 900;
  letter-spacing: -.045em;
  text-transform: uppercase;
  line-height: .92;
}
.hero h1 { font-size: clamp(3.7rem, 6.5vw, 6.75rem); }
.hero h1 em { color: var(--blue); font-style: normal; }
.hero-intro { max-width: 610px; margin: 28px 0 32px; color: #bdc5cc; font-size: 1.08rem; }
.hero-actions { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 36px; min-height: 58px; padding: 0 24px; border: 0; text-decoration: none; text-transform: uppercase; letter-spacing: .08em; font-weight: 900; font-size: .8rem; cursor: pointer; transition: .2s ease; }
.button-primary { color: var(--ink); background: var(--blue); box-shadow: 8px 8px 0 var(--yellow); }
.button-primary:hover { transform: translate(-2px,-2px); box-shadow: 12px 12px 0 var(--yellow); }
.text-link { color: #fff; font-weight: 800; text-underline-offset: 5px; }
.hero-visual { position: relative; }
.hero-visual::before { content: ""; position: absolute; width: 62%; height: 112%; right: -17%; top: -6%; background: var(--blue); transform: rotate(8deg); opacity: .92; }
.image-frame { position: relative; z-index: 1; border: 10px solid #fff; box-shadow: 20px 20px 0 rgba(0,0,0,.25); transform: rotate(-2deg); }
.image-frame img { aspect-ratio: 4 / 5; object-fit: cover; object-position: 53% center; }
.project-tag { position: absolute; z-index: 2; left: -28px; bottom: 34px; padding: 18px 22px; background: var(--yellow); color: var(--ink); display: grid; box-shadow: 10px 10px 0 rgba(0,0,0,.3); }
.project-tag strong { text-transform: uppercase; font-size: .82rem; letter-spacing: .08em; }
.project-tag span { font-size: .78rem; }

.trust-strip { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--blue); padding: 0 max(32px, calc((100vw - var(--max)) / 2)); }
.trust-strip > div { padding: 27px 34px; display: grid; grid-template-columns: 34px 1fr; column-gap: 14px; border-right: 1px solid rgba(14,19,25,.25); }
.trust-strip > div:first-child { border-left: 1px solid rgba(14,19,25,.25); }
.trust-strip span { grid-row: 1 / 3; font-size: .72rem; font-weight: 900; padding-top: 3px; }
.trust-strip strong { text-transform: uppercase; font-size: .86rem; letter-spacing: .06em; }
.trust-strip small { font-size: .75rem; }

.section { max-width: var(--max); margin: 0 auto; padding: 110px 32px; }
.services {
  position: relative;
  max-width: none;
  overflow: hidden;
  padding: 82px max(32px, calc((100vw - var(--max)) / 2)) 92px;
  background: #d9e3e8;
}
.services::before {
  content: "SERVICES";
  position: absolute;
  top: -36px;
  right: -18px;
  color: rgba(14, 19, 25, .045);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(8rem, 17vw, 15rem);
  line-height: 1;
  letter-spacing: -.04em;
  pointer-events: none;
}
.services > * { position: relative; z-index: 1; }
.services .section-heading { margin-bottom: 34px; }
.section-heading { display: grid; grid-template-columns: .9fr 1.1fr; column-gap: 70px; align-items: end; margin-bottom: 50px; }
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading h2, .projects h2, .about h2, .estimate h2 { font-size: clamp(3.2rem, 5.2vw, 5.4rem); }
.section-heading > p:last-child { max-width: 500px; color: var(--muted); font-size: 1.02rem; margin: 0 0 4px; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
.service-card { min-height: 305px; padding: 36px 40px; background: #eef2f3; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; }
.service-card.featured { background: var(--blue); }
.service-card:nth-child(3) { background: #c8d6dd; }
.service-card.dark-card { background: var(--ink-soft); color: #fff; }
.service-number { color: var(--blue-deep); font-size: .75rem; font-weight: 900; }
.featured .service-number, .dark-card .service-number { color: var(--yellow); }
.service-card h3 { margin: auto 0 12px; font-size: 1.55rem; text-transform: uppercase; letter-spacing: -.02em; }
.service-card p { color: var(--muted); max-width: 480px; margin: 0 0 24px; }
.featured p { color: #173d50; }
.dark-card p { color: #b8c1c9; }
.service-card a { width: fit-content; text-transform: uppercase; font-weight: 900; font-size: .76rem; letter-spacing: .08em; text-underline-offset: 6px; }

.projects { background: var(--ink-soft); color: #fff; padding: 100px max(32px, calc((100vw - var(--max)) / 2)) 110px; }
.projects-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 50px; }
.projects-heading > p { max-width: 300px; margin: 0 0 4px; color: #aeb7bf; }
.project-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; }
.project-grid[hidden] { display: none; }
.project-grid-more { grid-template-columns: repeat(3, 1fr); margin-top: 24px; }
.project-card { margin: 0; position: relative; overflow: hidden; min-height: 330px; background: #263440; }
.project-card img { height: 100%; min-height: 330px; object-fit: cover; transition: transform .5s ease; }
.project-card img.project-image-closet { object-position: center 38%; }
.project-card:hover img { transform: scale(1.035); }
.project-large { grid-row: span 2; min-height: 684px; }
.project-large img { min-height: 684px; }
.project-card::after { content: ""; position: absolute; inset: 42% 0 0; background: linear-gradient(transparent, rgba(4,8,12,.92)); }
.project-card figcaption { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 25px; display: grid; }
.project-card figcaption span { color: var(--blue); text-transform: uppercase; letter-spacing: .12em; font-size: .7rem; font-weight: 900; }
.project-card figcaption strong { font-size: 1.15rem; }
.projects-more { display: flex; justify-content: center; margin-top: 34px; }
.projects-more-button { display: inline-flex; align-items: center; gap: 16px; min-height: 46px; padding: 0 19px; color: #fff; background: transparent; border: 1px solid rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; font-weight: 900; cursor: pointer; transition: .2s ease; }
.projects-more-button:hover { color: var(--ink); background: var(--blue); border-color: var(--blue); transform: translateY(-2px); }
.projects-more-button:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }
.projects-more-arrow { color: var(--blue); font-size: 1rem; transition: .2s ease; }
.projects-more-button:hover .projects-more-arrow { color: var(--ink); }
.projects-more-button[aria-expanded="true"] .projects-more-arrow { transform: rotate(180deg); }

.about { min-height: 620px; display: grid; grid-template-columns: .72fr 1.28fr; background: var(--blue); overflow: hidden; }
.about-mark { display: grid; place-items: center; background: var(--yellow); color: var(--ink); font-family: Impact, "Arial Black", sans-serif; font-size: clamp(10rem, 22vw, 22rem); letter-spacing: -.12em; line-height: 1; transform: rotate(-7deg) scale(1.15); opacity: .94; }
.about-copy { padding: 90px max(34px, calc((100vw - var(--max)) / 2)) 90px 7vw; max-width: 900px; }
.about-copy .eyebrow { color: var(--ink); }
.about-copy .eyebrow span { background: var(--ink); }
.about-copy > p:not(.eyebrow) { max-width: 720px; font-size: 1.05rem; color: #123342; }
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; padding-top: 34px; border-top: 1px solid rgba(14,19,25,.35); }
.process div { display: grid; }
.process span { color: #0a6085; font-size: .72rem; font-weight: 900; }
.process strong { text-transform: uppercase; font-size: .85rem; margin: 6px 0; }
.process small { color: #17475c; font-size: .76rem; }

.reviews { padding-bottom: 120px; }
.review-heading { display: block; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
blockquote { margin: 0; min-height: 320px; padding: 32px; background: #fff; border-top: 5px solid var(--blue); display: flex; flex-direction: column; box-shadow: 0 18px 40px rgba(20,30,40,.06); }
.stars { color: #d9b700; letter-spacing: .12em; font-size: .85rem; }
blockquote p { color: #36414b; margin: 28px 0; font-size: 1rem; }
blockquote footer { margin-top: auto; display: grid; font-size: .84rem; font-weight: 900; text-transform: uppercase; }
blockquote footer span { color: var(--muted); font-size: .68rem; letter-spacing: .1em; }

.estimate { background: var(--blue); display: grid; grid-template-columns: .8fr 1.2fr; gap: 7vw; padding: 100px max(32px, calc((100vw - var(--max)) / 2)); }
.estimate-intro > p:not(.eyebrow) { color: #173f52; max-width: 430px; }
.estimate-contact { display: grid; justify-items: start; gap: 8px; margin-top: 24px; }
.estimate-contact > span { font-size: .72rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.estimate-contact a { color: var(--ink); font-weight: 900; text-underline-offset: 5px; }
.estimate-phone { font-size: 1.45rem; line-height: 1.2; text-decoration: none; }
.estimate-phone:hover, .estimate-email:hover { color: #104a64; }
.estimate-text { margin: 4px 0 8px; padding: 9px 13px; border: 2px solid var(--ink); font-size: .72rem; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; transition: .2s ease; }
.estimate-text:hover { color: #fff; background: var(--ink); }
.estimate-email { font-size: .9rem; }
.estimate-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 38px; background: #fff; box-shadow: 14px 14px 0 var(--yellow); }
.estimate-form label { display: grid; gap: 8px; font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.estimate-form input, .estimate-form select, .estimate-form textarea { width: 100%; border: 0; border-bottom: 2px solid #b7c0c7; border-radius: 0; background: transparent; padding: 9px 2px; color: var(--ink); outline: none; }
.estimate-form textarea { resize: vertical; }
.estimate-form input:focus, .estimate-form select:focus, .estimate-form textarea:focus { border-color: var(--blue-deep); }
.full-width { grid-column: 1 / -1; }
.button-dark { width: 100%; background: var(--ink); color: #fff; }
.button-dark:hover { background: var(--blue-deep); }
.form-feedback { align-self: center; }
.form-status { margin: 0; align-self: center; color: #166b43; font-size: .8rem; font-weight: 800; }
.form-note { margin: 5px 0 0; color: var(--muted); font-size: .72rem; line-height: 1.4; }

.footer { min-height: 150px; padding: 32px max(32px, calc((100vw - var(--max)) / 2)); background: var(--ink); color: #fff; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 50px; }
.footer-brand { display: grid; }
.footer-brand strong { font-family: Impact, "Arial Black", sans-serif; font-size: 1.35rem; letter-spacing: .04em; }
.footer-brand span, .footer p { color: #9da8b1; font-size: .76rem; }
.footer p { margin: 0; }
.footer a { color: var(--blue); font-size: .75rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }

@media (max-width: 900px) {
  .site-header { min-height: 88px; padding: 12px 22px; }
  .brand { width: 210px; }
  .menu-toggle { display: grid; width: 46px; height: 42px; padding: 10px; border: 0; background: var(--ink); gap: 5px; align-content: center; }
  .menu-toggle > span:not(.sr-only) { height: 2px; background: #fff; display: block; transition: .2s ease; }
  #site-nav { display: none; position: absolute; top: 88px; left: 0; right: 0; background: var(--ink); color: #fff; padding: 28px 22px; align-items: stretch; flex-direction: column; gap: 0; box-shadow: 0 18px 36px rgba(0,0,0,.2); }
  #site-nav.open { display: flex; }
  #site-nav a { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  #site-nav .nav-cta { margin-top: 16px; padding: 15px; background: var(--blue); color: var(--ink); border: 0; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding: 62px 24px 76px; gap: 60px; }
  .hero h1 { font-size: clamp(3.4rem, 15vw, 5.2rem); }
  .hero-visual { width: min(88%, 520px); margin-left: auto; }
  .image-frame img { aspect-ratio: 5 / 4; }
  .trust-strip { grid-template-columns: 1fr; padding: 0 24px; }
  .trust-strip > div, .trust-strip > div:first-child { border-left: 0; border-right: 0; border-bottom: 1px solid rgba(14,19,25,.25); padding: 22px 0; }
  .section { padding: 80px 24px; }
  .services { padding: 68px 24px 76px; }
  .section-heading { display: block; }
  .section-heading h2 { margin-bottom: 24px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 290px; padding: 30px; }
  .projects { padding: 80px 24px; }
  .projects-heading { display: block; }
  .projects-heading > p { margin-top: 22px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-grid-more { grid-template-columns: 1fr; }
  .project-large, .project-large img { min-height: 440px; }
  .project-card, .project-card img { min-height: 330px; }
  .about { grid-template-columns: 1fr; }
  .about-mark { min-height: 260px; font-size: 13rem; }
  .about-copy { padding: 74px 24px; }
  .process { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  blockquote { min-height: 260px; }
  .estimate { grid-template-columns: 1fr; padding: 80px 24px; }
  .footer { grid-template-columns: 1fr; gap: 18px; padding: 36px 24px; }
}

@media (max-width: 560px) {
  .brand { width: 170px; }
  .hero { padding-top: 48px; }
  .hero-intro { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button-primary { width: calc(100% - 8px); }
  .hero-visual { width: 92%; }
  .project-tag { left: -18px; bottom: 20px; }
  .section-heading h2, .projects h2, .about h2, .estimate h2 { font-size: clamp(2.8rem, 14vw, 4rem); }
  .estimate-form { grid-template-columns: 1fr; padding: 26px 22px; box-shadow: 9px 9px 0 var(--yellow); }
  .full-width { grid-column: auto; }
}

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