/* =====================================================
   ALL SEASONS AWNINGS & FABRIC STRUCTURES
   Style 1 (Trades Standard) — Coastal Navy/Gold variant
   Mobile-first. 3 breakpoints only: 768 / 1024 / 1280
   ===================================================== */

:root{
  /* --- Palette, drawn from the client logo --- */
  --navy:        #0B1E3A;
  --navy-deep:   #071427;
  --navy-mid:    #142B4D;
  --gold:        #C9932E;
  --gold-light:  #E8B54D;
  --gold-pale:   #F3DDAF;
  --sand:        #F8F4EB;
  --sand-deep:   #EFE6D2;
  --ink:         #14213B;
  --white:       #FFFFFF;
  --line:        rgba(11,30,58,0.12);

  /* --- Type roles (see Part 11) --- */
  --display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --body:    'Lora', Georgia, serif;
  --sans:    'Source Sans 3', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --radius: 2px;
  --shadow-1: 0 10px 30px rgba(7,20,39,0.14);
  --shadow-2: 0 4px 14px rgba(7,20,39,0.10);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
html,body{ overflow-x:hidden; max-width:100%; }
body{
  margin:0;
  font-family:var(--body);
  color:var(--ink);
  background:var(--sand);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,h4{ font-family:var(--display); color:var(--navy); margin:0 0 .5em; line-height:1.15; }
p{ margin:0 0 1em; }
ul{ margin:0; padding:0; list-style:none; }
.container{ max-width:1180px; margin:0 auto; padding:0 20px; }
section{ padding:64px 0; }
.eyebrow{
  font-family:var(--sans); font-weight:600; letter-spacing:.14em; text-transform:uppercase;
  font-size:.78rem; color:var(--gold); margin-bottom:.9em; display:block;
}
.rule{ width:52px; height:3px; background:var(--gold); border:0; margin:0 0 1.2em; }
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.5em;
  font-family:var(--sans); font-weight:700; letter-spacing:.02em; text-transform:uppercase; font-size:.82rem;
  padding:0 28px; height:52px; min-height:48px; min-width:48px;
  border-radius:var(--radius); border:2px solid transparent; cursor:pointer; transition:.2s ease;
}
.btn-primary{ background:linear-gradient(135deg,var(--gold-light),var(--gold)); color:var(--navy-deep); }
.btn-primary:hover{ filter:brightness(1.06); transform:translateY(-1px); box-shadow:var(--shadow-2); }
.btn-outline{ border-color:var(--white); color:var(--white); background:transparent; }
.btn-outline:hover{ background:rgba(255,255,255,.12); }
.btn-outline-navy{ border-color:var(--navy); color:var(--navy); background:transparent; }
.btn-outline-navy:hover{ background:rgba(11,30,58,.06); }

a,button,input[type="submit"],select,[role="button"]{ min-height:48px; }

/* ===== Skip link ===== */
.skip-link{
  position:absolute; left:-999px; top:auto;
  background:var(--navy); color:var(--white); padding:10px 16px; z-index:2000; font-family:var(--sans);
}
.skip-link:focus{ left:10px; top:10px; }

/* ===== Utility bar ===== */
.util-bar{ background:var(--navy-deep); color:var(--sand); font-family:var(--sans); font-size:.82rem; }
.util-bar .container{ display:flex; align-items:center; justify-content:space-between; height:40px; }
.util-left{ display:flex; gap:22px; align-items:center; }
.util-left span{ opacity:.85; }
.util-left .addr{ display:none; }
.util-bar a.tap-call{ color:var(--gold-light); font-weight:700; display:flex; align-items:center; gap:6px; }
@media (min-width:768px){ .util-left .addr{ display:inline; } }

/* ===== Sticky nav ===== */
.site-nav{ position:sticky; top:0; z-index:1000; background:var(--white); box-shadow:0 1px 0 var(--line); }
.nav-inner{ display:flex; align-items:center; justify-content:space-between; height:104px; }
.nav-logo{ display:flex; align-items:center; gap:10px; }
.nav-logo img{ height:84px; width:auto; }
.nav-logo-word{ font-family:var(--display); font-weight:700; color:var(--navy); font-size:1.05rem; line-height:1.1; }
.nav-logo-word small{ display:block; font-family:var(--sans); font-weight:600; letter-spacing:.08em; color:var(--gold); font-size:.62rem; text-transform:uppercase; }

.nav-links{ display:none; }
.nav-actions{ display:flex; align-items:center; gap:14px; }
.nav-phone{ display:flex; align-items:center; gap:8px; color:var(--navy); }
.nav-phone svg{ width:20px; height:20px; flex:none; }
.nav-cta{ display:none; }
.hamburger{
  width:48px; height:48px; display:flex; align-items:center; justify-content:center;
  background:none; border:none; cursor:pointer;
}
.hamburger span,.hamburger span::before,.hamburger span::after{
  content:""; display:block; width:24px; height:2px; background:var(--navy); position:relative; transition:.2s;
}
.hamburger span::before{ position:absolute; top:-8px; }
.hamburger span::after{ position:absolute; top:8px; }

.mobile-panel{
  position:fixed; inset:0; background:var(--navy); z-index:1500; transform:translateX(100%);
  transition:transform .28s ease; padding:90px 28px 28px; overflow-y:auto;
}
.mobile-panel.open{ transform:translateX(0); }
.mobile-panel a{ display:block; color:var(--sand); font-family:var(--sans); font-weight:600; font-size:1.1rem; padding:16px 0; border-bottom:1px solid rgba(255,255,255,.12); }
.mobile-panel .btn{ margin-top:24px; width:100%; }
.mobile-close{ position:absolute; top:26px; right:26px; background:none; border:none; color:var(--sand); font-size:1.8rem; cursor:pointer; width:48px; height:48px; }

@media (min-width:1024px){
  .nav-inner{ height:120px; }
  .nav-logo img{ height:96px; }
  .nav-links{ display:flex; gap:28px; font-family:var(--sans); font-weight:600; font-size:.92rem; }
  .nav-links a{ color:var(--navy); padding:8px 0; border-bottom:2px solid transparent; }
  .nav-links a:hover{ border-color:var(--gold); }
  .nav-cta{ display:inline-flex; }
  .hamburger{ display:none; }
}

/* ===== Hero (locked component — Part 2.8) ===== */
.hero{ position:relative; min-height:88vh; display:flex; align-items:center; color:var(--white); }
.hero-media{ position:absolute; inset:0; z-index:0; }
.hero-media img{ width:100%; height:100%; object-fit:cover; }
.hero-media::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(100deg, rgba(7,20,39,.92) 0%, rgba(7,20,39,.78) 42%, rgba(7,20,39,.42) 75%, rgba(7,20,39,.30) 100%);
}
.hero-inner{ position:relative; z-index:1; width:100%; padding:120px 0 70px; }
.hero-grid{ display:grid; grid-template-columns:1fr; gap:20px; }
.hero-copy{ max-width:660px; }
.hero-copy .eyebrow{ color:var(--gold-light); }
.hero h1{
  color:var(--white); font-weight:700; letter-spacing:-.01em;
  font-size:clamp(2rem,7vw,2.8rem); margin-bottom:.5em;
}
.hero-sub{ font-family:var(--body); font-size:clamp(1rem,1.6vw,1.15rem); color:rgba(255,255,255,.92); max-width:560px; }
.trust-badges{ display:flex; flex-wrap:wrap; gap:10px 18px; margin:22px 0 28px; font-family:var(--sans); }
.trust-badges span{ display:flex; align-items:center; gap:8px; font-size:.85rem; font-weight:600; color:var(--gold-pale); }
.trust-badges svg{ width:16px; height:16px; flex:none; color:var(--gold-light); }
.hero-ctas{ display:flex; flex-wrap:wrap; gap:14px; }
.hero-ctas .btn{ width:100%; }
@media (min-width:480px){ .hero-ctas .btn{ width:auto; } }

