/* ==========================================================================
   R&B TEA — US Franchise Site
   Design: warm hospitality x premium editorial
   Palette (all pairs verified WCAG 2.1 AA via contrast_check.py):
     --cream         #FAF5EC  page background (13.8:1 with ink)
     --cream-deep    #F2EADA  alternate section background
     --card          #FFFCF6  card / surface
     --ink           #2B2620  primary text (warm near-black charcoal)
     --ink-soft      #57503F  secondary text (7.4:1 on cream)
     --caption       #6B6350  muted text (5.5:1 on cream)
     --accent        #B45309  deep amber / burnt orange (4.62:1 on cream)
     --accent-deep   #92400E  deeper amber (hover / eyebrows)
     --accent-bright #E8A33D  amber for dark backgrounds only (4.67:1 on teal-dark)
     --teal          #115E59  deep teal secondary (6.98:1 on cream)
     --teal-dark     #0C4A47  dark section / footer background
     --line          #8A7A5F  hairline borders (>=3.84:1 against surfaces)
   Colorblind-safe: amber/teal/charcoal/cream scheme survives protanopia,
   deuteranopia and tritanopia; no red/green pairs; meaning is never
   conveyed by color alone (icons + labels + numbers everywhere).
   ========================================================================== */

/* ---------- tokens ---------- */
:root {
  --cream: #FAF5EC;
  --cream-deep: #F2EADA;
  --card: #FFFCF6;
  --ink: #2B2620;
  --ink-soft: #57503F;
  --caption: #6B6350;
  --accent: #B45309;
  --accent-deep: #92400E;
  --accent-bright: #E8A33D;
  --teal: #115E59;
  --teal-dark: #0C4A47;
  --line: #8A7A5F;
  --cream-soft: #E8E0CF;  /* muted cream for text on dark sections (7.67:1 on teal-dark) */
  --white: #FFFFFF;

  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", serif;
  --font-body: "Public Sans", "Avenir Next", "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;

  --radius-card: 18px;
  --radius-pill: 999px;
  --shadow-card: 0 18px 40px -24px rgba(43, 38, 32, 0.35);
  --shadow-lift: 0 26px 50px -24px rgba(43, 38, 32, 0.42);

  --container: 1140px;
  --header-h: 76px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;            /* 17px — >= 16px required */
  line-height: 1.65;               /* >= 1.5 required */
  color: var(--ink);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; padding: 0; }
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent-deep); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h1 em, h2 em { font-style: italic; color: var(--accent); }
p { text-wrap: pretty; }
button { font: inherit; cursor: pointer; }
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
.dark :focus-visible, .site-footer :focus-visible {
  outline-color: var(--accent-bright);
}
::selection { background: var(--accent); color: var(--cream); }

/* ---------- utilities ---------- */
.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 200;
  background: var(--ink); color: var(--cream);
  padding: 0.7rem 1.2rem; border-radius: var(--radius-pill);
  font-weight: 700; text-decoration: none;
  transform: translateY(-200%);
  transition: transform 0.2s ease;
}
.skip-link:focus-visible { transform: translateY(0); color: var(--cream); }

