/* ==========================================================
   TrotEasy — "The Curated Travel Dossier"
   Identity: oat paper + atlas marine + ticket mono.
   Editorial, precise, cross-generational.
   ========================================================== */

:root {
  /* Surface — warm espresso, stepping lighter for panels */
  --paper:        #14110D;   /* deep warm near-black */
  --paper-2:      #1E1813;   /* panel / card */
  --paper-3:      #28201A;   /* inset / hover */

  /* Ink — warm cream */
  --ink:          #F3ECDE;   /* primary text */
  --ink-soft:     #BCB1A0;   /* secondary text */
  --ink-faint:    #8B8170;   /* tertiary / captions */

  /* Accent — champagne brass */
  --marine:       #C9A35B;   /* the one bold move (kept the var name) */
  --marine-deep:  #B0883F;
  --marine-tint:  rgba(201, 163, 91, 0.14);
  --stamp:        #C9745B;   /* warm copper — used as a whisper */

  /* Lines */
  --rule:         rgba(243, 236, 222, 0.14);
  --rule-soft:    rgba(243, 236, 222, 0.07);

  /* Type */
  --display: 'Archivo', sans-serif;
  --body:    'Hanken Grotesk', sans-serif;
  --mono:    'Space Mono', monospace;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t:    all 0.5s var(--ease);

  --maxw: 1380px;
  --pad:  3rem;
}

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

html { scroll-behavior: smooth; background: var(--paper); }

body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

::selection { background: var(--marine); color: var(--paper); }

a { color: inherit; }

/* Shared display treatment: expanded Archivo */
.display {
  font-family: var(--display);
  font-stretch: 125%;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
}

/* The recurring "ticket label" — mono coordinate/code text */
.label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ==========================================================
   HERO FLIGHT-PATH CANVAS (signature element)
   ========================================================== */
.routemap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}
.routemap canvas { width: 100%; height: 100%; display: block; }

/* ==========================================================
   HEADER
   ========================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 100;
  background: rgba(20, 17, 13, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--rule-soft);
}

.navbar {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.25rem var(--pad);
  display: flex; align-items: center; justify-content: space-between;
}

.logo {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none;
  font-family: var(--display);
  font-stretch: 125%;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.logo-mark {
  display: inline-grid; place-items: center;
  width: 1.7rem; height: 1.7rem;
  border: 1.5px solid var(--stamp);
  color: var(--stamp);
  border-radius: 50%;
  font-size: 0.8rem;
  font-family: var(--mono);
  transform: rotate(-12deg);
}

.nav-links { display: flex; align-items: center; gap: 2.4rem; }
.nav-links a:not(.nav-cta) {
  text-decoration: none;
  font-size: 0.9rem; font-weight: 600;
  color: var(--ink-soft);
  transition: var(--t);
  position: relative;
}
.nav-links a:not(.nav-cta):hover { color: var(--ink); }

.nav-cta {
  text-decoration: none;
  background: var(--marine);
  color: var(--paper);
  padding: 0.7rem 1.4rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  transition: var(--t);
}
.nav-cta:hover { background: var(--marine-deep); transform: translateY(-1px); }

.nav-toggle { display: none; }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 13rem var(--pad) 6rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-inner { position: relative; z-index: 2; max-width: 900px; }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--marine);
  font-weight: 700;
  margin-bottom: 1.6rem;
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.eyebrow::before {
  content: ''; width: 1.8rem; height: 1px; background: var(--marine);
}

.hero h1 {
  font-family: var(--display);
  font-stretch: 118%;
  font-weight: 700;
  font-size: clamp(2.8rem, 7vw, 6.2rem);
  line-height: 0.96;
  letter-spacing: -0.025em;
}
.hero h1 em {
  font-style: normal;
  color: var(--marine);
}

.hero-text {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 600px;
  margin-top: 2rem;
  line-height: 1.6;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.8rem; }

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  text-decoration: none;
  padding: 1.05rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: var(--t);
  cursor: pointer;
  border: 1px solid transparent;
}
.btn.primary { background: var(--marine); color: var(--paper); }
.btn.primary:hover { background: var(--marine-deep); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(201,163,91,0.28); }
.btn.secondary { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn.secondary:hover { background: rgba(243,236,222,0.06); border-color: var(--ink); }

/* Departure-board strip of real route codes */
.route-strip {
  position: relative; z-index: 2;
  margin-top: 4rem;
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
}
.route-chip {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--rule);
  border-radius: 50px;
  background: rgba(243,236,222,0.04);
}
.route-chip b { color: var(--marine); font-weight: 700; }

