/* OR Marketing Website styles — sits on top of colors_and_type.css */
@import url("colors_and_type.css");

:root {
  --r-card: 0px;
  --r-btn: 0px;
  --r-block: 0px;
  --accent: #16A34A;
  --accent-on: #FFFFFF;
  --accent-hover: #15803D;
}

html, body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  scroll-behavior: smooth;
  overflow-x: hidden;
}
*, *::before, *::after { box-sizing: border-box; }

/* ---------- Layout primitives ---------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
}

section {
  padding: 128px 0;
  position: relative;
}
section.compact { padding: 80px 0; }
section.dark { background: var(--ink); color: var(--paper-warm); }
section.dark .eyebrow { color: rgba(242,236,225,0.62); }
section.warm { background: var(--paper-warm); }

.section-rule {
  width: 100%;
  height: 1px;
  background: var(--line);
}
section.dark .section-rule { background: rgba(242,236,225,0.22); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 80px;
  align-items: baseline;
}
@media (max-width: 768px) {
  .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 48px; }
}
.section-head .num {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.section-head h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(32px, 5vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.012em;
  margin: 0;
  color: inherit;
  overflow-wrap: break-word;
  hyphens: manual;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  border-bottom: none;
}
.nav-inner {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 40px;
  align-items: center;
  padding: 18px 64px;
  position: relative;
}
.nav-right {
  justify-self: end;
}
@media (max-width: 768px) {
  /* Mobile top bar: [OR]  ······  [WhatsApp pill]  [hamburger]
     WhatsApp sits center-ish via the 1fr middle column collapsing around it. */
  .nav-inner {
    padding: 12px 14px;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: center;
  }
  .nav .nav-logo small { display: none; }
  .nav-logo { font-size: 22px; letter-spacing: -0.01em; }
  /* Section-link menu hidden by default — opens via hamburger.
     Higher specificity (`.nav .nav-links`) so we beat the base `.nav-links`
     declaration that appears later in the file. */
  .nav .nav-links { display: none; }
  /* Hide desktop-only nav-right children on mobile */
  .nav-right > .lang-switch:not(.lang-switch-navbar),
  .nav-right > .nav-hours,
  .nav-wa-pill { display: none !important; }
  /* nav-right as flex row: [PT|UA|RU] [hamburger] */
  .nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
    grid-column: 2 / 4;
    justify-self: end;
  }
  /* Language switcher visible on mobile nav bar */
  .lang-switch-navbar {
    display: inline-flex !important;
  }
  /* Hamburger — grid item 3 (right column). Pushed flush to the right edge
     so it occupies the corner naturally. */
  .nav .nav-toggle {
    display: inline-flex;
    grid-column: 3;
    margin-right: 0;
    justify-self: end;
  }
  /* Open menu — drops down from top bar. */
  .nav .nav-links.is-open {
    display: flex;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    flex-direction: column;
    gap: 0;
    padding: 0 0 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    align-items: stretch;
    z-index: 50;
  }
  .nav-links.is-open li { width: 100%; list-style: none; }
  .nav-links.is-open > li > a {
    display: block;
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    font-weight: 600;
  }
  .nav-links.is-open li:last-child > a { border-bottom: 0; }
  .nav-links.is-open .lang-switch-mobile {
    margin-top: 16px;
    align-self: flex-start;
    padding: 0 24px;
  }
  /* Serviços ativo — barra verde de ponta a ponta */
  .nav-links.is-open .has-dropdown.is-open > a {
    background: linear-gradient(90deg, #16A34A, #22C55E);
    color: #FFFFFF;
    border-bottom: none;
  }
  .nav-links.is-open .has-dropdown.is-open > a .nav-chevron svg {
    stroke: #FFFFFF;
  }
  /* Dropdown mobile — card branco com bordas arredondadas */
  .nav-links.is-open .nav-dropdown {
    position: static;
    min-width: unset;
    width: calc(100% - 32px);
    margin: 0 16px 8px;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    padding: 20px 20px 12px;
    grid-template-columns: 1fr;
    gap: 0;
    animation: none;
    background: #FFFFFF;
  }
  .nav-links.is-open .nav-dropdown-col {
    margin-bottom: 24px;
  }
  .nav-links.is-open .nav-dropdown-col:last-child { margin-bottom: 8px; }
  .nav-links.is-open .nav-dropdown-head {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #16A34A;
    margin-bottom: 14px;
  }
  .nav-links.is-open .nav-dropdown-link {
    display: block;
    font-size: 15px;
    padding: 11px 0;
    color: #0F172A;
    border-bottom: 1px solid #F0FDF4;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 400;
  }
  .nav-links.is-open .nav-dropdown-link:last-child {
    border-bottom: none;
  }
}

/* WhatsApp button — single source of truth, always in .nav-right.
   On desktop: icon + number pill. On mobile: icon-only round button so it
   doesn't force horizontal overflow that triggers viewport zoom-out. */
.nav-wa-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 7px 8px;
  border-radius: 999px;
  background: #25D366;
  color: #FFFFFF;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.02em;
  font-feature-settings: "tnum" 1, "lnum" 1;
  white-space: nowrap;
  flex-shrink: 0;
  transition: filter 200ms ease, transform 200ms ease;
}
.nav-wa-pill:hover { filter: brightness(1.08); }
.nav-wa-pill:active { transform: translateY(1px); }
.nav-wa-pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}
.nav-wa-pill-number { font-weight: 500; }
@media (max-width: 768px) {
  /* Pill stays visible on mobile (the only nav element besides logo). */
  .nav-wa-pill-number { display: inline; }
}