@media (min-width:1024px){
  .hero{ min-height:88vh; }
  .hero-grid{ grid-template-columns:60% 40%; align-items:center; }
}

/* ===== Proof bar (Part 2.4) — immediately below hero, never moves ===== */
.proof-bar{ background:var(--navy); color:var(--sand); padding:0; }
.proof-grid{ display:grid; grid-template-columns:1fr 1fr; gap:0; }
.proof-item{ text-align:center; padding:30px 16px; border-bottom:1px solid rgba(255,255,255,.10); }
.proof-item .num{ font-family:var(--display); font-size:2.1rem; font-weight:700; color:var(--gold-light); display:block; }
.proof-item .label{ font-family:var(--sans); font-size:.72rem; letter-spacing:.08em; text-transform:uppercase; opacity:.85; }

@media (min-width:768px){
  .proof-grid{ grid-template-columns:repeat(4,1fr); }
  .proof-item{ border-bottom:none; border-right:1px solid rgba(255,255,255,.10); }
  .proof-item:last-of-type{ border-right:none; }
}

/* ===== Partner bar (moved below Services section) ===== */
.partner-bar{ background:var(--sand-deep); border-top:1px solid var(--line); border-bottom:1px solid var(--line); padding:34px 0; }
.partner-bar .container{ display:flex; flex-direction:column; align-items:center; gap:10px; text-align:center; }
.partner-bar .partner-eyebrow{ font-family:var(--sans); font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; color:var(--navy); opacity:.6; }
.partner-bar .partner-list{ font-family:var(--sans); font-size:1rem; letter-spacing:.02em; color:var(--navy); }
.partner-bar .partner-list b{ color:var(--gold); }
@media (min-width:768px){
  .partner-bar .container{ flex-direction:row; justify-content:center; gap:24px; }
}

