/* ==========================================================================
   Valora Wallpaper installer — Global Stylesheet
   Contemporary luxury / editorial interior-design aesthetic
   Palette: ivory #F7F4EF · beige #EEE7DD · charcoal #1A1A1A · gold #C5A572
   Type: Manrope (headings) · Inter (body)
   ========================================================================== */

:root {
  --ivory: #F7F4EF;
  --beige: #EEE7DD;
  --charcoal: #1A1A1A;
  --white: #FFFFFF;
  --gold: #C5A572;
  --gold-hover: #B28F5F;
  --ink-soft: #4A463F;
  --line: rgba(26, 26, 26, .12);
  --line-gold: rgba(197, 165, 114, .38);
  --shadow-soft: 0 18px 50px -22px rgba(26, 26, 26, .22);
  --shadow-card: 0 10px 34px -16px rgba(26, 26, 26, .18);
  --radius: 8px;
  --font-head: 'Manrope', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --wrap: 1200px;
  --wrap-wide: 1360px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--charcoal);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }

p { margin-bottom: 1.1em; }

a { color: inherit; text-decoration: none; }

ul, ol { padding-left: 1.4em; margin-bottom: 1.2em; }
li { margin-bottom: .45em; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap-wide { max-width: var(--wrap-wide); margin: 0 auto; padding: 0 24px; }

/* --------------------------------------------------------------------------
   Eyebrow / kicker
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 34px;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .02em;
  border: none;
  cursor: pointer;
  transition: background .35s ease, transform .35s ease, box-shadow .35s ease;
  box-shadow: 0 10px 26px -14px rgba(197, 165, 114, .75);
}
.btn:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -14px rgba(178, 143, 95, .8);
}
.btn--ghost {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: inherit;
  box-shadow: none;
}
.btn--ghost:hover { background: rgba(197, 165, 114, .14); }
.btn--dark {
  background: var(--charcoal);
  color: var(--white);
  box-shadow: 0 12px 28px -16px rgba(26, 26, 26, .6);
}
.btn--dark:hover { background: #000; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--charcoal);
  color: var(--white);
  font-size: .86rem;
  padding: 9px 0;
}
.topbar .wrap-wide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.topbar a { color: var(--white); transition: color .25s; }
.topbar a:hover { color: var(--gold); }
.topbar-contacts { display: flex; gap: 26px; flex-wrap: wrap; }
.topbar-hours { color: rgba(255, 255, 255, .72); }
.topbar .gold { color: var(--gold); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(247, 244, 239, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap-wide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 78px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
}
.logo img { width: 42px; height: 42px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.12; }
.logo-name { font-size: 1.12rem; font-weight: 800; letter-spacing: .01em; }
.logo-tag {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > ul {
  display: flex;
  list-style: none;
  gap: 4px;
  padding: 0;
  margin: 0;
  align-items: center;
}
.main-nav > ul > li { position: relative; margin: 0; }
.main-nav a.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 15px;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  border-radius: 6px;
  transition: color .25s, background .25s;
}
.main-nav a.nav-link:hover { color: var(--gold-hover); background: rgba(197, 165, 114, .1); }

.caret {
  width: 8px;
  height: 8px;
  border-right: 1.7px solid currentColor;
  border-bottom: 1.7px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .25s;
}
.has-dropdown:hover .caret { transform: rotate(225deg) translateY(-1px); }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 250px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-soft);
  list-style: none;
  padding: 10px 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .28s ease, transform .28s ease, visibility .28s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li { margin: 0; }
.dropdown a {
  display: block;
  padding: 9px 22px;
  font-size: .92rem;
  font-weight: 500;
  transition: background .2s, color .2s, padding-left .2s;
}
.dropdown a:hover {
  background: var(--beige);
  color: var(--gold-hover);
  padding-left: 27px;
}
.dropdown .dd-all {
  font-weight: 700;
  color: var(--gold-hover);
  border-bottom: 1px solid var(--line);
  margin-bottom: 6px;
}

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .98rem;
  white-space: nowrap;
  transition: color .25s;
}
.header-phone:hover { color: var(--gold-hover); }
.header-cta .btn { height: 46px; padding: 0 22px; font-size: .9rem; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  padding: 10px;
}
.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--charcoal);
  border-radius: 2px;
}

/* Mobile menu (checkbox hack + small JS enhancement) */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  min-width: 300px;
  max-width: 420px;
  height: 100vh;
  height: 100dvh;
  background: var(--charcoal);
  color: var(--white);
  z-index: 120;
  padding: 26px 26px 40px;
  overflow-y: auto;
  transform: translateX(105%);
  transition: transform .38s cubic-bezier(.65, .05, .36, 1);
  box-shadow: -24px 0 60px rgba(0, 0, 0, .35);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}
