:root {
  --black: #111318;
  --black-soft: #1a1d24;
  --paper: #f4f0e8;
  --paper-2: #ebe5d9;
  --white: #ffffff;
  --ink: #15171c;
  --muted: #676b73;
  --line: rgba(17, 19, 24, .16);
  --blue: #3c5cff;
  --blue-dark: #2439b9;
  --orange: #ff7048;
  --lime: #dfff57;
  --radius: 30px;
  --shadow: 0 28px 80px rgba(12, 15, 22, .18);
  --ease: cubic-bezier(.2,.75,.25,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.container { width: min(1260px, calc(100% - 48px)); margin-inline: auto; }
.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; }

.cursor-glow {
  position: fixed;
  z-index: 80;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(223,255,87,.12), rgba(60,92,255,.04) 45%, transparent 72%);
  opacity: 0;
  transition: opacity .2s ease;
  mix-blend-mode: screen;
}
body:hover .cursor-glow { opacity: 1; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: white;
  transition: background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(244,240,232,.9);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(17,19,24,.1);
  backdrop-filter: blur(18px);
}
.header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; position: relative; z-index: 4; }
.brand-symbol { position: relative; width: 30px; height: 30px; display: inline-block; }
.brand-symbol i { position: absolute; display: block; border-radius: 50%; }
.brand-symbol i:first-child { width: 24px; height: 24px; left: 0; top: 0; background: var(--lime); }
.brand-symbol i:last-child { width: 15px; height: 15px; right: 0; bottom: 0; background: var(--orange); mix-blend-mode: screen; }
.brand-word { font-family: "Space Grotesk", sans-serif; font-weight: 700; letter-spacing: -.055em; font-size: 1.35rem; }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: .95rem; font-weight: 500; }
.main-nav > a:not(.button) { position: relative; }
.main-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1px; background: currentColor; transition: right .25s var(--ease); }
.main-nav > a:not(.button):hover::after { right: 0; }
.nav-mail { opacity: .72; }
.menu-button { display: none; border: 0; background: transparent; width: 46px; height: 46px; padding: 10px; position: relative; z-index: 4; cursor: pointer; }
.menu-button span:not(.sr-only) { display: block; width: 25px; height: 2px; background: currentColor; margin: 7px auto; transition: transform .25s ease; }
.menu-button[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

/* Buttons */
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.button span { font-size: 1.1em; }
.button:hover { transform: translateY(-3px); }
.button-small { min-height: 44px; padding: 0 19px; font-size: .9rem; }
.button-light { color: var(--black); background: white; }
.site-header.is-scrolled .button-light { color: white; background: var(--black); }
.button-accent { color: var(--black); background: var(--lime); }
.button-accent:hover { background: white; }
.button-ghost { color: white; border-color: rgba(255,255,255,.48); background: rgba(255,255,255,.08); backdrop-filter: blur(12px); }
.button-ghost:hover { border-color: white; background: rgba(255,255,255,.18); }
.button-dark { color: white; background: var(--black); }
.button-dark:hover { background: var(--blue); }

/* Hero */
.hero-visual {
  position: relative;
  min-height: 100svh;
  color: white;
  overflow: hidden;
  background: var(--black);
}
.hero-background {
  position: absolute;
  inset: -7%;
  background-image: url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=2200&q=88");
  background-position: center 48%;
  background-size: cover;
  transform: scale(1.07);
  will-change: transform;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 30%, rgba(60,92,255,.14), transparent 34%),
    linear-gradient(90deg, rgba(8,10,14,.93) 0%, rgba(8,10,14,.65) 48%, rgba(8,10,14,.2) 100%),
    linear-gradient(0deg, rgba(8,10,14,.72) 0%, transparent 38%);
}
.hero-content { position: relative; z-index: 2; min-height: 100svh; padding-top: 154px; padding-bottom: 90px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: center; }
.hero-copy { max-width: 880px; }
.hero-kicker { margin: 0 0 26px; display: flex; align-items: center; gap: 11px; text-transform: uppercase; letter-spacing: .18em; font-size: .72rem; font-weight: 700; }
.hero-kicker > span { width: 28px; height: 2px; background: var(--lime); }
h1, h2, h3 { font-family: "Space Grotesk", sans-serif; letter-spacing: -.055em; line-height: .98; }
h1 { margin: 0; font-size: clamp(3.8rem, 7.15vw, 7.65rem); font-weight: 600; }
h1 em { color: var(--lime); font-style: normal; }
h2 { margin: 0; font-size: clamp(2.7rem, 5.4vw, 5.8rem); font-weight: 600; }
h3 { margin: 0; font-weight: 600; }
.hero-text { max-width: 650px; margin: 30px 0 0; color: rgba(255,255,255,.76); font-size: clamp(1rem, 1.45vw, 1.22rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }

.floating-cards { position: relative; min-height: 520px; align-self: end; }
.float-card { position: absolute; border: 1px solid rgba(255,255,255,.22); border-radius: 24px; color: white; box-shadow: 0 28px 60px rgba(0,0,0,.25); backdrop-filter: blur(22px); transform-style: preserve-3d; will-change: transform; }
.route-card { width: min(100%, 370px); right: 0; top: 30px; padding: 26px; background: rgba(17,19,24,.58); }
.float-card-head { display: flex; justify-content: space-between; color: rgba(255,255,255,.58); font-size: .7rem; text-transform: uppercase; letter-spacing: .14em; }
.float-card-head b { color: var(--lime); }
.route-points { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; margin: 38px 0 18px; }
.route-points strong { font-family: "Space Grotesk", sans-serif; font-size: 2rem; }
.route-points i { position: relative; display: flex; align-items: center; }
.route-points i::before { content: ""; width: 100%; height: 1px; background: rgba(255,255,255,.35); }
.route-points svg { width: 20px; height: 20px; margin-left: -16px; background: transparent; }
.route-card > p { margin: 0; color: rgba(255,255,255,.58); font-size: .86rem; }
.status-card { width: 330px; right: 84px; top: 267px; padding: 20px; display: flex; gap: 15px; align-items: center; background: rgba(255,255,255,.9); color: var(--ink); }
.status-icon { flex: 0 0 auto; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--lime); }
.status-icon svg { width: 21px; height: 21px; stroke-width: 2.4; }
.status-card strong, .status-card p { display: block; }
.status-card p { margin: 4px 0 0; color: var(--muted); font-size: .78rem; }
.support-card { left: 0; bottom: 18px; padding: 18px 22px; display: flex; gap: 16px; align-items: center; background: rgba(60,92,255,.82); }
.avatar-stack { display: flex; align-items: center; }
.avatar-stack span { display: grid; place-items: center; width: 43px; height: 43px; border-radius: 50%; border: 2px solid var(--blue); background: white; color: var(--black); font-weight: 700; font-size: .75rem; }
.avatar-stack span:last-child { margin-left: -11px; background: var(--lime); }
.support-card p { margin: 2px 0 0; color: rgba(255,255,255,.7); font-size: .78rem; }
.scroll-cue { position: absolute; z-index: 3; left: 50%; bottom: 25px; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: .67rem; text-transform: uppercase; letter-spacing: .15em; color: rgba(255,255,255,.55); }
.scroll-cue i { display: block; width: 1px; height: 26px; background: linear-gradient(white, transparent); animation: scrollCue 1.6s ease-in-out infinite; }
@keyframes scrollCue { 0%,100%{ transform: scaleY(.6); opacity:.45;} 50%{ transform: scaleY(1); opacity:1;} }