.eyebrow {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 2rem; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.section { padding-block: clamp(4.5rem, 9vw, 7.5rem); }
.section-head { max-width: 640px; margin-bottom: clamp(2.25rem, 5vw, 3.5rem); }
.section-head-center { margin-inline: auto; text-align: center; }
.section-head-center .eyebrow { justify-content: center; }
.section-head .eyebrow, .section-head-center .eyebrow { margin-bottom: 1rem; }
.section-head h2 {
  font-size: clamp(2rem, 4.2vw, 3rem);
  margin-bottom: 1rem;
}
.section-intro {
  color: var(--ink-soft);
  font-size: 1.125rem;
  max-width: 58ch;
}
.section-head-center .section-intro { margin-inline: auto; }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 245, 236, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: 0 10px 30px -18px rgba(43, 38, 32, 0.35); }
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: var(--header-h);
}
.brand {
  display: inline-flex; align-items: center; gap: 0.7rem;
  text-decoration: none; color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand-mark { width: 44px; height: 44px; }
.brand-logo { height: 38px; width: auto; display: block; }
.hero-logo { height: 60px; width: auto; margin-bottom: 1.2rem; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.5rem; letter-spacing: 0.01em;
}
.brand-name em { font-style: italic; color: var(--accent); }

.primary-nav { display: flex; align-items: center; gap: 1.75rem; }
.nav-list { display: flex; align-items: center; gap: 1.6rem; }
.nav-list a {
  position: relative;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding-block: 0.4rem;
}
.nav-list a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2.5px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-list a:hover, .nav-list a.is-active { color: var(--accent-deep); }
.nav-list a:hover::after, .nav-list a.is-active::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  background: none; border: 2px solid var(--ink);
  border-radius: 12px;
  width: 48px; height: 44px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px;
}
.nav-toggle-bar {
  width: 22px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.7rem;
  border-radius: var(--radius-pill);
  font-weight: 700; font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease,
              border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent); color: var(--white);
  box-shadow: 0 12px 26px -14px rgba(180, 83, 9, 0.75);
}
.btn-primary:hover {
  background: var(--accent-deep); color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent; color: var(--teal);
  border-color: var(--teal);
}
.btn-ghost:hover {
  background: var(--teal); color: var(--cream);
  transform: translateY(-2px);
}
.btn-block { width: 100%; }
.btn .btn-arrow { width: 18px; height: 18px; transition: transform 0.2s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  padding-block: clamp(3.5rem, 7vw, 6rem) clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  background:
    radial-gradient(1100px 620px at 88% -12%, rgba(232, 163, 61, 0.20), transparent 62%),
    radial-gradient(900px 560px at -8% 108%, rgba(17, 94, 89, 0.10), transparent 60%),
    radial-gradient(circle at 1px 1px, rgba(43, 38, 32, 0.055) 1px, transparent 1.6px),
    var(--cream);
  background-size: auto, auto, 26px 26px, auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-copy { max-width: 620px; }
.hero-title {
  font-size: clamp(2.75rem, 6.2vw, 4.6rem);
  margin: 0.9rem 0 1.2rem;
}
.hero-lead {
  font-size: clamp(1.125rem, 2vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 46ch;
}
.hero-lead strong { color: var(--ink); }
.hero-sub {
  margin-top: 0.6rem;
  color: var(--caption);
  max-width: 48ch;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 0.9rem;
  margin-top: 1.8rem;
}
.values {
  display: flex; flex-wrap: wrap; gap: 0.7rem;
  margin-top: 2.2rem;
}
.value-chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 0.45rem 1rem;
  font-weight: 600; font-size: 0.9375rem;
  color: var(--ink);
}
.value-chip svg { width: 19px; height: 19px; color: var(--accent); }

.hero-art {
  position: relative;
  /* Frameless editorial treatment: no card frame around the photo.
     A soft tinted slab behind the image adds depth; a subtle teal
     scrim at the base ties it to the series artwork below. */
}
.hero-art::before {
  content: "";
  position: absolute;
  inset: 12% -14px -14px 8%;
  background: linear-gradient(155deg, rgba(232, 163, 61, 0.30), rgba(17, 94, 89, 0.26));
  border-radius: 28px;
  transform: rotate(-2deg);
  z-index: 0;
}
.hero-art-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;               /* original 4:5 ratio preserved — never stretched */
  display: block;
  border-radius: 28px;
  box-shadow: var(--shadow-lift);
}
.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 28px;
  background: linear-gradient(to top, rgba(12, 74, 71, 0.28), rgba(12, 74, 71, 0) 42%);
  pointer-events: none;
}