/* Lang switcher echo inside the open mobile menu — hidden on desktop where the
   nav-right version is shown. */
.lang-switch-mobile { display: none; }
.lang-switch-navbar { display: none; }
@media (max-width: 768px) {
  .nav-links.is-open .lang-switch-mobile { display: block; }
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: var(--r-btn);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.nav-toggle svg { display: block; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  color: #0F172A;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-logo small {
  display: block;
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 36px;
  justify-content: flex-start;
  list-style: none;
  margin: 0;
  padding: 0;
}
/* Dropdown */
.nav-links .has-dropdown {
  position: relative;
}
.nav-chevron {
  display: inline-block;
  margin-left: 6px;
  vertical-align: middle;
  transition: transform 220ms cubic-bezier(.2,.6,.2,1);
}
.has-dropdown.is-open .nav-chevron svg {
  transform: rotate(180deg);
}
.nav-chevron svg {
  display: block;
  transition: transform 220ms cubic-bezier(.2,.6,.2,1);
}
.has-dropdown.is-open .nav-chevron {
  transform: rotate(180deg);
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 480px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: none;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.10);
  padding: 24px 32px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
  z-index: 100;
  animation: dropIn 180ms cubic-bezier(.2,.6,.2,1);
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav-dropdown-col { display: flex; flex-direction: column; gap: 4px; }
.nav-dropdown-head {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.nav-dropdown-link {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--ink);
  text-decoration: none;
  padding: 7px 0;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
  letter-spacing: 0;
  text-transform: none;
}
.nav-dropdown-link:hover {
  color: var(--accent);
  border-bottom-color: var(--line);
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: #0F172A;
  position: relative;
  transition: opacity 220ms cubic-bezier(.2,.6,.2,1);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 1px;
  background: currentColor;
  transition: width 260ms cubic-bezier(.2,.6,.2,1);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; }

.lang-switch {
  border-radius: var(--r-btn);
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--ink);
}
.lang-switch button {
  background: transparent;
  border: 0;
  padding: 8px 14px;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  transition: background 220ms cubic-bezier(.2,.6,.2,1), color 220ms cubic-bezier(.2,.6,.2,1);
}
.lang-switch button + button {
  border-left: 1px solid var(--ink);
}
.lang-switch button.active {
  background: var(--ink);
  color: var(--paper-warm);
}
.lang-switch button:hover:not(.active) { opacity: 0.6; }

/* Scroll-reveal — applied to <section> elements via IntersectionObserver.
   Gated on prefers-reduced-motion so the page stays static for users who ask.
   NOTE: no `will-change` — keeping the element on its own compositor layer
   permanently makes subpixel text look fuzzy on Mac/Chrome. */
@media (prefers-reduced-motion: no-preference) {
  .reveal:not(.is-visible) {
    opacity: 0;
    transform: translateY(18px);
  }
  .reveal {
    transition: opacity 760ms cubic-bezier(.2, .6, .2, 1),
                transform 760ms cubic-bezier(.2, .6, .2, 1);
  }
}

/* Nav hours pill — small "open now" indicator */
.nav-hours {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-btn);
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
  line-height: 1;
  user-select: none;
}
.nav-hours-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: oklch(0.62 0.19 28);
  box-shadow: 0 0 0 3px oklch(0.62 0.19 28 / 0.16);
  flex-shrink: 0;
}
.nav-hours.is-open .nav-hours-dot {
  background: oklch(0.66 0.13 150);
  box-shadow: 0 0 0 3px oklch(0.66 0.13 150 / 0.18);
  animation: nav-hours-pulse 2.4s ease-in-out infinite;
}
.nav-hours.is-open .nav-hours-days,
.nav-hours.is-open .nav-hours-time {
  color: var(--ink);
}
.nav-hours-days { font-weight: 500; }
.nav-hours-sep { opacity: 0.45; letter-spacing: 0; }
.nav-hours-time { font-variant-numeric: tabular-nums; }
@keyframes nav-hours-pulse {
  0%, 100% { box-shadow: 0 0 0 3px oklch(0.66 0.13 150 / 0.18); }
  50%      { box-shadow: 0 0 0 5px oklch(0.66 0.13 150 / 0.08); }
}
@media (max-width: 1080px) {
  .nav-hours-days,
  .nav-hours-sep { display: none; }
}
@media (max-width: 880px) {
  .nav-hours { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  margin-top: -64px;
  padding-top: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 80px;
  position: relative;
  background: linear-gradient(to top, #DCFCE7 0%, #F0FDF4 45%, #FFFFFF 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 96px;
  align-items: end;
}
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 48px;
}
.hero-eyebrow .rule {
  flex: 0 0 80px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.hero h1 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(52px, 10.5vw, 160px);
  line-height: 0.96;
  letter-spacing: -0.016em;
  margin: 0 0 48px;
  color: #0F172A;
  overflow-wrap: break-word;
  hyphens: manual;
}
/* Inline highlight token inside the hero h1 — used to call out attention-grabbing
   words like "100%". Italic serif + accent color picks it out without breaking
   the calm typographic rhythm of the rest of the headline. */
.hero h1 .hl {
  font-style: italic;
  color: var(--accent);
  font-feature-settings: "lnum" 1;
  position: relative;
  display: inline-block;
  padding: 0 0.02em;
}
.hero h1 .hl::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  height: 0.06em;
  background: var(--accent);
  opacity: 0.35;
  border-radius: 999px;
}
@media (max-width: 560px) {
  .hero h1 { font-size: clamp(36px, 11vw, 56px); margin-bottom: 32px; }
  .hero { padding: 64px 0 56px; }
  section { padding: 72px 0; }
  section.compact { padding: 56px 0; }
}
.hero-side {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-bottom: 16px;
}
.hero-side .sub {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

/* ---------- Buttons ---------- */
.btn { border-radius: var(--r-btn);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 220ms cubic-bezier(.2,.6,.2,1),
              background 220ms cubic-bezier(.2,.6,.2,1),
              color 220ms cubic-bezier(.2,.6,.2,1),
              transform 200ms cubic-bezier(.2,.6,.2,1),
              box-shadow 200ms cubic-bezier(.2,.6,.2,1);
}
.btn:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.10);
}
.btn:active {
  transform: translateY(0px);
  box-shadow: none;
}
/* Cyrillic strings are already long; the 0.28em uppercase tracking blows them
   out past the column on narrower screens. Tighten tracking just for these. */
