:root {
  --black: #080808;
  --near-black: #111111;
  --panel: #171717;
  --panel-2: #1d1d1d;
  --gold: #f2bb2f;
  --gold-bright: #ffd45c;
  --gold-dark: #b67c00;
  --white: #f8f8f5;
  --muted: #b9b9b2;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.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;
}
.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 1000; padding: 12px 18px;
  color: var(--black); background: var(--gold); font-weight: 700; transition: top .2s;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8, 8, 8, 0.88); border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  display: grid; place-items: center; width: 42px; height: 42px; color: var(--black);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
  font: 800 1.65rem/1 "Barlow Condensed", sans-serif; transform: skewX(-8deg);
}
.brand-name { font: 800 1.2rem/1 "Barlow Condensed", sans-serif; letter-spacing: .08em; }
.brand-name span { color: var(--gold); }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { text-decoration: none; font-size: .92rem; font-weight: 600; }
.site-nav a:hover { color: var(--gold); }
.menu-button { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; }
.menu-button span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--white); }

.hero {
  position: relative; overflow: hidden; border-bottom: 1px solid var(--line);
  background: #080808 url("assets/kitchen-remodel-main.jpg") center 54% / cover no-repeat;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,8,.96) 0%, rgba(8,8,8,.86) 40%, rgba(8,8,8,.48) 72%, rgba(8,8,8,.3) 100%),
    linear-gradient(180deg, rgba(8,8,8,.18), rgba(8,8,8,.44));
}
.hero-grid {
  position: absolute; inset: 0; opacity: .1;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 72px 72px; mask-image: linear-gradient(to right, black, transparent 76%);
}
.hero-layout { position: relative; min-height: 610px; display: flex; align-items: center; padding-block: 76px; }
.hero-copy { min-width: 0; max-width: 760px; }
.eyebrow { margin: 0 0 14px; color: var(--gold); font: 700 .82rem/1.4 "Inter", sans-serif; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; font-family: "Barlow Condensed", sans-serif; line-height: .98; }
h1 { margin-bottom: 24px; font-size: clamp(3.5rem, 5.6vw, 5.7rem); letter-spacing: -.035em; text-transform: uppercase; }
.hero-gold {
  display: inline-block;
  color: #f3bd32;
  background: linear-gradient(180deg, #fff3aa 0%, #f7cf55 20%, #b87300 45%, #ffe77b 66%, #9d5d00 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 0 rgba(64, 35, 0, .8)) drop-shadow(0 5px 12px rgba(0, 0, 0, .45));
}
.hero-script {
  display: inline-block;
  font-family: "Alex Brush", cursive;
  font-size: .84em;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: .01em;
  text-transform: none;
  color: #f5f7f9;
  background: linear-gradient(180deg, #ffffff 0%, #eef1f4 30%, #9da4ad 52%, #ffffff 72%, #c3c8ce 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 0 rgba(35, 39, 44, .9)) drop-shadow(0 4px 10px rgba(0, 0, 0, .5));
}
.hero-lede { max-width: 630px; margin: 0 0 30px; color: #d4d4cf; font-size: 1.14rem; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 14px 21px;
  border: 1px solid transparent; text-decoration: none; font-weight: 800; transition: transform .2s, background .2s, border-color .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--black); background: var(--gold); }
.button-primary:hover { background: var(--gold-bright); }
.button-secondary { color: var(--white); border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.04); }
.button-secondary:hover { border-color: var(--gold); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 26px; color: var(--muted); font-size: .85rem; }
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof span::before { content: ""; width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); }
section { scroll-margin-top: 76px; }
.service-intro, .process { padding: 112px 0; }
.section-heading { display: grid; grid-template-columns: 1.1fr .7fr; gap: 100px; align-items: end; margin-bottom: 52px; }
.section-heading.compact { grid-template-columns: 1fr; }
.section-heading h2, .about h2, .contact h2 { margin-bottom: 0; font-size: clamp(3rem, 5vw, 5rem); letter-spacing: -.025em; text-transform: uppercase; }
.section-heading > p { margin: 0 0 6px; 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-card { position: relative; min-height: 255px; padding: 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--near-black); transition: background .25s, transform .25s; }
.service-card:hover { z-index: 2; background: var(--panel-2); transform: translateY(-4px); }
.service-card.featured { background: linear-gradient(145deg, #2a210a, #14120d); }
.service-number { color: var(--gold); font: 700 .78rem/1 "Inter", sans-serif; letter-spacing: .12em; }
.service-card h3 { margin: 62px 0 12px; font-size: 1.7rem; text-transform: uppercase; }
.service-card p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.6; }

.about { padding: 112px 0; background: #f2f0e9; color: #101010; }
.about-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 90px; align-items: center; }
.about-panel > p:not(.eyebrow) { max-width: 690px; color: #4a4a45; }
.about-panel h2 { margin-bottom: 30px; }
.promise-card { padding: 44px; color: var(--white); background: var(--near-black); box-shadow: var(--shadow); border-top: 5px solid var(--gold); }
.promise-label { color: var(--gold); font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
blockquote { margin: 26px 0 34px; font: 700 2.35rem/1.08 "Barlow Condensed", sans-serif; text-transform: uppercase; }
.promise-details { display: grid; gap: 14px; padding-top: 22px; border-top: 1px solid var(--line); }
.promise-details div { display: flex; justify-content: space-between; gap: 20px; }
.promise-details strong { color: var(--gold); }
.promise-details span { color: var(--muted); text-align: right; }

.process { background: #0d0d0d; }
.process-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin: 0; padding: 1px; list-style: none; background: var(--line); }
.process-grid li { display: grid; grid-template-columns: auto 1fr; gap: 22px; padding: 34px; background: var(--black); }
.process-grid li > span { display: grid; place-items: center; width: 46px; height: 46px; color: var(--black); background: var(--gold); font-weight: 900; }
.process-grid h3 { margin: 0 0 10px; font-size: 1.55rem; text-transform: uppercase; }
.process-grid p { margin: 0; color: var(--muted); font-size: .93rem; }

.contact { padding: 0 0 112px; background: #0d0d0d; }
.contact-card { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; padding: 58px; color: var(--black); background: var(--gold); box-shadow: 0 32px 70px rgba(0,0,0,.32); }
.contact-card .eyebrow { color: #604200; }
.contact-card h2 { margin-bottom: 14px; }
.contact-card p { max-width: 690px; margin: 0; color: #3b300f; }
.contact-card .contact-email { margin-top: 14px; font-weight: 700; }
.contact-email a { color: inherit; text-underline-offset: 4px; overflow-wrap: anywhere; }
.contact-actions { display: grid; gap: 10px; min-width: 225px; }
.contact-card .button-primary { color: var(--white); background: var(--black); }
.contact-card .button-secondary { color: var(--black); border-color: rgba(0,0,0,.45); }

.site-footer { padding: 34px 0; border-top: 1px solid var(--line); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; color: #8f8f89; font-size: .82rem; }
.footer-inner div { display: grid; }
.footer-inner strong { color: var(--white); }
.footer-inner p { margin: 0; }

a:focus-visible, button:focus-visible { outline: 3px solid var(--gold-bright); outline-offset: 4px; }

@media (max-width: 960px) {
  .menu-button { display: block; }
  .site-nav {
    position: absolute; top: 76px; left: 0; right: 0; display: none; align-items: stretch; flex-direction: column;
    gap: 0; padding: 10px 20px 22px; background: #0c0c0c; border-bottom: 1px solid var(--line);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px 8px; }
  .hero { background-position: 62% center; }
  .hero::before { background: linear-gradient(90deg, rgba(8,8,8,.94), rgba(8,8,8,.68)); }
  .hero-layout { min-height: 570px; padding-block: 66px; }
  .hero-copy { max-width: 690px; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .about-layout { grid-template-columns: 1fr; gap: 50px; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-actions { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-wrap: wrap; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1160px); }
  .brand-name { font-size: 1rem; }
  .hero-layout { padding-block: 46px; }
  h1 { font-size: clamp(2.7rem, 11.5vw, 3.45rem); }
  .hero-script { font-size: .88em; }
  .hero-lede { font-size: 1rem; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; justify-content: start; width: fit-content; text-align: left; }
  .service-intro, .process, .about { padding: 78px 0; }
  .section-heading h2, .about h2, .contact h2 { font-size: 3rem; }
  .service-grid, .process-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 220px; }
  .service-card h3 { margin-top: 46px; }
  .promise-card { padding: 32px 26px; }
  blockquote { font-size: 2rem; }
  .promise-details div { display: grid; gap: 1px; }
  .promise-details span { text-align: left; }
  .process-grid li { padding: 26px 20px; }
  .contact { padding-bottom: 78px; }
  .contact-card { width: 100%; padding: 44px 24px; }
  .contact-actions { grid-template-columns: 1fr; }
  .footer-inner { display: grid; text-align: center; justify-content: center; }
}

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