/* ================================================================
   AAT KINGS TOURS PTY. LTD.
   Stylesheet — design system
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700&family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Brand colors */
  --primary: #d71720;
  --primary-hover: #b91118;
  --primary-pressed: #810d13;
  --primary-soft: #fdecee;

  --black: #161616;
  --ink: #1a1a1a;
  --dark-grey: #4a4b4d;
  --grey: #6e6e72;
  --light-grey: #a4a4a4;
  --snow: #e8e8ea;
  --off-white: #fafafc;
  --white: #ffffff;
  --cream: #f7f1ea;
  --warm-cream: #f9f4f1;
  --sky: #ecf6fe;
  --sand: #efe6db;
  --accent-blue: #0087c9;
  --accent-yellow: #ffc21e;
  --accent-ochre: #b45314;
  --accent-green: #5b7643;

  /* Typography */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --container-max: 1380px;
  --gutter: 1.5rem;
  --gutter-mobile: 1rem;

  /* Radius */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(22,22,22,0.04);
  --shadow-sm: 0 2px 8px rgba(22,22,22,0.06), 0 1px 3px rgba(22,22,22,0.04);
  --shadow-md: 0 8px 24px rgba(22,22,22,0.08), 0 2px 6px rgba(22,22,22,0.04);
  --shadow-lg: 0 20px 48px rgba(22,22,22,0.14), 0 4px 12px rgba(22,22,22,0.06);
  --shadow-xl: 0 32px 80px rgba(22,22,22,0.2);

  /* Transitions */
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ================================================================
   Reset & Base
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html.disable-scroll { overflow: hidden; }

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
  font-variation-settings: "opsz" 60;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); font-weight: 400; letter-spacing: -0.025em; font-variation-settings: "opsz" 144; }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.85rem); font-weight: 500; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 500; }
h4 { font-size: 1.125rem; font-weight: 600; }

p { margin: 0 0 1rem; }
.lead { font-size: 1.15rem; color: var(--dark-grey); line-height: 1.55; }

::selection { background: var(--primary); color: var(--white); }

/* ================================================================
   Layout
   ================================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
@media (max-width: 768px) {
  .container { padding-inline: var(--gutter-mobile); }
}

.section { padding-block: clamp(3rem, 6vw, 5.5rem); }
.section-tight { padding-block: clamp(1.75rem, 3vw, 2.5rem); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.85rem;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.section-header__title { max-width: 720px; }
.section-header h2 { margin-bottom: 0.5rem; }
.section-header p { color: var(--dark-grey); margin: 0; max-width: 60ch; }

/* ================================================================
   Icons
   ================================================================ */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  fill: currentColor;
  flex-shrink: 0;
}
.icon-lg { width: 1.5em; height: 1.5em; }
.icon-xl { width: 2em; height: 2em; }

/* ================================================================
   Buttons
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.005em;
  white-space: nowrap;
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}
.btn--primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn--primary:hover { background: var(--primary-hover); border-color: var(--primary-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--primary:active { background: var(--primary-pressed); transform: translateY(0); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--white); }

.btn--ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn--ghost-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

.btn--white { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn--white:hover { background: var(--cream); border-color: var(--cream); }

.btn--sm { padding: 0.55rem 1.15rem; font-size: 0.85rem; }
.btn--lg { padding: 1.05rem 2.2rem; font-size: 1rem; }
.btn--block { width: 100%; }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  font-size: 0.95rem;
}
.btn-link .icon { transition: transform 0.2s var(--ease); }
.btn-link:hover .icon { transform: translateX(4px); }

/* ================================================================
   Topbar (announcement)
   ================================================================ */
.topbar {
  background: var(--ink);
  color: var(--white);
  padding: 0.55rem 0;
  font-size: 0.85rem;
  text-align: center;
  letter-spacing: 0.01em;
}
.topbar a { color: var(--accent-yellow); font-weight: 600; margin-left: 0.4rem; display: inline-flex; align-items: center; gap: 0.25rem; }
.topbar a:hover { text-decoration: underline; }

