/* TapTravel.gr — stylesheet
   Rebuilt from the design-tool mockup's inline styles into real, responsive CSS.
   See docs/decisions.md for why. */

:root {
  --acc1: #FFB000;
  --acc2: #FF4D00;
  --blur: 16px;
  --bg: #FDFDFC;
  --bg-alt: #FAF8F5;
  --text: #171310;
  --text-muted: #4A443D;
  --text-faint: #857C71;
  --border: rgba(23, 19, 16, 0.08);
  --border-soft: rgba(23, 19, 16, 0.06);
  --shadow-soft: 0 6px 24px rgba(23, 19, 16, 0.05);
  --radius-lg: 26px;
  --radius-xl: 30px;
  --container: 1200px;
}

* { box-sizing: border-box; }

/* Author rules that set `display` on the same element as the `hidden` attribute (e.g.
   `.gallery-grid{display:grid}`) win the cascade over the UA stylesheet's
   `[hidden]{display:none}`, since author origin always beats user-agent origin regardless
   of specificity — silently un-hiding "hidden" elements. Force it back. */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Commissioner', 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--text); text-decoration: none; transition: color .18s ease; }
a:hover { color: #FF5A00; }

::placeholder { color: #B9B1A8; }
::selection { background: #FFE1CC; }

.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: 12px; top: -60px; z-index: 100;
  background: var(--text); color: #fff; padding: 10px 18px; border-radius: 10px;
  font-weight: 700; font-size: 14px; transition: top .2s ease;
}
.skip-link:focus { top: 12px; color: #fff; }

.gradient-text {
  background: linear-gradient(135deg, var(--acc1), var(--acc2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.eyebrow {
  font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border: none; border-radius: 999px; font-family: inherit; font-weight: 800;
  cursor: pointer; text-align: center; transition: transform .18s ease, box-shadow .18s ease, color .18s ease;
}
.btn-primary {
  padding: 18px 36px; background: linear-gradient(135deg, var(--acc1), var(--acc2));
  color: #fff; font-size: 17px; box-shadow: 0 10px 30px rgba(255, 90, 0, .4);
}
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 14px 38px rgba(255, 90, 0, .5); }
.btn-secondary {
  padding: 18px 32px; background: rgba(255,255,255,.85); border: 1px solid var(--border);
  color: var(--text); font-size: 17px; font-weight: 700;
}
.btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(23,19,16,.12); }

/* ================= NAV ================= */
.nav {
  position: fixed; top: 18px; left: 50%; transform: translateX(-50%); z-index: 100;
  display: flex; align-items: center; gap: 24px;
  padding: 10px 12px 10px 20px; border-radius: 999px;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(var(--blur)) saturate(1.5);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(1.5);
  border: 1px solid var(--border); box-shadow: 0 8px 32px rgba(23,19,16,.1);
  max-width: calc(100vw - 24px);
}
.nav__logo img { height: 34px; width: auto; }
.nav__links { display: flex; gap: 20px; font-size: 14px; font-weight: 600; white-space: nowrap; }
.nav__cta { padding: 10px 20px; font-size: 14px; box-shadow: 0 4px 14px rgba(255,90,0,.35); }
.nav__toggle {
  display: none; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border);
  background: rgba(255,255,255,.9); cursor: pointer; flex: none;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ''; display: block; width: 16px; height: 2px; background: var(--text);
  position: relative; transition: transform .2s ease, opacity .2s ease;
}
.nav__toggle span::before { position: absolute; top: -5px; }
.nav__toggle span::after { position: absolute; top: 5px; }
.nav.is-open .nav__toggle span { background: transparent; }
.nav.is-open .nav__toggle span::before { transform: translateY(5px) rotate(45deg); }
.nav.is-open .nav__toggle span::after { transform: translateY(-5px) rotate(-45deg); }

.nav__panel { display: none; }

.lang-switch { display: flex; border-radius: 999px; border: 1px solid var(--border); overflow: hidden; font-size: 12px; font-weight: 800; flex: none; }
.lang-switch a { padding: 7px 14px; color: var(--text-faint); }
.lang-switch a.is-active { background: var(--text); color: #fff; }
.lang-switch a:hover { color: var(--text); }
.lang-switch a.is-active:hover { color: #fff; }

@media (max-width: 780px) {
  .nav { gap: 12px; padding: 8px 8px 8px 16px; }
  .nav__links { display: none; }
  .nav__cta span.long { display: none; }
  .nav__toggle { display: flex; }
  .nav__panel {
    display: none; position: fixed; top: 76px; left: 12px; right: 12px; z-index: 99;
    background: rgba(255,255,255,.96); backdrop-filter: blur(var(--blur));
    border: 1px solid var(--border); border-radius: 22px; box-shadow: 0 20px 50px rgba(23,19,16,.16);
    padding: 10px; flex-direction: column; gap: 2px;
  }
  .nav.is-open .nav__panel { display: flex; }
  .nav__panel a { padding: 14px 16px; font-weight: 700; border-radius: 14px; font-size: 15px; }
  .nav__panel a:hover, .nav__panel a:active { background: rgba(23,19,16,.05); }
}

/* ================= HERO ================= */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding: 130px 6vw 60px; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg-scrim { position: absolute; inset: 0; background: linear-gradient(60deg, var(--bg), var(--bg), rgba(250,249,245,.97), rgba(250,249,245,.22)); }
.hero__grid {
  position: relative; z-index: 2; width: 100%; max-width: 1320px; margin: 40px auto 0;
  display: grid; grid-template-columns: minmax(320px, 560px) 1fr; gap: 40px; align-items: center;
}
.hero__panel { min-width: 0; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; border-radius: 999px;
  background: rgba(255,255,255,.8); border: 1px solid var(--border); font-size: 13px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
}
.hero__badge-dot { width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(135deg, var(--acc1), var(--acc2)); }
.hero__title {
  margin: 22px 0 0; font-size: clamp(40px, 5.6vw, 84px); line-height: .98; font-weight: 900; letter-spacing: -.04em;
}
.hero__title span { display: block; }
.hero__title .line1 { color: var(--text); font-weight: 600; }
.hero__title .line2 { font-weight: 800; }
.hero__sub {
  margin: 28px 0 34px; max-width: 460px; font-size: 19px; line-height: 1.55; font-weight: 500;
  color: var(--text-muted); text-wrap: pretty;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__pills { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 30px; }
.hero__pill {
  padding: 7px 16px; border-radius: 999px; background: rgba(23,19,16,.04); border: 1px solid var(--border-soft);
  font-size: 13px; font-weight: 600; color: var(--text-muted);
}

.hero__cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px; width: 100%; max-width: 520px; justify-self: center;
}
.hero-card {
  position: relative; aspect-ratio: 4 / 5; border-radius: 24px; overflow: hidden;
  border: 5px solid rgba(255,255,255,.9); box-shadow: 0 18px 44px rgba(23,19,16,.16);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; cursor: default;
}
.hero-card:hover { transform: translateY(-8px) scale(1.03); box-shadow: 0 26px 56px rgba(255,90,0,.28); border-color: #FF6A00; }
.hero-card--transfer { margin-top: 0; }
.hero-card--stay { margin-top: 34px; }
.hero-card--experience { margin-top: 34px; grid-column: 2; grid-row: 1 / 3; aspect-ratio: auto; }
.hero-card__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.15) 45%, rgba(0,0,0,.8) 100%); pointer-events: none; }
.hero-card__body { position: absolute; inset: 0; padding: 18px; display: flex; flex-direction: column; justify-content: space-between; color: #fff; }
.hero-card__icon {
  width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(135deg, var(--acc1), var(--acc2));
  display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 16px rgba(0,0,0,.25);
}
.hero-card__eyebrow { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.75); }
.hero-card__value { font-size: 19px; font-weight: 800; letter-spacing: -.01em; margin-top: 2px; }
.hero-card__ripple { position: absolute; bottom: 18px; right: 18px; width: 32px; height: 32px; }
.hero-card__ripple-pulse { position: absolute; inset: 0; border-radius: 50%; background: rgba(255,140,0,.45); animation: ttPulse 2.2s ease-out infinite; }
.hero-card__ripple-dot { position: absolute; inset: 8px; border-radius: 50%; background: linear-gradient(135deg, var(--acc1), var(--acc2)); }

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; margin-top: 96px; }
  .hero__cards { max-width: 460px; margin: 40px auto 0; justify-self: center; }
}
@media (max-width: 480px) {
  .hero { padding-top: 110px; }
  .hero__cards { grid-template-columns: 1fr 1fr; gap: 12px; }
}

/* ================= PLACEHOLDER PHOTO TILES ================= */
.ph-tile {
  position: relative; width: 100%; height: 100%; min-height: 90px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(150deg, rgba(255,176,0,.14), rgba(255,77,0,.10));
  border: 1px dashed rgba(255,90,0,.35); color: #A2431B; text-align: center; padding: 10px;
}
.ph-tile__icon { width: 30px; height: 30px; opacity: .55; flex: none; }
.ph-tile__label { font-size: 12px; font-weight: 700; line-height: 1.3; opacity: .85; }
.hero-card .ph-tile { border-radius: inherit; }
/* Hero cards always show a white caption over the image area (for real photos, the dark
   scrim gives contrast). With no photo yet, skip the scrim and use an opaque brand-gradient
   tile instead so the caption stays legible without a photo to darken. */
.hero-card--placeholder .hero-card__scrim { display: none; }
.hero-card--placeholder .ph-tile {
  background: linear-gradient(155deg, var(--acc1), var(--acc2)); border: none; color: rgba(255,255,255,.92);
}
.hero-card--placeholder .ph-tile__icon { opacity: .8; }

/* ================= SECTION SHARED ================= */
.section { padding: 100px 24px; }
.section-alt { background: var(--bg-alt); }
.container { max-width: var(--container); margin: 0 auto; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head h2 { margin: 14px 0 14px; font-size: clamp(32px, 4.5vw, 52px); font-weight: 900; letter-spacing: -.03em; line-height: 1.05; text-wrap: balance; }
.section-head p { margin: 0; font-size: 17px; line-height: 1.6; color: var(--text-muted); font-weight: 500; text-wrap: pretty; }

/* ================= GALLERY ================= */
.filters { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.filter-btn {
  padding: 12px 26px; border-radius: 999px; font-family: inherit; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all .2s ease; border: 1px solid var(--border);
  background: rgba(255,255,255,.75); backdrop-filter: blur(var(--blur)); color: var(--text);
}
.filter-btn.is-active {
  border-color: transparent; background: linear-gradient(135deg, var(--acc1), var(--acc2));
  color: #fff; box-shadow: 0 8px 24px rgba(255,90,0,.35);
}
.gallery-grid { display: grid; grid-template-columns: minmax(300px, 5fr) 7fr; gap: 40px; align-items: center; }
.gallery-text { min-width: 0; }
.gallery-text h3 { margin: 0 0 14px; font-size: clamp(24px, 3vw, 34px); font-weight: 800; letter-spacing: -.025em; line-height: 1.12; text-wrap: balance; }
.gallery-text p { margin: 0 0 26px; font-size: 16px; line-height: 1.65; color: var(--text-muted); font-weight: 500; text-wrap: pretty; }
.feature-list { display: flex; flex-direction: column; gap: 14px; }
.feature-item { display: flex; align-items: flex-start; gap: 12px; }
.feature-check {
  flex: none; width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg, var(--acc1), var(--acc2));
  color: #fff; font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.feature-item span:last-child { font-size: 15px; line-height: 1.5; font-weight: 600; }

.gallery-images {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 300px 190px; gap: 14px; min-width: 0;
}
.gallery-slot { position: relative; overflow: hidden; min-width: 0; min-height: 0; border-radius: 22px; }
.gallery-slot--wide { grid-column: 1 / -1; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-images { grid-template-rows: 220px 150px; }
}
@media (max-width: 480px) {
  .gallery-images { grid-template-rows: 180px 130px; gap: 10px; }
}

/* ================= WHY US / PILLARS ================= */
.pillars-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; perspective: 1400px; }
.pillar-card {
  padding: 34px 28px; border-radius: var(--radius-lg); background: rgba(255,255,255,.9);
  backdrop-filter: blur(var(--blur)); border: 1px solid var(--border-soft); box-shadow: 0 18px 50px rgba(23,19,16,.1);
  transform-style: preserve-3d;
}
.pillar-card:hover { box-shadow: 0 26px 64px rgba(255,90,0,.16); }
.pillar-num { font-size: 15px; font-weight: 900; letter-spacing: .06em; }
.pillar-card h3 { margin: 14px 0 10px; font-size: 20px; font-weight: 800; letter-spacing: -.02em; }
.pillar-card p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--text-muted); font-weight: 500; }

