/* ============================================================
   Travels by Anju — travelsbyanju.com
   Brand: Midnight Blue #0B1D3A · Smokey Blue #4C6A85 · Gold #D4AF37
          Pearl Beige #EFE6DA · Slate Mist #8FA1B1 · Royal Plum #6E4C7A
   Type:  Poppins (clean) + Great Vibes (script accent)
   ============================================================ */

:root {
  --navy: #0B1D3A;
  --smoke: #4C6A85;
  --gold: #D4AF37;
  --gold-deep: #b8952b;
  --pearl: #EFE6DA;
  --pearl-light: #f7f2ea;
  --mist: #8FA1B1;
  --plum: #6E4C7A;
  --indigo: #4B3C6D;
  --ink: #35465e;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(11, 29, 58, 0.12);
  --radius: 14px;
  --font-clean: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --font-script: "Great Vibes", cursive;
}

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

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  overflow-x: clip;
  font-family: var(--font-clean);
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--smoke); text-decoration: none; }
a:hover { color: var(--navy); }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

section { padding: 96px 0; }

/* ---------- type helpers ---------- */

.eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}

h1, h2, h3 { color: var(--navy); font-weight: 500; line-height: 1.2; }

h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 400; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }

.script { font-family: var(--font-script); font-weight: 400; }

.lead { font-size: 1.08rem; max-width: 46em; color: var(--ink); }

.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* gold line + plane divider (brand element) */
.divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 26px;
  color: var(--gold);
}
.center .divider { justify-content: center; }
.divider::before, .divider::after {
  content: "";
  height: 1px;
  width: 64px;
  background: var(--gold);
  opacity: 0.8;
}
.divider svg { flex: none; }

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 999px;
  font-family: var(--font-clean);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 10px 26px rgba(212, 175, 55, 0.35);
}
.btn-gold:hover { background: #dfbf55; color: var(--navy); }

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--white);
  background: transparent;
}
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.12); color: var(--white); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(11, 29, 58, 0.28);
}
.btn-navy:hover { background: #14294d; color: var(--white); }

.text-link {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.text-link:hover { color: var(--navy); }

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

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 24px rgba(11, 29, 58, 0.10);
  padding: 8px 0;
  backdrop-filter: blur(8px);
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: auto; }
.brand-text { line-height: 1.1; }
.brand-text .top {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s ease;
}
.brand-text .name {
  font-family: var(--font-script);
  font-size: 1.7rem;
  color: var(--white);
  transition: color 0.3s ease;
}
.nav.scrolled .brand-text .top,
.nav.scrolled .brand-text .name { color: var(--navy); }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav.scrolled .nav-links a { color: var(--navy); }
.nav.scrolled .nav-links a:hover { color: var(--gold-deep); }

.nav-cta {
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 600;
}
.nav-cta:hover { background: #dfbf55; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 44px; height: 44px;
  cursor: pointer;
  position: relative;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  margin: 6px auto;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.3s ease;
}
.nav.scrolled .nav-toggle span, .nav.open .nav-toggle span { background: var(--navy); }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0s 0.3s;
  }
  .nav.open .nav-links { transform: translateX(0); visibility: visible; transition: transform 0.3s ease; }
  .nav-links a { color: var(--navy) !important; font-size: 1rem; }
  .nav.open { background: transparent; box-shadow: none; }
}

/* ---------- hero ---------- */

html:not(.js) .hero { min-height: 720px; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 140px 0 110px;
  background: var(--navy);
}

.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 2.2s ease;
}
.hero-slide.active {
  opacity: 1;
  animation: kenburns 9s ease-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 29, 58, 0.62) 0%, rgba(11, 29, 58, 0.42) 45%, rgba(11, 29, 58, 0.78) 100%);
}

.hero-content { position: relative; z-index: 2; max-width: 820px; padding: 0 24px; }

.hero .eyebrow { color: var(--gold); }

.hero h1 {
  color: var(--white);
  font-weight: 300;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.hero h1 .script {
  display: block;
  font-size: clamp(3.4rem, 8vw, 6rem);
  color: var(--gold);
  line-height: 1.15;
  margin-top: 4px;
  text-shadow: 0 4px 30px rgba(11, 29, 58, 0.45);
}

.hero p.sub {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
  font-weight: 300;
  max-width: 40em;
  margin: 22px auto 34px;
}

.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero .trust {
  margin-top: 42px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.hero .trust strong { color: var(--gold); font-weight: 600; }

.hero-scroll {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.8);
  font-size: 1.4rem;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ---------- services ---------- */

.services { background: var(--white); }

.svc-list {
  display: flex;
  flex-direction: column;
  gap: 88px;
  margin-top: 72px;
}

.svc-row {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  text-align: left;
}
.svc-row:nth-child(even) .svc-photo { order: 2; }

.svc-photo {
  position: relative;
  border-radius: var(--radius);
}
.svc-photo::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: var(--radius);
  pointer-events: none;
}
.svc-row:nth-child(even) .svc-photo::after { inset: 18px 18px -18px -18px; }
.svc-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}

