/* =========================================================
   BOOK MY SALON — Premium Unisex Salon & Grooming
   Design tokens
   ========================================================= */
:root {
  /* Color */
  --charcoal-950: #0d0c0a;
  --charcoal-900: #16140f;
  --charcoal-800: #221f19;
  --charcoal-700: #322d24;
  --cream-100: #faf7f0;
  --cream-200: #f6f1e7;
  --cream-300: #ede3cf;
  --gold-500: #c9a227;
  --gold-400: #dcb84a;
  --gold-300: #e8c766;
  --wine-500: #7d2b46;
  --wine-400: #9a3a58;
  --white: #ffffff;
  --ink-muted: rgba(250, 247, 240, 0.68);
  --ink-muted-dark: rgba(13, 12, 10, 0.62);

  /* Type */
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;

  /* Layout */
  --container: 1200px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 20px 50px -25px rgba(13, 12, 10, 0.45);
  --shadow-tight: 0 10px 24px -14px rgba(13, 12, 10, 0.4);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================================================
   Reset
   ========================================================= */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream-200);
  color: var(--charcoal-900);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; line-height: 1.1; font-weight: 600; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea { font-family: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-500);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-500);
  display: inline-block;
}

.section {
  padding: clamp(64px, 8vw, 120px) 0;
}
.section-head {
  max-width: 640px;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  margin-top: 14px;
  color: var(--charcoal-900);
}
.section-head p {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--ink-muted-dark);
  line-height: 1.6;
}

.section--dark {
  background: var(--cream-300);
  color: var(--charcoal-900);
}
.section--dark .section-head p { color: var(--ink-muted-dark); }
.section--dark .section-head h2 { color: var(--charcoal-900); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--charcoal-950);
  box-shadow: var(--shadow-tight);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -16px rgba(201, 162, 39, 0.55); }
.btn-outline {
  background: transparent;
  border-color: rgba(34, 31, 25, 0.25);
  color: inherit;
}
.btn-outline:hover { border-color: var(--gold-500); background: rgba(201, 162, 39, 0.1); }
.location-cta .btn-outline { border-color: rgba(250, 247, 240, 0.45); }
.location-cta .btn-outline:hover { border-color: var(--gold-300); background: rgba(232, 199, 102, 0.14); }
.btn-dark {
  background: var(--wine-500);
  color: var(--white);
}
.btn-dark:hover { background: var(--wine-400); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

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

/* =========================================================
   Reveal-on-scroll
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* =========================================================
   Navbar
   ========================================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 18px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 12px 30px -20px rgba(34,31,25,0.25);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  width: 46px; height: 46px; border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(201,162,39,0.6);
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--charcoal-900);
  letter-spacing: 0.01em;
}
.brand-name span { color: var(--gold-500); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  color: var(--charcoal-900);
  font-size: 0.95rem;
  font-weight: 600;
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--gold-500);
  transition: right 0.35s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-links a.active { color: var(--wine-500); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-call {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--charcoal-900); font-weight: 700; font-size: 0.9rem;
  border: 1px solid rgba(34,31,25,0.2);
  padding: 12px 20px; border-radius: 999px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.nav-call:hover { border-color: var(--gold-500); background: rgba(201,162,39,0.12); transform: translateY(-2px); }
.nav-call svg { width: 16px; height: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  border: 1px solid rgba(34,31,25,0.25);
  border-radius: 50%;
  background: transparent;
  flex-shrink: 0;
}
.hamburger span {
  display: block; width: 18px; height: 2px; margin: 0 auto;
  background: var(--charcoal-900);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: var(--white);
  display: flex;
  flex-direction: column;
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  box-shadow: -20px 0 60px -30px rgba(34,31,25,0.35);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  color: var(--charcoal-900);
  font-family: var(--font-display);
  font-size: 1.8rem;
  padding: 16px 0;
  border-bottom: 1px solid rgba(34,31,25,0.12);
}
.mobile-menu .btn { margin-top: 30px; }
.mobile-close {
  position: absolute; top: 22px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(34,31,25,0.25);
  background: transparent; color: var(--charcoal-900);
  font-size: 1.3rem; line-height: 1;
}
body.menu-open { overflow: hidden; }

/* =========================================================
   Hero (interior pages)
   ========================================================= */
.page-hero {
  background: var(--cream-200);
  color: var(--charcoal-900);
  padding: clamp(150px, 20vw, 210px) 0 clamp(70px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,0.3);
  top: -220px; right: -160px;
}
.page-hero .eyebrow { color: var(--gold-500); }
.page-hero .eyebrow::before { background: var(--gold-500); }
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-top: 18px;
  max-width: 780px;
}
.page-hero p.lead {
  margin-top: 18px;
  font-size: 1.1rem;
  color: var(--ink-muted-dark);
  max-width: 560px;
}

