/* =============================================================
   1. TOKENS
   ============================================================= */
:root {
  --bg:        #090909;
  --bg-2:      #101010;
  --card:      #121212;
  --line:      rgba(255,255,255,0.08);
  --line-2:    rgba(255,255,255,0.14);

  --t:         #EEEAE4;
  --muted:     #6a655f;
  --mid:       #948f89;

  --a:         #C8B89A;
  --a-dim:     rgba(200,184,154,0.55);
  --ad:        rgba(200,184,154,0.09);

  --nav-h:     64px;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --sans:  'Inter', system-ui, -apple-system, sans-serif;
  --disp:  'Space Grotesk', 'Inter', system-ui, sans-serif;
}

/* =============================================================
   2. RESET & BASE
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}
body {
  background: var(--bg);
  color: var(--t);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.02em; font-weight: 600; }
input, textarea, select { font: inherit; }
::selection { background: var(--a); color: #14110c; }

:focus-visible {
  outline: 2px solid var(--a);
  outline-offset: 3px;
  border-radius: 2px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 999;
  padding: .7rem 1.2rem; background: var(--a); color: #14110c;
  font-family: var(--disp); font-size: .75rem; letter-spacing: .05em;
  font-weight: 600; border-radius: 2px; transition: top .2s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. SHARED TYPE / LABEL UTILITIES
   ============================================================= */
.label {
  font-family: var(--disp); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--a);
  display: flex; align-items: center; gap: 0.7rem;
}
.label::after { content: ''; width: 28px; height: 0.5px; background: var(--a); opacity: .5; }

.sec-h2 {
  font-family: var(--disp);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 600; line-height: 1.08; margin-top: 0.8rem;
}
.sec-h2 em { font-style: normal; color: var(--a); }

.step-label {
  font-family: var(--disp); font-size: 0.6rem; font-weight: 500; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--a); margin-bottom: 1rem;
}
.step-desc { font-size: 0.92rem; line-height: 1.8; color: var(--muted); }

/* =============================================================
   4. REVEAL-ON-SCROLL (defensive)
   ============================================================= */
/* Visible by default — safe if JS never runs or IntersectionObserver is unsupported.
   JS adds "reveal-ready" to <html> only once it can guarantee a reveal will fire. */
.reveal {
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
html.reveal-ready .reveal { opacity: 0; transform: translateY(24px); }
html.reveal-ready .reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   5. NAV
   ============================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.25rem;
  background: rgba(9,9,9,0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 0.5px solid var(--line);
}
.nav-logo {
  font-family: var(--disp); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--t);
  white-space: nowrap;
}
.nav-logo span { color: var(--a); }

.nav-toggle {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; width: 40px; height: 40px; z-index: 310;
}
.nav-toggle-bar {
  display: block; width: 20px; height: 1.5px; background: var(--t);
  transition: transform .3s var(--ease-out), opacity .3s var(--ease-out);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { transform: translateY(-3.25px) rotate(-45deg); }

.nav-menu {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 290;
  background: rgba(9,9,9,0.99);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  gap: 2.2rem; padding: 2rem 1.5rem;
  transform: translateX(100%);
  transition: transform .4s var(--ease-out);
  overflow-y: auto;
}
.nav-menu.is-open { transform: translateX(0); }

.nav-links { display: flex; flex-direction: column; gap: 1.6rem; }
.nav-links a {
  font-family: var(--disp); font-size: 1.5rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .02em; color: var(--t);
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--a); }

.nav-cta {
  font-family: var(--disp); font-size: 0.68rem; letter-spacing: 0.15em;
  text-transform: uppercase; border: 0.5px solid rgba(255,255,255,0.22);
  padding: 0.75rem 1.5rem; color: var(--t); transition: all .2s var(--ease-out);
  align-self: flex-start;
}
.nav-cta:hover { background: var(--ad); border-color: var(--a); color: var(--a); }

@media (min-width: 960px) {
  .nav { padding: 0 3rem; }
  .nav-logo { font-size: 0.95rem; }
  .nav-toggle { display: none; }
  .nav-menu {
    position: static; inset: auto; background: none; transform: none;
    flex-direction: row; align-items: center; justify-content: flex-end;
    gap: 2.5rem; padding: 0; flex: 1; overflow: visible;
  }
  .nav-links { flex-direction: row; gap: 2.3rem; }
  .nav-links a { font-size: 0.62rem; letter-spacing: 0.18em; font-weight: 400; }
  .nav-cta { padding: 0.52rem 1.3rem; align-self: auto; }
}