/* ==========================================================
   SECTION SHELL
   ========================================================== */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 8rem var(--pad);
  position: relative;
  z-index: 2;
}
.section.tight { padding-top: 4rem; }

.section-head { max-width: 760px; margin-bottom: 4rem; }
.section-head h2 {
  font-family: var(--display);
  font-stretch: 118%;
  font-weight: 700;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-top: 1rem;
}

/* ==========================================================
   MANIFESTO
   ========================================================== */
.manifesto {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 5rem;
  padding-top: 4rem;
  border-top: 1px solid var(--rule);
}
.manifesto-lead {
  font-family: var(--display);
  font-stretch: 110%;
  font-weight: 400;
  font-size: clamp(1.6rem, 2.6vw, 2.5rem);
  line-height: 1.18;
  letter-spacing: -0.015em;
}
.manifesto-lead .marine { color: var(--marine); }
.manifesto-body p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.4rem;
}
.manifesto-body p:last-child { margin-bottom: 0; }

/* ==========================================================
   INCLUDED (service grid)
   ========================================================== */
/* Live departure-board ticker */
.depboard {
  margin: 0 0 4rem;
  padding: 1.05rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}
.depboard-track {
  display: flex;
  width: max-content;
  gap: 3.25rem;
  animation: depscroll 42s linear infinite;
  will-change: transform;
}
.depboard:hover .depboard-track { animation-play-state: paused; }
@keyframes depscroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.dep-item {
  display: inline-flex; align-items: center; gap: 1rem;
  font-family: var(--mono); font-size: 0.82rem;
  white-space: nowrap; color: var(--ink-soft);
}
.dep-item .route { color: var(--marine); font-weight: 700; letter-spacing: 0.05em; }
.dep-item .svc { color: var(--ink); }
.dep-item .status {
  display: inline-flex; align-items: center; gap: 0.45rem;
  color: var(--ink-faint); letter-spacing: 0.14em; font-size: 0.7rem;
}
.dep-item .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--marine);
  animation: depblink 1.6s ease-in-out infinite;
}
@keyframes depblink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: var(--paper-2);
  border: 1px solid var(--rule-soft);
  border-radius: 14px;
  padding: 2.4rem 2rem 2.6rem;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--marine);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.service-card:hover { transform: translateY(-4px); background: var(--paper-3); }
.service-card:hover::after { transform: scaleX(1); }

.svc-code {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--marine);
  display: inline-block;
  margin-bottom: 1.6rem;
}
.svc-code .arrow { color: var(--ink-faint); margin: 0 0.35rem; }
.service-card h3 {
  font-family: var(--display);
  font-stretch: 112%;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.7rem;
}
.service-card p { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.6; }

/* ==========================================================
   HOW IT WORKS (genuine sequence — numbers earn their place)
   ========================================================== */
.workflow {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: start;
}
.workflow-intro p {
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 1.5rem 0 2rem;
}
.text-link {
  font-family: var(--body);
  font-weight: 700;
  color: var(--marine);
  text-decoration: none;
  border-bottom: 2px solid var(--marine);
  padding-bottom: 3px;
  transition: var(--t);
}
.text-link:hover { color: var(--marine-deep); border-color: var(--marine-deep); }

.steps { display: flex; flex-direction: column; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.6rem;
  padding: 2rem 0;
  border-top: 1px solid var(--rule);
}
.step:last-child { border-bottom: 1px solid var(--rule); }
.step-num {
  font-family: var(--mono);
  font-size: 0.95rem;
  color: var(--marine);
  font-weight: 700;
  padding-top: 0.35rem;
}
.step h3 {
  font-family: var(--display);
  font-stretch: 112%;
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.step p { color: var(--ink-soft); font-size: 1rem; line-height: 1.6; }

/* ==========================================================
   DESTINATIONS
   ========================================================== */
.region { margin-bottom: 4rem; }
.region:last-child { margin-bottom: 0; }
.region-head {
  display: flex; align-items: baseline; gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rule);
}
.region-head h3 {
  font-family: var(--display);
  font-stretch: 115%;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
}
.region-head .label { margin-left: auto; }

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.dest-card {
  position: relative;
  height: 460px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.2rem;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  color: var(--paper);
  transition: var(--t);
  isolation: isolate;
}
.dest-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,18,24,0.92) 8%, rgba(12,18,24,0.35) 45%, rgba(12,18,24,0.05) 78%);
  z-index: 1;
  transition: var(--t);
}
.dest-card:hover { transform: translateY(-5px); }
.dest-card:hover::before { background: linear-gradient(to top, rgba(20,15,9,0.95) 8%, rgba(20,15,9,0.45) 50%, rgba(20,15,9,0.1) 85%); }
.dest-card > * { position: relative; z-index: 2; }
.dest-tag {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #E8D3A8;
  margin-bottom: 0.6rem;
}
.dest-card h4 {
  font-family: var(--display);
  font-stretch: 115%;
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.dest-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-top: 0.7rem;
  color: rgba(255,255,255,0.82);
  max-width: 32ch;
}

