/* ============================================================
   ARKO Remodeling Inc. — site styles
   Warm light theme anchored by charcoal header/footer.
   cream/bone body · charcoal #14151A · brass #A9822F
   ============================================================ */
:root {
  --charcoal: #14151A;
  --ink: #1B1C21;
  --bone: #F1EDE4;       /* body background — warm, not white */
  --cream: #E9E3D5;      /* deeper alternating sections */
  --card: #FAF7F0;       /* card surfaces */
  --brass: #A9822F;
  --bronze: #8A6A22;
  --gold: #C6A15B;
  --gold-soft: #D8BC85;
  --text: #23242A;
  --muted: #6B675E;
  --muted-light: #A8A49B;
  --line: rgba(20, 21, 26, 0.12);
  --line-dark: rgba(246, 243, 236, 0.14);
  --gold-line: rgba(169, 130, 47, 0.35);
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bone);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16.5px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2 { font-family: 'Cormorant Garamond', Georgia, serif; line-height: 1.08; color: var(--charcoal); font-weight: 600; }
h1 { font-size: clamp(42px, 6.2vw, 76px); letter-spacing: 0.005em; }
h2 { font-size: clamp(32px, 4vw, 48px); }
h3 { font-family: 'Montserrat', 'Inter', sans-serif; font-size: 19px; font-weight: 700; line-height: 1.25; color: var(--charcoal); }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 22px; }

.kicker {
  display: flex; align-items: center; gap: 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 16px;
}
.kicker::before { content: ""; width: 34px; height: 2px; background: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 0 32px;
  border-radius: 3px; border: none; cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}
