/* =====================================================================
   Ultimate Renovations — editorial design-build site (DARK)
   Architectural, magazine-style. Hand-authored. Mobile-first.
   Distinct from the South Peak (roofing) build: that one is warm
   brown-black + copper + chunky serif; this is deep GREEN-charcoal +
   sage + brass + elegant Cormorant Garamond.
   ===================================================================== */

:root {
  --base:   #12150E;   /* page background — deep green-black */
  --panel:  #191E13;   /* alt sections */
  --panel-2:#222818;   /* cards */
  --deep:   #0C0E08;   /* darkest sections */
  --text:   #ECE7D8;   /* primary text on dark */
  --soft:   rgba(236, 231, 216, 0.62);
  --sage:   #94A87C;   /* brightened for legibility on dark */
  --sage-d: #3B4A2C;   /* accent band */
  --sage-l: #B3C39C;
  --brass:  #C9A45F;
  --brass-l:#DCBE82;
  --line:   rgba(236, 231, 216, 0.14);
  --line-2: rgba(236, 231, 216, 0.08);

  --maxw: 1280px;
  --gut: clamp(22px, 5.5vw, 76px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *{ animation:none!important; transition:none!important; } }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--base);
  color: var(--text);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }

/* type primitives */
.kicker { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; color: var(--brass); display: inline-block; }
.display { font-family: var(--serif); font-weight: 400; font-size: clamp(2.6rem, 6.5vw, 5rem); line-height: 0.98; letter-spacing: -0.005em; margin: 0; }
.display em { font-style: italic; color: var(--sage); }
h2.heading { font-family: var(--serif); font-weight: 400; font-size: clamp(2.1rem, 5vw, 3.6rem); line-height: 1.02; letter-spacing: -0.005em; margin: 0; }
.heading em { font-style: italic; color: var(--sage); }
.body-lg { font-size: clamp(1.04rem, 1.5vw, 1.2rem); color: var(--soft); max-width: 58ch; }
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"]{transition-delay:.1s}.reveal[data-delay="2"]{transition-delay:.2s}.reveal[data-delay="3"]{transition-delay:.3s}

/* buttons — squared (vs South Peak's pills). Cream fill on dark. */
.btn {
  display: inline-flex; align-items: center; gap: 0.7em;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 1.05em 1.7em; border: 1px solid var(--text); background: var(--text); color: var(--deep);
  transition: background 0.3s var(--ease), color 0.3s, transform 0.3s, border-color 0.3s;
}
.btn svg { width: 15px; height: 15px; }
.btn:hover { background: var(--sage); border-color: var(--sage); color: var(--deep); transform: translateY(-2px); }
.btn-line { background: transparent; color: var(--text); border-color: var(--line); }
.btn-line:hover { background: var(--text); color: var(--deep); border-color: var(--text); }

/* underline-grow link */
.ulink { position: relative; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; display: inline-flex; gap: 0.6em; align-items: center; padding-bottom: 4px; color: var(--text); }
.ulink::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%; background: var(--brass); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.ulink:hover::after { transform: scaleX(1); }
.ulink svg { width: 14px; height: 14px; transition: transform 0.3s; }
.ulink:hover svg { transform: translateX(4px); }

/* =====================================================================
   ANNOUNCEMENT + NAV
   ===================================================================== */
.topbar { background: var(--sage-d); color: var(--text); text-align: center; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 9px 16px; font-weight: 500; }
.topbar b { color: var(--brass-l); font-weight: 700; }

.nav { position: sticky; top: 0; z-index: 100; background: rgba(18,21,14,0.78); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line-2); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 20px var(--gut); transition: padding .35s var(--ease); }
.nav.shrink .nav-inner { padding-top: 13px; padding-bottom: 13px; }
.wordmark { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; letter-spacing: -0.01em; line-height: 1; color: var(--text); }
.wordmark span { color: var(--sage); font-style: italic; }
.wordmark small { display: block; font-family: var(--sans); font-size: 0.56rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--brass); margin-top: 5px; }