/* =========================================================
   Home hero
   ========================================================= */
.hero {
  position: relative;
  background: var(--cream-200);
  color: var(--charcoal-900);
  overflow: hidden;
  padding-top: clamp(140px, 18vw, 190px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
  padding-bottom: clamp(70px, 10vw, 120px);
}
.hero-copy h1 {
  font-size: clamp(2.6rem, 5.6vw, 4.2rem);
  margin-top: 20px;
  letter-spacing: -0.01em;
}
.hero-copy h1 em {
  font-style: normal;
  color: var(--gold-300);
}
.hero-copy p.lead {
  margin-top: 22px;
  font-size: 1.15rem;
  color: var(--ink-muted-dark);
  max-width: 480px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-meta {
  display: flex;
  gap: 32px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.hero-meta div { border-left: 1px solid rgba(201,162,39,0.5); padding-left: 14px; }
.hero-meta b { display: block; font-family: var(--font-display); font-size: 1.3rem; color: var(--wine-500); }
.hero-meta span { font-size: 0.82rem; color: var(--ink-muted-dark); }

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,0.35);
  animation: spin 40s linear infinite;
}
.hero-ring::before, .hero-ring::after {
  content: "";
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold-400);
}
.hero-ring::before { top: -5px; left: 50%; transform: translateX(-50%); }
.hero-ring::after { bottom: -5px; left: 50%; transform: translateX(-50%); }
@keyframes spin { to { transform: rotate(360deg); } }

.hero-badge {
  position: relative;
  width: 74%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, var(--white), var(--cream-300) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft), inset 0 0 0 1px rgba(201,162,39,0.4);
}
.hero-badge img { width: 92%; border-radius: 50%; }

.hero-floating-card {
  position: absolute;
  bottom: 6%;
  left: -6%;
  background: var(--white);
  color: var(--charcoal-900);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 230px;
  border: 1px solid rgba(34,31,25,0.08);
}
.hero-floating-card .icon-circle { background: var(--wine-500); color: var(--cream-100); }
.hero-floating-card b { display: block; font-family: var(--font-display); font-size: 1rem; }
.hero-floating-card span { font-size: 0.78rem; color: var(--ink-muted-dark); }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 380px; margin: 0 auto; }
  .hero-floating-card { left: 0; }
}

/* =========================================================
   Icon circle
   ========================================================= */
.icon-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-500);
  color: var(--white);
  flex-shrink: 0;
}
.icon-circle svg { width: 24px; height: 24px; }

/* =========================================================
   Services preview / grid
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-tight);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  border: 1px solid rgba(34,31,25,0.06);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}
.service-card .icon-circle { margin-bottom: 22px; }
.service-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.service-card p { color: var(--ink-muted-dark); line-height: 1.6; font-size: 0.98rem; }
.service-card .tag {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--wine-500);
  background: rgba(125,43,70,0.08);
  padding: 6px 12px;
  border-radius: 999px;
}
.services-cta { text-align: center; margin-top: 46px; }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Why choose us
   ========================================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-block {
  text-align: left;
  padding: 8px 0 8px 0;
  border-top: 1px solid rgba(34,31,25,0.14);
  padding-top: 22px;
}
.feature-block .icon-circle {
  background: transparent;
  border: 1px solid var(--gold-500);
  color: var(--gold-500);
  margin-bottom: 18px;
}
.feature-block h3 { font-size: 1.1rem; color: var(--charcoal-900); margin-bottom: 8px; }
.feature-block p { color: var(--ink-muted-dark); font-size: 0.92rem; line-height: 1.6; }

@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Location CTA
   ========================================================= */
.location-cta {
  background: linear-gradient(135deg, var(--wine-400), var(--wine-500) 65%);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 70px);
  color: var(--cream-100);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.location-cta::after {
  content: "";
  position: absolute;
  width: 340px; height: 340px;
  border: 1px solid rgba(232,199,102,0.25);
  border-radius: 50%;
  right: -120px; bottom: -140px;
}
.location-cta h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.location-details { margin-top: 20px; display: flex; flex-direction: column; gap: 14px; }
.location-details .row { display: flex; gap: 12px; align-items: flex-start; }
.location-details svg { width: 20px; height: 20px; margin-top: 3px; color: var(--gold-300); flex-shrink: 0; }
.location-details p { color: var(--ink-muted); line-height: 1.55; }
.location-actions { display: flex; flex-direction: column; gap: 14px; z-index: 1; }