/* deep bronze — passes contrast with white text (5.0:1), reads far more premium than bright gold */
.btn-gold {
  background: var(--bronze);
  color: #FFFFFF;
}
.btn-gold:hover { background: #6F5519; }
.btn-line { background: transparent; color: var(--charcoal); border: 1px solid rgba(20, 21, 26, 0.35); }
.btn-line:hover { border-color: var(--brass); color: var(--brass); }

/* ---------- Header (charcoal, like the business card) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(20, 21, 26, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(198, 161, 91, 0.22);
}
.nav-bar { display: flex; align-items: center; gap: 26px; height: 80px; }
.nav-logo img { height: 54px; width: auto; }
.nav-links { display: flex; gap: 25px; margin-left: auto; align-items: center; }
.nav-links a {
  color: #E8E4DA; text-decoration: none;
  font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 600;
  letter-spacing: 0.02em;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--gold); border-bottom-color: var(--gold); }
/* nav CTA: outlined gold on the dark header — quieter and more refined than a filled button.
   Selector must out-rank `.nav-links a`, which otherwise sets the link colour and size. */
.nav-links a.nav-cta {
  margin-left: 10px; min-height: 42px; padding: 0 20px;
  font-size: 11.5px; letter-spacing: 0.15em;
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(198, 161, 91, 0.55);
  border-bottom: 1px solid rgba(198, 161, 91, 0.55);
}
.nav-links a.nav-cta:hover { background: var(--gold); border-color: var(--gold); color: #14151A; }

/* Services dropdown */
.nav-drop { position: relative; }
.nav-drop-btn {
  display: flex; align-items: center; gap: 7px;
  background: none; border: none; cursor: pointer;
  color: #E8E4DA;
  font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 600;
  letter-spacing: 0.02em;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.nav-drop-btn:hover, .nav-drop-btn.on, .nav-drop.open .nav-drop-btn { color: var(--gold); }
.nav-drop-btn.on { border-bottom-color: var(--gold); }
.nav-drop-btn svg { transition: transform 0.2s ease; }
.nav-drop:hover .nav-drop-btn svg, .nav-drop.open .nav-drop-btn svg { transform: rotate(180deg); }
.nav-drop-menu {
  position: absolute; top: 100%; left: -16px;
  padding-top: 22px;
  display: none; z-index: 70;
}
.nav-drop:hover .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu, .nav-drop.open .nav-drop-menu { display: block; }
.ndm-in {
  background: #1B1C21;
  border: 1px solid rgba(198, 161, 91, 0.25);
  border-radius: 10px;
  min-width: 240px;
  padding: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}
.ndm-in a {
  display: block;
  padding: 12px 14px !important;
  border-bottom: none !important;
  border-radius: 7px;
  font-size: 14px;
}
.ndm-in a:hover, .ndm-in a[aria-current="page"] { background: rgba(198, 161, 91, 0.12); color: var(--gold); }
.ndm-in a.ndm-all {
  margin-top: 6px; border-top: 1px solid var(--line-dark) !important;
  border-radius: 0 0 7px 7px;
  color: var(--gold);
  font-size: 13px !important; letter-spacing: 0.06em;
}
@media (max-width: 900px) {
  .nav-drop { width: 100%; }
  .nav-drop-btn { width: 100%; justify-content: space-between; padding: 14px 4px; font-size: 16px; border-bottom: 1px solid var(--line-dark); }
  .nav-drop-menu { position: static; padding-top: 0; }
  .ndm-in { background: transparent; border: none; box-shadow: none; padding: 0 0 0 16px; }
  .ndm-in a { font-size: 15px; }
  .nav-drop:hover .nav-drop-menu { display: none; }
  .nav-drop.open .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu { display: block; }
}
.nav-toggle {
  display: none; margin-left: auto;
  background: none; border: none; cursor: pointer;
  width: 46px; height: 46px; color: #E8E4DA;
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute; top: 80px; left: 0; right: 0;
    background: var(--charcoal);
    flex-direction: column; align-items: stretch; gap: 0;
    border-bottom: 1px solid var(--line-dark);
    padding: 8px 22px 20px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 4px; font-size: 16px; border-bottom: 1px solid var(--line-dark); }
  .nav-cta { margin: 16px 0 0; }
  .nav-toggle { display: block; }
}

/* ---------- Hero: full-bleed photography, dark gradient, white type ---------- */
.hero { position: relative; background: var(--charcoal); overflow: hidden; display: flex; flex-direction: column; min-height: 82vh; }
.page-hero { min-height: 0; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,17,20,0.58) 0%, rgba(16,17,20,0.24) 34%, rgba(16,17,20,0.44) 62%, rgba(16,17,20,0.88) 100%);
}
.hero > .wrap { position: relative; flex: 1; display: flex; align-items: flex-end; width: 100%; }
.hero-inner { position: relative; padding: 190px 0 74px; max-width: 780px; }