.mobile-menu-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--gold);
  letter-spacing: .06em;
}
.mobile-close {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 8px;
  background: transparent;
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background .25s, color .25s;
}
.mobile-close:hover { background: var(--gold); color: var(--charcoal); }
.mobile-menu ul { list-style: none; padding: 0; margin: 0; }
.mobile-menu li { margin: 0; border-bottom: 1px solid rgba(255, 255, 255, .09); }
.mobile-menu a {
  display: block;
  padding: 13px 4px;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  transition: color .2s, padding-left .2s;
}
.mobile-menu a:hover { color: var(--gold); padding-left: 10px; }
.mobile-menu .mm-sub a {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .78);
  padding: 10px 4px 10px 18px;
}
.mobile-menu .mm-group {
  padding: 14px 4px 6px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
}
.mobile-menu .mm-contact { margin-top: 22px; border: none; }
.mobile-menu .mm-contact a { color: var(--gold); font-size: .95rem; }
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, .55);
  backdrop-filter: blur(3px);
  z-index: 110;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s;
}
.menu-overlay.show { opacity: 1; visibility: visible; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
  background: var(--charcoal);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(16, 15, 13, .88) 8%, rgba(26, 26, 26, .55) 52%, rgba(26, 26, 26, .3) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
  padding: 96px 0 88px;
}
.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-lead {
  font-size: 1.13rem;
  color: rgba(255, 255, 255, .88);
  max-width: 560px;
  margin-bottom: 30px;
}
.hero-points {
  list-style: none;
  padding: 0;
  margin: 0 0 34px;
  display: grid;
  gap: 10px;
}
.hero-points li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: .99rem;
  color: rgba(255, 255, 255, .92);
  margin: 0;
}
.hero-points li::before {
  content: "◆";
  font-size: .6rem;
  color: var(--gold);
  flex-shrink: 0;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-actions .btn--ghost { color: var(--white); }

/* Inline hero form card */
.hero .feedback-form-container {
  background: rgba(247, 244, 239, .97);
  color: var(--charcoal);
  border-radius: 12px;
  padding: 34px 32px 30px;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .55);
  border-top: 4px solid var(--gold);
}

/* --------------------------------------------------------------------------
   Forms (required exact markup styled via classes)
   -------------------------------------------------------------------------- */
.feedback-form-container h3 { margin-bottom: 18px; }
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form .form-group { margin-bottom: 14px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: .96rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  outline: none;
  transition: border-color .25s, box-shadow .25s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 165, 114, .18);
}
.contact-form textarea { min-height: 110px; resize: vertical; }
.contact-form .submit-btn {
  width: 100%;
  height: 56px;
  border: none;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .35s, transform .3s;
}
.contact-form .submit-btn:hover { background: var(--gold-hover); transform: translateY(-1px); }
#form-success {
  padding: 26px 8px;
  text-align: center;
  font-weight: 600;
  color: #2e7d4f;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.section { padding: 88px 0; }
.section--beige { background: var(--beige); }
.section--dark {
  background: var(--charcoal);
  color: var(--white);
}
.section--dark .eyebrow { color: var(--gold); }
.section-head { max-width: 720px; margin-bottom: 46px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head p { color: var(--ink-soft); margin-top: 14px; margin-bottom: 0; }
.section--dark .section-head p { color: rgba(255, 255, 255, .78); }

/* Editorial split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split.reverse > .split-media { order: 2; }
.split-media { position: relative; }
.split-media img {
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  width: 100%;
  height: auto;
}
.split-media::before {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1px solid var(--line-gold);
  border-radius: 12px;
  z-index: -1;
}
.split.reverse .split-media::before { inset: 22px 22px -22px -22px; }

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 26px;
}
.card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(26, 26, 26, .05);
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px -20px rgba(26, 26, 26, .28);
}
.card img { height: 210px; width: 100%; object-fit: cover; }
.card-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: 10px; }
.card-body p { color: var(--ink-soft); font-size: .95rem; flex: 1; }
.card-link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .92rem;
  color: var(--gold-hover);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .25s;
}
.card-link::after { content: "→"; }
.card-link:hover { gap: 13px; }

/* Icon feature tiles */
.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}
.tile {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(26, 26, 26, .06);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
}
.section--beige .tile { background: var(--ivory); }
.tile-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(197, 165, 114, .16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold-hover);
}
.tile-icon svg { width: 26px; height: 26px; }
.tile h3 { font-size: 1.12rem; margin-bottom: 9px; }
.tile p { font-size: .93rem; color: var(--ink-soft); margin: 0; }