:lang(uk) .btn,
:lang(ru) .btn { letter-spacing: 0.16em; }
.btn.solid {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: #FFFFFF;
  border-color: transparent;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.35);
}
.btn.solid::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transition: left 500ms cubic-bezier(.2,.6,.2,1);
  pointer-events: none;
}
.btn.solid:hover::before { left: 160%; }
.btn.ghost { border-color: transparent; padding: 16px 0; }
.btn.ghost:hover { box-shadow: none; transform: translateY(0); }
.btn.accent {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn.accent:hover {
  opacity: 1;
  background: var(--accent);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.25);
}
.btn .arrow {
  display: inline-block;
  transition: transform 220ms cubic-bezier(.2,.6,.2,1);
}
.btn:hover .arrow { transform: translateX(5px); }
.btn.ghost:hover .arrow { transform: translateX(5px); }
section.dark .btn { border-color: var(--paper-warm); color: var(--paper-warm); }
section.dark .btn.solid { background: var(--paper-warm); color: var(--ink); }

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}
.service-card {
  border-radius: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 48px 36px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 280px;
  position: relative;
  transition: background 220ms cubic-bezier(.2,.6,.2,1),
              transform 260ms cubic-bezier(.2,.6,.2,1),
              box-shadow 260ms cubic-bezier(.2,.6,.2,1);
}
.service-card:hover {
  background: var(--paper-warm);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(22, 163, 74, 0.12);
  border-color: rgba(22, 163, 74, 0.3);
  z-index: 1;
}
.service-card .num {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.service-card h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.008em;
  margin: 0;
  color: var(--ink);
}
.service-card p {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
.service-card .arrow {
  margin-top: auto;
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--ink);
  align-self: flex-end;
  transition: transform 220ms cubic-bezier(.2,.6,.2,1);
}
.service-card:hover .arrow {
  transform: translateX(6px) translateY(-3px);
}

/* ---------- Approach (3 col) ---------- */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}
@media (max-width: 900px) {
  .approach-grid { grid-template-columns: 1fr; gap: 40px; }
}
.approach-item h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.008em;
  margin: 0 0 18px;
  color: inherit;
}
.approach-item p {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}
section.dark .approach-item p { color: var(--paper-warm); opacity: 0.84; }
.approach-item .num {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 18px;
  opacity: 0.65;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}
.about-body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.55;
  color: var(--ink);
  max-width: 24em;
}
.about-headline {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.012em;
  margin: 0 0 32px;
}
.figures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.figure {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.figure + .figure { padding-left: 0; }
.figure:nth-child(odd) { padding-right: 24px; }
.figure:nth-child(even) { padding-left: 24px; border-left: 1px solid var(--line); }
.figure .num {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.figure .lbl {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- Quote band ---------- */
.quote-band {
  text-align: center;
  padding: 144px 0;
}
.quote-band .mark {
  font-family: var(--font-serif);
  font-size: 200px;
  line-height: 0.3;
}
.quote-band q {
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: normal;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.2;
  letter-spacing: -0.008em;
  quotes: none;
  display: block;
  max-width: 22em;
  margin: 24px auto 24px;
}
.quote-band .by {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ---------- Testimonials ---------- */
#testimonials .section-head { margin-bottom: 28px; }

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.reviews-summary-avg {
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.012em;
}
.reviews-summary-count {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--ink);
}
.stars .star svg { display: block; }
.stars .star:not(.is-filled) { color: var(--ink-mute); }

.stars-input .star {
  padding: 4px;
  margin: -4px;
  transition: transform 160ms cubic-bezier(.2,.6,.2,1);
}
.stars-input .star:hover { transform: scale(1.12); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-bottom: 64px;
}
@media (max-width: 760px) {
  .reviews-grid { grid-template-columns: 1fr; }
}
.review-card {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: transparent;
}
.review-body {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.45;
  letter-spacing: -0.006em;
  color: var(--ink);
  margin: 0;
  text-wrap: pretty;
}
.review-by {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: auto;
}
.review-name { color: var(--ink); }

/* Form */
.review-form-wrap {
  border-top: 1px solid var(--line);
  padding-top: 48px;
  display: grid;
  grid-template-columns: minmax(0, 640px);
  justify-content: start;
}
.review-form { display: flex; flex-direction: column; gap: 24px; }
.review-form-eyebrow { margin: 0; }
.review-form-stars {
  display: flex;
  align-items: center;
  gap: 16px;
}
.review-form-stars-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.review-form-row { display: flex; }
.review-input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  padding: 10px 0;
  outline: none;
  resize: vertical;
}
.review-input::placeholder { color: var(--ink-mute); }
textarea.review-input { min-height: 80px; }
.review-form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  flex-wrap: wrap;
}
.review-form-foot .hint {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.review-thanks {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 0;
}
.review-thanks h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.012em;
  margin: 0;
  color: var(--ink);
}
.review-thanks p {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

/* Marquee — infinite horizontal scroll. Two duplicated halves; loop = 50% translate.
   Pause on hover. Honours prefers-reduced-motion (animation disabled, falls back to overflow scroll).
   `--marquee-duration` is set inline from the speed tweak. */
.reviews-marquee {
  position: relative;
  overflow: hidden;
  margin: 0 -64px 64px;
  padding: 4px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 7%, black 93%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, black 7%, black 93%, transparent 100%);
}
.reviews-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: reviews-marquee var(--marquee-duration, 60s) linear infinite;
  padding-left: 24px;
}
.reviews-marquee-left  .reviews-marquee-track { animation-direction: normal;  }
.reviews-marquee-right .reviews-marquee-track { animation-direction: reverse; }
.reviews-marquee:hover .reviews-marquee-track,
.reviews-marquee:focus-within .reviews-marquee-track { animation-play-state: paused; }
@keyframes reviews-marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .reviews-marquee-track { animation: none; }
  .reviews-marquee { overflow-x: auto; }
}
@media (max-width: 760px) {
  .reviews-marquee { margin-left: -24px; margin-right: -24px; }
}