/* =============================================================
   6. HERO (home)
   ============================================================= */
.hero {
  display: grid; grid-template-columns: 1fr;
  margin-top: var(--nav-h);
  border-bottom: 0.5px solid var(--line);
}
.hero-left { position: relative; overflow: hidden; min-height: 62svh; border-bottom: 0.5px solid var(--line); }
.hero-left img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center bottom; filter: brightness(0.6); }
.hero-text {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem 1.25rem 2.4rem;
  background: linear-gradient(transparent, rgba(9,9,9,0.85) 55%);
}
.hero-eyebrow {
  font-family: var(--disp); font-size: 0.6rem; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--a); margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--disp);
  font-size: clamp(2.6rem, 11vw, 4.8rem);
  font-weight: 700; line-height: 0.9; letter-spacing: -0.02em;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.hero-title em {
  font-style: normal; color: transparent;
  -webkit-text-stroke: 1.5px var(--a);
  position: relative;
}
.hero-right { display: flex; flex-direction: column; }
.hero-right-img { position: relative; min-height: 40svh; overflow: hidden; border-bottom: 0.5px solid var(--line); }
.hero-right-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center bottom; }
.hero-right-info {
  background: var(--bg-2); padding: 1.6rem 1.25rem;
  display: flex; flex-direction: column; gap: 1.2rem;
}
.hero-right-info p { font-size: 0.86rem; line-height: 1.75; color: var(--mid); max-width: 34ch; }
.hero-stat { display: flex; align-items: baseline; gap: .6rem; }
.hero-stat .num { font-family: var(--disp); font-size: 1.9rem; font-weight: 300; color: var(--a); letter-spacing: -0.02em; }
.hero-stat .lbl { font-family: var(--disp); font-size: 0.56rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

@media (min-width: 720px) {
  .hero-right-info { flex-direction: row; align-items: center; justify-content: space-between; padding: 1.8rem 2.4rem; }
  .hero-stat { flex-direction: column; gap: 0; }
  .hero-stat .num, .hero-stat .lbl { text-align: right; display: block; }
}
@media (min-width: 960px) {
  .hero { grid-template-columns: 1fr 1fr; height: calc(100svh - var(--nav-h)); }
  .hero-left { min-height: 0; border-right: 0.5px solid var(--line); border-bottom: none; }
  .hero-text { padding: 3.5rem; }
  .hero-right-img { min-height: 0; flex: 1; }
  .hero-right-info { padding: 1.8rem 2.8rem; }
}

/* =============================================================
   7. TICKER
   ============================================================= */
.ticker {
  overflow: hidden; white-space: nowrap; padding: 0.78rem 0;
  background: var(--bg-2); border-bottom: 0.5px solid var(--line);
}
.ticker-track { display: inline-block; animation: tick 30s linear infinite; }
.ti { display: inline-block; padding: 0 1.6rem; font-family: var(--disp); font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.td { display: inline-block; width: 3px; height: 3px; background: var(--a); border-radius: 50%; vertical-align: middle; margin: 0 0.4rem; }
@keyframes tick { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* =============================================================
   8. SECTIONS / SERVICES
   ============================================================= */
.section { padding: 4.5rem 1.25rem; border-bottom: 0.5px solid var(--line); position: relative; }

.plans-grid { display: grid; grid-template-columns: 1fr; gap: 0.5px; background: var(--line); margin-top: 2.5rem; }
.plan { padding: 2.4rem 1.5rem; background: var(--bg); position: relative; transition: background .25s; }
.plan:hover { background: var(--bg-2); }
.plan-bar { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--line); transition: background .25s; }
.plan:hover .plan-bar, .plan-b .plan-bar { background: var(--a); }
.plan-tag {
  display: inline-block; font-family: var(--disp); font-size: 0.56rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--a); border: 0.5px solid rgba(200,184,154,0.28);
  padding: 0.3rem 0.8rem; margin-bottom: 1.6rem;
}
.plan-name { font-family: var(--disp); font-size: 3rem; font-weight: 700; line-height: 1; letter-spacing: -0.03em; margin-bottom: 0.3rem; }
.plan-name span { color: var(--a); }
.plan-sub { font-family: var(--disp); font-size: 0.9rem; color: var(--mid); margin-bottom: 0.7rem; }
.plan-res {
  font-family: var(--disp); font-size: 0.58rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--a); display: flex; align-items: center; gap: .5rem; margin-bottom: 1.3rem;
}
.plan-res::before { content: ''; width: 16px; height: .5px; background: var(--a); }
.plan-desc { font-size: 0.88rem; line-height: 1.8; color: var(--muted); margin-bottom: 1.8rem; max-width: 40ch; }
.feat-list { margin-bottom: 2rem; }
.feat-list li { font-size: 0.82rem; color: var(--mid); padding: 0.6rem 0; border-bottom: 0.5px solid var(--line); display: flex; align-items: center; gap: 0.7rem; }
.feat-list li::before { content: ''; width: 4px; height: 4px; background: var(--a); border-radius: 50%; flex-shrink: 0; }