/* Marquee */
.marquee { overflow: hidden; background: var(--lime); color: var(--black); border-bottom: 1px solid rgba(0,0,0,.18); }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 25px; padding: 17px 0; animation: marquee 32s linear infinite; font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: .92rem; text-transform: uppercase; letter-spacing: .09em; }
.marquee-track i { color: var(--blue); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Shared sections */
.section { padding: 130px 0; position: relative; }
.section-title { display: flex; flex-direction: column; gap: 20px; margin-bottom: 66px; }
.section-label { margin: 0; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: var(--blue); }

/* Bento services */
.service-showcase { background: var(--paper); }
.bento-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; grid-template-rows: 350px 315px; gap: 18px; }
.bento-card { position: relative; overflow: hidden; border-radius: var(--radius); min-width: 0; box-shadow: 0 1px 0 rgba(255,255,255,.8) inset; transform-style: preserve-3d; will-change: transform; }
.bento-flight { grid-row: 1 / 3; }
.bento-hotel { grid-column: 2 / 4; }
.bento-airport { background: var(--blue); color: white; }
.bento-transfer { background: var(--orange); }
.bento-support { background: var(--black); color: white; }
.bento-photo, .bento-overlay { position: absolute; inset: 0; }
.bento-photo { background-size: cover; background-position: center; transition: transform .8s var(--ease); }
.bento-card:hover .bento-photo { transform: scale(1.06); }
.photo-flight { background-image: url("https://images.unsplash.com/photo-1692726537479-e898411b13cb?auto=format&fit=crop&w=1300&q=88"); background-position: 55% center; }
.photo-hotel { background-image: url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1500&q=88"); }
.bento-overlay { background: linear-gradient(0deg, rgba(5,7,12,.84), rgba(5,7,12,.12) 70%); }
.bento-content { position: relative; z-index: 2; height: 100%; padding: 28px; display: grid; grid-template-columns: auto 1fr auto; align-items: end; gap: 18px; }
.bento-content.light { color: white; }
.bento-content.dark { color: inherit; }
.service-icon { align-self: start; display: grid; place-items: center; width: 54px; height: 54px; border: 1px solid currentColor; border-radius: 18px; }
.service-icon svg { width: 27px; height: 27px; }
.bento-content h3 { margin-bottom: 10px; font-size: clamp(1.55rem, 2.2vw, 2.3rem); }
.bento-content p { margin: 0; max-width: 430px; color: rgba(255,255,255,.68); }
.bento-transfer .bento-content p { color: rgba(17,19,24,.65); }
.card-arrow { align-self: start; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.15); font-size: 1.3rem; transition: transform .3s var(--ease), background .3s var(--ease); }
.bento-transfer .card-arrow { background: rgba(17,19,24,.1); }
.bento-card:hover .card-arrow { transform: rotate(45deg); background: var(--lime); color: var(--black); }
.airport-orbit { position: absolute; right: -60px; bottom: -80px; width: 280px; height: 280px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; animation: orbit 14s linear infinite; }
.airport-orbit i { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--lime); }
.airport-orbit i:nth-child(1) { left: 50%; top: -6px; }
.airport-orbit i:nth-child(2) { right: 22px; top: 70px; background: var(--orange); }
.airport-orbit i:nth-child(3) { left: 35px; bottom: 30px; background: white; }
@keyframes orbit { to { transform: rotate(360deg); } }

