/* =========================================================================
   SOUTHLAKE TREE SERVICES — stl-* layer
   Editorial-luxury visual system. Charcoal + antique bronze + warm ivory.
   Archivo (sans display) + Manrope (sans body).
   No card UI — horizontal-rule-divided content blocks, generous whitespace,
   centered classical layouts, small-caps eyebrows, thin bronze rules.
   Namespaced stl-* to prevent leakage to flagship or sibling stylesheets.
   ========================================================================= */

:root {
  --stl-charcoal:    #1c1d1f;
  --stl-charcoal-2:  #2a2b2e;
  --stl-graphite:    #3e4045;
  --stl-bronze:      #8a6a3a;
  --stl-bronze-deep: #6b502a;
  --stl-bronze-soft: #b89460;
  --stl-ivory:       #f6f1e6;
  --stl-ivory-warm:  #faf6ec;
  --stl-paper:       #fffdf7;
  --stl-rule:        rgba(138, 106, 58, 0.35);
  --stl-rule-faint:  rgba(28, 29, 31, 0.10);
  --stl-text:        #2a2b2e;
  --stl-muted:       #5e6066;
}

.stl-body {
  margin: 0;
  padding: 0;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--stl-text);
  background: var(--stl-paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.stl-body * { box-sizing: border-box; }
.stl-body img { max-width: 100%; display: block; }
.stl-body a { color: var(--stl-bronze-deep); text-decoration: none; }
.stl-body a:hover { color: var(--stl-charcoal); }

/* TYPOGRAPHIC SCALE — Cormorant for display, Manrope for body */
.stl-h1, .stl-h2, .stl-h3, .stl-h4 {
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--stl-charcoal);
  margin: 0;
}

.stl-h1 {
  font-size: clamp(40px, 5.6vw, 78px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-weight: 500;
}
.stl-h1 em { font-style: italic; color: var(--stl-bronze); font-weight: 500; }

.stl-h2 {
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.12;
  font-weight: 500;
}
.stl-h2 em { font-style: italic; color: var(--stl-bronze); }

.stl-h3 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 500;
}

.stl-eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stl-bronze);
  margin-bottom: 16px;
  display: inline-block;
}

.stl-rule-decor {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--stl-bronze);
  margin: 28px auto 28px;
  border: 0;
}

.stl-rule-decor.stl-left { margin-left: 0; margin-right: 0; }

/* TOPBAR — thin charcoal band, ivory text, bronze accent */
.stl-topbar {
  background: var(--stl-charcoal);
  color: var(--stl-ivory);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 11px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}
.stl-topbar a { color: var(--stl-bronze-soft); }
.stl-topbar a:hover { color: var(--stl-paper); }

/* EMERGENCY BANNER — ivory band, charcoal text, bronze rule */
.stl-emergency {
  background: var(--stl-ivory);
  color: var(--stl-charcoal);
  border-bottom: 1px solid var(--stl-rule);
  padding: 10px 48px;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-align: center;
  font-weight: 500;
}
.stl-emergency a {
  color: var(--stl-bronze-deep);
  font-weight: 700;
  border-bottom: 1px dotted var(--stl-bronze);
  margin-left: 6px;
}

/* NAV — paper bg, classical centered logotype, thin rules */
.stl-nav {
  background: var(--stl-paper);
  border-bottom: 1px solid var(--stl-rule-faint);
  padding: 20px 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.stl-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.stl-logo-img {
  height: 52px;
  width: auto;
}
.stl-logo-text {
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--stl-charcoal);
  letter-spacing: -0.005em;
  line-height: 1.05;
}
.stl-logo-text span {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stl-bronze);
  font-weight: 600;
  margin-top: 4px;
}
.stl-links {
  display: flex;
  justify-content: center;
  gap: 36px;
}
.stl-links a {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stl-charcoal);
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.stl-links a:hover {
  border-bottom-color: var(--stl-bronze);
  color: var(--stl-bronze-deep);
}
.stl-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  background: var(--stl-charcoal);
  color: var(--stl-ivory);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--stl-charcoal);
  transition: background .2s, color .2s;
}
.stl-cta:hover {
  background: var(--stl-bronze-deep);
  color: var(--stl-paper);
  border-color: var(--stl-bronze-deep);
}

.stl-hamburger { display: none; }

/* BREADCRUMBS — small caps, bronze separators */
.stl-crumbs {
  background: var(--stl-paper);
  padding: 18px 48px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--stl-rule-faint);
}
.stl-crumbs a { color: var(--stl-graphite); }
.stl-crumbs a:hover { color: var(--stl-bronze-deep); }
.stl-crumbs .crumb-sep { color: var(--stl-bronze); margin: 0 12px; }

/* HERO — full-bleed centered editorial, no card, no asymmetric grid */
.stl-hero {
  background: linear-gradient(180deg, var(--stl-charcoal) 0%, var(--stl-charcoal-2) 100%);
  color: var(--stl-ivory);
  padding: 110px 32px 130px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stl-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 0%, rgba(184,148,96,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.stl-hero-inner {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.stl-hero-eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--stl-bronze-soft);
  font-weight: 600;
  margin-bottom: 28px;
}
.stl-hero .stl-h1 { color: var(--stl-ivory); }
.stl-hero .stl-h1 em { color: var(--stl-bronze-soft); }
.stl-hero-rule {
  display: block;
  width: 80px;
  height: 1px;
  background: var(--stl-bronze);
  margin: 36px auto;
  border: 0;
}
.stl-hero-lede {
  max-width: 640px;
  margin: 0 auto 36px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(246, 241, 230, 0.85);
  font-weight: 400;
}
.stl-hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.stl-btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--stl-bronze);
  transition: background .2s, color .2s, border-color .2s;
}
.stl-btn-primary {
  background: var(--stl-bronze);
  color: var(--stl-charcoal);
}
.stl-btn-primary:hover {
  background: var(--stl-bronze-soft);
  color: var(--stl-charcoal);
}
.stl-btn-ghost {
  background: transparent;
  color: var(--stl-bronze-soft);
}
.stl-btn-ghost:hover {
  background: var(--stl-bronze-deep);
  color: var(--stl-paper);
  border-color: var(--stl-bronze-deep);
}
.stl-hero-meta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stl-bronze-soft);
  font-weight: 500;
}
.stl-hero-meta span:nth-child(even) { color: var(--stl-bronze); }