/* Large watermark logo on the right of the home hero */
.hero-mark {
  position: absolute;
  right: max(28px, calc((100vw - 1140px) / 2 + 22px));
  top: 50%; transform: translateY(-46%);
  width: min(30vw, 340px);
  height: auto;
  opacity: 0.93;
  filter: drop-shadow(0 4px 26px rgba(0, 0, 0, 0.55));
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 1024px) { .hero-mark { display: none; } }
.hero h1 { color: #FFFFFF; margin-bottom: 20px; text-shadow: 0 2px 30px rgba(0,0,0,0.35); }
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero .kicker { color: var(--gold-soft); }
.hero .kicker::before { background: var(--gold-soft); }
.hero p.lead { font-size: 18.5px; color: rgba(240, 236, 227, 0.88); margin-bottom: 32px; max-width: 600px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .btn-line { color: #FFFFFF; border-color: rgba(255, 255, 255, 0.45); }
.hero .btn-line:hover { border-color: var(--gold); color: var(--gold-soft); }
@media (max-width: 640px) { .hero-inner { padding: 130px 0 52px; } }

.page-hero .hero-inner { padding: 130px 0 58px; }
.breadcrumbs { font-size: 13.5px; margin-bottom: 18px; color: rgba(240, 236, 227, 0.75); }
.breadcrumbs a { color: rgba(240, 236, 227, 0.75); text-decoration: none; }
.breadcrumbs a:hover { color: var(--gold-soft); }
.page-hero p.lead { color: rgba(240, 236, 227, 0.88); }

/* ---------- Stats band (big numerals) ---------- */
.hero-strip {
  position: relative;
  background: var(--charcoal);
  border-top: 1px solid rgba(198, 161, 91, 0.22);
  padding: 30px 0 26px;
}
.hero-strip .wrap {
  display: grid; grid-template-columns: repeat(4, auto);
  justify-content: space-between; gap: 26px;
}
@media (max-width: 760px) { .hero-strip .wrap { grid-template-columns: repeat(2, 1fr); } }
.stat .stat-n {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 42px; font-weight: 600; line-height: 1;
  color: var(--gold);
}
.stat .stat-l {
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted-light); margin-top: 6px;
}

/* ---------- ZIP checker band ---------- */
.zip-band {
  background: var(--charcoal);
  border-top: 1px solid rgba(198, 161, 91, 0.25);
  padding: 26px 0 30px;
}
.zip-band .wrap { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.zip-title {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 17px;
  color: #FFFFFF;
}
.zip-title span { display: block; font-family: 'Inter', sans-serif; font-weight: 400; font-size: 13.5px; color: var(--muted-light); margin-top: 2px; }
.zip-form { display: flex; gap: 10px; flex: 1; min-width: 260px; max-width: 430px; }
.zip-form input {
  flex: 1; min-width: 0;
  background: rgba(246, 243, 236, 0.08);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  color: #F6F3EC;
  font-family: inherit; font-size: 16px; letter-spacing: 0.06em;
  padding: 13px 16px;
  outline: none;
}
.zip-form input:focus { border-color: var(--gold); }
.zip-form input::placeholder { color: rgba(168, 164, 155, 0.7); letter-spacing: normal; }
.zip-form .btn { min-height: 50px; padding: 0 24px; font-size: 14px; }
.zip-result { flex-basis: 100%; font-size: 15px; margin-top: 2px; }
.zip-result[hidden] { display: none; }
.zip-result.yes { color: var(--gold-soft); }
.zip-result.maybe { color: var(--muted-light); }
.zip-result a { color: var(--gold); font-weight: 600; text-decoration: none; }

/* ---------- Sections ---------- */
.sect { padding: 84px 0; }
.sect-cream { background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sect-head { max-width: 660px; margin-bottom: 46px; }
.sect-head p { color: var(--muted); margin-top: 12px; }
@media (max-width: 640px) { .sect { padding: 56px 0; } }

/* ---------- Service tiles (photo-forward) ---------- */
.tile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 760px) { .tile-grid { grid-template-columns: 1fr; } }
.svc-tile {
  position: relative; display: block; overflow: hidden;
  border-radius: 10px; text-decoration: none;
  aspect-ratio: 16 / 10;
  background: var(--charcoal);
}
.svc-tile img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.svc-tile:hover img { transform: scale(1.05); }
/* Stronger, taller scrim so titles stay readable over bright photos */
.svc-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(16,17,20,0) 22%,
    rgba(16,17,20,0.34) 48%,
    rgba(16,17,20,0.74) 74%,
    rgba(16,17,20,0.94) 100%);
}
.svc-tile-body { position: absolute; left: 26px; right: 26px; bottom: 22px; z-index: 1; }
.svc-tile .tile-kicker {
  font-family: 'Montserrat', sans-serif; font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-soft);
  margin-bottom: 6px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.9);
}
.svc-tile h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 30px; font-weight: 600; color: #FFFFFF;
  display: flex; align-items: baseline; gap: 12px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85);
}
.svc-tile h3 .arrow { font-size: 22px; color: var(--gold-soft); transition: transform 0.25s ease; }
.svc-tile:hover h3 .arrow { transform: translateX(6px); }
.svc-tile p { font-size: 14px; color: rgba(240, 236, 227, 0.82); margin-top: 4px; max-width: 420px; }

