:root {
  --ink: #11120f;
  --ink-soft: #20211d;
  --paper: #f3f1ea;
  --paper-warm: #e7e2d5;
  --white: #ffffff;
  --yellow: #f4c400;
  --yellow-dark: #765f00;
  --muted: #60625a;
  --line: rgba(17, 18, 15, 0.16);
  --shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 0.98; letter-spacing: -0.045em; }
h1 { margin-bottom: 1.4rem; font-size: clamp(3.2rem, 6.1vw, 6rem); font-weight: 950; text-transform: uppercase; }
h2 { margin-bottom: 1.25rem; font-size: clamp(2.35rem, 4.8vw, 4.7rem); font-weight: 920; }
h3 { margin-bottom: 0.75rem; font-size: 1.6rem; font-weight: 900; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 850;
}
.skip-link:focus { top: 1rem; }
.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 {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  min-height: 94px;
  padding: 0.65rem max(1.25rem, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: rgba(10, 11, 9, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}
.brand { flex: 0 0 auto; }
.brand img { width: 78px; height: 70px; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2rem); margin-left: auto; font-size: 0.9rem; font-weight: 780; }
.desktop-nav a { padding-block: 0.65rem; border-bottom: 2px solid transparent; }
.desktop-nav a:hover { border-color: var(--yellow); }
.header-actions { display: flex; align-items: center; gap: 1rem; margin-left: clamp(1rem, 2.4vw, 2rem); font-size: 0.88rem; font-weight: 850; }
.nav-text-link { color: var(--yellow); }
.nav-cta { padding: 0.78rem 1rem; background: var(--yellow); color: var(--ink); font-weight: 920; }
.menu-toggle, .mobile-nav { display: none; }

.hero {
  min-height: 740px;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(500px, 1.07fr);
  padding-top: 94px;
  background: var(--ink);
  color: var(--white);
}
.hero-copy-panel {
  display: flex;
  align-items: center;
  min-width: 0;
  background:
    linear-gradient(145deg, rgba(244, 196, 0, 0.09), transparent 42%),
    var(--ink);
}
.hero-content {
  width: 100%;
  max-width: 760px;
  padding: clamp(4rem, 7vw, 7rem) clamp(2rem, 5vw, 5rem) clamp(4rem, 7vw, 6rem) max(1.25rem, calc((100vw - var(--max)) / 2));
}
.hero h1 { max-width: 720px; font-size: clamp(3.25rem, 5vw, 5.25rem); }
.hero-copy { max-width: 660px; margin-bottom: 2rem; color: rgba(255,255,255,0.82); font-size: clamp(1.04rem, 1.7vw, 1.25rem); }
.hero-photo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(190px, 0.85fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 5px;
  min-width: 0;
  background: var(--yellow);
  border-left: 5px solid var(--yellow);
}
.hero-photo { position: relative; min-width: 0; margin: 0; overflow: hidden; background: #292a25; }
.hero-photo-main { grid-row: 1 / 3; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-main img { object-position: 54% 56%; }
.hero-photo:nth-child(2) img { object-position: 50% 66%; }
.hero-photo:nth-child(3) img { object-position: 46% 46%; }
.hero-photo::after { content: ""; position: absolute; inset: auto 0 0; height: 42%; background: linear-gradient(transparent, rgba(0,0,0,0.74)); pointer-events: none; }
.hero-photo figcaption { position: absolute; z-index: 1; inset: auto 0 0; padding: 1rem; color: var(--white); font-size: 0.78rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; }

.eyebrow { margin: 0 0 1rem; color: var(--yellow-dark); font-size: 0.75rem; font-weight: 920; letter-spacing: 0.16em; text-transform: uppercase; }
.hero .eyebrow, .service-hero .eyebrow { color: var(--yellow); }
.hero-actions, .contact-buttons, .form-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.2rem;
  border: 2px solid transparent;
  border-radius: 0;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
.button-primary { background: var(--yellow); color: var(--ink); }
.button-primary:hover { background: #ffdb33; }
.button-secondary { border-color: rgba(255,255,255,0.66); color: var(--white); background: rgba(0,0,0,0.18); }
.button-secondary:hover { border-color: var(--white); background: rgba(0,0,0,0.38); }
.button-dark { background: var(--ink); color: var(--yellow); }
.button-outline-dark { border-color: var(--ink); color: var(--ink); background: transparent; }

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-inline: max(1.25rem, calc((100vw - var(--max)) / 2));
  background: var(--yellow);
}
.quick-facts span { display: flex; flex-direction: column; gap: 0.1rem; padding: 1.25rem clamp(1rem, 3vw, 2rem); border-right: 1px solid rgba(17,18,15,0.22); color: rgba(17,18,15,0.7); font-size: 0.85rem; }
.quick-facts span:first-child { border-left: 1px solid rgba(17,18,15,0.22); }
.quick-facts strong { color: var(--ink); font-size: 1rem; }

.section { width: min(var(--max), calc(100% - 2.5rem)); margin-inline: auto; padding: clamp(5rem, 8vw, 7.5rem) 0; }
.section-heading { max-width: 760px; margin-bottom: 3rem; }
.section-heading > p:last-child { color: #4b4d46; font-size: 1.06rem; }
.split-heading { max-width: none; display: flex; justify-content: space-between; align-items: end; gap: 2rem; }
.split-heading > p { max-width: 430px; }

.services { width: 100%; max-width: none; padding-inline: max(1.25rem, calc((100vw - var(--max)) / 2)); background: var(--ink); color: var(--white); }
.services .section-heading > p:last-child { color: rgba(255,255,255,0.64); }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.service-card { min-width: 0; background: var(--white); color: var(--ink); box-shadow: 0 14px 28px rgba(0,0,0,0.2); transition: transform 180ms ease; }
.service-card:hover { transform: translateY(-5px); }
.service-card-image { height: 230px; overflow: hidden; background: #2a2b27; }
.service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 350ms ease; }
.service-card:nth-child(1) img { object-position: 50% 63%; }
.service-card:nth-child(2) img { object-position: 50% 70%; }
.service-card:nth-child(3) img { object-position: 70% 65%; }
.service-card:nth-child(4) img { object-position: 55% 58%; }
.service-card:nth-child(5) img { object-position: 53% 67%; }
.service-card:nth-child(6) img { object-position: 42% 45%; }
.service-card:hover img { transform: scale(1.025); }
.service-card-body { min-height: 260px; display: flex; flex-direction: column; padding: 1.35rem; }
.service-card-body > span { color: var(--yellow-dark); font-family: ui-monospace, monospace; font-size: 0.73rem; font-weight: 850; }
.service-card-body h3 { margin-top: 1.6rem; }
.service-card-body p { color: #51534c; }
.service-card-body strong { margin-top: auto; font-size: 0.84rem; }

.video-work { width: 100%; max-width: none; padding-inline: max(1.25rem, calc((100vw - var(--max)) / 2)); background: var(--paper-warm); }
.video-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; align-items: start; }
.video-card { min-width: 0; overflow: hidden; background: var(--ink); color: var(--white); box-shadow: var(--shadow); }
.video-card video { display: block; width: 100%; aspect-ratio: 9 / 16; border: 0; background: #000; object-fit: contain; }
.video-card-copy { min-height: 185px; padding: 1.35rem; }
.video-card-copy span { display: block; margin-bottom: 1.4rem; color: var(--yellow); font-family: ui-monospace, monospace; font-size: 0.73rem; font-weight: 850; letter-spacing: 0.1em; text-transform: uppercase; }
.video-card-copy h3 { color: var(--white); }
.video-card-copy p { margin-bottom: 0; color: rgba(255,255,255,0.65); }

.work { width: min(1420px, calc(100% - 2.5rem)); }
.project-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 220px; gap: 0.75rem; grid-auto-flow: dense; }
.project-card { position: relative; min-width: 0; overflow: hidden; background: #c9c7bf; }
.project-card-wide { grid-column: span 2; }
.project-card-tall { grid-row: span 2; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 320ms ease; }
.project-card:nth-child(1) img { object-position: 50% 67%; }
.project-card:nth-child(2) img { object-position: 50% 70%; }
.project-card:nth-child(3) img { object-position: 70% 62%; }
.project-card:nth-child(4) img { object-position: 50% 67%; }
.project-card:nth-child(5) img { object-position: 50% 63%; }
.project-card:nth-child(6) img { object-position: 50% 60%; }
.project-card:hover img { transform: scale(1.03); }
.project-card::after { content: ""; position: absolute; inset: auto 0 0; height: 46%; background: linear-gradient(transparent, rgba(0,0,0,0.78)); }
.project-card span { position: absolute; z-index: 1; inset: auto 0 0; padding: 0.95rem; color: var(--white); font-size: 0.84rem; font-weight: 900; }

.about { display: grid; grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr); gap: clamp(2.5rem, 7vw, 7rem); align-items: center; }
.about-photo { height: 610px; overflow: hidden; box-shadow: var(--shadow); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 58%; }
.about-copy > p:not(.eyebrow) { max-width: 670px; color: #454740; font-size: 1.08rem; }
.estimate-steps { display: grid; gap: 0; margin-top: 2rem; border-top: 2px solid var(--ink); }
.estimate-steps span { display: flex; align-items: center; gap: 0.85rem; padding: 1rem 0; border-bottom: 1px solid var(--line); font-weight: 850; }
.estimate-steps b { display: grid; place-items: center; width: 31px; height: 31px; background: var(--yellow); font-size: 0.78rem; }

.contact { width: 100%; max-width: none; display: grid; grid-template-columns: minmax(0, 0.86fr) minmax(390px, 1.14fr); gap: clamp(2.5rem, 7vw, 7rem); padding-inline: max(1.25rem, calc((100vw - var(--max)) / 2)); background: var(--yellow); }
.contact .eyebrow { color: rgba(17,18,15,0.62); }
.contact-copy > p:not(.eyebrow) { max-width: 520px; color: rgba(17,18,15,0.73); font-size: 1.08rem; }
.contact-buttons { margin-top: 2rem; }
.facebook-link { display: inline-block; margin-top: 1.7rem; font-weight: 900; text-decoration: underline; text-underline-offset: 4px; }
.quote-form { padding: clamp(1.35rem, 3.5vw, 2.4rem); background: var(--white); box-shadow: var(--shadow); }
.quote-form label { display: grid; gap: 0.5rem; margin-bottom: 1rem; font-size: 0.82rem; font-weight: 850; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; min-height: 48px; padding: 0.8rem 0.9rem; border: 1px solid #b7b8b2; border-radius: 0; background: #faf9f5; color: var(--ink); font-size: 1rem; }
.quote-form textarea { resize: vertical; }
.form-actions .button { flex: 1 1 190px; }
.button-form-secondary { border-color: #b8b9b3; background: var(--white); color: var(--ink); }
.form-note { margin: 0.8rem 0 0; color: var(--muted); font-size: 0.78rem; }

.site-footer { display: grid; grid-template-columns: 1.35fr 0.65fr 0.65fr; gap: 3rem; padding: 4rem max(1.25rem, calc((100vw - var(--max)) / 2)) 1.4rem; background: var(--ink); color: var(--white); }
.footer-brand img { width: 130px; height: 130px; object-fit: contain; }
.footer-brand p { max-width: 500px; margin-top: 1.1rem; color: rgba(255,255,255,0.58); }
.site-footer > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 0.5rem; }
.footer-label { margin-bottom: 0.75rem; color: var(--yellow); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; }
.footer-bottom { grid-column: 1 / -1; margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,0.16); }
.footer-bottom p { margin: 0; color: rgba(255,255,255,0.6); font-size: 0.82rem; }
.compact-footer { display: flex; justify-content: space-between; padding-block: 1.5rem; }
.compact-footer p { margin: 0; }
.mobile-action-bar { display: none; }

.service-hero { position: relative; min-height: 620px; display: grid; align-items: end; color: var(--white); background: var(--ink); overflow: hidden; }
.service-hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: var(--service-position, center); }
.service-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,11,9,0.94) 0%, rgba(10,11,9,0.72) 45%, rgba(10,11,9,0.26) 100%); }
.service-hero-content { position: relative; z-index: 1; width: min(var(--max), calc(100% - 2.5rem)); margin: 0 auto; padding: 10rem 0 5rem; }
.service-hero h1 { max-width: 880px; font-size: clamp(3.4rem, 7.5vw, 7rem); }
.service-hero-content > p:not(.eyebrow) { max-width: 680px; margin-bottom: 2rem; color: rgba(255,255,255,0.82); font-size: 1.15rem; }
.back-link { display: inline-block; }
.service-detail { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(2.5rem, 7vw, 6rem); }
.service-detail > div > p:last-child { max-width: 660px; color: #4a4c45; font-size: 1.08rem; }
.detail-list { list-style: none; margin: 0; padding: 0; border-top: 2px solid var(--ink); }
.detail-list li { padding: 1.1rem 0; border-bottom: 1px solid var(--line); font-weight: 850; }
.detail-list li::before { content: "✓"; margin-right: 0.7rem; color: var(--yellow-dark); }
.service-cta { width: 100%; max-width: none; padding-inline: max(1.25rem, calc((100vw - var(--max)) / 2)); background: var(--yellow); }
.service-cta .eyebrow { color: rgba(17,18,15,0.62); }
.service-cta h2 { max-width: 930px; }
.service-cta .button { margin-top: 1rem; }
.service-gallery-strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.7rem; margin-top: 2rem; }
.service-gallery-strip img { width: 100%; height: 230px; object-fit: cover; }

.service-cta, .quick-facts, .contact, .services { scroll-margin-top: 92px; }

@media (max-width: 1080px) {
  .hero { grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr); }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .video-card-featured { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr); align-items: center; }
  .video-card-featured .video-card-copy { padding: clamp(1.5rem, 4vw, 3rem); }
  .project-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .site-header { min-height: 80px; padding-inline: 1rem; }
  .brand img { width: 64px; height: 60px; }
  .desktop-nav, .header-actions { display: none; }
  .menu-toggle { display: grid; gap: 5px; width: 44px; height: 44px; margin-left: auto; place-content: center; border: 0; background: transparent; color: var(--white); }
  .menu-toggle span { display: block; width: 25px; height: 2px; background: currentColor; transition: transform 160ms ease, opacity 160ms ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-nav { position: fixed; inset: 80px 0 auto; display: none; flex-direction: column; padding: 1rem 1.2rem 1.25rem; background: var(--ink); border-top: 1px solid rgba(255,255,255,0.14); box-shadow: 0 18px 34px rgba(0,0,0,0.32); }
  .mobile-nav.open { display: flex; }
  .mobile-nav a { padding: 0.9rem 0; border-bottom: 1px solid rgba(255,255,255,0.14); font-size: 1.03rem; font-weight: 850; }
  .mobile-nav .mobile-nav-cta { margin-top: 0.7rem; padding: 0.9rem 1rem; border: 0; background: var(--yellow); color: var(--ink); text-align: center; }
  .hero { grid-template-columns: 1fr; padding-top: 80px; }
  .hero-copy-panel { min-height: 520px; }
  .hero-content { max-width: 760px; padding: 5rem 1.25rem 4rem; margin-inline: auto; }
  .hero-photo-grid { min-height: 520px; border-left: 0; border-top: 5px solid var(--yellow); }
  .about, .contact, .service-detail { grid-template-columns: 1fr; }
  .about-photo { height: 520px; }
  .contact-copy { max-width: 760px; }
}