/* SECTIONS — generous padding, no alternating bg, hr-divided */
.stl-section {
  padding: 100px 32px;
  background: var(--stl-paper);
  border-bottom: 1px solid var(--stl-rule-faint);
}
.stl-section-ivory {
  background: var(--stl-ivory-warm);
}
.stl-section-charcoal {
  background: var(--stl-charcoal);
  color: var(--stl-ivory);
}
.stl-section-charcoal .stl-h2,
.stl-section-charcoal .stl-h3 { color: var(--stl-ivory); }
.stl-section-charcoal .stl-eyebrow { color: var(--stl-bronze-soft); }
.stl-section-charcoal a { color: var(--stl-bronze-soft); }
.stl-section-charcoal a:hover { color: var(--stl-paper); }

.stl-section-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.stl-section-head {
  text-align: center;
  margin-bottom: 64px;
}
.stl-section-head .stl-eyebrow { display: inline-block; }
.stl-section-sub {
  max-width: 640px;
  margin: 24px auto 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--stl-muted);
  text-align: center;
}
.stl-section-charcoal .stl-section-sub { color: rgba(246,241,230,0.78); }

/* HIGHLIGHTS — numbered editorial blocks, no cards, hr-separated */
.stl-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 920px;
  margin: 0 auto;
}
.stl-highlight {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 36px;
  padding: 36px 0;
  border-top: 1px solid var(--stl-rule);
  align-items: start;
}
.stl-highlight:last-child { border-bottom: 1px solid var(--stl-rule); }
.stl-highlight-num {
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-size: 44px;
  font-weight: 400;
  color: var(--stl-bronze);
  font-style: italic;
  line-height: 1;
}
.stl-highlight h3 {
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--stl-charcoal);
}
.stl-highlight p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--stl-muted);
}
.stl-section-charcoal .stl-highlight { border-top-color: rgba(184,148,96,0.30); }
.stl-section-charcoal .stl-highlight:last-child { border-bottom-color: rgba(184,148,96,0.30); }
.stl-section-charcoal .stl-highlight h3 { color: var(--stl-ivory); }
.stl-section-charcoal .stl-highlight p { color: rgba(246,241,230,0.78); }

/* PROCESS — vertical editorial timeline, no boxes */
.stl-process {
  max-width: 760px;
  margin: 0 auto;
}
.stl-process-step {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--stl-rule);
  align-items: start;
}
.stl-process-step:last-child { border-bottom: 1px solid var(--stl-rule); }
.stl-process-num {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stl-bronze);
  padding-top: 10px;
}
.stl-process-title {
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-size: 26px;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 10px;
  color: var(--stl-charcoal);
}
.stl-process-step p {
  margin: 0;
  color: var(--stl-muted);
  font-size: 16px;
  line-height: 1.7;
}

/* WHAT INCLUDED — two column inline list, bronze checkmarks */
.stl-included {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
  max-width: 920px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.stl-included li {
  padding: 18px 0;
  border-top: 1px solid var(--stl-rule-faint);
  font-size: 16px;
  line-height: 1.55;
  color: var(--stl-text);
  position: relative;
  padding-left: 28px;
}
.stl-included li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 18px;
  color: var(--stl-bronze);
  font-weight: 700;
}

/* PRICING — centered editorial slab, no card */
.stl-pricing {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.stl-price-range {
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--stl-charcoal);
  line-height: 1;
  font-style: italic;
}
.stl-price-note {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stl-bronze);
  font-weight: 600;
  margin-top: 18px;
}
.stl-price-factors {
  margin-top: 64px;
  text-align: left;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.stl-price-factors h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stl-graphite);
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
.stl-factor-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.stl-factor-list li {
  padding: 14px 0;
  border-top: 1px solid var(--stl-rule-faint);
  font-size: 15px;
  color: var(--stl-text);
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
}
.stl-factor-list li:last-child { border-bottom: 1px solid var(--stl-rule-faint); }
.stl-factor-list li::before {
  content: counter(stl-factor, upper-roman) ".";
  counter-increment: stl-factor;
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-style: italic;
  color: var(--stl-bronze);
  font-size: 18px;
}
.stl-factor-list { counter-reset: stl-factor; }

/* LOCAL FIELD NOTES — two-column on combo */
.stl-local {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  max-width: 920px;
  margin: 0 auto;
}
.stl-local-prose {
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-size: 22px;
  line-height: 1.55;
  font-style: italic;
  color: var(--stl-graphite);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.stl-local-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 56px;
}
.stl-local-cols h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stl-bronze);
  font-weight: 700;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--stl-rule);
  padding-bottom: 14px;
}
.stl-local-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.stl-local-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--stl-rule-faint);
  font-size: 15px;
}
.stl-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.stl-tag {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 14px;
  border: 1px solid var(--stl-rule);
  color: var(--stl-graphite);
  background: var(--stl-paper);
}

/* FAQ — large serif questions, thin rule between, no boxes */
.stl-faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.stl-faq-item {
  padding: 32px 0;
  border-top: 1px solid var(--stl-rule);
}
.stl-faq-item:last-child {
  border-bottom: 1px solid var(--stl-rule);
}
.stl-faq-q {
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-size: 26px;
  font-weight: 500;
  font-style: italic;
  color: var(--stl-charcoal);
  margin: 0 0 14px;
  line-height: 1.3;
}
.stl-faq-a {
  font-size: 16px;
  line-height: 1.75;
  color: var(--stl-muted);
}

/* MAP FRAME — thin bronze border, no shadow */
.stl-map-frame {
  border: 1px solid var(--stl-rule);
  background: var(--stl-paper);
  padding: 8px;
  max-width: 1020px;
  margin: 0 auto;
}
.stl-map-frame iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

/* AREAS / CITY GRID — text links with bronze underline accent, no cards */
.stl-area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0;
  max-width: 1080px;
  margin: 0 auto;
  border-top: 1px solid var(--stl-rule);
  border-left: 1px solid var(--stl-rule);
}
.stl-area-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-right: 1px solid var(--stl-rule);
  border-bottom: 1px solid var(--stl-rule);
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-size: 20px;
  color: var(--stl-charcoal);
  font-weight: 500;
  background: var(--stl-paper);
  transition: background .2s, color .2s;
}
.stl-area-link:hover {
  background: var(--stl-charcoal);
  color: var(--stl-bronze-soft);
}
.stl-area-link .stl-arrow {
  font-family: 'Manrope', sans-serif;
  color: var(--stl-bronze);
  font-size: 14px;
}
.stl-area-link:hover .stl-arrow { color: var(--stl-bronze-soft); }

/* PROSE BLOCK — service description on service page */
.stl-prose {
  max-width: 740px;
  margin: 0 auto;
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-size: 21px;
  line-height: 1.65;
  color: var(--stl-graphite);
  font-weight: 400;
  text-align: left;
}
.stl-section-charcoal .stl-prose { color: rgba(246,241,230,0.85); }