/* hero trust strip */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.6rem;
  padding-block: 1.15rem;
  border-block: 1px solid var(--line);
}
.hero-stat { display: flex; flex-direction: column; gap: 0.2rem; }
.hero-stat + .hero-stat { border-left: 1px solid var(--line); padding-left: 1.4rem; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  font-weight: 700; line-height: 1;
  color: var(--ink);
}
.hero-stat-label {
  font-size: 0.8125rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--caption);
}

/* bobbing motion for decorative art (disabled under reduced motion) */
.bob {
  animation: bob 5.5s ease-in-out infinite;
  transform-box: fill-box; transform-origin: center;
}
.bob:nth-of-type(2n) { animation-duration: 6.5s; animation-delay: -1.2s; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* ==========================================================================
   US FOOTPRINT
   ========================================================================== */
.footprint { background: var(--cream); }
.footprint-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.2rem;
  align-items: stretch;
}
.footprint-map {
  position: relative;
  margin: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 1.1rem;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.footprint-map img { width: 100%; height: auto; display: block; }
.map-wrap { position: relative; }
.map-wrap .us-map { width: 100%; height: auto; display: block; }

/* interactive map states */
.state-shape {
  fill: var(--cream-deep);
  stroke: #C9BBA0;
  stroke-width: 0.6;
  cursor: pointer;
  transition: fill 0.25s ease, stroke 0.25s ease, filter 0.25s ease;
}
.state-hot {
  fill: var(--accent);
  stroke: #7C3907;
  stroke-width: 0.9;
}
.state-shape:hover {
  fill: var(--accent-bright);
  stroke: #7C3907;
  stroke-width: 1.2;
  filter: drop-shadow(0 2px 6px rgba(124, 57, 7, 0.35));
}
.state-num {
  fill: var(--cream);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  pointer-events: none;
  filter: drop-shadow(0 1px 2px rgba(124, 57, 7, 0.85));
  transition: fill 0.2s ease, font-size 0.2s ease;
}
.state-hot:hover ~ .state-num,
.state-num.bump {
  fill: #7C3907;
  font-size: 31px;
}

.map-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--teal-dark);
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 24px -12px rgba(12, 74, 71, 0.55);
  pointer-events: none;
}
.map-tip {
  position: absolute;
  pointer-events: none;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem 0.8rem;
  border-radius: 10px;
  box-shadow: 0 10px 26px -10px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 6;
  white-space: nowrap;
}
.map-tip.show { opacity: 1; transform: translateY(0); }
.state-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.state-summary {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  border-radius: var(--radius-card);
  padding: 0.65rem 1rem;
  margin-bottom: 0.2rem;
  box-shadow: 0 12px 26px -14px rgba(12, 74, 71, 0.6);
}
.state-summary-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent-bright);
}
.state-summary-label {
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--cream);
}
.state-summary-total {
  margin-left: auto;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cream-soft);
  background: rgba(250, 245, 236, 0.12);
  border: 1px solid rgba(250, 245, 236, 0.22);
  padding: 0.28rem 0.6rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.state-row {
  display: grid;
  grid-template-columns: 36px 1fr;
  grid-template-areas:
    "count name"
    "count bar";
  column-gap: 0.8rem;
  row-gap: 0.22rem;
  align-items: center;
  flex: 1;
  min-height: 46px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 0.42rem 0.9rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.state-row:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: var(--shadow-card);
}
.state-row-count {
  grid-area: count;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent-deep);
  background: var(--cream-deep);
  border-radius: 10px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.state-row-name { grid-area: name; font-weight: 700; color: var(--ink); font-size: 0.98rem; }
.state-row-bar {
  grid-area: bar;
  height: 5px;
  border-radius: 3px;
  background: var(--cream-deep);
  overflow: hidden;
}
.state-row-bar span {
  display: block;
  height: 100%;
  width: var(--w, 0%);
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
  border-radius: 3px;
}
.footnote {
  margin-top: 1.6rem;
  font-size: 0.9375rem;
  color: var(--caption);
  max-width: 70ch;
}