/* ===== Two-column balance (Part 2.9): 50/50, 55/45, 60/40 only ===== */
.split{ display:grid; grid-template-columns:1fr; gap:36px; align-items:start; }
@media (min-width:768px){
  .split-50{ grid-template-columns:1fr 1fr; }
  .split-55{ grid-template-columns:55% 1fr; }
}

/* ===== Services intro panel ===== */
.svc-intro{ background:var(--white); }
.svc-intro-copy p{ font-size:1.02rem; }
.svc-intro-photo{
  border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-1);
  max-width:360px; aspect-ratio:3/4; margin:0 auto;
}
.svc-intro-photo img{ width:100%; height:100%; object-fit:cover; display:block; }
@media (min-width:768px){
  .svc-intro-photo{ margin:0 0 0 auto; max-width:340px; }
}
.svc-chips{ display:flex; flex-wrap:wrap; gap:8px; margin:18px 0 26px; }
.svc-chips span{
  font-family:var(--sans); font-size:.78rem; font-weight:600; padding:8px 14px;
  border:1px solid var(--line); border-radius:20px; color:var(--navy);
}

/* ===== Services grid ===== */
.services{ background:var(--sand-deep); }
.section-head{ max-width:640px; margin-bottom:36px; }
.svc-grid{ display:grid; grid-template-columns:1fr; gap:20px; }
@media (min-width:768px){ .svc-grid{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:1024px){ .svc-grid{ grid-template-columns:repeat(3,1fr); } }
.svc-card{
  background:var(--white); border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-2);
  display:flex; flex-direction:column; transition:.2s;
}
.svc-card:hover{ transform:translateY(-3px); box-shadow:var(--shadow-1); }
.svc-card .img-wrap{ aspect-ratio:4/3; overflow:hidden; }
.svc-card img{ width:100%; height:100%; object-fit:cover; }
.svc-card-body{ padding:20px 22px 24px; flex:1; display:flex; flex-direction:column; }
.svc-card h3{ font-size:1.12rem; margin-bottom:.4em; }
.svc-card p{ font-family:var(--sans); font-size:.9rem; color:var(--ink); opacity:.85; flex:1; margin-bottom:1em; }
.svc-card .card-link{ font-family:var(--sans); font-weight:700; font-size:.82rem; color:var(--gold); text-transform:uppercase; letter-spacing:.03em; }

/* ===== Why Us / Process (dark) ===== */
.why-us{ background:var(--navy-deep); color:var(--sand); }
.why-us h2, .process h2{ color:var(--white); }
.why-grid{ display:grid; grid-template-columns:1fr; gap:26px; }
@media (min-width:768px){ .why-grid{ grid-template-columns:1fr 1fr; } }
.why-item{ display:flex; gap:16px; }
.why-item .ico{ flex:none; width:44px; height:44px; border-radius:50%; background:rgba(232,181,77,.14); display:flex; align-items:center; justify-content:center; }
.why-item .ico svg{ width:22px; height:22px; color:var(--gold-light); }
.why-item h3{ color:var(--white); font-size:1.05rem; margin-bottom:.25em; }
.why-item p{ font-family:var(--sans); font-size:.92rem; opacity:.82; margin:0; }