.btn {
  font-family: var(--disp); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.9rem 1.8rem; border: 0.5px solid rgba(255,255,255,0.2); color: var(--t);
  transition: all .25s var(--ease-out); position: relative;
}
.btn:hover { background: var(--a); border-color: var(--a); color: #14110c; }
.btn-accent { border-color: var(--a); color: var(--a); background: var(--ad); }
.btn-accent:hover { background: var(--a); color: #14110c; }

@media (min-width: 720px) {
  .section { padding: 6rem 3rem; }
  .plans-grid { grid-template-columns: 1fr 1fr; margin-top: 3rem; }
  .plan { padding: 3rem 2.6rem; }
  .plan-name { font-size: 3.8rem; }
}

/* =============================================================
   9. WORK — masonry grid + lightbox
   ============================================================= */
.section-work { padding-top: 4.5rem; }
.work-grid {
  margin-top: 2.5rem;
  column-count: 1; column-gap: 2px;
}
.work-item {
  display: block; position: relative; width: 100%;
  break-inside: avoid; margin-bottom: 2px; overflow: hidden;
  background: var(--bg-2);
}
.work-item img { width: 100%; height: auto; transition: transform .8s var(--ease-out), filter .4s; }
.work-item:hover img, .work-item:focus-visible img { transform: scale(1.035); filter: brightness(0.72); }
.work-caption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem 1.1rem;
  background: linear-gradient(transparent, rgba(9,9,9,0.88) 70%);
  font-family: var(--disp); font-size: 0.56rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--t); text-align: left;
  opacity: 0; transform: translateY(8px);
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-out);
}
.work-item:hover .work-caption, .work-item:focus-visible .work-caption { opacity: 1; transform: none; }
.work-item::after {
  content: '↗'; position: absolute; top: .9rem; right: .9rem; width: 26px; height: 26px;
  background: rgba(9,9,9,0.72); border: 0.5px solid rgba(255,255,255,0.16); color: var(--a);
  font-size: 0.68rem; display: grid; place-items: center;
  opacity: 0; transition: opacity .25s; pointer-events: none;
}
.work-item:hover::after, .work-item:focus-visible::after { opacity: 1; }

@media (min-width: 540px) { .work-grid { column-count: 2; } }
@media (min-width: 960px) { .work-grid { column-count: 3; } }
@media (min-width: 1440px) { .work-grid { column-count: 4; } }

/* =============================================================
   10. LIGHTBOX
   ============================================================= */
.lightbox {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(6,6,6,0.97);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: none; align-items: center; justify-content: center;
  flex-direction: column; padding: 4rem 1rem 2rem;
}
.lightbox.is-open { display: flex; }
.lightbox-img-wrap { position: relative; max-width: 94vw; max-height: 70svh; display: flex; align-items: center; justify-content: center; }
.lightbox-img-wrap img { max-width: 100%; max-height: 70svh; object-fit: contain; display: block; transition: opacity .25s; }
.lightbox-caption { margin-top: 1.1rem; font-family: var(--disp); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mid); text-align: center; padding: 0 3rem; }
.lightbox-count { margin-top: .5rem; font-family: var(--disp); font-size: 0.52rem; letter-spacing: 0.2em; color: var(--muted); }
.lightbox-close {
  position: absolute; top: 1rem; right: 1rem; width: 42px; height: 42px;
  border: 0.5px solid var(--line-2); color: var(--mid); font-size: 1rem;
  display: grid; place-items: center; transition: all .2s;
}
.lightbox-close:hover { border-color: var(--a); color: var(--a); }
.lightbox-nav {
  position: static; width: 42px; height: 42px; border: 0.5px solid var(--line-2);
  color: var(--mid); font-size: 1rem; display: grid; place-items: center; transition: all .2s; flex-shrink: 0;
}
.lightbox-nav:hover { border-color: var(--a); color: var(--a); }
.lightbox-img-wrap { gap: 0; }

