/* ============================================================
   SMILE Dental — Bonita Springs, FL
   Design system: "Coastal Porcelain"
   Bright porcelain whites, deep petrol ink, seaglass teal,
   rounded geometry, generous whitespace.
   Fonts: Outfit (headings) + Nunito Sans (body)
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Color */
  --porcelain: #FBFDFD;       /* page background */
  --white: #FFFFFF;
  --ink: #0B3B47;             /* deep petrol — headings */
  --ink-soft: #34596B;        /* secondary text */
  --muted: #5B7682;           /* captions, meta */
  --primary: #0E7490;         /* ocean teal — CTAs, links */
  --primary-dark: #0B5A70;    /* hover */
  --seaglass: #14B8A6;        /* bright accent */
  --seafoam: #CFF4EF;         /* soft accent fill */
  --sky-wash: #EAF6F8;        /* tinted section background */
  --sky-wash-2: #F2FAFB;      /* lighter tint */
  --border: #DCEBEE;
  --gold: #F2B544;            /* review stars only */
  --danger: #C2410C;          /* emergency accents */

  /* Type */
  --font-head: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Nunito Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Shape */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-pill: 999px;

  /* Elevation (teal-tinted, soft) */
  --shadow-sm: 0 2px 10px rgba(11, 59, 71, 0.06);
  --shadow-md: 0 10px 30px rgba(11, 59, 71, 0.09);
  --shadow-lg: 0 24px 60px rgba(11, 59, 71, 0.13);

  /* Layout */
  --container: 1180px;
  --header-h: 76px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--porcelain);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.6em;
  font-weight: 600;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.3rem, 5.5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.8vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.5rem); }
p { margin: 0 0 1.1em; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
ul { padding-left: 1.2em; }
:focus-visible { outline: 3px solid var(--seaglass); outline-offset: 3px; border-radius: 4px; }
.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 2000;
  background: var(--ink); color: #fff; padding: 10px 18px; border-radius: var(--r-pill);
}
.skip-link:focus { left: 8px; }

/* ---------- Utilities ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section--tint { background: var(--sky-wash); }
.section--tint2 { background: var(--sky-wash-2); }
.section--ink { background: linear-gradient(155deg, #0B3B47 0%, #0E5468 60%, #0E7490 100%); }
.section--ink h2, .section--ink h3 { color: #fff; }
.section--ink p { color: #CDE7ED; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 3px; border-radius: 2px;
  background: var(--seaglass);
}
.lede { font-size: 1.18rem; color: var(--ink-soft); max-width: 62ch; }
.center { text-align: center; }
.center .lede { margin-inline: auto; }
.grid-2 { display: grid; gap: clamp(28px, 5vw, 64px); align-items: center; grid-template-columns: 1fr; }
.grid-3 { display: grid; gap: 24px; grid-template-columns: 1fr; }
.grid-4 { display: grid; gap: 22px; grid-template-columns: 1fr 1fr; }
@media (min-width: 760px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: 15px 30px; border-radius: var(--r-pill);
  border: 2px solid transparent; cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  touch-action: manipulation;
  min-height: 48px;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary { background: var(--primary); color: #fff; box-shadow: 0 8px 22px rgba(14, 116, 144, 0.32); }
.btn--primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(14, 116, 144, 0.4); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn--light { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.btn--light:hover { color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--lg { padding: 18px 38px; font-size: 1.08rem; }

/* ---------- Header ---------- */
.topbar {
  background: var(--ink); color: #BFE0E8;
  font-size: 0.86rem; padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topbar a { color: #fff; font-weight: 600; }
.topbar__hours { display: none; }
@media (min-width: 700px) { .topbar__hours { display: block; } }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 18px;
}
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); }
.brand__mark { width: 44px; height: 44px; flex: none; }
.brand__name { font-size: 1.3rem; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; line-height: 1; }
.brand__name span { color: var(--primary); }
.brand__tag { display: block; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

.nav { display: none; }
@media (min-width: 1040px) {
  .nav { display: flex; align-items: center; gap: 4px; }
}
.nav > a, .nav__parent > button {
  font-family: var(--font-head); font-size: 0.97rem; font-weight: 500;
  color: var(--ink); padding: 10px 14px; border-radius: var(--r-pill);
  background: none; border: 0; cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
}
.nav > a:hover, .nav__parent > button:hover, .nav > a[aria-current="page"] { background: var(--sky-wash); color: var(--primary); }
.nav__parent { position: relative; }
.nav__parent svg { width: 12px; height: 12px; transition: transform 0.2s; }
.nav__parent.open svg { transform: rotate(180deg); }
.nav__menu {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 250px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-md);
  box-shadow: var(--shadow-lg); padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}
.nav__parent.open .nav__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__menu a {
  display: block; padding: 10px 14px; border-radius: var(--r-sm);
  color: var(--ink); font-size: 0.95rem; font-weight: 500;
}
.nav__menu a:hover { background: var(--sky-wash); color: var(--primary); }

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta .btn { padding: 11px 20px; min-height: 44px; font-size: 0.93rem; }
.header-cta__call { display: none; }
@media (min-width: 600px) { .header-cta__call { display: inline-flex; } }

