/* =========================================================
   Pared Interiors — Combined Site Stylesheet
   Source 1: colors_and_type.css (Brand Guidelines v3.1)
   Source 2: pared-shared.jsx GlobalStyles block
   Compiled for WordPress: enqueued via functions.php
   ========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+Display:ital,wght@0,200..900;1,200..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Luxurious+Script&display=swap");

/* ─────────────────────────────────────────────────────────
   CSS RESET — applied site-wide
   ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ─────────────────────────────────────────────────────────
   DESIGN TOKENS — short-prefix (used by SPA pages + components)
   ───────────────────────────────────────────────────────── */
:root {
  /* Core palette — short tokens used by Nav, Footer, layout components */
  --cream: #F2F0E8;
  --off-white: #FDFCF7;
  --umber: #4B3621;
  --umber2: #635147;
  --stone: #6F6B60;
  --charcoal: #312F28;
  --surface: #F6F4F1;
  --rule: #DDD9D1;

  /* Type families */
  --serif: 'Noto Serif Display', 'Playfair Display', Georgia, serif;
  --sans: 'Open Sans', Montserrat, sans-serif;

  /* Layout primitives */
  --max: 1320px;
  --pad: clamp(20px, 5vw, 80px);

  /* ───────── pared-prefixed aliases (used by static HTML pages) ───────── */
  /* Near-whites, light → dark */
  --pared-near-white:        #FDFCF7;
  --pared-table-row-light:   #FAF9F5;
  --pared-mid-surface:       #F6F4F1;
  --pared-table-row-dark:    #F5F4ED;
  --pared-alabaster:         #F2F0E8;

  /* Core darks */
  --pared-raw-umber:         #4B3621;
  --pared-deep-warm-brown:   #635147;
  --pared-charcoal:          #312F28;

  /* Accent */
  --pared-stone:             #6F6B60;

  /* Gradient lineup (light → dark) */
  --pared-grad-1: #EDE8DF;
  --pared-grad-2: #C4BDB1;
  --pared-grad-3: #A19788;
  --pared-grad-4: #8B7D6B;
  --pared-grad-5: #635147;
  --pared-grad-6: #4B3B22;

  /* Semantic tokens */
  --pared-bg:            var(--pared-alabaster);
  --pared-bg-print:      var(--pared-near-white);
  --pared-surface:       var(--pared-near-white);
  --pared-surface-alt:   var(--pared-mid-surface);
  --pared-fg:            var(--pared-raw-umber);
  --pared-fg-muted:      var(--pared-deep-warm-brown);
  --pared-fg-strong:     var(--pared-charcoal);
  --pared-fg-accent:     var(--pared-stone);
  --pared-rule:          #E6E2D7;
  --pared-rule-strong:   var(--pared-charcoal);
  --pared-border:        rgba(75, 54, 33, 0.12);
  --pared-cta-bg:        var(--pared-stone);
  --pared-cta-fg:        var(--pared-near-white);
  --pared-cta-bg-hover:  var(--pared-raw-umber);

  /* Spacing scale */
  --pared-space-1:  4px;
  --pared-space-2:  8px;
  --pared-space-3:  12px;
  --pared-space-4:  16px;
  --pared-space-5:  24px;
  --pared-space-6:  32px;
  --pared-space-7:  48px;
  --pared-space-8:  64px;
  --pared-space-9:  96px;
  --pared-space-10: 128px;

  /* Radii */
  --pared-radius-sm: 2px;
  --pared-radius-md: 4px;
  --pared-radius-lg: 6px;
  --pared-radius-pill: 999px;

  /* Shadows */
  --pared-shadow-xs: 0 1px 2px rgba(49, 47, 40, 0.04);
  --pared-shadow-sm: 0 2px 8px rgba(49, 47, 40, 0.05);
  --pared-shadow-md: 0 12px 28px -16px rgba(49, 47, 40, 0.18);
  --pared-shadow-lg: 0 24px 60px -28px rgba(49, 47, 40, 0.22);

  /* Motion */
  --pared-ease:       cubic-bezier(0.22, 0.61, 0.36, 1);
  --pared-ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --pared-dur-fast:   160ms;
  --pared-dur-base:   240ms;
  --pared-dur-slow:   420ms;

  /* Type families (pared-prefixed) */
  --pared-font-serif:  "Noto Serif Display", "Playfair Display", Georgia, "Times New Roman", serif;
  --pared-font-sans:   "Open Sans", Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --pared-font-script: "Luxurious Script", "Pinyon Script", "Ephesis", cursive;
  --pared-font-email:  "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Type roles */
  --pared-display-size:      64px;
  --pared-display-weight:    400;
  --pared-display-lh:        1.08;
  --pared-display-tracking:  -0.01em;

  --pared-h1-size:           45px;
  --pared-h1-weight:         300;
  --pared-h1-lh:             1.15;
  --pared-h1-tracking:       -0.005em;

  --pared-h2-size:           32px;
  --pared-h2-weight:         600;
  --pared-h2-lh:             1.2;
  --pared-h2-tracking:       -0.005em;

  --pared-h3-size:           24px;
  --pared-h3-weight:         600;
  --pared-h3-lh:             1.25;

  --pared-subhead-size:      18px;
  --pared-subhead-weight:    500;
  --pared-subhead-lh:        1.5;

  --pared-body-size:         16px;
  --pared-body-weight:       300;
  --pared-body-lh:           1.7;

  --pared-label-size:        11px;
  --pared-label-weight:      400;
  --pared-label-lh:          1.4;
  --pared-label-tracking:    0.14em;

  --pared-script-size:       52px;
  --pared-script-weight:     400;
  --pared-script-lh:         1.1;
  /* ───────── Inquiry/contact form aliases (missing scoped tokens) ───────── */
  --border:        #DDD9CE;
  --page-bg:       #FAF9F5;
  --alabaster:     #F2F0E8;
  --near-white:    #FDFCF7;
  --brown:         #635147;
  --opt-bg:        #EDE8DF;
  --disabled:      #E8E4DC;
  --disabled-txt:  #B5B0A4;

}

/* ─────────────────────────────────────────────────────────
   BASE TYPOGRAPHY
   ───────────────────────────────────────────────────────── */
body {
  background: var(--cream);
  color: var(--umber);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--umber);
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─────────────────────────────────────────────────────────
   .pared body class — used by static pages that opt in
   ───────────────────────────────────────────────────────── */
body.pared, .pared {
  background: var(--pared-bg);
  color: var(--pared-fg);
  font-family: var(--pared-font-sans);
  font-size: var(--pared-body-size);
  font-weight: var(--pared-body-weight);
  line-height: var(--pared-body-lh);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
.pared--print { background: #FFFFFF; }

.pared h1, .pared .pared-h1 {
  font-family: var(--pared-font-serif);
  font-size: var(--pared-h1-size);
  font-weight: var(--pared-h1-weight);
  line-height: var(--pared-h1-lh);
  letter-spacing: var(--pared-h1-tracking);
  color: var(--pared-fg);
  margin: 0 0 var(--pared-space-5);
  text-wrap: pretty;
}
.pared .pared-display {
  font-family: var(--pared-font-serif);
  font-size: var(--pared-display-size);
  font-weight: var(--pared-display-weight);
  line-height: var(--pared-display-lh);
  letter-spacing: var(--pared-display-tracking);
  color: var(--pared-fg);
  text-wrap: balance;
}
.pared h2, .pared .pared-h2 {
  font-family: var(--pared-font-serif);
  font-size: var(--pared-h2-size);
  font-weight: var(--pared-h2-weight);
  line-height: var(--pared-h2-lh);
  color: var(--pared-fg);
  margin: 0 0 var(--pared-space-4);
}
.pared h3, .pared .pared-h3 {
  font-family: var(--pared-font-serif);
  font-size: var(--pared-h3-size);
  font-weight: var(--pared-h3-weight);
  line-height: var(--pared-h3-lh);
  color: var(--pared-fg);
  margin: 0 0 var(--pared-space-3);
}
.pared h4, .pared .pared-subhead {
  font-family: var(--pared-font-sans);
  font-size: var(--pared-subhead-size);
  font-weight: var(--pared-subhead-weight);
  line-height: var(--pared-subhead-lh);
  color: var(--pared-fg);
  margin: 0 0 var(--pared-space-3);
}
.pared p, .pared .pared-body {
  font-family: var(--pared-font-sans);
  font-size: var(--pared-body-size);
  font-weight: var(--pared-body-weight);
  line-height: var(--pared-body-lh);
  color: var(--pared-fg);
  max-width: 68ch;
}
.pared small, .pared .pared-caption {
  font-family: var(--pared-font-sans);
  font-size: 13px;
  line-height: 1.5;
  color: var(--pared-fg-muted);
}
.pared .pared-label, .pared .pared-kicker {
  font-family: var(--pared-font-sans);
  font-size: var(--pared-label-size);
  font-weight: var(--pared-label-weight);
  line-height: var(--pared-label-lh);
  letter-spacing: var(--pared-label-tracking);
  text-transform: uppercase;
  color: var(--pared-fg-accent);
}
.pared .pared-script {
  font-family: var(--pared-font-script);
  font-size: var(--pared-script-size);
  font-weight: var(--pared-script-weight);
  line-height: var(--pared-script-lh);
  color: var(--pared-fg);
}
.pared a {
  color: var(--pared-stone);
  text-decoration: underline;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 3px;
  transition: color var(--pared-dur-fast) var(--pared-ease);
}
.pared a:hover { color: var(--pared-raw-umber); }
.pared hr, .pared .pared-rule {
  border: 0;
  border-top: 0.5px solid var(--pared-rule);
  margin: var(--pared-space-6) 0;
}
.pared .pared-rule--strong { border-top: 0.5px solid var(--pared-rule-strong); }

.pared .pared-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-family: var(--pared-font-sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.pared .pared-circle--1 { background: var(--pared-grad-1); color: var(--pared-raw-umber); }
.pared .pared-circle--2 { background: var(--pared-grad-2); color: var(--pared-raw-umber); }
.pared .pared-circle--3 { background: var(--pared-grad-3); color: var(--pared-near-white); }
.pared .pared-circle--4 { background: var(--pared-grad-4); color: var(--pared-near-white); }
.pared .pared-circle--5 { background: var(--pared-grad-5); color: var(--pared-near-white); }
.pared .pared-circle--6 { background: var(--pared-grad-6); color: var(--pared-near-white); }

.pared .pared-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--pared-space-2);
  background: var(--pared-cta-bg);
  color: var(--pared-cta-fg);
  font-family: var(--pared-font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 24px;
  border: 0;
  border-radius: var(--pared-radius-md);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--pared-dur-base) var(--pared-ease);
}
.pared .pared-btn:hover { background: var(--pared-cta-bg-hover); }
.pared .pared-btn:active { background: var(--pared-raw-umber); }
.pared .pared-btn--ghost {
  background: transparent;
  color: var(--pared-raw-umber);
  border: 0.5px solid var(--pared-raw-umber);
}
.pared .pared-btn--ghost:hover {
  background: var(--pared-raw-umber);
  color: var(--pared-near-white);
}

/* ─────────────────────────────────────────────────────────
   NAV — fixed top, blurs on scroll
   ───────────────────────────────────────────────────────── */
.p-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 22px var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.p-nav.scrolled {
  background: rgba(242,240,232,0.96);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--rule);
}
.p-nav-brand { display: flex; align-items: center; gap: 11px; color: var(--umber); }
.p-nav-wordmark { font-family: var(--serif); font-size: 15px; font-weight: 400; letter-spacing: 0.06em; }
.p-nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.p-nav-links > li > a, .p-nav-links > li > span {
  font-size: 11px; font-weight: 500; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--umber); opacity: 0.75;
  transition: opacity 0.2s; cursor: pointer;
}
.p-nav-links > li > a:hover, .p-nav-links > li > span:hover { opacity: 1; }
.p-nav-drop { position: relative; }
.p-nav-drop-menu {
  position: absolute; top: calc(100% + 16px); left: -20px;
  background: var(--off-white); border: 1px solid var(--rule);
  list-style: none; min-width: 230px; padding: 8px 0;
  opacity: 0; visibility: hidden;
  transition: opacity 0.18s ease, visibility 0.18s ease; pointer-events: none;
}
.p-nav-drop:hover .p-nav-drop-menu {
  opacity: 1; visibility: visible; pointer-events: all;
}
.p-nav-drop::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 16px;
  pointer-events: none;
}
.p-nav-drop:hover::before { pointer-events: all; }

.p-nav-drop-menu li a {
  display: block; padding: 11px 22px;
  font-size: 12px; font-weight: 400; letter-spacing: 0.07em;
  color: var(--umber); opacity: 0.8;
  transition: opacity 0.15s, background 0.15s;
}
.p-nav-drop-menu li a:hover { opacity: 1; background: var(--cream); }
.p-nav-cta {
  font-size: 11px; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase;
  padding: 11px 22px; background: var(--umber); color: var(--off-white);
  border-radius: 2px; transition: background 0.2s;
}
.p-nav-cta:hover { background: var(--charcoal); }
@media (max-width: 860px) { .p-nav-links { display: none; } }

/* ─────────────────────────────────────────────────────────
   TICKER — looping marquee
   ───────────────────────────────────────────────────────── */
.p-ticker { overflow: hidden; background: var(--charcoal); color: var(--off-white); padding: 13px 0; white-space: nowrap; }
.p-ticker-inner { display: inline-flex; animation: ticker 90s linear infinite; }
.p-ticker-inner:hover { animation-play-state: paused; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.p-ticker-item {
  display: inline-flex; align-items: center; gap: 28px; padding: 0 28px;
  font-size: 10.5px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase;
}
.p-ticker-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--stone); flex-shrink: 0; }

/* ─────────────────────────────────────────────────────────
   BUTTONS — short-class variants used across pages
   ───────────────────────────────────────────────────────── */
.btn {
  display: inline-block; font-family: var(--sans);
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 14px 28px; background: var(--umber); color: var(--off-white);
  border-radius: 2px; transition: background 0.2s; border: none; cursor: pointer;
}
.btn:hover { background: var(--charcoal); }
.btn-outline { background: transparent; border: 1px solid var(--umber); color: var(--umber); }
.btn-outline:hover { background: var(--umber); color: var(--off-white); }
.btn-stone { background: var(--stone); color: var(--off-white); border: 1px solid var(--stone); }
.btn-stone:hover { background: var(--umber2); border-color: var(--umber2); }
.btn-light { background: var(--off-white); color: var(--umber); }
.btn-light:hover { background: var(--cream); }

/* ─────────────────────────────────────────────────────────
   LAYOUT
   ───────────────────────────────────────────────────────── */