/* ==========================================================================
   BRAND PHILOSOPHY
   ========================================================================== */
.philosophy {
  background:
    radial-gradient(820px 480px at 92% 4%, rgba(232, 163, 61, 0.12), transparent 62%),
    var(--cream-deep);
}
.brand-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.brand-art {
  position: relative;
  max-width: 340px;
  margin-inline: auto;
  /* Frameless editorial treatment, same language as .hero-art:
     a soft amber→teal gradient slab behind the photo adds depth —
     no card frame, no border around the image itself. */
}
.brand-art::before {
  content: "";
  position: absolute;
  inset: 10% -16px -16px 10%;
  background: linear-gradient(155deg, rgba(232, 163, 61, 0.32), rgba(17, 94, 89, 0.28));
  border-radius: 30px;
  transform: rotate(1.8deg);
  z-index: 0;
}
.brand-art-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;               /* original 800x1420 ratio preserved — never stretched */
  display: block;
  border-radius: 28px;
  box-shadow: var(--shadow-lift);
}
.brand-copy h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  margin: 0.9rem 0 1.3rem;
}
.brand-statement {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.3vw, 1.65rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
  max-width: 34ch;
}
.brand-note {
  margin-top: 1.4rem;
  color: var(--ink-soft);
  max-width: 52ch;
}

/* ==========================================================================
   PRODUCT SERIES
   ========================================================================== */
.menu { background: var(--cream); }
.series-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
.series-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 0;                    /* no padding — artwork bleeds edge-to-edge */
  overflow: hidden;              /* clip artwork to the card's own radius */
  display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.series-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: var(--accent);
}
.series-card .product-list {
  padding: 1.5rem 1.6rem 1.9rem;
}
.series-art {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--cream-deep); /* neutral placeholder while photos crossfade */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.series-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;             /* cover-crop, never stretch */
  opacity: 0;
  visibility: hidden;            /* keep hidden photos out of the a11y tree */
  transform: scale(1.06);
  transition: opacity 0.7s ease, transform 0.7s ease, visibility 0s linear 0.7s;
}
.series-photo.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: opacity 0.7s ease, transform 0.7s ease, visibility 0s linear 0s;
}
/* caption plate: opaque brand-color plate so the amber label + cream title
   always sit on a solid, design-system-verified backdrop (amber 4.67:1,
   cream ~9:1) instead of over a translucent photo scrim — WCAG 1.4.3 */