/* ==========================================================
   CONTACT
   ========================================================== */
.contact-card {
  background: var(--paper-2);
  border: 1px solid var(--rule-soft);
  border-radius: 20px;
  padding: clamp(2.2rem, 4vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem;
  align-items: start;
}
.contact-copy h2 {
  font-family: var(--display);
  font-stretch: 118%;
  font-weight: 700;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 1rem 0 1.4rem;
}
.contact-copy p { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.6; }
.contact-meta { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.5rem; }
.contact-meta span { display: flex; gap: 0.7rem; align-items: center; }
.contact-meta .label { color: var(--ink-soft); }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.contact-form input,
.contact-form textarea {
  font-family: var(--body);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 0.95rem 1rem;
  color: var(--ink);
  font-size: 1rem;
  outline: none;
  transition: var(--t);
  width: 100%;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--ink-faint); }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--marine); background: var(--paper-3); box-shadow: 0 0 0 3px var(--marine-tint); }
.contact-form textarea { height: 120px; resize: vertical; }
.contact-form .btn { justify-content: center; border: none; margin-top: 0.4rem; }

/* "Send the brief" confirmation / error line */
.form-status {
  font-size: 0.92rem;
  line-height: 1.5;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  margin-top: 0.2rem;
}
.form-status.ok {
  color: #7CC47F;
  background: rgba(124, 196, 127, 0.1);
  border: 1px solid rgba(124, 196, 127, 0.4);
}
.form-status.err {
  color: #E5A68F;
  background: rgba(201, 116, 91, 0.12);
  border: 1px solid rgba(201, 116, 91, 0.4);
}
.form-status[hidden] { display: none; }

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 4rem var(--pad) 3rem;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer p { color: var(--ink-soft); font-size: 0.92rem; }
.footer-links { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.footer-links a {
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  transition: var(--t);
}
.footer-links a:hover { color: var(--marine); }

/* ==========================================================
   SIGN-IN DROPDOWN + AUTH MODAL
   ========================================================== */
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.signin-dd { position: relative; }

.signin-btn {
  font-family: var(--body);
  font-weight: 600; font-size: 0.9rem;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--rule);
  padding: 0.6rem 1.1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--t);
  display: inline-flex; align-items: center; gap: 0.45rem;
}
.signin-btn:hover { border-color: var(--ink); }
.signin-btn .caret { font-size: 0.7rem; color: var(--ink-faint); }

.signin-menu {
  position: absolute; right: 0; top: calc(100% + 0.5rem);
  min-width: 190px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 0.4rem;
  box-shadow: 0 20px 44px rgba(0,0,0,0.45);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  z-index: 200;
}
.signin-menu.open { opacity: 1; visibility: visible; transform: none; }
.signin-menu button {
  display: flex; width: 100%; align-items: center; gap: 0.65rem;
  background: transparent; border: none; cursor: pointer;
  font-family: var(--body); font-size: 0.92rem; font-weight: 600;
  color: var(--ink);
  padding: 0.7rem 0.8rem; border-radius: 8px; text-align: left;
  transition: var(--t);
}
.signin-menu button::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--marine); flex-shrink: 0;
}
.signin-menu button:hover { background: var(--paper-3); color: var(--marine); }

.auth-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(8, 6, 4, 0.66);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
}
.auth-overlay[hidden] { display: none; }