/* CONTACT — full-bleed charcoal, ivory text, big bronze phone */
.stl-contact {
  background: var(--stl-charcoal);
  color: var(--stl-ivory);
  padding: 120px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stl-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 100%, rgba(184,148,96,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.stl-contact-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.stl-contact .stl-eyebrow { color: var(--stl-bronze-soft); }
.stl-contact-h2 {
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  font-style: italic;
  color: var(--stl-ivory);
  margin: 0 0 28px;
  line-height: 1.1;
}
.stl-contact-h2 mark {
  background: transparent;
  color: var(--stl-bronze-soft);
}
.stl-contact-lede {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(246,241,230,0.82);
  margin: 0 auto 44px;
  max-width: 600px;
}
.stl-contact-phone {
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 500;
  color: var(--stl-bronze-soft);
  letter-spacing: -0.01em;
  display: inline-block;
  border-bottom: 1px solid var(--stl-bronze);
  padding-bottom: 10px;
  margin-bottom: 28px;
  font-style: italic;
}
.stl-contact-phone:hover { color: var(--stl-paper); border-bottom-color: var(--stl-paper); }
.stl-contact-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.stl-contact-meta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stl-bronze-soft);
  font-weight: 500;
}
.stl-contact-meta span:nth-child(even) { color: var(--stl-bronze); }

/* FOOTER — refined editorial, charcoal bg, bronze headers */
.stl-footer {
  background: var(--stl-charcoal-2);
  color: var(--stl-ivory);
  padding: 80px 48px 36px;
  border-top: 1px solid var(--stl-bronze-deep);
}
.stl-footer-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  max-width: 1200px;
  margin: 0 auto 56px;
}
.stl-footer-brand {
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--stl-ivory);
  margin-bottom: 6px;
  line-height: 1.05;
}
.stl-footer-brand span {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stl-bronze-soft);
  margin-top: 6px;
  font-weight: 600;
}
.stl-footer-tagline {
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-style: italic;
  color: var(--stl-bronze-soft);
  font-size: 17px;
  margin: 16px 0 18px;
}
.stl-footer-prose {
  color: rgba(246,241,230,0.72);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 380px;
}
.stl-footer-phone {
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-size: 24px;
  font-style: italic;
  color: var(--stl-bronze-soft);
  display: block;
  margin-bottom: 4px;
}
.stl-footer-col h5 {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--stl-bronze-soft);
  margin: 0 0 18px;
  border-bottom: 1px solid var(--stl-bronze-deep);
  padding-bottom: 12px;
}
.stl-footer-col a {
  display: block;
  color: rgba(246,241,230,0.78);
  font-size: 14px;
  padding: 6px 0;
  letter-spacing: 0.02em;
}
.stl-footer-col a:hover { color: var(--stl-bronze-soft); }
.stl-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(184,148,96,0.20);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stl-bronze-soft);
  font-weight: 500;
}

/* HOMEPAGE — services list (numbered editorial rows) */
.stl-services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--stl-rule);
}
.stl-service-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 36px 28px;
  border-bottom: 1px solid var(--stl-rule);
  border-right: 1px solid var(--stl-rule);
  color: var(--stl-text);
  transition: background 200ms ease;
}
.stl-service-row:nth-child(2n) { border-right: none; }
.stl-service-row:hover { background: var(--stl-ivory-warm); }
.stl-service-num {
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-style: italic;
  font-size: 32px;
  color: var(--stl-bronze);
  letter-spacing: -0.02em;
}
.stl-service-name {
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--stl-charcoal);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.stl-service-row p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--stl-graphite);
}

/* HOMEPAGE — stat row (refined, no boxes) */
.stl-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid rgba(184,148,96,0.30);
  border-bottom: 1px solid rgba(184,148,96,0.30);
  padding: 36px 0;
}
.stl-stat-row > div {
  text-align: center;
  border-right: 1px solid rgba(184,148,96,0.18);
  padding: 0 16px;
}
.stl-stat-row > div:last-child { border-right: none; }
.stl-stat-num {
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-style: italic;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 500;
  color: var(--stl-bronze-soft);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stl-stat-lbl {
  margin-top: 14px;
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stl-ivory);
  opacity: 0.78;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .stl-services-list { grid-template-columns: 1fr; }
  .stl-service-row { border-right: none !important; }
  .stl-stat-row { grid-template-columns: repeat(2, 1fr); gap: 28px 0; padding: 28px 0; }
  .stl-stat-row > div:nth-child(2n) { border-right: none; }
}

/* RESPONSIVE — base */
@media (max-width: 900px) {
  .stl-nav {
    grid-template-columns: auto auto;
    padding: 16px 24px;
  }
  .stl-links { display: none; }
  .stl-cta { display: none; }
  .stl-hamburger {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 1px solid var(--stl-rule);
    color: var(--stl-charcoal);
    padding: 10px 14px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
  }
  .nav-mobile-open .stl-links {
    display: flex;
    flex-direction: column;
    grid-column: 1 / -1;
    border-top: 1px solid var(--stl-rule);
    margin-top: 14px;
    padding-top: 14px;
  }
  .nav-mobile-open .stl-cta { display: inline-flex; grid-column: 1 / -1; justify-content: center; }
  .stl-topbar { padding: 9px 24px; flex-wrap: wrap; gap: 8px; font-size: 10px; }
  .stl-emergency { padding: 9px 24px; font-size: 12px; }
  .stl-section { padding: 70px 24px; }
  .stl-hero { padding: 80px 24px 90px; }
  .stl-included { grid-template-columns: 1fr; gap: 0; }
  .stl-local-cols { grid-template-columns: 1fr; gap: 36px; }
  .stl-highlight { grid-template-columns: 1fr; gap: 12px; }
  .stl-highlight-num { font-size: 36px; }
  .stl-process-step { grid-template-columns: 1fr; gap: 8px; }
  .stl-footer-row { grid-template-columns: 1fr; gap: 36px; }
  .stl-footer-bottom { flex-direction: column; gap: 12px; }
}

/* =========================================================================
   MAGAZINE LAYER — boutique editorial layout for the homepage and overrides.
   Sidebar + magazine cover, fleurons, drop caps, leader dots, large numerals.
   Genuinely distinct DOM/visual structure from flagship/MTT/GPTS.
   ========================================================================= */

/* PAGE SHELL — sticky left rail + main column */
.stl-shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
  background: var(--stl-paper);
}

