/* ============================================================
   Agência do João — agenciadojoao.com.br
   Design system baseado no pack "Airbnb-design-analysis":
   canvas branco, ink #222, uma única cor de voltagem (laranja
   da marca), raios suaves, uma única camada de sombra.
   ============================================================ */

:root {
  --canvas: #ffffff;
  --surface-soft: #f7f7f7;
  --surface-strong: #f2f2f2;
  --ink: #222222;
  --body: #3f3f3f;
  --muted: #6a6a6a;
  --muted-soft: #929292;
  --hairline: #dddddd;
  --hairline-soft: #ebebeb;
  --primary: #f57c20;        /* laranja da marca — a única voltagem */
  --primary-active: #d96812;
  --primary-soft: #fdeadb;
  --navy: #2b3a67;           /* azul-marinho da marca — uso pontual */
  --whatsapp: #25d366;
  --on-primary: #ffffff;
  --shadow: 0 0 0 1px rgba(0, 0, 0, 0.02), 0 2px 6px rgba(0, 0, 0, 0.04), 0 4px 8px rgba(0, 0, 0, 0.1);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-full: 9999px;

  --font: "Inter", Circular, -apple-system, system-ui, Roboto, "Helvetica Neue", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

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

section { padding: 64px 0; }

.section-head {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.2px;
  margin-bottom: 8px;
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 640px;
}

/* ---------- Botões ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  border: none;
  border-radius: var(--r-sm);
  padding: 14px 24px;
  min-height: 48px;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--on-primary);
}
.btn-primary:hover,
.btn-primary:active { background: var(--primary-active); }

.btn-secondary {
  background: var(--canvas);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
}
.btn-secondary:hover { background: var(--surface-soft); }

.btn-pill {
  border-radius: var(--r-full);
  font-size: 14px;
  padding: 10px 20px;
  min-height: 0;
}

/* ---------- Top nav ---------- */

.top-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline-soft);
  height: 80px;
}

.top-nav .container {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img { height: 44px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  position: relative;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 0;
  transition: color 0.15s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--ink); }

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--ink);
}

.new-tag {
  display: inline-block;
  vertical-align: top;
  margin-left: 4px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: var(--r-full);
  padding: 2px 6px;
  line-height: 1.25;
}

.nav-cta { flex-shrink: 0; }

.nav-burger {
  display: none;
  background: none;
  border: 1px solid var(--hairline);
  border-radius: var(--r-full);
  width: 44px;
  height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

/* ---------- Hero ---------- */

.hero { padding: 56px 0 64px; }

.hero h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.4px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero h1 em {
  font-style: normal;
  color: var(--primary);
}

.hero .lede {
  text-align: center;
  color: var(--muted);
  max-width: 560px;
  margin: 12px auto 0;
}

/* pill de busca (homenagem à search bar) — abre o WhatsApp */
.search-pill {
  margin: 32px auto 0;
  max-width: 840px;
  display: flex;
  align-items: center;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-full);
  box-shadow: var(--shadow);
  padding: 8px 8px 8px 0;
  transition: box-shadow 0.15s ease;
}

.search-pill:hover { box-shadow: 0 0 0 1px rgba(0,0,0,0.04), 0 4px 10px rgba(0,0,0,0.08), 0 6px 14px rgba(0,0,0,0.12); }

.search-seg {
  flex: 1;
  padding: 8px 24px;
  min-width: 0;
}

.search-seg {
  background: none;
  border: none;
  font-family: var(--font);
  text-align: left;
  cursor: pointer;
  border-radius: var(--r-full);
}

.search-seg.seg-active,
.search-seg:hover { background: var(--surface-soft); }

.seg-hint.filled { color: var(--ink); font-weight: 500; }

.search-seg + .search-seg { border-left: 1px solid var(--hairline); }

.search-seg .seg-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

