/* =========================================================
   Illustrious Renovations — shared stylesheet
   Luxury design-build aesthetic: champagne gold + espresso + cream
   Palette sampled from the brand logo (illustr_rgb.eps)
   ========================================================= */

:root {
  --gold:        #B8985C;   /* primary accent / mark */
  --gold-deep:   #9A7B45;   /* hover / active */
  --gold-soft:   #D9C9A5;   /* light gold, dividers on dark */
  --espresso:    #3A2818;   /* headings / dark surfaces */
  --espresso-2:  #2A1E14;   /* deepest ink */
  --ink:         #2C241C;   /* body text */
  --muted:       #6E6154;   /* secondary text */
  --cream:       #FBF8F2;   /* page background */
  --cream-2:     #F4EEE3;   /* alt section background */
  --border:      #E7DFD1;   /* hairline dividers */
  --white:       #FFFFFF;
  --shadow:      0 18px 50px -22px rgba(58,40,24,.35);
  --shadow-sm:   0 8px 24px -14px rgba(58,40,24,.35);
  --wrap:        1200px;
  --radius:      4px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
}
img { max-width: 100%; display: block; }
a { color: var(--gold-deep); text-decoration: none; }
a:hover { color: var(--espresso); }

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--espresso);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: .2px;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.6rem, 5.2vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: 1.5rem; }
p  { margin: 0 0 1.1em; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 0; }
.section--tight { padding: 64px 0; }
.section--cream { background: var(--cream-2); }
.section--dark { background: var(--espresso); color: #EBE2D5; }
.section--dark h2, .section--dark h3 { color: var(--white); }

/* eyebrow — echoes the letter-spaced "RENOVATIONS" wordmark */
.eyebrow {
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
  letter-spacing: .34em;
  font-size: .74rem;
  font-weight: 500;
  color: var(--gold-deep);
  margin: 0 0 18px;
}
.section--dark .eyebrow { color: var(--gold-soft); }
.center { text-align: center; }
.center .eyebrow { margin-left: auto; margin-right: auto; }
.lead { font-size: 1.18rem; color: var(--muted); }
.section-sub { font-size: 1.15rem; color: var(--muted); max-width: 620px; margin: 0 auto 8px; }
.gold-rule { width: 64px; height: 2px; background: var(--gold); border: 0; margin: 20px 0 26px; }
.center .gold-rule { margin-left: auto; margin-right: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: "Jost", sans-serif; font-weight: 500;
  letter-spacing: .04em;
  padding: 15px 30px; border-radius: var(--radius);
  cursor: pointer; border: 1.5px solid transparent;
  transition: all .2s ease; font-size: .98rem; line-height: 1;
}
.btn-gold  { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover  { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--white); }
.btn-dark  { background: var(--espresso); color: var(--white); border-color: var(--espresso); }
.btn-dark:hover  { background: var(--espresso-2); color: var(--white); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.12); color: var(--white); }
.btn-outline { background: transparent; color: var(--espresso); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--white); }

/* ---------- top bar ---------- */
.topbar {
  background: var(--espresso-2); color: #D9CBB8;
  font-size: .84rem; letter-spacing: .02em;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; min-height: 40px; }
.topbar a { color: var(--gold-soft); font-weight: 500; }
.topbar a:hover { color: var(--white); }
.topbar .sep { color: var(--gold); margin: 0 10px; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,248,242,.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.site-header .wrap { display: flex; align-items: center; gap: 28px; min-height: 78px; }
.brand img { height: 52px; width: auto; }
.nav { margin-left: auto; display: flex; align-items: center; gap: 30px; }
.navlink {
  font-family: "Jost", sans-serif; font-weight: 500; font-size: .96rem;
  color: var(--ink); letter-spacing: .02em; padding: 8px 0; position: relative;
}
.navlink:hover { color: var(--gold-deep); }
.navlink::after {
  content:""; position:absolute; left:0; bottom:0; height:2px; width:0;
  background: var(--gold); transition: width .2s ease;
}
.navlink:hover::after, .has-menu:hover .navlink::after { width: 100%; }

/* dropdown */
.has-menu { position: relative; }
.menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--white); border: 1px solid var(--border); border-radius: 6px;
  box-shadow: var(--shadow); padding: 10px; min-width: 232px;
  opacity: 0; visibility: hidden; transition: all .18s ease; z-index: 70;
}
.has-menu:hover .menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.menu a {
  display: block; padding: 9px 14px; border-radius: 4px;
  color: var(--ink); font-size: .95rem; font-weight: 400;
}
.menu a:hover { background: var(--cream-2); color: var(--gold-deep); }

