/* Design System v1.1 — Two-font system (system fonts only, no webfont download).
   Headings/display: Georgia. Body/UI/labels: Arial.
   Aliases below make legacy hardcoded font-family declarations
   ('Cormorant Garamond', 'Cinzel', 'Inter') resolve to the same system fonts,
   so every page renders consistently without rewriting inline styles. */

:root{
  --bg:#FAF6F0; --bg-2:#F2EAD9; --ink:#2A1F18; --ink-soft:#5C4A3A;
  --brand:#7A5F39; --brand-dark:#6B4F2C; --brand-light:#C9A87C;
  --accent:#C44536; --line:rgba(139,111,71,.18);
  --shadow-sm:0 4px 12px rgba(74,52,30,.08);
  --shadow:0 12px 40px rgba(74,52,30,.12);
  --shadow-lg:0 24px 60px rgba(74,52,30,.18);
  --font-sans:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Arial,sans-serif;
  --font-display:'Cormorant Garamond',Georgia,'Times New Roman',serif;
  --font-label:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Arial,sans-serif;
}
/* Unified heading typography — no decorative italic/red emphasis inside
   H1-H6. Headings inherit one consistent style site-wide. */
h1 em, h2 em, h3 em, h4 em, h5 em, h6 em {
  font-family: inherit !important;
  font-style: normal !important;
  font-weight: inherit !important;
  color: inherit !important;
}

/* === Universal CTA system — two distinct experiences:

   MOBILE (≤768px): one column, every CTA fills its parent container
   (works because the screen is narrow and stacked is the only sane choice).

   DESKTOP (≥769px): every button is exactly 280×51px. Single CTAs are
   centered with auto margins. Groups (Hero 2, Reviews 2, CTA-band 3) sit
   in a horizontal row with 14px gaps. Same width, same height, same
   padding, same font/letter-spacing — the only visual differences across
   buttons are color (primary/secondary/Google) and position.

   The 280px width fits every CTA text on the site (CHAT WITH US,
   VIEW ALL 22 QUESTIONS ▼, Leave a Google Review, etc.) with one
   consistent letter-spacing of 0.1em. */
:root{--cta-w:280px}

/* ---------- MOBILE BASE (≤768px) ---------- */
.gallery-cta,.areas-cta,.contact-cta-row,.reviews-actions,.quick-faq-actions{
  display:flex!important;flex-direction:column!important;align-items:stretch!important;
  gap:12px;max-width:none!important;
  margin-left:auto!important;margin-right:auto!important
}
.gallery-cta > a,.areas-cta > a,.contact-cta-row > a,
.reviews-actions > a,.quick-faq-actions > a,
.reviews-actions a,.reviews-actions .reviews-google-btn,
.reviews-actions .btn-outline,.reviews-actions .btn-primary{
  width:100%!important;min-width:0!important;max-width:none!important
}
.reviews-actions > div{
  display:flex!important;flex-direction:column!important;
  width:100%!important;align-items:stretch!important;gap:12px!important
}
.price-card .btn-primary,.price-card .btn-chat,.price-card .btn-outline,
.price-card > a{
  width:100%!important;min-width:0!important;max-width:none!important;
  margin-left:auto!important;margin-right:auto!important;display:flex!important
}
.cta-band .actions{flex-direction:column!important;width:100%!important;
  max-width:none!important;gap:12px;margin:0 auto}
.cta-band .actions > a,.cta-band .actions .btn-primary{
  width:100%!important;min-width:0!important;max-width:none!important;
  justify-content:center!important}
#faqToggleBtn{
  width:100%!important;min-width:0!important;max-width:none!important;
  display:block!important;margin-left:auto!important;margin-right:auto!important
}
.blog-feat-body .btn-outline,
.blog-feat-body .btn-primary,
.blog-feat-body .btn-chat,
.blog-feat-body > a[class*="btn-"]{
  width:100%!important;min-width:0!important;max-width:none!important;
  display:flex!important;align-items:center!important;justify-content:center!important
}

/* Reviews card: narrow viewports drop the 760px cap; let the buttons
   break out of the card's side padding so they reach .container width */