.stl-aside {
  position: sticky;
  top: 0;
  align-self: start;
  height: 100vh;
  background: var(--stl-charcoal);
  color: var(--stl-ivory);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--stl-bronze-deep);
}
.stl-aside-mark {
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 64px;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--stl-bronze-soft);
  margin: 0 0 6px;
}
.stl-aside-mark span { color: var(--stl-ivory); font-style: normal; font-weight: 400; }
.stl-aside-tag {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--stl-bronze-soft);
  margin: 0 0 36px;
  font-weight: 600;
}
.stl-aside-rule {
  border: 0;
  border-top: 1px solid var(--stl-bronze-deep);
  margin: 0 0 28px;
}
.stl-aside-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stl-aside-nav a {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 241, 230, 0.74);
  font-weight: 500;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}
.stl-aside-nav a::before {
  content: counter(stl-aside-c, decimal-leading-zero);
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-style: italic;
  font-size: 14px;
  color: var(--stl-bronze-soft);
  letter-spacing: 0;
  width: 22px;
}
.stl-aside-nav { counter-reset: stl-aside-c; }
.stl-aside-nav a { counter-increment: stl-aside-c; }
.stl-aside-nav a:hover { color: var(--stl-paper); }
.stl-aside-spacer { flex: 1; }
.stl-aside-cta {
  display: block;
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-style: italic;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--stl-bronze-soft) !important;
  border-top: 1px solid var(--stl-bronze-deep);
  padding-top: 22px;
  margin-bottom: 6px;
}
.stl-aside-meta {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(184, 148, 96, 0.6);
  font-weight: 500;
  line-height: 1.8;
}
.stl-aside-meta a { color: rgba(184, 148, 96, 0.85); border-bottom: 1px dotted rgba(184,148,96,0.5); }

.stl-main {
  background: var(--stl-paper);
  min-width: 0;
}

/* MAGAZINE COVER — full-bleed asymmetric hero, no centered text block */
.stl-cover {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  min-height: 88vh;
  border-bottom: 1px solid var(--stl-rule);
}
.stl-cover-art {
  position: relative;
  background:
    linear-gradient(155deg, rgba(28,29,31,0.78) 0%, rgba(28,29,31,0.55) 45%, rgba(62,51,32,0.62) 100%),
    url("/assets/images/hero.jpg") center/cover no-repeat;
  background-color: #1c1d1f;
  color: var(--stl-ivory);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  min-height: 88vh;
}
.stl-cover-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 20%, rgba(184,148,96,0.22) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 90%, rgba(107,80,42,0.30) 0%, transparent 55%);
  pointer-events: none;
}
.stl-cover-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      rgba(246,241,230,0.025) 0,
      rgba(246,241,230,0.025) 1px,
      transparent 1px,
      transparent 4px
    );
  pointer-events: none;
}
.stl-cover-issue {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--stl-bronze-soft);
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.stl-cover-issue span { color: rgba(246,241,230,0.55); }
.stl-cover-mast {
  position: relative;
  z-index: 1;
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-weight: 500;
  font-size: clamp(72px, 9.5vw, 144px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--stl-ivory);
  margin: 0;
}
.stl-cover-mast em {
  display: block;
  font-style: italic;
  color: var(--stl-bronze-soft);
  font-weight: 500;
  font-size: 0.78em;
  letter-spacing: -0.02em;
  margin-top: -6px;
}
.stl-cover-fleur {
  position: relative;
  z-index: 1;
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-size: 28px;
  color: var(--stl-bronze-soft);
  text-align: center;
  letter-spacing: 0.4em;
  margin: 18px 0 0;
}
.stl-cover-side {
  background: var(--stl-ivory);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid var(--stl-rule);
}
.stl-cover-toc {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--stl-bronze);
  font-weight: 600;
  margin-bottom: 36px;
}
.stl-cover-toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-size: 18px;
  color: var(--stl-charcoal);
}
.stl-cover-toc-list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--stl-rule-faint);
}
.stl-cover-toc-list li::before {
  content: counter(stl-toc, decimal-leading-zero);
  font-style: italic;
  color: var(--stl-bronze);
  font-size: 14px;
  width: 26px;
}
.stl-cover-toc-list { counter-reset: stl-toc; }
.stl-cover-toc-list li { counter-increment: stl-toc; }
.stl-cover-toc-list .stl-toc-page {
  margin-left: auto;
  font-style: italic;
  color: var(--stl-bronze);
  font-size: 14px;
}
.stl-cover-pull {
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.4;
  color: var(--stl-graphite);
  margin: 28px 0 0;
  padding-top: 24px;
  border-top: 2px solid var(--stl-bronze);
}
.stl-cover-pull cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--stl-bronze);
  font-weight: 600;
}

/* LETTER — drop-cap intro paragraph, marginalia */
.stl-letter {
  background: var(--stl-paper);
  padding: 96px 56px;
  border-bottom: 1px solid var(--stl-rule);
}
.stl-letter-inner {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 56px;
  align-items: start;
}
.stl-letter-margin {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--stl-bronze);
  font-weight: 600;
  text-align: right;
  border-right: 1px solid var(--stl-rule);
  padding-right: 28px;
  line-height: 1.8;
}
.stl-letter-margin span {
  display: block;
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--stl-graphite);
  margin-top: 6px;
  font-weight: 400;
}
.stl-letter-body p {
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-size: 22px;
  line-height: 1.55;
  color: var(--stl-charcoal);
  margin: 0 0 18px;
}
.stl-letter-body p:first-child::first-letter {
  font-weight: 600;
  font-size: 84px;
  line-height: 0.85;
  color: var(--stl-bronze);
  float: left;
  padding: 4px 14px 0 0;
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
}
.stl-letter-sig {
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-style: italic;
  color: var(--stl-bronze-deep);
  font-size: 22px;
  margin-top: 14px;
}

/* MAGAZINE — 3-column flowing services display, large outlined numerals */
.stl-mag {
  background: var(--stl-ivory);
  padding: 96px 56px;
  border-bottom: 1px solid var(--stl-rule);
}
.stl-mag-head {
  max-width: 1100px;
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: end;
  border-bottom: 1px solid var(--stl-rule);
  padding-bottom: 40px;
}
.stl-mag-head h2 {
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-weight: 500;
  font-size: clamp(40px, 4vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--stl-charcoal);
  margin: 0;
}
.stl-mag-head h2 em { font-style: italic; color: var(--stl-bronze); }
.stl-mag-head p {
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--stl-graphite);
  margin: 0;
}
.stl-mag-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stl-mag-item {
  display: block;
  position: relative;
  padding: 36px 28px 36px 0;
  border-right: 1px solid var(--stl-rule);
  border-bottom: 1px solid var(--stl-rule);
  color: var(--stl-charcoal);
  transition: background 220ms ease;
}
.stl-mag-item:nth-child(3n) { border-right: none; padding-right: 0; }
.stl-mag-item:nth-last-child(-n+3) { border-bottom: none; }
.stl-mag-item:hover { background: var(--stl-ivory-warm); }
.stl-mag-item:hover .stl-mag-num { color: var(--stl-bronze); }
.stl-mag-num {
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-weight: 500;
  font-size: 96px;
  line-height: 0.9;
  color: rgba(138, 106, 58, 0.18);
  -webkit-text-stroke: 1px var(--stl-bronze);
  letter-spacing: -0.04em;
  margin-bottom: 18px;
  font-style: italic;
  transition: color 220ms;
}
.stl-mag-name {
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--stl-charcoal);
  margin: 0 0 12px;
}
.stl-mag-item p {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: var(--stl-graphite);
  margin: 0 0 18px;
}
.stl-mag-link {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stl-bronze-deep);
  font-weight: 600;
}