/* Manual mode — flipped on after the user clicks a nav arrow. Animation stops,
   container becomes a scroll snap container so each arrow click lands on a card. */
.reviews-marquee.is-manual {
  overflow-x: auto;
  scrollbar-width: none;
}
.reviews-marquee.is-manual::-webkit-scrollbar { display: none; }
.reviews-marquee.is-manual .reviews-marquee-track {
  animation: none;
  width: max-content;
}
.reviews-marquee.is-manual .review-card { scroll-snap-align: none; }

/* Wrapper holds the scrollable marquee AND the (static) nav arrows as siblings
   so the arrows don't scroll with the content. */
.reviews-marquee-wrap { position: relative; }

/* Nav arrows — anchored to the wrapper, outside the scroll container, so they
   stay fixed in place regardless of scroll position. */
.reviews-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.06);
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.reviews-nav:hover { background: var(--ink); color: var(--paper); }
.reviews-nav:active { transform: translateY(-50%) scale(0.94); }
.reviews-nav:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.reviews-nav-prev { left: 72px; }
.reviews-nav-next { right: 72px; }
@media (max-width: 760px) {
  .reviews-nav-prev { left: 12px; }
  .reviews-nav-next { right: 12px; }
}

/* In marquee mode cards are fixed-width so the loop length is predictable */
.reviews-marquee .review-card {
  flex: 0 0 360px;
  width: 360px;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--paper);
}
@media (max-width: 520px) {
  .reviews-marquee .review-card { flex-basis: 84vw; width: 84vw; }
}

.reviews-summary-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: var(--r-btn);
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
  text-decoration: none;
  transition: background 220ms cubic-bezier(.2,.6,.2,1), color 220ms cubic-bezier(.2,.6,.2,1);
}
a.reviews-summary-source:hover {
  background: var(--paper);
  color: var(--ink);
}
.reviews-summary-source svg { display: block; }
.reviews-summary-source-arrow { font-size: 11px; opacity: 0.55; margin-left: 2px; }

.review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.review-source {
  display: inline-flex;
  align-items: center;
  opacity: 0.7;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 24px;
}
.contact-form .field { display: flex; flex-direction: column; gap: 8px; }
.contact-form .field.full { grid-column: 1 / -1; }
.contact-form label {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  padding: 8px 0;
  outline: none;
  border-radius: 0;
  resize: none;
  transition: border-color 220ms cubic-bezier(.2,.6,.2,1);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-bottom-color: var(--accent, #B85C38);
}
.contact-form textarea { min-height: 80px; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--ink-mute); }
.contact-form .submit-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
}
.contact-form .submit-row .hint {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* Contact form — sent state */
.contact-sent {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  min-height: 280px;
  padding: 32px 0;
}
.contact-sent-mark {
  font-family: var(--font-serif);
  font-size: 56px;
  line-height: 1;
  color: oklch(0.6 0.13 150);
}
.contact-sent h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.012em;
  margin: 0;
  color: var(--ink);
}
.contact-sent p {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  max-width: 36em;
}

.contact-card {
  border-radius: var(--r-card);
  border: 1px solid var(--line);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-card .head {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.contact-card .line {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
}
.contact-card a { color: inherit; }
.contact-card hr { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* ---------- Contact card icon rows ---------- */
.contact-row { display: flex; flex-direction: column; gap: 6px; }
.contact-row-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.contact-row-head .contact-icon { display: block; }
.contact-icon-pair { display: inline-flex; gap: 8px; align-items: center; }
.contact-row-body { padding-left: 28px; }
.contact-row-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 6px;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.contact-row-meta a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 220ms cubic-bezier(.2,.6,.2,1);
}
.contact-row-meta a:hover { border-bottom-color: var(--ink-soft); }
.contact-row-body .line {
  display: block;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  text-decoration: none;
}
.contact-row-body a.line {
  border-bottom: 1px solid transparent;
  width: fit-content;
  transition: border-color 220ms cubic-bezier(.2,.6,.2,1);
}
.contact-row-body a.line:hover { border-bottom-color: var(--ink); }

/* ---------- Map card ---------- */
.map-card {
  border-radius: calc(var(--r-card) * 0.7);
  display: block;
  position: relative;
  margin-top: 14px;
  width: 100%;
  height: 280px;
  border: 1px solid var(--line);
  background: var(--paper-warm);
  overflow: hidden;
  color: var(--ink);
}
.map-card iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
.map-open-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-btn);
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  background: var(--paper);
  transition: background 220ms cubic-bezier(.2,.6,.2,1),
              border-color 220ms cubic-bezier(.2,.6,.2,1),
              color 220ms cubic-bezier(.2,.6,.2,1);
}
.map-open-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}


