/* ============================================================
   Global Aries Concierge — luxury editorial concierge site
   Display: Fraunces · Body: Archivo
   ============================================================ */

:root {
  --ink:        #15110b;   /* warm near-black */
  --ink-2:      #1f190f;
  --ink-soft:   #2a2316;
  --cream:      #f5eedd;   /* editorial paper */
  --cream-2:    #efe4cd;
  --sand:       #e4d6b6;
  --gold:       #c8a24c;   /* accent on dark */
  --gold-deep:  #8a6a23;   /* accent on cream */
  --gold-soft:  #d9bd79;
  --text-dark:  #2c2417;   /* body on cream */
  --text-mut:   #6f6450;   /* muted on cream */
  --line:       rgba(140,110,50,.22);
  --line-d:     rgba(220,190,120,.16);
  --shadow:     0 24px 60px -28px rgba(0,0,0,.55);
  --maxw:       1200px;
  --ease:       cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Archivo", system-ui, sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1,h2,h3 { font-family: "Fraunces", Georgia, serif; font-weight: 500; line-height: 1.04; letter-spacing: -.01em; }

.wrap { width: min(var(--maxw), 92vw); margin-inline: auto; }
.eyebrow {
  font-family: "Archivo", sans-serif; font-weight: 600;
  font-size: .72rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: .7em;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity:.7; }
.on-dark .eyebrow { color: var(--gold-soft); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-weight: 600; font-size: .92rem; letter-spacing: .02em;
  padding: .92em 1.6em; border-radius: 100px; cursor: pointer;
  border: 1px solid transparent; transition: all .35s var(--ease);
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--ink); box-shadow: 0 10px 30px -10px rgba(200,162,76,.6); }
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn-ghost { border-color: rgba(245,238,221,.4); color: var(--cream); }
.btn-ghost:hover { background: rgba(245,238,221,.08); border-color: var(--cream); }
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: var(--ink-soft); transform: translateY(-2px); }
.btn svg { width: 1.05em; height: 1.05em; }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(18px,4vw,46px);
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.nav.scrolled {
  background: rgba(21,17,11,.86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding-block: 12px; box-shadow: 0 1px 0 var(--line-d);
}
.nav .logo { height: 38px; width: auto; transition: height .4s var(--ease); }
.nav.scrolled .logo { height: 32px; }
.nav-links { display: flex; align-items: center; gap: clamp(14px,2vw,30px); }
.nav-links a.lnk {
  color: rgba(245,238,221,.82); font-size: .9rem; font-weight: 500; letter-spacing:.02em;
  position: relative; padding: 4px 0;
}
.nav-links a.lnk::after {
  content:""; position:absolute; left:0; bottom:-2px; height:1px; width:0; background: var(--gold);
  transition: width .35s var(--ease);
}
.nav-links a.lnk:hover { color: var(--cream); }
.nav-links a.lnk:hover::after { width:100%; }
.nav-toggle { display:none; background:none; border:0; cursor:pointer; padding:8px; }
.nav-toggle span { display:block; width:24px; height:2px; background: var(--cream); margin:5px 0; transition: .3s var(--ease); border-radius:2px; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  color: var(--cream); overflow: hidden;
}
.hero-bg { position:absolute; inset:0; z-index:0; background:#0c0a06; }
.hero-bg img.hs {
  position:absolute; inset:0; width:100%; height:100%; object-fit: cover;
  opacity:0; transition: opacity 1.8s ease;
}
.hero-bg img.hs.active { opacity:1; animation: kenburns 8s ease-out forwards; }
@keyframes kenburns { from{ transform: scale(1.06) translate(0,0);} to{ transform: scale(1.16) translate(-2%,-2%);} }
.hero-bg::after {
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(120% 90% at 20% 10%, rgba(21,17,11,.15), transparent 60%),
    linear-gradient(180deg, rgba(21,17,11,.62) 0%, rgba(21,17,11,.30) 35%, rgba(21,17,11,.72) 100%);
}
.grain { position:absolute; inset:0; z-index:2; pointer-events:none; opacity:.05; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.hero-inner { position: relative; z-index: 3; width: min(var(--maxw),92vw); margin-inline:auto; padding: 0 0 clamp(48px,9vh,110px); }
.hero h1 {
  font-size: clamp(2.9rem, 8.5vw, 6.4rem); font-weight: 400; font-style: italic;
  line-height: .98; letter-spacing: -.02em; max-width: 14ch; margin-top: 1.1rem;
  text-shadow: 0 2px 40px rgba(0,0,0,.4);
}
.hero .lede { max-width: 52ch; font-size: clamp(1rem,1.4vw,1.18rem); color: rgba(245,238,221,.88); margin-top: 1.4rem; }
.hero-cta { display:flex; flex-wrap:wrap; gap: 14px; margin-top: 2.2rem; }
.hero-loc {
  display:flex; flex-wrap:wrap; align-items:center; gap: clamp(10px,2vw,26px);
  margin-top: clamp(34px,5vh,52px); padding-top: 22px; border-top: 1px solid rgba(245,238,221,.18);
  font-size: .82rem; letter-spacing:.16em; text-transform:uppercase; color: rgba(245,238,221,.78);
}
.hero-loc b { color: var(--gold-soft); font-weight:600; }
.hero-loc .dot { width:4px; height:4px; border-radius:50%; background: var(--gold); opacity:.7; }

/* reveal animation */
[data-rise] { opacity:0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-rise].in { opacity:1; transform:none; }
.hero [data-rise]{ transition-delay: var(--d,0s); }

/* ---------- section scaffolding ---------- */
section { position: relative; }
.pad { padding-block: clamp(72px, 11vh, 140px); }
.sec-head { max-width: 760px; }
.sec-head h2 { font-size: clamp(2rem, 4.6vw, 3.5rem); margin-top: .5rem; }
.sec-head p { color: var(--text-mut); margin-top: 1.1rem; font-size: 1.08rem; }
.on-dark { background: var(--ink); color: var(--cream); }
.on-dark .sec-head p { color: rgba(245,238,221,.72); }

/* ---------- intro / promise ---------- */
.intro { background: var(--cream); }
.intro-head { max-width: 820px; }
.intro-head h2 { font-size: clamp(2rem,4.8vw,3.4rem); margin-top:.5rem; }
.sec-head h2 em, .intro-head h2 em { font-style: italic; color: var(--gold-deep); }

/* ---- visual journey flow ---- */
.journey { position: relative; display: flex; justify-content: space-between; gap: 6px;
  margin: clamp(46px,7vw,76px) 0 clamp(40px,6vw,62px); }
.journey::before {
  content:""; position:absolute; top: 33px; left: 8%; right: 8%; height: 2px; z-index:0;
  background: repeating-linear-gradient(90deg, var(--gold-deep) 0 7px, transparent 7px 15px);
  opacity:.45; transform: scaleX(0); transform-origin: left; transition: transform 1.2s var(--ease) .15s;
}
.journey.in::before { transform: scaleX(1); }
.jstep {
  position: relative; z-index: 1; flex: 1; min-width: 0;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px;
  opacity: 0; transform: translateY(16px); transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.journey.in .jstep { opacity: 1; transform: none; }
.journey.in .jstep:nth-child(1){ transition-delay:.18s; }
.journey.in .jstep:nth-child(2){ transition-delay:.32s; }
.journey.in .jstep:nth-child(3){ transition-delay:.46s; }
.journey.in .jstep:nth-child(4){ transition-delay:.60s; }
.journey.in .jstep:nth-child(5){ transition-delay:.74s; }
.journey.in .jstep:nth-child(6){ transition-delay:.88s; }
.jbadge {
  width: 66px; height: 66px; border-radius: 50%; display: grid; place-items: center; flex: none;
  background: var(--cream); border: 1.5px solid var(--gold-deep); color: var(--gold-deep);
  box-shadow: 0 10px 24px -14px rgba(138,106,35,.6);
  transition: transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.jbadge svg { width: 28px; height: 28px; }
.jstep:hover .jbadge { background: var(--ink); color: var(--gold); border-color: var(--ink); transform: translateY(-5px) scale(1.06); }
.jlabel { font-family:"Fraunces",serif; font-size: clamp(.98rem,1.4vw,1.12rem); line-height: 1.15; color: var(--text-dark); max-width: 13ch; }
.jsub { font-size: .78rem; letter-spacing:.02em; color: var(--gold-deep); opacity:.85; margin-top:-6px; }

.stats { display:grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border:1px solid var(--line); border-radius:18px; overflow:hidden; }
.stat { background: var(--cream); padding: 26px 24px; }
.stat .n { font-family:"Fraunces",serif; font-size: clamp(2rem,4vw,2.8rem); color: var(--gold-deep); line-height:1; }
.stat .l { font-size:.8rem; letter-spacing:.12em; text-transform:uppercase; color: var(--text-mut); margin-top:.6rem; }

/* ---------- services ---------- */
.svc-grid { display:grid; grid-template-columns: repeat(2,1fr); gap: 0; margin-top: clamp(34px,5vw,60px);
  border-top:1px solid var(--line-d); }
.svc {
  padding: 30px 30px 34px; border-bottom:1px solid var(--line-d); position:relative;
  transition: background .4s var(--ease);
}
.svc:nth-child(odd){ border-right:1px solid var(--line-d); }
.svc:hover { background: rgba(200,162,76,.06); }
.svc .num { font-family:"Fraunces",serif; font-style:italic; font-size: 1.2rem; color: var(--gold); opacity:.85; }
.svc h3 { font-size: 1.42rem; margin: .5rem 0 .7rem; color: var(--cream); }
.svc p { color: rgba(245,238,221,.66); font-size: .98rem; }

/* ---------- steps ---------- */
.steps { display:grid; grid-template-columns: repeat(3,1fr); gap: clamp(18px,2.4vw,30px); margin-top: clamp(34px,5vw,56px); }
.step { padding: 28px 26px; border:1px solid var(--line); border-radius:18px; background: var(--cream); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step .s-num { display:inline-grid; place-items:center; width:42px; height:42px; border-radius:50%;
  border:1px solid var(--gold-deep); color: var(--gold-deep); font-family:"Fraunces",serif; font-style:italic; font-size:1.1rem; }
.step h3 { font-size: 1.18rem; margin: 1rem 0 .5rem; }
.step p { color: var(--text-mut); font-size: .96rem; }

/* ---------- destinations ---------- */
.dest { background: var(--cream-2); }
.filters { display:flex; flex-wrap:wrap; gap: 10px; margin-top: clamp(28px,4vw,42px); }
.filter {
  font-family:"Archivo",sans-serif; font-size:.86rem; font-weight:600; letter-spacing:.03em;
  padding:.6em 1.15em; border-radius:100px; border:1px solid var(--line); background:transparent;
  color: var(--text-mut); cursor:pointer; transition: all .3s var(--ease);
}
.filter:hover { border-color: var(--gold-deep); color: var(--text-dark); }
.filter.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.gallery { display:grid; grid-template-columns: repeat(3,1fr); gap: clamp(14px,1.6vw,22px); margin-top: clamp(26px,3.5vw,40px); }
.card {
  position:relative; border-radius:16px; overflow:hidden; aspect-ratio: 4/5; background: var(--ink);
  box-shadow: 0 10px 30px -18px rgba(0,0,0,.4); transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.card.hide { display:none; }
.card img { width:100%; height:100%; object-fit:cover; transition: transform 1.1s var(--ease); }
.card::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 32%, rgba(15,12,7,.18) 52%, rgba(15,12,7,.9) 100%); }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card:hover img { transform: scale(1.08); }
.card .cap { position:absolute; inset:auto 0 0 0; z-index:2; padding: 22px 20px; color: var(--cream); }
.card .cap .place { font-family:"Fraunces",serif; font-size: 1.3rem; line-height:1.05; }
.card .cap .city { font-size:.72rem; letter-spacing:.18em; text-transform:uppercase; color: var(--gold-soft); margin-bottom:.4rem; display:block; }
.card .cap .desc { font-size:.86rem; color: rgba(245,238,221,.8); margin-top:.5rem; max-height:0; opacity:0; overflow:hidden; transition: max-height .5s var(--ease), opacity .4s var(--ease), margin .4s; }
.card:hover .cap .desc { max-height:8em; opacity:1; }

/* ---------- why ---------- */
.why-grid { display:grid; grid-template-columns: repeat(4,1fr); gap:1px; background: var(--line-d); border:1px solid var(--line-d); border-radius:18px; overflow:hidden; margin-top: clamp(34px,5vw,56px); }
.why { background: var(--ink); padding: 30px 26px; transition: background .4s var(--ease); }
.why:hover { background: var(--ink-soft); }
.why .ic { color: var(--gold); width:30px; height:30px; }
.why h3 { font-size: 1.12rem; margin:1rem 0 .55rem; color: var(--cream); }
.why p { font-size:.92rem; color: rgba(245,238,221,.66); }

/* ---------- testimonial ---------- */
.testi { background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%); color: var(--cream); }
.testi-inner { display:grid; grid-template-columns: 320px 1fr; gap: clamp(30px,5vw,72px); align-items:center; }
.testi-photos { position:relative; height:380px; }
.testi-photos img { position:absolute; border-radius:16px; box-shadow: var(--shadow); object-fit:cover; border:3px solid rgba(245,238,221,.08); }
.testi-photos img:first-child { width:210px; height:270px; top:0; left:0; transform: rotate(-4deg); z-index:1; }
.testi-photos img:last-child { width:200px; height:258px; bottom:0; right:0; transform: rotate(4deg); z-index:2; }
.testi blockquote { font-family:"Fraunces",serif; font-weight:400; font-size: clamp(1.4rem,2.5vw,2.05rem); line-height:1.34; }
.testi blockquote .mark { color: var(--gold); font-size:1.3em; }
.testi blockquote em { font-style:italic; color: var(--gold-soft); }
.testi .who { margin-top:1.6rem; font-size:.82rem; letter-spacing:.18em; text-transform:uppercase; color: var(--gold-soft); }
.testi .stars { color: var(--gold); letter-spacing:.2em; margin-bottom:1rem; }

/* ---------- packages ---------- */
.pkgs { display:grid; grid-template-columns: repeat(3,1fr); gap: clamp(16px,2vw,26px); margin-top: clamp(34px,5vw,56px); align-items:stretch; }
.pkg { display:flex; flex-direction:column; border:1px solid var(--line); border-radius:20px; padding: 34px 30px; background: var(--cream); position:relative; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.pkg:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pkg.feat { background: var(--ink); color: var(--cream); border-color: var(--ink); transform: scale(1.03); }
.pkg.feat:hover { transform: scale(1.03) translateY(-6px); }
.pkg .tier { font-size:.78rem; letter-spacing:.22em; text-transform:uppercase; color: var(--gold-deep); font-weight:600; }
.pkg.feat .tier { color: var(--gold-soft); }
.pkg .badge { position:absolute; top:-13px; left:50%; transform:translateX(-50%); background: var(--gold); color: var(--ink); font-size:.68rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase; padding:.4em 1em; border-radius:100px; }
.pkg .pk-name { font-family:"Fraunces",serif; font-size:1.7rem; margin:.6rem 0 1.2rem; }
.pkg ul { list-style:none; display:flex; flex-direction:column; gap:.7rem; flex:1; }
.pkg li { display:flex; gap:.6em; font-size:.95rem; color: var(--text-mut); }
.pkg.feat li { color: rgba(245,238,221,.78); }
.pkg li svg { flex:none; width:18px; height:18px; color: var(--gold-deep); margin-top:.2em; }
.pkg.feat li svg { color: var(--gold); }
.pkg li.top { font-weight:600; color: var(--text-dark); }
.pkg.feat li.top { color: var(--cream); }
.pkg .pk-cta { margin-top: 1.8rem; }
.pkg .pk-cta .btn { width:100%; justify-content:center; }
.pkg-note { text-align:center; color: var(--text-mut); font-size:.88rem; margin-top: 1.8rem; }

/* ---------- who we serve ---------- */
.serve-chips { display:flex; flex-wrap:wrap; gap:12px; margin-top: clamp(28px,4vw,42px); }
.chip { border:1px solid var(--line); border-radius:100px; padding:.7em 1.25em; font-size:.92rem; color: var(--text-dark); background: var(--cream); transition: all .3s var(--ease); }
.chip:hover { border-color: var(--gold-deep); background: rgba(200,162,76,.08); }

/* ---------- contact ---------- */
.contact { background: var(--ink); color: var(--cream); }
.contact-grid { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(34px,6vw,80px); align-items:start; }
.contact h2 { font-size: clamp(2rem,4.6vw,3.4rem); }
.contact .sub { color: rgba(245,238,221,.74); margin-top:1.1rem; max-width:46ch; }
.checklist { list-style:none; margin-top:1.8rem; display:grid; gap:.7rem; }
.checklist li { display:flex; gap:.7em; color: rgba(245,238,221,.82); font-size:.96rem; }
.checklist li svg { color: var(--gold); flex:none; width:18px; height:18px; margin-top:.2em; }
.ctcard { border:1px solid var(--line-d); border-radius:20px; padding: 10px 8px; background: rgba(245,238,221,.02); }
.ctline { display:flex; align-items:center; gap:16px; padding: 18px 18px; border-bottom:1px solid var(--line-d); transition: background .3s var(--ease); }
.ctcard a.ctline:last-child { border-bottom:0; }
.ctline:hover { background: rgba(200,162,76,.07); }
.ctline .ci { width:42px; height:42px; flex:none; border-radius:50%; display:grid; place-items:center; background: rgba(200,162,76,.12); color: var(--gold); }
.ctline .ci svg { width:20px; height:20px; }
.ctline .lbl { display:block; font-size:.72rem; letter-spacing:.16em; text-transform:uppercase; color: var(--gold-soft); margin-bottom:2px; }
.ctline .val { display:block; font-size:1.02rem; color: var(--cream); font-weight:500; word-break: break-word; }
.contact-cta { margin-top: 1.6rem; }

/* ---------- footer ---------- */
.footer { background: var(--ink-2); color: rgba(245,238,221,.6); padding-block: 56px 30px; border-top:1px solid var(--line-d); }
.footer-top { display:flex; flex-wrap:wrap; justify-content:space-between; gap:30px; align-items:flex-start; }
.footer .f-logo { height: 46px; margin-bottom: 14px; }
.footer .tag { font-family:"Fraunces",serif; font-style:italic; font-size:1.15rem; color: var(--gold-soft); }
.footer .f-loc { font-size:.82rem; letter-spacing:.14em; text-transform:uppercase; margin-top:.8rem; }
.footer nav { display:flex; flex-wrap:wrap; gap: 22px; }
.footer nav a { font-size:.92rem; color: rgba(245,238,221,.72); }
.footer nav a:hover { color: var(--gold-soft); }
.footer-bottom { margin-top: 40px; padding-top: 22px; border-top:1px solid var(--line-d); display:flex; flex-wrap:wrap; justify-content:space-between; gap:12px; font-size:.8rem; }

/* ---------- floating whatsapp ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display:flex; align-items:center; gap:0; overflow:hidden;
  background: #1faf54; color:#fff; border-radius: 100px; padding: 14px;
  box-shadow: 0 14px 34px -10px rgba(31,175,84,.6); transition: all .4s var(--ease);
  max-width: 56px;
}
.wa-float svg { width: 28px; height:28px; flex:none; }
.wa-float .wa-txt { font-weight:600; font-size:.92rem; white-space:nowrap; padding-left:0; max-width:0; opacity:0; transition: all .4s var(--ease); }
.wa-float:hover { max-width: 280px; background:#26c462; }
.wa-float:hover .wa-txt { max-width:200px; opacity:1; padding-left:10px; padding-right:8px; }

/* ---------- mobile ---------- */
@media (max-width: 940px) {
  .intro-grid, .testi-inner, .contact-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .gallery { grid-template-columns: repeat(2,1fr); }
  .pkgs { grid-template-columns: 1fr; }
  .pkg.feat { transform:none; }
  .pkg.feat:hover { transform: translateY(-6px); }
  .testi-photos { height: 320px; max-width: 360px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-links { position: fixed; inset: 0; width: 100%; height: 100dvh;
    background: #15110b;
    flex-direction: column; align-items:center; justify-content:center; gap: 30px;
    padding: 80px 40px 40px; transform: translateX(100%); transition: transform .42s var(--ease); z-index:101;
    overflow-y:auto; }
  .nav-links.open { transform: none; }
  .nav-links a.lnk { font-size: 1.55rem; color: var(--cream); }
  .nav-links .btn { width:100%; max-width:300px; justify-content:center; margin-top:8px; }
  body.menu-open { overflow:hidden; }
  .nav-toggle { display:block; z-index:102; }
  .nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2){ opacity:0; }
  .nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
  .svc-grid { grid-template-columns: 1fr; }
  .svc:nth-child(odd){ border-right:0; }
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .hero h1 { font-size: clamp(2.6rem,12vw,3.6rem); }
  /* journey -> vertical track */
  .journey { flex-direction: column; gap: 0; }
  .journey::before { top: 6%; bottom: 6%; left: 33px; right: auto; width: 2px; height: auto;
    background: repeating-linear-gradient(180deg, var(--gold-deep) 0 7px, transparent 7px 15px);
    transform: scaleY(0); transform-origin: top; }
  .journey.in::before { transform: scaleY(1); }
  .jstep { display: grid; grid-template-columns: auto 1fr; column-gap: 20px; align-items: center;
    text-align: left; padding: 12px 0; }
  .jbadge { grid-row: 1 / span 2; width: 66px; height: 66px; }
  .jlabel { grid-column: 2; align-self: end; max-width: none; font-size: 1.22rem; }
  .jsub { grid-column: 2; align-self: start; margin-top: 2px; }
}
@media (max-width: 460px) {
  .gallery { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior:auto; }
  [data-rise]{ opacity:1 !important; transform:none !important; }
}