@media (min-width: 960px) {
  .lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); }
  .lightbox-prev { left: -70px; }
  .lightbox-next { right: -70px; }
}
@media (max-width: 959px) {
  .lightbox-img-wrap { flex-direction: column; gap: 1rem; }
  .lightbox-img-wrap .lightbox-nav { position: fixed; top: 50%; transform: translateY(-50%); }
  .lightbox-prev { left: .6rem; }
  .lightbox-next { right: .6rem; }
}

/* =============================================================
   11. CONTACT
   ============================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 0.5px; background: var(--line); margin-top: 2.5rem; }
.contact-left { padding: 2.4rem 1.5rem; background: var(--bg-2); }
.contact-right { padding: 2.4rem 1.5rem; background: var(--bg); }
.contact-intro { font-size: 0.9rem; line-height: 1.8; color: var(--mid); }
.contact-info { margin-top: 1.8rem; }
.contact-info li { font-size: 0.84rem; color: var(--muted); padding: 0.75rem 0; border-bottom: 0.5px solid var(--line); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.contact-info li span:last-child { color: var(--a); }
.contact-info a:hover { text-decoration: underline; }

.form-stack { display: flex; flex-direction: column; gap: 1px; background: var(--line); }
.ff { background: var(--bg); transition: background .2s; }
.ff:focus-within { background: var(--bg-2); }
.ff label { display: block; padding: 0.8rem 1rem 0; font-family: var(--disp); font-size: 0.56rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.ff input, .ff textarea, .ff select { width: 100%; padding: 0.25rem 1rem 0.85rem; background: none; border: none; outline: none; font-family: var(--sans); font-size: 0.92rem; color: var(--t); }
.ff textarea { resize: vertical; min-height: 88px; }
.ff select option { background: #101010; }
.ff input:invalid:not(:placeholder-shown), .ff textarea:invalid:not(:placeholder-shown) { box-shadow: inset 2px 0 0 #b5493a; }

.submit-btn {
  margin-top: 1.3rem; font-family: var(--disp); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 1rem 2.2rem; background: var(--a); color: #14110c; font-weight: 600; transition: opacity .2s, transform .2s;
  width: 100%;
}
.submit-btn:hover { opacity: 0.85; }
.form-note { margin-top: .9rem; font-size: 0.78rem; color: var(--a); min-height: 1.2em; }
.form-note[data-state="error"] { color: #d98a7a; }

@media (min-width: 720px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-left, .contact-right { padding: 3rem 2.6rem; }
  .submit-btn { width: auto; }
}

/* =============================================================
   12. PAGE HERO (process / about)
   ============================================================= */
.process-page, .about-page { padding-top: var(--nav-h); }
.page-hero { padding: 3.5rem 1.25rem 2.5rem; border-bottom: 0.5px solid var(--line); }
.page-hero h1 {
  font-family: var(--disp); font-size: clamp(2.6rem, 11vw, 5rem); font-weight: 700;
  line-height: 0.9; letter-spacing: -0.02em; margin-top: 0.9rem;
}
.page-hero h1 em { font-style: normal; color: transparent; -webkit-text-stroke: 1.5px var(--a); }
.page-hero-sub { font-size: 0.95rem; line-height: 1.85; color: var(--mid); max-width: 50ch; margin-top: 1.8rem; }

@media (min-width: 720px) { .page-hero { padding: 5rem 3rem 4rem; } }

/* =============================================================
   13. PROCESS PAGE
   ============================================================= */
.steps-full { display: grid; grid-template-columns: 1fr; gap: 0.5px; background: var(--line); border-bottom: 0.5px solid var(--line); }
.step-card { padding: 2.6rem 1.5rem; background: var(--bg); display: grid; grid-template-columns: auto 1fr; gap: 1.6rem; transition: background .2s; }
.step-card:hover { background: var(--bg-2); }
.step-num-big {
  font-family: var(--disp); font-size: 2.6rem; font-weight: 700; line-height: 1; color: transparent;
  -webkit-text-stroke: 1px rgba(200,184,154,0.3); letter-spacing: -0.03em; align-self: start;
}
.step-title { font-family: var(--disp); font-size: 1.15rem; font-weight: 600; margin-bottom: 0.9rem; color: var(--t); }
.step-title-note { color: var(--muted); font-weight: 400; font-size: 0.82rem; }