.p-section { max-width: var(--max); margin: 0 auto; padding: 110px var(--pad); }
.p-section-sm { max-width: var(--max); margin: 0 auto; padding: 70px var(--pad); }
.p-rule { height: 1px; background: var(--rule); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.two-col.flip { direction: rtl; }
.two-col.flip > * { direction: ltr; }
@media (max-width: 800px) {
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .two-col.flip { direction: ltr; }
}

/* ─────────────────────────────────────────────────────────
   LABELS / NUMBERS
   ───────────────────────────────────────────────────────── */
.sec-label {
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--stone);
  margin-bottom: 18px; display: flex; align-items: center; gap: 14px;
}
.sec-label::before {
  content: ''; display: block; width: 28px; height: 1px;
  background: var(--stone); flex-shrink: 0;
}
.sec-num {
  font-family: var(--serif); font-size: clamp(72px, 11vw, 150px);
  font-weight: 300; color: var(--rule); line-height: 1;
  margin-bottom: -12px; user-select: none;
}

/* ─────────────────────────────────────────────────────────
   IMAGE PLACEHOLDER (parallax frame)
   ───────────────────────────────────────────────────────── */
.p-img { overflow: hidden; border-radius: 1px; }
.p-img-inner { width: 100%; height: 140%; margin-top: -20%; display: flex; align-items: center; justify-content: center; }

/* ─────────────────────────────────────────────────────────
   CARDS
   ───────────────────────────────────────────────────────── */
.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
@media (max-width: 900px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .card-grid { grid-template-columns: 1fr; } }
.p-card { background: var(--off-white); overflow: hidden; }
.p-card-body { padding: 26px 28px 32px; }
.p-card-label { font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone); margin-bottom: 13px; }
.p-card-title { font-family: var(--serif); font-size: 20px; font-weight: 400; line-height: 1.35; margin-bottom: 12px; }
.p-card-body p { font-size: 13.5px; color: var(--umber2); line-height: 1.75; }

/* ─────────────────────────────────────────────────────────
   QUOTE SECTION
   ───────────────────────────────────────────────────────── */
.p-quote { background: var(--charcoal); color: var(--off-white); text-align: center; padding: 110px var(--pad); }
.p-quote blockquote {
  font-family: var(--serif); font-size: clamp(26px, 4vw, 52px);
  font-weight: 300; font-style: italic; max-width: 880px;
  margin: 0 auto; line-height: 1.45;
}

/* ─────────────────────────────────────────────────────────
   PAGE HERO
   ───────────────────────────────────────────────────────── */
.p-page-hero { padding-top: 80px; background: var(--charcoal); border-bottom: 1px solid rgba(255,255,255,0.08); }
.p-page-hero-inner { max-width: var(--max); margin: 0 auto; padding: 88px var(--pad) 80px; }
.p-page-hero h1 { font-size: clamp(36px, 6vw, 80px); font-weight: 300; line-height: 1.08; max-width: 820px; margin-bottom: 26px; color: var(--off-white); }
.p-page-hero p { font-size: 18px; font-weight: 300; color: rgba(253,252,247,0.6); max-width: 560px; line-height: 1.8; }
.p-page-hero .sec-label { color: var(--stone); }
.p-page-hero .sec-label::before { background: var(--stone); }

/* ─────────────────────────────────────────────────────────
   STAT GRID
   ───────────────────────────────────────────────────────── */
.stat-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); }
.stat-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); }
@media (max-width: 700px) { .stat-grid-3 { grid-template-columns: 1fr; } .stat-grid-2 { grid-template-columns: 1fr; } }
.stat-cell { padding: 56px 40px; border-top: 1px solid var(--rule); }
.stat-cell + .stat-cell { border-left: 1px solid var(--rule); }
@media (max-width: 700px) { .stat-cell + .stat-cell { border-left: none; } }
.stat-num { font-family: var(--serif); font-size: clamp(40px, 5vw, 66px); font-weight: 300; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 10.5px; font-weight: 500; letter-spacing: 0.17em; text-transform: uppercase; color: var(--stone); margin-bottom: 13px; }
.stat-desc { font-size: 14px; color: var(--umber2); line-height: 1.75; max-width: 260px; }

/* ─────────────────────────────────────────────────────────
   PROCESS STEPS
   ───────────────────────────────────────────────────────── */
.process-step { display: grid; grid-template-columns: 68px 1fr; gap: 28px; padding: 40px 0; border-top: 1px solid var(--rule); align-items: start; }
.process-step-num { font-family: var(--serif); font-size: 46px; font-weight: 300; color: var(--rule); line-height: 1; }
.process-step h3 { font-size: 21px; font-weight: 400; margin-bottom: 11px; }
.process-step p { font-size: 15px; color: var(--umber2); line-height: 1.8; }

/* ─────────────────────────────────────────────────────────
   FILTER TABS (e.g., portfolio filters)
   ───────────────────────────────────────────────────────── */
.filter-tabs { display: flex; border-bottom: 1px solid var(--rule); margin-bottom: 56px; overflow-x: auto; }
.filter-tab {
  font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 14px 22px; color: var(--umber2);
  border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s;
  white-space: nowrap; background: none; border-top: none; border-left: none; border-right: none; cursor: pointer;
}
.filter-tab.active { color: var(--umber); border-bottom-color: var(--umber); }
.filter-tab:hover { color: var(--umber); }

/* ─────────────────────────────────────────────────────────
   SERVICE TILE GRID
   ───────────────────────────────────────────────────────── */
.tile-grid { display: grid; gap: 2px; background: var(--rule); }
.tile-grid-3 { grid-template-columns: repeat(3,1fr); }
.tile-grid-2 { grid-template-columns: repeat(2,1fr); }
@media (max-width: 800px) { .tile-grid-3, .tile-grid-2 { grid-template-columns: 1fr; } }
.tile { background: var(--off-white); padding: 52px 44px; transition: background 0.2s; cursor: pointer; }
.tile:hover { background: var(--cream); }
.tile h3 { font-family: var(--serif); font-size: 24px; font-weight: 400; margin-bottom: 16px; line-height: 1.3; }
.tile p { font-size: 14.5px; color: var(--umber2); line-height: 1.8; margin-bottom: 24px; }
.tile-arrow { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); }

/* ─────────────────────────────────────────────────────────
   FORM
   ───────────────────────────────────────────────────────── */
.form-field { margin-bottom: 28px; }
.form-field label { display: block; font-size: 10.5px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone); margin-bottom: 10px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid var(--rule); padding: 11px 0;
  font-family: var(--sans); font-size: 15px; font-weight: 300; color: var(--umber);
  outline: none; transition: border-color 0.2s;
  -webkit-appearance: none; appearance: none;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-bottom-color: var(--umber); }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field select { background: transparent; border-radius: 0; }

/* ─────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────── */
.p-footer { background: var(--charcoal); color: var(--off-white); padding: 84px var(--pad) 48px; }
.p-footer-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr repeat(7, 1fr);
  gap: 48px; margin-bottom: 64px; align-items: start;
}
@media (max-width: 960px) { .p-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .p-footer-grid { grid-template-columns: 1fr; } }
.p-footer-col h4 {
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--stone); margin-bottom: 18px;
}
.p-footer-col ul { list-style: none; }
.p-footer-col ul li { margin-bottom: 9px; }
.p-footer-col ul li a { font-size: 13px; font-weight: 300; color: rgba(253,252,247,0.55); transition: color 0.2s; }
.p-footer-col ul li a:hover { color: var(--off-white); }

/* Footer accordion */
.p-footer-acc { border-top: 1px solid rgba(255,255,255,0.08); }
.p-footer-acc:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.p-footer-acc-hd {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; padding: 14px 0;
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone);
  user-select: none; background: none; border: none; width: 100%; text-align: left;
}
.p-footer-acc-hd:hover { color: rgba(253,252,247,0.75); }
.p-footer-acc-chevron { width: 12px; height: 12px; flex-shrink: 0; transition: transform 0.22s cubic-bezier(0.22,0.61,0.36,1); }
.p-footer-acc-body { overflow: hidden; transition: max-height 0.28s cubic-bezier(0.22,0.61,0.36,1); }
.p-footer-acc-body ul { list-style: none; padding-bottom: 14px; }
.p-footer-acc-body ul li { margin-bottom: 9px; }
.p-footer-acc-body ul li a { font-size: 13px; font-weight: 300; color: rgba(253,252,247,0.55); transition: color 0.2s; }
.p-footer-acc-body ul li a:hover { color: var(--off-white); }

.p-footer-bottom {
  max-width: var(--max); margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.09); padding-top: 30px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
}
.p-footer-bottom p { font-size: 11.5px; color: rgba(253,252,247,0.35); font-weight: 300; }

/* ─────────────────────────────────────────────────────────
   COMPARISON SLIDER
   ───────────────────────────────────────────────────────── */
.comp-slider { position: relative; overflow: hidden; cursor: ew-resize; user-select: none; }
.comp-handle {
  position: absolute; top: 0; height: 100%; width: 2px;
  background: rgba(253,252,247,0.9);
  display: flex; align-items: center; justify-content: center;
  transform: translateX(-50%);
}
.comp-handle-circle {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--off-white); border: 1.5px solid rgba(75,54,33,0.2);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 14px rgba(0,0,0,0.18);
  font-size: 13px; color: var(--umber);
}

/* ─────────────────────────────────────────────────────────
   SLIDING DOOR (home page entry reveal)
   ───────────────────────────────────────────────────────── */
.p-door-wrap { position: fixed; inset: 0; z-index: 500; display: flex; pointer-events: none; }
.p-door-left, .p-door-right { flex: 0 0 50%; height: 100%; background: var(--charcoal); transition: transform 1.2s cubic-bezier(0.7, 0, 0.3, 1); }
.p-door-wrap.open .p-door-left { transform: translateX(-100%); }
.p-door-wrap.open .p-door-right { transform: translateX(100%); }
.p-door-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); color: rgba(253,252,247,0.35); }

/* ─────────────────────────────────────────────────────────
   HERO (full-viewport home/staging hero)
   ───────────────────────────────────────────────────────── */
.p-hero { height: 100vh; min-height: 640px; position: relative; overflow: hidden; display: flex; align-items: flex-end; }
.p-hero-content { position: relative; z-index: 2; max-width: var(--max); margin: 0 auto; width: 100%; padding: 0 var(--pad) 88px; }
.p-hero h1 { font-family: var(--serif); font-size: clamp(58px, 11vw, 136px); font-weight: 300; color: var(--off-white); line-height: 0.95; margin-bottom: 30px; letter-spacing: -0.01em; }
.p-hero-sub { font-size: clamp(15px, 2vw, 18px); font-weight: 300; color: rgba(253,252,247,0.72); margin-bottom: 44px; max-width: 440px; line-height: 1.75; }
.p-hero-location { font-size: 11px; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(253,252,247,0.5); margin-bottom: 22px; }
.p-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─────────────────────────────────────────────────────────
   INLINE LINK
   ───────────────────────────────────────────────────────── */
.p-link { color: var(--stone); border-bottom: 1px solid var(--stone); transition: color 0.2s, border-color 0.2s; }
.p-link:hover { color: var(--umber); border-color: var(--umber); }

/* ─────────────────────────────────────────────────────────
   CREDENTIAL ROW (about page credentials)
   ───────────────────────────────────────────────────────── */
.cred-row { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--rule); }
.cred-cell { padding: 56px 40px; border-right: 1px solid var(--rule); }
.cred-cell:last-child { border-right: none; }
@media (max-width: 700px) { .cred-row { grid-template-columns: 1fr; } .cred-cell { border-right: none; border-bottom: 1px solid var(--rule); padding: 40px 0; } }
.cred-num { font-family: var(--serif); font-size: clamp(38px, 5vw, 62px); font-weight: 300; line-height: 1; margin-bottom: 8px; }
.cred-label { font-size: 10.5px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone); margin-bottom: 12px; }
.cred-desc { font-size: 14px; color: var(--umber2); line-height: 1.75; max-width: 250px; }

/* ─────────────────────────────────────────────────────────
   VISUALLY-HIDDEN UTILITY (used for hidden phone, LLM blocks)
   ───────────────────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}


/* =========================================================== */
/* PAGE-SPECIFIC CSS — restored from static HTML inline styles */
/* =========================================================== */