/* ---------- Booking Modal ---------- */
.bm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 16, 0.72);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
  animation: bmFadeIn 220ms cubic-bezier(.2,.6,.2,1);
}
@keyframes bmFadeIn { from { opacity: 0; } to { opacity: 1; } }
.bm-shell {
  background: var(--paper);
  color: var(--ink);
  isolation: isolate;
  contain: layout paint;
  width: 100%;
  max-width: 640px;
  padding: 56px 56px 48px;
  border-radius: var(--r-card);
  position: relative;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.18);
  animation: bmShellIn 280ms cubic-bezier(.2,.6,.2,1);
  margin: auto;
}
@keyframes bmShellIn {
  from { transform: translateY(12px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@media (max-width: 560px) {
  .bm-overlay { padding: 0; }
  .bm-shell { padding: 32px 24px 24px; border-radius: 0; min-height: 100%; }
}
.bm-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--r-btn);
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: background 220ms cubic-bezier(.2,.6,.2,1);
}
.bm-close:hover { background: var(--paper-warm); }

.bm-head { margin-bottom: 28px; }
.bm-head .eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.bm-head h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.06;
  letter-spacing: -0.012em;
  margin: 0 0 12px;
  color: var(--ink);
}
.bm-head p {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  max-width: 36em;
}

.bm-body { display: flex; flex-direction: column; gap: 20px; }
.bm-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 480px) { .bm-row { grid-template-columns: 1fr; gap: 16px; } }

.bm-field { display: flex; flex-direction: column; gap: 8px; }
.bm-field label,
.bm-field .bm-label {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.bm-field input,
.bm-field select,
.bm-field textarea {
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  padding: 10px 0;
  outline: none;
  border-radius: 0;
  appearance: none;
  resize: vertical;
}
.bm-field input::placeholder,
.bm-field textarea::placeholder { color: var(--ink-mute); }

/* Anular o azul/amarelo do autofill do browser nos campos do modal — mantém o
   fundo transparente e a cor de texto da paleta. O truque dos -webkit-box-shadow
   sobrepõe o fundo amarelo nativo do Chrome (que não é uma background real). */
.bm-field input:-webkit-autofill,
.bm-field input:-webkit-autofill:hover,
.bm-field input:-webkit-autofill:focus,
.bm-field textarea:-webkit-autofill,
.bm-field select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px var(--paper) inset;
  box-shadow: 0 0 0 1000px var(--paper) inset;
  -webkit-text-fill-color: var(--ink);
  caret-color: var(--ink);
  transition: background-color 9999s ease-in-out 0s;
}
.bm-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%233B3937' fill='none' stroke-width='1.5' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}

.bm-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bm-chip {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--r-btn);
  padding: 10px 18px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  transition: background 220ms cubic-bezier(.2,.6,.2,1),
              border-color 220ms cubic-bezier(.2,.6,.2,1),
              color 220ms cubic-bezier(.2,.6,.2,1);
}
.bm-chip:hover { border-color: var(--ink-soft); }
.bm-chip.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper-warm);
}

.bm-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  margin-top: 4px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  flex-wrap: wrap;
}
.bm-hint {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.bm-actions { display: flex; gap: 12px; align-items: center; }

.bm-detailed {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-top: 4px;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--ink-soft);
  text-align: center;
}
.bm-detailed a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
}
.bm-detailed a:hover { opacity: 0.6; }