/* DIRECTORY — leader-dot service area listing */
.stl-directory {
  background: var(--stl-paper);
  padding: 96px 56px;
  border-bottom: 1px solid var(--stl-rule);
}
.stl-directory-inner {
  max-width: 920px;
  margin: 0 auto;
}
.stl-directory-head {
  text-align: center;
  margin-bottom: 56px;
}
.stl-directory-head h2 {
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-weight: 500;
  font-size: clamp(36px, 3.6vw, 54px);
  line-height: 1.05;
  margin: 0 0 14px;
  color: var(--stl-charcoal);
}
.stl-directory-head h2 em { font-style: italic; color: var(--stl-bronze); }
.stl-directory-head p {
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-style: italic;
  font-size: 18px;
  color: var(--stl-graphite);
  max-width: 620px;
  margin: 0 auto;
}
.stl-directory-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--stl-bronze);
}
.stl-directory-list li {
  border-bottom: 1px solid var(--stl-rule-faint);
}
.stl-directory-list li.stl-directory-anchor {
  border-top: 1px solid var(--stl-bronze);
  border-bottom: 1px solid var(--stl-bronze);
  background: linear-gradient(90deg, var(--stl-ivory) 0%, transparent 100%);
}
.stl-directory-list a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 8px;
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-size: 22px;
  color: var(--stl-charcoal);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.stl-directory-list a:hover { color: var(--stl-bronze-deep); background: var(--stl-ivory); }
.stl-directory-leader {
  flex: 1;
  border-bottom: 1.5px dotted rgba(138, 106, 58, 0.45);
  margin-bottom: 6px;
}
.stl-directory-county {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stl-bronze);
  font-weight: 600;
  font-style: normal;
}
.stl-directory-arrow {
  color: var(--stl-bronze);
  font-size: 18px;
  font-style: italic;
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  width: 20px;
  text-align: right;
}

/* DOSSIER — large editorial pull quote / numbers display */
.stl-dossier {
  background: var(--stl-charcoal);
  color: var(--stl-ivory);
  padding: 110px 56px;
  border-bottom: 1px solid var(--stl-bronze-deep);
}
.stl-dossier-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.stl-dossier-eye {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--stl-bronze-soft);
  font-weight: 600;
  margin-bottom: 28px;
  text-align: center;
}
.stl-dossier-quote {
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.32;
  color: var(--stl-ivory);
  text-align: center;
  letter-spacing: -0.005em;
  margin: 0 auto 48px;
  max-width: 880px;
}
.stl-dossier-quote::before { content: "“"; color: var(--stl-bronze-soft); font-size: 1.2em; }
.stl-dossier-quote::after  { content: "”"; color: var(--stl-bronze-soft); font-size: 1.2em; }
.stl-dossier-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(184, 148, 96, 0.25);
  padding-top: 36px;
}
.stl-dossier-numbers > div {
  text-align: center;
  border-right: 1px solid rgba(184, 148, 96, 0.18);
  padding: 0 16px;
}
.stl-dossier-numbers > div:last-child { border-right: none; }
.stl-dossier-num {
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-style: italic;
  font-size: clamp(54px, 5.5vw, 88px);
  line-height: 1;
  color: var(--stl-bronze-soft);
  letter-spacing: -0.025em;
  font-weight: 500;
}
.stl-dossier-lbl {
  margin-top: 14px;
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(246, 241, 230, 0.68);
  font-weight: 600;
}

/* COLUMNS — magazine 2-col flowing FAQ + question bullet decoration */
.stl-columns {
  background: var(--stl-ivory);
  padding: 96px 56px;
  border-bottom: 1px solid var(--stl-rule);
}
.stl-columns-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.stl-columns-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--stl-rule);
  padding-bottom: 32px;
}
.stl-columns-head h2 {
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-weight: 500;
  font-size: clamp(40px, 4vw, 60px);
  line-height: 1;
  margin: 0;
  color: var(--stl-charcoal);
}
.stl-columns-head h2 em { font-style: italic; color: var(--stl-bronze); }
.stl-columns-head p {
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-style: italic;
  font-size: 20px;
  color: var(--stl-graphite);
  margin: 0;
}
.stl-columns-grid {
  column-count: 2;
  column-gap: 64px;
}
.stl-columns-q {
  display: block;
  break-inside: avoid;
  margin-bottom: 36px;
}
.stl-columns-q h3 {
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
  color: var(--stl-charcoal);
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.stl-columns-q h3::before {
  content: "Q.";
  font-style: normal;
  color: var(--stl-bronze);
  margin-right: 8px;
  font-weight: 600;
}
.stl-columns-q p {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--stl-graphite);
  margin: 0;
}