@media(max-width:980px){
  .reviews-card{max-width:none!important;padding-left:18px!important;padding-right:18px!important}
  .reviews-actions{
    margin-left:-18px!important;margin-right:-18px!important;
    width:calc(100% + 36px)!important
  }
}

/* ---------- DESKTOP (≥769px) — contextual button rules ----------
   Principle: prefer 280×51 everywhere; prefer one row per button group;
   when a section's natural layout would force a button group to wrap,
   honor the section design instead of breaking the layout.

   - Single CTAs (Gallery / Areas / Quick-FAQ end / FAQ toggle / Pricing /
     Blog featured): 280px centered.
   - Hero 2-up: lives in a narrower text column next to the hero image,
     so buttons flex from 220 to 280 max — always one row.
   - Reviews 2-up: horizontal row inside reviews-card, each 280px.
   - CTA-band 3-up: 2-COLUMN layout (heading left, buttons-column right);
     buttons stack vertically inside their column at 280px each. This is
     NOT "buttons wrapping to 2 rows" — it's the natural section design. */
@media(min-width:769px){
  /* Normalize letter-spacing AND enforce one-line text on every CTA.
     If a button can't fit its text at the default width, we widen the
     button rather than wrap the text (e.g. Reviews 320 below). */
  .btn-primary,.btn-outline,.btn-chat,.btn-light,
  .btn-chat-big,.btn-call-small,
  .reviews-google-btn,#faqToggleBtn{
    letter-spacing:.1em!important;
    white-space:nowrap!important
  }
  /* Some CTAs (notably the quick-faq end button) are bare <a> with no
     class. Apply nowrap by position so every CTA across the site refuses
     to wrap text — if it can't fit, widen the button. */
  .gallery-cta a,.areas-cta a,.quick-faq-actions a,.contact-cta-row a,
  .hero-cta-row a,.reviews-actions a,.cta-band .actions a,
  .price-card a,.blog-feat-body a{
    white-space:nowrap!important
  }

  /* SINGLE-BUTTON SECTIONS — centered 280px */
  .gallery-cta,.areas-cta,.quick-faq-actions{
    max-width:var(--cta-w)!important;
    margin-left:auto!important;margin-right:auto!important
  }
  .gallery-cta > a,.areas-cta > a,.quick-faq-actions > a{
    width:var(--cta-w)!important;max-width:var(--cta-w)!important;flex:0 0 auto!important
  }

  /* CONTACT 2-up: horizontal row in the info column, flex like Hero so
     both buttons stay on one row even at narrower viewports */
  .contact-cta-row{
    flex-direction:row!important;flex-wrap:nowrap!important;
    max-width:none!important;width:100%!important;
    gap:14px!important;
    margin-left:0!important;margin-right:auto!important;
    justify-content:flex-start!important
  }
  .contact-cta-row > a{
    flex:1 1 0!important;width:auto!important;
    min-width:0!important;max-width:var(--cta-w)!important
  }

  /* HERO 2-up: flex one row in the text column. Adapt to column width
     between 220-280px so it never wraps to two rows. */
  .hero-cta-row{display:flex!important;gap:14px!important;flex-wrap:nowrap!important;
    align-items:center!important;justify-content:flex-start!important}
  .hero-cta-row > a,
  .hero-cta-row .btn-primary,.hero-cta-row .btn-outline,
  .hero-cta-row .btn-chat,.hero-cta-row .btn-chat-big,
  .hero-cta-row .btn-call-small{
    flex:1 1 0!important;width:auto!important;
    min-width:0!important;max-width:var(--cta-w)!important;height:51px!important
  }

  /* REVIEWS 2-up: horizontal row inside reviews-card, each 280px, centered */
  .reviews-card{max-width:760px!important;padding-left:50px!important;padding-right:50px!important}
  .reviews-actions{
    margin-left:auto!important;margin-right:auto!important;
    width:auto!important;max-width:none!important
  }
  .reviews-actions > div{
    flex-direction:row!important;justify-content:center!important;
    gap:14px!important;width:auto!important;align-items:center!important
  }
  .reviews-actions .reviews-google-btn,
  .reviews-actions .btn-outline,
  .reviews-actions .btn-primary,
  .reviews-actions a{
    width:320px!important;max-width:320px!important;
    flex:0 0 320px!important;height:51px!important
  }
  /* Google Review button has G icon + ✍ + 21 chars of text — tighten
     side padding so 320 width holds the whole content on one line */
  .reviews-actions .reviews-google-btn{
    padding-left:16px!important;padding-right:16px!important
  }

  /* CTA-BAND: 2-column centered layout. Heading + buttons-column sit
     close together in the middle of the section; the empty space lives
     at the page edges (natural breathing room) instead of as an awkward
     gap between heading and buttons. Buttons stay at 280px universal. */
  .cta-band .container{
    flex-direction:row!important;justify-content:center!important;
    align-items:center!important;gap:60px!important;
    text-align:left!important;flex-wrap:wrap!important
  }
  .cta-band h3{flex:0 1 auto!important;max-width:520px!important;margin:0!important}
  .cta-band .actions{
    flex-direction:column!important;width:var(--cta-w)!important;
    max-width:var(--cta-w)!important;flex:0 0 var(--cta-w)!important;
    gap:12px!important;margin:0!important
  }
  .cta-band .actions > a,.cta-band .actions .btn-primary{
    width:100%!important;max-width:var(--cta-w)!important;
    flex:0 0 51px!important;height:51px!important;
    justify-content:center!important
  }

  /* PRICING CARD button: centered 280px (card stays ~425px wide) */
  .price-card .btn-primary,.price-card .btn-chat,
  .price-card .btn-outline,.price-card > a{
    width:var(--cta-w)!important;max-width:var(--cta-w)!important
  }

  /* FAQ TOGGLE: 280px centered */
  #faqToggleBtn{
    width:var(--cta-w)!important;max-width:var(--cta-w)!important;
    padding-left:16px!important;padding-right:16px!important
  }

  /* BLOG FEATURED "Read the article": 280px, left-aligned for editorial feel */
  .blog-feat-body .btn-outline,
  .blog-feat-body .btn-primary,
  .blog-feat-body .btn-chat,
  .blog-feat-body > a[class*="btn-"]{
    width:var(--cta-w)!important;max-width:var(--cta-w)!important;
    margin-left:0!important;margin-right:auto!important
  }
}

