/* Horizon Asia Travel — 2026 palette: deep teal, aurora mint, coral accent */
:root {
  --media-min-h: 220px;
  --media-max-h: 400px;
  --media-card-min: 260px;
  --media-card-max: 400px;
  --bg0: #070b12;
  --bg1: #0c1220;
  --surface: rgba(255, 255, 255, 0.06);
  --surface2: rgba(255, 255, 255, 0.1);
  --border: rgba(255, 255, 255, 0.12);
  --text: #e8edf7;
  --muted: #9aa8c3;
  --accent: #ff6b4a;
  --accent2: #2ee6c7;
  --gradient: linear-gradient(125deg, #0d3d4a 0%, #152a62 38%, #1a0f3a 70%, #0f2a28 100%);
  --gradient-soft: linear-gradient(160deg, rgba(46, 230, 199, 0.15), rgba(255, 107, 74, 0.12));
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --font-sans: "Outfit", system-ui, -apple-system, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --step--1: clamp(0.85rem, 0.82rem + 0.2vw, 0.95rem);
  --step-0: clamp(1rem, 0.95rem + 0.35vw, 1.125rem);
  --step-1: clamp(1.2rem, 1.05rem + 0.6vw, 1.45rem);
  --step-2: clamp(1.6rem, 1.25rem + 1.4vw, 2.25rem);
  --step-3: clamp(2.1rem, 1.4rem + 2.4vw, 3.25rem);
  --step-4: clamp(2.6rem, 1.6rem + 3.5vw, 4rem);
  --space: clamp(1rem, 0.6rem + 1.6vw, 2rem);
  --container: min(1440px, 92vw);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg0);
  background-image: var(--gradient);
  background-attachment: fixed;
  min-height: 100vh;
}

.bg-mesh {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 500px at 12% -10%, rgba(46, 230, 199, 0.22), transparent 55%),
    radial-gradient(700px 480px at 88% 10%, rgba(255, 107, 74, 0.18), transparent 50%),
    radial-gradient(600px 400px at 50% 100%, rgba(90, 120, 255, 0.12), transparent 45%);
  opacity: 0.9;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent2);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #7af7e6;
}

.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: absolute;
  left: -999px;
  top: 10px;
  background: #fff;
  color: #000;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  z-index: 9999;
  font-weight: 600;
}

.skip-link:focus {
  left: 10px;
}

.container {
  width: var(--container);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(7, 11, 18, 0.72);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: conic-gradient(from 210deg, var(--accent2), #6b8cff, var(--accent), var(--accent2));
  box-shadow: 0 8px 28px rgba(46, 230, 199, 0.35);
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    filter: brightness(1);
    transform: rotate(0deg);
  }
  50% {
    filter: brightness(1.15);
    transform: rotate(6deg);
  }
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  align-items: center;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--step--1);
  padding: 0.4rem 0.2rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
}

.site-nav a.is-active {
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  border: 1px solid var(--border);
  padding: 0.45rem 1rem !important;
  background: var(--gradient-soft);
}

.nav-cta:hover {
  border-color: rgba(46, 230, 199, 0.45);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.55rem 0.65rem;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  box-shadow: 0 7px 0 var(--text), 0 -7px 0 var(--text);
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }
  .site-nav {
    position: absolute;
    right: 4vw;
    top: calc(100% + 10px);
    background: rgba(12, 18, 32, 0.96);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    min-width: 220px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s, transform 0.25s;
  }
  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
  }
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(4rem, 10vw, 8rem);
  overflow: hidden;
}

.hero--home::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transform: scale(1.03);
  animation: hero-ken 22s ease-in-out infinite alternate;
}

@keyframes hero-ken {
  from {
    transform: scale(1.03) translate(0, 0);
  }
  to {
    transform: scale(1.08) translate(-1%, 1%);
  }
}

.hero--home::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(7, 11, 18, 0.92) 0%, rgba(7, 11, 18, 0.55) 45%, rgba(7, 11, 18, 0.75) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--accent2);
  margin: 0 0 1rem;
  font-weight: 600;
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--step-4);
  line-height: 1.08;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