/* Portfolio editorial grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 18px;
}
.gallery figure {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin: 0;
}
.gallery figure:nth-child(1) { grid-row: span 2; }
.gallery figure:nth-child(4) { grid-column: span 2; }
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px 20px 16px;
  background: linear-gradient(transparent, rgba(16, 15, 13, .82));
  color: var(--white);
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .02em;
}

/* Steps */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 26px; }
.step {
  counter-increment: step;
  background: var(--white);
  border-radius: 12px;
  padding: 30px 26px;
  border: 1px solid rgba(26, 26, 26, .06);
  box-shadow: var(--shadow-card);
  position: relative;
}
.section--beige .step { background: var(--ivory); }
.step::before {
  content: "0" counter(step);
  font-family: var(--font-head);
  font-size: 2.3rem;
  font-weight: 800;
  color: rgba(197, 165, 114, .5);
  display: block;
  margin-bottom: 10px;
}
.step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.step p { font-size: .92rem; color: var(--ink-soft); margin: 0; }

/* Checklist */
.checklist { list-style: none; padding: 0; display: grid; gap: 12px; }
.checklist li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  margin: 0;
}
.checklist li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(197, 165, 114, .2);
  color: var(--gold-hover);
  font-size: .8rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(3px);
}

/* Stats band */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.7rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 10px;
  color: rgba(255, 255, 255, .75);
}

/* Testimonials */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.quote {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 30px;
  border: 1px solid rgba(26, 26, 26, .06);
  box-shadow: var(--shadow-card);
  position: relative;
}
.quote::before {
  content: "“";
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.quote p { font-size: .97rem; color: var(--ink-soft); }
.quote cite {
  font-style: normal;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
}
.quote .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 8px; font-size: .9rem; }

/* FAQ */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid rgba(26, 26, 26, .07);
  border-radius: 10px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.section--beige .faq-item { background: var(--ivory); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 54px 20px 24px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
  transition: transform .3s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 22px; color: var(--ink-soft); font-size: .97rem; }

/* CTA banner */
.cta-banner {
  background: var(--charcoal);
  color: var(--white);
  border-radius: 16px;
  padding: 56px 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(197, 165, 114, .4);
}
.cta-banner::after {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(197, 165, 114, .22);
}
.cta-banner h2 { color: var(--white); margin-bottom: 10px; }
.cta-banner p { color: rgba(255, 255, 255, .78); margin: 0; max-width: 560px; }
.cta-banner .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 2; }

/* Inline CTA row used inside long content */
.cta-inline {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  background: var(--beige);
  border-left: 4px solid var(--gold);
  border-radius: 0 10px 10px 0;
  padding: 22px 26px;
  margin: 30px 0 38px;
}
.section--beige .cta-inline,
.cta-inline.on-beige { background: var(--ivory); }
.cta-inline p {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  flex: 1;
  min-width: 220px;
}
.cta-inline .btn { height: 48px; padding: 0 24px; font-size: .92rem; }

/* Map */
.map-embed {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  line-height: 0;
}
.map-embed iframe { width: 100%; height: 430px; border: 0; }

/* Breadcrumbs */
.breadcrumbs {
  padding: 16px 0;
  font-size: .86rem;
  color: var(--ink-soft);
}
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; }
.breadcrumbs li { margin: 0; display: flex; gap: 8px; align-items: center; }
.breadcrumbs li + li::before { content: "›"; color: var(--gold); }
.breadcrumbs a:hover { color: var(--gold-hover); }
.breadcrumbs [aria-current] { font-weight: 600; }

/* Page hero (interior pages) */
.page-hero {
  position: relative;
  background: var(--charcoal);
  color: var(--white);
  overflow: hidden;
}
.page-hero .hero-bg { opacity: .42; }
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(16, 15, 13, .9) 10%, rgba(26, 26, 26, .5) 70%, rgba(26, 26, 26, .35));
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  padding: 78px 0 70px;
  max-width: 780px;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255, 255, 255, .86); font-size: 1.08rem; margin: 0 0 26px; }

/* Prose (long-form SEO content) */
.prose h2 { margin: 46px 0 16px; }
.prose h3 { margin: 28px 0 10px; }
.prose ul, .prose ol { margin-bottom: 1.3em; }
.prose { color: var(--ink-soft); }
.prose h2, .prose h3 { color: var(--charcoal); }
.prose strong { color: var(--charcoal); }
.prose a { color: var(--gold-hover); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(197, 165, 114, .5); text-underline-offset: 3px; }
.prose a:hover { color: var(--charcoal); }