/* Story */
.support-story { background: var(--black); color: white; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.story-photo { position: relative; min-height: 690px; border-radius: var(--radius); overflow: hidden; }
.story-photo-inner { position: absolute; inset: -5%; background-image: url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1500&q=88"); background-size: cover; background-position: center; transition: transform .15s linear; }
.story-sticker { position: absolute; left: 30px; bottom: 30px; width: 190px; height: 190px; display: flex; flex-direction: column; justify-content: center; align-items: center; border-radius: 50%; background: var(--lime); color: var(--black); transform: rotate(-8deg); text-align: center; text-transform: uppercase; font-size: .68rem; letter-spacing: .1em; }
.story-sticker strong { font-family: "Space Grotesk", sans-serif; font-size: 1.25rem; letter-spacing: -.04em; text-transform: none; }
.story-copy h2 { margin: 18px 0 30px; }
.story-copy > p:not(.section-label) { max-width: 610px; color: rgba(255,255,255,.66); font-size: 1.08rem; }
.check-list { list-style: none; margin: 42px 0 0; padding: 0; }
.check-list li { display: grid; grid-template-columns: 45px 1fr; gap: 16px; padding: 21px 0; border-top: 1px solid rgba(255,255,255,.16); }
.check-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.16); }
.check-list span { color: var(--lime); font-size: .75rem; }

/* Audience tabs */
.audience-tabs-section { background: var(--paper-2); }
.audience-tabs { border-radius: var(--radius); overflow: hidden; background: white; box-shadow: 0 20px 60px rgba(17,19,24,.08); }
.tab-buttons { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line); }
.tab-button { border: 0; background: transparent; padding: 25px; font-weight: 700; cursor: pointer; color: var(--muted); transition: background .25s ease, color .25s ease; }
.tab-button + .tab-button { border-left: 1px solid var(--line); }
.tab-button.is-active { background: var(--blue); color: white; }
.tab-stage { min-height: 570px; }
.tab-panel { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 570px; }
.tab-panel[hidden] { display: none; }
.tab-panel.is-active { animation: panelIn .5s var(--ease); }
@keyframes panelIn { from { opacity:0; transform:translateY(12px);} to {opacity:1; transform:none;} }
.tab-visual { min-height: 570px; background-size: cover; background-position: center; }
.visual-business {
  background-image: linear-gradient(0deg, rgba(17,19,24,.08), rgba(17,19,24,.08)), url("../img/audience-business-v2.96a1ab8398da.webp");
  background-position: center 38%;
}
.visual-private {
  background-image: linear-gradient(0deg, rgba(17,19,24,.06), rgba(17,19,24,.06)), url("../img/audience-family.01cb25474e3f.webp");
  background-position: center 44%;
}
.visual-agency {
  background-image: linear-gradient(0deg, rgba(17,19,24,.10), rgba(17,19,24,.10)), url("../img/audience-agency.0de47aecbc4c.webp");
  background-position: center 48%;
}
.tab-copy { padding: 60px; display: flex; flex-direction: column; justify-content: center; }
.tab-copy > span { color: var(--blue); font-size: .75rem; letter-spacing: .16em; }
.tab-copy h3 { margin: 32px 0 22px; font-size: clamp(2.1rem, 3.2vw, 3.5rem); }
.tab-copy p { color: var(--muted); font-size: 1.05rem; }
.tab-copy a { margin-top: 30px; font-weight: 700; color: var(--blue); }