/* ================= TESTIMONIALS ================= */
.testimonials-viewport { overflow: hidden; padding: 12px 24px; max-width: var(--container); margin: 0 auto; }
.testimonials-track { display: flex; gap: 18px; will-change: transform; }
.testimonial-card {
  flex: none; width: 340px; padding: 28px; border-radius: var(--radius-lg); background: rgba(255,255,255,.85);
  backdrop-filter: blur(var(--blur)); border: 1.5px solid var(--border-soft); box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; gap: 16px; transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
.testimonial-card:hover { border-color: var(--acc2); box-shadow: 0 16px 44px rgba(255,90,0,.18); transform: translateY(-4px); }
.testimonial-stars { color: #FF7A1A; font-size: 15px; letter-spacing: 3px; }
.testimonial-text { margin: 0; font-size: 15px; line-height: 1.6; font-weight: 500; color: #322D27; text-wrap: pretty; }
.testimonial-who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar-initials {
  width: 46px; height: 46px; border-radius: 50%; flex: none; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--acc1), var(--acc2)); color: #fff; font-weight: 800; font-size: 15px;
}
.testimonial-name { font-size: 15px; font-weight: 800; }
.testimonial-meta { font-size: 13px; font-weight: 600; color: var(--text-faint); }

@media (max-width: 700px) {
  .testimonial-card { width: 280px; }
}

/* ================= FAQ ================= */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 760px; margin: 0 auto; }
.faq-item {
  border-radius: var(--radius-lg); background: rgba(255,255,255,.85); backdrop-filter: blur(var(--blur));
  border: 1px solid var(--border-soft); box-shadow: 0 4px 18px rgba(23,19,16,.04); overflow: hidden;
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%;
  padding: 22px 26px; background: none; border: none; cursor: pointer; font-family: inherit;
  font-size: 17px; font-weight: 700; color: var(--text); text-align: left;
}
.faq-icon {
  flex: none; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; transition: transform .25s ease, background .2s ease, color .2s ease;
  background: rgba(23,19,16,.05); color: var(--text);
}
.faq-item.is-open .faq-icon { background: linear-gradient(135deg, var(--acc1), var(--acc2)); color: #fff; transform: rotate(45deg); }
.faq-answer { max-height: 0; opacity: 0; overflow: hidden; transition: max-height .3s ease, opacity .3s ease; }
.faq-item.is-open .faq-answer { max-height: 400px; opacity: 1; }
.faq-answer p { margin: 0; padding: 0 26px 24px; font-size: 15px; line-height: 1.65; color: var(--text-muted); font-weight: 500; text-wrap: pretty; }

@media (max-width: 600px) {
  .faq-question { padding: 18px 20px; font-size: 15px; }
  .faq-answer p { padding: 0 20px 20px; }
}

/* ================= CONTACT / LEAD FORM ================= */
.contact-wrap { max-width: 560px; margin: 0 auto; text-align: center; }
.lead-card {
  text-align: left; padding: 36px 34px; border-radius: var(--radius-xl); background: rgba(255,255,255,.8);
  backdrop-filter: blur(var(--blur)) saturate(1.4); border: 1px solid var(--border-soft); box-shadow: 0 18px 60px rgba(23,19,16,.08);
}
.lead-card__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.lead-card__stepnum { font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--text-faint); }
.lead-card__steplabel { font-size: 14px; font-weight: 800; }
.progress-bar { height: 6px; border-radius: 999px; background: rgba(23,19,16,.07); overflow: hidden; margin-bottom: 30px; }
.progress-bar__fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--acc1), var(--acc2)); transition: width .4s ease; width: 25%; }

