/* ============ Ironwood Auto Repair - shared styles ============ */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@300;400;500;600;700&display=swap');

:root{
  --navy: #101c26;
  --navy-2: #172a38;
  --charcoal: #1c1f22;
  --cream: #f7f4ee;
  --cream-2: #efe9de;
  --ink: #16191c;
  --muted: #5b6570;
  --accent: #ff5f2e;
  --accent-2: #ffcf9e;
  --line: rgba(16,28,38,0.12);
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 12px 30px rgba(16,28,38,0.12);
  --font-display: 'Archivo Black', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --header-h: 76px;
}

html[data-theme="dark"]{
  --navy: #0b141c;
  --navy-2: #12212c;
  --cream: #12171b;
  --cream-2: #182025;
  --ink: #f1efe9;
  --muted: #b7bfc6;
  --line: rgba(247,244,238,0.14);
  --white: #182025;
  --shadow: 0 12px 30px rgba(0,0,0,0.4);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body{
  margin:0;
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family: inherit; cursor:pointer; }
input, select, textarea{ font-family: inherit; font-size: 16px; }

.container{ max-width: 1180px; margin: 0 auto; padding: 0 24px; }

h1,h2,h3,h4{ font-family: var(--font-display); font-weight: 400; line-height: 1.05; margin: 0 0 .5em; letter-spacing: -0.01em; }
h1{ font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2{ font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3{ font-size: clamp(1.2rem, 2.4vw, 1.6rem); }
p{ margin: 0 0 1em; color: var(--muted); }

.kicker{
  display:inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 0.9em;
}

section{ padding: 88px 0; }
@media (max-width: 720px){ section{ padding: 56px 0; } }

.section-head{ max-width: 680px; margin-bottom: 48px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.5em;
  padding: 15px 28px; border-radius: 999px; border: 2px solid var(--navy);
  font-weight: 600; font-size: 0.98rem; min-height: 44px;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  background: transparent; color: var(--navy); white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:focus-visible{ outline: 3px solid var(--accent); outline-offset: 2px; }

.btn-primary{
  position: relative; border: none; background: var(--accent); color: #fff; z-index: 0;
  box-shadow: 0 0 18px 4px rgba(255, 95, 46, 0.55);
  animation: btn-glow 2.4s ease-in-out infinite;
}
@keyframes btn-glow{
  0%, 100%{ box-shadow: 0 0 14px 2px rgba(255, 95, 46, 0.45); }
  50%{ box-shadow: 0 0 26px 8px rgba(255, 95, 46, 0.75); }
}
@media (prefers-reduced-motion: reduce){ .btn-primary{ animation:none; box-shadow: 0 0 18px 4px rgba(255, 95, 46, 0.55); } }
.btn-primary:hover{ color:#fff; transform:none; box-shadow: 0 0 26px 8px rgba(255, 95, 46, 0.75); }

.btn-ghost{ border-color: rgba(255,255,255,0.5); color:#fff; }
.btn-ghost:hover{ background: rgba(255,255,255,0.12); }

.btn-outline-dark{ border-color: var(--navy); color: var(--navy); }
.btn-small{ padding: 10px 18px; font-size: 0.85rem; min-height: 40px; }

.btn-block{ width:100%; }

/* ---------- Film grain ---------- */
.grain{ position: relative; isolation: isolate; }
.grain::after{
  content:""; position:absolute; inset:0; pointer-events:none; z-index:1; opacity:0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Header ---------- */
.site-header{
  position: sticky; top:0; z-index: 100; background: var(--navy); color:#fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header .container{ display:flex; align-items:center; justify-content:space-between; min-height: var(--header-h); gap: 20px; }
.brand{ font-family: var(--font-display); font-size: 1.15rem; color:#fff; letter-spacing: -0.01em; }
.brand span{ color: var(--accent); }
.main-nav{ display:flex; align-items:center; gap: 28px; }
.main-nav a{ font-size: 0.92rem; font-weight: 500; color: rgba(255,255,255,0.85); padding: 10px 0; }
.main-nav a:hover{ color: #fff; }
.header-actions{ display:flex; align-items:center; gap: 12px; }
.main-nav .header-actions{ display:none; }
.nav-toggle{ display:none; background:none; border:none; color:#fff; padding: 10px; }
.nav-toggle svg{ width: 26px; height:26px; }
.theme-toggle{ background:none; border: 2px solid rgba(255,255,255,0.3); color:#fff; border-radius:999px; width:44px; height:44px; display:flex; align-items:center; justify-content:center; }
.theme-toggle:hover{ border-color:#fff; }

@media (max-width: 900px){
  .main-nav{
    position: fixed; inset: var(--header-h) 0 0 0; background: var(--navy); flex-direction:column; align-items:flex-start;
    padding: 24px; gap: 4px; transform: translateX(100%); transition: transform .3s ease; overflow-y:auto;
  }
  .main-nav.open{ transform: translateX(0); }
  .main-nav a{ width:100%; padding: 14px 4px; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 1.05rem; }
  .main-nav .header-actions{ display:flex; flex-direction:column; width:100%; margin-top: 14px; gap: 12px; }
  .main-nav .header-actions .btn{ width:100%; }
  .nav-toggle{ display:flex; }
  .header-actions.desktop-only{ display:none; }
}

/* ---------- Sticky mobile call bar ---------- */
.call-bar{
  position: fixed; left:0; right:0; bottom:0; z-index: 90; display:none;
  background: var(--navy); color:#fff; padding: 10px 14px; gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 720px){ .call-bar{ display:flex; } body{ padding-bottom: 68px; } }
.call-bar a{ flex:1; text-align:center; padding: 12px 6px; border-radius: 10px; font-weight: 600; font-size: 0.95rem; }
.call-bar .call{ background: var(--accent); color:#fff; }
.call-bar .book{ background: rgba(255,255,255,0.12); color:#fff; }

/* ---------- Hero: type band ---------- */
.hero-band{
  background: var(--navy); color: #fff; padding: 110px 0 90px; position: relative; overflow:hidden;
}
.hero-band .kicker{ color: var(--accent-2); }
.hero-band h1{ color:#fff; max-width: 920px; }
.hero-band h1 em{ font-style: normal; color: var(--accent); }
.hero-band .lede{ color: rgba(255,255,255,0.78); max-width: 560px; font-size: 1.1rem; }
.hero-actions{ display:flex; gap: 16px; flex-wrap:wrap; margin-top: 30px; }
.hero-stats{ display:flex; gap: 40px; margin-top: 60px; flex-wrap:wrap; }
.hero-stats div{ min-width: 120px; }
.stat-num{ font-family: var(--font-display); font-size: 2.2rem; color: var(--accent-2); }
.stat-label{ font-size: 0.82rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.06em; }

.hero-photo-band{ width:100%; height: 42vh; min-height: 280px; max-height: 480px; overflow:hidden; }
.hero-photo-band img{ width:100%; height:100%; object-fit: cover; }

/* ---------- Reveal on scroll ---------- */
.reveal{ opacity:1; transform:none; transition: opacity .7s ease, transform .7s ease; }
.js .reveal{ opacity:0; }
.js .reveal-left{ transform: translateX(-46px); }
.js .reveal-right{ transform: translateX(46px); }
.js .reveal-up{ transform: translateY(34px); }
.reveal.is-visible{ opacity:1 !important; transform:none !important; }

/* ---------- Cards / grids ---------- */
.grid{ display:grid; gap: 28px; }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px){ .grid-3, .grid-2{ grid-template-columns: 1fr; } }

.card{
  background: var(--white); border-radius: var(--radius); padding: 32px; border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover{ transform: translateY(-4px); box-shadow: var(--shadow); }
.card .cat{ font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); font-weight: 600; }
.card .price{ font-family: var(--font-display); font-size: 1.3rem; margin-top: 10px; }

/* ---------- Story / sticky split ---------- */
.split{ display:grid; grid-template-columns: 0.9fr 1.3fr; gap: 56px; align-items:start; }
@media (max-width: 900px){ .split{ grid-template-columns: 1fr; } .split .sticky-side{ position: static !important; order: -1; } }
.sticky-side{ position: sticky; top: calc(var(--header-h) + 24px); }

/* ---------- Testimonials ---------- */
.carousel{ position: relative; max-width: 760px; margin: 0 auto; }
.carousel-track{ position: relative; min-height: 220px; }
.t-slide{ position:absolute; inset:0; opacity:0; transition: opacity .5s ease; pointer-events:none; }
.t-slide.active{ opacity:1; pointer-events:auto; position:relative; }
.stars{ color: var(--accent); letter-spacing: 3px; font-size: 1.1rem; margin-bottom: 14px; }
.t-quote{ font-family: var(--font-display); font-weight:400; font-size: 1.3rem; color: var(--ink); line-height:1.3; }
.t-name{ margin-top: 18px; font-weight: 600; color: var(--ink); font-size: 0.95rem; }
.t-role{ font-size: 0.85rem; color: var(--muted); }
.carousel-controls{ display:flex; align-items:center; justify-content:center; gap: 18px; margin-top: 28px; }
.carousel-dots{ display:flex; gap: 8px; }
.dot{ width:10px; height:10px; border-radius:50%; background: var(--line); border:none; padding:0; }
.dot.active{ background: var(--accent); }
.carousel-arrow{ background:none; border: 2px solid var(--line); border-radius:50%; width:40px; height:40px; display:flex; align-items:center; justify-content:center; }
.carousel-arrow:hover{ border-color: var(--accent); }

/* ---------- Feature plus tiles gallery ---------- */
.feature-tiles{ display:grid; grid-template-columns: 1.6fr 1fr; grid-template-rows: repeat(2, 1fr); gap: 18px; height: 520px; }
.feature-tiles .big{ grid-row: span 2; border-radius: var(--radius); overflow:hidden; }
.feature-tiles .tile{ border-radius: var(--radius); overflow:hidden; }
.feature-tiles img{ width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.feature-tiles a:hover img, .feature-tiles div:hover img{ transform: scale(1.05); }
@media (max-width: 800px){ .feature-tiles{ grid-template-columns: 1fr; grid-template-rows: none; height:auto; } .feature-tiles .big{ height: 300px; } .feature-tiles .tile{ height: 200px; } }

/* ---------- Map / location block ---------- */
.map-block{ display:grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow); }
.map-block iframe{ width:100%; height: 380px; border:0; }
.map-info{ background: var(--navy); color:#fff; padding: 44px; display:flex; flex-direction:column; justify-content:center; }
.map-info a.btn{ align-self:flex-start; margin-top: 20px; }
@media (max-width: 800px){ .map-block{ grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
footer.site-footer{ background: var(--charcoal); color: rgba(255,255,255,0.75); padding: 64px 0 30px; }
footer.site-footer h4{ color:#fff; font-family: var(--font-body); font-weight:600; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px;}
footer.site-footer a{ display:block; padding: 6px 0; color: rgba(255,255,255,0.7); min-height: 30px; }
footer.site-footer a:hover{ color:#fff; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 800px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
.footer-bottom{ margin-top: 46px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.85rem; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; }
.footer-brand{ font-family: var(--font-display); color:#fff; font-size: 1.2rem; margin-bottom: 12px; }

/* ---------- Forms ---------- */
.field{ margin-bottom: 20px; }
.field label{ display:block; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; color: var(--ink); }
.field input, .field select, .field textarea{
  width:100%; padding: 14px 16px; border-radius: 10px; border: 1.5px solid var(--line); background: var(--white); color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus{ outline: none; border-color: var(--accent); }
.field-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px){ .field-row{ grid-template-columns: 1fr; } }
.form-note{ font-size: 0.85rem; color: var(--muted); margin-top: 10px; }
.form-success{ background: #e9f7ee; border: 1px solid #bfe6cd; color: #1e5e36; border-radius: 10px; padding: 18px 20px; margin-top: 18px; display:none; }
html[data-theme="dark"] .form-success{ background:#12281a; border-color:#1e5e36; color:#a9e3bd; }
.form-success.show{ display:block; }

/* ---------- Badges / demo labels ---------- */
.badge{ display:inline-flex; align-items:center; gap:6px; background: var(--cream-2); border:1px solid var(--line); border-radius:999px; padding: 6px 14px; font-size: 0.8rem; font-weight:600; color: var(--navy); }
.demo-flag{ display:inline-flex; align-items:center; gap:8px; background: #fff3e8; border:1px solid #ffd7b8; color:#9a4a10; border-radius:10px; padding:10px 16px; font-size:0.85rem; font-weight:600; margin-bottom: 18px; }
html[data-theme="dark"] .demo-flag{ background:#2a1c10; border-color:#5a3212; color:#ffbd85; }

/* ---------- Counters row ---------- */
.stat-row{ display:flex; flex-wrap:wrap; gap: 48px; justify-content:space-between; background: var(--white); border:1px solid var(--line); border-radius: var(--radius); padding: 40px; }
.stat-row .stat{ text-align:center; flex:1; min-width: 130px; }
.stat-row .stat-num{ font-family: var(--font-display); font-size: 2.4rem; color: var(--navy); }
.stat-row .stat-label{ font-size: 0.85rem; color: var(--muted); margin-top: 6px; }

/* ---------- Avatars ---------- */
.avatar{
  width: 84px; height:84px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background: var(--navy); color: var(--accent-2); font-family: var(--font-display); font-size:1.6rem; flex-shrink:0;
}

/* ---------- Table ---------- */
table{ width:100%; border-collapse: collapse; }
th, td{ text-align:left; padding: 14px 12px; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
th{ font-weight:600; color: var(--muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; }

/* ---------- Accordion (services page category list on mobile / FAQ-like) ---------- */
.acc-item{ border-bottom: 1px solid var(--line); }
.acc-head{ width:100%; background:none; border:none; padding: 20px 0; display:flex; justify-content:space-between; align-items:center; text-align:left; font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); }
.acc-head .plus{ font-size: 1.6rem; color: var(--accent); transition: transform .25s ease; }
.acc-item.open .acc-head .plus{ transform: rotate(45deg); }
.acc-panel{ max-height:0; overflow:hidden; transition: max-height .35s ease; }
.acc-item.open .acc-panel{ max-height: 1400px; }
.acc-body{ padding-bottom: 26px; }

/* ---------- Service list rows ---------- */
.svc-row{ display:flex; justify-content:space-between; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.svc-row:last-child{ border-bottom:none; }
.svc-name{ font-weight: 600; color: var(--ink); }
.svc-desc{ font-size: 0.92rem; margin: 4px 0 0; }
.svc-meta{ text-align:right; white-space:nowrap; }
.svc-price{ font-family: var(--font-display); font-size: 1.05rem; color: var(--navy); }
.svc-time{ font-size: 0.8rem; color: var(--muted); }
@media (max-width: 600px){ .svc-row{ flex-direction:column; } .svc-meta{ text-align:left; } }

/* ---------- Estimator ---------- */
.estimator-box{ background: var(--white); border:1px solid var(--line); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.estimate-result{ margin-top: 30px; padding: 26px; border-radius: var(--radius); background: var(--navy); color:#fff; display:none; }
.estimate-result.show{ display:block; }
.estimate-result .price{ font-family: var(--font-display); font-size: 2.2rem; color: var(--accent-2); }

/* ---------- Booking calendar ---------- */
.date-grid{ display:grid; grid-template-columns: repeat(auto-fill, minmax(76px,1fr)); gap: 10px; }
.date-cell{ display:flex; flex-direction:column; align-items:center; justify-content:center; gap:2px; border: 1.5px solid var(--line); border-radius: 10px; padding: 10px 6px; text-align:center; background: var(--white); min-height: 68px; line-height:1.15; cursor:pointer; }
.date-cell .dow{ font-size: 0.68rem; color: var(--muted); text-transform:uppercase; letter-spacing: 0.05em; }
.date-cell .dnum{ font-family: var(--font-display); font-size: 1.4rem; line-height:1.1; }
.date-cell:hover{ border-color: var(--accent); }
.date-cell.selected{ border-color: var(--accent); background: var(--accent); color:#fff; }
.date-cell.selected .dow{ color: rgba(255,255,255,0.85); }
.date-cell:disabled{ opacity: 0.35; cursor:not-allowed; }

.slot-grid{ display:grid; grid-template-columns: repeat(auto-fill, minmax(100px,1fr)); gap: 10px; }
.slot-cell{ border: 1.5px solid var(--line); border-radius: 10px; padding: 12px 8px; text-align:center; background: var(--white); font-size: 0.9rem; min-height:44px; cursor:pointer; }
.slot-cell:hover{ border-color: var(--accent); }
.slot-cell.selected{ background: var(--accent); border-color: var(--accent); color:#fff; }
.slot-cell:disabled{ opacity: 0.35; cursor:not-allowed; }

.booking-summary{ background: var(--navy); color:#fff; border-radius: var(--radius); padding: 32px; }
.booking-summary dl{ margin: 20px 0 0; }
.booking-summary dt{ font-size: 0.78rem; text-transform:uppercase; letter-spacing:0.05em; color: rgba(255,255,255,0.6); margin-top: 14px; }
.booking-summary dd{ margin:2px 0 0; font-family: var(--font-display); font-size: 1.05rem; }

/* ---------- Portal ---------- */
.login-box{ max-width: 420px; margin: 0 auto; background: var(--white); border:1px solid var(--line); border-radius: var(--radius); padding: 44px; box-shadow: var(--shadow); text-align:center; }
.portal-header{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap: 16px; margin-bottom: 40px; }
.stepper{ display:flex; align-items:center; gap:0; margin: 24px 0; }
.step{ flex:1; text-align:center; position:relative; }
.step .dotnum{ width:36px; height:36px; border-radius:50%; background: var(--cream-2); border: 2px solid var(--line); display:flex; align-items:center; justify-content:center; margin: 0 auto 8px; font-family: var(--font-display); font-size:0.95rem; }
.step.done .dotnum{ background: var(--navy); border-color: var(--navy); color:#fff; }
.step.current .dotnum{ background: var(--accent); border-color: var(--accent); color:#fff; }
.step .slabel{ font-size: 0.8rem; color: var(--muted); }
.step.current .slabel, .step.done .slabel{ color: var(--ink); font-weight:600; }
.step::before{ content:""; position:absolute; top:18px; left:-50%; width:100%; height:2px; background: var(--line); z-index:-1; }
.step:first-child::before{ display:none; }
.step.done::before{ background: var(--navy); }

.suggested-card{ display:flex; gap: 20px; border:1px solid var(--line); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; background: var(--white); flex-wrap:wrap; }
.suggested-card img{ width: 140px; height: 100px; object-fit:cover; border-radius: 10px; flex-shrink:0; }
.suggested-body{ flex:1; min-width: 200px; }
.suggested-actions{ display:flex; gap: 10px; margin-top: 14px; flex-wrap:wrap; }
.suggested-actions button{ border-radius: 999px; padding: 10px 20px; font-size: 0.85rem; font-weight:600; min-height:40px; }
.btn-approve{ background: #1e5e36; color:#fff; border:none; }
.btn-decline{ background:none; border: 1.5px solid var(--line); color: var(--muted); }
.status-tag{ font-size: 0.78rem; font-weight:700; padding: 4px 12px; border-radius:999px; }
.status-tag.approved{ background:#e2f4e8; color:#1e5e36; }
.status-tag.declined{ background:#f5e3e0; color:#a4392f; }
html[data-theme="dark"] .status-tag.approved{ background:#12281a; }
html[data-theme="dark"] .status-tag.declined{ background:#2b1614; }

.invoice-row{ display:flex; justify-content:space-between; align-items:center; padding: 18px 0; border-bottom: 1px solid var(--line); flex-wrap:wrap; gap: 12px; }
.invoice-row:last-child{ border-bottom:none; }

.timeline{ border-left: 2px solid var(--line); padding-left: 26px; }
.tl-item{ position:relative; padding-bottom: 30px; }
.tl-item::before{ content:""; position:absolute; left:-32px; top:4px; width:12px; height:12px; border-radius:50%; background: var(--accent); }
.tl-date{ font-size: 0.8rem; color: var(--muted); text-transform:uppercase; letter-spacing:0.04em; }

/* Modal */
.modal-overlay{ position:fixed; inset:0; background: rgba(10,15,20,0.6); display:none; align-items:center; justify-content:center; z-index: 200; padding: 20px; }
.modal-overlay.open{ display:flex; }
.modal{ background: var(--white); border-radius: var(--radius); padding: 36px; max-width: 440px; width:100%; box-shadow: var(--shadow); }
.modal-close{ float:right; background:none; border:none; font-size: 1.4rem; color: var(--muted); }

/* Service area tags */
.tag-cloud{ display:flex; flex-wrap:wrap; gap: 12px; }
.tag-cloud span{ background: var(--white); border: 1px solid var(--line); padding: 10px 18px; border-radius: 999px; font-size: 0.9rem; }

/* Utility */
.text-center{ text-align:center; }
.mt-0{ margin-top:0; }
.small{ font-size: 0.85rem; }
.visually-hidden{ position:absolute; width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap; }