/* ===== Page 171 — Pay-at-Close ===== */

    body.page-id-171 *, body.page-id-171 *::before, body.page-id-171 *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --cream:     #F2F0E8;
      --off-white: #FDFCF7;
      --surface:   #F6F4F1;
      --umber:     #4B3621;
      --umber2:    #635147;
      --stone:     #6F6B60;
      --charcoal:  #312F28;
      --mid:       #C4BDB1;
      --rule:      #DDD9D1;
      --serif:     'Noto Serif Display', Georgia, serif;
      --sans:      'Open Sans', Montserrat, sans-serif;
      --max:       1320px;
      --pad:       clamp(20px, 5vw, 80px);
    }
    html { scroll-behavior: smooth; }
    body.page-id-171 { background: var(--charcoal); color: var(--umber); font-family: var(--sans); font-weight: 300; font-size: 16px; line-height: 1.75; -webkit-font-smoothing: antialiased; }
    body.page-id-171 h1, body.page-id-171 h2, body.page-id-171 h3, body.page-id-171 h4 { font-family: var(--serif); font-weight: 400; line-height: 1.15; color: var(--umber); }
    body.page-id-171 a { color: inherit; text-decoration: none; }
    body.page-id-171 p { margin-bottom: 1rem; }
    body.page-id-171 strong { font-weight: 600; color: var(--umber); }

    /* NAV */
    body.page-id-171 .site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; padding: 20px var(--pad); display: flex; align-items: center; justify-content: space-between; background: rgba(242,240,232,0.96); backdrop-filter: blur(16px); border-bottom: 1px solid var(--rule); }
    body.page-id-171 .site-nav-brand { font-family: var(--serif); font-size: 15px; font-weight: 400; letter-spacing: 0.06em; color: var(--umber); }
    body.page-id-171 .site-nav-back { font-size: 11px; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; color: var(--stone); transition: color 0.2s; }
    body.page-id-171 .site-nav-back:hover { color: var(--umber); }

    /* HERO */
    body.page-id-171 .hero { padding-top: 80px; min-height: 70vh; background: var(--charcoal); display: flex; align-items: flex-end; }
    body.page-id-171 .hero-inner { max-width: var(--max); margin: 0 auto; padding: 80px var(--pad); width: 100%; }
    body.page-id-171 .hero-eyebrow { font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone); margin-bottom: 20px; display: flex; align-items: center; gap: 14px; }
    body.page-id-171 .hero-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--stone); }
    body.page-id-171 .hero h1 { font-family: var(--serif); font-size: clamp(40px, 7vw, 90px); font-weight: 300; color: var(--off-white); line-height: 1.0; margin-bottom: 24px; }
    body.page-id-171 .hero-sub { font-size: clamp(16px, 2vw, 20px); color: rgba(253,252,247,0.65); max-width: 580px; line-height: 1.8; margin-bottom: 48px; font-weight: 300; }
    body.page-id-171 .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
    body.page-id-171 .btn { display: inline-block; font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; padding: 15px 32px; border-radius: 2px; cursor: pointer; transition: all 0.2s; border: none; }
    body.page-id-171 .btn-primary { background: var(--off-white); color: var(--umber); }
    body.page-id-171 .btn-primary:hover { background: var(--cream); }
    body.page-id-171 .btn-outline { background: transparent; border: 1px solid rgba(253,252,247,0.4); color: var(--off-white); }
    body.page-id-171 .btn-outline:hover { background: rgba(253,252,247,0.1); }
    body.page-id-171 .btn-umber { background: var(--umber); color: var(--off-white); }
    body.page-id-171 .btn-umber:hover { background: var(--charcoal); color: var(--off-white); }
    body.page-id-171 .btn-mid { background: var(--mid); color: var(--umber); border: none; }
    body.page-id-171 .btn-mid:hover { background: #B5AEA2; }

    /* SECTION LAYOUT */
    body.page-id-171 .section { max-width: var(--max); margin: 0 auto; padding: 100px var(--pad); }
    body.page-id-171 .section-sm { max-width: var(--max); margin: 0 auto; padding: 60px var(--pad); }
    body.page-id-171 .rule { height: 1px; background: var(--rule); }
    body.page-id-171 .sec-label { font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone); margin-bottom: 18px; display: flex; align-items: center; gap: 14px; }
    body.page-id-171 .sec-label::before { content: ''; display: block; width: 28px; height: 1px; background: var(--stone); }

    /* SECTION ANCHOR HEADERS */
    body.page-id-171 .section-anchor { scroll-margin-top: 100px; }

    /* TWO COL */
    body.page-id-171 .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
    @media (max-width: 860px) { body.page-id-171 .two-col { grid-template-columns: 1fr; gap: 48px; } }

    /* STATS GRID */
    body.page-id-171 .stat-row { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--rule); }
    @media (max-width: 700px) { body.page-id-171 .stat-row { grid-template-columns: 1fr; } }
    body.page-id-171 .stat-cell { padding: clamp(36px,4vw,56px) clamp(20px,3vw,40px); border-right: 1px solid var(--rule); }
    body.page-id-171 .stat-cell:last-child { border-right: none; }
    body.page-id-171 .stat-num { font-family: var(--serif); font-size: clamp(36px,5vw,60px); font-weight: 300; line-height: 1; margin-bottom: 8px; }
    body.page-id-171 .stat-label { font-size: 10.5px; font-weight: 500; letter-spacing: 0.17em; text-transform: uppercase; color: var(--stone); margin-bottom: 10px; }
    body.page-id-171 .stat-desc { font-size: 14px; color: var(--umber2); line-height: 1.75; }

    /* STICKY SECTION NAV */
    body.page-id-171 .section-nav { position: sticky; top: 61px; z-index: 150; background: var(--charcoal); border-bottom: 1px solid rgba(255,255,255,0.08); overflow-x: auto; white-space: nowrap; }
    body.page-id-171 .section-nav-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); display: flex; align-items: stretch; gap: 0; }
    body.page-id-171 .section-nav-primary { display: flex; align-items: center; gap: 0; border-right: 1px solid rgba(255,255,255,0.12); padding-right: 24px; margin-right: 8px; flex-shrink: 0; }
    body.page-id-171 .section-nav-primary a { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(253,252,247,0.55); padding: 16px 14px; display: block; transition: color 0.2s; border-bottom: 2px solid transparent; }
    body.page-id-171 .section-nav-primary a:hover { color: var(--off-white); }
    body.page-id-171 .section-nav-primary a.active { color: var(--off-white); border-bottom-color: var(--mid); }
    body.page-id-171 .section-nav-sub { display: flex; align-items: center; gap: 0; }
    body.page-id-171 .section-nav-sub a { font-size: 10.5px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(253,252,247,0.45); padding: 16px 12px; display: none; transition: color 0.2s; border-bottom: 2px solid transparent; }
    body.page-id-171 .section-nav-sub a:hover { color: rgba(253,252,247,0.8); }
    body.page-id-171 .section-nav-sub a.active { color: var(--off-white); border-bottom-color: var(--stone); }
    body.page-id-171 .section-nav-sub a.show { display: block; }

    body.page-id-171 .float-nav { position: sticky; top: 80px; width: 220px; flex-shrink: 0; }
    body.page-id-171 .float-nav-label { font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); margin-bottom: 16px; }
    body.page-id-171 .float-nav a { display: block; font-size: 13px; font-weight: 300; color: var(--umber2); padding: 8px 0; border-left: 2px solid transparent; padding-left: 14px; transition: all 0.2s; line-height: 1.4; }
    body.page-id-171 .float-nav a:hover, body.page-id-171 .float-nav a.active { color: var(--umber); border-left-color: var(--umber); font-weight: 400; }
    body.page-id-171 .float-nav-divider { height: 1px; background: var(--rule); margin: 12px 0; }
    body.page-id-171 .content-with-nav { display: flex; gap: 64px; align-items: flex-start; }
    body.page-id-171 .content-main { flex: 1; min-width: 0; }
    @media (max-width: 1000px) { body.page-id-171 .float-nav { display: none; } }

    /* ACCORDION */
    body.page-id-171 .accordion { border-top: 1px solid var(--rule); }
    body.page-id-171 .acc-item { border-bottom: 1px solid var(--rule); }
    body.page-id-171 .acc-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 24px 0; background: none; border: none; cursor: pointer; text-align: left; gap: 20px; font-family: var(--sans); }
    body.page-id-171 .acc-title { font-family: var(--serif); font-size: clamp(16px,1.8vw,21px); font-weight: 400; color: var(--umber); line-height: 1.2; }
    body.page-id-171 .acc-icon { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.3s; }
    body.page-id-171 .acc-icon.open { transform: rotate(45deg); }
    body.page-id-171 .acc-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s cubic-bezier(0.22,0.61,0.36,1); }
    body.page-id-171 .acc-body.open { grid-template-rows: 1fr; }
    body.page-id-171 .acc-inner { overflow: hidden; }
    body.page-id-171 .acc-content { padding-bottom: 28px; font-size: 15px; color: var(--umber2); line-height: 1.85; }
    body.page-id-171 .acc-content p { margin-bottom: 12px; }
    body.page-id-171 .acc-content p:last-child { margin-bottom: 0; }

    /* VIDEO */
    body.page-id-171 .video-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 2px; background: var(--charcoal); }
    body.page-id-171 .video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

    /* CALLOUT */
    body.page-id-171 .callout { background: var(--mid); padding: clamp(40px,5vw,64px) var(--pad); }
    body.page-id-171 .callout-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
    body.page-id-171 .callout-dark { background: var(--charcoal); }

    /* PROCESS STEPS */
    body.page-id-171 .process-steps { display: flex; flex-direction: column; }
    body.page-id-171 .process-step { display: grid; grid-template-columns: 48px 1fr; gap: 24px; padding: 32px 0; border-top: 1px solid var(--rule); align-items: start; }
    body.page-id-171 .process-step-num { font-family: var(--serif); font-size: 40px; font-weight: 300; color: var(--rule); line-height: 1; }
    body.page-id-171 .process-step h3 { font-size: 18px; font-weight: 400; margin-bottom: 8px; }
    body.page-id-171 .process-step p { font-size: 14px; color: var(--umber2); line-height: 1.8; margin: 0; }

    /* CHECK LIST */
    body.page-id-171 .check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    body.page-id-171 .check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--umber2); line-height: 1.7; }
    body.page-id-171 .check-list li::before { content: ''; display: block; width: 5px; height: 5px; border-radius: 50%; background: var(--stone); margin-top: 8px; flex-shrink: 0; }

    /* SECTION DIVIDER */
    body.page-id-171 .section-divider { background: var(--charcoal); padding: 56px var(--pad); text-align: center; }
    body.page-id-171 .section-divider h2 { font-family: var(--serif); font-size: clamp(36px, 6vw, 78px); font-weight: 300; color: var(--off-white); line-height: 1.1; }

    /* NOTABLE BADGE */
    body.page-id-171 .notable-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--off-white); border: 1px solid var(--rule); padding: 10px 18px; border-radius: 2px; font-size: 12px; font-weight: 500; color: var(--umber2); letter-spacing: 0.06em; }

    /* COMPARISON TABLE */
    body.page-id-171 .comp-table { width: 100%; border-collapse: collapse; font-size: 14px; }
    body.page-id-171 .comp-table th { padding: 14px 20px; text-align: left; font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--off-white); background: var(--umber); font-family: var(--sans); }
    body.page-id-171 .comp-table td { padding: 16px 20px; border-bottom: 1px solid var(--rule); color: var(--umber2); vertical-align: top; }
    body.page-id-171 .comp-table tbody tr:nth-child(odd) { background: var(--surface); }
    body.page-id-171 .comp-table tbody tr:nth-child(even) { background: var(--off-white); }
    body.page-id-171 .comp-table .row-label { font-weight: 500; color: var(--umber); }
    body.page-id-171 .comp-table .yes { color: #4a7a4a; font-weight: 500; }
    body.page-id-171 .comp-table .no { color: var(--stone); }

    /* FOOTER */
    body.page-id-171 footer { background: var(--charcoal); color: var(--off-white); padding: 84px var(--pad) 48px; }
    body.page-id-171 .footer-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 2fr repeat(3,1fr); gap: 48px; margin-bottom: 64px; }
    @media (max-width: 860px) { body.page-id-171 .footer-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 540px) { body.page-id-171 .footer-grid { grid-template-columns: 1fr; } }
    body.page-id-171 .footer-col h4 { font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone); margin-bottom: 18px; font-family: var(--sans); }
    body.page-id-171 .footer-col ul { list-style: none; }
    body.page-id-171 .footer-col ul li { margin-bottom: 9px; }
    body.page-id-171 .footer-col ul li a { font-size: 13px; font-weight: 300; color: rgba(253,252,247,0.55); transition: color 0.2s; }
    body.page-id-171 .footer-col ul li a:hover { color: var(--off-white); }
    body.page-id-171 .footer-bottom { max-width: var(--max); margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.09); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
    body.page-id-171 .footer-bottom p { font-size: 11.5px; color: rgba(253,252,247,0.35); font-weight: 300; }

    /* FADE IN */
    body.page-id-171 .fade-in { opacity: 0; transform: translateY(16px); transition: opacity 0.8s ease, transform 0.8s ease; }
    body.page-id-171 .fade-in.visible { opacity: 1; transform: translateY(0); }
  

/* ===== END STYLE BLOCK ===== */

@media(max-width:960px){body.page-id-171 .footer-grid-resp {grid-template-columns:1fr 1fr!important;}} @media(max-width:540px){body.page-id-171 .footer-grid-resp {grid-template-columns:1fr!important;}}


/* ===== Page 172 — Methodology ===== */

    body.page-id-172 *, body.page-id-172 *::before, body.page-id-172 *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --cream:     #F2F0E8;
      --off-white: #FDFCF7;
      --surface:   #F6F4F1;
      --umber:     #4B3621;
      --umber2:    #635147;
      --stone:     #6F6B60;
      --charcoal:  #312F28;
      --mid:       #C4BDB1;
      --rule:      #DDD9D1;
      --serif:     'Noto Serif Display', 'Playfair Display', Georgia, serif;
      --sans:      'Open Sans', Montserrat, sans-serif;
      --max:       860px;
      --pad:       clamp(20px, 5vw, 60px);
    }
    html { scroll-behavior: smooth; }
    body.page-id-172 { background: var(--off-white); color: var(--umber); font-family: var(--sans); font-weight: 300; font-size: 16px; line-height: 1.75; -webkit-font-smoothing: antialiased; }
    body.page-id-172 h1, body.page-id-172 h2, body.page-id-172 h3, body.page-id-172 h4 { font-family: var(--serif); font-weight: 400; line-height: 1.2; color: var(--umber); }
    body.page-id-172 a { color: var(--stone); text-decoration: none; border-bottom: 1px solid var(--stone); transition: color 0.2s; }
    body.page-id-172 a:hover { color: var(--umber); border-color: var(--umber); }
    body.page-id-172 p { margin-bottom: 1rem; }
    body.page-id-172 strong { font-weight: 600; color: var(--umber); }

    /* ── HEADER ── */
    body.page-id-172 .site-header { background: var(--charcoal); padding: 4rem var(--pad) 3.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
    body.page-id-172 .site-header .eyebrow { font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone); margin-bottom: 1rem; display: flex; align-items: center; gap: 12px; }
    body.page-id-172 .site-header .eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--stone); }
    body.page-id-172 .site-header h1 { font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 300; color: var(--off-white); line-height: 1.1; margin-bottom: 1rem; }
    body.page-id-172 .site-header .sub { font-size: 1rem; font-weight: 300; color: rgba(253,252,247,0.65); max-width: 600px; line-height: 1.8; margin-bottom: 1.5rem; }
    body.page-id-172 .updated-tag { display: inline-block; background: rgba(253,252,247,0.1); color: rgba(253,252,247,0.5); font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.3rem 0.85rem; border-radius: 2rem; border: 1px solid rgba(255,255,255,0.12); }

    /* ── STICKY NAV ── */
    body.page-id-172 .toc { background: var(--cream); border-bottom: 1px solid var(--rule); position: sticky; top: 0; z-index: 50; }
    body.page-id-172 .toc-inner { max-width: var(--max); margin: 0 auto; display: flex; flex-wrap: wrap; padding: 0 var(--pad); }
    body.page-id-172 .toc a { display: block; padding: 0.8rem 1rem; font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); border-bottom: 2px solid transparent; text-decoration: none; transition: color 0.2s, border-color 0.2s; white-space: nowrap; }
    body.page-id-172 .toc a:hover { color: var(--umber); border-bottom-color: var(--umber); }

    /* ── LAYOUT ── */
    body.page-id-172 .wrap { max-width: var(--max); margin: 0 auto; padding: 4rem var(--pad) 6rem; }
    body.page-id-172 section { margin-bottom: 5rem; }
    body.page-id-172 .section-title { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 300; padding-bottom: 0.65rem; border-bottom: 1px solid var(--rule); margin-bottom: 1.5rem; }
    body.page-id-172 .section-lead { font-size: 1.02rem; color: var(--umber2); margin-bottom: 1.8rem; max-width: 680px; }
    body.page-id-172 h3 { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; margin: 2rem 0 0.65rem; }

    /* ── STAT CARDS ── */
    body.page-id-172 .stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1px; background: var(--rule); margin: 2rem 0; }
    body.page-id-172 .stat-card { background: var(--off-white); padding: 1.5rem 1.25rem; text-align: center; }
    body.page-id-172 .stat-number { font-family: var(--serif); font-size: 2.4rem; font-weight: 300; color: var(--umber); line-height: 1; }
    body.page-id-172 .stat-label { font-size: 12px; font-weight: 500; color: var(--umber2); margin-top: 0.5rem; line-height: 1.5; }
    body.page-id-172 .stat-source { font-size: 10px; color: var(--stone); margin-top: 0.4rem; letter-spacing: 0.04em; }

    /* ── CALLOUT ── */
    body.page-id-172 .callout { background: var(--cream); border-left: 3px solid var(--stone); padding: 1.1rem 1.5rem; margin: 1.5rem 0; font-size: 0.95rem; }
    body.page-id-172 .callout p:last-child { margin-bottom: 0; }

    /* ── TABLES ── */
    body.page-id-172 .source-table, body.page-id-172 .band-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 13px; }
    body.page-id-172 .source-table thead, body.page-id-172 .band-table thead { background: var(--umber); color: var(--off-white); }
    body.page-id-172 .source-table th, body.page-id-172 .band-table th { padding: 0.65rem 1rem; text-align: left; font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--sans); }
    body.page-id-172 .source-table td, body.page-id-172 .band-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--rule); vertical-align: top; color: var(--umber2); }
    body.page-id-172 .source-table tbody tr:nth-child(odd), body.page-id-172 .band-table tbody tr:nth-child(odd) { background: var(--surface); }
    body.page-id-172 .source-table tbody tr:nth-child(even), body.page-id-172 .band-table tbody tr:nth-child(even) { background: var(--off-white); }
    body.page-id-172 .src-name { font-weight: 600; color: var(--umber); display: block; margin-bottom: 2px; }
    body.page-id-172 .cadence { display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: 0.08em; padding: 0.15rem 0.55rem; border-radius: 2rem; }
    body.page-id-172 .cadence.q { background: var(--cream); color: var(--stone); }
    body.page-id-172 .cadence.a { background: var(--mid); color: var(--umber); }
    body.page-id-172 .cadence.o { background: var(--umber); color: var(--off-white); }
    body.page-id-172 .band-name { font-family: var(--serif); font-weight: 600; color: var(--umber); }

    /* ── ZONE GRID ── */
    body.page-id-172 .zone-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1px; background: var(--rule); margin: 2rem 0; }
    body.page-id-172 .zone-card { background: var(--off-white); padding: 1.1rem 1.25rem; }
    body.page-id-172 .zone-badge { display: inline-block; font-size: 9px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.15rem 0.6rem; border-radius: 2rem; margin-bottom: 0.5rem; }
    body.page-id-172 .zone-badge.eb { background: var(--cream); color: var(--stone); }
    body.page-id-172 .zone-badge.wb { background: var(--mid); color: var(--umber); }
    body.page-id-172 .zone-badge.isl { background: var(--umber); color: var(--off-white); }
    body.page-id-172 .zone-card h4 { font-family: var(--serif); font-size: 1rem; font-weight: 400; color: var(--umber); margin-bottom: 0.35rem; }
    body.page-id-172 .zone-zips { font-size: 12px; color: var(--umber2); line-height: 1.7; }

    /* ── CTA ── */
    body.page-id-172 .cta { background: var(--mid); padding: 3rem 2rem; text-align: center; margin: 4rem 0; }
    body.page-id-172 .cta h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 300; margin-bottom: 0.75rem; }
    body.page-id-172 .cta p { font-size: 15px; color: var(--umber2); max-width: 480px; margin: 0 auto 1.5rem; }
    body.page-id-172 .cta-btn { display: inline-block; background: var(--umber); color: var(--off-white); font-family: var(--sans); font-weight: 500; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; padding: 14px 32px; border: none; text-decoration: none; transition: background 0.2s; }
    body.page-id-172 .cta-btn:hover { background: var(--charcoal); color: var(--off-white); border-color: transparent; }

    /* ── FOOTER ── */
    body.page-id-172 .site-footer { background: var(--charcoal); padding: 3rem var(--pad); text-align: center; font-size: 12px; color: rgba(253,252,247,0.4); line-height: 1.8; }
    body.page-id-172 .site-footer a { color: rgba(253,252,247,0.5); border-bottom-color: rgba(253,252,247,0.2); }

    @media (max-width: 600px) {
      body.page-id-172 .source-table, body.page-id-172 .band-table { font-size: 12px; }
      body.page-id-172 .source-table th, body.page-id-172 .source-table td, body.page-id-172 .band-table th, body.page-id-172 .band-table td { padding: 0.5rem 0.7rem; }
      body.page-id-172 .toc a { padding: 0.65rem 0.7rem; font-size: 9px; }
    }
  