.series-cap {
  position: relative;
  z-index: 2;
  align-self: flex-start;        /* fit content width, left aligned */
  margin: auto 1.4rem 1.4rem;    /* flex-end bottom, 1.4rem breathing room */
  max-width: calc(100% - 2.8rem);
  padding: 0.6rem 1rem 0.7rem;
  border-radius: 0.9rem;
  background-color: var(--teal-dark);
  box-shadow:
    0 10px 26px rgba(12, 40, 38, 0.38),
    inset 0 1px 0 rgba(250, 245, 236, 0.08);
}
.series-art .series-tag {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-bright);   /* amber on solid teal-dark = 4.67:1 */
}
.series-art h3 {
  margin: 0.4rem 0 0;
  font-size: 1.5rem;
  color: var(--cream);           /* cream on solid teal-dark = ~9:1 */
}
.series-card:hover .series-photo.active {
  transform: scale(1.04);        /* gentle premium zoom on hover */
}
.series-dots {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  left: auto;
  bottom: auto;
  transform: none;
  display: flex;
  gap: 0.45rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(43, 38, 32, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 3;
}
.series-dot {
  position: relative;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 999px;
  padding: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.series-dot::after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(250, 245, 236, 0.55);
  transition: width 0.35s ease, background 0.35s ease;
}
.series-dot.active::after {
  width: 20px;
  background: var(--accent-bright);
}
.series-dot:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 2px;
}
/* accessible pause/play control for the rotating photos (WCAG 2.2.2) */
.series-pause {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(250, 245, 236, 0.35);
  border-radius: 999px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  background: rgba(43, 38, 32, 0.78);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.series-pause svg { width: 13px; height: 13px; display: block; }
.series-pause:hover { background: rgba(43, 38, 32, 0.92); }
.series-pause:active { transform: scale(0.94); }
.series-pause::before {
  content: "";
  position: absolute;
  inset: -9px;               /* ~52px touch target on mobile */
}
.series-pause:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .series-photo { transition: none; }
  .series-card:hover .series-photo.active { transform: none; }
}
.product-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  flex: 1;
  justify-content: space-evenly;
  padding: 1.5rem 1.6rem 1.9rem;
}
.product-list li {
  position: relative;
  padding-left: 1.15rem;
}
.product-list li::before {
  content: "";
  position: absolute; left: 0; top: 0.62em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.product-list h4 {
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 800;
  line-height: 1.4;
  color: var(--ink);
}
.product-list .aka { font-weight: 600; color: var(--caption); font-size: 0.9rem; }
.product-list p {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  margin-top: 0.2rem;
}

/* ==========================================================================
   SOCIAL PROOF
   ========================================================================== */
.social { background: var(--cream-deep); }
.social.dark {
  background:
    radial-gradient(900px 480px at 12% 0%, rgba(232, 163, 61, 0.14), transparent 62%),
    radial-gradient(820px 460px at 96% 100%, rgba(17, 94, 89, 0.4), transparent 62%),
    var(--teal-dark);
}
.social.dark .eyebrow { color: var(--accent-bright); }
.social.dark .eyebrow::before { background: var(--accent-bright); }
.social.dark h2 { color: var(--cream); }
.social-quote {
  max-width: 64ch;
  margin: 0 auto 1.4rem;
}
.social-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
}
.social.dark .social-quote p { color: var(--cream); }
.social.dark .social-quote p::before,
.social.dark .social-quote p::after {
  content: "\201C";
  display: inline;
  font-size: 2.3rem;
  line-height: 0;
  vertical-align: -0.32em;
  color: var(--accent-bright);
}
.social.dark .social-quote p::before { margin-right: 0.4rem; }
.social.dark .social-quote p::after {
  content: "\201D";
  margin-left: 0.4rem;
}
.social-copy {
  max-width: 58ch;
  margin: 0 auto 2.2rem;
  text-align: center;
  color: var(--ink-soft);
  font-size: 1.125rem;
}
.social.dark .social-copy { color: var(--cream-soft); }

/* social proof highlights */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  max-width: 960px;
  margin: 0 auto 2.4rem;
}
.highlight-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 1.5rem 1.4rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--teal);
}
.highlight-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.highlight-icon svg { width: 24px; height: 24px; }
.highlight-card h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.highlight-card p { font-size: 0.95rem; color: var(--ink-soft); }
.social.dark .highlight-card {
  background: rgba(250, 245, 236, 0.05);
  border-color: rgba(250, 245, 236, 0.28);
}
.social.dark .highlight-card:hover {
  border-color: var(--accent-bright);
  box-shadow: 0 22px 48px -24px rgba(0, 0, 0, 0.6);
}
.social.dark .highlight-icon {
  background: rgba(232, 163, 61, 0.14);
  border-color: rgba(232, 163, 61, 0.42);
  color: var(--accent-bright);
}
.social.dark .highlight-card h3 { color: var(--cream); }
.social.dark .highlight-card p { color: var(--cream-soft); }

/* ==========================================================================
   BRAND ADVANTAGES
   ========================================================================== */