.process-img-row { display: grid; grid-template-columns: 1fr; gap: 0.5px; background: var(--line); border-bottom: 0.5px solid var(--line); }
.process-img-slot { position: relative; overflow: hidden; height: 280px; }
.process-img-slot img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s var(--ease-out), filter .4s; }
.process-img-slot:hover img, .process-img-slot:focus-visible img { transform: scale(1.045); filter: brightness(0.8); }

.process-note { padding: 3rem 1.25rem; border-bottom: 0.5px solid var(--line); display: grid; grid-template-columns: 1fr; gap: 2.4rem; align-items: center; }
.process-note blockquote {
  font-family: var(--disp); font-size: clamp(1.25rem, 5vw, 1.7rem); font-weight: 300; line-height: 1.4;
  color: var(--mid); border-left: 1px solid var(--a); padding-left: 1.5rem;
}
.process-note blockquote strong { color: var(--t); font-weight: 500; }

@media (min-width: 720px) {
  .steps-full { grid-template-columns: 1fr 1fr; }
  .step-card { padding: 3.5rem 3rem; gap: 2.5rem; }
  .step-num-big { font-size: 4rem; }
  .process-img-row { grid-template-columns: 1fr 1fr 1fr; height: 360px; }
  .process-img-slot { height: auto; }
  .process-note { grid-template-columns: 1fr 1fr; padding: 4rem 3rem; gap: 4rem; }
}

/* =============================================================
   14. ABOUT PAGE
   ============================================================= */
.about-body { padding: 2.6rem 1.25rem; border-bottom: 0.5px solid var(--line); display: grid; grid-template-columns: 1fr; gap: 1.6rem; }
.about-body p { font-size: 0.95rem; line-height: 1.9; color: var(--muted); }
.about-countries { padding: 2.4rem 1.25rem; border-bottom: 0.5px solid var(--line); }
.about-country-list { display: flex; flex-wrap: wrap; gap: 1rem 2.2rem; }
.about-country-list span { font-family: var(--disp); font-size: 1.05rem; font-weight: 500; color: var(--t); position: relative; padding-left: 1.2rem; }
.about-country-list span::before { content: ''; position: absolute; left: 0; top: 0.5em; width: 6px; height: 6px; border-radius: 50%; background: var(--a); }

@media (min-width: 720px) {
  .about-body { grid-template-columns: 1fr 1fr; padding: 4rem 3rem; gap: 4rem; }
  .about-countries { padding: 3rem 3rem; }
}

/* =============================================================
   15. FOOTER
   ============================================================= */
footer {
  padding: 2rem 1.25rem; border-top: 0.5px solid var(--line);
  display: flex; flex-direction: column; align-items: flex-start; gap: 1.4rem;
}
.f-logo { font-family: var(--disp); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase; color: var(--muted); }
.f-logo span { color: var(--a); }
.f-links { display: flex; flex-wrap: wrap; gap: 1.4rem 1.6rem; }
.f-links a { font-family: var(--disp); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); transition: color .2s; }
.f-links a:hover { color: var(--a); }
.f-copy { font-size: 0.72rem; color: var(--muted); }

@media (min-width: 720px) {
  footer { padding: 2.2rem 3rem; flex-direction: row; align-items: center; justify-content: space-between; }
}

/* =============================================================
   16. SIGNATURE — subtle drifting glow behind kickers
   ============================================================= */
.page-hero, .hero-text { position: relative; }
.page-hero::before, .hero-text::before {
  content: ''; position: absolute; z-index: -1;
  top: -10%; left: -10%; width: 60%; height: 70%;
  background: radial-gradient(closest-side, rgba(200,184,154,0.16), transparent 72%);
  filter: blur(40px);
  animation: driftGlow 16s ease-in-out infinite;
  pointer-events: none;
}
@keyframes driftGlow {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: .8; }
  50%      { transform: translate(6%, 8%) scale(1.15); opacity: 1; }
}

/* =============================================================
   17. VIEW TRANSITIONS (progressive enhancement)
   ============================================================= */
@media (prefers-reduced-motion: no-preference) {
  @view-transition { navigation: auto; }
}

/* =============================================================
   18. REDUCED MOTION — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation-duration: 90s; }
  .page-hero::before, .hero-text::before { animation: none; opacity: .5; }
  .reveal { transition-duration: .01s; }
}