/* CONCIERGE — bottom contact block with refined two-column composition */
.stl-concierge {
  background: var(--stl-charcoal);
  color: var(--stl-ivory);
  padding: 110px 56px;
}
.stl-concierge-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: end;
  border-top: 2px solid var(--stl-bronze);
  padding-top: 48px;
}
.stl-concierge-mast {
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-weight: 500;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1;
  color: var(--stl-ivory);
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.stl-concierge-mast em { font-style: italic; color: var(--stl-bronze-soft); }
.stl-concierge-lede {
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-style: italic;
  font-size: 20px;
  line-height: 1.55;
  color: rgba(246, 241, 230, 0.78);
  margin: 0;
  max-width: 460px;
}
.stl-concierge-side {
  text-align: right;
}
.stl-concierge-tel {
  display: block;
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-style: italic;
  font-size: clamp(36px, 4vw, 54px);
  color: var(--stl-bronze-soft);
  letter-spacing: -0.02em;
  border-bottom: 1px solid rgba(184, 148, 96, 0.5);
  padding-bottom: 14px;
  margin-bottom: 14px;
}
.stl-concierge-tel:hover { color: var(--stl-paper); }
.stl-concierge-meta {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(184, 148, 96, 0.85);
  font-weight: 600;
  line-height: 2;
}
.stl-concierge-meta a { color: rgba(246, 241, 230, 0.85); border-bottom: 1px dotted rgba(246,241,230,0.4); }

/* COLOPHON — small editorial footer (replaces the big multi-col footer on homepage) */
.stl-colophon {
  background: #15161a;
  color: rgba(246, 241, 230, 0.55);
  padding: 36px 56px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}
.stl-colophon a { color: var(--stl-bronze-soft); border-bottom: 1px dotted rgba(184,148,96,0.35); }

/* RESPONSIVE — collapse the magazine layout */
@media (max-width: 1080px) {
  .stl-shell { grid-template-columns: 1fr; }
  .stl-aside {
    position: static;
    height: auto;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    padding: 24px 32px;
    gap: 20px;
  }
  .stl-aside-mark { font-size: 38px; margin: 0; }
  .stl-aside-tag { display: none; }
  .stl-aside-rule { display: none; }
  .stl-aside-nav { flex-direction: row; flex-wrap: wrap; gap: 16px; }
  .stl-aside-nav a { padding: 0; }
  .stl-aside-nav a::before { display: none; }
  .stl-aside-spacer { display: none; }
  .stl-aside-cta { font-size: 22px; border: none; padding: 0; margin: 0 0 0 auto; }
  .stl-aside-meta { display: none; }

  .stl-cover { grid-template-columns: 1fr; min-height: auto; }
  .stl-cover-art { padding: 56px 32px; }
  .stl-cover-side { padding: 48px 32px; }

  .stl-letter, .stl-mag, .stl-directory, .stl-dossier, .stl-columns, .stl-concierge { padding-left: 32px; padding-right: 32px; }
  .stl-letter-inner { grid-template-columns: 1fr; gap: 24px; }
  .stl-letter-margin { text-align: left; border-right: none; border-bottom: 1px solid var(--stl-rule); padding: 0 0 16px; }
  .stl-mag-head { grid-template-columns: 1fr; gap: 18px; }
  .stl-mag-grid { grid-template-columns: 1fr; }
  .stl-mag-item { border-right: none !important; padding-right: 0 !important; }
  .stl-dossier-numbers { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .stl-dossier-numbers > div:nth-child(2n) { border-right: none; }
  .stl-columns-grid { column-count: 1; }
  .stl-columns-head { grid-template-columns: 1fr; gap: 16px; }
  .stl-concierge-inner { grid-template-columns: 1fr; gap: 36px; align-items: start; }
  .stl-concierge-side { text-align: left; }
}

/* =================================================================
   EDITORIAL REVIVAL LAYER — restored section-stacked layout
   with brown/charcoal gradient + button drop shadows + sharper
   visual contrast between sections.
   ================================================================= */

/* Hero photo with brown/charcoal gradient overlay */
.stl-hero.stl-hero-photo {
  position: relative;
  background:
    linear-gradient(155deg,
      rgba(28,29,31,0.82) 0%,
      rgba(28,29,31,0.62) 45%,
      rgba(62,51,32,0.68) 100%),
    radial-gradient(circle at 78% 18%, rgba(138,106,58,0.30) 0%, rgba(138,106,58,0) 55%),
    url("/assets/images/hero.jpg") center/cover no-repeat;
  color: var(--stl-ivory);
  padding: 120px 32px 140px;
  overflow: hidden;
}
.stl-hero.stl-hero-photo::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 6px;
  background: linear-gradient(90deg,
    rgba(138,106,58,0) 0%,
    rgba(138,106,58,0.85) 30%,
    rgba(138,106,58,0.85) 70%,
    rgba(138,106,58,0) 100%);
}
.stl-hero.stl-hero-photo .stl-hero-eyebrow {
  color: rgba(246,241,230,0.78);
  letter-spacing: 0.42em;
}
.stl-hero.stl-hero-photo .stl-h1 {
  color: var(--stl-ivory);
  text-shadow: 0 2px 18px rgba(0,0,0,0.45), 0 1px 2px rgba(0,0,0,0.25);
}
.stl-hero.stl-hero-photo .stl-h1 em {
  color: #d8b888;
  font-style: italic;
}
.stl-hero.stl-hero-photo .stl-hero-rule {
  border: 0;
  width: 72px;
  height: 2px;
  background: #d8b888;
  margin: 28px 0;
  opacity: 0.95;
}
.stl-hero.stl-hero-photo .stl-hero-lede {
  color: rgba(246,241,230,0.92);
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}
.stl-hero.stl-hero-photo .stl-hero-meta {
  color: rgba(246,241,230,0.7);
  margin-top: 28px;
  letter-spacing: 0.18em;
}

/* Drop shadows on primary CTAs — applied broadly via the modifier class */
.stl-btn-primary {
  box-shadow:
    0 10px 26px rgba(28,29,31,0.32),
    0 4px 10px rgba(138,106,58,0.32),
    inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.stl-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 34px rgba(28,29,31,0.38),
    0 6px 14px rgba(138,106,58,0.42),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
.stl-btn-primary:active {
  transform: translateY(0);
  box-shadow:
    0 6px 14px rgba(28,29,31,0.30),
    0 2px 6px rgba(138,106,58,0.28);
}
/* Ghost button gets a subtle shadow on the photo hero only */
.stl-hero.stl-hero-photo .stl-btn-ghost {
  border-color: rgba(216,184,136,0.7);
  color: var(--stl-ivory);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.stl-hero.stl-hero-photo .stl-btn-ghost:hover {
  background: rgba(246,241,230,0.10);
  border-color: #d8b888;
}

/* PHILOSOPHY — feature treatment with bronze ornament + paper texture */
.stl-section.stl-section-feature {
  background:
    radial-gradient(ellipse at top, rgba(138,106,58,0.06) 0%, rgba(138,106,58,0) 60%),
    var(--stl-paper, #faf6ec);
  border-top: 1px solid rgba(138,106,58,0.18);
  border-bottom: 1px solid rgba(138,106,58,0.18);
  position: relative;
}
.stl-section.stl-section-feature::before,
.stl-section.stl-section-feature::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(138,106,58,0.6), transparent);
}
.stl-section.stl-section-feature::before { top: 38px; }
.stl-section.stl-section-feature::after { bottom: 38px; }

.stl-rule-decor {
  border: 0;
  height: 14px;
  width: 120px;
  margin: 22px auto 8px;
  background:
    radial-gradient(circle, var(--stl-bronze, #8a6a3a) 1.5px, transparent 2px) center/14px 14px repeat-x,
    linear-gradient(90deg, transparent 0, rgba(138,106,58,0.45) 50%, transparent 100%) center/100% 1px no-repeat;
  opacity: 0.85;
}

.stl-prose-feature {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-size: 22px;
  line-height: 1.7;
  color: #2a2c30;
}
.stl-prose-feature p::first-letter {
  font-size: 56px;
  font-weight: 600;
  float: left;
  line-height: 0.9;
  padding: 6px 10px 0 0;
  color: var(--stl-bronze, #8a6a3a);
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
}

/* Anchor-city home-base callout */
.stl-area-link.stl-area-anchor {
  display: inline-flex;
  background: linear-gradient(135deg, #1c1d1f 0%, #2a2622 55%, #3e3320 100%);
  color: var(--stl-ivory);
  border: 1px solid rgba(216,184,136,0.4);
  padding: 22px 38px;
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow:
    0 14px 32px rgba(28,29,31,0.30),
    0 4px 10px rgba(138,106,58,0.28),
    inset 0 1px 0 rgba(216,184,136,0.18);
  transition: transform .18s ease, box-shadow .18s ease;
}
.stl-area-link.stl-area-anchor:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 40px rgba(28,29,31,0.36),
    0 6px 14px rgba(138,106,58,0.36),
    inset 0 1px 0 rgba(216,184,136,0.24);
}
.stl-area-link.stl-area-anchor .stl-arrow { color: #d8b888; }

/* Brown/charcoal gradient on stat band + contact */
.stl-section.stl-section-gradient,
.stl-contact.stl-contact-gradient {
  background:
    radial-gradient(ellipse at 18% 20%, rgba(138,106,58,0.22) 0%, rgba(138,106,58,0) 55%),
    radial-gradient(ellipse at 82% 80%, rgba(138,106,58,0.18) 0%, rgba(138,106,58,0) 60%),
    linear-gradient(155deg, #1c1d1f 0%, #25211c 50%, #3e3320 100%);
  color: var(--stl-ivory);
  position: relative;
  overflow: hidden;
}
.stl-section.stl-section-gradient::before,
.stl-contact.stl-contact-gradient::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216,184,136,0.55), transparent);
}
.stl-section.stl-section-gradient::after,
.stl-contact.stl-contact-gradient::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216,184,136,0.45), transparent);
}

.stl-section.stl-section-gradient .stl-eyebrow { color: rgba(216,184,136,0.85); }
.stl-section.stl-section-gradient .stl-h2 em { color: #d8b888; }
.stl-section.stl-section-gradient .stl-stat-num { color: #e8c896; }
.stl-section.stl-section-gradient .stl-stat-lbl { color: rgba(246,241,230,0.74); }

.stl-contact.stl-contact-gradient .stl-eyebrow { color: rgba(216,184,136,0.85); }
.stl-contact.stl-contact-gradient .stl-contact-h2 mark {
  background: transparent;
  color: #d8b888;
  font-style: italic;
}
.stl-contact.stl-contact-gradient .stl-contact-phone {
  color: #e8c896;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.stl-contact.stl-contact-gradient .stl-btn-ghost {
  border-color: rgba(216,184,136,0.6);
  color: var(--stl-ivory);
}
.stl-contact.stl-contact-gradient .stl-btn-ghost:hover {
  background: rgba(216,184,136,0.12);
  border-color: #d8b888;
}

/* Service rows — sharpen contrast, add hover shadow */
.stl-service-row {
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  border-radius: 2px;
}
.stl-service-row:hover {
  background: rgba(138,106,58,0.05);
  box-shadow: 0 12px 28px rgba(28,29,31,0.10), 0 2px 6px rgba(138,106,58,0.14);
  transform: translateY(-1px);
}
.stl-service-num {
  color: var(--stl-bronze, #8a6a3a);
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-style: italic;
}

/* FAQ items — left bronze accent + paper card feel */
.stl-faq-item {
  position: relative;
  padding-left: 24px;
  border-left: 2px solid rgba(138,106,58,0.22);
  transition: border-color .18s ease, padding-left .18s ease;
}
.stl-faq-item:hover {
  border-left-color: var(--stl-bronze, #8a6a3a);
  padding-left: 28px;
}

/* Area links — subtle hover lift for non-anchor variants */
.stl-area-link:not(.stl-area-anchor) {
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.stl-area-link:not(.stl-area-anchor):hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(28,29,31,0.10);
  border-color: var(--stl-bronze, #8a6a3a);
}

/* Section heads — bronze accent under eyebrow on charcoal sections */
.stl-section.stl-section-gradient .stl-section-head {
  position: relative;
}

@media (max-width: 720px) {
  .stl-hero.stl-hero-photo { padding: 90px 22px 110px; }
  .stl-prose-feature { font-size: 18px; }
  .stl-area-link.stl-area-anchor { padding: 18px 26px; font-size: 15px; }
}

/* =================================================================
   TYPOGRAPHY NORMALIZATION — kill italic/cursive, sharpen Archivo weights
   for readability. Loaded last so it overrides all earlier rules.
   ================================================================= */

/* Body uses Manrope sans for max readability */
.stl-body {
  font-family: 'Manrope', system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

/* All headings use Archivo with strong weights, no italic */
.stl-h1, .stl-h2, .stl-h3,
.stl-faq-q, .stl-service-name,
.stl-contact-h2, .stl-footer-brand,
.stl-hero-eyebrow, .stl-eyebrow {
  font-style: normal !important;
}

.stl-h1 {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.stl-h1 em {
  font-style: normal !important;
  font-weight: 800;
  color: #d8b888;
}
.stl-h2 {
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.stl-h2 em {
  font-style: normal !important;
  font-weight: 700;
  color: var(--stl-bronze, #8a6a3a);
}
.stl-h3, .stl-service-name, .stl-faq-q {
  font-weight: 700;
  letter-spacing: -0.005em;
}
.stl-contact-h2 {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.stl-contact-h2 mark {
  font-style: normal !important;
  font-weight: 800;
  background: transparent;
  color: #d8b888;
}

/* Eyebrow labels — uppercase Manrope, not serif */
.stl-eyebrow, .stl-hero-eyebrow {
  font-family: 'Manrope', system-ui, -apple-system, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
}

/* Stat numbers — bold Archivo, not italic serif */
.stl-stat-num {
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-weight: 800;
  font-style: normal !important;
  letter-spacing: -0.02em;
}

/* Service numbers — keep bronze accent, switch to bold Archivo */
.stl-service-num {
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-weight: 800;
  font-style: normal !important;
  color: var(--stl-bronze, #8a6a3a);
}

/* Philosophy prose — readable Manrope, no drop cap */
.stl-prose-feature {
  font-family: 'Manrope', system-ui, -apple-system, Arial, sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.7;
  color: #2a2c30;
  text-align: center;
}
.stl-prose-feature p::first-letter {
  font-size: inherit;
  font-weight: inherit;
  float: none;
  line-height: inherit;
  padding: 0;
  color: inherit;
  font-family: inherit;
}

/* Hero lede + contact lede — readable Manrope */
.stl-hero-lede,
.stl-contact-lede,
.stl-section-sub,
.stl-footer-prose {
  font-family: 'Manrope', system-ui, -apple-system, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}
.stl-hero-lede { font-size: 18px; max-width: 640px; }

/* FAQ answers — Manrope */
.stl-faq-a {
  font-family: 'Manrope', system-ui, -apple-system, Arial, sans-serif;
  font-style: normal;
  line-height: 1.6;
}

/* Footer — clean sans throughout */
.stl-footer, .stl-footer * {
  font-family: 'Manrope', system-ui, -apple-system, Arial, sans-serif;
}
.stl-footer-brand {
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-weight: 800;
  font-style: normal !important;
}
.stl-footer-brand span {
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
}
.stl-footer h5 {
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-weight: 700;
  font-style: normal !important;
  letter-spacing: 0.04em;
}

/* Buttons — bold sans, not script */
.stl-btn, .stl-btn-primary, .stl-btn-ghost, .stl-cta {
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-weight: 700;
  font-style: normal !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Topbar / nav / emergency / contact phone — readable */
.stl-topbar, .stl-emergency, .stl-nav,
.stl-contact-phone, .stl-footer-phone {
  font-family: 'Manrope', system-ui, -apple-system, Arial, sans-serif;
  font-style: normal !important;
}
.stl-contact-phone, .stl-footer-phone {
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-weight: 800;
}

/* Area links — sans, not italic serif */
.stl-area-link {
  font-family: 'Manrope', system-ui, -apple-system, Arial, sans-serif;
  font-weight: 600;
  font-style: normal !important;
}
.stl-area-link.stl-area-anchor {
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-weight: 700;
}

/* Decorative bronze rule kept; just make sure no italic */
.stl-rule-decor { font-style: normal; }

/* =================================================================
   BUTTON LEGIBILITY FIXES — hero buttons readable on the photo,
   nav CTA more prominent, area-link hover keeps text visible.
   Loaded after typography normalization so it wins.
   ================================================================= */

/* HERO PRIMARY — bright ivory button so it pops on the dark photo */
.stl-hero.stl-hero-photo .stl-btn-primary {
  background: var(--stl-ivory);
  color: var(--stl-charcoal);
  border: 1.5px solid var(--stl-ivory);
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow:
    0 14px 32px rgba(0,0,0,0.42),
    0 4px 10px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.6);
}
.stl-hero.stl-hero-photo .stl-btn-primary:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--stl-charcoal);
  transform: translateY(-2px);
  box-shadow:
    0 20px 40px rgba(0,0,0,0.50),
    0 6px 14px rgba(138,106,58,0.36);
}
.stl-hero.stl-hero-photo .stl-btn-primary:active {
  transform: translateY(0);
}

/* HERO GHOST — frosted dark pill so the white text actually reads */
.stl-hero.stl-hero-photo .stl-btn-ghost {
  background: rgba(28,29,31,0.45);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(246,241,230,0.65);
  color: var(--stl-ivory);
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow:
    0 10px 24px rgba(0,0,0,0.38),
    0 2px 6px rgba(0,0,0,0.20);
}
.stl-hero.stl-hero-photo .stl-btn-ghost:hover {
  background: rgba(28,29,31,0.65);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
}

/* TOP-RIGHT NAV PHONE — bronze pill, big shadow, can't miss it */
.stl-cta {
  background: linear-gradient(155deg, #1c1d1f 0%, #2a2622 60%, #3e3320 100%);
  color: var(--stl-ivory);
  border: 1.5px solid var(--stl-charcoal);
  font-family: 'Archivo', system-ui, -apple-system, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: none;
  font-size: 15px;
  padding: 14px 24px;
  box-shadow:
    0 8px 22px rgba(28,29,31,0.30),
    0 2px 6px rgba(138,106,58,0.30),
    inset 0 1px 0 rgba(216,184,136,0.18);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.stl-cta::before {
  content: "\260E";
  display: inline-block;
  margin-right: 8px;
  color: #d8b888;
  font-size: 14px;
  transform: translateY(-1px);
}
.stl-cta:hover {
  background: var(--stl-bronze);
  border-color: var(--stl-bronze);
  color: var(--stl-charcoal);
  transform: translateY(-1px);
  box-shadow:
    0 12px 26px rgba(138,106,58,0.42),
    0 4px 10px rgba(28,29,31,0.20);
}
.stl-cta:hover::before { color: var(--stl-charcoal); }

/* AREA LINK HOVER — keep text visible on charcoal hover background */
.stl-area-link:hover {
  background: var(--stl-charcoal) !important;
  color: var(--stl-ivory) !important;
  border-color: var(--stl-charcoal) !important;
}
.stl-area-link:hover span {
  color: var(--stl-ivory) !important;
}
.stl-area-link:hover .stl-arrow {
  color: #d8b888 !important;
}
.stl-area-link.stl-area-anchor:hover {
  background: linear-gradient(135deg, #2a2622 0%, #3e3320 60%, #5a4a2c 100%) !important;
  color: var(--stl-ivory) !important;
}
.stl-area-link.stl-area-anchor:hover span {
  color: var(--stl-ivory) !important;
}
.stl-area-link.stl-area-anchor:hover .stl-arrow {
  color: #f0d4a4 !important;
}

/* =================================================================
   PRICING ON CHARCOAL/GRADIENT — make the 5 factors readable
   ================================================================= */
.stl-section-charcoal .stl-price-range,
.stl-section-gradient .stl-price-range {
  color: var(--stl-ivory);
  text-shadow: 0 2px 16px rgba(0,0,0,0.45);
}
.stl-section-charcoal .stl-price-note,
.stl-section-gradient .stl-price-note {
  color: #d8b888;
}
.stl-section-charcoal .stl-price-factors h3,
.stl-section-gradient .stl-price-factors h3 {
  color: #d8b888;
}
.stl-section-charcoal .stl-factor-list li,
.stl-section-gradient .stl-factor-list li {
  color: rgba(246,241,230,0.92);
  border-top-color: rgba(216,184,136,0.28);
}
.stl-section-charcoal .stl-factor-list li:last-child,
.stl-section-gradient .stl-factor-list li:last-child {
  border-bottom-color: rgba(216,184,136,0.28);
}
.stl-section-charcoal .stl-factor-list li::before,
.stl-section-gradient .stl-factor-list li::before {
  color: #d8b888;
}