/* ================================================================
   Header
   ================================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--snow);
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.96);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 0.85rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  line-height: 1;
}
.logo__mark {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144;
  line-height: 0.9;
}
.logo__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.logo__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}
.logo__sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  line-height: 1;
}

.nav { display: flex; align-items: center; gap: 1.85rem; }
.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 0.35rem 0;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s var(--ease);
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a.active { color: var(--primary); }

.header__actions { display: flex; align-items: center; gap: 0.5rem; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: all 0.25s var(--ease);
}

@media (max-width: 1024px) {
  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    padding: 1rem 1.5rem 2rem;
    border-bottom: 1px solid var(--snow);
    transform: translateY(-110%);
    transition: transform 0.3s var(--ease);
    box-shadow: var(--shadow-lg);
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 0.95rem 0; border-bottom: 1px solid var(--snow); }
  .nav a:last-child { border-bottom: none; }
  .menu-toggle { display: flex; }
  .header__actions .btn { display: none; }
  .header__actions [data-auth="user"] { display: none !important; }
}

/* ================================================================
   Hero
   ================================================================ */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.25) 35%, rgba(0,0,0,0.78) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: 5rem 3.5rem;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: var(--white);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero__title {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.2vw, 5.4rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 18ch;
  margin-bottom: 1.25rem;
  font-variation-settings: "opsz" 144;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent-yellow);
}
.hero__subtitle {
  font-size: 1.15rem;
  max-width: 52ch;
  margin-bottom: 2.25rem;
  opacity: 0.95;
  line-height: 1.55;
}

.hero--inner { min-height: 420px; }
.hero--inner .hero__content { padding-block: 4.5rem 3rem; }

.hero--compact { min-height: 320px; }
.hero--compact .hero__content { padding-block: 3.5rem 2.5rem; }

/* Hero search panel */
.hero-search {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr auto;
  gap: 0.5rem;
  box-shadow: var(--shadow-xl);
  max-width: 920px;
  align-items: stretch;
}
.hero-search__field {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.55rem 1rem;
  border-right: 1px solid var(--snow);
  min-width: 0;
}
.hero-search__field:last-of-type { border-right: none; }
.hero-search__field label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--grey);
}
.hero-search__field select,
.hero-search__field input {
  border: none;
  outline: none;
  font-size: 0.94rem;
  font-weight: 500;
  background: transparent;
  color: var(--ink);
  padding: 0.15rem 0;
  appearance: none;
  width: 100%;
  cursor: pointer;
}
@media (max-width: 768px) {
  .hero-search { grid-template-columns: 1fr; }
  .hero-search__field { border-right: none; border-bottom: 1px solid var(--snow); }
  .hero-search__field:last-of-type { border-bottom: none; }
}

/* ================================================================
   Destinations Grid
   ================================================================ */
.destinations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1024px) { .destinations { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .destinations { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; } }

.dest-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
  background: var(--cream);
}
.dest-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.dest-card:hover .dest-card__img { transform: scale(1.08); }
.dest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.3) 65%, rgba(0,0,0,0.85) 100%);
}
.dest-card__label {
  position: absolute;
  bottom: 1.4rem;
  left: 1.4rem;
  right: 1.4rem;
  z-index: 1;
  color: var(--white);
}
.dest-card__name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
  line-height: 1.1;
  font-variation-settings: "opsz" 60;
}
.dest-card__count {
  font-size: 0.78rem;
  opacity: 0.9;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* ================================================================
   Tour Cards
   ================================================================ */
.tours {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 1024px) { .tours { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
@media (max-width: 640px) { .tours { grid-template-columns: 1fr; } }

.tour-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--snow);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.2s;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

.tour-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
}
.tour-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.tour-card:hover .tour-card__img { transform: scale(1.06); }
.tour-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary);
  color: var(--white);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.tour-card__badge--sale { background: var(--accent-yellow); color: var(--ink); }
.tour-card__badge--new { background: var(--accent-green); color: var(--white); }
.tour-card__fav {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  padding: 0;
  font-size: 1.1rem;
}
.tour-card__fav:hover { transform: scale(1.1); color: var(--primary); }
.tour-card__fav.active { color: var(--primary); }
.tour-card__fav .icon-fill { display: none; }
.tour-card__fav.active .icon-line { display: none; }
.tour-card__fav.active .icon-fill { display: block; }