/* ===== Page 173 — ROI Calculator ===== */
 body.page-id-173 and <script> tags are supported in Custom HTML modules
     4. Head HTML (JSON-LD, body.page-id-173 fonts) goes in: Settings > Advanced > Head HTML
     5. Set page meta title/description in: Settings > General

     NOTES FOR HUBSPOT:
     - HubSpot injects its own <html><head><body> — do NOT include those here
     - HubSpot's GTM integration handles GTM — the dataLayer pushes below
       still work because HubSpot loads GTM before this module renders
     - The HubSpot form submission (submitToHubSpot) uses the Forms API
       directly — no embed code needed, body.page-id-173 no iframe conflict
     - Zapier is no longer used — all lead capture and email triggers
       are handled natively through HubSpot Marketing Pro + Content Pro
     ============================================================ -->

<!-- ── STYLES ──────────────────────────────────────────────────── -->
<style>
  /* ── Calculator wrapper ── */
  #pared-calculator-root {
    width: 100%;
    min-height: 100vh;
    font-family: 'Source Sans Pro', system-ui, sans-serif;
    box-sizing: border-box;
    background: #C4BDB1;
    margin: 0;
    padding: 0;
  }
  body.page-id-173 #pared-calculator-root *, body.page-id-173 #pared-calculator-root *::before, body.page-id-173 #pared-calculator-root *::after { box-sizing: border-box; }

  /* ── Fonts ── */
  body.page-id-173 #pared-calculator-root .pared-heading { font-family: 'Playfair Display', Georgia, serif; }

  /* ── Animations ── */
  @keyframes paredFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes paredSlideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to   { opacity: 1; transform: translateX(0); }
  }
  @keyframes paredSpin { to { transform: rotate(360deg); } }
  body.page-id-173 #pared-calculator-root .pared-fade-in { animation: paredFadeIn  0.5s ease-out forwards; }
  body.page-id-173 #pared-calculator-root .pared-slide-in { animation: paredSlideIn 0.4s ease-out forwards; }
  body.page-id-173 #pared-calculator-root .pared-spin { animation: paredSpin    1s linear infinite; }

  /* ── Brand ── */
  body.page-id-173 #pared-calculator-root .pared-gold-gradient {
    background: linear-gradient(135deg, #8a7d6b 0%, #b0a090 50%, #8a7d6b 100%);
  }
  body.page-id-173 #pared-calculator-root .pared-btn-primary {
    background: linear-gradient(135deg, #575f40 0%, #7a8456 50%, #575f40 100%);
    color: #fff; border: none; cursor: pointer;
    font-family: inherit; font-weight: 600;
    transition: opacity 0.15s ease, transform 0.15s ease;
  }
  body.page-id-173 #pared-calculator-root .pared-btn-primary:hover { opacity: 0.9; transform: scale(1.01); }
  body.page-id-173 #pared-calculator-root .pared-btn-gold {
    background: linear-gradient(135deg, #8a7d6b 0%, #b0a090 50%, #8a7d6b 100%);
    color: #fff; border: none; cursor: pointer;
    font-family: inherit; font-weight: 600;
    transition: opacity 0.15s ease;
  }
  body.page-id-173 #pared-calculator-root .pared-btn-gold:hover { opacity: 0.9; }

  /* ── Screen control ── */
  body.page-id-173 #pared-calculator-root .pared-screen { display: none; }
  body.page-id-173 #pared-calculator-root .pared-screen.active { display: block; }

  /* ── Gate screen ── */
  body.page-id-173 #pared-calculator-root .pared-gate {
    min-height: 100vh; display: flex;
    align-items: center; justify-content: center;
    padding: 1.5rem; background: #C4BDB1;
  }
  body.page-id-173 #pared-calculator-root .pared-gate-card { max-width: 28rem; width: 100%; }
  body.page-id-173 #pared-calculator-root .pared-gate-inner {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
    border-radius: 1rem; padding: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
  }
  body.page-id-173 #pared-calculator-root .pared-icon-wrap {
    width: 5rem; height: 5rem; border-radius: 9999px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, #575f40 0%, #7a8456 50%, #575f40 100%);
  }
  body.page-id-173 #pared-calculator-root .pared-checkbox-row {
    display: flex; align-items: center; padding: 0.75rem;
    border-radius: 0.5rem; background: rgba(255,255,255,0.5);
    cursor: pointer; transition: background 0.15s ease; margin-bottom: 0.75rem;
  }
  body.page-id-173 #pared-calculator-root .pared-checkbox-row:hover { background: rgba(255,255,255,0.7); }
  body.page-id-173 #pared-calculator-root .pared-checkbox-row input { accent-color: #635147; width: 1rem; height: 1rem; }
  body.page-id-173 #pared-calculator-root .pared-checkbox-row span { margin-left: 0.75rem; font-size: 0.875rem; color: #111827; }

  /* ── Calculator screen ── */
  body.page-id-173 #pared-calculator-root .pared-calc-screen { min-height: 100vh; padding: 1.5rem; background: #C4BDB1; }
  body.page-id-173 #pared-calculator-root .pared-calc-inner { max-width: 56rem; margin: 0 auto; }
  body.page-id-173 #pared-calculator-root .pared-card {
    background: #f2ede6; border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    border: 1px solid #e8e0d4;
  }
  body.page-id-173 #pared-calculator-root .pared-label { display: block; font-size: 0.875rem; font-weight: 600; color: #374151; margin-bottom: 0.5rem; }
  body.page-id-173 #pared-calculator-root .pared-input {
    width: 100%; padding: 0.75rem 1rem; border-radius: 0.5rem;
    border: 2px solid #e5e7eb; font-family: inherit; font-size: 1rem;
    color: #111827; transition: border-color 0.15s ease; outline: none;
    background: #fff;
  }
  body.page-id-173 #pared-calculator-root .pared-input:focus {
    border-color: #8a7d6b;
    box-shadow: 0 0 0 3px rgba(138,125,107,0.25);
  }
  body.page-id-173 #pared-calculator-root .pared-input::placeholder { color: #6b7280; }

  /* ── Results ── */
  body.page-id-173 #pared-calculator-root .pared-results-grid { display: grid; }
  @media (min-width: 768px) {
    body.page-id-173 #pared-calculator-root .pared-results-grid { grid-template-columns: 1fr 1fr; }
    body.page-id-173 #pared-calculator-root .pared-results-without { border-right: 1px solid #e5e7eb; border-bottom: none; }
    body.page-id-173 #pared-calculator-root .pared-form-grid { grid-template-columns: 1fr 1fr; }
    body.page-id-173 #pared-calculator-root .pared-action-grid { grid-template-columns: 1fr 1fr; }
  }
  body.page-id-173 #pared-calculator-root .pared-results-without {
    padding: 1.5rem; background: #ece8e1;
    border-bottom: 1px solid #ddd5c8;
  }
  body.page-id-173 #pared-calculator-root .pared-results-with {
    padding: 1.5rem;
    background: linear-gradient(to bottom right, #e8e0d4, #ddd4c4);
  }
  body.page-id-173 #pared-calculator-root .pared-badge {
    display: inline-block; padding: 0.25rem 1rem;
    border-radius: 9999px; font-size: 0.875rem; font-weight: 600; margin-bottom: 1rem;
  }
  body.page-id-173 #pared-calculator-root .pared-badge-gray { background: #e5e7eb; color: #374151; }
  body.page-id-173 #pared-calculator-root .pared-stat-label { font-size: 0.75rem; color: #6b7280; text-transform: uppercase; letter-spacing: 0.05em; }
  body.page-id-173 #pared-calculator-root .pared-stat-value { font-size: 1.875rem; font-weight: 700; color: #111827; font-family: 'Playfair Display', Georgia, serif; }
  body.page-id-173 #pared-calculator-root .pared-stat-delta { font-size: 0.875rem; font-weight: 600; color: #16a34a; margin-top: 0.25rem; }
  body.page-id-173 #pared-calculator-root .pared-form-grid { display: grid; gap: 1.5rem; }
  body.page-id-173 #pared-calculator-root .pared-action-grid { display: grid; gap: 1rem; margin-bottom: 2rem; }

  /* ── Confirmation screen ── */
  body.page-id-173 #pared-calculator-root .pared-confirm-screen {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    padding: 1.5rem; background: #C4BDB1;
  }

  /* ── Loading overlay ── */
  body.page-id-173 #pared-loading {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.5); align-items: center; justify-content: center; z-index: 9999;
  }
  body.page-id-173 #pared-loading.active { display: flex; }
  body.page-id-173 #pared-calculator-root .pared-loading-inner {
    background: #fff; border-radius: 0.75rem; padding: 1.5rem;
    display: flex; align-items: center; gap: 0.75rem;
  }

  /* ── Toast ── */
  body.page-id-173 #pared-toast {
    display: none; position: fixed; bottom: 1.5rem; right: 1.5rem;
    background: #111827; color: #fff; padding: 0.75rem 1.5rem;
    border-radius: 0.5rem; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    z-index: 9999; animation: paredSlideIn 0.4s ease-out;
  }
  body.page-id-173 #pared-toast.active { display: block; }

  /* ── Utilities ── */
  body.page-id-173 #pared-calculator-root .pared-hidden { display: none !important; }
  body.page-id-173 #pared-calculator-root .pared-text-center { text-align: center; }
  body.page-id-173 #pared-calculator-root .pared-error { color: #ef4444; font-size: 0.75rem; margin-top: 0.5rem; }
  body.page-id-173 #pared-calculator-root .pared-zip-warning {
    display: none; margin-top: 1rem; padding: 0.75rem; border-radius: 0.5rem;
    background: rgba(99,81,71,0.12); color: #635147; font-size: 0.875rem; text-align: center;
  }
  body.page-id-173 #pared-calculator-root .pared-zip-warning.active { display: block; }
  body.page-id-173 #pared-calculator-root .pared-privacy { color: #9ca3af; font-size: 0.75rem; margin-top: 1rem; text-align: center; }

  /* ── HoneyBook embedded scheduler modal ── */
  body.page-id-173 #pared-hb-modal {
    display: none; position: fixed; inset: 0; z-index: 10000;
    background: rgba(49, 47, 40, 0.78); backdrop-filter: blur(4px);
    align-items: center; justify-content: center; padding: 1.25rem;
    font-family: 'Source Sans Pro', system-ui, sans-serif;
  }
  body.page-id-173 #pared-hb-modal.active { display: flex; }
  body.page-id-173 #pared-hb-modal .pared-hb-shell {
    background: #F2F0E8; width: 100%; max-width: 980px; height: 92vh; max-height: 880px;
    border-radius: 4px; box-shadow: 0 24px 60px -28px rgba(49, 47, 40, 0.5);
    display: flex; flex-direction: column; overflow: hidden;
  }
  body.page-id-173 #pared-hb-modal .pared-hb-bar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 22px; background: #312F28; color: #FDFCF7;
    border-bottom: 1px solid rgba(253,252,247,0.08);
  }
  body.page-id-173 #pared-hb-modal .pared-hb-title {
    font-family: 'Playfair Display', 'Noto Serif Display', Georgia, serif;
    font-size: 16px; font-weight: 400; letter-spacing: 0.02em; margin: 0;
  }
  body.page-id-173 #pared-hb-modal .pared-hb-close {
    background: transparent; border: 0; cursor: pointer; padding: 6px;
    color: rgba(253,252,247,0.7); display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
    transition: color 160ms ease;
  }
  body.page-id-173 #pared-hb-modal .pared-hb-close:hover { color: #FDFCF7; }
  body.page-id-173 #pared-hb-modal .pared-hb-frame {
    flex: 1; width: 100%; border: 0; display: block; background: #F2F0E8;
  }
  body.page-id-173 #pared-hb-modal .pared-hb-foot {
    padding: 10px 22px; background: #F6F4F1; color: #6F6B60;
    font-size: 11px; letter-spacing: 0.06em; border-top: 1px solid #DDD9D1;
    text-align: center;
  }
  @media (max-width: 640px) {
    body.page-id-173 #pared-hb-modal { padding: 0; }
    body.page-id-173 #pared-hb-modal .pared-hb-shell { height: 100vh; max-height: 100vh; border-radius: 0; }
  }



