/* =========================================================
   Travel Stamp — Design System  (Stitch "Adventurer's Journal")
   Tactile / retro-collage: parchment paper, torn edges, washi
   tape, passport-stamp labels. Epilogue + Work Sans + Space Mono.
   Palette: ink-brown, oxidised teal, sun-faded ochre.
   ---------------------------------------------------------
   NOTE: this file is the ONLY thing that changed between the old
   "Modern Editorial" look and this one. Class names are kept
   identical so every page restyles with no markup edits.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,600;0,700;0,800;1,700;1,800&family=Work+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Space+Mono:wght@400;700&display=swap');

:root {
  /* ---- Palette (from Adventurer's Journal DESIGN.md) ---- */
  --primary:        #2a251e;   /* ink brown */
  --primary-hover:  #1c1c18;
  --primary-container:#403b33;
  --on-primary:     #ffffff;

  /* signature accents */
  --teal:           #006b58;   /* oxidised adventurer green */
  --teal-dk:        #00453a;
  --teal-bright:    #7ef8d7;   /* mint — stamp / highlighter */
  --ochre:          #c47a2c;   /* sun-faded clay */
  --ochre-bright:   #ffb778;   /* washi-tape warm */
  --ochre-soft:     #ffdcc1;   /* peach paper */

  /* gold aliases kept so existing markup restyles (nums, stars, dashes) */
  --gold:           #c47a2c;
  --gold-dim:       #ffb778;
  --gold-text:      #6c3a00;

  /* parchment surfaces */
  --surface:        #fcf9f3;
  --surface-low:    #f6f3ed;
  --surface-mid:    #f0eee8;
  --surface-high:   #e5e2dc;
  --white:          #fffdf7;   /* warm card paper */
  --paper-card:     #fdfbf4;
  --inverse:        #31312d;
  --inverse-deep:   #2a251e;   /* dark journal cover */

  --ink:            #1c1c18;    /* on-surface */
  --ink-soft:       #4b463f;    /* on-surface-variant */
  --muted:          #6f685e;
  --line:           #cdc5bc;    /* outline-variant */
  --line-strong:    #7c766e;    /* outline */

  /* aliases kept so existing markup classes restyle cleanly */
  --accent:    var(--teal);
  --accent-dk: var(--teal-dk);

  --display: "Epilogue", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sans:    "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono:    "Space Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --maxw: 1200px;
  --radius: 12px;       /* containers — soft, near-squared */
  --radius-sm: 8px;
  --radius-xs: 5px;
  /* tactile: sharp low-opacity paper-lift shadow */
  --shadow: 6px 10px 0 -2px rgba(42,37,30,.10), 0 26px 50px -30px rgba(42,37,30,.45);
  --shadow-sm: 3px 5px 0 -1px rgba(42,37,30,.10), 0 14px 30px -22px rgba(42,37,30,.5);
  --ease: cubic-bezier(.22,.61,.36,1);

  --paper-tex: url('../assets/img/textures/handmade-paper.png');
  --paper-tex-dark: url('../assets/img/textures/asfalt-dark.png');

  --glass: rgba(252,249,243,.9);
  --glass-header: rgba(252,249,243,.86);
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background-color: var(--surface);
  background-image: var(--paper-tex);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 800; line-height: 1.06; color: var(--ink); letter-spacing: -.02em; }
h1 { font-size: clamp(2.5rem, 5.6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 800; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; letter-spacing: -.01em; }
p { color: var(--ink-soft); }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }
section { padding-block: clamp(56px, 9vw, 108px); position: relative; }

/* ---------- Passport-stamp eyebrow ---------- */
.eyebrow {
  display: inline-block; align-self: flex-start; width: max-content; max-width: 100%;
  font-family: var(--mono); font-weight: 700; font-size: .72rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink);
  background: var(--teal-bright);
  padding: 5px 11px 4px; border-radius: 3px;
  margin-bottom: 20px; transform: rotate(-1.4deg);
  box-shadow: 2px 2px 0 -1px rgba(42,37,30,.18);
}
.center .eyebrow { align-self: center; margin-inline: auto; }
.eyebrow::before { display: none; }
.center { text-align: center; }
.lede { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--ink-soft); max-width: 60ch; }
.center .lede { margin-inline: auto; }
.section-head { max-width: 64ch; margin-bottom: clamp(34px, 5vw, 56px); }
.section-head.center { margin-inline: auto; }