.tour-card__body {
  padding: 1.5rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex-grow: 1;
}
.tour-card__route {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.tour-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.18;
  color: var(--ink);
}
.tour-card__desc {
  font-size: 0.92rem;
  color: var(--dark-grey);
  margin: 0;
  line-height: 1.55;
  flex-grow: 1;
}
.tour-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--snow);
  margin-top: 0.6rem;
}
.tour-card__price { display: flex; flex-direction: column; }
.tour-card__price small {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  font-weight: 600;
}
.tour-card__price-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
}
.tour-card__duration {
  margin-left: auto;
  font-size: 0.85rem;
  color: var(--dark-grey);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* ================================================================
   Banner with Mask (offers strip)
   ================================================================ */
.banner {
  display: flex;
  align-items: stretch;
  background: linear-gradient(135deg, var(--sky) 0%, #d4e9f7 100%);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.banner__img {
  width: 320px;
  object-fit: cover;
  flex-shrink: 0;
}
.banner__body {
  padding: 2.25rem 2.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.banner__title { font-family: var(--font-display); font-size: 1.85rem; margin-bottom: 0.5rem; line-height: 1.15; }
.banner__desc { color: var(--dark-grey); margin-bottom: 1.25rem; max-width: 60ch; }

@media (max-width: 768px) {
  .banner { flex-direction: column; }
  .banner__img { width: 100%; height: 220px; }
  .banner__body { padding: 1.75rem 1.5rem; }
}

/* ================================================================
   Features ("why us")
   ================================================================ */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) { .features { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
@media (max-width: 540px) { .features { grid-template-columns: 1fr; } }

.feature {
  text-align: center;
  padding: 2rem 1rem;
}
.feature__icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--snow);
  font-size: 1.85rem;
}
.feature__title { font-size: 1.18rem; margin-bottom: 0.6rem; }
.feature__desc { font-size: 0.95rem; color: var(--dark-grey); margin: 0; line-height: 1.6; }

/* ================================================================
   Stats strip
   ================================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--snow);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--snow);
}
.stat {
  background: var(--white);
  padding: 1.85rem 1.5rem;
  text-align: center;
}
.stat__num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
  font-variation-settings: "opsz" 144;
}
.stat__label {
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 0.5rem;
  font-weight: 600;
}
@media (max-width: 768px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ================================================================
   CTA band
   ================================================================ */
.cta-band {
  background: linear-gradient(135deg, #6b1f0a 0%, #b94011 50%, var(--primary) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.75rem, 4vw, 3.5rem);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,194,30,0.22), transparent 60%);
  pointer-events: none;
}
.cta-band__inner { position: relative; max-width: 720px; }
.cta-band h2 { color: var(--white); }
.cta-band p { opacity: 0.95; max-width: 50ch; }

.newsletter-form {
  display: flex;
  gap: 0.4rem;
  margin-top: 1.75rem;
  max-width: 480px;
  background: var(--white);
  padding: 0.4rem;
  border-radius: 999px;
}
.newsletter-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.7rem 1.1rem;
  background: transparent;
  font-size: 0.95rem;
  color: var(--ink);
}
@media (max-width: 540px) {
  .newsletter-form { flex-direction: column; border-radius: var(--radius-md); }
  .newsletter-form .btn { width: 100%; }
}

/* ================================================================
   Split section (text + image)
   ================================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split--reversed > :first-child { order: 2; }
.split__media {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__floating-stat {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--primary);
  color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.split__floating-stat__num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1;
}
.split__floating-stat__label {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.95;
  margin-top: 0.3rem;
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split--reversed > :first-child { order: 0; }
  .split__floating-stat { right: 1rem; }
}

/* ================================================================
   FAQ accordion
   ================================================================ */
.faq-item {
  background: var(--white);
  border: 1px solid var(--snow);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--ink); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.35rem 1.5rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon { transition: transform 0.25s var(--ease); color: var(--primary); }
.faq-item[open] summary .icon { transform: rotate(45deg); }
.faq-item p { padding: 0 1.5rem 1.5rem; color: var(--dark-grey); margin: 0; }

/* ================================================================
   Forms (auth)
   ================================================================ */
.auth-page {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 900px) { .auth-page { grid-template-columns: 1fr; } }

.auth-page__visual {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: end;
  padding: 3rem;
  color: var(--white);
}
.auth-page__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.75) 100%);
}
.auth-page__visual-content { position: relative; z-index: 1; max-width: 380px; }
.auth-page__visual h2 { color: var(--white); margin-bottom: 0.85rem; }
.auth-page__visual p { opacity: 0.92; margin: 0; }