.process{ margin-top:56px; }
.process-steps{ display:grid; grid-template-columns:1fr; gap:22px; }
@media (min-width:768px){ .process-steps{ grid-template-columns:repeat(5,1fr); } }
.process-step{ text-align:left; border-top:2px solid var(--gold); padding-top:14px; }
.process-step .step-n{ font-family:var(--display); font-size:1.6rem; color:var(--gold-light); display:block; margin-bottom:.2em; }
.process-step h4{ color:var(--white); font-size:.95rem; margin-bottom:.3em; }
.process-step p{ font-family:var(--sans); font-size:.84rem; opacity:.78; margin:0; }

/* ===== Seasonal Service & Maintenance ===== */
.seasonal{ background:var(--white); }
.seasonal-grid{ display:flex; flex-wrap:wrap; gap:14px; margin:0; padding:0; list-style:none; }
.seasonal-grid li{
  display:flex; align-items:center; gap:14px; background:var(--sand); border:1px solid var(--line);
  border-radius:var(--radius); padding:16px 18px; font-family:var(--sans); font-weight:600; font-size:.92rem; color:var(--navy);
  flex:1 1 100%; box-sizing:border-box; min-height:66px;
}
@media (min-width:480px){ .seasonal-grid li{ flex:1 1 calc(50% - 7px); } }
.seasonal-grid .ico{
  flex:none; width:40px; height:40px; border-radius:50%; background:rgba(201,147,46,.12);
  display:flex; align-items:center; justify-content:center;
}
.seasonal-grid svg{ width:20px; height:20px; min-width:20px; color:var(--gold); flex:none; }

/* ===== About / Owner (E-E-A-T) ===== */
.about{ background:var(--white); }
.about-photo{ position:relative; }
.about-photo .frame{
  border:6px solid var(--white); box-shadow:var(--shadow-1); border-radius:var(--radius); overflow:hidden;
  aspect-ratio:4/5; background:var(--sand-deep); display:flex; align-items:center; justify-content:center;
}
.about-photo .frame.placeholder{ flex-direction:column; gap:10px; font-family:var(--sans); color:var(--navy); opacity:.6; text-align:center; padding:20px; }
.about-photo .frame.placeholder svg{ width:46px; height:46px; }
.named-entity{ font-family:var(--body); font-size:1.05rem; background:var(--sand); border-left:4px solid var(--gold); padding:18px 22px; border-radius:0 var(--radius) var(--radius) 0; margin:18px 0 24px; }
.stat-box-row{ display:grid; grid-template-columns:repeat(2,1fr); gap:14px; margin-top:22px; }
.stat-box{ background:var(--sand-deep); padding:16px; border-radius:var(--radius); text-align:center; }
.stat-box .n{ font-family:var(--display); font-size:1.5rem; color:var(--navy); font-weight:700; display:block; }
.stat-box .l{ font-family:var(--sans); font-size:.72rem; text-transform:uppercase; letter-spacing:.06em; color:var(--ink); opacity:.7; }
.video-note{ margin-top:20px; border:1px dashed var(--line); border-radius:var(--radius); padding:14px 18px; font-family:var(--sans); font-size:.82rem; color:var(--ink); opacity:.75; }

/* ===== Gallery ===== */
.gallery{ background:var(--sand-deep); }
.gallery-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:12px; }
@media (min-width:768px){ .gallery-grid{ grid-template-columns:repeat(3,1fr); } }
@media (min-width:1024px){ .gallery-grid{ grid-template-columns:repeat(4,1fr); } }
.gallery-item{ aspect-ratio:1/1; overflow:hidden; border-radius:var(--radius); position:relative; }
.gallery-item img{ width:100%; height:100%; object-fit:cover; transition:.3s; }
.gallery-item:hover img{ transform:scale(1.06); }
.gallery-item .cap{
  position:absolute; left:0; right:0; bottom:0; padding:10px 12px; font-family:var(--sans);
  font-size:.72rem; font-weight:600; color:var(--white); background:linear-gradient(to top, rgba(7,20,39,.82), transparent);
}