/* ===== Page 174 — Contact ===== */

  :root {
    --page-bg:    #FAF9F5;
    --alabaster:  #F2F0E8;
    --near-white: #FDFCF7;
    --umber:      #4B3621;
    --brown:      #635147;
    --charcoal:   #312F28;
    --stone:      #6F6B60;
    --border:     #DDD9CE;
    --opt-bg:     #EDE8DF;
    --disabled:   #E8E4DC;
    --disabled-txt: #B5B0A4;
  }
  body.page-id-174 *, body.page-id-174 *::before, body.page-id-174 *::after { box-sizing: border-box; margin: 0; padding: 0; }

  body.page-id-174 {
    background: var(--page-bg);
    color: var(--umber);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 13px;
    line-height: 1.8;
  }

  body.page-id-174 .wrap { max-width: 520px; margin: 0 auto; padding: 48px 24px 80px; }

  body.page-id-174 .hd-eyebrow {
    font-size: 9px; font-weight: 500; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--stone); margin-bottom: 8px;
  }
  body.page-id-174 .hd-title {
    font-family: 'Noto Serif Display', Georgia, serif;
    font-weight: 400; font-size: 26px; color: var(--umber); margin-bottom: 10px;
  }
  body.page-id-174 .hd-sub { font-size: 12px; color: var(--brown); margin-bottom: 36px; }

  body.page-id-174 .fg { margin-bottom: 20px; }
  body.page-id-174 .fl {
    display: block; font-size: 9px; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--stone); margin-bottom: 6px;
  }
  body.page-id-174 .opt {
    display: inline-block; background: var(--opt-bg); color: var(--stone);
    font-size: 7px; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; padding: 2px 5px; margin-left: 6px;
    vertical-align: middle; position: relative; top: -1px;
  }

  body.page-id-174 input[type="text"], body.page-id-174 input[type="email"], body.page-id-174 input[type="tel"], body.page-id-174 select, body.page-id-174 textarea {
    width: 100%; background: var(--near-white);
    border: 1px solid var(--border); color: var(--umber);
    font-family: 'Montserrat', sans-serif; font-weight: 300; font-size: 12px;
    padding: 10px 13px; outline: none; border-radius: 0;
    -webkit-appearance: none; transition: border-color 0.15s;
  }
  body.page-id-174 input:focus, body.page-id-174 select:focus, body.page-id-174 textarea:focus { border-color: var(--umber); }
  body.page-id-174 input::placeholder, body.page-id-174 textarea::placeholder { color: #C0BAB0; }
  body.page-id-174 textarea { resize: vertical; min-height: 96px; line-height: 1.7; }

  body.page-id-174 select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236F6B60'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 13px center;
    padding-right: 32px; cursor: pointer;
  }

  body.page-id-174 .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

  body.page-id-174 hr.div { border: none; border-top: 1px solid var(--border); margin: 26px 0; }

  /* ── Contact method pills ── */
  body.page-id-174 .contact-pills {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    border: 1px solid var(--border);
  }
  body.page-id-174 .contact-pills label {
    display: flex; align-items: center; gap: 7px;
    padding: 9px 12px; background: var(--near-white);
    border-right: 1px solid var(--border);
    font-size: 12px; color: var(--brown);
    cursor: pointer; user-select: none; transition: background 0.15s;
  }
  body.page-id-174 .contact-pills label:last-child { border-right: none; }
  body.page-id-174 .contact-pills input[type="radio"] { display: none; }
  body.page-id-174 .contact-pills label.on { background: var(--alabaster); color: var(--umber); }

  /* ── Referral sub-field ── */
  body.page-id-174 .referral-sub { display: none; margin-top: 10px; }
  body.page-id-174 .referral-sub.visible { display: block; }

  /* ── Service selector ── */
  body.page-id-174 .svc-grid {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    border: 1px solid var(--border);
  }
  body.page-id-174 .svc-opt { cursor: pointer; user-select: none; }
  body.page-id-174 .svc-opt input[type="radio"] { display: none; }
  body.page-id-174 .svc-inner {
    padding: 13px 12px 15px; background: var(--near-white);
    border-right: 1px solid var(--border); height: 100%;
    transition: background 0.15s;
  }
  body.page-id-174 .svc-opt:last-child .svc-inner { border-right: none; }
  body.page-id-174 .svc-opt.on .svc-inner { background: var(--alabaster); }
  body.page-id-174 .svc-dot {
    width: 13px; height: 13px; border: 1.5px solid var(--border);
    border-radius: 50%; margin-bottom: 9px;
    display: flex; align-items: center; justify-content: center;
    transition: border-color 0.15s;
  }
  body.page-id-174 .svc-opt.on .svc-dot { border-color: var(--umber); }
  body.page-id-174 .svc-opt.on .svc-dot::after {
    content: ''; width: 5px; height: 5px;
    border-radius: 50%; background: var(--umber); display: block;
  }
  body.page-id-174 .svc-ey {
    font-size: 8px; font-weight: 500; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--stone); margin-bottom: 2px;
  }
  body.page-id-174 .svc-nm {
    font-family: 'Noto Serif Display', Georgia, serif;
    font-weight: 400; font-size: 13px; color: var(--umber); line-height: 1.3;
  }

  /* ── Section heading ── */
  body.page-id-174 .sec-head {
    font-size: 9px; font-weight: 500; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--stone);
    padding-bottom: 9px; border-bottom: 1px solid var(--border);
    margin-bottom: 18px;
  }

  /* ── Timeline ── */
  body.page-id-174 .tl-list { border: 1px solid var(--border); }
  body.page-id-174 .tl-item {
    display: flex; align-items: center; gap: 11px;
    padding: 10px 13px; border-bottom: 1px solid var(--border);
    background: var(--near-white); cursor: pointer; user-select: none;
    font-size: 12px; color: var(--brown); transition: background 0.12s;
  }
  body.page-id-174 .tl-item:last-of-type { border-bottom: none; }
  body.page-id-174 .tl-item.on { background: var(--alabaster); color: var(--umber); }
  body.page-id-174 .tl-list.collapsed .tl-item:not(.on) { display: none; }
  body.page-id-174 .tl-change-row {
    display: none; padding: 7px 13px;
    background: var(--near-white); border-top: 1px solid var(--border);
  }
  body.page-id-174 .tl-list.collapsed .tl-change-row { display: flex; }
  body.page-id-174 .tl-change-btn {
    background: none; border: none; font-family: 'Montserrat', sans-serif;
    font-size: 9px; font-weight: 500; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--stone); cursor: pointer;
    text-decoration: underline; text-underline-offset: 3px; padding: 0;
  }
  body.page-id-174 .tl-change-btn:hover { color: var(--umber); }

  /* ── Radio dot ── */
  body.page-id-174 .rdot {
    width: 13px; height: 13px; border: 1.5px solid var(--border);
    border-radius: 50%; flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    transition: border-color 0.15s;
  }
  body.page-id-174 .tl-item.on .rdot,
  body.page-id-174 .space-item.on .rdot,
  body.page-id-174 .contact-pills label.on .rdot,
  body.page-id-174 .budget-pill.on .rdot { border-color: var(--umber); }
  body.page-id-174 .tl-item.on .rdot::after,
  body.page-id-174 .space-item.on .rdot::after,
  body.page-id-174 .contact-pills label.on .rdot::after,
  body.page-id-174 .budget-pill.on .rdot::after {
    content: ''; width: 5px; height: 5px;
    border-radius: 50%; background: var(--umber); display: block;
  }

  /* ── Space size selector (radio list) ── */
  body.page-id-174 .space-list { border: 1px solid var(--border); }
  body.page-id-174 .space-item {
    display: flex; align-items: center; gap: 11px;
    padding: 10px 13px; border-bottom: 1px solid var(--border);
    background: var(--near-white); cursor: pointer; user-select: none;
    font-size: 12px; color: var(--brown); transition: background 0.12s;
  }
  body.page-id-174 .space-item:last-child { border-bottom: none; }
  body.page-id-174 .space-item.on { background: var(--alabaster); color: var(--umber); }
  body.page-id-174 .space-item input[type="radio"] { display: none; }

  /* ── Checkbox group ── */
  body.page-id-174 .cb-group { border: 1px solid var(--border); }
  body.page-id-174 .cb-item {
    display: flex; align-items: flex-start; gap: 11px;
    padding: 12px 13px; background: var(--near-white);
    border-bottom: 1px solid var(--border);
    cursor: pointer; user-select: none; transition: background 0.12s;
  }
  body.page-id-174 .cb-item:last-child { border-bottom: none; }
  body.page-id-174 .cb-item.on { background: var(--alabaster); }
  body.page-id-174 .cb-item input[type="checkbox"] { display: none; }

  /* disabled checkbox state */
  body.page-id-174 .cb-item.disabled {
    cursor: not-allowed;
    opacity: 0.45;
    pointer-events: none;
  }

  body.page-id-174 .cbox {
    width: 13px; height: 13px; border: 1.5px solid var(--border);
    flex-shrink: 0; margin-top: 3px;
    display: inline-flex; align-items: center; justify-content: center;
    transition: border-color 0.15s, background 0.15s;
  }
  body.page-id-174 .cb-item.on .cbox { border-color: var(--umber); background: var(--umber); }
  body.page-id-174 .cb-item.on .cbox::after {
    content: ''; display: block; width: 7px; height: 4px;
    border-left: 1.5px solid var(--near-white);
    border-bottom: 1.5px solid var(--near-white);
    transform: rotate(-45deg) translateY(-1px);
  }
  body.page-id-174 .cb-title { display: block; font-weight: 400; color: var(--umber); margin-bottom: 1px; font-size: 12px; }
  body.page-id-174 .cb-desc { display: block; font-size: 11px; color: var(--stone); line-height: 1.5; }

  /* ── Budget pills — side by side ── */
  body.page-id-174 .budget-pills {
    display: grid; grid-template-columns: 1fr 1fr;
    border: 1px solid var(--border);
  }
  body.page-id-174 .budget-pill {
    display: flex; align-items: center; gap: 9px;
    padding: 10px 13px; background: var(--near-white);
    border-right: 1px solid var(--border);
    cursor: pointer; user-select: none;
    font-size: 12px; color: var(--brown); transition: background 0.12s;
  }
  body.page-id-174 .budget-pill:last-child { border-right: none; }
  body.page-id-174 .budget-pill.on { background: var(--alabaster); color: var(--umber); }
  body.page-id-174 .budget-pill input[type="radio"] { display: none; }

  /* ── Branch ── */
  body.page-id-174 .branch { display: none; }
  body.page-id-174 .branch.on { display: block; animation: fi 0.2s ease; }
  @keyframes fi { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

  /* ── Google autocomplete styling ── */
  body.page-id-174 .pac-container {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 12px !important;
    border: 1px solid var(--border) !important;
    border-top: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: var(--near-white) !important;
  }
  body.page-id-174 .pac-item { padding: 8px 13px !important; color: var(--brown) !important; border-top: 1px solid var(--border) !important; cursor: pointer; }
  body.page-id-174 .pac-item:hover { background: var(--alabaster) !important; }
  body.page-id-174 .pac-item-query { color: var(--umber) !important; font-size: 12px !important; }
  body.page-id-174 .pac-icon { display: none !important; }

  /* ── Submit ── */
  body.page-id-174 .sub-wrap { margin-top: 30px; }
  body.page-id-174 button[type="submit"] {
    background: var(--umber); color: var(--near-white); border: none;
    font-family: 'Montserrat', sans-serif; font-weight: 500; font-size: 10px;
    letter-spacing: 0.18em; text-transform: uppercase;
    padding: 13px 34px; cursor: pointer; border-radius: 0;
    transition: background 0.2s;
  }
  body.page-id-174 button[type="submit"]:hover { background: var(--charcoal); }

  @media (max-width: 460px) {
    body.page-id-174 .svc-grid { grid-template-columns: 1fr; }
    body.page-id-174 .svc-inner { border-right: none; border-bottom: 1px solid var(--border); }
    body.page-id-174 .svc-opt:last-child .svc-inner { border-bottom: none; }
    body.page-id-174 .row2 { grid-template-columns: 1fr; }
    body.page-id-174 .contact-pills { grid-template-columns: 1fr; }
    body.page-id-174 .contact-pills label { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    body.page-id-174 .contact-pills label:last-child { border-bottom: none; }
    body.page-id-174 .budget-pills { grid-template-columns: 1fr; }
    body.page-id-174 .budget-pill { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    body.page-id-174 .budget-pill:last-child { border-bottom: none; }
  }



/* ===== Page 175 — Inquiry Staging ===== */

    body.page-id-175 *, body.page-id-175 *::before, body.page-id-175 *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html, body.page-id-175 { height: 100%; }
    body.pared { min-height: 100vh; }

    /* ── NAV ── */
    body.page-id-175 .site-nav {
      padding: 22px 48px;
      border-bottom: 0.5px solid var(--pared-rule);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    body.page-id-175 .site-nav img { height: 32px; }
    body.page-id-175 .site-nav a {
      font-size: 13px;
      letter-spacing: 0.04em;
      color: var(--pared-fg-muted);
      text-decoration: none;
    }
    body.page-id-175 .site-nav a:hover { color: var(--pared-raw-umber); }

    /* ── HERO CONFIRM ── */
    body.page-id-175 .confirm-hero {
      padding: 96px 48px 80px;
      max-width: 1080px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }
    body.page-id-175 .confirm-check {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--pared-grad-2);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 28px;
    }
    body.page-id-175 .confirm-check svg {
      stroke: var(--pared-raw-umber);
    }
    body.page-id-175 .confirm-hero h1 {
      font-family: var(--pared-font-serif);
      font-size: 48px;
      font-weight: 300;
      line-height: 1.12;
      letter-spacing: -0.005em;
      color: var(--pared-fg);
      margin-bottom: 20px;
      text-wrap: pretty;
    }
    body.page-id-175 .confirm-hero p {
      font-size: 16px;
      font-weight: 300;
      line-height: 1.7;
      color: var(--pared-fg-muted);
      max-width: 48ch;
    }
    body.page-id-175 .what-next {
      background: var(--pared-near-white);
      border-radius: 4px;
      padding: 32px;
      box-shadow: var(--pared-shadow-sm);
    }
    body.page-id-175 .what-next .pared-kicker { display: block; margin-bottom: 20px; }
    body.page-id-175 .next-step {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 18px 0;
      border-bottom: 0.5px solid var(--pared-rule);
    }
    body.page-id-175 .next-step:last-child { border-bottom: none; padding-bottom: 0; }
    body.page-id-175 .next-step-num {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 500;
      font-family: var(--pared-font-sans);
    }
    body.page-id-175 .next-step-body h4 {
      font-family: var(--pared-font-sans);
      font-size: 14px;
      font-weight: 500;
      color: var(--pared-fg);
      margin-bottom: 4px;
    }
    body.page-id-175 .next-step-body p {
      font-size: 13px;
      font-weight: 300;
      color: var(--pared-fg-muted);
      line-height: 1.55;
    }

    /* ── PAY AT CLOSE (slim) ── */
    body.page-id-175 .pay-close-band {
      background: var(--pared-charcoal);
      padding: 56px 48px;
    }
    body.page-id-175 .pay-close-slim {
      max-width: 1080px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 64px;
      align-items: center;
    }
    body.page-id-175 .pay-close-slim-text .pared-kicker { color: #C4BDB1; }
    body.page-id-175 .pay-close-slim-text h2 {
      font-family: var(--pared-font-serif);
      font-size: 28px;
      font-weight: 300;
      line-height: 1.2;
      color: var(--pared-near-white);
      margin: 12px 0 14px;
    }
    body.page-id-175 .pay-close-slim-text p {
      font-size: 14px;
      font-weight: 300;
      line-height: 1.7;
      color: #A19788;
      max-width: 44ch;
    }
    body.page-id-175 .pay-close-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 13px 22px;
      background: var(--pared-near-white);
      color: var(--pared-raw-umber);
      font-family: var(--pared-font-sans);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 4px;
      transition: background 240ms ease;
    }
    body.page-id-175 .pay-close-btn:hover { background: var(--pared-alabaster); }
    body.page-id-175 .pay-close-slim-stats {
      display: flex;
      flex-direction: column;
      gap: 28px;
      border-left: 0.5px solid rgba(255,255,255,0.12);
      padding-left: 48px;
    }
    body.page-id-175 .pac-stat-num {
      font-family: var(--pared-font-serif);
      font-size: 32px;
      font-weight: 300;
      color: var(--pared-near-white);
      line-height: 1;
      margin-bottom: 4px;
    }
    body.page-id-175 .pac-stat-label {
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #6F6B60;
    }

    /* ── FLOWCHART ── */
    body.page-id-175 .flow-section {
      padding: 80px 48px;
      background: var(--pared-near-white);
      border-top: 0.5px solid var(--pared-rule-strong);
    }
    body.page-id-175 .flow-inner { max-width: 1080px; margin: 0 auto; }
    body.page-id-175 .flow-heading {
      font-family: var(--pared-font-serif);
      font-size: 28px;
      font-weight: 400;
      color: var(--pared-fg);
      margin-bottom: 52px;
    }
    body.page-id-175 .flow-track {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
    }
    body.page-id-175 .flow-step {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      position: relative;
      padding-right: 24px;
    }
    body.page-id-175 .flow-circle {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--pared-font-sans);
      font-size: 12px;
      font-weight: 500;
      flex-shrink: 0;
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
    }
    body.page-id-175 .flow-connector {
      position: absolute;
      top: 18px;
      left: 36px;
      right: 0;
      height: 1px;
      background: var(--pared-rule-strong);
    }
    body.page-id-175 .flow-connector--last { display: none; }
    body.page-id-175 .flow-step h4 {
      font-family: var(--pared-font-sans);
      font-size: 13px;
      font-weight: 600;
      color: var(--pared-fg);
      margin-bottom: 8px;
      letter-spacing: 0.01em;
    }
    body.page-id-175 .flow-step p {
      font-size: 13px;
      font-weight: 300;
      color: var(--pared-fg-muted);
      line-height: 1.6;
      max-width: 20ch;
    }
    @media (max-width: 860px) {
      body.page-id-175 .pay-close-slim { grid-template-columns: 1fr; gap: 32px; }
      body.page-id-175 .pay-close-slim-stats { flex-direction: row; border-left: none; padding-left: 0; border-top: 0.5px solid rgba(255,255,255,0.12); padding-top: 28px; flex-wrap: wrap; gap: 20px 40px; }
      body.page-id-175 .flow-track { grid-template-columns: 1fr 1fr; gap: 32px; }
      body.page-id-175 .flow-connector { display: none; }
    }

    /* ── JOURNAL ── */
    body.page-id-175 .journal-section {
      padding: 96px 48px;
      background: var(--pared-mid-surface);
    }
    body.page-id-175 .journal-inner { max-width: 1080px; margin: 0 auto; }
    body.page-id-175 .journal-header {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      margin-bottom: 48px;
    }
    body.page-id-175 .journal-header h2 {
      font-family: var(--pared-font-serif);
      font-size: 32px;
      font-weight: 400;
      margin-top: 12px;
    }
    body.page-id-175 .journal-header a {
      font-size: 13px;
      color: var(--pared-stone);
      text-decoration: none;
    }
    body.page-id-175 .journal-header a:hover { color: var(--pared-raw-umber); }
    body.page-id-175 .journal-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    body.page-id-175 .journal-card {
      background: var(--pared-near-white);
      border-radius: 4px;
      overflow: hidden;
      box-shadow: var(--pared-shadow-sm);
    }
    body.page-id-175 .journal-thumb {
      aspect-ratio: 4 / 3;
      position: relative;
      overflow: hidden;
    }
    body.page-id-175 .journal-thumb-inner {
      position: absolute; inset: 0;
    }
    body.page-id-175 .journal-tag {
      position: absolute; top: 12px; right: 12px;
      background: var(--pared-charcoal);
      color: var(--pared-near-white);
      font-size: 10px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 5px 10px;
      border-radius: 2px;
      font-family: var(--pared-font-sans);
      font-weight: 500;
    }
    body.page-id-175 .journal-body { padding: 22px 22px 26px; }
    body.page-id-175 .journal-body h3 {
      font-family: var(--pared-font-serif);
      font-size: 20px;
      font-weight: 400;
      line-height: 1.25;
      margin: 8px 0 10px;
      color: var(--pared-raw-umber);
    }
    body.page-id-175 .journal-body p {
      font-size: 13px;
      font-weight: 300;
      color: var(--pared-fg-muted);
      line-height: 1.6;
    }
    body.page-id-175 .journal-read {
      display: inline-block;
      margin-top: 14px;
      font-size: 13px;
      color: var(--pared-stone);
      text-decoration: none;
    }
    body.page-id-175 .journal-read:hover { color: var(--pared-raw-umber); }

    /* ── FOOTER ── */
    body.page-id-175 .site-footer {
      padding: 56px 48px 36px;
      border-top: 0.5px solid var(--pared-rule-strong);
    }
    body.page-id-175 .site-footer-inner {
      max-width: 1080px;
      margin: 0 auto;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 48px;
    }
    body.page-id-175 .site-footer img { height: 30px; margin-bottom: 14px; display: block; }
    body.page-id-175 .site-footer p {
      font-size: 13px;
      color: var(--pared-fg-muted);
      max-width: 32ch;
      line-height: 1.6;
    }
    body.page-id-175 .footer-links { display: flex; gap: 32px; }
    body.page-id-175 .footer-col .pared-kicker { display: block; margin-bottom: 12px; }
    body.page-id-175 .footer-col ul { list-style: none; line-height: 2.1; }
    body.page-id-175 .footer-col ul a { font-size: 13px; color: var(--pared-fg-muted); text-decoration: none; }
    body.page-id-175 .footer-col ul a:hover { color: var(--pared-raw-umber); }
    body.page-id-175 .footer-bottom {
      max-width: 1080px;
      margin: 40px auto 0;
      display: flex;
      justify-content: space-between;
      font-size: 11px;
      color: var(--pared-fg-accent);
      letter-spacing: 0.04em;
    }

    @media (max-width: 860px) {
      body.page-id-175 .confirm-hero, body.page-id-175 .pay-close-inner { grid-template-columns: 1fr; gap: 40px; }
      body.page-id-175 .journal-grid { grid-template-columns: 1fr; }
      body.page-id-175 .site-nav { padding: 18px 24px; }
      body.page-id-175 .confirm-hero, body.page-id-175 .journal-section, body.page-id-175 .pay-close-band, body.page-id-175 .site-footer { padding-left: 24px; padding-right: 24px; }
    }
  

/* ===== END STYLE BLOCK ===== */

@media(max-width:960px){body.page-id-175 .footer-grid-resp {grid-template-columns:1fr 1fr!important;}} @media(max-width:540px){body.page-id-175 .footer-grid-resp {grid-template-columns:1fr!important;}}

/* ===== END STYLE BLOCK ===== */


  body.page-id-175 #tweaks-panel {
    display: none;
    position: fixed; bottom: 24px; right: 24px; z-index: 9999;
    width: 280px;
    background: var(--pared-near-white);
    border: 0.5px solid var(--pared-rule-strong);
    border-radius: 6px;
    box-shadow: 0 8px 32px rgba(75,54,33,0.14);
    font-family: var(--pared-font-sans);
    overflow: hidden;
  }
  body.page-id-175 #tweaks-panel.visible { display: block; }
  body.page-id-175 .tp-header {
    padding: 14px 18px;
    background: var(--pared-raw-umber);
    color: var(--pared-near-white);
    display: flex; align-items: center; justify-content: space-between;
    font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  }
  body.page-id-175 .tp-close { background: none; border: none; color: var(--pared-near-white); cursor: pointer; font-size: 16px; line-height: 1; padding: 0; opacity: 0.7; }
  body.page-id-175 .tp-close:hover { opacity: 1; }
  body.page-id-175 .tp-body { padding: 18px; display: flex; flex-direction: column; gap: 16px; }
  body.page-id-175 .tp-row { display: flex; flex-direction: column; gap: 6px; }
  body.page-id-175 .tp-label { font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--pared-stone); }
  body.page-id-175 .tp-toggle { display: flex; align-items: center; gap: 10px; }
  body.page-id-175 .tp-switch { position: relative; width: 36px; height: 20px; flex-shrink: 0; }
  body.page-id-175 .tp-switch input { opacity: 0; width: 0; height: 0; }
  body.page-id-175 .tp-slider { position: absolute; inset: 0; background: var(--pared-rule-strong); border-radius: 20px; cursor: pointer; transition: background 0.2s; }
  body.page-id-175 .tp-switch input:checked + .tp-slider { background: var(--pared-raw-umber); }
  body.page-id-175 .tp-slider::before { content: ''; position: absolute; width: 14px; height: 14px; left: 3px; top: 3px; background: white; border-radius: 50%; transition: transform 0.2s; }
  body.page-id-175 .tp-switch input:checked + .tp-slider::before { transform: translateX(16px); }
  body.page-id-175 .tp-toggle span { font-size: 12px; color: var(--pared-fg-muted); }
  body.page-id-175 .tp-select { width: 100%; padding: 7px 10px; border: 0.5px solid var(--pared-rule-strong); border-radius: 4px; font-family: var(--pared-font-sans); font-size: 12px; color: var(--pared-fg); background: white; cursor: pointer; }