@media (max-width: 860px) {
  .location-cta { grid-template-columns: 1fr; }
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: var(--white);
  color: var(--ink-muted-dark);
  padding: clamp(56px, 7vw, 84px) 0 26px;
  border-top: 1px solid rgba(34,31,25,0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(34,31,25,0.12);
}
.footer-brand { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; }
.footer-brand img { width: 44px; height: 44px; border-radius: 50%; }
.footer-brand span { font-family: var(--font-display); color: var(--charcoal-900); font-size: 1.15rem; }
.footer p.desc { font-size: 0.92rem; line-height: 1.6; max-width: 280px; }
.footer h4 {
  color: var(--charcoal-900); font-family: var(--font-body); font-size: 0.85rem;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; font-weight: 700;
}
.footer ul li { margin-bottom: 12px; font-size: 0.92rem; }
.footer ul li a:hover { color: var(--wine-500); }
.footer address { font-style: normal; font-size: 0.92rem; line-height: 1.6; margin-bottom: 14px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; font-size: 0.82rem; flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { text-decoration: underline; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   Services page
   ========================================================= */
.service-detail-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.service-detail {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 26px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
  box-shadow: var(--shadow-tight);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.service-detail:hover { box-shadow: var(--shadow-soft); transform: translateY(-4px); }
.service-detail .icon-circle { width: 72px; height: 72px; }
.service-detail .icon-circle svg { width: 32px; height: 32px; }
.service-detail h3 { font-size: 1.4rem; margin-bottom: 8px; }
.service-detail p { color: var(--ink-muted-dark); line-height: 1.6; }
.service-detail .badge {
  justify-self: end;
  font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700;
  color: var(--wine-500); background: rgba(125,43,70,0.08);
  padding: 8px 14px; border-radius: 999px; white-space: nowrap;
}
@media (max-width: 700px) {
  .service-detail { grid-template-columns: 64px 1fr; }
  .service-detail .icon-circle { width: 56px; height: 56px; }
  .service-detail .icon-circle svg { width: 26px; height: 26px; }
  .service-detail .badge { grid-column: 1 / -1; justify-self: start; margin-top: 8px; }
}

.note-callout {
  margin-top: 40px;
  border: 1px dashed rgba(34,31,25,0.25);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-size: 0.92rem;
  color: var(--ink-muted-dark);
  line-height: 1.6;
}

.closing-cta {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.closing-cta h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); }
.closing-cta p { margin-top: 14px; color: var(--ink-muted); }
.closing-cta .btn { margin-top: 30px; }

/* =========================================================
   Contact page
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}
.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-tight);
  display: flex;
  gap: 18px;
  margin-bottom: 20px;
}
.info-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.info-card p, .info-card a { color: var(--ink-muted-dark); line-height: 1.6; font-size: 0.95rem; }
.info-card a:hover { color: var(--wine-500); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-soft);
}
.contact-form-wrap h3 { font-size: 1.5rem; margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--ink-muted-dark); margin-bottom: 26px; }
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.03em; margin-bottom: 8px; color: var(--charcoal-800);
}
.form-row input, .form-row textarea {
  width: 100%;
  border: 1px solid rgba(34,31,25,0.18);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.98rem;
  background: var(--cream-100);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.18);
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.82rem; color: var(--ink-muted-dark); margin-top: 14px; line-height: 1.5; }
.form-success {
  display: none;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: rgba(125,43,70,0.08);
  color: var(--wine-500);
  font-size: 0.92rem;
  font-weight: 600;
}
.form-success.show { display: block; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-tight);
  position: relative;
}
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; filter: grayscale(0.15) contrast(1.05); }
.map-actions {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  margin-top: 24px;
}

@media (max-width: 940px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
  .info-card { flex-direction: column; }
}

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
}

/* =========================================================
   Responsive typography & nav breakpoints
   ========================================================= */
@media (max-width: 980px) {
  .nav-links, .nav-call-desktop { display: none; }
  .hamburger { display: flex; }
}
@media (min-width: 981px) {
  .mobile-menu { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .btn { padding: 14px 22px; font-size: 0.9rem; }
  .hero-badge { width: 82%; }
}

/* Prevent horizontal scroll safety net */
html, body { max-width: 100%; overflow-x: hidden; }