/* Request */
.request-section { background: var(--blue); color: white; overflow: hidden; }
.request-section::before { content: ""; position: absolute; width: 520px; height: 520px; left: -180px; bottom: -250px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.035), 0 0 0 150px rgba(255,255,255,.025); }
.request-wrap { position: relative; z-index: 2; display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.request-copy h2 { margin: 18px 0 25px; }
.request-copy > p:not(.section-label) { max-width: 420px; color: rgba(255,255,255,.66); }
.request-copy .section-label { color: var(--lime); }
.request-mail { display: inline-flex; gap: 10px; align-items: center; margin-top: 38px; font-weight: 700; font-size: 1.15rem; border-bottom: 1px solid rgba(255,255,255,.35); padding-bottom: 5px; }
.request-form { background: var(--paper); color: var(--ink); border-radius: var(--radius); padding: 38px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.field input:not([type="checkbox"]), .field select, .field textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(17,19,24,.26); border-radius: 0; background: transparent; padding: 13px 0; color: var(--ink); outline: none; transition: border-color .2s ease; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); }
.field textarea { min-height: 118px; resize: vertical; }
.consent { flex-direction: row; align-items: flex-start; gap: 10px; }
.consent label { text-transform: none; letter-spacing: 0; color: var(--muted); font-weight: 500; }
.consent input { margin-top: 4px; accent-color: var(--blue); }
.errorlist { margin: 0; padding: 0; list-style: none; color: #bd2f26; font-size: .78rem; }
.request-form .button { margin-top: 28px; }
.messages { position: fixed; z-index: 70; top: 100px; left: 50%; transform: translateX(-50%); }
.message { padding: 15px 20px; border-radius: 999px; background: var(--lime); color: var(--black); font-weight: 700; box-shadow: var(--shadow); }

/* Inner pages */
.page-hero { position: relative; min-height: 78svh; display: flex; align-items: flex-end; overflow: hidden; background: var(--black); color: white; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .54; }
.page-hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,12,17,.92), rgba(10,12,17,.25)), linear-gradient(0deg, rgba(10,12,17,.75), transparent 55%); }
.page-hero-services .page-hero-bg { background-image: url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=2200&q=88"); }
.page-hero-clients .page-hero-bg { background-image: url("https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=2200&q=88"); }
.page-hero-about .page-hero-bg { background-image: url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=2200&q=88"); }
.page-hero-content { position: relative; z-index: 2; padding-top: 170px; padding-bottom: 85px; }
.page-hero h1 { max-width: 1050px; }
.page-hero .page-hero-content > p:last-child { max-width: 680px; color: rgba(255,255,255,.7); font-size: 1.1rem; margin-top: 28px; }
.page-hero-legal { min-height: 68svh; background: var(--blue); }

.service-list-section { background: var(--paper); }
.service-list { display: flex; flex-direction: column; }
.service-row { display: grid; grid-template-columns: 50px 80px 1fr 58px; gap: 28px; align-items: center; padding: 34px 20px; border-top: 1px solid var(--line); transition: background .25s ease, padding .25s ease; transform-style: preserve-3d; }
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-row:hover { background: white; padding-left: 34px; padding-right: 34px; }
.service-row-number { color: var(--blue); font-size: .75rem; letter-spacing: .14em; }
.service-row-icon { display: grid; place-items: center; width: 68px; height: 68px; border-radius: 22px; background: var(--blue); color: white; }
.service-row:nth-child(2n) .service-row-icon { background: var(--orange); color: var(--black); }
.service-row-icon svg { width: 31px; height: 31px; }
.service-row-copy h2 { font-size: clamp(2rem, 3.4vw, 3.6rem); }
.service-row-copy p { margin: 10px 0 0; color: var(--muted); }
.service-row-arrow { display: grid; place-items: center; width: 54px; height: 54px; border: 1px solid var(--line); border-radius: 50%; font-size: 1.3rem; transition: background .25s ease, transform .25s ease; }
.service-row:hover .service-row-arrow { background: var(--lime); transform: rotate(45deg); }
.compact-cta { background: var(--black); color: white; text-align: center; }
.compact-cta .container { max-width: 920px; }
.compact-cta h2 { margin: 20px 0 36px; }
.compact-cta .section-label { color: var(--lime); }

.client-story-section { background: var(--paper); }
.client-story-grid { display: flex; flex-direction: column; }
.client-story { display: grid; grid-template-columns: 110px 1fr; gap: 50px; padding: 70px 0; border-top: 1px solid var(--line); }
.client-story:last-child { border-bottom: 1px solid var(--line); }
.client-story-number { font-family: "Space Grotesk", sans-serif; font-size: 3rem; color: var(--orange); }
.client-story:nth-child(2) .client-story-number { color: var(--blue); }
.client-story:nth-child(3) .client-story-number { color: #7a9c00; }
.client-story h2 { max-width: 950px; margin: 18px 0 24px; }
.client-story p:not(.section-label) { max-width: 680px; color: var(--muted); font-size: 1.05rem; }
.client-story a { display: inline-block; margin-top: 20px; color: var(--blue); font-weight: 700; }

.about-manifesto { background: var(--lime); }
.about-manifesto-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 100px; align-items: start; }
.manifesto-lead { margin: 0; font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: clamp(2.7rem, 5vw, 5.4rem); letter-spacing: -.055em; line-height: 1; }
.manifesto-copy { border-left: 1px solid rgba(17,19,24,.28); padding-left: 45px; font-size: 1.1rem; }
.manifesto-copy p { margin: 0 0 25px; }

/* Footer */
.site-footer { background: var(--black); color: white; padding: 90px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; align-items: end; }
.footer-title > span { display: block; color: rgba(255,255,255,.42); text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; }
.footer-title > a { display: inline-flex; align-items: center; gap: 18px; margin-top: 15px; font-family: "Space Grotesk", sans-serif; font-size: clamp(2.1rem, 4.6vw, 5.2rem); letter-spacing: -.055em; border-bottom: 2px solid rgba(255,255,255,.25); }
.footer-title > a b { color: var(--lime); font-size: .55em; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 26px; color: rgba(255,255,255,.62); }
.footer-nav a:hover { color: var(--lime); }
.footer-bottom { display: grid; grid-template-columns: 1fr auto auto; gap: 36px; align-items: center; margin-top: 90px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.42); font-size: .82rem; }
.brand-footer { color: white; }

/* Reveal and motion */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .cursor-glow { display: none; }
}