/* ===== Page 176 — Inquiry Decorating ===== */

    body.page-id-176 *, body.page-id-176 *::before, body.page-id-176 *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html, body.page-id-176 { height: 100%; }
    body.pared { min-height: 100vh; }

    /* ── NAV ── */
    body.page-id-176 .site-nav {
      padding: 22px 48px;
      border-bottom: 0.5px solid var(--pared-rule);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    body.page-id-176 .site-nav img { height: 32px; }
    body.page-id-176 .site-nav a {
      font-size: 13px;
      letter-spacing: 0.04em;
      color: var(--pared-fg-muted);
      text-decoration: none;
    }
    body.page-id-176 .site-nav a:hover { color: var(--pared-raw-umber); }

    /* ── HERO CONFIRM ── */
    body.page-id-176 .confirm-hero {
      padding: 96px 48px 80px;
      max-width: 1080px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }
    body.page-id-176 .confirm-check {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--pared-grad-2);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 28px;
    }
    body.page-id-176 .confirm-check svg { stroke: var(--pared-raw-umber); }
    body.page-id-176 .confirm-hero h1 {
      font-family: var(--pared-font-serif);
      font-size: 48px;
      font-weight: 300;
      line-height: 1.12;
      letter-spacing: -0.005em;
      color: var(--pared-fg);
      margin-bottom: 20px;
      text-wrap: pretty;
    }
    body.page-id-176 .confirm-hero p {
      font-size: 16px;
      font-weight: 300;
      line-height: 1.7;
      color: var(--pared-fg-muted);
      max-width: 48ch;
    }
    body.page-id-176 .what-next {
      background: var(--pared-near-white);
      border-radius: 4px;
      padding: 32px;
      box-shadow: var(--pared-shadow-sm);
    }
    body.page-id-176 .what-next .pared-kicker { display: block; margin-bottom: 20px; }
    body.page-id-176 .next-step {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 18px 0;
      border-bottom: 0.5px solid var(--pared-rule);
    }
    body.page-id-176 .next-step:last-child { border-bottom: none; padding-bottom: 0; }
    body.page-id-176 .next-step-body h4 {
      font-family: var(--pared-font-sans);
      font-size: 14px;
      font-weight: 500;
      color: var(--pared-fg);
      margin-bottom: 4px;
    }
    body.page-id-176 .next-step-body p {
      font-size: 13px;
      font-weight: 300;
      color: var(--pared-fg-muted);
      line-height: 1.55;
    }

    /* ── SCOPE BAND ── */
    body.page-id-176 .scope-band {
      padding: 72px 48px;
      border-top: 0.5px solid var(--pared-rule-strong);
      border-bottom: 0.5px solid var(--pared-rule-strong);
    }
    body.page-id-176 .scope-inner {
      max-width: 1080px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    body.page-id-176 .scope-inner h2 {
      font-family: var(--pared-font-serif);
      font-size: 36px;
      font-weight: 300;
      line-height: 1.2;
      margin: 16px 0 20px;
    }
    body.page-id-176 .scope-inner p {
      font-size: 15px;
      font-weight: 300;
      line-height: 1.7;
      color: var(--pared-fg-muted);
      max-width: 48ch;
    }
    body.page-id-176 .scope-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    body.page-id-176 .scope-card {
      background: var(--pared-near-white);
      border-radius: 4px;
      padding: 22px;
      box-shadow: var(--pared-shadow-xs);
    }
    body.page-id-176 .scope-card .pared-kicker { display: block; margin-bottom: 10px; }
    body.page-id-176 .scope-card h4 {
      font-family: var(--pared-font-serif);
      font-size: 18px;
      font-weight: 400;
      color: var(--pared-fg);
      margin-bottom: 8px;
    }
    body.page-id-176 .scope-card p {
      font-size: 13px;
      font-weight: 300;
      color: var(--pared-fg-muted);
      line-height: 1.55;
    }

    /* ── JOURNAL ── */
    body.page-id-176 .journal-section {
      padding: 96px 48px;
      background: var(--pared-mid-surface);
    }
    body.page-id-176 .journal-inner { max-width: 1080px; margin: 0 auto; }
    body.page-id-176 .journal-header {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      margin-bottom: 48px;
    }
    body.page-id-176 .journal-header h2 {
      font-family: var(--pared-font-serif);
      font-size: 32px;
      font-weight: 400;
      margin-top: 12px;
    }
    body.page-id-176 .journal-header a {
      font-size: 13px;
      color: var(--pared-stone);
      text-decoration: none;
    }
    body.page-id-176 .journal-header a:hover { color: var(--pared-raw-umber); }
    body.page-id-176 .journal-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    body.page-id-176 .journal-card {
      background: var(--pared-near-white);
      border-radius: 4px;
      overflow: hidden;
      box-shadow: var(--pared-shadow-sm);
    }
    body.page-id-176 .journal-thumb {
      aspect-ratio: 4 / 3;
      position: relative;
      overflow: hidden;
    }
    body.page-id-176 .journal-thumb-inner { position: absolute; inset: 0; }
    body.page-id-176 .journal-tag {
      position: absolute; top: 12px; right: 12px;
      background: var(--pared-charcoal);
      color: var(--pared-near-white);
      font-size: 10px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 5px 10px;
      border-radius: 2px;
      font-family: var(--pared-font-sans);
      font-weight: 500;
    }
    body.page-id-176 .journal-body { padding: 22px 22px 26px; }
    body.page-id-176 .journal-body h3 {
      font-family: var(--pared-font-serif);
      font-size: 20px;
      font-weight: 400;
      line-height: 1.25;
      margin: 8px 0 10px;
      color: var(--pared-raw-umber);
    }
    body.page-id-176 .journal-body p {
      font-size: 13px;
      font-weight: 300;
      color: var(--pared-fg-muted);
      line-height: 1.6;
    }
    body.page-id-176 .journal-read {
      display: inline-block;
      margin-top: 14px;
      font-size: 13px;
      color: var(--pared-stone);
      text-decoration: none;
    }
    body.page-id-176 .journal-read:hover { color: var(--pared-raw-umber); }

    /* ── FOOTER ── */
    body.page-id-176 .site-footer {
      padding: 56px 48px 36px;
      border-top: 0.5px solid var(--pared-rule-strong);
    }
    body.page-id-176 .site-footer-inner {
      max-width: 1080px;
      margin: 0 auto;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 48px;
    }
    body.page-id-176 .site-footer img { height: 30px; margin-bottom: 14px; display: block; }
    body.page-id-176 .site-footer p {
      font-size: 13px;
      color: var(--pared-fg-muted);
      max-width: 32ch;
      line-height: 1.6;
    }
    body.page-id-176 .footer-links { display: flex; gap: 32px; }
    body.page-id-176 .footer-col .pared-kicker { display: block; margin-bottom: 12px; }
    body.page-id-176 .footer-col ul { list-style: none; line-height: 2.1; }
    body.page-id-176 .footer-col ul a { font-size: 13px; color: var(--pared-fg-muted); text-decoration: none; }
    body.page-id-176 .footer-col ul a:hover { color: var(--pared-raw-umber); }
    body.page-id-176 .footer-bottom {
      max-width: 1080px;
      margin: 40px auto 0;
      display: flex;
      justify-content: space-between;
      font-size: 11px;
      color: var(--pared-fg-accent);
      letter-spacing: 0.04em;
    }

    @media (max-width: 860px) {
      body.page-id-176 .confirm-hero, body.page-id-176 .scope-inner { grid-template-columns: 1fr; gap: 40px; }
      body.page-id-176 .journal-grid { grid-template-columns: 1fr; }
      body.page-id-176 .scope-cards { grid-template-columns: 1fr; }
      body.page-id-176 .site-nav { padding: 18px 24px; }
      body.page-id-176 .confirm-hero, body.page-id-176 .journal-section, body.page-id-176 .scope-band, body.page-id-176 .site-footer { padding-left: 24px; padding-right: 24px; }
    }
  

/* ===== END STYLE BLOCK ===== */

@media(max-width:960px){body.page-id-176 .footer-grid-resp {grid-template-columns:1fr 1fr!important;}} @media(max-width:540px){body.page-id-176 .footer-grid-resp {grid-template-columns:1fr!important;}}

/* ===== END STYLE BLOCK ===== */


  body.page-id-176 #tweaks-panel {
    display: none;
    position: fixed; bottom: 24px; right: 24px; z-index: 9999;
    width: 280px;
    background: var(--pared-near-white);
    border: 0.5px solid var(--pared-rule-strong);
    border-radius: 6px;
    box-shadow: 0 8px 32px rgba(75,54,33,0.14);
    font-family: var(--pared-font-sans);
    overflow: hidden;
  }
  body.page-id-176 #tweaks-panel.visible { display: block; }
  body.page-id-176 .tp-header { padding: 14px 18px; background: var(--pared-raw-umber); color: var(--pared-near-white); display: flex; align-items: center; justify-content: space-between; font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; }
  body.page-id-176 .tp-close { background: none; border: none; color: var(--pared-near-white); cursor: pointer; font-size: 16px; line-height: 1; padding: 0; opacity: 0.7; }
  body.page-id-176 .tp-close:hover { opacity: 1; }
  body.page-id-176 .tp-body { padding: 18px; display: flex; flex-direction: column; gap: 16px; }
  body.page-id-176 .tp-row { display: flex; flex-direction: column; gap: 6px; }
  body.page-id-176 .tp-label { font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--pared-stone); }
  body.page-id-176 .tp-toggle { display: flex; align-items: center; gap: 10px; }
  body.page-id-176 .tp-switch { position: relative; width: 36px; height: 20px; flex-shrink: 0; }
  body.page-id-176 .tp-switch input { opacity: 0; width: 0; height: 0; }
  body.page-id-176 .tp-slider { position: absolute; inset: 0; background: var(--pared-rule-strong); border-radius: 20px; cursor: pointer; transition: background 0.2s; }
  body.page-id-176 .tp-switch input:checked + .tp-slider { background: var(--pared-raw-umber); }
  body.page-id-176 .tp-slider::before { content: ''; position: absolute; width: 14px; height: 14px; left: 3px; top: 3px; background: white; border-radius: 50%; transition: transform 0.2s; }
  body.page-id-176 .tp-switch input:checked + .tp-slider::before { transform: translateX(16px); }
  body.page-id-176 .tp-toggle span { font-size: 12px; color: var(--pared-fg-muted); }
  body.page-id-176 .tp-select { width: 100%; padding: 7px 10px; border: 0.5px solid var(--pared-rule-strong); border-radius: 4px; font-family: var(--pared-font-sans); font-size: 12px; color: var(--pared-fg); background: white; cursor: pointer; }