.auth-page__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  background: var(--white);
}
.auth-page__form-inner { max-width: 460px; width: 100%; margin: 0 auto; }

.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

.form-label {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark-grey);
  margin-bottom: 0.5rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.9rem 1.05rem;
  border: 1.5px solid var(--snow);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}
.form-textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(215, 23, 32, 0.08);
}
.form-input.error, .form-select.error { border-color: var(--primary); }
.form-help { font-size: 0.82rem; color: var(--grey); margin-top: 0.4rem; }
.form-error { font-size: 0.82rem; color: var(--primary); margin-top: 0.4rem; min-height: 1em; font-weight: 500; }

.checkbox-row { display: flex; align-items: start; gap: 0.65rem; font-size: 0.9rem; line-height: 1.5; }
.checkbox-row input[type="checkbox"] { margin-top: 0.2rem; accent-color: var(--primary); width: 16px; height: 16px; flex-shrink: 0; }
.checkbox-row a { color: var(--primary); font-weight: 600; }

.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag-toggle { position: relative; }
.tag-toggle input { position: absolute; opacity: 0; }
.tag-toggle label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border: 1.5px solid var(--snow);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.tag-toggle input:checked + label { background: var(--ink); color: var(--white); border-color: var(--ink); }
.tag-toggle .icon { color: var(--primary); }
.tag-toggle input:checked + label .icon { color: var(--accent-yellow); }

.auth-toggle { text-align: center; margin-top: 1.5rem; font-size: 0.92rem; color: var(--dark-grey); }
.auth-toggle a { color: var(--primary); font-weight: 600; }

.password-strength { height: 4px; background: var(--snow); border-radius: 2px; overflow: hidden; margin-top: 0.5rem; }
.password-strength__bar { height: 100%; width: 0%; background: var(--primary); transition: width 0.3s var(--ease), background 0.3s; }

/* ================================================================
   Account
   ================================================================ */
.account-grid { display: grid; grid-template-columns: 300px 1fr; gap: 2.5rem; }
@media (max-width: 900px) { .account-grid { grid-template-columns: 1fr; } }

.account-side { background: var(--cream); border-radius: var(--radius-md); padding: 2rem; }
.account-avatar {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.account-name { font-family: var(--font-display); font-size: 1.4rem; margin: 0 0 0.25rem; }
.account-email { font-size: 0.9rem; color: var(--dark-grey); margin: 0 0 1.5rem; word-break: break-word; }
.account-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem;
  background: var(--white); border-radius: var(--radius-sm);
  padding: 1.1rem; margin-bottom: 1rem;
}
.account-stat__num { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; color: var(--primary); }
.account-stat__label { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey); font-weight: 600; }