.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 48px; height: 48px; padding: 12px;
  background: var(--sky-wash); border: 0; border-radius: var(--r-sm); cursor: pointer;
}
.nav-toggle span { display: block; height: 2.5px; border-radius: 2px; background: var(--ink); transition: transform 0.25s, opacity 0.25s; }
@media (min-width: 1040px) { .nav-toggle { display: none; } }
body.drawer-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
body.drawer-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.drawer-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 990; pointer-events: none;
}
.drawer__scrim {
  position: absolute; inset: 0; background: rgba(11, 59, 71, 0.5);
  opacity: 0; transition: opacity 0.3s;
}
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(360px, 88vw);
  background: #fff; padding: 96px 26px 32px; overflow-y: auto;
  transform: translateX(100%); transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
body.drawer-open .drawer { pointer-events: auto; }
body.drawer-open .drawer__scrim { opacity: 1; }
body.drawer-open .drawer__panel { transform: translateX(0); }
.drawer__panel a {
  display: block; padding: 13px 6px; font-family: var(--font-head);
  font-size: 1.06rem; font-weight: 500; color: var(--ink);
  border-bottom: 1px solid var(--sky-wash);
}
.drawer__panel a:hover { color: var(--primary); }
.drawer__group { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin: 22px 0 6px; }
.drawer__panel .btn { width: 100%; margin-top: 22px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 420px at 88% -10%, rgba(20, 184, 166, 0.16), transparent 60%),
    radial-gradient(700px 380px at -8% 110%, rgba(14, 116, 144, 0.12), transparent 55%),
    var(--sky-wash-2);
  padding: clamp(64px, 9vw, 104px) 0;
}
.page-hero h1 { max-width: 17ch; }
.page-hero .lede { font-size: 1.2rem; }
.breadcrumbs {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  font-size: 0.86rem; color: var(--muted); margin-bottom: 22px;
  font-family: var(--font-head);
}
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs span[aria-hidden] { color: var(--border); }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* ---------- Quick answer (AEO) ---------- */
.quick-answer {
  background: #fff; border: 1.5px solid var(--seafoam);
  border-left: 6px solid var(--seaglass);
  border-radius: var(--r-md); padding: 26px 28px;
  box-shadow: var(--shadow-sm); margin: 0 0 34px;
}
.quick-answer h2 {
  font-size: 1.02rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--primary); display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.quick-answer h2 svg { width: 20px; height: 20px; flex: none; stroke: var(--seaglass); }
.quick-answer p { margin: 0; font-size: 1.1rem; color: var(--ink); }