/* Project tiles (3-across variant) */
.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .proj-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .proj-grid { grid-template-columns: 1fr; } }
.proj-grid .svc-tile { aspect-ratio: 4 / 3; }
.proj-grid .svc-tile h3 { font-size: 23px; }
.proj-grid .svc-tile-body { left: 20px; right: 20px; bottom: 16px; }

/* ---------- Pillars (editorial, no boxes) ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; }
@media (max-width: 860px) { .pillars { grid-template-columns: 1fr; gap: 30px; } }
.pillar { border-top: 1px solid rgba(20, 21, 26, 0.28); padding: 24px 0 0; }
.pillar .num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600; font-size: 34px; line-height: 1;
  color: var(--gold); margin-bottom: 14px;
}
.pillar h3 { margin-bottom: 10px; }
.pillar p { color: var(--muted); font-size: 15px; }

/* ---------- Gallery (featured first image) ---------- */
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 900px) { .gal-grid { grid-template-columns: repeat(2, 1fr); } }
.gal-grid img { aspect-ratio: 1; object-fit: cover; border-radius: 8px; width: 100%; height: 100%; }
.gal-grid img:first-child { grid-column: span 2; grid-row: span 2; }

/* ---------- Trust bar ---------- */
.trust-bar { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.trust-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(169, 130, 47, 0.10);
  border: 1px solid var(--gold-line);
  color: var(--brass); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px;
  padding: 10px 18px; border-radius: 999px; text-decoration: none;
}
.trust-item { font-size: 15px; color: var(--muted); }
.trust-item strong { color: var(--charcoal); }

/* ---------- Two-column blocks ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 34px; } }
.split img { border-radius: 10px; width: 100%; object-fit: cover; box-shadow: 0 18px 44px rgba(20, 21, 26, 0.16); }
.checklist { list-style: none; margin-top: 18px; }
.checklist li { padding: 9px 0 9px 34px; position: relative; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 14px;
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(169, 130, 47, 0.14);
  border: 1.5px solid var(--brass);
}
.checklist li::after {
  content: ""; position: absolute; left: 5px; top: 18px;
  width: 8px; height: 5px;
  border-left: 2px solid var(--brass); border-bottom: 2px solid var(--brass);
  transform: rotate(-45deg);
}

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 24px; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  display: block;
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 14px;
  color: var(--brass); letter-spacing: 0.14em; margin-bottom: 10px;
}
.step h3 { font-size: 16.5px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none;
  padding: 20px 40px 20px 2px; position: relative;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px;
  color: var(--charcoal);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 8px; top: 16px;
  font-size: 24px; color: var(--brass); font-weight: 400;
}
.faq details[open] summary::after { content: "–"; }
.faq .faq-a { padding: 0 2px 22px; color: var(--muted); }

/* ---------- Lead form panel ---------- */
.form-panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: 0 20px 50px rgba(20, 21, 26, 0.12);
}
@media (max-width: 640px) { .form-panel { padding: 26px 20px; } }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid .full { grid-column: 1 / -1; }
.form-panel label {
  display: block;
  font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 7px;
}
.form-panel input, .form-panel select, .form-panel textarea {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid rgba(20, 21, 26, 0.18);
  border-radius: 8px;
  color: var(--text);
  font-family: inherit; font-size: 16px;
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.15s ease;
}
.form-panel input:focus, .form-panel select:focus, .form-panel textarea:focus { border-color: var(--brass); }
.form-panel ::placeholder { color: rgba(107, 103, 94, 0.6); }
.form-panel select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B675E' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center;
}
.form-panel select:invalid { color: rgba(107, 103, 94, 0.85); }
.form-panel textarea { min-height: 106px; resize: vertical; }
.hp { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }
.form-error { color: #A63B20; font-size: 14.5px; margin-top: 14px; }
.form-success-msg { text-align: center; padding: 26px 6px; }
.form-success-msg h3 { font-size: 24px; margin-bottom: 10px; }
.form-success-msg p { color: var(--muted); }
.form-success-msg a { color: var(--brass); font-weight: 600; text-decoration: none; }

/* ---------- Service area ---------- */
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 900px) { .area-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .area-grid { grid-template-columns: 1fr; } }
.area-block { border-top: 1px solid rgba(20, 21, 26, 0.22); padding-top: 20px; }
.area-block h3 {
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass);
  margin-bottom: 14px;
}
.area-block ul { list-style: none; }
.area-block li { padding: 4px 0; font-size: 15px; }
.area-block .zips {
  display: block; font-size: 12.5px; color: var(--muted); letter-spacing: 0.04em;
}