.form-step { display: none; flex-direction: column; gap: 14px; animation: ttStepIn .35s ease both; }
.form-step.is-active { display: flex; }
.form-step input[type="text"], .form-step input[type="tel"], .form-step input[type="email"] {
  padding: 17px 22px; border-radius: 18px; border: 1px solid rgba(23,19,16,.12); background: rgba(255,255,255,.95);
  font-family: inherit; font-size: 15px; font-weight: 600; color: var(--text); outline: none; width: 100%;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.form-step input:focus { border-color: var(--acc2); box-shadow: 0 0 0 4px rgba(255,90,0,.12); }
.form-hint { font-size: 13px; font-weight: 600; color: var(--text-faint); }
.form-label { font-size: 14px; font-weight: 700; margin-bottom: 4px; }

.interest-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.interest-chip { position: relative; }
.interest-chip input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.interest-chip span {
  display: inline-flex; padding: 13px 24px; border-radius: 999px; font-family: inherit; font-size: 15px;
  font-weight: 700; cursor: pointer; transition: all .2s ease; border: 1px solid rgba(23,19,16,.12);
  background: rgba(255,255,255,.9); color: var(--text);
}
.interest-chip input:checked + span {
  border-color: transparent; background: linear-gradient(135deg, var(--acc1), var(--acc2));
  color: #fff; box-shadow: 0 6px 20px rgba(255,90,0,.3);
}
.interest-chip input:focus-visible + span { outline: 2px solid var(--acc2); outline-offset: 2px; }

.lead-card__actions { display: flex; gap: 12px; margin-top: 30px; }
.btn-back {
  padding: 16px 26px; border-radius: 999px; border: 1px solid rgba(23,19,16,.12); background: rgba(255,255,255,.9);
  font-family: inherit; font-size: 15px; font-weight: 700; color: var(--text); cursor: pointer;
}
.btn-back:hover { box-shadow: 0 6px 18px rgba(23,19,16,.1); }
.btn-next {
  flex: 1; padding: 16px 26px; border: none; border-radius: 999px; font-family: inherit; font-size: 16px;
  font-weight: 800; transition: all .2s ease; cursor: pointer;
  background: linear-gradient(135deg, var(--acc1), var(--acc2)); color: #fff; box-shadow: 0 10px 28px rgba(255,90,0,.35);
}
.btn-next[disabled] { background: rgba(23,19,16,.08); color: #B9B1A8; cursor: not-allowed; box-shadow: none; }

.success-card {
  padding: 48px 40px; border-radius: var(--radius-xl); background: rgba(255,255,255,.85); backdrop-filter: blur(var(--blur));
  border: 1px solid var(--border-soft); box-shadow: 0 18px 60px rgba(23,19,16,.08); animation: ttStepIn .4s ease both;
}
.success-card__check {
  width: 58px; height: 58px; margin: 0 auto 20px; border-radius: 50%; background: linear-gradient(135deg, var(--acc1), var(--acc2));
  color: #fff; font-size: 26px; font-weight: 800; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(255,90,0,.35);
}
.success-card h3 { margin: 0 0 10px; font-size: 26px; font-weight: 900; letter-spacing: -.02em; }
.success-card p { margin: 0; font-size: 16px; line-height: 1.6; color: var(--text-muted); font-weight: 500; }

.form-error {
  margin-top: 16px; padding: 14px 20px; border-radius: 14px; background: #FDEDEA; border: 1px solid #F5C6BC;
  color: #8A2E19; font-size: 14px; font-weight: 600; display: none;
}
.form-error.is-visible { display: block; }

@media (max-width: 560px) {
  .lead-card { padding: 28px 22px; }
}

/* ================= FOOTER ================= */
.footer { border-top: 1px solid var(--border); background: var(--bg); padding: 64px 24px 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand img { width: 120px; height: auto; border-radius: 9px; }
.footer-tagline { margin: 12px 0 0; max-width: 280px; font-size: 14px; line-height: 1.6; color: var(--text-faint); font-weight: 500; }
.footer-col { display: flex; flex-direction: column; gap: 10px; font-size: 14px; font-weight: 600; }
.footer-col-title { font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 4px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  margin-top: 52px; padding-top: 28px; border-top: 1px solid var(--border-soft);
}
.footer-copyright { font-size: 13px; font-weight: 600; color: var(--text-faint); }
.footer-badges { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.footer-badge { padding: 7px 14px; border-radius: 999px; background: rgba(255,255,255,.8); border: 1px solid var(--border); font-size: 12px; font-weight: 700; color: var(--text-muted); }

@media (max-width: 780px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ================= LEGAL PAGES ================= */
.legal-page { padding: 150px 24px 100px; }
.legal-page .container { max-width: 760px; }
.legal-page h1 { font-size: clamp(30px, 4vw, 44px); font-weight: 900; letter-spacing: -.03em; margin: 0 0 6px; }
.legal-page .legal-draft-notice {
  display: inline-block; margin-bottom: 30px; padding: 8px 16px; border-radius: 999px;
  background: #FDEDEA; border: 1px solid #F5C6BC; color: #8A2E19; font-size: 13px; font-weight: 700;
}
.legal-page h2 { font-size: 20px; font-weight: 800; margin: 36px 0 10px; }
.legal-page p, .legal-page li { font-size: 15px; line-height: 1.7; color: var(--text-muted); font-weight: 500; }

/* ================= 404 ================= */
.error-page { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 150px 24px 100px; }

/* ================= SCROLL-REVEAL BASE STATE ================= */
/* GSAP sets the animated "from" state via inline styles at runtime; these classes just
   mark intent for readability and provide a safe default if JS never runs. */
[data-animate] { }

@keyframes ttStepIn { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: translateX(0); } }
@keyframes ttPulse { 0% { transform: scale(.9); opacity: .9; } 100% { transform: scale(2.1); opacity: 0; } }

@media print {
  .nav, .hero__bg, .form-error { display: none !important; }
}