/* Link chips (areas/services) */
.chip-row { display: flex; flex-wrap: wrap; gap: 12px; padding: 0; list-style: none; }
.chip-row li { margin: 0; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 20px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  transition: border-color .25s, background .25s, color .25s, transform .25s;
}
.chip::before { content: "📍"; font-size: .82rem; }
.chip.svc::before { content: "◆"; color: var(--gold); font-size: .6rem; }
.chip:hover {
  border-color: var(--gold);
  background: rgba(197, 165, 114, .12);
  transform: translateY(-2px);
}
.section--beige .chip { background: var(--ivory); }

/* Two-col info + form on contact */
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.info-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(26, 26, 26, .06);
  box-shadow: var(--shadow-card);
  padding: 30px 30px;
  margin-bottom: 20px;
}
.info-card h3 {
  font-size: 1rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-hover);
  margin-bottom: 10px;
}
.info-card p, .info-card a { font-size: 1.02rem; margin: 0; }
.info-card a { font-weight: 600; }
.info-card a:hover { color: var(--gold-hover); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, .8);
  padding: 74px 0 0;
  font-size: .94rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 44px;
  padding-bottom: 52px;
}
.site-footer h3 {
  color: var(--white);
  font-size: .85rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.site-footer h3::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: var(--gold);
  margin-top: 10px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { transition: color .25s; }
.site-footer a:hover { color: var(--gold); }
.footer-brand .logo-name { color: var(--white); }
.footer-brand p { margin-top: 16px; font-size: .92rem; color: rgba(255, 255, 255, .62); }
.footer-contact li { display: flex; gap: 10px; align-items: baseline; }
.footer-contact .gold { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: .85rem;
  color: rgba(255, 255, 255, .55);
}

/* --------------------------------------------------------------------------
   Sticky quote button + modal
   -------------------------------------------------------------------------- */
.sticky-quote {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 100;
  height: 56px;
  padding: 0 30px;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-head);
  font-size: .98rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  box-shadow: 0 16px 40px -12px rgba(178, 143, 95, .9);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background .3s, transform .3s;
  animation: stickyPulse 3.2s ease-in-out infinite;
}
.sticky-quote:hover { background: var(--gold-hover); transform: translateY(-3px); }
@keyframes stickyPulse {
  0%, 100% { box-shadow: 0 16px 40px -12px rgba(178, 143, 95, .9), 0 0 0 0 rgba(197, 165, 114, .5); }
  50% { box-shadow: 0 16px 40px -12px rgba(178, 143, 95, .9), 0 0 0 14px rgba(197, 165, 114, 0); }
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16, 15, 13, .72);
  backdrop-filter: blur(4px);
  z-index: 130;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.active { display: flex; animation: fadeIn .3s ease; }
.modal {
  background: var(--ivory);
  border-radius: 14px;
  border-top: 5px solid var(--gold);
  max-width: 560px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  padding: 38px 36px 32px;
  position: relative;
  box-shadow: 0 60px 120px -30px rgba(0, 0, 0, .6);
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--charcoal);
  transition: background .25s, color .25s;
}
.modal-close:hover { background: var(--charcoal); color: var(--white); }

/* --------------------------------------------------------------------------
   Utility
   -------------------------------------------------------------------------- */
.mt-0 { margin-top: 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.note {
  font-size: .9rem;
  color: var(--ink-soft);
  border-left: 3px solid var(--gold);
  padding-left: 16px;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .main-nav { display: none; }
  .burger { display: flex; }
  .header-cta .btn { display: none; }
  .hero-inner { grid-template-columns: 1fr; padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .split, .grid-2, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse > .split-media { order: 0; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 190px; }
  .gallery figure:nth-child(4) { grid-column: span 1; }
  .contact-form .form-row { grid-template-columns: 1fr; gap: 0; }
  .cta-banner { padding: 40px 28px; }
  .topbar-hours { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .sticky-quote {
    right: 50%;
    transform: translateX(50%);
    bottom: 18px;
    width: calc(100% - 48px);
    max-width: 360px;
    justify-content: center;
  }
  .sticky-quote:hover { transform: translateX(50%) translateY(-3px); }
  .mobile-menu { width: 50%; min-width: 290px; }
  .hero .feedback-form-container { padding: 26px 22px 22px; }
  .map-embed iframe { height: 320px; }
}