@media (max-width: 680px) {
  body { padding-bottom: calc(60px + env(safe-area-inset-bottom)); }
  html { scroll-padding-top: 80px; }
  .hero-copy-panel { min-height: 500px; }
  .hero-content { padding: 4.5rem 1rem 3.5rem; }
  .hero h1 { font-size: clamp(2.85rem, 13vw, 4.35rem); }
  .hero-copy { font-size: 1rem; }
  .hero-actions .button { flex: 1 1 100%; }
  .hero-photo-grid { min-height: 430px; grid-template-columns: minmax(0, 1.4fr) minmax(125px, 0.8fr); }
  .hero-photo figcaption { padding: 0.7rem; font-size: 0.65rem; }
  .quick-facts { grid-template-columns: 1fr; padding-inline: 1rem; }
  .quick-facts span, .quick-facts span:first-child { border-left: 0; border-right: 0; border-bottom: 1px solid rgba(17,18,15,0.22); padding-inline: 0; }
  .section { width: min(100% - 2rem, var(--max)); padding-block: 4.5rem; }
  .services, .contact { width: 100%; padding-inline: 1rem; }
  .video-work { width: 100%; padding-inline: 1rem; }
  .split-heading { display: block; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card-image { height: 245px; }
  .service-card-body { min-height: 230px; }
  .video-grid { grid-template-columns: 1fr; }
  .video-card-featured { grid-column: auto; display: block; }
  .video-card { width: min(100%, 430px); margin-inline: auto; }
  .video-card-copy { min-height: 0; }
  .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 180px; gap: 0.55rem; }
  .project-card-wide { grid-column: span 2; }
  .project-card-tall { grid-row: span 2; }
  .project-card span { padding: 0.7rem; font-size: 0.72rem; }
  .about-photo { height: 430px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .site-footer { grid-template-columns: 1fr; gap: 2rem; padding: 3.5rem 1rem 2rem; }
  .footer-bottom { grid-column: auto; }
  .compact-footer { display: block; }
  .mobile-action-bar { position: fixed; z-index: 50; inset: auto 0 0; display: grid; grid-template-columns: 0.72fr 0.72fr 1.36fr; height: calc(60px + env(safe-area-inset-bottom)); padding-bottom: env(safe-area-inset-bottom); background: var(--ink); color: var(--white); box-shadow: 0 -4px 20px rgba(0,0,0,0.22); }
  .mobile-action-bar a { display: grid; place-items: center; border-right: 1px solid rgba(255,255,255,0.16); font-weight: 900; }
  .mobile-action-bar a:last-child { border: 0; background: var(--yellow); color: var(--ink); }
  .service-hero { min-height: 580px; }
  .service-hero-shade { background: linear-gradient(0deg, rgba(10,11,9,0.96) 0%, rgba(10,11,9,0.72) 52%, rgba(10,11,9,0.24) 100%); }
  .service-hero-content { width: min(100% - 2rem, var(--max)); padding: 10rem 0 3.5rem; }
  .service-hero h1 { font-size: clamp(3rem, 14vw, 4.8rem); }
  .service-gallery-strip { grid-template-columns: 1fr; }
  .service-gallery-strip img { height: 280px; }
}

@media (max-width: 430px) {
  .project-grid { grid-auto-rows: 155px; }
  .project-card span { font-size: 0.68rem; }
  .contact-buttons .button { flex: 1 1 100%; }
}

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