/* ===== Page 177 — About ===== */

    body.page-id-177 *, body.page-id-177 *::before, body.page-id-177 *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --cream: #F2F0E8;
      --off-white: #FDFCF7;
      --umber: #4B3621;
      --umber2: #635147;
      --stone: #6F6B60;
      --charcoal: #312F28;
      --rule: #DDD9D1;
      --serif: 'Noto Serif Display', Georgia, serif;
      --sans: 'Open Sans', sans-serif;
      --max: 1320px;
      --pad: clamp(24px, 5vw, 80px);
    }
    html { scroll-behavior: smooth; }
    body.page-id-177 { background: var(--cream); color: var(--umber); font-family: var(--sans); font-weight: 300; line-height: 1.75; -webkit-font-smoothing: antialiased; }
    body.page-id-177 h1, body.page-id-177 h2, body.page-id-177 h3, body.page-id-177 h4 { font-family: var(--serif); font-weight: 400; line-height: 1.15; color: var(--umber); }
    body.page-id-177 a { color: inherit; text-decoration: none; }

    /* ── NAV ── */
    body.page-id-177 .p-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; padding: 22px var(--pad); display: flex; align-items: center; justify-content: space-between; transition: background 0.4s ease, border-color 0.4s ease; border-bottom: 1px solid transparent; }
    body.page-id-177 .p-nav.scrolled { background: rgba(242,240,232,0.96); backdrop-filter: blur(16px); border-bottom-color: var(--rule); }
    body.page-id-177 .p-nav-brand { display: flex; align-items: center; gap: 11px; color: var(--umber); }
    body.page-id-177 .p-nav-wordmark { font-family: var(--serif); font-size: 15px; font-weight: 400; letter-spacing: 0.06em; }
    body.page-id-177 .p-nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
    body.page-id-177 .p-nav-links > li > a, body.page-id-177 .p-nav-links > li > span { font-size: 11px; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; color: var(--umber); opacity: 0.75; transition: opacity 0.2s; cursor: pointer; }
    body.page-id-177 .p-nav-links > li > a:hover, body.page-id-177 .p-nav-links > li > a.active, body.page-id-177 .p-nav-links > li > span:hover { opacity: 1; }
    body.page-id-177 .p-nav-drop { position: relative; }
    body.page-id-177 .p-nav-drop-menu { position: absolute; top: calc(100% + 16px); left: -20px; background: var(--off-white); border: 1px solid var(--rule); list-style: none; min-width: 230px; padding: 8px 0; opacity: 0; visibility: hidden; transition: opacity 0.18s ease, visibility 0.18s ease; }
    body.page-id-177 .p-nav-drop:hover .p-nav-drop-menu { opacity: 1; visibility: visible; }
    body.page-id-177 .p-nav-drop-menu li a { display: block; padding: 11px 22px; font-size: 12px; letter-spacing: 0.07em; opacity: 0.8; transition: opacity 0.15s, background 0.15s; }
    body.page-id-177 .p-nav-drop-menu li a:hover { opacity: 1; background: var(--cream); }
    body.page-id-177 .p-nav-cta { font-size: 11px; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; padding: 11px 22px; background: var(--umber); color: var(--off-white); border-radius: 2px; transition: background 0.2s; }
    body.page-id-177 .p-nav-cta:hover { background: var(--charcoal); }
    @media (max-width: 860px) { body.page-id-177 .p-nav-links { display: none; } }

    /* ── BUTTONS ── */
    body.page-id-177 .btn { display: inline-block; font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; padding: 14px 28px; background: var(--umber); color: var(--off-white); border-radius: 2px; transition: background 0.2s; border: none; cursor: pointer; }
    body.page-id-177 .btn:hover { background: var(--charcoal); }
    body.page-id-177 .btn-outline { background: transparent; border: 1px solid var(--umber); color: var(--umber); }
    body.page-id-177 .btn-outline:hover { background: var(--umber); color: var(--off-white); }

    /* ── HERO IMAGE ── */
    body.page-id-177 .hero-img {
      width: 100%;
      height: 88vh;
      min-height: 520px;
      background: linear-gradient(160deg, #BDB3A8 0%, #7A6A58 40%, #4B3B22 100%);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
    }
    body.page-id-177 .hero-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(49,47,40,0.45) 0%, rgba(49,47,40,0.05) 55%, transparent 100%); }
    body.page-id-177 .hero-img-bottom { position: relative; z-index: 2; width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--pad) 52px; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
    body.page-id-177 .hero-img-label { font-size: 10.5px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(253,252,247,0.5); }

    /* ── SEO HEADLINE ── */
    body.page-id-177 .seo-headline {
      border-bottom: 1px solid var(--rule);
      background: var(--cream);
    }
    body.page-id-177 .seo-headline-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 72px var(--pad) 68px;
    }
    body.page-id-177 .seo-headline h1 {
      font-size: clamp(28px, 4.5vw, 58px);
      font-weight: 300;
      line-height: 1.15;
      max-width: 900px;
      color: var(--umber);
    }

    /* ── ABOUT SECTIONS (stacked wide) ── */
    body.page-id-177 .about-section {
      border-top: 1px solid var(--rule);
    }
    body.page-id-177 .about-section-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 88px var(--pad);
      display: grid;
      grid-template-columns: 260px 1fr;
      gap: 80px;
      align-items: start;
    }
    @media (max-width: 760px) {
      body.page-id-177 .about-section-inner { grid-template-columns: 1fr; gap: 36px; }
    }

    body.page-id-177 .about-block-label {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--stone);
      padding-top: 6px;
    }
    body.page-id-177 .about-block-body h2 {
      font-family: var(--serif);
      font-size: clamp(24px, 2.8vw, 38px);
      font-weight: 300;
      line-height: 1.2;
      margin-bottom: 24px;
    }
    body.page-id-177 .about-block-body p {
      font-size: 16px;
      color: var(--umber2);
      line-height: 1.9;
      margin-bottom: 20px;
      font-weight: 300;
      max-width: 680px;
    }
    body.page-id-177 .about-block-body p:last-of-type { margin-bottom: 0; }



    /* ── DIVIDER ── */
    body.page-id-177 .about-divider { height: 1px; background: var(--rule); }

    /* ── QUOTE ── */
    body.page-id-177 .p-quote { background: var(--umber); color: var(--off-white); padding: 100px var(--pad); }
    body.page-id-177 .p-quote-inner { max-width: 900px; margin: 0 auto; }
    body.page-id-177 .p-quote blockquote { font-family: var(--serif); font-size: clamp(22px, 3.2vw, 40px); font-weight: 300; font-style: italic; line-height: 1.55; margin-bottom: 32px; }
    body.page-id-177 .p-quote cite { font-size: 10.5px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(253,252,247,0.4); font-style: normal; }

    /* ── CREDENTIALS ── */
    body.page-id-177 .cred-row { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--rule); }
    body.page-id-177 .cred-cell { padding: 52px 40px; border-right: 1px solid var(--rule); }
    body.page-id-177 .cred-cell:last-child { border-right: none; }
    @media (max-width: 700px) { body.page-id-177 .cred-row { grid-template-columns: 1fr; } body.page-id-177 .cred-cell { border-right: none; border-bottom: 1px solid var(--rule); padding: 40px 0; } }
    body.page-id-177 .cred-label { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); margin-bottom: 12px; }
    body.page-id-177 .cred-title { font-family: var(--serif); font-size: clamp(20px, 2.5vw, 28px); font-weight: 300; line-height: 1.2; margin-bottom: 12px; }
    body.page-id-177 .cred-desc { font-size: 13.5px; color: var(--umber2); line-height: 1.75; max-width: 260px; }

    /* ── CTA ── */
    body.page-id-177 .p-cta { border-top: 1px solid var(--rule); padding: 88px var(--pad); }
    body.page-id-177 .p-cta-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
    body.page-id-177 .p-cta h2 { font-size: clamp(22px, 3vw, 38px); font-weight: 300; max-width: 560px; }
    body.page-id-177 .p-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

    /* ── FOOTER ── */
    body.page-id-177 .p-footer { background: var(--charcoal); color: var(--off-white); padding: 84px var(--pad) 48px; }
    body.page-id-177 .p-footer-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
    @media (max-width: 900px) { body.page-id-177 .p-footer-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 540px) { body.page-id-177 .p-footer-grid { grid-template-columns: 1fr; } }
    body.page-id-177 .p-footer-col h4 { font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone); margin-bottom: 18px; }
    body.page-id-177 .p-footer-col ul { list-style: none; }
    body.page-id-177 .p-footer-col ul li { margin-bottom: 9px; }
    body.page-id-177 .p-footer-col ul li a { font-size: 13px; font-weight: 300; color: rgba(253,252,247,0.55); transition: color 0.2s; }
    body.page-id-177 .p-footer-col ul li a:hover { color: var(--off-white); }
    body.page-id-177 .p-footer-bottom { max-width: var(--max); margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.09); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
    body.page-id-177 .p-footer-bottom p { font-size: 11.5px; color: rgba(253,252,247,0.35); font-weight: 300; }

    /* ── FADE ── */
    body.page-id-177 .fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; }
    body.page-id-177 .fade-in.d1 { transition-delay: 0.12s; }
    body.page-id-177 .fade-in.d2 { transition-delay: 0.22s; }
    body.page-id-177 .fade-in.visible { opacity: 1; transform: translateY(0); }
  


