:root {
  --bg: #f7f3ec;
  --paper: #fffdf8;
  --ink: #1f2933;
  --muted: #5f6b76;
  --line: #ded6c9;
  --brand: #2f4f4f;
  --brand-dark: #243d3d;
  --accent: #c18f53;
  --shadow: 0 24px 70px rgba(31, 41, 51, 0.13);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 243, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; justify-content: space-between; align-items: center; min-height: 72px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: -0.03em; }
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--brand);
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(47, 79, 79, .24);
}
nav { display: flex; gap: 24px; font-weight: 700; color: var(--muted); }
nav a:hover { color: var(--ink); }

.hero { padding: 76px 0 70px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 54px; align-items: center; }
.eyebrow { color: var(--accent); text-transform: uppercase; font-size: .78rem; letter-spacing: .14em; font-weight: 900; margin: 0 0 12px; }
h1, h2, h3 { line-height: 1.08; margin: 0; letter-spacing: -0.045em; }
h1 { font-size: clamp(2.55rem, 6vw, 5.05rem); max-width: 900px; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: 1.3rem; }
.lead { font-size: 1.2rem; color: var(--muted); max-width: 690px; margin: 24px 0 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
}
.button.primary { background: var(--brand); color: white; box-shadow: 0 14px 34px rgba(47, 79, 79, .22); }
.button.primary:hover { background: var(--brand-dark); }
.button.secondary { background: var(--paper); border-color: var(--line); color: var(--ink); }
.button.full { width: 100%; }
.trust-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; color: var(--muted); font-weight: 800; font-size: .92rem; }
.trust-row span { background: rgba(255,255,255,.72); border: 1px solid var(--line); padding: 8px 12px; border-radius: 999px; }