/* ===== Reviews (honest placeholder — no fabricated quotes) ===== */
.reviews{ background:var(--white); text-align:center; }
.reviews-box{ max-width:560px; margin:0 auto; }
.reviews-box svg{ width:40px; height:40px; color:var(--gold); margin-bottom:14px; }
.reviews-box p{ font-family:var(--sans); opacity:.8; }

/* ===== FAQ ===== */
.faq{ background:var(--sand-deep); }
.faq-columns{ display:flex; flex-wrap:wrap; gap:0 32px; }
.faq-col{ flex:1 1 100%; min-width:0; }
@media (min-width:768px){ .faq-col{ flex:1 1 calc(50% - 16px); } }
.faq-item{ background:var(--white); border-radius:var(--radius); margin-bottom:12px; box-shadow:var(--shadow-2); }
.faq-q{
  width:100%; text-align:left; background:none; border:none; cursor:pointer; padding:18px 50px 18px 20px;
  font-family:var(--sans); font-weight:700; font-size:.98rem; color:var(--navy); position:relative; min-height:48px;
}
.faq-q::after{
  content:"+"; position:absolute; right:18px; top:50%; transform:translateY(-50%); font-size:1.4rem; color:var(--gold); font-weight:400;
  transition:.2s;
}
.faq-item.open .faq-q::after{ content:"–"; }
.faq-a{ padding:0 20px 20px; font-size:.96rem; color:var(--ink); display:none; }
.faq-item.open .faq-a{ display:block; }
.faq-cred-strip{
  margin-top:28px; background:var(--navy); color:var(--sand); border-radius:var(--radius);
  padding:26px 24px; display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:22px 28px; text-align:center;
}
.faq-cred-strip .cred-item{ display:flex; align-items:center; gap:8px; font-family:var(--sans); font-size:.9rem; font-weight:600; }
.faq-cred-strip .cred-item svg{ width:18px; height:18px; color:var(--gold-light); flex:none; }
.faq-cred-strip .btn{ flex:none; }
.faq-mid-cta, .faq-end-cta{ text-align:center; margin-top:18px; }

/* ===== Service area ===== */
.sa{ background:var(--white); }
.sa-callout{
  border:2px solid var(--gold); border-radius:var(--radius); padding:20px 24px; margin-top:26px;
  font-family:var(--sans); font-weight:700; color:var(--navy); display:flex; align-items:center; gap:14px;
}
.sa-callout svg{ width:26px; height:26px; color:var(--gold); flex:none; }
.sa-list{ font-family:var(--sans); font-size:.95rem; line-height:1.9; }
.sa-list b{ color:var(--navy); }
.sa-home{ color:var(--gold); font-weight:700; }
.sa-decor{ margin-top:20px; opacity:.5; }

/* ===== CTA banner ===== */
.cta-banner{ background:linear-gradient(120deg,var(--navy),var(--navy-mid)); color:var(--white); text-align:center; }
.cta-banner h2{ color:var(--white); font-size:clamp(1.6rem,3.4vw,2.3rem); }
.cta-banner .phone-big{ font-family:var(--display); font-size:clamp(1.5rem,3vw,2rem); color:var(--gold-light); margin:14px 0 26px; display:block; }
.cta-banner-actions{ display:flex; justify-content:center; gap:14px; flex-wrap:wrap; }