/* === FAQ row tightening — was 24px top+bottom (48px gap), now 14px (28px gap) */
.faq-item{padding:14px 0!important}
.faq-item summary{padding:6px 0!important}

/* === Mobile spacing tightening — sections felt too spread out at 48px */
@media(max-width:560px){
  .section,
  .about,.services,.pricing,.gallery,.areas,.reviews{padding:32px 0!important}
  .quick-faq{padding:0 0 32px!important}
  .hero{padding:28px 0 32px!important}
  .cta-band{padding:32px 0!important}
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;overflow-x:hidden}
body{font-family:var(--font-sans);background:var(--bg);color:var(--ink);line-height:1.65;font-size:16px;overflow-x:hidden}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible,select:focus-visible{outline:3px solid #1d4ed8;outline-offset:3px}
.container{max-width:1240px;margin:0 auto;padding:0 24px}

/* TOPBAR */
.topbar{background:linear-gradient(90deg,#6B4F2C 0%,#7A5F39 50%,#6B4F2C 100%);color:#FAF6F0;font-size:13px;letter-spacing:.04em;padding:8px 0}
.topbar .container{display:flex;justify-content:space-between;align-items:center;gap:20px;flex-wrap:wrap}
.topbar .left{display:flex;gap:24px;align-items:center;flex-wrap:wrap}
.topbar .left span{display:inline-flex;align-items:center;gap:6px}
.topbar svg{width:14px;height:14px}
.topbar a{color:#fff;text-decoration:none;border-bottom:1px dotted rgba(255,255,255,.4)}
.topbar a:hover{border-bottom-color:#fff}

/* HEADER */
.header{background:rgba(250,246,240,.94);border-bottom:1px solid var(--line);position:sticky;top:0;z-index:100;backdrop-filter:blur(10px)}
.header .container{display:flex;align-items:center;padding:14px 24px;gap:24px}
.logo{display:flex;align-items:center;gap:20px;margin-right:auto}
.logo img{width:62px;height:62px;border-radius:50%;box-shadow:var(--shadow-sm)}
.logo .text{min-width:0}
.logo .text h1,.logo .text span.brand-name{font-family:var(--font-display);font-size:24px;font-weight:600;letter-spacing:.02em;color:var(--brand-dark);line-height:1;display:block}
.logo .text p{font-family:var(--font-label);font-size:10px;letter-spacing:.32em;color:var(--brand);margin-top:4px;text-transform:uppercase}
.nav ul{display:flex;list-style:none;gap:0}
.nav li a{display:block;padding:10px 11px;font-size:13px;font-weight:500;letter-spacing:.08em;color:var(--ink-soft);text-transform:uppercase;transition:all .25s;position:relative}
.nav li a:hover{color:var(--brand-dark)}
.nav li a::after{content:'';position:absolute;bottom:4px;left:50%;width:0;height:1px;background:var(--accent);transition:all .3s;transform:translateX(-50%)}
.nav li a:hover::after{width:50%}
.nav li.active a{color:var(--brand-dark)}
.nav li.active a::after{width:50%}
.header-cta{display:inline-flex;align-items:center;gap:8px;background:var(--accent);color:#fff;padding:11px 18px;font-size:13px;font-weight:600;letter-spacing:.06em;border-radius:3px;transition:all .25s;white-space:nowrap}
.header-cta:hover{background:#a8392c;transform:translateY(-1px);box-shadow:var(--shadow-sm)}
.menu-toggle{display:none;align-items:center;justify-content:center;width:44px;height:44px;border:1px solid var(--line);border-radius:4px;background:#fff;color:var(--brand-dark);cursor:pointer}
.menu-toggle svg{width:22px;height:22px}

/* BUTTONS */
.btn-primary{display:inline-flex;align-items:center;justify-content:center;gap:10px;box-sizing:border-box;height:51px;min-width:240px;padding:0 32px;background:var(--accent);color:#fff;font-size:14px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;border-radius:3px;transition:all .3s;border:1.5px solid transparent;cursor:pointer;box-shadow:var(--shadow-sm);text-decoration:none}
.btn-primary:hover{background:#a8392c;transform:translateY(-2px);box-shadow:var(--shadow)}
.btn-outline{display:inline-flex;align-items:center;justify-content:center;gap:10px;box-sizing:border-box;height:51px;min-width:240px;padding:0 32px;background:transparent;color:var(--brand-dark);font-size:14px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;border:1.5px solid var(--brand);border-radius:3px;transition:all .3s;text-decoration:none}
.btn-outline:hover{background:var(--brand);color:#fff}
.btn-chat{display:inline-flex;align-items:center;justify-content:center;gap:10px;box-sizing:border-box;height:51px;min-width:240px;padding:0 32px;background:linear-gradient(135deg,var(--brand) 0%,var(--brand-dark) 100%);color:#fff;font-size:14px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;border-radius:3px;border:1.5px solid transparent;transition:all .3s;text-decoration:none}
.btn-chat:hover{transform:translateY(-2px);box-shadow:var(--shadow)}
.btn-light{display:inline-flex;align-items:center;justify-content:center;gap:10px;box-sizing:border-box;height:51px;min-width:240px;padding:0 32px;background:#fff;color:var(--brand-dark);font-size:14px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;border-radius:3px;border:1.5px solid transparent;transition:all .3s;text-decoration:none}
.btn-light:hover{transform:translateY(-2px);box-shadow:var(--shadow)}

/* PAGE HEAD (内页用) */
.page-head{background:linear-gradient(135deg,#F2EAD9 0%,#FAF6F0 60%);padding:60px 0 50px;border-bottom:1px solid var(--line);text-align:center;position:relative;overflow:hidden}
.page-head::before{content:'';position:absolute;inset:0;background-image:radial-gradient(circle at 30% 50%,rgba(201,168,124,.08) 0%,transparent 50%);pointer-events:none}
.page-head .breadcrumb{font-family:var(--font-label);font-size:11px;letter-spacing:.3em;color:var(--brand);margin-bottom:14px;text-transform:uppercase}
.page-head .breadcrumb a{color:var(--brand);border-bottom:1px dotted var(--brand-light)}
.page-head h1{font-family:var(--font-display);font-size:54px;font-weight:500;line-height:1.1;color:var(--ink);letter-spacing:-.01em;max-width:960px;margin:0 auto}
.page-head h1 em{font-style:italic;color:var(--accent)}
.page-head .sub{font-size:16px;color:var(--ink-soft);margin-top:20px;max-width:680px;margin-left:auto;margin-right:auto;line-height:1.7}

/* SECTION */
.section{padding:80px 0;position:relative}
.section-head{text-align:center;max-width:680px;margin:0 auto 50px}
.section-tag{display:inline-flex;align-items:center;gap:14px;font-family:var(--font-label);font-size:11px;letter-spacing:.4em;color:var(--brand);text-transform:uppercase;margin-bottom:18px}
.section-tag::before,.section-tag::after{content:'';width:30px;height:1px;background:var(--brand-light)}
.section h2,.section-head h2{font-family:var(--font-display);font-size:42px;font-weight:500;line-height:1.15;color:var(--ink);letter-spacing:-.01em}
.section h2 em,.section-head h2 em{font-style:italic;color:var(--accent)}
.section-desc{font-size:16px;color:var(--ink-soft);margin-top:18px;line-height:1.75}

/* CONTENT (长文用) */
.content{max-width:820px;margin:0 auto}
.content h2{font-family:var(--font-display);font-size:34px;font-weight:600;color:var(--ink);margin:48px 0 18px;line-height:1.2}
.content h2:first-child{margin-top:0}
.content h3{font-family:var(--font-display);font-size:24px;font-weight:600;color:var(--ink);margin:32px 0 14px;line-height:1.3}
.content p{font-size:16px;line-height:1.85;color:var(--ink-soft);margin-bottom:18px}
.content ul{margin:14px 0 24px 22px}
.content li{font-size:16px;line-height:1.85;color:var(--ink-soft);margin-bottom:8px}
.content img{border-radius:6px;margin:32px 0;box-shadow:var(--shadow-sm)}
.content blockquote{border-left:3px solid var(--brand-light);padding:6px 22px;margin:28px 0;font-family:var(--font-display);font-size:22px;font-style:italic;color:var(--brand-dark);line-height:1.5}

/* FOOTER */
.footer{background:#1f1812;color:rgba(250,246,240,.7);padding:70px 0 0}
.foot-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr 1fr;gap:40px;margin-bottom:50px}
.foot-col h5,.foot-col .foot-heading{font-family:var(--font-label);font-size:12px;letter-spacing:.3em;color:var(--brand-light);margin-bottom:20px;text-transform:uppercase;font-weight:700}
.foot-col .brand-blk{display:flex;align-items:center;gap:14px;margin-bottom:16px}
.foot-col .brand-blk img{width:54px;height:54px;border-radius:50%}
.foot-col .brand-blk h4,.foot-col .brand-blk .foot-brand-name{font-family:var(--font-display);font-size:22px;color:#fff;font-weight:600;line-height:1.2}
.foot-col .brand-blk p{font-size:11px;color:var(--brand-light);letter-spacing:.2em;margin-top:2px}
.foot-col p{font-size:14px;line-height:1.8}
.foot-col ul{list-style:none}
.foot-col ul li{margin-bottom:10px;font-size:14px}
.foot-col ul a{color:rgba(250,246,240,.86);transition:color .25s;display:inline-flex;align-items:center;min-height:24px}
.foot-col ul a:hover{color:var(--brand-light)}
.foot-contact-row{display:flex;gap:10px;align-items:flex-start;margin-bottom:14px;font-size:14px;min-height:24px}
.foot-contact-row a{display:inline-flex;align-items:center;min-height:24px;color:rgba(250,246,240,.9)}
.foot-contact-row svg{width:16px;height:16px;color:var(--brand-light);flex:none;margin-top:3px}
.foot-bot{border-top:1px solid rgba(201,168,124,.15);padding:20px 0;font-size:13px}
.foot-bot .container{display:flex;justify-content:space-between;flex-wrap:wrap;gap:16px}
.foot-bot a{color:rgba(250,246,240,.9);display:inline-flex;align-items:center;min-height:24px}
.foot-bot a:hover{color:var(--brand-light)}

/* CTA BAND (复用) */
.cta-band{background:linear-gradient(120deg,#6B4F2C 0%,#7A5F39 100%);color:#fff;padding:80px 0;position:relative;overflow:hidden}
.cta-band::before{content:'';position:absolute;inset:0;background-image:radial-gradient(circle at 30% 50%,rgba(255,255,255,.08) 0%,transparent 50%)}
.cta-band .container{display:flex;justify-content:space-between;align-items:center;gap:40px;flex-wrap:wrap;position:relative}
.cta-band h3{font-family:var(--font-display);font-size:38px;font-weight:500;line-height:1.15;color:#fff}
.cta-band h3 em{font-style:italic;color:var(--brand-light)}
.cta-band .actions{display:flex;gap:14px;flex-wrap:wrap}
.cta-band .btn-primary{background:var(--accent)}

/* TRUST STRIP */
.trust{background:var(--ink);color:#FAF6F0;padding:28px 0}
.trust-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:40px;text-align:center}
.trust-item{display:flex;flex-direction:column;gap:6px;align-items:center}
.trust-item svg{width:28px;height:28px;color:var(--brand-light);margin-bottom:8px}
.trust-item .t{font-family:var(--font-display);font-size:18px;font-weight:600;color:#fff}
.trust-item .s{font-size:12px;letter-spacing:.06em;color:rgba(250,246,240,.6)}

/* RESPONSIVE */
@media(max-width:980px){
  .topbar{display:none}
  .header .container{padding:10px 18px;gap:12px}
  .logo{gap:14px;min-width:0;flex:1 1 auto;margin-right:0}
  .logo img{width:54px;height:54px}
  .logo .text h1,.logo .text span.brand-name{font-size:22px}
  .logo .text p{font-size:9px;letter-spacing:.24em}
  .menu-toggle{display:inline-flex;order:3;flex:none;margin-left:auto}
  .nav{display:block;position:absolute;top:100%;left:0;right:0;background:rgba(250,246,240,.98);border-bottom:1px solid var(--line);box-shadow:var(--shadow-sm);max-height:0;overflow:hidden;transition:max-height .25s ease}
  .nav.is-open{max-height:70vh}
  .nav ul{display:grid;grid-template-columns:1fr 1fr;gap:0;padding:10px 18px 16px}
  .nav li a{padding:12px 8px;font-size:12px}
  .nav li a::after{bottom:7px}
  .foot-grid{grid-template-columns:1fr 1fr}
  .trust-grid{grid-template-columns:1fr 1fr;gap:24px}
  .page-head h1{font-size:38px}
  .section h2{font-size:30px}
  .content h2{font-size:26px}
}
@media(max-width:560px){
  .container{padding:0 18px}
  .header{position:sticky}
  .header .container{padding:8px 70px 8px 16px;position:relative}
  .logo img{width:48px;height:48px}
  .logo .text h1,.logo .text span.brand-name{font-size:20px}
  .logo .text p{font-size:8px;letter-spacing:.2em}
  .header-cta{display:none}
  .menu-toggle{position:absolute;left:auto;right:16px;top:50%;width:42px;height:42px;transform:translateY(-50%)}
  .nav ul{grid-template-columns:1fr;padding:6px 18px 14px}
  .nav li a{padding:11px 4px}
  .foot-grid{grid-template-columns:1fr}
  .page-head h1{font-size:30px}
  .page-head{padding:36px 0 34px}
  .section{padding:42px 0}
  .section-head{margin-bottom:28px}
  .section-tag{font-size:10px;letter-spacing:.28em;margin-bottom:12px}
  .section-desc{font-size:15px;margin-top:12px}
  .trust{padding:18px 0}
  .trust-grid{gap:14px}
  .trust-item svg{width:22px;height:22px;margin-bottom:4px}
  .trust-item .t{font-size:16px}
  .trust-item .s{font-size:11px}
  .cta-band{padding:44px 0}
  .cta-band h3{font-size:30px}
  .cta-band .actions{flex-direction:column;width:100%;gap:12px}
  .cta-band .actions a{width:100% !important;min-width:0 !important;justify-content:center !important}
  .footer{padding-top:44px}
}

/* 右下角整块留空 - AI Agent Widget 接入位置（不放任何元素） */