.auth-modal {
  position: relative; width: 100%; max-width: 440px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: clamp(1.8rem, 4vw, 2.5rem);
  box-shadow: 0 30px 70px rgba(0,0,0,0.55);
  animation: authIn 0.35s var(--ease);
}
@keyframes authIn {
  from { opacity: 0; transform: translateY(14px) scale(0.985); }
  to   { opacity: 1; transform: none; }
}
.auth-close {
  position: absolute; top: 1.1rem; right: 1.1rem;
  width: 2rem; height: 2rem; border-radius: 50%;
  background: transparent; border: 1px solid var(--rule);
  color: var(--ink-soft); font-size: 1.15rem; line-height: 1;
  cursor: pointer; transition: var(--t);
}
.auth-close:hover { color: var(--ink); border-color: var(--ink); }

.auth-title {
  font-family: var(--display); font-stretch: 115%; font-weight: 700;
  font-size: 1.8rem; letter-spacing: -0.01em;
  margin: 0.5rem 0 1.4rem;
}
.auth-role {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  margin-bottom: 1.4rem;
}
.auth-role > span {
  font-family: var(--mono); font-size: 0.68rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint);
}
.role-toggle {
  display: inline-flex; background: var(--paper);
  border: 1px solid var(--rule); border-radius: 9px; padding: 3px;
}
.role-toggle button {
  font-family: var(--body); font-size: 0.82rem; font-weight: 700;
  color: var(--ink-soft); background: transparent; border: none;
  padding: 0.45rem 0.9rem; border-radius: 6px; cursor: pointer; transition: var(--t);
}
.role-toggle button.active { background: var(--marine); color: var(--paper); }

.auth-form { display: flex; flex-direction: column; gap: 1rem; }
.auth-form .field[hidden] { display: none; }
.auth-form input {
  font-family: var(--body);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 0.95rem 1rem;
  color: var(--ink); font-size: 1rem; outline: none;
  transition: var(--t); width: 100%;
}
.auth-form input::placeholder { color: var(--ink-faint); }
.auth-form input:focus {
  border-color: var(--marine); background: var(--paper-3);
  box-shadow: 0 0 0 3px var(--marine-tint);
}
/* Show/hide eye button on the credential field */
.input-wrap { position: relative; }
.input-wrap input { padding-right: 3rem; }
.reveal-btn {
  position: absolute; right: 0.5rem; top: 50%; transform: translateY(-50%);
  width: 2.1rem; height: 2.1rem;
  display: inline-grid; place-items: center;
  background: transparent; border: none; cursor: pointer;
  color: var(--ink-faint); border-radius: 6px;
  transition: var(--t);
}
.reveal-btn:hover { color: var(--ink); background: rgba(243,236,222,0.06); }
.reveal-btn:focus-visible { outline: 2px solid var(--marine); outline-offset: 1px; }
.auth-error {
  background: rgba(201,116,91,0.12);
  border: 1px solid rgba(201,116,91,0.4);
  color: #E5A68F; font-size: 0.88rem;
  padding: 0.7rem 0.9rem; border-radius: 8px;
}
.auth-error[hidden] { display: none; }
.auth-submit { justify-content: center; margin-top: 0.3rem; }
.auth-switch {
  margin-top: 1.2rem; font-size: 0.9rem; color: var(--ink-soft); text-align: center;
}
.auth-switch button {
  background: none; border: none; color: var(--marine);
  font-weight: 700; cursor: pointer; font-size: 0.9rem; font-family: var(--body); padding: 0;
}
.auth-switch button:hover { color: var(--marine-deep); text-decoration: underline; }

/* ==========================================================
   SCROLL REVEAL
   ========================================================== */
.reveal { opacity: 0; transform: translateY(24px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1024px) {
  :root { --pad: 2rem; }
  .manifesto,
  .workflow { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-grid,
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-card { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero { padding-top: 10rem; }
}

@media (max-width: 680px) {
  .nav-links { gap: 0.6rem; }
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-actions { gap: 0.55rem; }
  .signin-btn { padding: 0.5rem 0.8rem; font-size: 0.8rem; }
  .signin-btn .caret { display: none; }
  .nav-cta { padding: 0.55rem 1rem; font-size: 0.8rem; }
  .logo span:last-child { font-size: 1.1rem; }
  .signin-menu { min-width: 170px; }
  .service-grid,
  .dest-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .region-head { flex-wrap: wrap; }
  .region-head .label { margin-left: 0; width: 100%; }
  .section { padding: 5rem var(--pad); }
  .footer { flex-direction: column; align-items: flex-start; }
  .dest-card { height: 400px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}