/* ===== Page 178 — Site Index ===== */

    body.page-id-178 *, body.page-id-178 *::before, body.page-id-178 *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --cream: #F2F0E8; --off-white: #FDFCF7; --umber: #4B3621;
      --umber2: #635147; --stone: #6F6B60; --charcoal: #312F28; --rule: #DDD9D1;
      --serif: 'Noto Serif Display', Georgia, serif;
      --sans: 'Open Sans', sans-serif;
    }
    body.page-id-178 { background: var(--cream); color: var(--umber); font-family: var(--sans); font-weight: 300; -webkit-font-smoothing: antialiased; }

    body.page-id-178 .index-header {
      padding: 56px 64px 48px;
      border-bottom: 1px solid var(--rule);
      display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap;
    }
    body.page-id-178 .index-header-left {}
    body.page-id-178 .index-eyebrow { font-size: 10.5px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); margin-bottom: 10px; }
    body.page-id-178 .index-header h1 { font-family: var(--serif); font-size: 36px; font-weight: 300; color: var(--umber); }
    body.page-id-178 .index-header p { font-size: 14px; color: var(--umber2); margin-top: 8px; line-height: 1.7; max-width: 48ch; }
    body.page-id-178 .index-open-btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 13px 24px; background: var(--umber); color: var(--off-white);
      font-family: var(--sans); font-size: 11px; font-weight: 500;
      letter-spacing: 0.13em; text-transform: uppercase; text-decoration: none;
      border-radius: 2px; transition: background 0.2s; white-space: nowrap;
    }
    body.page-id-178 .index-open-btn:hover { background: var(--charcoal); }

    body.page-id-178 .index-body { max-width: 1400px; margin: 0 auto; padding: 56px 64px 80px; }

    body.page-id-178 .index-section { margin-bottom: 56px; }
    body.page-id-178 .index-section-label {
      font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--stone); margin-bottom: 20px; padding-bottom: 12px;
      border-bottom: 1px solid var(--rule);
    }
    body.page-id-178 .index-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2px; background: var(--rule); }

    body.page-id-178 .index-card {
      background: var(--off-white); padding: 28px 28px 32px;
      text-decoration: none; color: var(--umber);
      display: flex; flex-direction: column;
      transition: background 0.18s;
      position: relative;
    }
    body.page-id-178 .index-card:hover { background: var(--cream); }
    body.page-id-178 .index-card-path {
      font-size: 10px; font-weight: 400; letter-spacing: 0.1em;
      color: var(--stone); margin-bottom: 12px; font-family: monospace;
    }
    body.page-id-178 .index-card h3 { font-family: var(--serif); font-size: 20px; font-weight: 400; line-height: 1.3; margin-bottom: 10px; }
    body.page-id-178 .index-card p { font-size: 13px; color: var(--umber2); line-height: 1.7; flex: 1; }
    body.page-id-178 .index-card-arrow {
      margin-top: 20px; font-size: 11px; font-weight: 500;
      letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone);
    }
    body.page-id-178 .index-card:hover .index-card-arrow { color: var(--umber); }

    /* Status badges */
    body.page-id-178 .badge {
      display: inline-block; font-size: 9px; font-weight: 600;
      letter-spacing: 0.14em; text-transform: uppercase;
      padding: 3px 8px; border-radius: 2px; margin-bottom: 10px;
    }
    body.page-id-178 .badge-live { background: #E8F0E8; color: #3A6B3A; }
    body.page-id-178 .badge-draft { background: #F0EDE8; color: var(--stone); }

    body.page-id-178 .index-footer {
      border-top: 1px solid var(--rule); padding: 28px 64px;
      display: flex; align-items: center; justify-content: space-between;
      font-size: 12px; color: var(--stone);
    }

    @media (max-width: 700px) {
      body.page-id-178 .index-header, body.page-id-178 .index-body, body.page-id-178 .index-footer { padding-left: 24px; padding-right: 24px; }
      body.page-id-178 .index-grid { grid-template-columns: 1fr; }
    }
  



/* =========================================================== */
/* HERO BACKGROUND IMAGE OVERRIDES (per-page)                  */
/* =========================================================== */

body.page-id-171 .hero {
  background-image: linear-gradient(to top, rgba(49,47,40,0.78) 0%, rgba(49,47,40,0.45) 60%, rgba(49,47,40,0.25) 100%), url('/wp-content/uploads/2026/04/pay-at-close-hero-luxury-listing.jpg');
  background-size: cover;
  background-position: center;
  background-color: var(--charcoal);
}

body.page-id-175 .confirm-hero,
body.page-id-175 .hero,
body.page-id-175 .hero-img {
  background-image: linear-gradient(to bottom, rgba(253,252,247,0.55) 0%, rgba(253,252,247,0.35) 100%), url('/wp-content/uploads/2026/04/inquiry-confirmation-staging-hero.jpg');
  background-size: cover;
  background-position: center;
}

body.page-id-176 .confirm-hero,
body.page-id-176 .hero,
body.page-id-176 .hero-img {
  background-image: linear-gradient(to bottom, rgba(253,252,247,0.55) 0%, rgba(253,252,247,0.35) 100%), url('/wp-content/uploads/2026/04/inquiry-confirmation-interiors-hero.jpg');
  background-size: cover;
  background-position: center;
}

body.page-id-177 .hero-img {
  background-image: url('/wp-content/uploads/2026/04/about-hero-professional-portrait-electra.jpg');
  background-size: cover;
  background-position: center;
}


/* =========================================================== */
/* PAY-AT-CLOSE — hide all agent sections + footer fixes       */
/* =========================================================== */

/* Hide the AGENTS toggle and all sub-nav links to agent sections */
body.page-id-171 a[href="#agents"],
body.page-id-171 a[href="#agent-overview"],
body.page-id-171 a[href="#agent-how"],
body.page-id-171 a[href="#agent-compare"],
body.page-id-171 a[href="#agent-faq"],
body.page-id-171 a[href="#agents-titus"],
body.page-id-171 a[href="#agents-titus-overview"],
body.page-id-171 a[href="#agent-submit-btn"],
body.page-id-171 #snav-agents,
body.page-id-171 #agents,
body.page-id-171 #agents-notable,
body.page-id-171 #agent-overview,
body.page-id-171 #agent-how,
body.page-id-171 #agent-compare,
body.page-id-171 #agent-faq,
body.page-id-171 #faq-agents,
body.page-id-171 #agents-titus-header,
body.page-id-171 #agents-titus,
body.page-id-171 #agents-titus-overview,
body.page-id-171 #agent-submit-btn { display: none !important; }

/* Force footer grid layout on Pay-at-Close (override anything that sets display:block) */
body.page-id-171 footer .footer-grid-resp,
body.page-id-171 footer [style*="grid-template-columns"] {
  display: grid !important;
  grid-template-columns: 2fr repeat(3, 1fr) !important;
  gap: 48px !important;
}
@media (max-width: 960px) {
  body.page-id-171 footer .footer-grid-resp,
  body.page-id-171 footer [style*="grid-template-columns"] {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 540px) {
  body.page-id-171 footer .footer-grid-resp,
  body.page-id-171 footer [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}

/* Footer accordion (mobile only) — use CSS-only with native <details> */
body.page-id-171 footer details > summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6F6B60;
}
body.page-id-171 footer details > summary::-webkit-details-marker { display: none; }
body.page-id-171 footer details > summary::after {
  content: '+';
  font-size: 16px;
  margin-left: 8px;
  color: rgba(253,252,247,0.5);
}
body.page-id-171 footer details[open] > summary::after { content: '\2212'; }


/* =========================================================== */
/* ABOUT — hide TWEAKS dev panel + quote + secondary CTA       */
/* =========================================================== */
body.page-id-177 #tweaks-panel,
body.page-id-177 #tweaks-toggle,
body.page-id-177 #tweaks-close { display: none !important; }
body.page-id-177 .p-quote { display: none !important; }
body.page-id-177 .p-cta-actions a.btn-outline { display: none !important; }

/* Normalize paragraph spacing across about sections */
body.page-id-177 .about-section p,
body.page-id-177 .about-block-body p,
body.page-id-177 main p {
  margin-bottom: 1.5em;
}
body.page-id-177 .about-section p:last-child,
body.page-id-177 .about-block-body p:last-child {
  margin-bottom: 0;
}


/* =========================================================== */
/* HONEYBOOK TRIGGER BUTTONS — dark umber per brand            */
/* =========================================================== */
body.page-id-173 #pared-calculator-root .pared-btn-primary,
body.page-id-173 #pared-calculator-root .pared-btn-gold {
  background: var(--umber) !important;
  color: var(--off-white) !important;
  border: none !important;
}
body.page-id-173 #pared-calculator-root .pared-btn-primary:hover,
body.page-id-173 #pared-calculator-root .pared-btn-gold:hover {
  background: var(--charcoal) !important;
  opacity: 1 !important;
  transform: none !important;
}


/* =========================================================== */
/* PAY-AT-CLOSE — body text on dark step rows → cream          */
/* =========================================================== */
body.page-id-171 .step-row[style*="bg-darker"] p,
body.page-id-171 .step-row[style*="bg-dark"] p,
body.page-id-171 [data-bg="dark"] p,
body.page-id-171 [data-bg="dark"] li,
body.page-id-171 .step-row[style*="grad-4"] p,
body.page-id-171 .step-row[style*="grad-5"] p,
body.page-id-171 .step-row[style*="grad-6"] p,
body.page-id-171 .step-row[style*="rgb(139, 125, 107)"] p,
body.page-id-171 .step-row[style*="rgb(99, 81, 71)"] p,
body.page-id-171 .step-row[style*="rgb(75, 59, 34)"] p,
body.page-id-171 .step-row[style*="rgb(75, 54, 33)"] p,
body.page-id-171 .step-row[style*="#8B7D6B"] p,
body.page-id-171 .step-row[style*="#635147"] p,
body.page-id-171 .step-row[style*="#4B3B22"] p {
  color: #FDFCF7 !important;
}

/* =========================================================== */
/* FOOTER PEAR LOGO — cream-masked SVG (used by SPA Footer + static) */
/* =========================================================== */
.p-foot-logo, .footer-pear-logo {
  display: inline-block;
  width: 22px;
  height: 32px;
  background-color: rgba(253,252,247,0.85);
  -webkit-mask: url('/wp-content/uploads/2026/04/pear-logo-dark-brown.svg') no-repeat center / contain;
  mask: url('/wp-content/uploads/2026/04/pear-logo-dark-brown.svg') no-repeat center / contain;
  vertical-align: middle;
}


/* =========================================================== */
/* INQUIRY CONFIRMATIONS — charcoal text on hero + hide Journal */
/* =========================================================== */
body.page-id-175 .confirm-hero,
body.page-id-175 .confirm-hero *,
body.page-id-176 .confirm-hero,
body.page-id-176 .confirm-hero * {
  color: #312F28 !important;
}
body.page-id-175 .journal-section,
body.page-id-176 .journal-section { display: none !important; }


/* =========================================================== */
/* INQUIRY CONFIRMATIONS — hide "What happens next" flow section */
/* =========================================================== */
body.page-id-175 .flow-section,
body.page-id-176 .flow-section { display: none !important; }


/* =========================================================== */
/* INQUIRY CONFIRMATIONS — full-bleed hero overrides           */
/* =========================================================== */
body.page-id-175 .confirm-hero,
body.page-id-176 .confirm-hero {
  padding: 0 !important;
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  display: block !important;
  grid-template-columns: none !important;
  gap: 0 !important;
  height: clamp(360px, 42vh, 520px) !important;
}
body.page-id-175 .confirm-hero h1,
body.page-id-176 .confirm-hero h1,
body.page-id-175 .confirm-check,
body.page-id-176 .confirm-check {
  display: none !important;
}


/* =========================================================== */
/* STAGING CONFIRMATION — recolor pay-close-band to mid (#A19788) */
/* =========================================================== */
body.page-id-175 .pay-close-band {
  background: #A19788 !important;
}
body.page-id-175 .pay-close-band .pared-kicker {
  color: #4B3621 !important;
  opacity: 0.9;
}
body.page-id-175 .pay-close-slim-text h2 {
  color: #312F28 !important;
}
body.page-id-175 .pay-close-slim-text p {
  color: #4B3621 !important;
}
body.page-id-175 .pay-close-slim-stats {
  border-left-color: rgba(75,54,33,0.25) !important;
}
body.page-id-175 .pay-close-slim-stats > * {
  color: #312F28 !important;
}
body.page-id-175 .pay-close-btn {
  background: #4B3621 !important;
  color: #FDFCF7 !important;
}
body.page-id-175 .pay-close-btn:hover {
  background: #312F28 !important;
}
@media (max-width: 860px) {
  body.page-id-175 .pay-close-slim-stats {
    border-left: none !important;
    border-top: 0.5px solid rgba(75,54,33,0.25) !important;
  }
}
