:root {
  --ink: #17191c;
  --ink-2: #22262a;
  --soft-ink: #343a40;
  --orange: #ef8b00;
  --orange-2: #ff9f1a;
  --cream: #f6f2ea;
  --paper: #ffffff;
  --line: #dedbd4;
  --muted: #696d71;
  --max: 1180px;
  --shadow: 0 20px 60px rgba(16, 18, 20, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: .75rem 1rem;
  background: #fff;
  color: #000;
}
.skip-link:focus { left: .5rem; top: .5rem; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.eyebrow {
  margin: 0 0 .85rem;
  color: var(--orange);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3 { margin-top: 0; line-height: 1.06; letter-spacing: -.025em; }
h1 { font-size: clamp(3.25rem, 6vw, 6.15rem); margin-bottom: 1.25rem; }
h2 { font-size: clamp(2.25rem, 4.1vw, 4.25rem); margin-bottom: 1rem; }
h3 { font-size: 1.3rem; }
p { margin-top: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(23,25,28,.96);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}
.header-inner { min-height: 84px; display: flex; align-items: center; gap: 24px; }
.brand { display: inline-flex; width: 205px; flex: 0 0 auto; }
.brand img { width: 100%; height: 61px; object-fit: contain; object-position: left center; }
.primary-nav { margin-left: auto; display: flex; align-items: center; gap: 25px; }
.primary-nav a { color: #e7e7e7; text-decoration: none; font-size: .94rem; font-weight: 650; }
.primary-nav a:hover { color: var(--orange-2); }
.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; margin-left: auto; }
.nav-toggle span { display: block; width: 25px; height: 2px; margin: 5px 0; background: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .9rem 1.35rem;
  background: var(--orange);
  color: #141414;
  border: 1px solid var(--orange);
  border-radius: 3px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(239,139,0,.18);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { background: var(--orange-2); border-color: var(--orange-2); transform: translateY(-1px); }
.btn-small { min-height: 42px; padding: .65rem 1rem; font-size: .88rem; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); box-shadow: none; }
.btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 72% 10%, rgba(239,139,0,.24), transparent 31%),
    linear-gradient(135deg, #111316 0%, #202429 58%, #141619 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .1;
  background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, transparent, black 55%, black);
}
.hero-layout { position: relative; min-height: 700px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; padding: 70px 0; }
.hero-copy { max-width: 760px; }
.hero h1 span { color: var(--orange-2); }
.hero-lead { max-width: 700px; color: #d2d4d6; font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 32px; color: #c8cbce; font-size: .92rem; }
.hero-points span { display: inline-flex; align-items: center; gap: 8px; }
.hero-points span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }

.hero-visual { min-height: 460px; display: flex; align-items: center; justify-content: center; }
.room-card {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 1 / .98;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(150deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  box-shadow: 0 40px 90px rgba(0,0,0,.28);
  overflow: hidden;
  border-radius: 8px;
}
.refined-room-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 4px;
}
.room-glow {
  position: absolute;
  width: 70%;
  height: 55%;
  right: -6%;
  top: -8%;
  background: radial-gradient(circle, rgba(239,139,0,.24) 0%, rgba(239,139,0,.08) 38%, rgba(239,139,0,0) 72%);
}
.back-wall {
  position: absolute;
  left: 16%;
  right: 12%;
  top: 14%;
  bottom: 20%;
  background: linear-gradient(180deg, #f3f0e8 0%, #ece7dd 100%);
  border-radius: 2px;
}
.side-wall {
  position: absolute;
  top: 14%;
  bottom: 20%;
  left: 8%;
  width: 18%;
  background: linear-gradient(180deg, #d7d1c8 0%, #cfc8bc 100%);
  clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 94%);
}
.ceiling-edge {
  position: absolute;
  left: 11%;
  right: 12%;
  top: 13%;
  height: 3px;
  background: rgba(255,255,255,.95);
  transform: skewX(-16deg);
  transform-origin: left center;
}
.baseboard {
  position: absolute;
  left: 13%;
  right: 12%;
  bottom: 19%;
  height: 8px;
  background: rgba(255,255,255,.96);
}
.floor-plane {
  position: absolute;
  left: 13%;
  right: 7%;
  bottom: 9%;
  height: 12%;
  background: linear-gradient(180deg, #cfc8bc 0%, #bdb5a9 100%);
  clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
  opacity: .92;
}
.sample-strip {
  position: absolute;
  top: 10%;
  left: 62%;
  display: flex;
  gap: 8px;
  z-index: 3;
}
.sample-strip span {
  display: block;
  width: 18px;
  height: 66px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
}
.sample-strip span:nth-child(1) { background: #ef8b00; }
.sample-strip span:nth-child(2) { background: #e9e4da; }
.sample-strip span:nth-child(3) { background: #61666c; }
.hero-painter {
  position: absolute;
  left: 14%;
  bottom: 13%;
  width: 49%;
  max-width: 235px;
  z-index: 2;
  filter: drop-shadow(0 18px 26px rgba(0,0,0,.20));
}
.finish-badge {
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 5%;
  padding: 17px 18px;
  background: rgba(17,19,22,.92);
  border-left: 4px solid var(--orange);
  z-index: 4;
}
.finish-badge strong { display: block; font-size: 1.1rem; }
.finish-badge span { color: #aeb2b5; font-size: .9rem; }

.trust-strip { background: var(--cream); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-grid > div { padding: 28px 24px; border-right: 1px solid var(--line); }
.trust-grid > div:first-child { border-left: 1px solid var(--line); }
.trust-grid strong { display: block; margin-bottom: 5px; font-size: 1rem; }
.trust-grid span { color: var(--muted); font-size: .86rem; line-height: 1.35; display: block; }

.section { padding: 105px 0; }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; margin-bottom: 50px; }
.section-heading > p { color: var(--muted); font-size: 1.05rem; max-width: 520px; margin-bottom: 8px; }
.compact-heading { grid-template-columns: 1fr; }

.service-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-height: 340px; padding: 34px 30px 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.service-card:hover { background: #fbfaf7; }
.featured-card { background: var(--cream); }
.service-number { color: var(--orange); font-size: .72rem; font-weight: 900; letter-spacing: .12em; margin-bottom: 46px; }
.service-card h3 { font-size: 1.55rem; margin-bottom: 14px; }
.service-card p { color: var(--muted); font-size: .94rem; }
.service-card ul { list-style: none; padding: 0; margin: 24px 0 0; color: #4d5155; font-size: .9rem; }
.service-card li { margin: 8px 0; padding-left: 17px; position: relative; }
.service-card li::before { content: ""; position: absolute; left: 0; top: .68em; width: 6px; height: 6px; background: var(--orange); }

.section-dark { background: var(--ink); color: #fff; }
.why-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.why-copy { position: sticky; top: 130px; }
.why-copy p:not(.eyebrow) { color: #b7bbbe; font-size: 1.04rem; max-width: 540px; }
.text-link { display: inline-flex; gap: 10px; color: var(--orange-2); font-weight: 800; text-decoration: none; margin-top: 18px; }
.why-list { border-top: 1px solid rgba(255,255,255,.16); }
.why-item { display: grid; grid-template-columns: 70px 1fr; gap: 18px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.why-item > span { color: var(--orange); font-size: .76rem; font-weight: 900; letter-spacing: .12em; }
.why-item h3 { margin-bottom: 8px; }
.why-item p { margin-bottom: 0; color: #aeb2b5; }

.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border-top: 1px solid var(--line); }
.process-step { padding: 35px 28px 10px 0; border-right: 1px solid var(--line); min-height: 245px; }
.process-step:not(:first-child) { padding-left: 28px; }
.process-step:last-child { border-right: 0; }
.process-step > span { display: grid; place-items: center; width: 38px; height: 38px; background: var(--orange); font-size: .86rem; font-weight: 900; margin-bottom: 42px; }
.process-step p { color: var(--muted); font-size: .93rem; }

.service-area-section { background: var(--cream); }
.area-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.area-layout p:not(.eyebrow) { color: var(--muted); max-width: 570px; }
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.area-tags span { padding: 12px 16px; border: 1px solid #cfc9bd; background: rgba(255,255,255,.62); font-weight: 750; font-size: .92rem; }

.quote-section { padding: 105px 0; background: #202429; color: #fff; }
.quote-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 80px; align-items: start; }
.quote-copy { position: sticky; top: 130px; }
.quote-copy > p:not(.eyebrow) { color: #c1c5c8; max-width: 510px; }
.contact-details { margin-top: 34px; display: grid; gap: 12px; }
.contact-details a { text-decoration: none; display: flex; flex-direction: column; border-top: 1px solid rgba(255,255,255,.14); padding-top: 12px; }
.contact-details span { color: #969ca0; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; }
.contact-details strong { color: #fff; font-size: 1.02rem; }

.quote-form { background: #fff; color: var(--ink); padding: 36px; box-shadow: 0 30px 70px rgba(0,0,0,.18); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-form label { display: grid; gap: 7px; margin-bottom: 16px; font-size: .82rem; font-weight: 850; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%;
  border: 1px solid #cfcfcf;
  border-radius: 2px;
  padding: 12px 13px;
  background: #fff;
  color: #1c1e21;
  outline: none;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(239,139,0,.12); }
.form-submit { width: 100%; margin-top: 4px; cursor: pointer; }
.form-note { color: #7a7e82; font-size: .78rem; margin: 12px 0 0; }

.site-footer { background: #111316; color: #d7d9db; padding: 58px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .7fr 1fr; gap: 70px; }
.footer-brand img { width: 235px; height: 110px; object-fit: contain; object-position: left center; margin-bottom: 8px; }
.footer-brand p { max-width: 420px; color: #969ca0; }
.site-footer h3 { font-size: .92rem; color: #fff; margin-bottom: 16px; }
.site-footer a { display: block; text-decoration: none; color: #b4b8bb; margin: 8px 0; }
.site-footer a:hover { color: var(--orange-2); }
.site-footer p { color: #969ca0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); margin-top: 45px; padding-top: 22px; color: #7f8589; font-size: .82rem; }
.footer-bottom a { margin: 0; }

@media (max-width: 980px) {
  .header-cta { display: none; }
  .nav-toggle { display: block; }
  .primary-nav {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px 22px;
    background: #17191c;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .hero-layout { grid-template-columns: 1fr; min-height: auto; padding: 72px 0 60px; }
  .hero-copy { max-width: 800px; }
  .hero-visual { min-height: 360px; }
  .room-card { max-width: 560px; }
  .hero-painter { width: 44%; left: 16%; bottom: 14%; max-width: 230px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .why-layout, .quote-layout { grid-template-columns: 1fr; gap: 50px; }
  .why-copy, .quote-copy { position: static; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(3), .process-step:nth-child(4) { border-top: 1px solid var(--line); }
  .area-layout { grid-template-columns: 1fr; gap: 35px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .header-inner { min-height: 74px; }
  .brand { width: 175px; }
  .brand img { height: 52px; }
  .primary-nav { top: 74px; }
  .section, .quote-section { padding: 78px 0; }
  h1 { font-size: clamp(2.75rem, 13vw, 4rem); }
  h2 { font-size: clamp(2.05rem, 10vw, 3rem); }
  .hero-layout { padding-top: 58px; gap: 35px; }
  .hero-visual { min-height: 310px; }
  .room-card { width: 100%; }
  .hero-painter { width: 45%; left: 12%; bottom: 14%; max-width: 205px; }
  .sample-strip { left: 64%; top: 11%; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .trust-grid, .service-grid, .process-grid, .footer-grid { grid-template-columns: 1fr; }
  .trust-grid > div { border-left: 1px solid var(--line); }
  .section-heading { grid-template-columns: 1fr; gap: 15px; }
  .service-card { min-height: 0; }
  .process-step, .process-step:not(:first-child) { min-height: 0; padding: 26px 0; border-right: 0; border-top: 1px solid var(--line); }
  .process-step:first-child { border-top: 0; }
  .process-step > span { margin-bottom: 24px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .quote-form { padding: 24px 20px; }
  .footer-grid { gap: 28px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}