.search-seg .seg-hint {
  display: block;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-orb {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: var(--r-full);
  background: var(--primary);
  color: var(--on-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s ease;
}

.search-orb:hover { background: var(--primary-active); }

.search-orb {
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
}

.orb-label { display: none; }

/* ---------- Painéis do buscador ---------- */

.search-widget {
  position: relative;
  max-width: 840px;
  margin: 32px auto 0;
}

.search-widget .search-pill { margin: 0; }

.search-panel {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  background: var(--canvas);
  border: 1px solid var(--hairline-soft);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 24px;
  z-index: 40;
}

.search-panel.open { display: block; }

.panel-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.svc-list { display: flex; flex-wrap: wrap; gap: 8px; }

.svc-opt {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  padding: 10px 18px;
  border-radius: var(--r-full);
  border: 1px solid var(--hairline);
  background: var(--canvas);
  cursor: pointer;
}

.svc-opt:hover { border-color: var(--ink); }

.svc-opt.selected {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
}

.city-input {
  width: 100%;
  font-family: var(--font);
  font-size: 16px;
  color: var(--ink);
  padding: 14px 12px;
  border: 1px solid var(--hairline);
  border-radius: var(--r-sm);
  outline: none;
}

.city-input:focus {
  border-color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.city-list { margin-top: 8px; max-height: 280px; overflow-y: auto; }

.city-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  font-family: var(--font);
  font-size: 15px;
  color: var(--ink);
  padding: 12px 8px;
  background: none;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
}

.city-opt:hover { background: var(--surface-soft); }

.city-opt svg { color: var(--muted); flex-shrink: 0; }

.city-free svg { color: var(--primary); }

.city-empty { font-size: 14px; color: var(--muted); padding: 12px 8px; }

/* solicitação personalizada (link discreto sob o buscador) */

.search-custom {
  text-align: center;
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted);
}

.search-custom a {
  color: var(--ink);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.search-custom a:hover { color: var(--primary-active); }

/* calendário */

.cal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }

.trip-type {
  display: flex;
  gap: 6px;
  background: var(--surface-soft);
  border-radius: var(--r-full);
  padding: 4px;
}

.trip-opt {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  background: none;
  border: none;
  border-radius: var(--r-full);
  padding: 7px 16px;
  cursor: pointer;
}

.trip-opt.selected {
  background: var(--canvas);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.cal-nav {
  width: 36px;
  height: 36px;
  border-radius: var(--r-full);
  border: 1px solid var(--hairline);
  background: var(--canvas);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cal-nav:disabled { opacity: 0.35; cursor: default; }

.cal-months { display: flex; gap: 40px; justify-content: center; }

.cal-month { width: 308px; max-width: 100%; }

.cal-month-name {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
}

.cal-grid { display: grid; grid-template-columns: repeat(7, 44px); justify-content: center; }

.cal-dow {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
  padding: 6px 0;
}

.cal-day {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 14px;
  color: var(--ink);
  background: none;
  border: none;
  border-radius: var(--r-full);
  cursor: pointer;
}

button.cal-day:hover { box-shadow: inset 0 0 0 1.5px var(--ink); }

.cal-day.off { color: var(--muted-soft); cursor: default; }

.cal-day.sel { background: var(--ink); color: #ffffff; }

.cal-day.in-range { background: var(--surface-strong); border-radius: 0; }

.cal-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

.cal-dica { font-size: 13px; color: var(--muted); }

.cal-limpar {
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

/* viajantes */

.guest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--hairline-soft);
}

.guest-nome { font-size: 15px; font-weight: 600; }

.guest-desc { font-size: 13px; color: var(--muted); }

.guest-ctrl { display: flex; align-items: center; gap: 14px; }

.guest-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--r-full);
  border: 1px solid var(--border-strong, #c1c1c1);
  background: var(--canvas);
  font-size: 18px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guest-btn:hover { border-color: var(--ink); color: var(--ink); }

.guest-num { min-width: 24px; text-align: center; font-size: 15px; font-weight: 500; }

.guest-ok { margin-top: 16px; width: 100%; }

.hero-photo {
  margin-top: 48px;
  position: relative;
  height: 460px;
  border-radius: var(--r-lg);
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active { opacity: 1; }

.hero-badge {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  background: var(--canvas);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  border-radius: var(--r-full);
  padding: 6px 12px;
  box-shadow: var(--shadow);
}

/* ---------- Serviços ---------- */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 16px;
}

.service-card {
  display: block;
  border-radius: var(--r-md);
  transition: transform 0.2s ease;
}

.service-card:hover { transform: translateY(-2px); }

.service-card .card-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-md);
  transition: transform 0.35s ease;
}

.service-card:hover img { transform: scale(1.04); }

.service-card .card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--canvas);
  font-size: 11px;
  font-weight: 600;
  border-radius: var(--r-full);
  padding: 5px 11px;
  box-shadow: var(--shadow);
}

.service-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 12px 0 2px;
}

.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.43;
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Faixa de confiança ---------- */

.trust {
  border-top: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
  text-align: center;
}

.trust .laurel {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.6px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.trust .laurel svg { color: var(--muted-soft); flex-shrink: 0; }

.trust .trust-sub {
  color: var(--muted);
  max-width: 560px;
  margin: 16px auto 0;
}

.trust-cols {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-col { padding: 0 32px; }

.trust-col + .trust-col { border-left: 1px solid var(--hairline); }

.trust-col h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }

.trust-col p { font-size: 14px; color: var(--muted); line-height: 1.43; }

/* ---------- Empresas ---------- */

.corp-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}

.corp-copy .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}

.corp-copy h2 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}

.corp-copy > p { color: var(--body); margin-bottom: 20px; }

.corp-list { list-style: none; margin-bottom: 28px; }

.corp-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--body);
}

.corp-list svg { flex-shrink: 0; color: var(--primary); margin-top: 2px; }

.corp-photo img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--r-lg);
}

/* ---------- Carrossel de logos ---------- */

.clients { padding-top: 8px; }

.clients .clients-label {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 32px;
}

.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

.logo-set {
  display: flex;
  align-items: center;
  gap: 80px;
  padding-right: 80px;
}

.logo-set img {
  height: 44px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.65);
  transition: filter 0.25s ease;
}

.logo-set img:hover { filter: none; }

.logo-set .logo-type {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 24px;
  color: #555555;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.logo-set .logo-type:hover { color: var(--navy); }

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; }
  .marquee { mask-image: none; -webkit-mask-image: none; }
}