.nav-links { display: none; gap: 34px; align-items: center; }
.nav-links a { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; color: var(--text); opacity: 0.78; transition: opacity .2s; }
.nav-links a:hover { opacity: 1; }
.nav-right { display: none; align-items: center; gap: 22px; }
.nav-phone { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.02em; }

.burger { background: none; border: 0; width: 44px; height: 44px; display: grid; place-items: center; }
.burger span, .burger span::before, .burger span::after { content:""; display: block; width: 26px; height: 1.6px; background: var(--text); position: relative; transition: .3s; }
.burger span::before { position: absolute; top: -8px; } .burger span::after { position: absolute; top: 8px; }
.menu-open .burger span { background: transparent; }
.menu-open .burger span::before { top: 0; transform: rotate(45deg); }
.menu-open .burger span::after { top: 0; transform: rotate(-45deg); }

.drawer { position: fixed; inset: 0; z-index: 99; background: var(--panel); transform: translateX(100%); transition: transform .55s var(--ease); display: flex; flex-direction: column; justify-content: center; padding: var(--gut); }
.menu-open .drawer { transform: none; }
.drawer a { font-family: var(--serif); font-size: 2rem; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--text); }
.drawer a:last-of-type { border: 0; }
.drawer .btn { margin-top: 24px; justify-content: center; }

@media (min-width: 1000px) { .nav-links, .nav-right { display: flex; } .burger { display: none; } }

/* =====================================================================
   HERO — split editorial
   ===================================================================== */
.hero { padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 72px); background: radial-gradient(120% 80% at 78% -10%, #1d2415 0%, var(--base) 58%); }
.hero-grid { display: grid; gap: 40px; }
@media (min-width: 920px) { .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: end; } }
.hero-copy .kicker { margin-bottom: 22px; }
.hero h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(3rem, 8.5vw, 6.6rem); line-height: 0.94; letter-spacing: -0.01em; margin: 0; }
.hero h1 .ln { display: block; }
.hero h1 em { font-style: italic; color: var(--sage); }
.hero-sub { font-size: clamp(1.06rem, 1.6vw, 1.24rem); color: var(--soft); max-width: 46ch; margin: 28px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px 22px; align-items: center; margin-top: 36px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--line); }
.hero-meta div b { font-family: var(--serif); font-size: 1.9rem; font-weight: 500; display: block; line-height: 1; color: var(--text); }
.hero-meta div span { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brass); font-weight: 600; }