.advantages { background: var(--cream); }
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.adv-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 2rem 1.6rem 1.8rem;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.adv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: var(--accent);
}
.adv-num {
  position: absolute; top: 0.9rem; right: 1.2rem;
  font-family: var(--font-display);
  font-size: 2.6rem; font-weight: 700;
  color: var(--cream-deep);
  line-height: 1;
  -webkit-text-stroke: 1.5px var(--line);
}
.adv-icon {
  display: inline-flex;
  width: 52px; height: 52px;
  align-items: center; justify-content: center;
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.adv-icon svg { width: 27px; height: 27px; }
.adv-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.55rem;
}
.adv-card p { color: var(--ink-soft); font-size: 0.975rem; }

/* ==========================================================================
   FRANCHISE ADVANTAGES (bento)
   ========================================================================== */
.franchise { background: var(--cream-deep); }
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}
.bento-card {
  grid-column: span 3;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 1.9rem 1.7rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: var(--teal);
}
.bento-feature {
  grid-column: span 4;
  background: var(--ink);
  border-color: var(--ink);
}
.bento-feature h3 { color: var(--cream); font-size: 1.55rem; }
.bento-card.bento-feature p { color: var(--cream-soft); font-size: 1.05rem; max-width: 52ch; }
.bento-feature .bento-icon { color: var(--accent-bright); background: rgba(250, 245, 236, 0.1); border-color: rgba(250, 245, 236, 0.35); }
.bento-icon {
  display: inline-flex;
  width: 50px; height: 50px;
  align-items: center; justify-content: center;
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--teal);
  margin-bottom: 1rem;
}
.bento-icon svg { width: 26px; height: 26px; }
.bento-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.bento-card p { color: var(--ink-soft); font-size: 0.975rem; }

/* ==========================================================================
   PROCESS (dark teal section)
   ========================================================================== */
.process {
  background:
    radial-gradient(900px 480px at 90% 0%, rgba(232, 163, 61, 0.12), transparent 60%),
    var(--teal-dark);
}
.process .eyebrow { color: var(--accent-bright); }
.process .eyebrow::before { background: var(--accent-bright); }
.process h2 { color: var(--cream); }
.process .section-intro { color: var(--cream-soft); }
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  counter-reset: step;
}
.step-card {
  position: relative;
  background: rgba(250, 245, 236, 0.04);
  border: 1px solid rgba(250, 245, 236, 0.55);
  border-radius: var(--radius-card);
  padding: 1.7rem 1.5rem 1.5rem;
  transition: transform 0.25s ease, background-color 0.25s ease;
}
.step-card:hover { transform: translateY(-4px); background: rgba(250, 245, 236, 0.08); }
.step-num {
  position: absolute; top: 1rem; right: 1.2rem;
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 700;
  color: var(--accent-bright);
  line-height: 1;
}
.step-icon { display: inline-flex; color: var(--cream); margin-bottom: 0.9rem; }
.step-icon svg { width: 30px; height: 30px; }
.step-card h3 {
  color: var(--cream);
  font-size: 1.2rem;
  max-width: 15ch;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  background:
    radial-gradient(800px 460px at 4% 100%, rgba(232, 163, 61, 0.10), transparent 60%),
    var(--cream-deep);
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.faq-intro h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  margin: 0.9rem 0 1.1rem;
}
.faq-intro-copy { color: var(--ink-soft); max-width: 40ch; margin-bottom: 1.6rem; }
.faq-list { display: flex; flex-direction: column; gap: 0.8rem; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item[open] { border-color: var(--accent); box-shadow: var(--shadow-card); }
.faq-item summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.3rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.125rem; line-height: 1.3;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent-deep); }
.faq-chevron {
  width: 22px; height: 22px; flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.25s ease;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item p {
  padding: 0 1.3rem 1.2rem;
  color: var(--ink-soft);
  max-width: 68ch;
}
.faq-item[open] p { animation: faq-in 0.3s ease; }
@keyframes faq-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: none; }
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact {
  background:
    radial-gradient(720px 440px at 94% 6%, rgba(232, 163, 61, 0.10), transparent 62%),
    var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact-copy h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  margin: 0.9rem 0 1.2rem;
}
.contact-copy > p:not(.eyebrow) { color: var(--ink-soft); max-width: 46ch; margin-bottom: 1.6rem; }
.contact-person {
  display: flex; align-items: center; gap: 1rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 1.1rem 1.3rem;
  margin-bottom: 1.2rem;
}
.contact-avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--teal);
  flex-shrink: 0;
}
.contact-avatar svg { width: 27px; height: 27px; }
.contact-name { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; line-height: 1.3; }
.contact-role { font-size: 0.9375rem; color: var(--caption); }
.contact-mail {
  font-weight: 700;
  word-break: break-all;
}
.text-link { font-weight: 700; }