.svc-num {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold-deep);
  margin-bottom: 8px;
}
.svc-copy h3 { font-size: 1.65rem; font-weight: 400; margin-bottom: 8px; }
.svc-copy .best {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--smoke);
  margin-bottom: 14px;
}
.svc-copy .desc { font-size: 0.98rem; margin-bottom: 20px; max-width: 36em; }

.svc-copy ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 26px;
  margin-bottom: 22px;
}
.svc-copy li {
  font-size: 0.88rem;
  padding-left: 24px;
  position: relative;
}
.svc-copy li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 13px; height: 13px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23D4AF37'%3E%3Cpath d='M21.4 3.6c.6-.6.2-1.7-.7-1.6l-4.6.5L3.5 9.2c-.6.3-.5 1.2.1 1.4l4.3 1.5 8.5-6.5-6.5 7.5 1.5 4.8c.2.7 1.1.8 1.4.1l2.6-5.4 6-8.9z'/%3E%3C/svg%3E") no-repeat center / contain;
}

.svc-foot {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(143, 161, 177, 0.3);
  max-width: 30em;
}
.svc-foot .fee {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--plum);
}
.svc-foot .text-link { white-space: nowrap; }

@media (max-width: 820px) {
  .svc-list { gap: 64px; }
  .svc-row { grid-template-columns: 1fr; gap: 26px; }
  .svc-row:nth-child(even) .svc-photo { order: 0; }
  .svc-photo::after, .svc-row:nth-child(even) .svc-photo::after { inset: 12px -10px -12px 10px; }
  .svc-copy ul { grid-template-columns: 1fr; }
}

/* ---------- perks band ---------- */

.perks {
  background: linear-gradient(135deg, var(--navy) 0%, #12294e 60%, var(--indigo) 130%);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}
.perks h2 { color: var(--white); }
.perks h2 .script { color: var(--gold); font-size: 1.4em; }
.perks .lead { color: rgba(255, 255, 255, 0.88); margin: 0 auto 34px; }

.chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.chip {
  padding: 10px 22px;
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 999px;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  color: var(--pearl);
}
.perks .fine {
  margin-top: 26px;
  font-size: 0.78rem;
  color: var(--mist);
  letter-spacing: 0.04em;
}

/* ---------- quote bands (testimonials, woven in) ---------- */

.quote-band { background: var(--pearl-light); text-align: center; padding: 78px 0; }
.quote-band.on-white { background: var(--white); }
.quote-band .mark {
  font-family: var(--font-script);
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.4;
  display: block;
  margin-bottom: 26px;
}
.quote-band blockquote {
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 300;
  color: var(--navy);
  max-width: 34em;
  margin: 0 auto 20px;
  line-height: 1.6;
}
.quote-band cite {
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--smoke);
}
.placeholder-note {
  display: block;
  margin-top: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--gold-deep);
  font-style: italic;
}

/* ---------- process ---------- */

.process { background: var(--pearl); }

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
  margin-top: 64px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 27px; left: 8%; right: 8%;
  border-top: 2px dashed rgba(212, 175, 55, 0.6);
}
.step { position: relative; text-align: center; padding: 0 6px; }
.step .num {
  width: 54px; height: 54px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-weight: 600;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 20px rgba(11, 29, 58, 0.25);
}
.step:last-child .num { background: var(--gold); color: var(--navy); }
.step h3 { font-size: 1.02rem; }
.step p { font-size: 0.87rem; }

@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .steps::before { display: none; }
  .step { text-align: left; display: grid; grid-template-columns: 54px 1fr; gap: 18px; }
  .step .num { margin: 0; }
  .step h3 { margin-top: 12px; }
  .step p { grid-column: 2; }
}

.process-note { text-align: center; margin-top: 48px; font-size: 0.95rem; }

/* ---------- about ---------- */

.about { background: var(--white); overflow: hidden; }

.about-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 70px;
  align-items: center;
}

.about-photos { position: relative; padding: 30px 30px 90px 0; }
.about-photos::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 240px; height: 240px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  opacity: 0.5;
}
.about-photos .main {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}
.about-photos .inset {
  position: absolute;
  bottom: 0;
  right: -10px;
  width: 62%;
  border-radius: var(--radius);
  border: 6px solid var(--white);
  box-shadow: var(--shadow);
  z-index: 2;
}

.about-copy h2 { margin-bottom: 8px; }
.about-copy .script-sub {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 20px;
}
.about-copy p { margin-bottom: 18px; }

.style-card {
  background: var(--pearl-light);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 26px 28px;
  margin: 28px 0;
}
.style-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.style-card p { font-size: 0.94rem; margin: 0; }