/* ---------- Buttons (tactile pills) ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--mono); font-weight: 700; font-size: .82rem; letter-spacing: .06em;
  text-transform: uppercase;
  padding: 13px 26px; border-radius: 999px; cursor: pointer;
  border: 2px solid var(--ink); transition: transform .22s var(--ease), box-shadow .22s, background .22s, color .22s;
  white-space: nowrap;
}
.btn-primary { background: var(--teal); color: #fff; box-shadow: 3px 4px 0 -1px rgba(42,37,30,.9); }
.btn-primary:hover { transform: translateY(-2px) rotate(-1deg); box-shadow: 4px 7px 0 -1px rgba(42,37,30,.9); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ochre-soft); transform: translateY(-2px) rotate(1deg); box-shadow: 3px 4px 0 -1px rgba(42,37,30,.5); }
.btn-light { background: var(--surface); color: var(--ink); border-color: var(--ink); }
.btn-light:hover { transform: translateY(-2px) rotate(-1deg); box-shadow: 3px 5px 0 -1px rgba(0,0,0,.35); }
.btn-outline-light { background: transparent; color: #fff; border-color: var(--teal-bright); }
.btn-outline-light:hover { background: rgba(126,248,215,.16); border-color: var(--teal-bright); transform: translateY(-2px) rotate(1deg); }
.btn-lg { padding: 16px 32px; font-size: .9rem; }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.center .btn-row { justify-content: center; }
.link-arrow { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; color: var(--teal); border-bottom: 2px solid var(--teal-bright); padding-bottom: 2px; }
.link-arrow .arrow { transition: transform .25s var(--ease); }
.link-arrow:hover .arrow { transform: translateX(4px); }

/* ---------- Header / Nav (perforated ticket edge) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--glass-header); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 2px dashed var(--line-strong); transition: box-shadow .3s, background .3s;
}
.site-header.scrolled { box-shadow: 0 10px 30px -24px rgba(42,37,30,.6); background: rgba(252,249,243,.95); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--display); font-style: italic; font-weight: 800; font-size: 1.42rem; letter-spacing: -.03em; color: var(--ink); }
.brand .stamp {
  width: 36px; height: 36px; display: grid; place-items: center;
  border: 2px dashed var(--ochre); border-radius: 7px; color: var(--teal);
  background: var(--surface-high); transform: rotate(-7deg); flex: none;
}
.brand .stamp svg { width: 19px; height: 19px; }
.brand-logo { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex: none; border: 2px solid var(--ink); }
.site-footer .brand-logo { border-color: rgba(255,255,255,.35); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { font-family: var(--mono); padding: 8px 13px; border-radius: 6px; font-weight: 400; font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-soft); transition: color .2s, background .2s; }
.nav-links a:hover { color: var(--teal); background: rgba(126,248,215,.35); }
.nav-links a.active { color: var(--teal-bright); background: var(--primary); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 11px 20px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--ink); }
.nav-toggle svg { width: 26px; height: 26px; }

/* ---------- Hero (photo-forward, collage) ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 620px at 80% -10%, rgba(126,248,215,.28), transparent 60%),
    radial-gradient(900px 520px at 6% 112%, rgba(255,183,120,.3), transparent 60%),
    var(--surface);
}
.hero .container { position: relative; z-index: 2; padding-block: clamp(64px, 11vw, 128px); }
.hero-inner { max-width: 780px; }
.hero h1 { margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--ink); background: linear-gradient(transparent 58%, var(--teal-bright) 58% 92%, transparent 92%); padding: 0 .08em; }
.hero p { font-size: clamp(1.08rem, 1.7vw, 1.28rem); color: var(--ink-soft); max-width: 56ch; margin-bottom: 32px; }

/* Photo hero variant — full-bleed image with warm ink overlay, light text */
.hero.hero-photo { background-size: cover; background-position: center; }
.hero.hero-photo::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(42,37,30,.32) 0%, rgba(42,37,30,.55) 55%, rgba(28,28,24,.8) 100%);
}
.hero.hero-photo .container { z-index: 2; }
.hero.hero-photo h1 { color: #fff; }
.hero.hero-photo h1 em { color: var(--teal-bright); background: none; }
.hero.hero-photo p { color: rgba(255,252,244,.94); }
.hero.hero-photo .eyebrow { background: var(--teal-bright); color: var(--ink); }

/* floating stamps / decals */
.hero-deco { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-deco .pin { position: absolute; font-size: clamp(1.6rem, 3.2vw, 2.8rem); opacity: .55; animation: float 7s ease-in-out infinite; }
.hero.hero-photo .hero-deco { display: none; }
.hero-deco .pin:nth-child(1){ top: 16%; right: 9%; animation-delay: 0s; }
.hero-deco .pin:nth-child(2){ top: 58%; right: 22%; animation-delay: 1.4s; }
.hero-deco .pin:nth-child(3){ bottom: 14%; right: 7%; animation-delay: .7s; }
.hero-deco .pin:nth-child(4){ top: 40%; right: 38%; animation-delay: 2.1s; }
@keyframes float { 0%,100%{ transform: translateY(0) rotate(-5deg);} 50%{ transform: translateY(-16px) rotate(5deg);} }

/* ---------- Trust bar (taped scrap) ---------- */
.trust-wrap { position: relative; z-index: 5; margin-top: -40px; }
.trust-wrap .container { max-width: 1040px; }
.trustbar-glass {
  background: var(--paper-card); background-image: var(--paper-tex);
  border: 2px solid var(--ink); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: flex; flex-wrap: wrap; justify-content: space-around; gap: 14px 26px; padding: 22px 28px;
  position: relative; transform: rotate(-.5deg);
}
.trustbar-glass::before {
  content: ""; position: absolute; top: -12px; left: 50%; transform: translateX(-50%) rotate(-2deg);
  width: 116px; height: 26px; background: rgba(255,183,120,.6); border: 1px dashed rgba(108,58,0,.35);
}
.trustbar-glass .ti { display: inline-flex; align-items: center; gap: 11px; font-family: var(--mono); font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .03em; color: var(--ink); }
.trustbar-glass .ti svg { width: 24px; height: 24px; color: var(--teal); flex: none; }
.trustbar-glass .ti i { width: 8px; height: 8px; border-radius: 50%; background: var(--ochre); display: inline-block; flex: none; }

/* legacy dark trust bar (kept) */
.trustbar { background: var(--inverse-deep); color: #e7e3da; }
.trustbar .container { display: flex; flex-wrap: wrap; gap: 14px 30px; justify-content: center; padding-block: 18px; }
.trustbar span { display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: .82rem; text-transform: uppercase; }
.trustbar span::before { content: "✶"; color: var(--teal-bright); }

/* ---------- Cards / grids (paper scraps) ---------- */
.grid { display: grid; gap: clamp(18px, 2.4vw, 28px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  background: var(--paper-card); background-image: var(--paper-tex);
  border: 2px solid var(--ink); border-radius: var(--radius);
  padding: clamp(26px, 3vw, 36px); transition: transform .3s var(--ease), box-shadow .3s;
  box-shadow: 4px 6px 0 -2px rgba(42,37,30,.14);
}
.card:hover { transform: translateY(-6px) rotate(-.8deg); box-shadow: var(--shadow); }
.card .ic {
  width: 54px; height: 54px; border-radius: 12px; display: grid; place-items: center;
  background: var(--teal-bright); color: var(--teal-dk); margin-bottom: 20px;
  border: 2px solid var(--ink);
}
.card .ic svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); }
.card .num { font-family: var(--display); font-size: 1.15rem; color: var(--ochre); font-weight: 800; font-style: italic; }

.bg-alt { background-color: var(--surface-mid); background-image: var(--paper-tex); }
.bg-ink { background-color: var(--inverse-deep); background-image: var(--paper-tex-dark); color: #d6cfc4; }
.bg-ink h1, .bg-ink h2, .bg-ink h3 { color: #fff; }
.bg-ink p { color: #b7afa3; }
.bg-ink .eyebrow { background: var(--teal-bright); color: var(--ink); }

/* ---------- Services list (filed entries) ---------- */
.service {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 26px; align-items: start;
  background: var(--paper-card); background-image: var(--paper-tex);
  border: 2px solid var(--ink); border-radius: var(--radius);
  padding: clamp(26px, 3vw, 38px); transition: box-shadow .3s, transform .3s var(--ease);
  box-shadow: 4px 6px 0 -2px rgba(42,37,30,.14);
}
.service:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.service .badge { width: 64px; height: 64px; border-radius: 14px; display: grid; place-items: center; background: var(--teal); color: #fff; border: 2px solid var(--ink); }
.service .badge svg { width: 30px; height: 30px; }
.service .tagline { font-family: var(--mono); color: var(--gold-text); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: .82rem; margin: 6px 0 12px; }
.service .ideal { margin-top: 14px; font-size: .92rem; color: var(--muted); }
.service .ideal b { color: var(--ink-soft); }
.service .svc-photo {
  width: 210px; align-self: stretch; min-height: 150px; flex: none;
  border-radius: var(--radius-sm); background-size: cover; background-position: center;
  border: 2px solid var(--ink);
}
@media (max-width: 640px){
  .service { grid-template-columns: 1fr; }
  .service .svc-photo { order: -1; width: 100%; min-height: 0; height: 180px; }
}

/* ---------- Feature list ---------- */
.featurelist { display: grid; gap: 4px; }
.feature { display: flex; gap: 18px; padding: 22px 0; border-bottom: 2px dashed var(--line); align-items: flex-start; }
.feature:last-child { border-bottom: none; }
.feature .fic { flex: none; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--teal-bright); color: var(--teal-dk); border: 2px solid var(--ink); }
.feature .fic svg { width: 22px; height: 22px; }
.bg-ink .feature { border-color: rgba(255,255,255,.18); }
.bg-ink .feature .fic { background: var(--teal); color: #fff; }
.feature h3 { margin-bottom: 4px; }

/* ---------- Split / media ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
.split.narrow { grid-template-columns: 1.1fr .9fr; }
@media (max-width: 860px){ .split, .split.narrow { grid-template-columns: 1fr; } }
.media-frame {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 360px;
  background: linear-gradient(150deg, var(--teal), var(--inverse-deep)) center/cover no-repeat;
  display: grid; place-items: center; color: rgba(255,255,255,.9);
  border: 2px solid var(--ink); box-shadow: var(--shadow); transform: rotate(-1deg);
}
.media-frame .ghost { font-size: 5rem; opacity: .9; }
.media-frame.photo { background-size: cover; background-position: center; }
.media-frame.photo .ghost { display: none; }

/* ---------- Testimonials (postcards) ---------- */
.quote { position: relative; background: var(--paper-card); background-image: var(--paper-tex); border: 2px solid var(--ink); border-radius: var(--radius); padding: clamp(28px, 3vw, 34px); box-shadow: 4px 6px 0 -2px rgba(42,37,30,.14); }
.quote::before { content: ""; position: absolute; top: -11px; right: 26px; width: 84px; height: 24px; background: rgba(126,248,215,.7); border: 1px dashed rgba(0,107,88,.4); transform: rotate(3deg); }
.quote .mark { font-family: var(--display); font-size: 3.6rem; line-height: .6; color: var(--ochre); opacity: .7; }
.quote blockquote { font-size: 1.06rem; color: var(--ink); margin: 8px 0 18px; font-style: italic; }
.quote .who { display: flex; align-items: center; gap: 12px; }
.quote .avatar { width: 44px; height: 44px; border-radius: 50%; flex: none; display: grid; place-items: center; font-family: var(--display); font-weight: 800; color: #fff; background: var(--teal); border: 2px solid var(--ink); }
.quote .who b { display: block; font-size: .95rem; }
.quote .who span { font-family: var(--mono); font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .03em; }
.stars { color: var(--ochre); letter-spacing: 2px; margin-bottom: 6px; }

/* ---------- Pricing (tickets) ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
@media (max-width: 900px){ .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }
.plan { position: relative; background: var(--paper-card); background-image: var(--paper-tex); border: 2px solid var(--ink); border-radius: var(--radius); padding: clamp(28px, 3vw, 38px); display: flex; flex-direction: column; box-shadow: 4px 6px 0 -2px rgba(42,37,30,.14); }
.plan.featured { box-shadow: var(--shadow); transform: translateY(-6px); }
.plan .tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%) rotate(-2deg); background: var(--ochre-bright); color: var(--ink); font-family: var(--mono); font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 6px 14px; border-radius: 4px; border: 2px solid var(--ink); }
.plan h3 { margin-bottom: 4px; }
.plan .best { font-family: var(--mono); font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: .03em; margin-bottom: 18px; }
.plan .price { font-family: var(--display); margin-bottom: 4px; }
.plan .price b { font-size: 2.3rem; color: var(--ink); font-weight: 800; }
.plan .price span { color: var(--muted); font-size: .9rem; }
.plan ul { margin: 20px 0 26px; display: grid; gap: 11px; }
.plan li { display: flex; gap: 10px; font-size: .95rem; color: var(--ink-soft); }
.plan li svg { width: 18px; height: 18px; color: var(--teal); flex: none; margin-top: 4px; }
.plan .btn { margin-top: auto; }

/* ---------- FAQ (index cards) ---------- */
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item { background: var(--paper-card); background-image: var(--paper-tex); border: 2px solid var(--ink); border-radius: var(--radius-sm); overflow: hidden; box-shadow: 3px 4px 0 -2px rgba(42,37,30,.14); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; font-family: var(--display); font-size: 1.08rem; color: var(--ink); font-weight: 700; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .pm { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--teal-bright); border: 2px solid var(--ink); display: grid; place-items: center; transition: transform .3s var(--ease), background .3s, color .3s; color: var(--teal-dk); font-size: 1.1rem; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); background: var(--teal); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding: 0 24px 22px; color: var(--ink-soft); }

/* ---------- Forms ---------- */
.form-card { background: var(--paper-card); background-image: var(--paper-tex); border: 2px solid var(--ink); border-radius: var(--radius); padding: clamp(26px, 4vw, 44px); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--mono); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-soft); }
.field label .req { color: var(--teal); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 2px solid var(--line-strong); border-radius: var(--radius-xs);
  background: var(--surface); transition: border-color .2s, box-shadow .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 3px 0 var(--teal-bright); background: #fff; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 4px; }
.form-success { display: none; background: var(--teal-bright); border: 2px solid var(--ink); color: var(--teal-dk); border-radius: var(--radius-xs); padding: 16px 20px; font-weight: 700; margin-top: 18px; }
.form-success.show { display: block; }
@media (max-width: 560px){ .form-grid { grid-template-columns: 1fr; } }

/* ---------- Pinned visiting card (photographed scrap) ---------- */
.card-scrap { position: relative; display: inline-block; padding: 8px; background: #fffdf7; border: 2px solid var(--ink); border-radius: 6px; box-shadow: var(--shadow); transform: rotate(-2.4deg); max-width: 100%; }
.card-scrap:hover { transform: rotate(-1deg) translateY(-3px); }
.card-scrap img { display: block; border-radius: 3px; }
.card-scrap::before { content: ""; position: absolute; top: -13px; left: 50%; transform: translateX(-50%) rotate(-3deg); width: 122px; height: 28px; background: rgba(126,248,215,.72); border: 1px dashed rgba(0,107,88,.4); }
.card-scrap::after { content: "✈ EST. DELHI"; position: absolute; bottom: -14px; right: 16px; transform: rotate(-3deg); font-family: var(--mono); font-weight: 700; font-size: .64rem; letter-spacing: .08em; color: var(--ink); background: var(--ochre-bright); border: 2px solid var(--ink); border-radius: 3px; padding: 3px 8px; }

/* ---------- Service chips (passport tags) ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chips .chip { font-family: var(--mono); font-weight: 700; text-transform: uppercase; font-size: .72rem; letter-spacing: .05em; color: var(--ink); background: var(--surface); border: 2px solid var(--ink); border-radius: 999px; padding: 7px 14px; transition: transform .2s var(--ease), background .2s; }
.chips .chip:nth-child(even) { transform: rotate(1.2deg); }
.chips .chip:nth-child(3n) { transform: rotate(-1.4deg); }
.chips .chip:hover { background: var(--teal-bright); transform: rotate(0) translateY(-2px); }

/* ---------- Contact info ---------- */
.contact-info { display: grid; gap: 18px; }
.contact-info .row { display: flex; gap: 14px; align-items: flex-start; }
.contact-info .row .ic { width: 44px; height: 44px; border-radius: 10px; background: var(--teal-bright); color: var(--teal-dk); display: grid; place-items: center; flex: none; border: 2px solid var(--ink); }
.contact-info .row .ic svg { width: 21px; height: 21px; }
.contact-info b { display: block; }
.contact-info a, .contact-info span { color: var(--muted); }

/* ---------- Blog (pinned postcards) ---------- */
.post { position: relative; background: var(--paper-card); background-image: var(--paper-tex); border: 2px solid var(--ink); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s; box-shadow: 4px 6px 0 -2px rgba(42,37,30,.14); }
.post:hover { transform: translateY(-6px) rotate(-.6deg); box-shadow: var(--shadow); }
.post .thumb { height: 188px; display: grid; place-items: center; font-size: 3rem; color: #fff; background-size: cover; background-position: center; border-bottom: 2px solid var(--ink); }
.post .body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post .cat { font-family: var(--mono); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.post h3 { font-size: 1.18rem; margin-bottom: 12px; }
.post .link-arrow { margin-top: auto; }

/* ---------- CTA band (dark journal cover, torn top) ---------- */
.cta-band {
  position: relative; overflow: hidden; color: #fff;
  background-color: var(--inverse-deep); background-image: var(--paper-tex-dark);
  border: 2px solid var(--ink); border-radius: clamp(14px, 2vw, 20px);
  padding: clamp(44px, 6vw, 76px); text-align: center;
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255,252,244,.9); max-width: 52ch; margin: 0 auto 28px; font-size: 1.1rem; }
.cta-band .eyebrow { background: var(--teal-bright); color: var(--ink); }
.cta-band.cta-photo { background-size: cover; background-position: center; }
.cta-band.cta-photo::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(135deg, rgba(0,69,58,.86), rgba(42,37,30,.86)); }

/* ---------- Interior page hero ---------- */
.page-hero { position: relative; background: radial-gradient(820px 440px at 88% -20%, rgba(126,248,215,.3), transparent 60%), var(--surface-mid); background-blend-mode: normal; text-align: center; padding-block: clamp(56px, 9vw, 96px); border-bottom: 2px dashed var(--line-strong); }
.page-hero .lede { margin-inline: auto; margin-top: 16px; }
.breadcrumbs { font-family: var(--mono); font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-bottom: 16px; }
.breadcrumbs a:hover { color: var(--teal); }
.page-hero.photo { overflow: hidden; background-size: cover; background-position: center; color: #fff; border-bottom-color: var(--ink); }
.page-hero.photo::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(42,37,30,.42), rgba(28,28,24,.72)); }
.page-hero.photo .container { position: relative; z-index: 2; }
.page-hero.photo h1 { color: #fff; }
.page-hero.photo .lede { color: rgba(255,252,244,.92); }
.page-hero.photo .breadcrumbs, .page-hero.photo .breadcrumbs a { color: rgba(255,252,244,.8); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat { text-align: center; }
.stat b { font-family: var(--display); font-size: clamp(2rem, 4vw, 3rem); color: var(--teal); display: block; font-weight: 800; font-style: italic; }
.stat span { font-family: var(--mono); font-size: .78rem; text-transform: uppercase; letter-spacing: .03em; color: var(--muted); }
@media (max-width: 620px){ .stats { grid-template-columns: repeat(2,1fr); } }

/* ---------- Timeline ---------- */
.timeline { display: grid; gap: 0; max-width: 760px; margin-inline: auto; }
.tl-item { display: grid; grid-template-columns: 90px 1fr; gap: 24px; padding: 24px 0; position: relative; }
.tl-item:not(:last-child)::before { content:""; position: absolute; left: 44px; top: 56px; bottom: -24px; width: 2px; background: var(--line-strong); }
.tl-year { font-family: var(--display); font-weight: 800; font-style: italic; font-size: 1.35rem; color: var(--teal); }
.tl-dot { position: relative; }
.tl-item .tl-year::after { content:""; position: absolute; left: 37px; top: 6px; width: 16px; height: 16px; border-radius: 50%; background: var(--ochre-bright); border: 2px solid var(--ink); }

/* ---------- Footer (journal back cover) ---------- */
.site-footer { background-color: var(--inverse-deep); background-image: var(--paper-tex-dark); color: #b7afa3; padding-block: clamp(48px, 6vw, 72px) 30px; border-top: 2px dashed var(--line-strong); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.site-footer .brand { color: #fff; margin-bottom: 16px; }
.site-footer .brand .stamp { background: rgba(255,255,255,.08); color: var(--teal-bright); }
.site-footer p { color: #9c948a; max-width: 36ch; font-size: .95rem; }
.footer-col h4 { color: #fff; font-family: var(--mono); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; font-weight: 700; }
.footer-col a { display: block; padding: 5px 0; color: #a59d92; font-size: .95rem; transition: color .2s; }
.footer-col a:hover { color: var(--teal-bright); }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a { width: 38px; height: 38px; border-radius: 8px; border: 2px solid rgba(255,255,255,.25); display: grid; place-items: center; color: #d6cfc4; transition: all .2s; }
.socials a:hover { background: var(--teal); border-color: var(--ink); color: #fff; transform: rotate(-4deg); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 2px dashed rgba(255,255,255,.16); margin-top: 40px; padding-top: 22px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-family: var(--mono); font-size: .78rem; text-transform: uppercase; letter-spacing: .03em; color: #8a8278; }

@media (max-width: 860px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Responsive grids ---------- */
@media (max-width: 900px){ .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px){ .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---------- Mobile nav ---------- */
@media (max-width: 940px){
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed; inset: 78px 0 auto 0; flex-direction: column; align-items: stretch;
    background-color: var(--surface); background-image: var(--paper-tex);
    border-bottom: 2px dashed var(--line-strong); padding: 16px clamp(20px,5vw,40px) 26px;
    gap: 2px; transform: translateY(-130%); transition: transform .35s var(--ease); box-shadow: var(--shadow);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 13px 14px; font-size: .95rem; }
  .nav-cta .btn-ghost { display: none; }
}

/* ---------- 3D spinning antique globe ---------- */
.globe-stage { perspective: 1200px; display: grid; place-items: center; padding: clamp(26px, 5vw, 54px); position: relative; }
.globe-float { position: relative; transform-style: preserve-3d; animation: globeBob 7s var(--ease) infinite; }
@keyframes globeBob { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-14px) rotate(1deg); } }
.globe {
  position: relative; width: clamp(210px, 32vw, 340px); aspect-ratio: 1 / 1; border-radius: 50%;
  background-image: url('../assets/img/textures/worldmap.jpg');
  background-size: 200% 100%; background-repeat: repeat-x; background-position: 0 0;
  filter: sepia(.5) saturate(.85) brightness(1.03) contrast(1.04);
  border: 2px solid var(--ink);
  box-shadow: inset -26px -30px 62px rgba(30,26,20,.72), inset 18px 20px 44px rgba(255,253,247,.28), 0 34px 54px -22px rgba(42,37,30,.55);
}
.globe::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%; pointer-events: none;
  background:
    radial-gradient(circle at 32% 27%, rgba(255,253,240,.6), rgba(255,253,240,0) 46%),
    radial-gradient(circle at 74% 80%, rgba(20,18,14,.5), rgba(20,18,14,0) 55%);
  box-shadow: inset -16px -20px 44px rgba(30,26,20,.55);
}
.globe::after { content: ""; position: absolute; inset: -7px; border-radius: 50%; pointer-events: none; box-shadow: 0 0 46px 5px rgba(126,248,215,.28); }
/* dashed orbit ring with a travelling plane stamp */
.globe-orbit { position: absolute; inset: clamp(-30px, -5vw, -20px); border: 2px dashed var(--line-strong); border-radius: 50%; animation: orbitSpin 20s linear infinite; pointer-events: none; }
.globe-orbit .plane { position: absolute; top: -15px; left: 50%; width: 30px; height: 30px; margin-left: -15px; display: grid; place-items: center; background: var(--ochre-bright); border: 2px solid var(--ink); border-radius: 50%; color: var(--ink); font-size: .95rem; transform: rotate(45deg); }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
.globe-pin { position: absolute; z-index: 3; font-family: var(--mono); font-weight: 700; font-size: .66rem; text-transform: uppercase; letter-spacing: .04em; color: var(--ink); background: var(--teal-bright); border: 2px solid var(--ink); border-radius: 3px; padding: 3px 8px; box-shadow: 2px 2px 0 -1px rgba(42,37,30,.5); }
.globe-pin.p1 { top: 8%; left: -6%; transform: rotate(-6deg); }
.globe-pin.p2 { bottom: 12%; right: -8%; transform: rotate(5deg); background: var(--ochre-bright); }
.globe-pin.p3 { top: 46%; right: -12%; transform: rotate(-3deg); }
/* flight-corridor arcs over the spinning globe */
.globe-routes { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; z-index: 2; pointer-events: none; }
.globe-route { fill: none; stroke: var(--teal-bright); stroke-width: 1.4; stroke-linecap: round; stroke-dasharray: 3 4; opacity: .9; filter: drop-shadow(0 0 2px rgba(126,248,215,.75)); animation: routeMarch 1.05s linear infinite; }
.globe-comet { fill: #fffdf7; filter: drop-shadow(0 0 4px var(--teal-bright)) drop-shadow(0 0 8px rgba(126,248,215,.6)); }
.globe-node { fill: var(--teal-bright); stroke: var(--ink); stroke-width: .55; }
.globe-node.hub { fill: var(--ochre-bright); stroke-width: .7; }

/* ---------- Scroll-triggered passport stamps ---------- */
.stamp {
  position: absolute; z-index: 4; width: clamp(80px, 10vw, 122px); aspect-ratio: 1 / 1; border-radius: 50%;
  display: grid; place-items: center; text-align: center; gap: 0; padding: 6px;
  font-family: var(--mono); text-transform: uppercase; letter-spacing: .06em; line-height: 1.15;
  color: var(--teal); border: 2.5px solid currentColor; opacity: 0; pointer-events: none;
  --rot: -13deg; transform: rotate(var(--rot)) scale(1.6);
}
.stamp::before { content: ""; position: absolute; inset: 6px; border-radius: 50%; border: 1.5px dashed currentColor; opacity: .55; }
.stamp b { display: block; font-size: clamp(.72rem, 1.1vw, .84rem); font-weight: 700; }
.stamp small { display: block; font-size: .52rem; opacity: .85; margin-top: 3px; }
.stamp .st-ico { font-size: 1.05rem; line-height: 1; }
.stamp.ochre { color: var(--ochre); }
.stamp.ink { color: var(--ink); }
.stamp.light { color: var(--teal-bright); }
.stamp.stamped { animation: stampPress .55s var(--ease) forwards; }
@keyframes stampPress {
  0% { opacity: 0; transform: rotate(var(--rot)) scale(1.7); }
  55% { opacity: .96; transform: rotate(var(--rot)) scale(.9); }
  100% { opacity: .82; transform: rotate(var(--rot)) scale(1); }
}
@media (max-width: 680px){ .stamp { display: none; } }

/* ---------- Animated flight-route map (portfolio) ---------- */
.route-map { position: relative; width: 100%; aspect-ratio: 2 / 1; border: 2px solid var(--ink); border-radius: var(--radius); overflow: hidden; background: #221d16; box-shadow: var(--shadow); perspective: 1200px; }
.route-inner { position: absolute; inset: 0; transform-style: preserve-3d; transition: transform .3s var(--ease); }
.route-zoom { position: absolute; inset: 0; transform-style: preserve-3d; }
.route-map .map-img { position: absolute; inset: 0; background-image: url('../assets/img/textures/worldmap.jpg'); background-size: cover; background-position: center; filter: sepia(.55) brightness(.62) contrast(1.06) saturate(.85); }
.route-map .map-tint { position: absolute; inset: 0; background: radial-gradient(120% 90% at 52% 42%, rgba(126,248,215,.08), transparent 55%), linear-gradient(180deg, rgba(34,29,22,.5), rgba(34,29,22,.72)); }
.route-map .map-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(126,248,215,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(126,248,215,.08) 1px, transparent 1px); background-size: 7% 12%; }
.route-map svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; transform: translateZ(6px); }
.route-line { fill: none; stroke: var(--teal-bright); stroke-width: 2; stroke-linecap: round; stroke-dasharray: 5 7; opacity: .9; filter: drop-shadow(0 0 3px rgba(126,248,215,.55)); animation: routeMarch 1.1s linear infinite; }
@keyframes routeMarch { to { stroke-dashoffset: -24; } }
.route-plane { fill: var(--ochre-bright); stroke: var(--ink); stroke-width: 1; paint-order: stroke; }
.route-pins { position: absolute; inset: 0; transform-style: preserve-3d; pointer-events: none; }
.route-pin { position: absolute; transform: translate(-50%,-50%) translateZ(34px); display: flex; flex-direction: column; align-items: center; gap: 5px; }
.route-pin .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--teal-bright); border: 2px solid var(--ink); box-shadow: 0 0 0 0 rgba(126,248,215,.55); animation: pinPulse 2.4s var(--ease) infinite; }
.route-pin .lbl { font-family: var(--mono); font-weight: 700; font-size: .6rem; text-transform: uppercase; letter-spacing: .04em; color: var(--ink); background: var(--surface); border: 1.5px solid var(--ink); border-radius: 3px; padding: 2px 6px; white-space: nowrap; box-shadow: 1px 2px 0 -1px rgba(42,37,30,.5); }
.route-pin.hub .dot { width: 16px; height: 16px; background: var(--ochre-bright); }
.route-pin.hub .lbl { background: var(--ochre-bright); }
@keyframes pinPulse { 0% { box-shadow: 0 0 0 0 rgba(126,248,215,.5); } 70%,100% { box-shadow: 0 0 0 12px rgba(126,248,215,0); } }
.route-pin.hub .dot { animation: pinPulseHub 2.4s var(--ease) infinite; }
@keyframes pinPulseHub { 0% { box-shadow: 0 0 0 0 rgba(255,183,120,.6); } 70%,100% { box-shadow: 0 0 0 16px rgba(255,183,120,0); } }
.route-legend { display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: center; margin-top: 22px; font-family: var(--mono); font-size: .74rem; text-transform: uppercase; letter-spacing: .04em; color: #b7afa3; }
.route-legend span { display: inline-flex; align-items: center; gap: 8px; }
.route-legend i { width: 14px; height: 3px; border-radius: 2px; background: var(--teal-bright); display: inline-block; }
.route-legend i.hub { width: 11px; height: 11px; border-radius: 50%; background: var(--ochre-bright); border: 1.5px solid var(--ink); }
/* case-study mini route map */
.case-route { margin-top: 26px; }
.route-cap { display: block; font-family: var(--mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 10px; }
.route-cap b { color: var(--teal); }
.route-map.mini { max-width: 560px; }

/* ---------- 3D tilt (cards lift toward the cursor) ---------- */
.is-tilting { transition: transform .08s linear !important; will-change: transform; }
@media (hover: none), (pointer: coarse) { .is-tilting { transition: none !important; } }

/* ---------- Hero parallax decals ---------- */
.hero-parallax { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.hero.hero-photo .hero-parallax { z-index: 2; }
.hero-parallax .decal { position: absolute; will-change: transform; opacity: .9; }
.hero-parallax .stamp-decal { width: 92px; height: 92px; display: grid; place-items: center; border: 2px dashed rgba(255,253,247,.7); border-radius: 50%; color: rgba(255,253,247,.85); font-family: var(--mono); font-weight: 700; font-size: .6rem; text-align: center; text-transform: uppercase; letter-spacing: .06em; transform: rotate(-12deg); background: rgba(42,37,30,.14); backdrop-filter: blur(1px); }
.hero-parallax .d1 { top: 15%; right: 8%; }
.hero-parallax .d2 { bottom: 16%; right: 22%; }
.hero-parallax .d3 { top: 40%; right: 40%; }
@media (max-width: 760px){ .hero-parallax { display: none; } }

/* ---------- Hero aeroplanes in flight ---------- */
.hero-flights { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.hero-flights svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.flight-trail { fill: none; stroke: rgba(126,248,215,.55); stroke-width: 2; stroke-linecap: round; stroke-dasharray: 3 9; opacity: .7; filter: drop-shadow(0 0 3px rgba(126,248,215,.45)); animation: routeMarch 1.3s linear infinite; }
.flight-trail.t-dim { stroke: rgba(255,253,247,.5); opacity: .55; }
.hero-plane { fill: #fffdf7; stroke: rgba(42,37,30,.55); stroke-width: .9; paint-order: stroke; filter: drop-shadow(0 3px 5px rgba(0,0,0,.4)); }
/* soft drifting clouds (parallax depth) */
.hero-cloud { position: absolute; z-index: 1; border-radius: 50%; pointer-events: none;
  background: radial-gradient(closest-side, rgba(255,253,247,.5), rgba(255,253,247,0));
  filter: blur(6px); }
.hero-cloud.c1 { width: 320px; height: 120px; top: 18%; left: 8%; opacity: .5; animation: cloudDrift 34s linear infinite; }
.hero-cloud.c2 { width: 240px; height: 90px; top: 62%; right: 12%; opacity: .4; animation: cloudDrift 46s linear infinite reverse; }
@keyframes cloudDrift { 0% { transform: translateX(-30px); } 50% { transform: translateX(40px); } 100% { transform: translateX(-30px); } }
@media (max-width: 760px){ .hero-flights .p-sm, .hero-cloud { display: none; } }
@media (prefers-reduced-motion: reduce){ .flight-trail { animation: none; } .hero-plane { display: none; } .hero-cloud { animation: none; } }

/* ---------- Floating WhatsApp button ---------- */
.wa-fab {
  position: fixed; left: clamp(16px, 3vw, 26px); bottom: clamp(16px, 3vw, 26px); z-index: 200;
  display: inline-flex; align-items: center; gap: 0;
  height: 58px; padding: 0; border-radius: 999px; overflow: hidden;
  background: #25d366; color: #fff; border: 2px solid var(--ink);
  box-shadow: 3px 4px 0 -1px rgba(42,37,30,.85), 0 14px 30px -14px rgba(37,211,102,.9);
  transition: transform .25s var(--ease), box-shadow .25s, padding .28s var(--ease);
}
.wa-fab svg { width: 30px; height: 30px; flex: none; margin: 0 12px; }
.wa-fab .wa-label {
  font-family: var(--mono); font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .04em;
  white-space: nowrap; max-width: 0; opacity: 0; transition: max-width .28s var(--ease), opacity .2s, margin .28s var(--ease);
}
.wa-fab:hover { transform: translateY(-2px) rotate(-1.5deg); box-shadow: 4px 7px 0 -1px rgba(42,37,30,.85), 0 18px 34px -14px rgba(37,211,102,.95); }
.wa-fab:hover .wa-label { max-width: 160px; opacity: 1; margin-right: 20px; }
.wa-fab::after {
  content: ""; position: absolute; inset: -2px; border-radius: 999px; border: 2px solid #25d366;
  animation: waPulse 2.6s var(--ease) infinite; pointer-events: none;
}
@keyframes waPulse { 0% { transform: scale(1); opacity: .6; } 70%,100% { transform: scale(1.5); opacity: 0; } }
@media (max-width: 520px){ .wa-fab .wa-label { display: none; } .wa-fab svg { margin: 0 13px; } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-deco .pin { animation: none; }
  .wa-fab::after { animation: none; }
  .globe-float, .globe-orbit { animation: none; }
  .route-line, .globe-route { animation: none; }
  .stamp { opacity: .82; transform: rotate(var(--rot)) scale(1); }
  .stamp.stamped { animation: none; }
  html { scroll-behavior: auto; }
}
