body {
  color: var(--voyqa-ink);
  font-family: var(--voyqa-font-body);
  font-size: 16px;
  line-height: 1.55;
  min-height: 100vh;
}

body.voyqa-public {
  padding: 18px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 72% -5%, rgba(255,255,255,.8), transparent 32%),
    linear-gradient(145deg, #a8b9c7 0%, #dce4e9 49%, #eee0cb 100%);
}

.voyqa-site-shell {
  position: relative;
  min-height: calc(100vh - 36px);
  overflow: hidden;
  border: 1px solid rgba(190,137,54,.9);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.28), transparent 40%),
    var(--voyqa-pearl);
  box-shadow:
    inset 0 0 0 4px rgba(255,255,255,.22),
    0 24px 70px rgba(26,42,55,.25);
}

h1, h2, h3, h4 {
  color: var(--voyqa-ink);
  font-family: var(--voyqa-font-heading);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.025em;
}

.voyqa-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65em;
  color: var(--voyqa-gold);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.voyqa-eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; }

.voyqa-container {
  width: min(calc(100% - (var(--voyqa-gutter) * 2)), var(--voyqa-container-max));
  margin-inline: auto;
}

/* Long-form copy stays left-aligned at every width. This preserves a steady
   reading rhythm and avoids the large word gaps produced by justification on
   compact cards and phones. */
:where(
  .voyqa-hero__desc,
  .voyqa-card__desc,
  .voyqa-page-hero__desc,
  .voyqa-content-card__desc,
  .voyqa-detail-heading > p,
  .voyqa-detail-body,
  .voyqa-detail-body p,
  .voyqa-contact-layout__intro > p,
  .voyqa-consent__text,
  .voyqa-consent__category-copy p,
  .voyqa-consent-page__intro
) {
  text-align: left;
  -webkit-hyphens: auto;
  hyphens: auto;
  overflow-wrap: break-word;
}

.voyqa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 46px;
  padding: .78rem 1.15rem;
  border-radius: 8px;
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, background .35s ease;
  white-space: nowrap;
}
.voyqa-btn--primary {
  border: 1px solid var(--voyqa-gold);
  background: rgba(255,250,241,.82);
  color: var(--voyqa-blue);
  box-shadow: 0 10px 28px -17px rgba(160,105,25,.65);
  backdrop-filter: blur(12px);
}
.voyqa-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -18px rgba(160,105,25,.68); }
.voyqa-btn--secondary { border: 1px solid rgba(201,154,69,.5); color: var(--voyqa-blue); background: rgba(255,255,255,.28); }
.voyqa-btn--secondary:hover { transform: translateY(-2px); background: rgba(255,255,255,.65); }
.voyqa-btn--ghost { min-height: 0; padding: .25rem 0; border: 0; color: var(--voyqa-blue-soft); }
.voyqa-btn__arrow { transition: transform .3s ease; }
.voyqa-btn:hover .voyqa-btn__arrow { transform: translateX(3px); }

.voyqa-skip-link {
  position: fixed;
  left: -999px;
  top: 10px;
  z-index: 999;
  padding: .75rem 1rem;
  border-radius: 8px;
  background: var(--voyqa-blue);
  color: #fff;
}
.voyqa-skip-link:focus { left: 12px; }
:focus-visible { outline: 2px solid var(--voyqa-gold); outline-offset: 3px; }

.voyqa-visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 767px) {
  body.voyqa-public { padding: 7px 7px 86px; }
  .voyqa-site-shell { min-height: calc(100vh - 14px); border-radius: 25px; }
  .voyqa-container { width: min(calc(100% - 32px), var(--voyqa-container-max)); }
}

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