@media (max-width: 1050px) {
  .hero-content { grid-template-columns: 1fr; align-items: end; }
  .floating-cards { position: absolute; right: 5vw; bottom: 85px; width: 360px; opacity: .92; }
  .hero-copy { position: relative; z-index: 3; max-width: 760px; }
  .bento-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 410px 300px 300px; }
  .bento-flight { grid-row: 1 / 2; }
  .bento-hotel { grid-column: 2 / 3; }
  .bento-airport, .bento-transfer, .bento-support { grid-column: auto; }
  .bento-support { grid-column: 1 / 3; }
  .story-grid { gap: 55px; }
  .story-photo { min-height: 610px; }
  .tab-copy { padding: 42px; }
}

@media (max-width: 860px) {
  .container { width: min(100% - 34px, 1260px); }
  .header-inner { min-height: 76px; }
  .menu-button { display: block; }
  .main-nav { position: fixed; inset: 0; padding: 120px 28px 42px; background: var(--blue); color: white; flex-direction: column; justify-content: flex-start; align-items: flex-start; gap: 22px; transform: translateX(100%); transition: transform .45s var(--ease); font-family: "Space Grotesk", sans-serif; }
  .main-nav.is-open { transform: none; }
  .main-nav a { font-size: 2rem; }
  .main-nav .nav-mail { margin-top: auto; font-family: "DM Sans", sans-serif; font-size: 1rem; }
  .main-nav .button { font-family: "DM Sans", sans-serif; font-size: 1rem; background: white; color: var(--black); }
  .site-header.is-scrolled .main-nav { color: white; }
  .site-header.is-scrolled .brand { color: var(--ink); }
  .site-header.is-scrolled:has(.main-nav.is-open) .brand, .site-header.is-scrolled:has(.main-nav.is-open) .menu-button { color: white; }
  .hero-content { padding-top: 130px; padding-bottom: 120px; }
  h1 { font-size: clamp(3.5rem, 11.5vw, 6.6rem); }
  .floating-cards { display: none; }
  .hero-shade { background: linear-gradient(90deg, rgba(8,10,14,.92), rgba(8,10,14,.35)), linear-gradient(0deg, rgba(8,10,14,.78), transparent 60%); }
  .section { padding: 96px 0; }
  .section-title { margin-bottom: 48px; }
  .bento-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 330px); }
  .bento-flight, .bento-hotel, .bento-support { grid-column: auto; grid-row: auto; }
  .story-grid, .request-wrap, .about-manifesto-grid { grid-template-columns: 1fr; gap: 60px; }
  .story-photo { min-height: 560px; }
  .tab-panel { grid-template-columns: 1fr; }
  .tab-visual { min-height: 380px; }
  .tab-stage, .tab-panel { min-height: 0; }
  .tab-buttons { overflow-x: auto; grid-template-columns: repeat(3, minmax(170px, 1fr)); }
  .request-copy { max-width: 620px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { grid-template-columns: 1fr; gap: 16px; }
  .service-row { grid-template-columns: 36px 65px 1fr; }
  .service-row-arrow { display: none; }
  .client-story { grid-template-columns: 70px 1fr; gap: 28px; }
  .manifesto-copy { border-left: 0; border-top: 1px solid rgba(17,19,24,.28); padding: 35px 0 0; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 26px, 1260px); }
  .cursor-glow { display: none; }
  .hero-content { padding-top: 118px; padding-bottom: 98px; }
  .hero-background { background-position: 61% center; }
  h1 { font-size: clamp(3.15rem, 15vw, 5rem); }
  h2 { font-size: clamp(2.5rem, 12vw, 4rem); }
  .hero-text { margin-top: 23px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .scroll-cue { display: none; }
  .marquee-track { padding: 13px 0; font-size: .78rem; }
  .section { padding: 78px 0; }
  .bento-grid { grid-template-rows: 430px 310px 310px 310px 310px; }
  .bento-content { padding: 22px; grid-template-columns: 1fr auto; }
  .service-icon { grid-column: 1 / -1; width: 48px; height: 48px; }
  .bento-content p { font-size: .9rem; }
  .story-photo { min-height: 470px; }
  .story-sticker { width: 145px; height: 145px; left: 18px; bottom: 18px; }
  .story-copy h2 { margin-top: 16px; }
  .tab-button { padding: 20px 16px; font-size: .86rem; }
  .tab-visual { min-height: 300px; }
  .tab-copy { padding: 30px 23px 38px; }
  .tab-copy h3 { margin-top: 24px; }
  .request-form { padding: 25px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .request-form .button { width: 100%; }
  .page-hero { min-height: 75svh; }
  .page-hero-content { padding-top: 135px; padding-bottom: 55px; }
  .service-row { grid-template-columns: 32px 52px 1fr; gap: 14px; padding: 28px 0; }
  .service-row:hover { padding-left: 0; padding-right: 0; }
  .service-row-icon { width: 50px; height: 50px; border-radius: 16px; }
  .service-row-icon svg { width: 24px; height: 24px; }
  .service-row-copy h2 { font-size: 1.75rem; }
  .service-row-copy p { font-size: .88rem; }
  .client-story { grid-template-columns: 1fr; gap: 12px; padding: 50px 0; }
  .client-story-number { font-size: 2rem; }
  .footer-title > a { font-size: clamp(1.85rem, 9.2vw, 3.3rem); }
  .footer-nav { grid-template-columns: 1fr; }
  .site-footer { padding-top: 70px; }
}

/* TSTORE contact/account update */
.nav-phone { font-variant-numeric: tabular-nums; opacity: .82; white-space: nowrap; }
.account-button { gap: 9px; }
.account-button > span { font-size: inherit; }
.account-button small {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--black);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-header.is-scrolled .account-button small { background: var(--orange); }

/* The hero visual is a personal service desk, not a route diagram. */
.travel-desk {
  position: relative;
  min-height: 590px;
  align-self: center;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.travel-desk-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: saturate(1.05);
}
.travel-desk-orb-lime {
  width: 270px;
  height: 270px;
  right: 8px;
  top: 0;
  background: rgba(223,255,87,.9);
}
.travel-desk-orb-orange {
  width: 170px;
  height: 170px;
  left: 4px;
  bottom: 28px;
  background: rgba(255,112,72,.88);
}
.desk-panel {
  width: min(100%, 470px);
  min-height: 510px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 36px;
  background: rgba(244,240,232,.94);
  color: var(--ink);
  box-shadow: 0 34px 90px rgba(0,0,0,.34);
  backdrop-filter: blur(22px);
  transform: rotate(-2deg);
  transform-style: preserve-3d;
  will-change: transform;
}
.desk-panel-head,
.desk-panel-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.desk-panel-head i {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-style: normal;
  color: #326922;
}
.desk-panel-head i b {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #63c44d;
  box-shadow: 0 0 0 5px rgba(99,196,77,.14);
}
.desk-manager {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
  margin: 36px 0 30px;
  padding-bottom: 27px;
  border-bottom: 1px solid var(--line);
}
.desk-avatar {
  position: relative;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--black);
  color: white;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
}
.desk-avatar::before,
.desk-avatar::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.desk-avatar::before { width: 38px; height: 38px; left: -8px; top: -8px; background: var(--lime); }
.desk-avatar::after { width: 25px; height: 25px; right: -5px; bottom: -4px; background: var(--orange); }
.desk-avatar span { position: relative; z-index: 2; }
.desk-manager small { display: block; color: var(--muted); font-size: .73rem; }
.desk-manager strong { display: block; margin-top: 6px; font-family: "Space Grotesk", sans-serif; font-size: 1.28rem; line-height: 1.05; }
.desk-services { display: grid; gap: 11px; }
.desk-service {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 18px;
  align-items: center;
  padding: 17px 18px;
  border-radius: 18px;
  background: white;
  box-shadow: 0 8px 28px rgba(17,19,24,.055);
}
.desk-service span { font-weight: 800; }
.desk-service small { color: var(--muted); line-height: 1.3; }
.desk-panel-foot { margin-top: 27px; padding-top: 18px; border-top: 1px solid var(--line); letter-spacing: .05em; text-transform: none; }
.desk-panel-foot b { color: var(--blue); }
.desk-note {
  position: absolute;
  z-index: 4;
  min-width: 178px;
  padding: 18px 20px;
  border-radius: 22px;
  box-shadow: 0 20px 52px rgba(0,0,0,.28);
  font-size: .82rem;
  line-height: 1.35;
}
.desk-note strong { font-family: "Space Grotesk", sans-serif; font-size: 1.04rem; }
.desk-note-top { left: -18px; top: 72px; background: var(--lime); color: var(--black); transform: rotate(5deg); }
.desk-note-bottom { right: -28px; bottom: 63px; background: var(--blue); color: white; transform: rotate(3deg); }