/* Success state */
.bm-success { text-align: left; align-items: stretch; }
.bm-success .bm-success-mark {
  font-family: var(--font-serif);
  font-size: 72px;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 8px;
}
.bm-success h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 36px;
  line-height: 1.06;
  margin: 0 0 12px;
}
.bm-success p {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 12px;
  max-width: 36em;
}
.bm-summary {
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
@media (max-width: 480px) { .bm-summary { grid-template-columns: 1fr; } }
.bm-summary > div { display: flex; flex-direction: column; gap: 4px; }
.bm-summary .k {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.bm-summary .v {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--ink);
  line-height: 1.25;
}

/* ---------- Footer ---------- */

footer.site-footer {
  background: linear-gradient(135deg, #0F3D20 0%, #14532D 100%);
  color: var(--paper-warm);
  padding: 96px 0 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 80px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}
.footer-mark {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 88px;
  line-height: 1;
  margin: 0 0 16px;
  color: var(--paper-warm);
}
.footer-tag {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(242,236,225,0.7);
  max-width: 24em;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(242,236,225,0.6);
  margin: 0 0 20px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  color: var(--paper-warm);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 14px;
  position: relative;
  transition: opacity 220ms cubic-bezier(.2,.6,.2,1);
}
.footer-col a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 1px;
  background: currentColor;
  transition: width 240ms cubic-bezier(.2,.6,.2,1);
}
.footer-col a:hover { opacity: 1; }
.footer-col a:hover::after { width: 100%; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(242,236,225,0.22);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(242,236,225,0.55);
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom .legal { display: flex; gap: 24px; }
.footer-bottom .legal a { color: inherit; text-decoration: none; }
.footer-bottom .legal a:hover { opacity: 0.6; }

/* ---------- Eyebrow (general) ---------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
}


/* ---------- Rounded card / footer mode ---------- */
body.rounded-footer footer.site-footer {
  margin: 48px 24px;
  border-radius: var(--r-block);
  padding: 80px 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  body.rounded-footer footer.site-footer { margin: 32px 12px; padding: 56px 0; }
}

/* Soften service grid container in rounded modes (grid keeps internal hairlines, outer is rounded) */
body.rounded-footer .services-grid {
  border-radius: var(--r-card);
  overflow: hidden;
}

/* Round the service cards individually too in 'soft' mode */
.service-card { border-radius: 0; }
body.rounded-footer .service-card {
  /* Grid still uses hairlines as dividers; outer corner gets rounded by parent overflow */
}

/* ---------- Floating WhatsApp button ---------- */
.fab-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25D366;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 220ms cubic-bezier(.2,.6,.2,1),
              box-shadow 220ms cubic-bezier(.2,.6,.2,1);
}
.fab-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.55);
}
.fab-wa:active {
  transform: scale(0.96);
}
@media (max-width: 768px) {
  .fab-wa { bottom: 20px; right: 20px; width: 50px; height: 50px; }
}

/* ── IRS Wizard — full redesign ── */

/* Overlay: darker + blurred like the screenshot's page-level feel */
.bm-overlay.wz-overlay {
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(4px);
}

.wz-shell {
  position: relative;
  background: #F4F3F0;
  border-radius: 20px;
  width: min(700px, 96vw);
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.22);
  display: flex;
  flex-direction: column;
}