.header-cta { display: flex; align-items: center; gap: 18px; }
.header-phone { font-family: "Jost",sans-serif; font-weight: 600; color: var(--espresso); white-space: nowrap; }
.header-phone small { display:block; font-size:.66rem; letter-spacing:.18em; text-transform:uppercase; color: var(--gold-deep); font-weight:500; }
.nav-toggle { display:none; background:none; border:0; cursor:pointer; padding:8px; }
.nav-toggle span { display:block; width:26px; height:2px; background: var(--espresso); margin:5px 0; transition:.2s; }

/* ---------- hero ---------- */
.hero {
  position: relative; color: var(--white);
  background: var(--espresso);
  background-size: cover; background-position: center;
  isolation: isolate;
}
.hero::before {
  content:""; position:absolute; inset:0; z-index:-1;
  background: linear-gradient(105deg, rgba(30,20,12,.86) 0%, rgba(42,30,20,.66) 48%, rgba(42,30,20,.30) 100%);
}
.hero .wrap { padding-top: 120px; padding-bottom: 120px; max-width: 1120px; }
.hero-inner { max-width: 680px; }
.hero .eyebrow { color: var(--gold-soft); }
.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero p.lead { color: #EADFCF; margin-bottom: 32px; max-width: 560px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-meta { display:flex; flex-wrap:wrap; gap: 24px 34px; margin-top: 38px; }
.hero-meta div { display:flex; align-items:center; gap:10px; font-size:.95rem; color:#EADFCF; font-weight:500; }
.hero-meta .dot { width:8px; height:8px; border-radius:50%; background: var(--gold); flex:none; }

/* Video hero */
.hero--video { overflow: hidden; background: var(--espresso) url('/assets/hero-poster.jpg') center/cover no-repeat; }
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; z-index: -2; background: var(--espresso);
}
.hero-sound {
  position: absolute; right: 22px; bottom: 22px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 15px 9px 12px; border-radius: 100px;
  background: rgba(20,14,9,.5); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1px solid rgba(184,152,92,.55); color: #fff;
  font-family: "Jost", sans-serif; font-size: .82rem; font-weight: 500; letter-spacing: .02em;
  cursor: pointer; transition: background .2s ease, border-color .2s ease;
}
.hero-sound:hover { background: rgba(20,14,9,.72); border-color: var(--gold); }
.hero-sound svg { width: 18px; height: 18px; display: block; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.hero-sound .ico-on { display: none; }
.hero-sound:not(.is-muted) .ico-muted { display: none; }
.hero-sound:not(.is-muted) .ico-on { display: block; }
@media (max-width: 640px) {
  .hero-sound { right: 14px; bottom: 14px; padding: 8px 13px 8px 10px; font-size: .78rem; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}

/* breadcrumb */
.crumbs { background: var(--cream-2); border-bottom: 1px solid var(--border); font-size:.85rem; }
.crumbs .wrap { padding: 12px 24px; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--gold-deep); }
.crumbs span { color: var(--espresso); }
.crumbs .div { margin: 0 8px; color: var(--gold); }

/* ---------- trust bar ---------- */
.trustbar { background: var(--white); border-bottom: 1px solid var(--border); }
.trustbar .wrap { display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap: 18px 44px; padding: 26px 24px; }
.trust-item { display:flex; align-items:center; gap:11px; color: var(--muted); font-size:.95rem; font-weight:500; }
.trust-item strong { color: var(--espresso); font-weight:600; }
.trust-item .stars { color: var(--gold); letter-spacing:2px; }

/* ---------- split (overview / feature) ---------- */
.split { display:grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items:center; }
.split.reverse .split-media { order: 2; }
.split-media img { width:100%; height:100%; max-height: 520px; object-fit: cover; border-radius: 6px; box-shadow: var(--shadow); }
.split-body h2 { margin-bottom: .3em; }
.split-list { list-style:none; padding:0; margin: 18px 0 28px; display:grid; gap: 12px; }
.split-list li { position:relative; padding-left: 30px; color: var(--ink); }
.split-list li::before {
  content:""; position:absolute; left:0; top:.55em; width:14px; height:8px;
  border-left:2px solid var(--gold); border-bottom:2px solid var(--gold); transform: rotate(-45deg);
}

/* ---------- process steps ---------- */
.steps { display:grid; grid-template-columns: repeat(4,1fr); gap: 28px; margin-top: 48px; }
.step { position:relative; padding: 30px 24px; background: var(--white); border:1px solid var(--border); border-radius:6px; }
.section--dark .step { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.12); }
.step .num {
  font-family:"Cormorant Garamond",serif; font-size: 2.6rem; font-weight:700;
  color: var(--gold); line-height:1; margin-bottom: 10px;
}
.step h3 { font-size: 1.25rem; margin-bottom:.35em; }
.step p { color: var(--muted); font-size:.96rem; margin:0; }
.section--dark .step p { color:#CFC3B2; }

/* ---------- service cards ---------- */
.card-grid { display:grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 52px; }
.svc-card {
  background: var(--white); border:1px solid var(--border); border-radius:6px;
  padding: 30px 26px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold-soft); }
.svc-card h3 { font-size: 1.32rem; margin-bottom:.35em; }
.svc-card p { color: var(--muted); font-size:.95rem; margin:0 0 14px; }
.svc-card .more { font-family:"Jost",sans-serif; font-weight:500; font-size:.9rem; color: var(--gold-deep); }
.svc-card a.svc-card-link { color: inherit; display:block; }

/* ---------- gallery / portfolio ---------- */
.gallery { display:grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 48px; }
.gallery figure { margin:0; position:relative; overflow:hidden; border-radius:6px; box-shadow: var(--shadow-sm); }
.gallery img { width:100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .5s ease; }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption {
  position:absolute; left:0; right:0; bottom:0; padding: 26px 18px 14px;
  background: linear-gradient(transparent, rgba(30,20,12,.82));
  color:#fff; font-family:"Jost",sans-serif; font-weight:500; font-size:.92rem; letter-spacing:.03em;
}
.gallery--tall img { aspect-ratio: 3/4; }

/* ---------- testimonials ---------- */
.testi-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 26px; margin-top: 48px; }
.testi {
  background: var(--white); border:1px solid var(--border); border-radius:6px;
  padding: 34px 30px; position:relative;
}
.testi .stars { color: var(--gold); letter-spacing:3px; margin-bottom: 14px; }
.testi p { font-family:"Cormorant Garamond",serif; font-size: 1.34rem; line-height:1.5; color: var(--espresso); font-style: italic; margin-bottom: 18px; }
.testi .who { font-family:"Jost",sans-serif; font-weight:600; color: var(--ink); font-size:.95rem; }
.testi .who small { display:block; color: var(--muted); font-weight:400; font-size:.85rem; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--espresso); color:#fff; text-align:center; }
.cta-band::after { content:""; display:block; }
.cta-band h2 { color:#fff; }
.cta-band p { color:#E4D8C7; max-width:560px; margin:0 auto 30px; font-size:1.15rem; }
.cta-actions { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 44px auto 0; }
.faq-item { border-bottom:1px solid var(--border); }
.faq-q {
  width:100%; text-align:left; background:none; border:0; cursor:pointer;
  font-family:"Cormorant Garamond",serif; font-size: 1.4rem; color: var(--espresso); font-weight:600;
  padding: 22px 44px 22px 0; position:relative;
}
.faq-q::after { content:"+"; position:absolute; right:6px; top:50%; transform:translateY(-50%); color: var(--gold); font-family:"Jost",sans-serif; font-size:1.6rem; font-weight:300; transition:.2s; }
.faq-item.open .faq-q::after { content:"−"; }
.faq-a { max-height:0; overflow:hidden; transition: max-height .28s ease; }
.faq-a p { color: var(--muted); padding: 0 0 22px; margin:0; }

/* ---------- local / area content ---------- */
.area-copy { max-width: 760px; }
.area-copy p { color: var(--muted); }
.area-copy p strong, .area-copy strong { color: var(--espresso); }
.chip-row { display:flex; flex-wrap:wrap; gap:10px; margin-top: 22px; }
.chip {
  font-family:"Jost",sans-serif; font-size:.86rem; font-weight:500;
  background: var(--white); border:1px solid var(--border); color: var(--muted);
  padding: 7px 15px; border-radius: 40px;
}
.section--dark .chip { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); color:#E4D8C7; }

/* ---------- footer ---------- */
.site-footer { background: var(--espresso-2); color: #C9BBA8; padding: 72px 0 0; font-size:.94rem; }
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 52px; }
.footer-brand img { height: 82px; width:auto; margin-bottom: 18px; }
.footer-brand p { color:#A99A86; max-width: 300px; }
.footer-social { display:flex; gap:12px; margin-top:18px; }
.footer-social a {
  display:inline-flex; align-items:center; justify-content:center;
  width:40px; height:40px; border-radius:50%;
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.14);
  color:var(--gold-soft); transition:all .18s ease;
}
.footer-social a:hover { background:var(--gold); border-color:var(--gold); color:#fff; transform:translateY(-2px); }
.site-footer h4 { color: var(--gold-soft); font-family:"Jost",sans-serif; font-size:.8rem; letter-spacing:.22em; text-transform:uppercase; font-weight:600; margin-bottom: 18px; }
.site-footer ul { list-style:none; padding:0; margin:0; display:grid; gap:11px; }
.site-footer a { color:#C9BBA8; }
.site-footer a:hover { color: var(--gold-soft); }
.footer-contact div { margin-bottom: 14px; color:#C9BBA8; }
.footer-contact strong { color:#fff; display:block; font-weight:600; }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.09); padding: 22px 0;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  font-size:.84rem; color:#8C7E6C;
}

/* ---------- contact form ---------- */
.lead-form .field { margin-bottom: 16px; }
.lead-form label { display:block; font-family:"Jost",sans-serif; font-size:.82rem; font-weight:500; letter-spacing:.06em; text-transform:uppercase; color: var(--muted); margin-bottom: 6px; }
.lead-form input, .lead-form select, .lead-form textarea {
  width:100%; font-family:"Jost",sans-serif; font-size:1rem; color: var(--ink);
  padding: 12px 14px; border:1px solid var(--border); border-radius: var(--radius);
  background: var(--white); transition: border-color .15s ease;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { outline:none; border-color: var(--gold); }
.lead-form textarea { resize: vertical; }
.lead-form .field2 { display:grid; grid-template-columns:1fr 1fr; gap: 16px; }
.contact-lines p { margin: 0 0 16px; }
.contact-lines strong { font-family:"Jost",sans-serif; font-size:.8rem; letter-spacing:.14em; text-transform:uppercase; color: var(--gold-deep); }
@media (max-width:560px){ .lead-form .field2 { grid-template-columns:1fr; } }

/* floating mobile call */
.fab-call { display:none; position:fixed; left:16px; right:16px; bottom:16px; z-index:80; justify-content:center; box-shadow: var(--shadow); }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-media { order: 0; }
  .steps { grid-template-columns: repeat(2,1fr); }
  .card-grid { grid-template-columns: repeat(2,1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .nav { display:none; position:absolute; top:100%; left:0; right:0; flex-direction:column; align-items:stretch; gap:0;
    background: var(--cream); border-bottom:1px solid var(--border); padding: 8px 0; box-shadow: var(--shadow); }
  .nav.open { display:flex; }
  .navlink { padding: 13px 24px; }
  .navlink::after { display:none; }
  .has-menu .menu { position:static; opacity:1; visibility:visible; transform:none; box-shadow:none; border:0; padding: 0 0 8px 12px; min-width:0; background:transparent; }
  .menu a { padding: 9px 24px; }
  .nav-toggle { display:block; margin-left:auto; }
  .header-phone { display:none; }
  .gallery { grid-template-columns: repeat(2,1fr); }
  .section { padding: 62px 0; }
  .hero .wrap { padding-top: 84px; padding-bottom: 84px; }
  .fab-call { display:flex; }
  .site-footer { padding-bottom: 84px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .card-grid, .steps, .gallery, .footer-grid { grid-template-columns: 1fr; }
  .topbar .hide-sm { display:none; }
  .hero-cta .btn { flex: 1 1 auto; justify-content:center; }
}

/* Homepage video hero — mobile: let the video show, slim + bottom-anchor the overlay */
@media (max-width: 820px) {
  .hero--video { min-height: 84vh; min-height: 84svh; display: flex; flex-direction: column; justify-content: flex-end; }
  .hero--video::before { background: linear-gradient(to bottom, rgba(20,14,9,.04) 0%, rgba(20,14,9,.20) 40%, rgba(20,14,9,.72) 80%, rgba(20,14,9,.90) 100%); }
  .hero--video .wrap { padding-top: 40px; padding-bottom: 92px; }
  .hero--video p.lead { display: none; }
  .hero--video .hero-meta { display: none; }
  .hero--video .hero-cta { display: none; }
  .hero--video .eyebrow { font-size: .7rem; letter-spacing: .1em; }
  .hero--video h1 { margin-bottom: 0; }
  .hero--video .hero-sound { top: 14px; left: 14px; right: auto; bottom: auto; padding: 9px; }
  .hero--video .hero-sound .hero-sound-label { display: none; }
}