/* Clear statement of paid personal service. */
.service-fee-section { background: var(--lime); color: var(--black); overflow: hidden; }
.service-fee-section::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  right: -180px;
  top: -160px;
  border-radius: 50%;
  border: 1px solid rgba(17,19,24,.17);
  box-shadow: 0 0 0 65px rgba(255,255,255,.11), 0 0 0 135px rgba(255,255,255,.07);
}
.service-fee-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 90px;
  align-items: start;
}
.service-fee-copy .section-label { color: var(--blue-dark); }
.service-fee-copy h2 { margin-top: 22px; font-size: clamp(2.6rem, 4.6vw, 5rem); }
.service-fee-card {
  padding: 38px;
  border-radius: var(--radius);
  background: var(--black);
  color: white;
  box-shadow: var(--shadow);
}
.service-fee-card p { margin: 0; color: rgba(255,255,255,.7); font-size: 1.08rem; }
.service-fee-card .fee-line { width: 100%; height: 1px; margin: 32px 0; background: rgba(255,255,255,.18); }
.service-fee-card strong { display: block; font-family: "Space Grotesk", sans-serif; font-size: clamp(1.65rem, 2.4vw, 2.45rem); line-height: 1.06; }
.service-fee-card span { display: block; margin-top: 19px; color: var(--lime); }