/* ---------- Reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .review-grid { grid-template-columns: 1fr; } }
.review-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 10px;
  padding: 28px 26px;
  display: flex; flex-direction: column;
}
.review-stars { color: var(--gold); font-size: 15px; letter-spacing: 3px; margin-bottom: 14px; }
.review-card blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 19.5px; line-height: 1.5; color: var(--charcoal);
  flex: 1;
}
.review-card cite {
  display: block; margin-top: 18px; font-style: normal;
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--charcoal);
}
.review-card cite span {
  display: block; font-family: 'Inter', sans-serif; font-weight: 400;
  font-size: 12.5px; color: var(--muted); margin-top: 3px;
}
.tile-meta {
  font-family: 'Inter', sans-serif; font-size: 12.5px;
  color: rgba(240, 236, 227, 0.88); margin-top: 3px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.85);
}

/* ---------- CTA band (dark, editorial) ---------- */
.cta-band {
  text-align: center;
  background: var(--charcoal);
  border-top: 1px solid rgba(198, 161, 91, 0.22);
}
.cta-band h2 { margin-bottom: 14px; color: #FFFFFF; }
.cta-band p { color: var(--muted-light); margin-bottom: 28px; }
.cta-band .hero-ctas { justify-content: center; }
.cta-band .btn-line { color: #FFFFFF; border-color: rgba(255, 255, 255, 0.4); }
.cta-band .btn-line:hover { border-color: var(--gold); color: var(--gold-soft); }

/* ---------- Footer (charcoal) ---------- */
.site-footer { background: var(--charcoal); color: var(--muted-light); font-size: 14.5px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px;
  padding: 64px 0 46px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer img.f-logo { height: 78px; width: auto; margin-bottom: 16px; }
.site-footer h4 {
  font-family: 'Montserrat', sans-serif; font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}
.site-footer a { color: #E8E4DA; text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.site-footer ul { list-style: none; }
.site-footer li { padding: 5px 0; }
.f-bottom {
  border-top: 1px solid var(--line-dark);
  padding: 22px 0; text-align: center; font-size: 13px;
}
.f-bottom .dot { color: var(--gold); padding: 0 8px; }

/* ---------- Estimate popup ----------
   Branded charcoal header band + cream form body. Deliberately NOT a rounded
   gold-striped lead-capture box — serif headline, hairline fields, square
   corners so it reads like the rest of the site. */
.popup-overlay {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(11, 12, 15, 0.62);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.popup-overlay.show { opacity: 1; pointer-events: auto; }
.est-popup {
  position: fixed; z-index: 95;
  left: 50%; top: 50%;
  transform: translate(-50%, -47%);
  width: min(424px, calc(100% - 28px));
  background: var(--card);
  border-radius: 4px;
  box-shadow: 0 36px 90px rgba(8, 9, 12, 0.5);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  max-height: calc(100dvh - 28px); overflow-y: auto;
}
.est-popup.show { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%); }
@media (prefers-reduced-motion: reduce) { .est-popup, .popup-overlay { transition: opacity 0.2s ease; } }

.est-popup .popup-head {
  position: relative;
  background: var(--charcoal);
  padding: 20px 26px 18px;
}
/* hairline of brass instead of a thick gold stripe */
.est-popup .popup-head::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, rgba(198, 161, 91, 0), rgba(198, 161, 91, 0.85), rgba(198, 161, 91, 0));
}
.est-popup .popup-logo { width: 88px; height: auto; margin-bottom: 13px; opacity: 0.96; }
.est-popup .popup-kicker {
  font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 7px;
}
.est-popup h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px; font-weight: 600; line-height: 1.14;
  color: #F6F3EC; margin: 0;
}
.est-popup .popup-close {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  color: rgba(246, 243, 236, 0.55);
  border-radius: 50%;
  transition: color 0.2s ease, background 0.2s ease;
}
.est-popup .popup-close:hover { color: #F6F3EC; background: rgba(246, 243, 236, 0.08); }

.est-popup .popup-body { padding: 22px 26px 22px; }
.est-popup .popup-sub {
  font-size: 14.5px; line-height: 1.6; color: var(--muted);
  margin-bottom: 16px;
}
.est-popup .pfield { margin-bottom: 11px; }
.est-popup .pfield > label {
  display: block;
  font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 7px;
}
.est-popup input, .est-popup select {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid rgba(20, 21, 26, 0.16);
  border-radius: 2px;
  color: var(--text);
  font-family: inherit; font-size: 16px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.est-popup input:focus, .est-popup select:focus {
  border-color: var(--bronze);
  box-shadow: 0 0 0 3px rgba(138, 106, 34, 0.11);
}
.est-popup select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B675E' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center;
}
.est-popup select:invalid { color: rgba(107, 103, 94, 0.85); }
.est-popup .btn { width: 100%; margin-top: 6px; min-height: 52px; }
.est-popup .popup-call {
  display: block; text-align: center; margin-top: 14px;
  font-size: 14px; color: var(--muted); text-decoration: none;
}
.est-popup .popup-call strong { color: var(--bronze); }
.est-popup .popup-fine {
  margin-top: 14px; padding-top: 12px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-family: 'Montserrat', sans-serif; font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-light);
}
.est-popup .popup-fine .dot { padding: 0 6px; color: var(--gold); }
.est-popup .p-error { color: #A63B20; font-size: 14px; margin: 0 0 10px; }
.est-popup .p-success { text-align: center; padding: 6px 0 4px; }
.est-popup .p-success h3 {
  color: var(--charcoal); font-size: 26px; margin-bottom: 8px;
}
.est-popup .p-success p { color: var(--muted); font-size: 15px; }
/* shorter phones (iPhone SE and similar): compact so the whole card fits without scrolling */
@media (max-height: 700px) {
  .est-popup .popup-head { padding: 16px 22px 15px; }
  .est-popup .popup-logo { width: 76px; margin-bottom: 10px; }
  .est-popup h3 { font-size: 25px; }
  .est-popup .popup-body { padding: 18px 22px 18px; }
  .est-popup .popup-sub { font-size: 14px; margin-bottom: 13px; }
  .est-popup .pfield { margin-bottom: 9px; }
}

/* ---------- Photo lightbox ---------- */
.gal-grid img { cursor: zoom-in; transition: opacity 0.2s ease; }
.gal-grid img:hover { opacity: 0.92; }
.pht-lb {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(12, 13, 15, 0.95);
  display: none;
  align-items: center; justify-content: center;
}
.pht-lb.show { display: flex; }
.pht-lb img {
  max-width: 92vw; max-height: 86dvh;
  border-radius: 6px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.7);
  cursor: zoom-out;
}
.pht-lb .lb-btn {
  position: fixed; z-index: 2;
  width: 48px; height: 48px;
  background: rgba(246, 243, 236, 0.10);
  border: 1px solid rgba(246, 243, 236, 0.22);
  border-radius: 50%;
  color: #F6F3EC; font-size: 26px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.pht-lb .lb-btn:hover { border-color: var(--gold); color: var(--gold-soft); }
.pht-lb .lb-close { top: max(16px, env(safe-area-inset-top)); right: 16px; }
.pht-lb .lb-prev, .pht-lb .lb-next { top: 50%; transform: translateY(-50%); }
.pht-lb .lb-prev { left: 12px; }
.pht-lb .lb-next { right: 12px; }
.pht-lb .lb-cap {
  position: fixed; left: 0; right: 0;
  bottom: max(16px, env(safe-area-inset-bottom));
  text-align: center; font-size: 13.5px;
  color: rgba(246, 243, 236, 0.75);
  padding: 0 70px;
}

/* ---------- Sticky mobile call button ---------- */
.call-fab {
  position: fixed; z-index: 80;
  /* NOTE: `left:50%` alone leaves a shrink-to-fit box only half the viewport
     wide, which wrapped the label onto three lines on phones. Pin both edges
     and let margin:auto centre it, plus nowrap so it can never wrap again. */
  left: 0; right: 0; margin: 0 auto; width: max-content; max-width: calc(100vw - 32px);
  bottom: calc(16px + env(safe-area-inset-bottom) * 0.5);
  transform: translateY(90px);
  display: none;
  align-items: center; gap: 9px;
  white-space: nowrap;
  background: rgba(19, 20, 25, 0.95);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  color: #FFFFFF;
  border: 1px solid rgba(198, 161, 91, 0.42);
  border-radius: 999px;
  padding: 6px 20px 6px 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: 0.01em; line-height: 1;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(10, 10, 12, 0.4);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  opacity: 0;
  -webkit-tap-highlight-color: transparent;
}
.call-fab .fab-icon {
  width: 34px; height: 34px; flex: none;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold), var(--brass));
  display: flex; align-items: center; justify-content: center;
  color: #17130A;
}
.call-fab .fab-num { color: #FFFFFF; }
@media (max-width: 760px) { .call-fab { display: flex; } }
.call-fab.show {
  opacity: 1;
  transform: translateY(0);
  animation: fab-bounce 7s ease-in-out 1.4s infinite;
}
/* a light double-hop every few seconds, phone icon rings along */
@keyframes fab-bounce {
  0%, 9%, 100% { transform: translateY(0); }
  2.5% { transform: translateY(-8px); }
  5% { transform: translateY(0); }
  6.5% { transform: translateY(-4px); }
  8% { transform: translateY(0); }
}
.call-fab.show .fab-icon { animation: fab-ring 7s ease-in-out 1.4s infinite; }
@keyframes fab-ring {
  0%, 9%, 100% { transform: rotate(0); }
  1.8% { transform: rotate(-12deg); }
  3.5% { transform: rotate(10deg); }
  5% { transform: rotate(-7deg); }
  6.5% { transform: rotate(5deg); }
  8% { transform: rotate(0); }
}
@media (prefers-reduced-motion: reduce) {
  .call-fab, .call-fab.show, .call-fab.show .fab-icon { animation: none; transition: opacity 0.2s ease; }
  .call-fab { transform: translateY(0); }
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Legal pages (privacy policy) ----------
   Long-form reading: narrower measure, quieter rhythm than a marketing page. */
.legal-head {
  padding: 54px 0 0;
  background: var(--card);
  border-bottom: 1px solid var(--line);
}
.legal-head h1 { font-size: clamp(38px, 5vw, 56px); margin-bottom: 10px; }
.legal-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 44px;
}
.legal { background: var(--card); padding-top: 46px; }
.legal-body { max-width: 720px; }
.legal-intro {
  font-size: 18px; line-height: 1.68; color: var(--text);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 34px;
}
.legal-body h2 {
  font-size: 25px;
  margin: 38px 0 12px;
  color: var(--charcoal);
}
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body p { color: var(--muted); margin-bottom: 14px; }
.legal-body ul { margin: 0 0 16px; padding-left: 22px; color: var(--muted); }
.legal-body li { margin-bottom: 8px; padding-left: 4px; }
.legal-body li::marker { color: var(--gold); }
.legal-body strong { color: var(--text); font-weight: 600; }
.legal-body a { color: var(--bronze); text-decoration: underline; text-underline-offset: 2px; }
.legal-body a:hover { color: var(--charcoal); }
.legal-contact {
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 18px 20px;
  line-height: 1.75;
}
.f-bottom a { color: rgba(246, 243, 236, 0.75); text-decoration: none; }
.f-bottom a:hover { color: var(--gold); }