/* closing-CTA steps + urgency */
.contact-steps {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-card);
  padding: 1.2rem 1.3rem;
  margin-bottom: 1.2rem;
}
.contact-steps-title {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.05rem;
  margin-bottom: 0.5rem; color: var(--ink);
}
.contact-steps-list { display: flex; flex-direction: column; gap: 0.35rem; }
.contact-steps-list li {
  position: relative; padding-left: 1.4rem;
  color: var(--ink-soft); font-size: 0.95rem;
}
.contact-steps-list li::before {
  content: "";
  position: absolute; left: 0; top: 0.55em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
}
.contact-urgency {
  margin-top: 0.8rem; padding-top: 0.7rem;
  border-top: 1px dashed var(--line);
  color: var(--ink-soft); font-size: 0.9375rem;
}
.contact-urgency strong { color: var(--accent-deep); }

.inquiry-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-card);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-collect-note {
  font-size: 0.875rem;
  color: var(--caption);
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-left: 3px solid var(--teal);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  margin: 0 0 1rem;
}
.form-collect-note a { color: var(--teal); font-weight: 700; }
.form-field { margin-bottom: 1.1rem; }
.form-field label {
  display: block;
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.req { color: var(--accent); }
.form-field input,
.form-field textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--caption); }
.form-field input:hover,
.form-field textarea:hover { border-color: var(--ink-soft); }
.form-field input:focus,
.form-field textarea:focus {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-color: var(--accent-deep);
}
.form-consent { display: flex; align-items: flex-start; gap: 0.7rem; }
.form-consent input {
  width: 22px; height: 22px;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--accent);
  border-radius: 6px;
}
.form-consent label { margin-bottom: 0; font-weight: 600; font-size: 0.9375rem; }
.form-note {
  margin-top: 0.9rem;
  font-size: 0.875rem;
  color: var(--caption);
}
.form-status {
  margin-top: 0.7rem;
  font-weight: 700;
  color: var(--teal);
  min-height: 1.5em;
}

/* inline validation states (message text accompanies color, never color alone) */
.field-error {
  margin-top: 0.45rem;
  font-size: 0.875rem; font-weight: 700;
  color: var(--accent-deep);
}
.field-error::before { content: "\26A0\FE0E\00A0"; }
.form-field input.is-invalid,
.form-field textarea.is-invalid { border-color: var(--accent-deep); }
.form-consent { flex-wrap: wrap; }
.form-consent .field-error { flex-basis: 100%; margin-top: 0.35rem; }

/* sticky mobile CTA bar */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none;
  padding: 0.7rem 1.25rem calc(0.7rem + env(safe-area-inset-bottom, 0px));
  background: rgba(250, 245, 236, 0.96);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 30px -18px rgba(43, 38, 32, 0.4);
}
.sticky-cta .btn { width: 100%; }

/* ==========================================================================
   FOOTER + LEGAL
   ========================================================================== */
.site-footer {
  background:
    radial-gradient(800px 400px at 12% 0%, rgba(232, 163, 61, 0.10), transparent 60%),
    var(--teal-dark);
  color: var(--cream);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(250, 245, 236, 0.35);
}
.brand-light { color: var(--cream); }
.brand-light:hover { color: var(--cream); }
.brand-light .brand-name em { color: var(--accent-bright); }
.footer-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  margin-top: 1rem;
  color: var(--cream);
}
.footer-note { color: var(--cream-soft); margin-top: 0.4rem; max-width: 42ch; }
.footer-nav ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
}
.footer-nav a:hover { color: var(--accent-bright); text-decoration: underline; text-underline-offset: 4px; }