/* Direct contact, no lead form. */
.contact-section { background: var(--blue); color: white; overflow: hidden; }
.contact-section::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  left: -210px;
  bottom: -290px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  box-shadow: 0 0 0 75px rgba(255,255,255,.035), 0 0 0 160px rgba(255,255,255,.025);
}
.contact-wrap { position: relative; z-index: 2; display: grid; grid-template-columns: .88fr 1.12fr; gap: 82px; align-items: start; }
.contact-copy .section-label { color: var(--lime); }
.contact-copy h2 { margin: 18px 0 28px; }
.contact-copy > p:not(.section-label) { max-width: 560px; color: rgba(255,255,255,.7); font-size: 1.08rem; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-card {
  position: relative;
  min-height: 168px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.19);
  border-radius: 25px;
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(16px);
  transition: transform .28s var(--ease), background .28s var(--ease), color .28s var(--ease);
}
.contact-card:hover { transform: translateY(-5px); background: white; color: var(--black); }
.contact-card small { color: rgba(255,255,255,.62); text-transform: uppercase; letter-spacing: .12em; font-size: .68rem; }
.contact-card:hover small { color: var(--muted); }
.contact-card strong {
  max-width: 290px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}
.contact-card-primary strong {
  max-width: none;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.045em;
}
.contact-card > span { position: absolute; right: 22px; top: 19px; font-size: 1.25rem; }
.contact-card-primary { grid-column: 1 / -1; min-height: 190px; background: var(--lime); color: var(--black); border-color: transparent; }
.contact-card-primary small { color: rgba(17,19,24,.58); }
.contact-card-primary strong { font-size: clamp(2rem, 3.35vw, 3.55rem); }
.contact-card-primary:hover { background: white; }
.contact-card-cooperation { grid-column: 1 / -1; min-height: 142px; background: rgba(17,19,24,.3); }

