:root{
  --ink: #221e15;
  --panel: #2c261a;
  --gold: #d9a441;
  --gold-bright: #f0c674;
  --line: #75a3b5;
  --cream: #efe9dc;
  --dim: #b8ae95;
  --hair: rgba(217,164,65,0.28);
  --sp-1: clamp(8px, 1vw, 12px);
  --sp-2: clamp(14px, 2vw, 20px);
  --sp-3: clamp(20px, 3vw, 32px);
  --sp-4: clamp(32px, 5vw, 56px);
  --sp-5: clamp(48px, 7vw, 88px);
  --sp-6: clamp(64px, 9vw, 120px);
  --fs-body: clamp(15px, 0.95vw + 0.4rem, 17px);
  --fs-small: clamp(12.5px, 0.5vw + 0.4rem, 14px);
  --fs-h1: clamp(34px, 4vw + 1rem, 60px);
  --fs-h2: clamp(26px, 2vw + 1rem, 32px);
  --fs-h3: clamp(20px, 1vw + 1rem, 25px);
}
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--ink);
  color:var(--cream);
  font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size:var(--fs-body);
  line-height:1.5;
}
h1,h2,h3{
  font-family:'Oswald', -apple-system, sans-serif;
  color:#fff;
  margin:0;
  text-transform:uppercase;
  letter-spacing:0.01em;
}
a{ color:inherit; }
.wrap{ max-width:1180px; margin:0 auto; padding:0 clamp(20px, 5vw, 6vw); }
section{ padding:var(--sp-5) 0; }
.hair{ border:none; border-top:1px solid var(--hair); margin:0; }
img{ max-width:100%; }

/* ---------- Header ---------- */
header{
  position:sticky; top:0; z-index:40;
  background:rgba(10,9,6,0.88);
  backdrop-filter:blur(6px);
  border-bottom:1px solid var(--hair);
}
header .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:14px; padding-bottom:14px;
  gap: var(--sp-2);
}
.header-nav{
  display:flex;
  justify-content:center;
  gap:clamp(14px, 2.2vw, 28px);
  flex-wrap:wrap;
}
.header-nav a{
  color:var(--cream);
  text-decoration:none;
  font-size:14px;
  font-weight:500;
  white-space:nowrap;
}
.header-nav a:hover, .header-nav a.active{ color:var(--gold-bright); }
.logo{
  display:flex;
  align-items:center;
  text-decoration:none;
  min-width:0;
  flex-shrink:1;
}
.logo img{
  height:clamp(30px, 4vw, 44px);
  width:auto;
  display:block;
  flex-shrink:0;
}
.logo-badge{
  display:flex;
  flex-direction:column;
  justify-content:center;
  line-height:1.25;
  margin-left:clamp(10px, 1.8vw, 16px);
  padding-left:clamp(10px, 1.8vw, 16px);
  border-left:1px solid var(--hair);
  font-size:11px;
  color:var(--dim);
  white-space:nowrap;
}
.logo-badge strong{
  display:block;
  font-family:'Oswald', sans-serif;
  font-weight:600;
  font-size:13px;
  color:var(--gold-bright);
  letter-spacing:0.02em;
}
.header-actions{ display:flex; align-items:center; gap:clamp(10px, 2vw, 18px); flex-shrink:0; }
.phone-box{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:11px 22px;
  border-radius:999px;
  border:1.5px solid var(--gold);
  color:var(--gold-bright);
  font-weight:600;
  font-size:15px;
  text-decoration:none;
  white-space:nowrap;
  transition:background 0.15s ease;
}
.phone-box:hover{ background:rgba(217,164,65,0.12); }
.phone-box::before{
  content:"";
  width:16px; height:16px;
  background:var(--gold-bright);
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.01-.24c1.12.37 2.33.57 3.58.57a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1C10.61 21 3 13.39 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.25.2 2.46.57 3.58a1 1 0 0 1-.25 1.01l-2.2 2.2z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.01-.24c1.12.37 2.33.57 3.58.57a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1C10.61 21 3 13.39 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.25.2 2.46.57 3.58a1 1 0 0 1-.25 1.01l-2.2 2.2z'/%3E%3C/svg%3E") no-repeat center / contain;
  flex-shrink:0;
}
.btn{
  display:inline-block;
  padding:11px 22px;
  border-radius:999px;
  font-weight:600;
  font-size:14px;
  text-decoration:none;
  cursor:pointer;
  border:1px solid var(--gold);
  color:#fff;
  background:transparent;
  transition:background 0.15s ease, color 0.15s ease;
}
.btn:hover{ background:rgba(217,164,65,0.12); }
.btn.solid{
  background:linear-gradient(180deg, var(--gold-bright), var(--gold));
  color:#141008;
  border:none;
}
.btn.solid:hover{ filter:brightness(1.06); }