.hero-title em {
  font-style: italic;
  background: linear-gradient(90deg, #fff, var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  color: var(--muted);
  font-size: var(--step-1);
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-stats strong {
  font-size: var(--step-2);
  font-family: var(--font-display);
}

.hero-stats span:last-child {
  font-size: var(--step--1);
  color: var(--muted);
}

@media (max-width: 640px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: var(--step--1);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent2), #5ad1ff 55%, #8b5bff);
  color: #041018;
  box-shadow: 0 12px 40px rgba(46, 230, 199, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 16px 50px rgba(46, 230, 199, 0.45);
  color: #041018;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: rgba(46, 230, 199, 0.5);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: #0a1020;
}

.btn-light:hover {
  color: #0a1020;
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.25);
}

.section {
  padding: clamp(3rem, 7vw, 5rem) 0;
  position: relative;
  z-index: 1;
}

.section--tint {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
  border-block: 1px solid var(--border);
}

.section--flush-top {
  padding-top: 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: var(--step-3);
  margin: 0 0 0.5rem;
}

.section-head p {
  color: var(--muted);
  margin: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.card--feature {
  position: relative;
  overflow: hidden;
}

.card--feature::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 60%;
  background: radial-gradient(circle at 30% 20%, rgba(46, 230, 199, 0.2), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
}

.card--feature:hover::before {
  opacity: 1;
}

.card-icon {
  font-family: var(--font-display);
  font-size: var(--step-2);
  color: var(--accent2);
  margin-bottom: 0.5rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: var(--step-1);
}

.card p {
  margin: 0;
  color: var(--muted);
}

.dest-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 720px) {
  .dest-preview-grid {
    grid-template-columns: 1fr;
  }
}

.dest-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  color: #fff;
  isolation: isolate;
  aspect-ratio: 4 / 3;
  min-height: var(--media-card-min);
  max-height: var(--media-card-max);
  width: 100%;
}

.dest-card img {
  width: 100%;
  height: 100%;
  min-height: var(--media-card-min);
  max-height: var(--media-card-max);
  object-fit: cover;
  object-position: center;
  position: absolute;
  inset: 0;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}

.dest-card:hover img {
  transform: scale(1.08);
}

.dest-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(7, 11, 18, 0.92));
  z-index: 1;
}

.dest-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border);
}

.dest-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.dest-card-title {
  font-family: var(--font-display);
  font-size: var(--step-2);
}

.dest-card-arrow {
  font-size: 1.5rem;
  opacity: 0.8;
  transition: transform 0.25s;
}

.dest-card:hover .dest-card-arrow {
  transform: translateX(4px);
}

.center {
  text-align: center;
}