.hero-figure { position: relative; }
.hero-figure .img { position: relative; aspect-ratio: 4 / 5; background: linear-gradient(150deg, var(--panel-2), var(--panel)); overflow: hidden; }
.hero-figure img { width: 100%; height: 100%; object-fit: cover; }
.hero-figure .fallback { position: absolute; inset: 0; display: grid; place-items: center; color: var(--sage); }
.hero-figure .fallback svg { width: 64px; height: 64px; opacity: .5; }
.hero-figure .tag { position: absolute; left: 0; bottom: 0; background: var(--panel); color: var(--text); padding: 14px 20px; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
.hero-figure .tag b { color: var(--sage); }
.hero-figure .badge { position: absolute; right: -14px; top: 26px; width: 116px; height: 116px; border-radius: 50%; background: var(--sage-d); color: var(--text); display: grid; place-items: center; text-align: center; font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; line-height: 1.4; padding: 14px; box-shadow: 0 14px 34px -14px rgba(0,0,0,.7); }
.hero-figure .badge b { font-family: var(--serif); font-size: 1.7rem; display: block; letter-spacing: 0; text-transform: none; color: var(--brass-l); }
@media (max-width: 560px){ .hero-figure .badge{ width:96px; height:96px; right:8px; } }

/* =====================================================================
   INTRO STRIP
   ===================================================================== */
.intro { padding: clamp(60px, 9vw, 120px) 0; border-top: 1px solid var(--line); }
.intro-grid { display: grid; gap: 30px; }
@media (min-width: 860px) { .intro-grid { grid-template-columns: 0.42fr 1fr; gap: 54px; } }
.intro .kicker { display: block; }
.intro p.lede { font-family: var(--serif); font-size: clamp(1.6rem, 3.2vw, 2.5rem); line-height: 1.28; color: var(--text); margin: 0; font-weight: 400; }
.intro p.lede em { font-style: italic; color: var(--sage); }
.intro .sig { margin-top: 30px; font-size: 0.95rem; color: var(--soft); }
.intro .sig b { color: var(--text); }

/* =====================================================================
   SERVICES — numbered editorial index + cursor-following hover image
   ===================================================================== */
.services { padding: clamp(60px, 9vw, 120px) 0; background: var(--panel); }
.svc-head { display: grid; gap: 18px; margin-bottom: 40px; }
@media (min-width: 820px){ .svc-head { grid-template-columns: 1fr 1fr; align-items: end; } .svc-head .body-lg{ justify-self:end } }
.svc-index { position: relative; border-top: 1px solid var(--line); }
.svc-row { display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; padding: 26px 4px; border-bottom: 1px solid var(--line); transition: padding-left .4s var(--ease); }
.svc-row:hover { padding-left: 18px; }
.svc-row .no { font-size: 0.8rem; font-weight: 700; color: var(--brass); letter-spacing: 0.1em; }
.svc-row .name { font-family: var(--serif); font-size: clamp(1.5rem, 3.4vw, 2.4rem); font-weight: 400; line-height: 1.05; transition: color .3s; color: var(--text); }
.svc-row:hover .name { color: var(--sage); }
.svc-row .meta { font-size: 0.78rem; color: var(--soft); text-align: right; max-width: 22ch; }
@media (max-width: 640px){ .svc-row { grid-template-columns: auto 1fr; } .svc-row .meta { display: none; } }
.svc-hoverimg { position: fixed; pointer-events: none; width: 300px; height: 380px; object-fit: cover; z-index: 60; opacity: 0; transform: translate(-50%, -50%) scale(0.96); transition: opacity .35s var(--ease), transform .35s var(--ease); box-shadow: 0 30px 60px -22px rgba(0,0,0,.7); }
.svc-hoverimg.show { opacity: 1; transform: translate(-50%, -50%) scale(1); }
@media (max-width: 900px), (hover: none) { .svc-hoverimg { display: none; } }

/* =====================================================================
   FEATURED WORK
   ===================================================================== */
.work { padding: clamp(60px, 9vw, 120px) 0; }
.work-head { display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between; align-items: end; margin-bottom: 44px; }
.proj-grid { display: grid; gap: 22px; }
@media (min-width: 760px){ .proj-grid { grid-template-columns: repeat(12, 1fr); gap: 26px; } }
.proj { position: relative; overflow: hidden; background: var(--panel-2); }
.proj .ph { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.proj img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.proj:hover img { transform: scale(1.05); }
.proj .fallback { position: absolute; inset: 0; display: grid; place-items: center; color: var(--sage); }
.proj .fallback svg { width: 46px; height: 46px; opacity: .5; }
.proj figcaption { padding: 18px 4px 4px; display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.proj figcaption b { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; color: var(--text); }
.proj figcaption span { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brass); font-weight: 600; white-space: nowrap; }
@media (min-width: 760px){
  .proj.c7 { grid-column: span 7; } .proj.c5 { grid-column: span 5; }
  .proj.c6 { grid-column: span 6; } .proj.c12 { grid-column: span 12; }
  .proj.c7 .ph, .proj.c12 .ph { aspect-ratio: 16/10; }
}

/* =====================================================================
   PROCESS — Dream / Design / Build (darkest)
   ===================================================================== */
.process { padding: clamp(60px, 9vw, 120px) 0; background: var(--deep); color: var(--text); }
.process .kicker { color: var(--brass-l); }
.process h2.heading { color: var(--text); }
.process h2.heading em { color: var(--sage-l); }
.phase-list { margin-top: 56px; border-top: 1px solid var(--line); }
.phase { display: grid; gap: 14px; padding: 40px 0; border-bottom: 1px solid var(--line); }
@media (min-width: 820px){ .phase { grid-template-columns: 0.3fr 0.34fr 1fr; gap: 40px; align-items: start; } }
.phase .pn { font-family: var(--serif); font-size: clamp(2.4rem,5vw,3.6rem); line-height: 1; color: var(--sage); }
.phase .pt { font-family: var(--serif); font-size: clamp(1.7rem,3vw,2.2rem); font-weight: 500; color: var(--text); }
.phase .pt em { font-style: italic; color: var(--brass-l); }
.phase p { margin: 0; color: var(--soft); max-width: 56ch; }

/* =====================================================================
   NUMBERS — sage accent band (the one "color" moment)
   ===================================================================== */
.numbers { padding: clamp(50px, 7vw, 88px) 0; background: var(--sage-d); color: var(--text); }
.num-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 40px 20px; text-align: center; }
@media (min-width: 820px){ .num-grid { grid-template-columns: repeat(4,1fr); } }
.num-grid .n { font-family: var(--serif); font-size: clamp(2.8rem,6vw,4.4rem); line-height: 1; font-weight: 500; color: var(--text); }
.num-grid .l { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass-l); font-weight: 600; margin-top: 12px; }