.hero-showcase {
  position: relative;
  min-height: 560px;
  isolation: isolate;
}
.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 44px -12px 70px 55px;
  background: #eee7dc;
  border: 1px solid var(--line);
  border-radius: 34px;
  transform: rotate(-2deg);
  z-index: -1;
}
.showcase-card {
  position: absolute;
  overflow: hidden;
  border-radius: 26px;
  background: var(--paper);
  border: 8px solid var(--paper);
  box-shadow: var(--shadow);
}
.showcase-card img { height: 100%; object-fit: cover; }
.before-card { left: 0; top: 20px; width: 62%; height: 420px; transform: rotate(-2.5deg); }
.after-card { right: 0; bottom: 62px; width: 62%; height: 420px; transform: rotate(2.5deg); }
.mini-proof {
  position: absolute;
  left: 8%;
  right: 7%;
  bottom: 0;
  background: rgba(31,41,51,.93);
  color: white;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 16px 18px;
  box-shadow: 0 18px 45px rgba(31,41,51,.22);
}
.mini-proof strong { color: #f2c98f; }

.photo-tag {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 13px;
  background: rgba(47,79,79,.92);
  color: white;
  border-radius: 999px;
  padding: 6px 11px;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.photo-tag.dark { background: rgba(31,41,51,.86); }

.section { padding: 78px 0; }
.section.muted { background: #eee7dc; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-heading { max-width: 780px; margin-bottom: 34px; }
.section-heading.wide { max-width: 880px; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; margin-bottom: 0; }
.cards { display: grid; gap: 18px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.card, .price-card, .quote-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 16px 42px rgba(31, 41, 51, 0.07);
}
.card p { color: var(--muted); margin-bottom: 0; }

.gallery-section { background: linear-gradient(180deg, #fffdf8 0%, #f7f3ec 100%); border-top: 1px solid var(--line); }
.feature-before-after {
  display: grid;
  grid-template-columns: 1fr 54px 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
}
.feature-photo, .result-pair > div, .proof-image {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(31,41,51,.1);
}
.feature-photo img { height: 440px; object-fit: cover; }
.feature-arrow {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--brand);
  color: white;
  font-size: 1.5rem;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(47,79,79,.22);
}
.result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.result-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: rgba(255,255,255,.5);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 10px;
}
.result-pair img { height: 260px; object-fit: cover; }

.split, .pricing-grid, .form-grid, .proof-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; }
.split p, .pricing-grid p, .form-grid p, .proof-grid p { color: var(--muted); }
.steps { display: grid; gap: 14px; }
.step { display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: center; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 16px; }
.step strong { height: 48px; width: 48px; display: grid; place-items: center; border-radius: 16px; background: var(--brand); color: #fff; }

.proof-strip { background: #1f2933; color: white; }
.proof-strip .eyebrow { color: #f2c98f; }
.proof-strip p { color: rgba(255,255,255,.72); }
.proof-grid { align-items: center; }
.proof-image { border-color: rgba(255,255,255,.13); }
.proof-image img { height: 420px; object-fit: cover; }
.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}
.check-list li { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; padding: 12px; color: white; font-weight: 800; }

.price-card { max-width: 440px; justify-self: end; }
.price-label { display: inline-block; color: var(--accent); font-weight: 900; font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 14px; }
.price { font-size: 3rem; line-height: 1; color: var(--brand); font-weight: 900; margin: 18px 0; }
ul { margin: 0 0 24px; padding-left: 22px; color: var(--muted); }
.quote-form { display: grid; gap: 15px; }
.quote-form label { display: grid; gap: 7px; font-weight: 900; color: var(--ink); }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  min-height: 50px;
  padding: 12px 14px;
  font: inherit;
  background: white;
  color: var(--ink);
}
input[type="file"] { padding: 13px; background: #fff; }
textarea { resize: vertical; }
.hidden { display: none; }
.form-note { font-size: .82rem; margin: 0; }
.optional { font-weight: 600; color: #6b7280; font-size: 0.9rem; }
.field-help { display: block; margin-top: 0.4rem; color: #6b7280; line-height: 1.4; font-weight: 600; }

.footer { padding: 38px 0; background: #1f2933; color: white; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.footer p { color: rgba(255,255,255,.75); margin: 8px 0; }
.footer a { color: white; text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 980px) {
  .hero-grid, .split, .pricing-grid, .form-grid, .proof-grid { grid-template-columns: 1fr; }
  .hero-showcase { min-height: 520px; }
  .price-card { justify-self: stretch; max-width: none; }
}

@media (max-width: 860px) {
  .cards.three { grid-template-columns: 1fr; }
  nav { display: none; }
  .hero { padding-top: 48px; }
  .result-grid { grid-template-columns: 1fr; }
  .feature-before-after { grid-template-columns: 1fr; }
  .feature-arrow { transform: rotate(90deg); margin: -2px auto; }
  .feature-photo img { height: 360px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1120px); }
  .nav { min-height: 66px; }
  .brand { font-size: .95rem; }
  .brand-mark { width: 38px; height: 38px; border-radius: 13px; }
  .hero { padding: 38px 0 54px; }
  h1 { font-size: clamp(2.35rem, 12vw, 3.45rem); }
  h2 { font-size: clamp(1.85rem, 9vw, 2.55rem); }
  .lead { font-size: 1.05rem; margin: 20px 0 24px; }
  .button { width: 100%; min-height: 54px; }
  .trust-row span { font-size: .84rem; }
  .hero-showcase { min-height: auto; display: grid; gap: 14px; }
  .hero-showcase::before { display: none; }
  .showcase-card { position: relative; width: 100%; height: auto; left: auto; right: auto; top: auto; bottom: auto; transform: none; border-width: 6px; }
  .showcase-card img { height: 270px; }
  .mini-proof { position: relative; left: auto; right: auto; bottom: auto; }
  .section { padding: 56px 0; }
  .card, .price-card, .quote-form { padding: 22px; }
  .feature-photo img { height: 300px; }
  .result-pair { grid-template-columns: 1fr; }
  .result-pair img { height: 275px; }
  .proof-image img { height: 310px; }
  .check-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