.mt-lg {
  margin-top: 2rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.split h2 {
  font-family: var(--font-display);
  font-size: var(--step-3);
  margin: 0 0 1rem;
}

.lead {
  font-size: var(--step-1);
  color: var(--muted);
}

.checklist {
  margin: 1.25rem 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.checklist li {
  margin-bottom: 0.5rem;
}

.split-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.split-media--short img {
  max-height: 520px;
  object-fit: cover;
  width: 100%;
}

.cta-band {
  margin: 0;
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(120deg, rgba(46, 230, 199, 0.12), rgba(139, 91, 255, 0.15));
  box-shadow: var(--shadow);
}

.cta-inner h2 {
  font-family: var(--font-display);
  margin: 0 0 0.35rem;
}

.cta-inner p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
  margin-top: 2rem;
  background: rgba(5, 8, 14, 0.85);
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand strong {
  display: block;
  font-size: var(--step-1);
  margin-bottom: 0.35rem;
}

.footer-brand p {
  color: var(--muted);
  margin: 0 0 0.75rem;
  font-size: var(--step--1);
}

.footer-note {
  font-size: 0.75rem !important;
  line-height: 1.5;
}

.footer-heading {
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 0.75rem;
  color: var(--muted);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
  display: inline-block;
  padding: 0.25rem 0;
}

.footer-links a:hover {
  color: var(--accent2);
}

.footer-address {
  font-style: normal;
  color: var(--muted);
  font-size: var(--step--1);
  line-height: 1.6;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-legal {
  max-width: 520px;
  margin: 0;
}

.footer-legal a {
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem;
  pointer-events: none;
}

.cookie-banner:not([hidden]) {
  pointer-events: auto;
}

.cookie-inner {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(12, 18, 32, 0.96);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
  animation: slide-up 0.45s ease;
}

@keyframes slide-up {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-title {
  margin: 0 0 0.35rem;
  font-size: var(--step-1);
}

.cookie-inner p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: var(--step--1);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.page-hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0 1rem;
}

.page-hero--sm .page-title {
  font-family: var(--font-display);
  font-size: var(--step-3);
  margin: 0 0 0.75rem;
}

.page-intro {
  color: var(--muted);
  max-width: 720px;
  margin: 0;
}

.dest-grid-full {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.dest-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}

@media (max-width: 800px) {
  .dest-row {
    grid-template-columns: 1fr;
  }
}

.dest-row-media {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 4 / 3;
  min-height: var(--media-min-h);
  max-height: var(--media-max-h);
  width: 100%;
}

.dest-row-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: var(--media-min-h);
  max-height: var(--media-max-h);
  object-fit: cover;
  object-position: center;
}

.dest-row-body h2 {
  margin: 0.5rem 0;
  font-family: var(--font-display);
  font-size: var(--step-2);
}

.dest-row-body h2 a {
  color: var(--text);
  text-decoration: none;
}

.dest-row-body h2 a:hover {
  color: var(--accent2);
}

.dest-row-body p {
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--accent2);
}

.text-link {
  font-weight: 600;
  text-decoration: none;
  color: var(--accent2);
}

.text-link:hover {
  text-decoration: underline;
}

.dest-hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5rem) 0;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
}

.dest-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 11, 18, 0.92), rgba(7, 11, 18, 0.55));
}

.dest-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.dest-hero-title {
  font-family: var(--font-display);
  font-size: var(--step-4);
  margin: 0.5rem 0;
}

.dest-hero-lead {
  color: var(--muted);
  font-size: var(--step-1);
  margin: 0;
}

.prose {
  max-width: 720px;
}

.prose.narrow {
  max-width: 640px;
  margin-inline: auto;
}

.prose h2,
.prose h3 {
  font-family: var(--font-display);
}

.prose p,
.prose li {
  color: var(--muted);
}

.legal h2 {
  margin-top: 2rem;
  font-size: var(--step-1);
}

.package-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.package-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  align-items: stretch;
}

@media (max-width: 860px) {
  .package-card {
    grid-template-columns: 1fr;
  }
}

.package-card-media {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  max-height: var(--media-max-h);
  aspect-ratio: 4 / 3;
}

.package-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 260px;
  max-height: var(--media-max-h);
  object-fit: cover;
  object-position: center;
}

@media (min-width: 861px) {
  .package-card-media {
    aspect-ratio: auto;
    min-height: 100%;
    max-height: none;
    height: 100%;
    align-self: stretch;
  }

  .package-card-media img {
    min-height: 0;
    max-height: none;
  }
}

.package-card-body {
  padding: 1.75rem;
}

.package-price {
  font-weight: 700;
  color: var(--accent2);
  margin: 0.25rem 0 1rem;
}

.package-list {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  color: var(--muted);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 0.85rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card h2,
.contact-form-wrap h2 {
  font-family: var(--font-display);
  margin-top: 0;
}

.mt-md {
  margin-top: 1rem;
}

.contact-form .form-row {
  margin-bottom: 1rem;
}

.contact-form label {
  display: block;
  font-size: var(--step--1);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(46, 230, 199, 0.45);
  outline-offset: 2px;
}

.alert-error {
  background: rgba(255, 107, 74, 0.12);
  border: 1px solid rgba(255, 107, 74, 0.35);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  color: #ffc7bc;
}

.alert-error ul {
  margin: 0;
  padding-left: 1.1rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.25rem 1rem;
  background: var(--surface);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.75rem 0;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}