/* ===== Contact ===== */
.contact{ background:var(--sand-deep); }
.contact-form{ background:var(--white); padding:30px; border-radius:var(--radius); box-shadow:var(--shadow-1); }
.form-row{ margin-bottom:18px; }
.form-row label{ display:block; font-family:var(--sans); font-weight:600; font-size:.85rem; margin-bottom:6px; color:var(--navy); }
.form-row input, .form-row select, .form-row textarea{
  width:100%; padding:13px 14px; font-family:var(--sans); font-size:.95rem; border:1px solid var(--line);
  border-radius:var(--radius); background:var(--sand); min-height:48px;
}
.form-row textarea{ min-height:110px; resize:vertical; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus{ outline:2px solid var(--gold); outline-offset:1px; }
.form-two{ display:grid; grid-template-columns:1fr; gap:0 18px; }
@media (min-width:600px){ .form-two{ grid-template-columns:1fr 1fr; } }
.gotcha-field{ position:absolute; left:-9999px; top:-9999px; width:1px; height:1px; opacity:0; }
.privacy-line{ font-family:var(--sans); font-size:.78rem; opacity:.65; margin-top:12px; }
.form-status{ font-family:var(--sans); font-size:.88rem; margin-top:14px; padding:12px 14px; border-radius:var(--radius); display:none; }
.form-status.show{ display:block; }
.form-status.ok{ background:#e8f3ea; color:#1e5b31; }
.form-status.err{ background:#fbeaea; color:#8a2222; }
.contact-side{ font-family:var(--sans); }
.contact-side .reassure{ font-family:var(--body); font-style:italic; font-size:1.02rem; color:var(--navy); margin-bottom:22px; }
.contact-phone-line{ display:flex; align-items:center; gap:12px; margin-bottom:22px; }
.contact-phone-line svg{ width:30px; height:30px; color:var(--gold); flex:none; }
.contact-phone-line a{ font-family:var(--display); font-size:1.5rem; color:var(--navy); font-weight:700; }
.hours-box{ background:var(--white); border-radius:var(--radius); padding:18px 20px; box-shadow:var(--shadow-2); }
.hours-box h4{ font-family:var(--sans); font-size:.85rem; text-transform:uppercase; letter-spacing:.05em; color:var(--navy); margin-bottom:10px; }
.hours-box div{ display:flex; justify-content:space-between; font-size:.88rem; padding:4px 0; border-bottom:1px solid var(--line); }
.hours-box div:last-child{ border-bottom:none; }

/* ===== Footer ===== */
.site-footer{ background:var(--navy-deep); color:var(--sand); padding-bottom:96px; }
.footer-grid{ display:grid; grid-template-columns:1fr; gap:36px; padding:64px 0 30px; }
@media (min-width:768px){ .footer-grid{ grid-template-columns:1.3fr 1fr 1fr; } }
.footer-brand img{ height:54px; margin-bottom:14px; }
.footer-brand p{ font-family:var(--sans); font-size:.86rem; opacity:.75; max-width:320px; }
.footer-col h4{ font-family:var(--sans); text-transform:uppercase; letter-spacing:.08em; font-size:.78rem; color:var(--gold-light); margin-bottom:16px; }
.footer-col ul{ display:flex; flex-direction:column; gap:10px; font-family:var(--sans); font-size:.9rem; }
.footer-col a{ opacity:.85; }
.footer-col a:hover{ color:var(--gold-light); }
.footer-nap p{ font-family:var(--sans); font-size:.9rem; opacity:.85; margin-bottom:6px; }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.12); padding:22px 0; font-family:var(--sans); font-size:.8rem; opacity:.65; display:flex; flex-wrap:wrap; gap:10px; justify-content:space-between; }
.footer-bottom a{ opacity:1; text-decoration:underline; }

/* ===== Sticky phone bar (all devices) ===== */
.sticky-bar{
  position:fixed; left:0; right:0; bottom:0; z-index:1200; background:var(--navy);
  display:flex; align-items:stretch; box-shadow:0 -4px 14px rgba(0,0,0,.2);
}
.sticky-bar a{
  flex:1; display:flex; align-items:center; justify-content:center; gap:8px;
  font-family:var(--sans); font-weight:700; font-size:.92rem; padding:14px 10px; min-height:58px;
}
.sticky-bar .call{ color:var(--white); }
.sticky-bar .quote{ background:linear-gradient(135deg,var(--gold-light),var(--gold)); color:var(--navy-deep); }
.sticky-bar svg{ width:18px; height:18px; }

/* ===== Misc ===== */
.sr-only{ position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }
:focus-visible{ outline:3px solid var(--gold); outline-offset:2px; }
.placeholder-flag{
  display:inline-block; margin-top:8px; font-family:var(--sans); font-size:.72rem; font-weight:700;
  color:#8a2222; background:#fbeaea; padding:3px 8px; border-radius:3px; letter-spacing:.02em;
}