/* Key facts table */
.facts-table { width: 100%; border-collapse: collapse; margin: 0 0 34px; background: #fff; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); font-size: 0.99rem; }
.facts-table caption { text-align: left; font-family: var(--font-head); font-weight: 600; color: var(--ink); padding: 16px 20px 6px; font-size: 1.05rem; }
.facts-table th, .facts-table td { padding: 13px 20px; text-align: left; border-top: 1px solid var(--sky-wash); vertical-align: top; }
.facts-table th { width: 38%; font-family: var(--font-head); font-weight: 600; color: var(--ink); }

/* On-page TOC */
.toc { background: var(--sky-wash-2); border: 1px solid var(--border); border-radius: var(--r-md); padding: 20px 24px; margin-bottom: 38px; }
.toc strong { font-family: var(--font-head); color: var(--ink); display: block; margin-bottom: 8px; }
.toc ol { margin: 0; padding-left: 1.3em; columns: 1; }
@media (min-width: 700px) { .toc ol { columns: 2; column-gap: 40px; } }
.toc li { margin: 5px 0; }

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 30px; box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--seafoam); }
.card__icon {
  width: 58px; height: 58px; border-radius: 18px;
  background: linear-gradient(135deg, var(--seafoam), var(--sky-wash));
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.card__icon svg { width: 28px; height: 28px; stroke: var(--primary); }
.card h3 svg { width: 22px; height: 22px; flex: none; stroke: var(--primary); vertical-align: -4px; margin-right: 6px; }
.card h3 a { color: var(--ink); }
.card h3 a:hover { color: var(--primary); }
.card .more { font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 7px; }
.card .more svg { width: 15px; height: 15px; transition: transform 0.2s; }
.card .more:hover svg { transform: translateX(4px); }
.card--img { padding: 0; overflow: hidden; }
.card--img img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.card--img .card__body { padding: 26px 28px 30px; }

/* Media frame */
.media-frame { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.media-frame img { width: 100%; object-fit: cover; }
.media-frame--tilt { transform: rotate(-1.2deg); }

/* ---------- Checklist ---------- */
.checklist { list-style: none; padding: 0; margin: 0 0 1.4em; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; }
.checklist li::before {
  content: ""; flex: none; width: 24px; height: 24px; margin-top: 2px;
  border-radius: 50%;
  background: var(--seafoam) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E7490' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 13px no-repeat;
}

/* ---------- FAQ accordion ---------- */
.faq-list { display: grid; gap: 14px; max-width: 860px; margin-inline: auto; }
.faq {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-md);
  overflow: hidden; transition: border-color 0.2s, box-shadow 0.2s;
}
.faq[open] { border-color: var(--seaglass); box-shadow: var(--shadow-md); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 18px;
  align-items: center; padding: 20px 24px;
  font-family: var(--font-head); font-weight: 600; font-size: 1.06rem; color: var(--ink);
  min-height: 48px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: var(--sky-wash) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B3B47' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / 14px no-repeat;
  transition: transform 0.25s;
}
.faq[open] summary::after { transform: rotate(45deg); background-color: var(--seafoam); }
.faq__a { padding: 0 24px 22px; }
.faq__a p:last-child { margin-bottom: 0; }

/* ---------- Testimonials ---------- */
.quote-card {
  background: #fff; border-radius: var(--r-lg); padding: 32px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 14px;
}
.quote-card .stars { color: var(--gold); letter-spacing: 3px; font-size: 1.05rem; }
.quote-card blockquote { margin: 0; font-size: 1.05rem; color: var(--ink); flex: 1; }
.quote-card cite { font-style: normal; font-family: var(--font-head); font-weight: 600; color: var(--muted); font-size: 0.93rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band .container { position: relative; z-index: 1; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 360px at 105% 120%, rgba(94, 234, 212, 0.25), transparent 60%),
    radial-gradient(600px 300px at -5% -20%, rgba(94, 234, 212, 0.14), transparent 55%);
}
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 30px; }
.cta-band .btn--primary { background: var(--seaglass); box-shadow: 0 10px 26px rgba(20, 184, 166, 0.4); }
.cta-band .btn--primary:hover { background: #0FA395; }

/* ---------- Forms ---------- */
.form-card { background: #fff; border-radius: var(--r-lg); border: 1px solid var(--border); box-shadow: var(--shadow-md); padding: clamp(26px, 4vw, 44px); }
.form-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } .form-grid .full { grid-column: 1 / -1; } }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; color: var(--ink); margin-bottom: 7px; }
.field label .req { color: var(--danger); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; min-height: 48px;
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  font: inherit; color: var(--ink); background: var(--porcelain);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--seaglass); box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.15); background: #fff;
}
.field .hint { font-size: 0.84rem; color: var(--muted); margin-top: 6px; }
.form-status { margin-top: 18px; padding: 16px 18px; border-radius: var(--r-sm); font-weight: 600; display: none; }
.form-status.ok { display: block; background: #E7F8F3; color: #0F766E; border: 1px solid #99E6D8; }
.form-status.err { display: block; background: #FDF0EA; color: var(--danger); border: 1px solid #F3C9B4; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #A8CBD4; padding: 72px 0 0; font-size: 0.96rem; }
.site-footer h4 { color: #fff; font-size: 1.02rem; margin-bottom: 18px; }
.site-footer a { color: #CDE7ED; }
.site-footer a:hover { color: var(--seaglass); }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1fr; padding-bottom: 54px; }
@media (min-width: 820px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-brand .brand__name { color: #fff; }
.footer-brand p { color: #A8CBD4; margin-top: 14px; max-width: 34ch; }
.footer-hours li { display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px dashed rgba(168, 203, 212, 0.25); padding-bottom: 7px; }
.footer-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.footer-legal {
  border-top: 1px solid rgba(168, 203, 212, 0.18);
  padding: 22px 0; font-size: 0.84rem;
}
.footer-legal .container { display: flex; flex-wrap: wrap; gap: 12px 26px; justify-content: space-between; align-items: center; }
.footer-legal nav { display: flex; flex-wrap: wrap; gap: 8px 20px; }

/* ---------- Sticky mobile call bar ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 950;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -8px 24px rgba(11, 59, 71, 0.12);
}
.mobile-bar a {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 10px; font-family: var(--font-head); font-weight: 700; font-size: 0.98rem;
}
.mobile-bar a svg { width: 18px; height: 18px; }
.mobile-bar__call { background: #fff; color: var(--ink); }
.mobile-bar__book { background: var(--primary); color: #fff; }
.mobile-bar__book:hover { color: #fff; }
@media (min-width: 1040px) { .mobile-bar { display: none; } }
body { padding-bottom: 64px; }
@media (min-width: 1040px) { body { padding-bottom: 0; } }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Misc ---------- */
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; list-style: none; margin: 0 0 1.4em; }
.pill-list li {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--r-pill);
  padding: 9px 18px; font-family: var(--font-head); font-weight: 600; font-size: 0.93rem; color: var(--ink);
}
.rating-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-pill);
  padding: 10px 20px; box-shadow: var(--shadow-sm);
  font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: 0.95rem;
}
.rating-badge .stars { color: var(--gold); letter-spacing: 2px; }
.map-embed { border: 0; width: 100%; height: 420px; border-radius: var(--r-lg); box-shadow: var(--shadow-md); display: block; }
.notice { background: #FFF7EC; border: 1px solid #F5D9A8; border-radius: var(--r-md); padding: 18px 22px; font-size: 0.97rem; }