.signature { margin-top: 30px; }
.signature .name { font-family: var(--font-script); font-size: 3rem; color: var(--navy); line-height: 1; }
.signature .role {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-top: 6px;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-photos { max-width: 420px; margin: 0 auto; }
}

/* ---------- gallery marquee ---------- */

.gallery { background: var(--pearl); padding: 90px 0 96px; overflow: hidden; }
.gallery .head { margin-bottom: 46px; }
.gallery .script-line {
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--gold-deep);
}

.marquee { display: flex; gap: 18px; width: max-content; animation: marquee 60s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.marquee img {
  height: 240px;
  width: auto;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(11, 29, 58, 0.15);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 700px) { .marquee img { height: 170px; } }

/* ---------- faqs ---------- */

.faqs { background: var(--white); }
.faq-list { max-width: 780px; margin: 50px auto 0; }

details {
  border-bottom: 1px solid rgba(143, 161, 177, 0.3);
}
details summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 4px;
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--navy);
  position: relative;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: "+";
  position: absolute;
  right: 8px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.25s ease;
}
details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
details .answer { padding: 0 4px 24px; font-size: 0.95rem; max-width: 44em; }
details .answer p { margin-bottom: 12px; }
details .answer p:last-child { margin-bottom: 0; }

/* ---------- contact ---------- */

.contact { background: var(--pearl); }

.intake-card {
  background: linear-gradient(140deg, var(--navy), #16305a);
  color: var(--white);
  border-radius: var(--radius);
  padding: 46px 44px;
  box-shadow: var(--shadow);
}
.intake-card h3 { color: var(--white); font-size: 1.5rem; }
.intake-card p { font-size: 0.98rem; color: rgba(255, 255, 255, 0.85); margin: 12px 0 26px; }

.intake-center {
  max-width: 680px;
  margin: 50px auto 0;
  text-align: center;
}

.direct-lead {
  text-align: center;
  margin-top: 44px;
  font-size: 0.95rem;
  color: var(--smoke);
}

.direct { list-style: none; }
.direct-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 46px;
  margin-top: 20px;
}
.direct-row li { margin-bottom: 0; }
.direct li { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; font-size: 0.96rem; }
.direct .ico {
  width: 42px; height: 42px;
  flex: none;
  border-radius: 50%;
  background: var(--white);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(11, 29, 58, 0.12);
}
.direct a { color: var(--navy); font-weight: 500; }
.direct a:hover { color: var(--gold-deep); }
.direct .label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--smoke);
}

@media (max-width: 700px) {
  .direct-row { flex-direction: column; align-items: center; }
  .direct-row li { justify-content: center; }
}

/* ---------- pre-footer CTA ---------- */

.cta-band {
  position: relative;
  background: url("img/cta-aerial.jpg") center 40% / cover no-repeat;
  text-align: center;
  padding: 130px 0;
  color: var(--white);
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 29, 58, 0.72), rgba(11, 29, 58, 0.6));
}
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band .script-line {
  font-family: var(--font-script);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.cta-band h2 { color: var(--white); font-weight: 300; margin-bottom: 34px; }

/* ---------- footer ---------- */

footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  padding: 74px 0 0;
  font-size: 0.92rem;
}

.foot-grid {
  display: grid;
  grid-template-columns: 4fr 3fr 3fr;
  gap: 50px;
  padding-bottom: 54px;
}

.foot-brand img { height: 64px; margin-bottom: 16px; }
.foot-brand .foot-word {
  line-height: 1.1;
  margin-bottom: 14px;
}
.foot-brand .foot-word .top {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--white);
}
.foot-brand .foot-word .name {
  font-family: var(--font-script);
  font-size: 2.3rem;
  color: var(--white);
}
.foot-brand .tagline {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 18px;
}
.foot-brand .fora-note { font-size: 0.82rem; color: var(--mist); max-width: 30em; }
.foot-brand .fora-note strong { color: var(--pearl); font-weight: 500; }

footer h4 {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
footer h4::after {
  content: "";
  display: block;
  width: 30px;
  border-top: 2px solid var(--gold);
  margin-top: 8px;
}

.foot-links { list-style: none; }
.foot-links li { margin-bottom: 11px; }
.foot-links a { color: rgba(255, 255, 255, 0.82); }
.foot-links a:hover { color: var(--gold); }

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--mist);
}
.foot-bottom a { color: var(--mist); }
.foot-bottom a:hover { color: var(--gold); }
.foot-bottom .fora-mark {
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--pearl);
}

@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- reveal on scroll (gated on html.js so no-JS visitors see everything) ---------- */

html.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
html.js .reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-slide.active { animation: none; }
  .marquee { animation: none; flex-wrap: wrap; width: auto; }
  .hero-scroll { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