/* ---------- Breadcrumb ---------- */
.breadcrumb{ padding:18px 0 0; font-size:13px; color:var(--dim); }
.breadcrumb a{ color:var(--dim); text-decoration:none; }
.breadcrumb a:hover{ color:var(--gold-bright); }

/* ---------- Hero ---------- */
.hero{
  padding: clamp(56px, 10vw, 96px) 0 clamp(40px, 6vw, 60px);
  position:relative;
  overflow:hidden;
  background-image:
    linear-gradient(rgba(217,164,65,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217,164,65,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: center top;
  -webkit-mask-image: linear-gradient(180deg, black 0%, black 70%, transparent 100%);
  mask-image: linear-gradient(180deg, black 0%, black 70%, transparent 100%);
}
.hero .wrap{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap: clamp(24px, 4vw, 40px);
}
.hero .tagline{
  color:var(--gold-bright);
  font-size:13px;
  letter-spacing:0.12em;
  margin:0 0 16px;
  font-weight:600;
}
.hero h1{
  font-size:var(--fs-h1);
  line-height:1.06;
}
.hero p.lede{
  color:var(--dim);
  font-size:17px;
  max-width:52ch;
  margin:22px auto 30px;
}
.hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:34px; justify-content:center; }
.hero-stats{
  display:flex; flex-wrap:wrap; row-gap:16px;
  border-top:1px solid var(--hair);
  padding-top:18px;
  justify-content:center;
}
.hero-stats div{
  padding-right:clamp(14px, 3vw, 28px); margin-right:clamp(14px, 3vw, 28px);
  border-right:1px solid var(--hair);
  font-size:13px; color:var(--dim);
  text-align:center;
}
.hero-stats div:last-child{ border-right:none; margin-right:0; padding-right:0; }
.hero-stats strong{ display:block; color:#fff; font-size:20px; font-family:'Oswald',sans-serif; }

.blueprint{ width:100%; height:auto; max-width:462px; }
.blueprint line, .blueprint path, .blueprint circle{
  stroke:var(--line);
  stroke-width:1.6;
  fill:none;
}
.blueprint .gold-stroke{ stroke:var(--gold); }
.blueprint text{
  fill:var(--dim);
  font-size:9px;
  font-family:-apple-system, sans-serif;
  letter-spacing:0.04em;
}

/* small hero used on inner pages */
.page-hero{ padding: clamp(40px,6vw,64px) 0 clamp(28px,4vw,40px); border-bottom:1px solid var(--hair); text-align:center; }
.page-hero h1{ font-size:clamp(30px,3vw+1rem,46px); line-height:1.1; margin-bottom:14px; }
.page-hero p.lede{ color:var(--dim); font-size:16px; max-width:62ch; margin:0 auto 24px; }

/* ---------- Trust badges (Licensed, Bonded, Insured) ---------- */
.trust-strip{ padding: var(--sp-3) 0; border-bottom:1px solid var(--hair); }
.trust-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  text-align:center;
}
.trust-item{ font-size:13.5px; color:var(--dim); }
.trust-item strong{ display:block; color:#fff; font-family:'Oswald',sans-serif; font-size:15px; margin-bottom:4px; letter-spacing:0.01em; }
@media (max-width:820px){
  .trust-grid{ grid-template-columns:1fr 1fr; }
}

/* ---------- Services ---------- */
.service-row{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:var(--sp-2);
  padding:var(--sp-3) 0;
}
.service-row:not(:last-child){ border-bottom:1px solid var(--hair); }
.icon-col{
  width:96px;
  height:96px;
  border-radius:50%;
  border:1px solid var(--hair);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.icon-col svg{ width:52%; height:52%; display:block; }
.service-row h3{ font-size:var(--fs-h3); margin-bottom:10px; }
.service-row p{ color:var(--dim); font-size:15px; max-width:60ch; margin:0 auto; }

/* service card grid used on homepage focus areas + service index links */
.service-card-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:36px;
}
.service-card{
  border:1px solid var(--hair);
  border-radius:14px;
  padding:26px 22px;
  text-decoration:none;
  display:block;
  transition:border-color .2s ease, transform .2s ease;
}
.service-card:hover{ border-color:var(--gold); transform:translateY(-3px); }
.service-card h3{ font-size:18px; margin-bottom:10px; }
.service-card p{ color:var(--dim); font-size:14px; margin:0 0 14px; }
.service-card .go{ color:var(--gold-bright); font-size:13px; font-weight:600; }
@media (max-width:820px){ .service-card-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .service-card-grid{ grid-template-columns:1fr; } }

/* ---------- What's included / scope lists ---------- */
.scope-grid{ display:grid; grid-template-columns:1fr 1fr; gap:32px; margin-top:36px; }
.scope-col h3{ font-size:16px; margin-bottom:14px; color:var(--gold-bright); }
.scope-col ul{ margin:0; padding:0; list-style:none; }
.scope-col li{ padding:8px 0 8px 26px; position:relative; color:var(--cream); font-size:14.5px; border-bottom:1px solid var(--hair); }
.scope-col li:last-child{ border-bottom:none; }
.scope-col li::before{ content:"—"; position:absolute; left:0; color:var(--gold-bright); }
@media (max-width:760px){ .scope-grid{ grid-template-columns:1fr; } }

/* ---------- Process ---------- */
.process-rail{
  position:relative;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:24px;
  margin-top:48px;
}
.process-rail::before{
  content:"";
  position:absolute;
  top:15px; left:0; right:0;
  height:1px;
  background:var(--hair);
}
.step{ position:relative; text-align:center; display:flex; flex-direction:column; align-items:center; }
.step .num{
  width:32px; height:32px;
  border-radius:50%;
  border:1px solid var(--gold);
  color:var(--gold-bright);
  display:flex; align-items:center; justify-content:center;
  font-family:'Oswald',sans-serif;
  font-size:14px;
  background:var(--ink);
  position:relative; z-index:1;
  margin-bottom:16px;
}
.step h4{ color:#fff; font-size:15px; font-weight:600; margin:0 0 6px; }
.step p{ color:var(--dim); font-size:13.5px; margin:0; }
@media (max-width:900px){
  .process-rail{ grid-template-columns:1fr 1fr; row-gap:32px; }
  .process-rail::before{ display:none; }
}

/* ---------- FAQ ---------- */
.faq-item{ border-bottom:1px solid var(--hair); padding:18px 0; }
.faq-item summary{ cursor:pointer; font-weight:600; color:#fff; font-size:15.5px; list-style:none; display:flex; justify-content:space-between; align-items:center; gap:12px; }
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{ content:"+"; color:var(--gold-bright); font-size:22px; line-height:1; flex-shrink:0; }
.faq-item[open] summary::after{ content:"\2212"; }
.faq-item p{ color:var(--dim); font-size:14.5px; margin:12px 0 0; line-height:1.6; }

/* ---------- Trust / reviews ---------- */
.review-row{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:32px;
  margin-top:40px;
}
.review{
  border-top:1px solid var(--gold);
  padding-top:16px;
  text-align:center;
}
.review p{ font-size:14.5px; color:var(--cream); margin:0 0 14px; line-height:1.55; }
.review .who{ font-size:12.5px; color:var(--dim); }
.review .who strong{ color:#fff; }
.trust-links{ margin-top:36px; display:flex; gap:24px; flex-wrap:wrap; justify-content:center; }
.trust-links a{ font-size:14px; color:var(--gold-bright); text-decoration:none; }
.trust-links a:hover{ text-decoration:underline; }
@media (max-width:900px){ .review-row{ grid-template-columns:1fr; } }

/* ---------- Estimate form ---------- */
.estimate-panel{
  background:linear-gradient(180deg, var(--panel), #0a0906);
  border:1px solid var(--hair);
  border-radius:20px;
  padding:44px;
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap:48px;
}
.estimate-panel .copy{ text-align:center; }
.estimate-panel .copy h2{ font-size:var(--fs-h2); margin-bottom:14px; }
.estimate-panel .copy p{ color:var(--dim); font-size:15px; max-width:38ch; margin-left:auto; margin-right:auto; }
.field{ margin-bottom:16px; text-align:center; }
.field label{ display:block; color:var(--gold-bright); font-size:12px; margin-bottom:6px; letter-spacing:0.02em; }
.field input, .field select, .field textarea{
  width:100%;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid rgba(217,164,65,0.4);
  background:rgba(255,255,255,0.04);
  color:#fff;
  font-size:15px;
  font-family:inherit;
  text-align:center;
  outline:none;
}
.field textarea{ resize:vertical; min-height:80px; }
.field input:focus, .field select:focus, .field textarea:focus{
  border-color:var(--gold-bright);
  box-shadow:0 0 0 3px rgba(217,164,65,0.15);
}
.field.error input, .field.error select{ border-color:#e5484d; }
.field .err-msg{ color:#ff8a8a; font-size:12px; margin-top:5px; display:none; text-align:center; }
.field.error .err-msg{ display:block; }
.send-btn{
  width:100%; padding:14px; border:none; border-radius:999px;
  background:linear-gradient(180deg, var(--gold-bright), var(--gold));
  color:#141008; font-weight:700; font-size:15px; cursor:pointer;
}
.send-btn:disabled{ opacity:0.6; cursor:default; }
.status-msg{ margin-top:14px; font-size:13px; text-align:center; color:var(--gold-bright); display:none; }
.status-msg.show{ display:block; }
.status-msg.error{ color:#ff8a8a; }
.thanks{ text-align:center; padding:20px 0; }
.thanks .check{
  width:52px; height:52px; margin:0 auto 14px; border-radius:50%;
  border:2px solid var(--gold-bright); display:flex; align-items:center; justify-content:center;
  color:var(--gold-bright); font-size:26px;
}
.thanks p{ color:var(--cream); font-size:14px; line-height:1.5; }
.hidden{ display:none !important; }
@media (max-width:900px){
  .estimate-panel{ grid-template-columns:1fr; padding:28px; }
}

/* ---------- City / service-area links ---------- */
.city-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:32px; }
.city-chip{
  border:1px solid var(--hair); border-radius:12px; padding:16px 18px;
  text-decoration:none; display:flex; align-items:center; justify-content:space-between;
  font-size:14.5px; font-weight:600; color:var(--cream);
  transition:border-color .2s ease;
}
.city-chip:hover{ border-color:var(--gold); color:var(--gold-bright); }
@media (max-width:820px){ .city-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:520px){ .city-grid{ grid-template-columns:1fr; } }

/* ---------- Projects ---------- */
.work-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
  margin-top:40px;
}
.work-card{
  margin:0;
  cursor:zoom-in;
  background:var(--panel);
  border:1px solid var(--hair);
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(0,0,0,0.28);
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.work-card:hover{
  transform:translateY(-4px);
  border-color:var(--gold);
  box-shadow:0 16px 32px rgba(0,0,0,0.4);
}
.work-card img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
  display:block;
  transition:transform .5s ease;
}
.work-card:hover img{ transform:scale(1.05); }
.work-card figcaption{
  display:flex;
  flex-direction:column;
  gap:2px;
  padding:14px 16px 16px;
  border-top:1px solid var(--hair);
}
.wc-title{ color:var(--cream); font-weight:600; font-size:14px; letter-spacing:.01em; }
.wc-tag{ color:var(--dim); font-size:12px; }
@media (max-width:900px){ .work-grid{ grid-template-columns:repeat(2,1fr); gap:16px; } }

/* project detail card (used on /projects/) */
.project-detail{ border:1px solid var(--hair); border-radius:16px; padding:28px; margin-top:28px; display:grid; grid-template-columns:1fr 1.3fr; gap:28px; }
.project-detail img{ border-radius:10px; width:100%; aspect-ratio:4/5; object-fit:cover; }
.project-detail h3{ font-size:19px; margin-bottom:6px; }
.project-detail .meta{ color:var(--gold-bright); font-size:12.5px; margin-bottom:14px; }
.project-detail dl{ margin:0; display:grid; grid-template-columns:auto 1fr; gap:6px 14px; font-size:14px; }
.project-detail dt{ color:var(--dim); }
.project-detail dd{ margin:0; color:var(--cream); }
.project-detail .links{ margin-top:16px; display:flex; gap:16px; flex-wrap:wrap; }
.project-detail .links a{ color:var(--gold-bright); font-size:13.5px; text-decoration:none; }
.project-detail .links a:hover{ text-decoration:underline; }
@media (max-width:760px){ .project-detail{ grid-template-columns:1fr; } }

.lightbox{
  position:fixed; inset:0; z-index:200;
  display:flex; align-items:center; justify-content:center;
  background:rgba(8,7,4,0.92);
  backdrop-filter:blur(4px);
  opacity:0; pointer-events:none;
  transition:opacity .25s ease;
}
.lightbox.open{ opacity:1; pointer-events:auto; }
.lightbox figure{ margin:0; max-width:min(90vw,1000px); text-align:center; }
.lightbox img{
  max-width:100%; max-height:78vh;
  border-radius:6px;
  box-shadow:0 20px 60px rgba(0,0,0,0.6);
  border:1px solid rgba(217,164,65,0.3);
}
.lightbox figcaption{ color:var(--cream); font-size:14px; margin-top:16px; letter-spacing:.02em; }
.lb-close, .lb-nav{
  position:absolute;
  background:none; border:1px solid var(--hair); color:var(--cream);
  border-radius:50%;
  width:44px; height:44px;
  font-size:22px; line-height:1;
  cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:border-color .2s ease, color .2s ease;
}
.lb-close:hover, .lb-nav:hover{ border-color:var(--gold); color:var(--gold-bright); }
.lb-close{ top:24px; right:24px; }
.lb-prev{ left:24px; top:50%; transform:translateY(-50%); }
.lb-next{ right:24px; top:50%; transform:translateY(-50%); }
@media (max-width:900px){
  .lb-prev{ left:8px; }
  .lb-next{ right:8px; }
  .lb-close{ top:12px; right:12px; }
}

/* ---------- Footer ---------- */
footer{ border-top:1px solid var(--hair); padding:44px 0 calc(44px + env(safe-area-inset-bottom)); }
footer .wrap{
  display:flex; flex-direction:column; align-items:center; text-align:center;
  gap:16px;
}
footer .addr{ font-size:13.5px; color:var(--dim); line-height:1.6; }
footer .flinks{ display:flex; gap:20px; flex-wrap:wrap; justify-content:center; }
footer .flinks a{ font-size:13.5px; color:var(--cream); text-decoration:none; }
footer .flinks a:hover{ color:var(--gold-bright); }
footer .fsitemap{ display:flex; gap:16px; flex-wrap:wrap; justify-content:center; font-size:12.5px; }
footer .fsitemap a{ color:var(--dim); text-decoration:none; }
footer .fsitemap a:hover{ color:var(--gold-bright); }
footer .copy{ width:100%; font-size:12px; color:#6b6455; margin-top:8px; }

/* ---------- Sticky mobile CTA bar ---------- */
.mobile-cta-bar{ display:none; }
@media (max-width:820px){
  .mobile-cta-bar{
    display:flex;
    position:fixed; left:0; right:0; bottom:0; z-index:60;
    background:rgba(10,9,6,0.96);
    border-top:1px solid var(--hair);
    padding: 10px clamp(14px,4vw,20px) calc(10px + env(safe-area-inset-bottom));
    gap:10px;
  }
  .mobile-cta-bar a{
    flex:1;
    text-align:center;
    padding:13px 10px;
    border-radius:999px;
    font-weight:700;
    font-size:14px;
    text-decoration:none;
  }
  .mobile-cta-bar a.call{ border:1.5px solid var(--gold); color:var(--gold-bright); }
  .mobile-cta-bar a.book{ background:linear-gradient(180deg, var(--gold-bright), var(--gold)); color:#141008; }
  body{ padding-bottom:76px; }
}

@media (max-width:820px){
  .header-nav{ display:none; }
}
@media (max-width:480px){
  .header-divider{ display:none; }
  .logo img{ height:48px; }
  .logo-block{ display:none; }
  .logo-badge{
    margin-left:8px;
    padding-left:8px;
    font-size:10.5px;
  }
  .logo-badge strong{ font-size:12px; }
  .header-nav{ display:none; }
  .header-actions{ gap:0; padding-right:6px; }
  .phone-box{
    padding:8px 14px;
    font-size:12px;
    gap:5px;
  }
  .phone-box::before{ width:13px; height:13px; }
}
@media (max-width:400px){
  .logo img{ height:44px; }
  .logo-badge{ font-size:9.5px; margin-left:6px; padding-left:6px; }
  .logo-badge strong{ font-size:11px; }
  .phone-box{ font-size:11px; padding:7px 10px; }
  .header-actions{ padding-right:4px; }
}
@media (max-width:900px) and (min-width:481px){
  header .wrap{ justify-content:flex-start; gap:clamp(24px, 4vw, 48px); }
}
@media (max-width:900px){
  .blueprint-wrap{ max-width:308px; }
}

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

.btn-callout{
  position:absolute;
  right:-18px;
  bottom:72px;
  width:150px;
  z-index:5;
  pointer-events:none;
}
.btn-callout .tag{
  background:var(--gold-bright);
  color:#1a1408;
  font-family:'Caveat', 'Segoe Script', cursive;
  font-size:19px;
  font-weight:700;
  line-height:1.15;
  text-align:center;
  padding:10px 14px 12px;
  border-radius:4px;
  transform:rotate(-6deg);
  box-shadow:0 8px 18px rgba(0,0,0,0.35);
}
.btn-callout .tag small{
  display:block;
  font-family:inherit;
  font-size:13px;
  font-weight:600;
  opacity:.85;
}
.btn-callout svg{
  display:block;
  margin:2px auto 0 28px;
}
@media (max-width:900px){
  .btn-callout{
    position:static;
    width:auto;
    margin:0 auto 18px;
    display:flex;
    flex-direction:column;
    align-items:center;
  }
  .btn-callout .tag{ transform:rotate(-3deg); }
  .btn-callout svg{ display:none; }
}
.fin-wrap{
  display:inline-flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}
.fin-label{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:var(--gold-bright);
  font-size:13px;
  font-weight:700;
  white-space:nowrap;
}
.fin-arrow{
  color:var(--line);
  font-size:16px;
  font-weight:400;
}