/* Account coming-soon page. */
.account-page { position: relative; min-height: 100svh; padding: 160px 0 110px; overflow: hidden; background: var(--black); color: white; }
.account-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 18%, rgba(60,92,255,.33), transparent 30%), radial-gradient(circle at 12% 86%, rgba(223,255,87,.09), transparent 28%);
}
.account-orb { position: absolute; border-radius: 50%; filter: blur(.2px); }
.account-orb-lime { width: 300px; height: 300px; right: 2vw; top: 11vh; background: var(--lime); opacity: .92; }
.account-orb-orange { width: 170px; height: 170px; right: 24vw; bottom: 5vh; background: var(--orange); opacity: .88; }
.account-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.account-copy { max-width: 690px; }
.account-status { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 26px; padding: 9px 14px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: var(--lime); font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.account-status i { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
.account-copy h1 { font-size: clamp(3.5rem, 6.2vw, 6.8rem); }
.account-copy > p:not(.hero-kicker) { max-width: 650px; margin: 28px 0 0; color: rgba(255,255,255,.68); font-size: 1.08rem; }
.account-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.button-account-ghost { color: white; border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.06); }
.button-account-ghost:hover { background: white; color: var(--black); }
.account-preview {
  width: min(100%, 560px);
  justify-self: end;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 34px;
  background: rgba(244,240,232,.95);
  color: var(--black);
  box-shadow: 0 40px 110px rgba(0,0,0,.43);
  transform: rotate(2deg);
}
.account-preview-head,
.account-preview-foot { display: flex; justify-content: space-between; align-items: center; gap: 20px; color: var(--muted); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.account-preview-head b { padding: 7px 10px; border-radius: 999px; background: var(--lime); color: var(--black); }
.account-preview-title { margin: 40px 0 28px; }
.account-preview-title small { display: block; color: var(--muted); }
.account-preview-title strong { display: block; margin-top: 5px; font-family: "Space Grotesk", sans-serif; font-size: 2.25rem; }
.account-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.account-feature-grid article { min-height: 158px; padding: 19px; display: flex; flex-direction: column; border-radius: 21px; background: white; }
.account-feature-grid article:nth-child(2) { background: var(--lime); }
.account-feature-grid article:nth-child(3) { background: var(--orange); }
.account-feature-grid article:nth-child(4) { background: var(--blue); color: white; }
.account-feature-grid i { font-style: normal; font-size: .7rem; opacity: .62; }
.account-feature-grid strong { margin-top: auto; font-family: "Space Grotesk", sans-serif; font-size: 1.24rem; line-height: 1.05; }
.account-feature-grid span { margin-top: 7px; font-size: .73rem; opacity: .65; line-height: 1.25; }
.account-preview-foot { margin-top: 25px; padding-top: 18px; border-top: 1px solid var(--line); text-transform: none; letter-spacing: 0; }
.account-preview-foot i { position: relative; width: 38px; height: 8px; border-radius: 999px; background: var(--line); overflow: hidden; }
.account-preview-foot i::after { content: ""; position: absolute; inset: 0 auto 0 0; width: 45%; background: var(--blue); border-radius: inherit; animation: accountProgress 2.4s ease-in-out infinite alternate; }
@keyframes accountProgress { to { width: 78%; } }

@media (max-width: 1050px) {
  .travel-desk { min-height: 520px; width: min(100%, 520px); justify-self: end; }
  .desk-note-top { left: -5px; }
  .desk-note-bottom { right: -4px; }
  .service-fee-grid { gap: 55px; }
  .contact-wrap { gap: 50px; }
  .account-layout { gap: 55px; }
}

@media (max-width: 860px) {
  .main-nav .nav-phone { margin-top: auto; font-family: "DM Sans", sans-serif; font-size: 1.12rem; opacity: .75; }
  .main-nav .account-button { margin-top: 2px; }
  .travel-desk { display: none; }
  .service-fee-grid, .contact-wrap, .account-layout { grid-template-columns: 1fr; }
  .service-fee-card { max-width: 700px; }
  .contact-cards { max-width: 760px; }
  .account-page { padding-top: 145px; }
  .account-preview { justify-self: start; width: min(100%, 620px); transform: none; }
  .account-orb-lime { right: -120px; top: 80px; }
  .account-orb-orange { right: 15px; bottom: 20px; }
}

@media (max-width: 560px) {
  .account-button { width: 100%; justify-content: space-between; }
  .service-fee-card { padding: 27px 23px; }
  .contact-cards { grid-template-columns: 1fr; }
  .contact-card-primary, .contact-card-cooperation { grid-column: auto; }
  .contact-card-primary { min-height: 165px; }
  .contact-card-primary strong { font-size: clamp(1.55rem, 7.2vw, 2.35rem); }
  .contact-card { min-height: 145px; }
  .account-page { padding-top: 122px; padding-bottom: 76px; }
  .account-copy h1 { font-size: clamp(3rem, 14vw, 4.5rem); }
  .account-actions { flex-direction: column; }
  .account-actions .button { width: 100%; }
  .account-preview { padding: 18px; border-radius: 25px; }
  .account-feature-grid { grid-template-columns: 1fr; }
  .account-feature-grid article { min-height: 125px; }
  .account-orb { opacity: .42; }
}


/* Audience photos and direct-contact fit — v5 */
@media (max-width: 420px) {
  .contact-card { padding-left: 21px; padding-right: 21px; }
  .contact-card-primary strong { font-size: clamp(1.42rem, 7vw, 1.78rem); letter-spacing: -.05em; }
}

/* Legal information */
.legal-section { background: var(--paper); }
.legal-layout {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(52px, 8vw, 120px);
  align-items: start;
}
.legal-aside {
  position: sticky;
  top: 126px;
  padding: 38px;
  border-radius: var(--radius);
  background: var(--black);
  color: white;
  box-shadow: var(--shadow);
}
.legal-aside .section-label { color: var(--lime); }
.legal-aside h2 {
  margin: 18px 0 34px;
  font-size: clamp(2.15rem, 3.7vw, 4rem);
  overflow-wrap: anywhere;
}
.legal-details { margin: 0; }
.legal-details > div {
  padding: 17px 0;
  border-top: 1px solid rgba(255,255,255,.14);
}
.legal-details dt {
  margin-bottom: 5px;
  color: rgba(255,255,255,.46);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.legal-details dd { margin: 0; color: rgba(255,255,255,.9); }
.legal-details a { border-bottom: 1px solid rgba(255,255,255,.3); }
.legal-office-note {
  margin: 28px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.58);
  font-size: .88rem;
}
.legal-content { min-width: 0; }
.legal-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 28px;
  padding: 42px 0;
  border-top: 1px solid var(--line);
}
.legal-card:first-child { padding-top: 0; border-top: 0; }
.legal-number {
  padding-top: 8px;
  color: var(--blue);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
}
.legal-card:nth-child(2n) .legal-number { color: var(--orange); }
.legal-card h2 { margin-bottom: 22px; font-size: clamp(2rem, 3.4vw, 3.45rem); }
.legal-card p { margin: 0 0 17px; color: var(--muted); font-size: 1.02rem; }
.legal-card p:last-child { margin-bottom: 0; }
.legal-list {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}
.legal-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 7px 7px 0 -2px var(--orange);
}
.legal-contact-box {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.legal-contact-box a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.legal-contact-box a:hover { color: white; background: var(--blue); transform: translateY(-2px); }
.legal-contact-box span { color: var(--orange); }
.legal-updated {
  margin: 32px 0 0;
  color: var(--muted);
  font-size: .82rem;
}

@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-aside { position: static; }
}

@media (max-width: 560px) {
  .legal-aside { padding: 28px 24px; }
  .legal-card { grid-template-columns: 1fr; gap: 12px; padding: 34px 0; }
  .legal-number { padding-top: 0; }
  .legal-contact-box { flex-direction: column; align-items: stretch; }
  .legal-contact-box a { justify-content: space-between; width: 100%; white-space: normal; }
}