.legal {
  padding-block: 2.75rem;
  border-bottom: 1px solid rgba(250, 245, 236, 0.35);
}
.legal-title {
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 1.6rem;
}
.legal-heading {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin: 1.5rem 0 0.45rem;
}
.legal p {
  font-size: 1rem;
  color: var(--cream-soft);
  max-width: 90ch;
}
.legal-copy { margin-top: 2.2rem; color: var(--cream) !important; font-weight: 600; }

/* ==========================================================================
   REVEAL MOTION
   ========================================================================== */
html.js .reveal {
  opacity: 0;
  transform: translateY(26px);
}
html.js .reveal.in-view {
  opacity: 1;
  transform: none;
}
.reveal {
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .bob { animation: none; }
  .faq-item[open] p { animation: none; }
  .faq-chevron { transition: none; }
  html.js .reveal,
  html.js .reveal.in-view {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn, .btn-primary, .btn-ghost,
  .state-row, .series-card, .adv-card, .bento-card, .step-card { transition: none; }
  .btn:hover, .btn-primary:hover, .btn-ghost:hover,
  .state-row:hover, .series-card:hover, .adv-card:hover, .bento-card:hover,
  .step-card:hover { transform: none; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1023px) {
  .series-grid { grid-template-columns: 1fr 1fr; }
  .series-card:last-child { grid-column: 1 / -1; }
  .series-card:last-child .series-art { aspect-ratio: 16 / 10; }
  .bento-card { grid-column: span 3; }
  .bento-feature { grid-column: span 6; }
  .hero-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 440px; margin-inline: auto; }
  .brand-grid { grid-template-columns: 1fr; }
  .brand-art { max-width: 340px; margin-inline: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footprint-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lift);
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease, visibility 0.35s;
  }
  .primary-nav.open {
    max-height: 480px;
    padding-block: 1.1rem 1.4rem;
    visibility: visible;
  }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    margin-bottom: 1rem;
  }
  .nav-list a { display: block; padding: 0.65rem 0.2rem; border-bottom: 1px solid var(--cream-deep); }
  .nav-cta { justify-content: center; }

  .adv-grid { grid-template-columns: 1fr; }
  .step-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-logo { height: 44px; margin-bottom: 1rem; }
  .series-grid { grid-template-columns: 1fr; }
  .series-card:last-child { grid-column: auto; }
  .series-card:last-child .series-art { aspect-ratio: 4 / 5; }
  .state-grid, .footprint-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento-card, .bento-feature { grid-column: span 1; }
  .bento-card { padding: 1.45rem 1.3rem; }
  .bento-icon { width: 44px; height: 44px; }
  .bento-icon svg { width: 22px; height: 22px; }
  .brand-copy { text-align: left; }
  .highlight-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 0.75rem; }
  .hero-stat + .hero-stat { padding-left: 0.9rem; }
  .sticky-cta { display: block; }
  body { padding-bottom: calc(86px + env(safe-area-inset-bottom, 0px)); }
}

@media (max-width: 380px) {
  .footprint-grid { grid-template-columns: 1fr; }
}

/* ---------- Language switcher (EN / 中文) ---------- */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 0.9rem;
  flex-shrink: 0;
}
.lang-btn {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 0.42rem 0.62rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.lang-btn:hover { border-color: var(--accent); color: var(--accent-deep); }
.lang-btn.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--cream);
}
.lang-btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

@media (max-width: 767px) {
  .nav-toggle { margin-left: auto; }
  .lang-switch { margin-left: 0.6rem; margin-right: 0; }
  .lang-btn { padding: 0.4rem 0.55rem; font-size: 0.78rem; }
}