/* ── Close button ── */
.wz-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.08);
  color: #444;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.15s;
}
.wz-close:hover { background: rgba(0,0,0,0.16); color: #111; }

/* ── Top bar: step counter + progress ── */
.wz-topbar {
  padding: 20px 64px 0 28px;
  background: #F4F3F0;
  position: sticky;
  top: 0;
  z-index: 2;
}
.wz-progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 500;
  color: #999;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.wz-step-name { color: #1A1A1A; font-weight: 600; }
.wz-progress-bar {
  height: 4px;
  background: #E2E0DC;
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 20px;
}
.wz-progress-fill {
  height: 100%;
  background: #16A34A;
  border-radius: 99px;
  transition: width 0.4s cubic-bezier(.4,0,.2,1);
}

/* ── White question card ── */
.wz-card {
  background: #fff;
  border-radius: 16px;
  margin: 0 16px 16px;
  padding: 32px 28px 28px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
}
.wz-title {
  font-size: 21px;
  font-weight: 700;
  font-family: var(--font-sans, system-ui, sans-serif);
  color: #111;
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: -0.3px;
}
.wz-lead {
  font-size: 14px;
  color: #888;
  margin-bottom: 28px;
  line-height: 1.6;
}

/* ── Radio options ── */
.wz-options { display: flex; flex-direction: column; gap: 10px; }
.wz-option {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border: 1.5px solid #ECEAE6;
  border-radius: 12px;
  cursor: pointer;
  background: #fff;
  text-align: left;
  width: 100%;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.wz-option:hover {
  border-color: #16A34A;
  box-shadow: 0 0 0 3px rgba(22,163,74,0.08);
}
.wz-option.selected {
  border-color: #16A34A;
  background: #F0FDF4;
  box-shadow: 0 0 0 3px rgba(22,163,74,0.1);
}
.wz-radio {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #D4D2CE;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, background 0.15s;
}
.wz-option.selected .wz-radio { border-color: #16A34A; background: #16A34A; }
.wz-radio-check { display: none; }
.wz-option.selected .wz-radio-check { display: block; }
.wz-option-body { flex: 1; }
.wz-option-title { font-size: 15px; font-weight: 600; color: #111; margin-bottom: 4px; }
.wz-option-sub { font-size: 13px; color: #777; line-height: 1.55; }

/* ── Income icon grid ── */
.wz-inc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.wz-inc-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 16px;
  border: 1.5px solid #ECEAE6;
  border-radius: 14px;
  cursor: pointer;
  background: #fff;
  text-align: left;
  width: 100%;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.wz-inc-card:hover {
  border-color: #16A34A;
  box-shadow: 0 0 0 3px rgba(22,163,74,0.08);
}
.wz-inc-card.selected {
  border-color: #16A34A;
  background: #F0FDF4;
  box-shadow: 0 0 0 3px rgba(22,163,74,0.1);
}
.wz-inc-icon {
  width: 42px; height: 42px;
  background: #F4F3F0;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #666;
  transition: background 0.15s, color 0.15s;
}
.wz-inc-card.selected .wz-inc-icon { background: #DCFCE7; color: #16A34A; }
.wz-inc-body { flex: 1; }
.wz-inc-title { font-size: 14px; font-weight: 600; color: #111; margin-bottom: 3px; line-height: 1.3; }
.wz-inc-sub { font-size: 12px; color: #888; line-height: 1.45; }
.wz-inc-check {
  width: 20px; height: 20px;
  border-radius: 50%; background: #16A34A;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; opacity: 0;
  transition: opacity 0.15s;
  align-self: flex-start;
}
.wz-inc-card.selected .wz-inc-check { opacity: 1; }

/* ── Bigger picture card ── */
.wz-bigger-card {
  border: 1.5px solid #ECEAE6;
  border-radius: 14px;
  padding: 22px 20px;
  background: #FAFAF8;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.wz-bigger-head { display: flex; align-items: flex-start; gap: 14px; }
.wz-bigger-icon {
  width: 42px; height: 42px;
  background: #F0EFEC;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #666;
}
.wz-bigger-title { font-size: 15px; font-weight: 700; color: #111; margin-bottom: 3px; }
.wz-bigger-sub { font-size: 13px; color: #888; line-height: 1.5; }
.wz-bigger-group { display: flex; flex-direction: column; gap: 10px; }
.wz-bigger-label { font-size: 13px; font-weight: 500; color: #666; }
.wz-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.wz-pill {
  padding: 8px 18px;
  border: 1.5px solid #DDDBD6;
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  color: #555;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  font-family: inherit;
  font-weight: 500;
}
.wz-pill:hover { border-color: #16A34A; color: #16A34A; }
.wz-pill.selected { border-color: #16A34A; background: #16A34A; color: #fff; }

/* ── Contact fields ── */
.wz-fields { display: flex; flex-direction: column; gap: 18px; }
.wz-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.wz-field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 6px;
}
.wz-field input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #DDDBD6;
  border-radius: 10px;
  font-size: 15px;
  color: #111;
  background: #fff;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  font-family: inherit;
}
.wz-field input:focus {
  border-color: #16A34A;
  box-shadow: 0 0 0 3px rgba(22,163,74,0.1);
}

/* ── Nav bar ── */
.wz-nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px 20px;
  background: #F4F3F0;
  position: sticky;
  bottom: 0;
  border-top: 1px solid #E8E6E2;
}
.wz-btn-back {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border: 1.5px solid #D4D2CE;
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  color: #444;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.wz-btn-back:hover { border-color: #aaa; box-shadow: 0 1px 4px rgba(0,0,0,0.08); }
.wz-btn-next {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border: none;
  border-radius: 999px;
  background: #1A1A1A;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, opacity 0.15s, transform 0.1s;
  letter-spacing: 0.01em;
}
.wz-btn-next:hover:not(:disabled) { background: #333; transform: translateX(2px); }
.wz-btn-next:disabled { opacity: 0.35; cursor: not-allowed; }

/* ── Success ── */
.wz-success {
  text-align: center;
  padding: 48px 28px 36px;
}
.wz-success-mark {
  width: 64px; height: 64px;
  background: #DCFCE7;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px; color: #16A34A;
}
.wz-success h2 { font-size: 24px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.3px; }
.wz-success p { font-size: 15px; color: #666; max-width: 380px; margin: 0 auto 28px; line-height: 1.65; }

/* ── Service card CTA ── */
.service-card--cta { transition: box-shadow 0.2s; }
.service-card-cta-label { font-size: 13px; font-weight: 600; color: #16A34A; margin-top: auto; }

/* ── Mobile ── */
@media (max-width: 600px) {
  .wz-shell { border-radius: 16px; max-height: 96vh; width: 100vw; border-bottom-left-radius: 0; border-bottom-right-radius: 0; align-self: flex-end; }
  .wz-card { margin: 0 10px 10px; padding: 24px 18px 20px; }
  .wz-topbar { padding: 16px 60px 0 18px; }
  .wz-title { font-size: 18px; }
  .wz-option { padding: 14px 16px; }
  .wz-option-title { font-size: 14px; }
  .wz-inc-grid { grid-template-columns: 1fr; }
  .wz-row-2 { grid-template-columns: 1fr; }
  .wz-nav-bar { padding: 12px 16px 16px; }
  .wz-btn-back { padding: 10px 18px; font-size: 13px; }
  .wz-btn-next { padding: 11px 22px; font-size: 13px; }
  .wz-pills { gap: 6px; }
  .wz-pill { font-size: 12px; padding: 7px 14px; }
}

/* ── StatsBand ── */
.stats-band {
  padding: 48px 0 56px;
  background: linear-gradient(to bottom, #F0FDF4, #FFFFFF);
}
.stats-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.04);
}
.stat-icon {
  width: 44px;
  height: 44px;
  background: #F0FDF4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16A34A;
}
.stat-num {
  font-family: Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  color: #0F172A;
  letter-spacing: -1.5px;
  line-height: 1;
}
.stat-label {
  font-size: 14px;
  color: #64748B;
  line-height: 1.4;
  font-weight: 400;
}
@media (max-width: 900px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .stat-card { padding: 20px 16px 18px; border-radius: 16px; }
  .stat-num { font-size: 32px; }
  .stat-label { font-size: 12px; }
}

/* ── IRS 2025 featured card ── */
.service-card--irs {
  border-top: 3px solid #16A34A;
  box-shadow: 0 4px 24px rgba(22,163,74,0.1);
}

.service-card-badge {
  display: inline-block;
  padding: 3px 10px;
  background: #22C55E;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  border-radius: 999px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.service-card-irs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 10px 20px;
  background: #F59E0B;
  color: #1A1A1A;
  border: none;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.01em;
  transition: background 0.15s, transform 0.15s;
  align-self: flex-start;
}
.service-card-irs-btn:hover { background: #FBBF24; transform: translateX(2px); }

/* ── IRS Page ─────────────────────────────────────── */
.irs-page {
  min-height: 100vh;
  background: #F4F3F0;
  font-family: var(--font-sans, sans-serif);
  display: flex;
  flex-direction: column;
}

.irs-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: #F4F3F0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  position: sticky;
  top: 0;
  z-index: 50;
}
.irs-page-header .nav-logo {
  flex-shrink: 0;
}

.irs-page-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.irs-lang-btn {
  background: none;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #888;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
}
.irs-lang-btn:hover { color: #1A1A1A; border-color: rgba(0,0,0,0.15); }
.irs-lang-btn.active { color: #1A1A1A; border-color: rgba(0,0,0,0.25); background: rgba(0,0,0,0.04); }

.irs-back-link {
  font-size: 13px;
  color: #666;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.15);
  transition: all 0.15s;
}
.irs-back-link:hover { color: #1A1A1A; border-color: rgba(0,0,0,0.3); }

.irs-page-hero {
  padding: 64px 24px 56px;
}
.irs-page-hero-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.irs-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 13px;
  color: #444;
  font-weight: 500;
}
.irs-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16A34A;
  flex-shrink: 0;
}

.irs-page-headline {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: #1A1A1A;
  margin: 0;
}

.irs-page-sub {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  max-width: 600px;
  margin: 0;
  text-align: center;
}

.irs-page-box {
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: 16px;
  padding: 20px 24px;
  font-size: 15px;
  line-height: 1.65;
  color: #444;
  text-align: left;
  max-width: 600px;
  width: 100%;
}
.irs-box-bold {
  font-weight: 700;
  color: #16A34A;
}

.irs-page-form-wrap {
  padding: 0 24px 80px;
  flex: 1;
}
.irs-page-form-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.irs-page-progress {
  background: #fff;
  border-radius: 16px 16px 0 0;
  padding: 20px 28px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.irs-page-card {
  background: #fff;
  padding: 28px 28px 32px;
  border-radius: 0;
}
.irs-page-nav {
  background: #fff;
  border-radius: 0 0 16px 16px;
  padding: 16px 28px 24px;
  border-top: 1px solid rgba(0,0,0,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.irs-page-footer {
  text-align: center;
  padding: 24px;
  font-size: 12px;
  color: #999;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.irs-page-footer a { color: #666; text-decoration: none; }
.irs-page-footer a:hover { color: #1A1A1A; }

@media (max-width: 600px) {
  .irs-page-header { padding: 12px 16px; gap: 8px; flex-wrap: wrap; }
  .irs-page-header .nav-logo { font-size: 20px; }
  .irs-page-header .nav-logo small { display: none; }
  .irs-page-header-right { gap: 6px; }
  .irs-back-link { font-size: 12px; }
  .irs-back-link span { display: none; }
  .irs-page-hero { padding: 40px 20px 36px; }
  .irs-page-form-wrap { padding: 0 16px 60px; }
  .irs-page-card, .irs-page-progress, .irs-page-nav { padding-left: 20px; padding-right: 20px; }
}

/* ─── FAQ ───────────────────────────────────────────────── */
.faq-section {
  padding: 80px 0;
  background: var(--paper);
}
.faq-category {
  margin-bottom: 40px;
}
.faq-category-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: none;
  border: none;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
  gap: 12px;
}
.faq-q:hover {
  background: var(--paper-warm);
}
.faq-chevron {
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-chevron.open {
  transform: rotate(180deg);
}
.faq-a {
  padding: 0 20px 18px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ── FAQ Page layout ─────────────────────────────── */
.faq-page-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
.faq-page-main { min-width: 0; }
.faq-page-sidebar { position: sticky; top: 88px; }

.faq-contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(0,0,0,0.07);
}
.faq-contact-label {
  font-size: 14px;
  font-weight: 700;
  color: #1A1A1A;
  letter-spacing: -0.2px;
}
.faq-contact-sub {
  font-size: 13px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}
.faq-contact-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}
.faq-contact-btn:hover { transform: translateX(2px); }
.faq-contact-btn--wa  { background: #E7F7EE; color: #16A34A; }
.faq-contact-btn--wa:hover { background: #D1FAE5; }
.faq-contact-btn--tg  { background: #EFF6FF; color: #2563EB; }
.faq-contact-btn--tg:hover { background: #DBEAFE; }
.faq-contact-btn--email { background: #F4F3F0; color: #444; }
.faq-contact-btn--email:hover { background: #E8E5DF; }
.faq-contact-irs { margin-top: 4px; }

@media (max-width: 768px) {
  .faq-page-layout { grid-template-columns: 1fr; }
  .faq-page-sidebar { position: static; }
}

/* ── Top announcement bar ────────────────────────── */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #16A34A;
  color: #fff;
  padding: 9px 16px;
  font-size: 13px;
  font-family: var(--font-sans, sans-serif);
  font-weight: 500;
  flex-wrap: wrap;
  overflow: visible;
}
.top-bar-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  flex-shrink: 0;
  margin: 2px;
  animation: top-bar-pulse 2s ease-in-out infinite;
}
@keyframes top-bar-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.25); }
}
.top-bar-text {
  opacity: 0.92;
}
.top-bar-cta {
  background: #fff;
  color: #16A34A;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.01em;
  transition: background 0.15s, transform 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.top-bar-cta:hover { background: #F0FDF4; transform: scale(1.03); }
@media (max-width: 600px) {
  .top-bar {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    text-align: center;
  }
  .top-bar-dot { display: none; }
  .top-bar-text { font-size: 13px; line-height: 1.4; }
  .top-bar-cta { margin-top: 4px; padding: 7px 20px; font-size: 13px; }
}

.top-bar-deadline {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