/* ---------- Grupos ---------- */

.groups-banner {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
}

.groups-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.groups-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.62) 100%);
}

.groups-content {
  position: relative;
  z-index: 1;
  padding: 40px;
  color: #ffffff;
  max-width: 560px;
}

.groups-content .new-tag {
  color: #ffffff;
  border-color: #ffffff;
  margin: 0 0 12px;
}

.groups-content h2 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 8px;
}

.groups-content p { font-size: 15px; opacity: 0.92; margin-bottom: 20px; }

/* ---------- CTA final ---------- */

.final-cta {
  background: var(--surface-soft);
  text-align: center;
}

.final-cta h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

.final-cta p { color: var(--muted); margin-bottom: 28px; }

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

footer {
  border-top: 1px solid var(--hairline-soft);
  padding: 48px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}

.footer-brand img { height: 40px; width: auto; margin-bottom: 12px; }

.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  max-width: 280px;
  line-height: 1.43;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  font-size: 14px;
  color: var(--ink);
}

.footer-col a:hover { text-decoration: underline; }

.legal-band {
  border-top: 1px solid var(--hairline-soft);
  padding: 20px 0;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- FAB WhatsApp ---------- */

.wa-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.wa-fab {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: var(--r-full);
  background: var(--whatsapp);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease;
  animation: wa-pulse 2s ease-out infinite;
}

.wa-fab:hover { transform: scale(1.06); animation: none; }

@keyframes wa-pulse {
  0%   { box-shadow: var(--shadow), 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70%  { box-shadow: var(--shadow), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: var(--shadow), 0 0 0 0 rgba(37, 211, 102, 0); }
}

.wa-bubble {
  position: relative;
  max-width: 280px;
  background: var(--canvas);
  border-radius: var(--r-md);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04), 0 6px 16px rgba(0, 0, 0, 0.14);
  padding: 18px 40px 18px 18px;
  animation: wa-bubble-in 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}

.wa-bubble[hidden] { display: none; }

.wa-bubble::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: -6px;
  width: 12px;
  height: 12px;
  background: var(--canvas);
  transform: rotate(45deg);
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.06);
}

@keyframes wa-bubble-in {
  from { opacity: 0; transform: translateY(10px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.wa-bubble-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
}

.wa-bubble-body strong {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.2px;
}

.wa-bubble-body span {
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
}

.wa-bubble-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: var(--r-full);
  background: transparent;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.wa-bubble-close:hover { background: var(--surface-soft); color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  .wa-fab { animation: none; }
  .wa-bubble { animation: none; }
}

/* ---------- Página Grupos (em breve) ---------- */

.coming-soon {
  min-height: calc(100vh - 80px - 300px);
  display: flex;
  align-items: center;
  text-align: center;
}

.coming-soon .inner { max-width: 620px; margin: 0 auto; }

.coming-soon .new-tag { margin: 0 0 16px; }

.coming-soon h1 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.25;
  margin-bottom: 12px;
}

.coming-soon p { color: var(--muted); margin-bottom: 28px; }

/* ---------- Responsivo ---------- */

@media (max-width: 1128px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .corp-grid { grid-template-columns: 1fr; }
  .corp-photo img { height: 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 744px) {
  section { padding: 48px 0; }

  .nav-links,
  .nav-cta { display: none; }

  .nav-burger { display: flex; }

  .top-nav.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--canvas);
    border-bottom: 1px solid var(--hairline);
    padding: 16px 24px 24px;
    box-shadow: var(--shadow);
  }

  .top-nav.menu-open .nav-links a { display: block; padding: 12px 0; font-size: 16px; }

  .hero { padding-top: 40px; }
  .hero h1 { font-size: 26px; }

  .search-pill {
    flex-direction: column;
    align-items: stretch;
    padding: 8px;
    border-radius: 24px;
  }

  .search-seg { padding: 12px 16px; border-radius: 16px; }

  .search-seg + .search-seg {
    border-left: none;
    border-top: 1px solid var(--hairline-soft);
  }

  .search-orb {
    width: 100%;
    height: 52px;
    margin-top: 8px;
    gap: 10px;
  }

  .orb-label { display: inline; }

  .search-panel { position: static; margin-top: 12px; }

  .cal-months .cal-month:last-child { display: none; }

  .cal-grid { grid-template-columns: repeat(7, 1fr); }

  .cal-day { width: 100%; }

  .hero-photo { height: 300px; }

  .cards-grid { grid-template-columns: 1fr; }

  .trust .laurel { font-size: 24px; gap: 12px; }

  .trust-cols { grid-template-columns: 1fr; gap: 24px; }
  .trust-col + .trust-col { border-left: none; border-top: 1px solid var(--hairline); padding-top: 24px; }

  .logo-set { gap: 48px; padding-right: 48px; }
  .logo-set img { height: 36px; max-width: 150px; }
  .logo-set .logo-type { font-size: 20px; }

  .groups-content { padding: 28px 24px; }

  .footer-grid { grid-template-columns: 1fr; }

  .legal-band { flex-direction: column; }
}