/* =====================================================================
   CREDENTIALS / WHY
   ===================================================================== */
.why { padding: clamp(60px, 9vw, 120px) 0; }
.why-grid { display: grid; gap: 44px; }
@media (min-width: 900px){ .why-grid { grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; } }
.why-list { list-style: none; margin: 30px 0 0; padding: 0; }
.why-list li { padding: 22px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 30px 1fr; gap: 18px; }
.why-list li:last-child { border-bottom: 1px solid var(--line); }
.why-list svg { width: 22px; height: 22px; color: var(--sage); margin-top: 3px; }
.why-list h4 { margin: 0 0 4px; font-size: 1.05rem; font-weight: 700; color: var(--text); }
.why-list p { margin: 0; color: var(--soft); font-size: 0.94rem; }
.cred-card { background: var(--panel); padding: clamp(30px,4vw,46px); border: 1px solid var(--line-2); }
.cred-card .kicker { display: block; margin-bottom: 20px; }
.cred-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.cred-badges span { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; padding: 10px 16px; border: 1px solid var(--line); background: var(--panel-2); color: var(--text); }
.cred-quote { font-family: var(--serif); font-style: italic; font-size: clamp(1.5rem,3vw,2rem); line-height: 1.3; margin: 0 0 24px; color: var(--text); }
.cred-quote span { color: var(--sage); }

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.testi { padding: clamp(60px, 9vw, 120px) 0; background: var(--panel); }
.testi-grid { display: grid; gap: 22px; margin-top: 46px; }
@media (min-width: 760px){ .testi-grid { grid-template-columns: repeat(3,1fr); } }
.testi-card { background: var(--panel-2); border: 1px solid var(--line); padding: 32px 30px; display: flex; flex-direction: column; gap: 18px; }
.testi-card .stars { color: var(--brass); letter-spacing: 3px; font-size: 0.9rem; }
.testi-card p { font-family: var(--serif); font-size: 1.3rem; line-height: 1.4; margin: 0; flex: 1; color: var(--text); }
.testi-card .who b { display: block; font-size: 0.92rem; }
.testi-card .who span { font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brass); font-weight: 600; }
.testi-note { text-align: center; font-size: 0.74rem; color: var(--soft); margin-top: 24px; letter-spacing: 0.04em; }

/* =====================================================================
   VISIT / LOCATION + HOURS
   ===================================================================== */
.visit { padding: clamp(60px, 9vw, 120px) 0; }
.visit-grid { display: grid; gap: 40px; }
@media (min-width: 900px){ .visit-grid { grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: stretch; } }
.hours { list-style: none; margin: 28px 0 0; padding: 0; }
.hours li { display: flex; justify-content: space-between; gap: 16px; padding: 15px 0; border-top: 1px solid var(--line); font-size: 0.95rem; }
.hours li:last-child { border-bottom: 1px solid var(--line); }
.hours .d { font-weight: 600; color: var(--text); }
.hours .h { color: var(--soft); text-align: right; }
.visit .addr { margin-top: 30px; display: grid; gap: 12px; }
.visit .addr a, .visit .addr span { display: inline-flex; gap: 11px; align-items: flex-start; font-size: 0.98rem; }
.visit .addr svg { width: 18px; height: 18px; color: var(--sage); flex: none; margin-top: 3px; }
.map { background: var(--panel); min-height: 360px; border: 1px solid var(--line-2); }
.map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; filter: grayscale(.4) contrast(1.05) brightness(.92); }