.alert { padding: 1.1rem 1.35rem; border-radius: var(--radius-sm); font-size: 0.92rem; margin-bottom: 1.5rem; border-left: 3px solid; line-height: 1.55; }
.alert--info { background: var(--sky); border-color: var(--accent-blue); }
.alert--success { background: #eef9e8; border-color: var(--accent-green); }
.alert--error { background: var(--primary-soft); border-color: var(--primary); }

/* ================================================================
   Filter chips (tours)
   ================================================================ */
.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; }
.filter-chip {
  padding: 0.55rem 1.15rem;
  background: var(--white);
  border: 1.5px solid var(--snow);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--ink);
  font-family: inherit;
}
.filter-chip:hover { border-color: var(--ink); }
.filter-chip.active { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* ================================================================
   Footer
   ================================================================ */
.footer {
  background: var(--ink);
  color: var(--white);
  padding-block: 4.5rem 2rem;
  margin-top: 4rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.75rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 540px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__brand-line {
  color: var(--light-grey);
  max-width: 36ch;
  margin-top: 1.25rem;
  font-size: 0.92rem;
  line-height: 1.7;
}
.footer__contact { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.65rem; }
.footer__contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer__contact a:hover { color: var(--accent-yellow); }
.footer__contact .icon { color: var(--primary); }

.footer .logo__mark { color: var(--white); }
.footer .logo__name { color: var(--white); }
.footer .logo__sub { color: var(--light-grey); }

.footer__col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  opacity: 0.7;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: 0.7rem; }
.footer__col a { color: var(--light-grey); font-size: 0.92rem; transition: color 0.2s; }
.footer__col a:hover { color: var(--white); }

.footer__legal {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: var(--light-grey);
  font-size: 0.85rem;
}
.footer__legal-text { max-width: 70ch; line-height: 1.7; }
.footer__legal-text strong { color: var(--white); font-weight: 600; }
.footer__legal-text a { color: var(--accent-yellow); font-weight: 500; }
.footer__legal-text a:hover { text-decoration: underline; }

.footer__socials { display: flex; gap: 0.5rem; }
.footer__socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  transition: all 0.2s;
  color: var(--white);
}
.footer__socials a:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-2px); }

/* ================================================================
   Policy / long-form text
   ================================================================ */
.prose { max-width: 760px; }
.prose h2 { margin-top: 2.75rem; margin-bottom: 1rem; font-size: 1.7rem; }
.prose h3 { margin-top: 2rem; margin-bottom: 0.75rem; font-size: 1.25rem; font-weight: 600; }
.prose p { color: var(--dark-grey); line-height: 1.75; margin-bottom: 1.1rem; }
.prose ul { color: var(--dark-grey); line-height: 1.75; padding-left: 1.25rem; margin-bottom: 1.1rem; }
.prose li { margin-bottom: 0.4rem; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--primary); text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }

.prose-toc {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  margin-bottom: 2.5rem;
}
.prose-toc h4 {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.85rem;
  font-weight: 700;
}
.prose-toc ol { padding-left: 1.25rem; margin: 0; columns: 2; column-gap: 2rem; }
.prose-toc li { margin-bottom: 0.4rem; }
.prose-toc a { color: var(--ink); font-weight: 500; }
.prose-toc a:hover { color: var(--primary); }
@media (max-width: 640px) { .prose-toc ol { columns: 1; } }

/* ================================================================
   Contact page
   ================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.contact-card {
  display: flex;
  align-items: start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--snow);
}
.contact-card:last-of-type { border-bottom: none; }
.contact-card__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.contact-card__title { font-weight: 600; margin: 0 0 0.2rem; font-family: var(--font-body); font-size: 1rem; }
.contact-card__value { color: var(--dark-grey); font-size: 0.92rem; line-height: 1.55; }
.contact-card__value a { color: var(--ink); font-weight: 500; }
.contact-card__value a:hover { color: var(--primary); }

/* ================================================================
   Animations
   ================================================================ */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeIn 0.6s ease forwards; }
.fade-up { animation: fadeUp 0.7s var(--ease) forwards; }

.stagger > * { opacity: 0; animation: fadeUp 0.7s var(--ease) forwards; }
.stagger > *:nth-child(1) { animation-delay: 0.05s; }
.stagger > *:nth-child(2) { animation-delay: 0.12s; }
.stagger > *:nth-child(3) { animation-delay: 0.19s; }
.stagger > *:nth-child(4) { animation-delay: 0.26s; }
.stagger > *:nth-child(5) { animation-delay: 0.33s; }
.stagger > *:nth-child(6) { animation-delay: 0.40s; }
.stagger > *:nth-child(7) { animation-delay: 0.47s; }
.stagger > *:nth-child(8) { animation-delay: 0.54s; }

/* Utility */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.hidden { display: none !important; }
.flex-center { display: flex; align-items: center; gap: 0.4rem; }
