:root{
  --ink:#211b14;
  --ink-soft:#3c3225;
  --cream:#f6efe1;
  --paper:#fffcf5;
  --gold:#b8903f;
  --gold-deep:#8c6a26;
  --rust:#8b4226;
  --sage:#5b6a4f;
  --line: rgba(33,27,20,0.14);
  --max: 1160px;
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:'Work Sans', sans-serif;
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{
  font-family:'Fraunces', serif;
  font-weight:600;
  line-height:1.08;
  margin:0;
  color:var(--ink);
}
p{margin:0;}
a{color:inherit;}
img{max-width:100%;display:block;}
.wrap{max-width:var(--max); margin:0 auto; padding:0 28px;}
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 26px;
  border-radius:3px;
  font-family:'Work Sans', sans-serif;
  font-weight:600;
  font-size:15px;
  text-decoration:none;
  border:1px solid transparent;
  cursor:pointer;
  transition:background .18s ease, color .18s ease, border-color .18s ease;
}
.btn-solid{ background:var(--ink); color:var(--paper); }
.btn-solid:hover{ background:var(--gold-deep); }
.btn-line{ background:transparent; border-color:var(--ink); color:var(--ink); }
.btn-line:hover{ background:var(--ink); color:var(--paper); }

/* ---------- Header ---------- */
header{
  position:sticky; top:0; z-index:40;
  background:rgba(246,239,225,0.92);
  backdrop-filter:blur(6px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 0;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-family:'Fraunces', serif; font-weight:700; font-size:20px;
  text-decoration:none; color:var(--ink);
}
.brand-mark{ width:34px;height:34px;flex:none; }
.nav-links{
  display:flex; align-items:center; gap:34px;
  list-style:none; margin:0; padding:0;
}
.nav-links a{
  text-decoration:none; font-size:15px; font-weight:500; color:var(--ink-soft);
  padding-bottom:3px; border-bottom:1px solid transparent;
}
.nav-links a:hover, .nav-links a.active{ border-color:var(--gold); color:var(--ink); }
.nav-right{ display:flex; align-items:center; gap:22px; }
.nav-phone{ font-weight:600; text-decoration:none; font-size:15px; display:flex; align-items:center; gap:8px; }
.nav-toggle{ display:none; background:none; border:none; cursor:pointer; padding:4px; }
.nav-toggle span{ display:block; width:24px; height:2px; background:var(--ink); margin:5px 0; }

@media (max-width:860px){
  .nav-links{
    position:absolute; top:100%; left:0; right:0;
    background:var(--paper); flex-direction:column; align-items:flex-start;
    padding:22px 28px; gap:16px; border-bottom:1px solid var(--line);
    display:none;
  }
  .nav-links.open{ display:flex; }
  .nav-toggle{ display:block; }
  .nav-phone span.label{ display:none; }
}

/* ---------- Hero (home) ---------- */
.hero{ padding:76px 0 60px; overflow:hidden; }
.hero-grid{ display:grid; grid-template-columns:1.05fr 0.8fr; gap:56px; align-items:center; }
.hero h1{ font-size:clamp(2.4rem, 5vw, 3.6rem); letter-spacing:-0.01em; }
.hero-brush{ margin:18px 0 26px; width:230px; }
.hero-sub{ max-width:46ch; font-size:18px; color:var(--ink-soft); margin-bottom:32px; }
.hero-cta{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:36px; }
.hero-trust{ display:flex; gap:28px; flex-wrap:wrap; }
.hero-trust div{ font-size:14px; color:var(--ink-soft); max-width:16ch; }
.hero-trust strong{ display:block; font-family:'Fraunces', serif; font-size:26px; color:var(--ink); font-weight:600; }

.chip-stack{ position:relative; display:flex; flex-direction:column; gap:14px; padding:22px; }
.chip{ background:var(--paper); border-radius:4px 4px 16px 16px; box-shadow:0 10px 24px rgba(33,27,20,0.14); overflow:hidden; width:78%; }
.chip .swatch{ height:64px; }
.chip .tag{ padding:10px 16px; font-size:13px; font-weight:600; letter-spacing:0.01em; }
.chip:nth-child(1){ align-self:flex-start; transform:rotate(-4deg); }
.chip:nth-child(2){ align-self:flex-end;   transform:rotate(3deg); width:88%; }
.chip:nth-child(3){ align-self:flex-start; transform:rotate(-2deg); width:70%; margin-left:10%; }

/* ---------- Inner page hero ---------- */
.page-hero{ padding:64px 0 48px; border-bottom:1px solid var(--line); }
.page-hero .kicker{ font-size:14px; color:var(--gold-deep); font-weight:600; margin-bottom:12px; }
.page-hero h1{ font-size:clamp(2.1rem,4.4vw,3rem); max-width:20ch; }
.page-hero p{ max-width:56ch; color:var(--ink-soft); font-size:17px; margin-top:16px; }

/* ---------- Stat band ---------- */
.stat-band{ background:var(--ink); color:var(--paper); padding:42px 0; }
.stat-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.stat-grid div{ text-align:center; padding:0 12px; }
.stat-grid strong{ display:block; font-family:'Fraunces', serif; font-weight:600; font-size:2.4rem; color:var(--gold); }
.stat-grid span{ font-size:14px; color:#d9cfba; }
@media (max-width:640px){ .stat-grid{ grid-template-columns:1fr; gap:30px; } }

/* ---------- Section shell ---------- */
section{ padding:88px 0; }
.section-head{ max-width:58ch; margin-bottom:48px; }
.section-head h2{ font-size:clamp(1.9rem,3.4vw,2.5rem); margin-bottom:14px; }
.section-head p{ color:var(--ink-soft); font-size:17px; }

/* ---------- Services (paint chip rack) ---------- */
.rack{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
@media (max-width:920px){ .rack{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:520px){ .rack{ grid-template-columns:1fr; } }
.service-chip{ background:var(--paper); border-radius:4px 4px 14px 14px; overflow:hidden; box-shadow:0 6px 16px rgba(33,27,20,0.08); transition:transform .2s ease; }
.service-chip:hover{ transform:translateY(-4px); }
.service-chip .swatch{ height:70px; }
.service-chip .body{ padding:18px 18px 22px; }
.service-chip h3{ font-size:18px; font-weight:600; margin-bottom:8px; }
.service-chip p{ font-size:14px; color:var(--ink-soft); }
.service-chip .body a{ display:inline-block; margin-top:10px; font-size:13px; font-weight:600; color:var(--gold-deep); text-decoration:none; border-bottom:1px solid var(--gold); }

.sw-1{ background:#c9a24b; } .sw-2{ background:#8b4226; } .sw-3{ background:#5b6a4f; } .sw-4{ background:#3c3225; }
.sw-5{ background:#b8903f; } .sw-6{ background:#7d8e6a; } .sw-7{ background:#a2603f; } .sw-8{ background:#403627; }

/* Long-form service detail block */
.service-detail{ display:grid; grid-template-columns:220px 1fr; gap:30px; padding:34px 0; border-top:1px solid var(--line); }
.service-detail:last-child{ border-bottom:1px solid var(--line); }
.service-detail .swatch-block{ height:120px; border-radius:4px 4px 14px 14px; }
.service-detail h3{ font-size:22px; margin-bottom:10px; }
.service-detail p{ color:var(--ink-soft); font-size:15px; max-width:60ch; }
@media (max-width:680px){ .service-detail{ grid-template-columns:1fr; } .service-detail .swatch-block{ height:80px; } }

/* ---------- Process (ticket stubs) ---------- */
.process{ background:var(--paper); }
.ticket-row{ display:grid; grid-template-columns:repeat(3,1fr); gap:0; border:1px solid var(--line); border-radius:6px; overflow:hidden; }
.ticket{ padding:36px 30px; position:relative; }
.ticket + .ticket{ border-left:1px dashed var(--line); }
.ticket .num{ font-family:'Fraunces', serif; font-weight:600; font-size:15px; color:var(--gold-deep); margin-bottom:14px; }
.ticket h3{ font-size:20px; margin-bottom:10px; }
.ticket p{ color:var(--ink-soft); font-size:15px; }
@media (max-width:820px){ .ticket-row{ grid-template-columns:1fr; } .ticket + .ticket{ border-left:none; border-top:1px dashed var(--line); } }

/* ---------- Guarantee ---------- */
.guarantee{ display:grid; grid-template-columns:0.6fr 1fr; gap:56px; align-items:center; }
.seal{ width:180px; height:180px; border-radius:50%; border:2px solid var(--gold); display:flex; align-items:center; justify-content:center; flex-direction:column; margin:0 auto; background:var(--paper); }
.seal strong{ font-family:'Fraunces', serif; font-size:2.6rem; color:var(--ink); }
.seal span{ font-size:12px; letter-spacing:0.03em; color:var(--ink-soft); text-align:center; padding:0 20px; }
.guarantee-copy h2{ margin-bottom:16px; }
.guarantee-copy p{ color:var(--ink-soft); font-size:17px; margin-bottom:20px; }
@media (max-width:760px){ .guarantee{ grid-template-columns:1fr; } }

/* ---------- About page ---------- */
.about-grid{ display:grid; grid-template-columns:0.9fr 1.1fr; gap:56px; align-items:start; }
.about-photo{ border-radius:4px 4px 20px 20px; height:340px; background:linear-gradient(155deg,#c9a24b, #8b4226 70%); position:relative; overflow:hidden; }
.about-photo::after{ content:"Est. 2007"; position:absolute; bottom:20px; left:20px; color:#fffcf5; font-family:'Fraunces', serif; font-size:20px; font-weight:600; }
.about-copy h2{ margin-bottom:16px; }
.about-copy p{ color:var(--ink-soft); font-size:16px; margin-bottom:16px; }
@media (max-width:820px){ .about-grid{ grid-template-columns:1fr; } .about-photo{ height:220px; } }

.value-row{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:16px; }
@media (max-width:760px){ .value-row{ grid-template-columns:1fr; } }
.value-card{ background:var(--paper); border-radius:4px; padding:24px; border:1px solid var(--line); }
.value-card h4{ font-size:16px; margin-bottom:8px; }
.value-card p{ font-size:14px; color:var(--ink-soft); }

/* ---------- Testimonials ---------- */
.testimonial-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
@media (max-width:760px){ .testimonial-grid{ grid-template-columns:1fr; } }
.testimonial-card{ background:var(--paper); border-radius:4px 4px 16px 16px; padding:28px; border:1px solid var(--line); }
.testimonial-card .stars{ color:var(--gold); font-size:14px; margin-bottom:14px; letter-spacing:2px; }
.testimonial-card p.quote{ font-size:16px; color:var(--ink-soft); margin-bottom:18px; }
.testimonial-card .who{ font-weight:600; font-size:14px; }
.testimonial-card .role{ font-size:13px; color:var(--ink-soft); }

/* ---------- Quote / contact form ---------- */
.quote{ background:var(--ink); color:var(--paper); }
.quote-grid{ display:grid; grid-template-columns:0.85fr 1fr; gap:56px; align-items:start; }
.quote-copy h2{ color:var(--paper); margin-bottom:16px; }
.quote-copy p{ color:#d9cfba; font-size:17px; margin-bottom:24px; }
.quote-copy ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:12px; }
.quote-copy li{ font-size:15px; color:#e7ddc8; display:flex; gap:10px; align-items:baseline; }
.quote-copy li::before{ content:"—"; color:var(--gold); }
.contact-info{ display:flex; flex-direction:column; gap:18px; margin-top:26px; }
.contact-info div{ font-size:15px; color:#e7ddc8; }
.contact-info strong{ display:block; color:var(--paper); font-family:'Fraunces', serif; font-weight:600; font-size:16px; margin-bottom:3px; }

.order-form{ background:var(--paper); color:var(--ink); border-radius:6px; padding:34px; }
.order-form .stub-label{ font-size:12px; letter-spacing:0.05em; color:var(--gold-deep); font-weight:600; margin-bottom:6px; display:block; }
.order-form h3{ font-size:22px; margin-bottom:22px; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:14px; }
@media (max-width:480px){ .field-row{ grid-template-columns:1fr; } }
.field{ display:flex; flex-direction:column; gap:6px; margin-bottom:14px; }
.field label{ font-size:13px; font-weight:600; color:var(--ink-soft); }
.field input, .field select, .field textarea{ border:1px solid var(--line); border-radius:3px; padding:11px 12px; font-family:'Work Sans', sans-serif; font-size:15px; background:#fffef9; color:var(--ink); }
.field textarea{ resize:vertical; min-height:90px; }
.order-form .btn-solid{ width:100%; justify-content:center; margin-top:6px; }
.form-note{ font-size:13px; color:var(--ink-soft); margin-top:14px; text-align:center; }
.form-success{ display:none; text-align:center; padding:30px 10px; }
.form-success.show{ display:block; }
.order-form.submitted form{ display:none; }

/* ---------- Footer ---------- */
footer{ background:var(--ink-soft); color:#e7ddc8; padding:56px 0 28px; }
.footer-grid{ display:grid; grid-template-columns:1.2fr 1fr 1fr; gap:40px; margin-bottom:40px; }
@media (max-width:760px){ .footer-grid{ grid-template-columns:1fr; } }
.footer-grid h4{ color:var(--paper); font-size:16px; margin-bottom:16px; }
.footer-brand{ font-family:'Fraunces', serif; font-weight:700; font-size:20px; color:var(--paper); margin-bottom:12px; }
.footer-grid p, .footer-grid a{ font-size:14px; color:#c9bfa6; text-decoration:none; line-height:1.9; }
.footer-grid ul{ list-style:none; margin:0; padding:0; }
.footer-bottom{ border-top:1px solid rgba(255,255,255,0.12); padding-top:22px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:13px; color:#a89b7c; }