/* =====================================================================
   CTA / CONSULTATION
   ===================================================================== */
.cta { padding: clamp(60px, 9vw, 130px) 0; background: var(--deep); color: var(--text); }
.cta-grid { display: grid; gap: 44px; }
@media (min-width: 920px){ .cta-grid { grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; } }
.cta .kicker { color: var(--brass-l); }
.cta h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(2.4rem,6vw,4.2rem); line-height: 1; margin: 16px 0 0; color: var(--text); }
.cta h2 em { font-style: italic; color: var(--sage-l); }
.cta .body-lg { color: var(--soft); margin-top: 24px; }
.cta-meta { margin-top: 34px; display: grid; gap: 16px; }
.cta-meta a, .cta-meta span { display: inline-flex; gap: 12px; align-items: center; font-size: 1rem; }
.cta-meta svg { width: 19px; height: 19px; color: var(--brass-l); }

.form { background: var(--panel); color: var(--text); padding: clamp(28px,4vw,42px); border: 1px solid var(--line-2); }
.form h3 { font-family: var(--serif); font-weight: 500; font-size: 1.7rem; margin: 0 0 6px; color: var(--text); }
.form .small { color: var(--soft); font-size: 0.92rem; margin: 0 0 24px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass); margin-bottom: 8px; }
.field input, .field select, .field textarea { width: 100%; font-family: inherit; font-size: 0.98rem; padding: 13px 0; border: 0; border-bottom: 1px solid var(--line); background: transparent; color: var(--text); transition: border-color .25s; }
.field input::placeholder, .field textarea::placeholder { color: rgba(236,231,216,.38); }
.field select option { color: #111; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--sage); }
.field textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; gap: 18px; }
@media (min-width: 520px){ .form-row { grid-template-columns: 1fr 1fr; } }
.form .btn { width: 100%; justify-content: center; margin-top: 10px; }
.form-note { font-size: 0.78rem; color: var(--soft); text-align: center; margin: 14px 0 0; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: var(--deep); color: var(--text); padding: clamp(56px,7vw,90px) 0 32px; border-top: 1px solid var(--line-2); }
.foot-top { display: grid; gap: 40px; }
@media (min-width: 820px){ .foot-top { grid-template-columns: 1.7fr 1fr 1fr; gap: 50px; } }
.foot-brand .wordmark { color: var(--text); }
.foot-brand .wordmark span { color: var(--sage); }
.foot-brand p { color: var(--soft); max-width: 36ch; margin: 20px 0 0; font-size: 0.95rem; }
.foot-col h5 { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass-l); margin: 0 0 18px; font-weight: 700; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.foot-col a { color: var(--soft); font-size: 0.94rem; transition: color .2s; }
.foot-col a:hover { color: var(--text); }
.foot-bottom { margin-top: 52px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; }
.foot-bottom p { margin: 0; font-size: 0.8rem; color: var(--soft); }
.foot-bottom .socials { display: flex; gap: 12px; }
.foot-bottom .socials a { width: 38px; height: 38px; border: 1px solid var(--line); display: grid; place-items: center; transition: .25s; }
.foot-bottom .socials a:hover { background: var(--sage); border-color: var(--sage); }
.foot-bottom .socials svg { width: 17px; height: 17px; }
.disclaimer { margin-top: 18px; font-size: 0.72rem; color: rgba(236,231,216,.4); max-width: 84ch; }

/* sticky mobile bar */
.callbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: flex; background: var(--deep); border-top: 1px solid var(--line); }
.callbar a { flex: 1; text-align: center; padding: 15px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text); display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.callbar a.alt { background: var(--sage-d); }
.callbar svg { width: 16px; height: 16px; }
@media (min-width: 1000px){ .callbar { display: none; } }
@media (max-width: 999px){ body { padding-bottom: 52px; } }
