
:root {
  --ink: #111111;
  --ink-2: #242424;
  --paper: #f8f6f1;
  --white: #ffffff;
  --stone: #ece7dc;
  --gold: #b48632;
  --gold-2: #d2aa58;
  --muted: #6d6a63;
  --line: rgba(17,17,17,.14);
  --shadow: 0 18px 55px rgba(0,0,0,.12);
  --radius: 8px;
  --max: 1220px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.eyebrow {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}
h1,h2,h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.05; margin: 0 0 18px; }
h1 { font-size: clamp(2.75rem, 7vw, 5.9rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2.15rem, 4.3vw, 4rem); letter-spacing: -.035em; }
h3 { font-size: 1.45rem; }
p { margin: 0 0 18px; }
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-head { max-width: 780px; margin-bottom: 42px; }
.section-head p { max-width: 680px; color: var(--muted); font-size: 1.05rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 22px; border-radius: 3px; border: 1px solid transparent;
  text-decoration: none; font-weight: 800; letter-spacing: .01em; transition: .2s ease;
}
.btn-primary { background: var(--gold); color: #111; }
.btn-primary:hover { background: var(--gold-2); transform: translateY(-1px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #2d2d2d; transform: translateY(-1px); }
.btn-outline { border-color: rgba(255,255,255,.65); color: #fff; background: rgba(0,0,0,.15); }
.btn-outline:hover { background: rgba(255,255,255,.1); }
.btn-light { border-color: var(--ink); background: transparent; }
.btn-light:hover { background: var(--ink); color: white; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { background: rgba(17,17,17,.96); box-shadow: 0 10px 30px rgba(0,0,0,.16); }
.navbar {
  min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: white; }
.brand img { width: 50px; height: 50px; object-fit: contain; background: white; border-radius: 50%; padding: 3px; }
.brand-text { font-weight: 900; letter-spacing: .05em; }
.desktop-nav { display: flex; align-items: center; gap: 24px; color: white; }
.desktop-nav a { text-decoration: none; font-size: .92rem; font-weight: 650; }
.desktop-nav a:hover { color: var(--gold-2); }
.nav-actions { display:flex; align-items:center; gap:10px; }
.nav-phone { color: white; font-weight: 800; text-decoration: none; }
.menu-toggle { display:none; color:white; background:none; border:1px solid rgba(255,255,255,.35); padding:9px 11px; border-radius:3px; }

.hero {
  min-height: 94vh; display: grid; align-items: end; position: relative; color: #fff; overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7,7,7,.84) 0%, rgba(7,7,7,.62) 46%, rgba(7,7,7,.18) 100%),
    url("assets/projects/kitchen-renovation.webp") center/cover no-repeat;
}
.hero::after { content:""; position:absolute; inset:auto 0 0; height: 220px; background:linear-gradient(transparent, rgba(0,0,0,.52)); pointer-events:none; }
.hero-inner { position: relative; z-index: 2; padding: 170px 0 82px; max-width: 810px; }
.hero .eyebrow { color: #efcc82; }
.hero p { max-width: 690px; font-size: clamp(1.08rem, 2vw, 1.28rem); color: rgba(255,255,255,.9); }
.hero-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top: 30px; }
.rating-strip { display:flex; flex-wrap:wrap; align-items:center; gap:14px; margin-top: 34px; font-weight:700; }
.stars { color:#f3c45e; letter-spacing:.08em; }
.rating-strip span:last-child { color:rgba(255,255,255,.78); font-weight:500; }

.trust-bar { background: var(--ink); color: white; border-top: 1px solid rgba(255,255,255,.1); }
.trust-grid { display:grid; grid-template-columns: repeat(5, 1fr); }
.trust-item { min-height:84px; display:flex; align-items:center; justify-content:center; text-align:center; padding:14px; border-right:1px solid rgba(255,255,255,.11); font-weight:700; font-size:.92rem; }
.trust-item:last-child { border-right:none; }
.trust-item strong { color: var(--gold-2); margin-right:6px; }

.intro-grid { display:grid; grid-template-columns: 1.05fr .95fr; gap:60px; align-items:center; }
.intro-photo { position:relative; }
.intro-photo img { aspect-ratio: 4/3; object-fit:cover; box-shadow: var(--shadow); }
.intro-photo::before { content:""; position:absolute; width:42%; height:42%; right:-18px; bottom:-18px; border: 2px solid var(--gold); z-index:-1; }
.check-list { list-style:none; padding:0; margin:25px 0 0; display:grid; grid-template-columns:repeat(2,1fr); gap:12px 26px; }
.check-list li::before { content:"✓"; color:var(--gold); font-weight:900; margin-right:9px; }

.services { background: #fff; }
.service-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:18px; }
.service-card { position:relative; min-height: 410px; overflow:hidden; color:white; background:#111; text-decoration:none; }
.service-card img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition: transform .45s ease; }
.service-card::after { content:""; position:absolute; inset:0; background:linear-gradient(transparent 35%, rgba(0,0,0,.82)); }
.service-card:hover img { transform:scale(1.035); }
.service-copy { position:absolute; z-index:2; inset:auto 24px 24px; }
.service-copy p { color:rgba(255,255,255,.78); margin:0; font-size:.94rem; }
.service-tag { font-size:.72rem; text-transform:uppercase; letter-spacing:.12em; color:#efcc82; font-weight:800; }

.gallery-shell { background: #141414; color:white; }
.gallery-shell .section-head p { color:rgba(255,255,255,.68); }
.filter-row { display:flex; flex-wrap:wrap; gap:9px; margin-bottom:24px; }
.filter-btn { background:transparent; color:white; border:1px solid rgba(255,255,255,.28); padding:9px 14px; border-radius:2px; }
.filter-btn.active, .filter-btn:hover { background:var(--gold); border-color:var(--gold); color:#111; }
.gallery-grid { display:grid; grid-template-columns:repeat(12,1fr); gap:12px; }
.gallery-item { position:relative; overflow:hidden; background:#222; min-height:280px; border:0; padding:0; }
.gallery-item:nth-child(1), .gallery-item:nth-child(4) { grid-column: span 7; }
.gallery-item:nth-child(2), .gallery-item:nth-child(3) { grid-column: span 5; }
.gallery-item:nth-child(n+5) { grid-column: span 4; }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition:transform .3s ease; }
.gallery-item:hover img { transform:scale(1.025); }
.gallery-label { position:absolute; left:14px; bottom:14px; padding:7px 10px; font-size:.78rem; font-weight:800; background:rgba(0,0,0,.72); color:#fff; }
.gallery-note { margin-top:18px; color:rgba(255,255,255,.6); font-size:.88rem; }

.estimate-section { background: linear-gradient(180deg, #f6f1e7 0%, #fff 100%); }
.estimator { display:grid; grid-template-columns: .78fr 1.22fr; min-height:620px; background:#fff; box-shadow:var(--shadow); border:1px solid var(--line); }
.estimate-side { background:#111; color:white; padding:40px; display:flex; flex-direction:column; justify-content:space-between; }
.estimate-side p { color:rgba(255,255,255,.7); }
.progress-label { font-size:.78rem; text-transform:uppercase; letter-spacing:.12em; color:#dcbf80; font-weight:800; }
.progress-track { height:5px; background:rgba(255,255,255,.13); margin-top:12px; }
.progress-bar { height:100%; width:14.28%; background:var(--gold); transition:width .25s ease; }
.estimate-main { padding:40px; }
.calc-step { display:none; }
.calc-step.active { display:block; }
.calc-step h3 { font-size:2rem; margin-bottom:12px; }
.calc-step > p { color:var(--muted); }
.option-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:12px; margin:26px 0; }
.option-card {
  text-align:left; padding:17px; min-height:66px; border:1px solid var(--line); background:#fff; border-radius:3px; font-weight:750;
}
.option-card:hover, .option-card.selected { border-color:var(--gold); background:#fbf4e5; box-shadow: inset 3px 0 0 var(--gold); }
.input-label { display:block; font-weight:800; margin:20px 0 8px; }
.text-input, .select-input, textarea {
  width:100%; min-height:50px; border:1px solid #cfc9bc; background:#fff; border-radius:3px; padding:12px 14px; outline:none;
}
.text-input:focus, .select-input:focus, textarea:focus { border-color:var(--gold); box-shadow:0 0 0 3px rgba(180,134,50,.12); }
.quick-row { display:flex; flex-wrap:wrap; gap:8px; margin-top:12px; }
.quick-btn { border:1px solid var(--line); background:#fff; padding:8px 10px; border-radius:2px; }
.quick-btn:hover { border-color:var(--gold); }
.checkbox-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:12px; margin:24px 0; }
.checkbox-item { display:flex; gap:10px; align-items:flex-start; padding:13px; border:1px solid var(--line); }
.calc-nav { display:flex; align-items:center; justify-content:space-between; gap:12px; margin-top:30px; }
.calc-error { color:#9b1c1c; font-weight:700; min-height:24px; margin-top:10px; }
.estimate-result { padding:28px; background:#f8f4eb; border-left:4px solid var(--gold); margin:24px 0; }
.estimate-price { font-family:Georgia,serif; font-size:clamp(2.2rem,6vw,4rem); letter-spacing:-.04em; margin:6px 0 10px; }
.estimate-breakdown { display:grid; grid-template-columns:repeat(2,1fr); gap:8px 20px; margin:18px 0; font-size:.9rem; }
.estimate-breakdown div { display:flex; justify-content:space-between; border-bottom:1px solid #ddd5c4; padding-bottom:6px; }
.config-warning { background:#fff1cb; border:1px solid #e6c56e; padding:12px 14px; font-size:.86rem; margin-top:14px; }

.reviews { background:#fff; }
.review-top { display:flex; justify-content:space-between; gap:24px; align-items:end; margin-bottom:35px; }
.rating-big { font-family:Georgia,serif; font-size:3.4rem; }
.review-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.review-card { border-top:3px solid var(--gold); padding:22px; background:#f7f5f0; }
.review-card p { color:#4e4b44; }
.review-name { font-weight:850; }

.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:55px; align-items:center; }
.about-photo-grid { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.about-photo-grid img { height:260px; object-fit:cover; }
.about-photo-grid img:first-child { grid-row:span 2; height:530px; }

.contact-section { background:#171717; color:white; }
.contact-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:28px; align-items:stretch; }
.contact-card { padding:34px; border:1px solid rgba(255,255,255,.15); background:#1e1e1e; }
.contact-card p, .contact-card li { color:rgba(255,255,255,.75); }
.contact-card a { color:white; }
.hours { list-style:none; padding:0; margin:24px 0 0; }
.hours li { display:flex; justify-content:space-between; gap:20px; border-bottom:1px solid rgba(255,255,255,.1); padding:7px 0; font-size:.9rem; }
.map-frame { width:100%; min-height:520px; border:0; filter:grayscale(.15); }
.lead-form { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
.form-field.full { grid-column:1/-1; }
.form-field label { display:block; font-size:.84rem; font-weight:800; margin-bottom:6px; }
.file-note { font-size:.76rem; color:rgba(255,255,255,.55); margin-top:5px; }
.form-status { grid-column:1/-1; min-height:22px; }
.form-success { padding:18px; border:1px solid rgba(210,170,88,.7); background:rgba(180,134,50,.1); }

footer { background:#0d0d0d; color:white; padding:36px 0 90px; }
.footer-grid { display:flex; justify-content:space-between; gap:30px; align-items:center; }
.footer-small { color:rgba(255,255,255,.55); font-size:.84rem; }

.mobile-cta {
  display:none; position:fixed; z-index:60; inset:auto 0 0; background:#111; border-top:1px solid rgba(255,255,255,.15);
  padding:8px; grid-template-columns:1fr 1fr; gap:8px;
}
.mobile-cta .btn { min-height:46px; }

.lightbox { position:fixed; inset:0; background:rgba(0,0,0,.92); z-index:90; display:none; align-items:center; justify-content:center; padding:24px; }
.lightbox.open { display:flex; }
.lightbox img { max-width:min(1100px,95vw); max-height:88vh; object-fit:contain; width:auto; }
.lightbox-close { position:absolute; right:22px; top:18px; background:none; color:white; border:0; font-size:2rem; }
.mobile-panel { display:none; }

@media (max-width: 980px) {
  .desktop-nav, .nav-actions { display:none; }
  .menu-toggle { display:block; }
  .mobile-panel { position:absolute; top:82px; left:0; right:0; background:#111; color:white; padding:18px 20px 24px; border-top:1px solid rgba(255,255,255,.12); }
  .mobile-panel.open { display:grid; gap:4px; }
  .mobile-panel a { padding:12px 6px; text-decoration:none; border-bottom:1px solid rgba(255,255,255,.08); }
  .trust-grid { grid-template-columns:repeat(2,1fr); }
  .trust-item { border-bottom:1px solid rgba(255,255,255,.1); }
  .intro-grid, .about-grid, .contact-grid, .estimator { grid-template-columns:1fr; }
  .service-grid { grid-template-columns:repeat(2,1fr); }
  .review-grid { grid-template-columns:1fr 1fr; }
  .estimate-side { min-height:260px; }
}
@media (max-width: 700px) {
  .container { width:min(calc(100% - 28px), var(--max)); }
  .section { padding:72px 0; }
  .navbar { min-height:72px; }
  .brand img { width:44px; height:44px; }
  .hero { min-height: 760px; background-position: 62% center; }
  .hero-inner { padding:150px 0 70px; }
  h1 { font-size:clamp(3rem,15vw,4.7rem); }
  .hero-actions .btn { width:100%; }
  .trust-grid { grid-template-columns:1fr 1fr; }
  .trust-item { min-height:70px; font-size:.82rem; }
  .service-grid { grid-template-columns:1fr; }
  .service-card { min-height:360px; }
  .gallery-grid { display:block; }
  .gallery-item { width:100%; min-height:320px; margin-bottom:10px; }
  .review-top { display:block; }
  .review-grid { grid-template-columns:1fr; }
  .estimate-main, .estimate-side { padding:25px 20px; }
  .option-grid, .checkbox-grid, .lead-form { grid-template-columns:1fr; }
  .form-field.full { grid-column:auto; }
  .estimate-breakdown { grid-template-columns:1fr; }
  .about-photo-grid { grid-template-columns:1fr; }
  .about-photo-grid img, .about-photo-grid img:first-child { height:320px; grid-row:auto; }
  .footer-grid { display:block; }
  .mobile-cta { display:grid; }
  footer { padding-bottom:92px; }
}
