/* ══════════════════════════════════════════════════════════════
   BY KINSLEE — Stylesheet v3
   ══════════════════════════════════════════════════════════════ */

:root {
  --ivory:     #FDF8F2;
  --ivory-mid: #F0E8DC;
  --coral:     #E8705A;
  --coral-lt:  #FAE8E4;
  --coral-dk:  #C95A45;
  --green:     #2D5A3D;
  --green-lt:  #E8F0EA;
  --green-dk:  #1A3528;
  --gold:      #F4C261;
  --gold-lt:   #FDF3D6;
  --charcoal:  #111111;
  --charcoal2: #1E1E1E;
  --mid:       #444444;
  --muted:     #888880;
  --white:     #FFFFFF;

  --ff-head: 'Playfair Display', Georgia, serif;
  --ff-body: 'DM Sans', system-ui, sans-serif;
  --ff-mono: 'DM Mono', monospace;

  --r-sm:  6px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 40px;

  --sh-sm: 0 2px 12px rgba(0,0,0,.06);
  --sh-md: 0 8px 32px rgba(0,0,0,.10);
  --sh-lg: 0 24px 64px rgba(0,0,0,.14);

  --ease:   .3s ease;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h:  72px;
  --max-w:  1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Loader ─────────────────────────────────────────────────── */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--ivory);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2rem;
  transition: opacity .6s ease, visibility .6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
  font-family: var(--ff-head); font-style: italic;
  font-size: 2.5rem; font-weight: 700; color: var(--charcoal);
  animation: loaderPulse 1.4s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%,100% { opacity: .3; transform: scale(.97); }
  50%     { opacity: 1;  transform: scale(1); }
}
.loader-bar {
  width: 160px; height: 2px; background: var(--ivory-mid); border-radius: 2px; overflow: hidden;
}
.loader-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--coral), var(--gold));
  animation: loaderFill 1.2s var(--ease-out) .2s forwards;
}
@keyframes loaderFill { to { width: 100%; } }

/* ── Cookie banner ──────────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%) translateY(120%);
  width: calc(100% - 3rem); max-width: 800px; z-index: 500;
  background: var(--charcoal); border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 24px 64px rgba(0,0,0,.4);
  transition: transform .5s cubic-bezier(.16,1,.3,1), opacity .4s ease;
  opacity: 0;
}
.cookie-banner.visible { transform: translateX(-50%) translateY(0); opacity: 1; }
.cookie-inner {
  display: flex; align-items: center; gap: 1.5rem; padding: 1.25rem 1.75rem;
  flex-wrap: wrap;
}
.cookie-text-wrap { flex: 1; min-width: 200px; }
.cookie-text { font-size: .85rem; color: rgba(255,255,255,.65); line-height: 1.55; }
.cookie-actions { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn {
  padding: .55rem 1.25rem; border-radius: 30px; font-size: .8rem;
  font-weight: 600; font-family: var(--ff-body); cursor: pointer;
  border: 1.5px solid transparent; transition: var(--ease);
}
.cookie-accept { background: var(--coral); color: var(--white); border-color: var(--coral); }
.cookie-accept:hover { background: var(--coral-dk); border-color: var(--coral-dk); }
.cookie-decline { background: transparent; color: rgba(255,255,255,.5); border-color: rgba(255,255,255,.15); }
.cookie-decline:hover { border-color: rgba(255,255,255,.4); color: var(--white); }
.cookie-link {
  background: none; border: none; color: rgba(255,255,255,.35); font-size: .75rem;
  font-family: var(--ff-mono); letter-spacing: .05em; cursor: pointer;
  text-decoration: underline; text-underline-offset: 3px; transition: color var(--ease);
}
.cookie-link:hover { color: rgba(255,255,255,.7); }

/* ── Privacy modal ──────────────────────────────────────────── */
.privacy-modal {
  position: fixed; inset: 0; z-index: 600;
  display: flex; align-items: flex-end; justify-content: flex-end;
  opacity: 0; visibility: hidden; transition: opacity .4s ease, visibility .4s ease;
}
.privacy-modal.open { opacity: 1; visibility: visible; }
.privacy-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px); cursor: pointer;
}
.privacy-panel {
  position: relative; z-index: 1;
  width: min(600px, 100%); height: 100vh;
  background: var(--white);
  overflow-y: auto; padding: 3.5rem 3rem;
  box-shadow: -24px 0 80px rgba(0,0,0,.18);
  transform: translateX(100%);
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.privacy-modal.open .privacy-panel { transform: none; }
.privacy-close {
  position: sticky; top: 0; float: right; margin-bottom: 1rem;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ivory-mid); color: var(--charcoal);
  font-size: 1rem; cursor: pointer; border: none;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--ease), color var(--ease);
  z-index: 2;
}
.privacy-close:hover { background: var(--coral); color: var(--white); }
.privacy-content h2 {
  font-size: 2rem; margin-bottom: .5rem; color: var(--charcoal);
}
.pp-updated { font-size: .8rem; color: var(--muted); font-family: var(--ff-mono); margin-bottom: 2.5rem; }
.privacy-content h3 {
  font-family: var(--ff-body); font-size: .85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--coral); margin: 2rem 0 .6rem;
}
.privacy-content p {
  font-size: .9rem; color: var(--mid); line-height: 1.8; margin-bottom: .5rem;
}

/* ── Back to top ────────────────────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 400;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--coral); color: var(--white);
  font-size: 1.1rem; font-weight: 700; cursor: pointer; border: none;
  box-shadow: 0 8px 24px rgba(232,112,90,.4);
  opacity: 0; transform: translateY(16px);
  transition: opacity .35s ease, transform .35s ease, background .25s ease;
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: none; pointer-events: auto; }
.back-to-top:hover { background: var(--coral-dk); }

/* ── Progress bar ───────────────────────────────────────────── */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--coral), var(--gold), var(--green));
  z-index: 300; transition: width .08s linear;
}

/* ── Custom cursor (dot + rotating diamond ring) ────────────── */
.cursor-dot {
  width: 6px; height: 6px; background: var(--coral); border-radius: 50%;
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform .2s ease, background .3s ease;
}
.cursor-ring {
  width: 28px; height: 28px; border: 1.5px solid var(--coral);
  border-radius: 3px;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%) rotate(45deg);
  transition: width .35s ease, height .35s ease, opacity .35s ease,
              border-color .35s ease, border-radius .35s ease;
  opacity: .55;
  animation: ringRotate 9s linear infinite;
}
@keyframes ringRotate {
  from { transform: translate(-50%,-50%) rotate(45deg); }
  to   { transform: translate(-50%,-50%) rotate(405deg); }
}
body.hovering .cursor-ring { width: 46px; height: 46px; opacity: .18; border-radius: 50%; animation-play-state: paused; }
body.hovering .cursor-dot  { transform: translate(-50%,-50%) scale(2.2); }
body.on-dark  .cursor-ring { border-color: rgba(255,255,255,.6); }
body.on-dark  .cursor-dot  { background: var(--white); }

/* ── Mediterranean Terra grain texture ──────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='250' height='250'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.055'/></svg>");
  opacity: .55; mix-blend-mode: multiply;
}

/* ── Typography ─────────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--ff-head); line-height: 1.15; }

.label {
  display: inline-block; font-family: var(--ff-mono);
  font-size: .7rem; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; color: var(--coral); margin-bottom: .9rem;
}
.label-gold { color: var(--gold); }

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 700; margin-bottom: 1rem;
}
.section-sub { font-size: 1.05rem; color: var(--muted); max-width: 520px; }

.section-header { text-align: center; margin-bottom: 4.5rem; }
.section-header .section-sub { margin: 0 auto; }

/* ── Layout ─────────────────────────────────────────────────── */
.container  { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section    { padding: 7rem 0; }
.section-tinted { background: var(--ivory-mid); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2rem; border-radius: var(--r-xl);
  font-family: var(--ff-body); font-size: .92rem; font-weight: 500;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease-out), box-shadow .25s ease,
              background .25s ease, color .25s ease, border-color .25s ease;
  will-change: transform;
}
.btn-primary { background: var(--coral); color: var(--white); border-color: var(--coral); }
.btn-primary:hover  { background: var(--coral-dk); border-color: var(--coral-dk); box-shadow: 0 10px 28px rgba(232,112,90,.38); }
.btn-ghost   { background: transparent; color: var(--charcoal); border-color: rgba(0,0,0,.2); }
.btn-ghost:hover   { border-color: var(--charcoal); background: var(--charcoal); color: var(--white); }
.btn-outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-sm { padding: .6rem 1.3rem; font-size: .85rem; }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 100;
  transition: background .3s ease, box-shadow .3s ease;
}
.nav.scrolled {
  background: rgba(253,248,242,.95); backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,.07);
}
.nav-container {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--ff-head); font-style: italic;
  font-size: 1.45rem; font-weight: 700; color: var(--charcoal);
  transition: color var(--ease);
}
.nav-logo:hover { color: var(--coral); }

.nav-links { display: flex; gap: 2.5rem; }
.nav-links a {
  font-size: .875rem; font-weight: 500; color: var(--mid);
  position: relative; transition: color var(--ease);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--coral);
  transition: width var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--coral); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 1rem; }
.lang-btn {
  display: flex; align-items: center; gap: .35rem;
  padding: .36rem .85rem; border: 1.5px solid var(--coral); border-radius: 20px;
  font-size: .76rem; font-weight: 600; color: var(--coral);
  transition: var(--ease); font-family: var(--ff-mono);
}
.lang-btn:hover { background: var(--coral); color: var(--white); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: var(--ease); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; background: var(--ivory); z-index: 99;
  display: flex; align-items: center; justify-content: center;
  transform: translateX(100%);
  transition: transform .42s cubic-bezier(.77,0,.175,1);
}
.mobile-menu.open { transform: none; }
.mobile-close {
  position: absolute; top: 1.5rem; right: 1.75rem;
  font-size: 1.5rem; cursor: pointer; transition: color var(--ease);
}
.mobile-close:hover { color: var(--coral); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 1.75rem; text-align: center; }
.mobile-menu a { font-family: var(--ff-head); font-style: italic; font-size: 2.5rem; transition: color var(--ease); }
.mobile-menu a:hover { color: var(--coral); }

/* ── Botanical decorations ──────────────────────────────────── */
.botanical {
  position: absolute; pointer-events: none; z-index: 0; opacity: .55;
}
.botanical-tl {
  top: 60px; left: -30px; width: 220px; height: 520px;
  animation: botFloat 12s ease-in-out infinite;
}
.botanical-br {
  bottom: 40px; right: -30px; width: 220px; height: 480px;
  animation: botFloat 14s ease-in-out infinite reverse;
}
@keyframes botFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  33%     { transform: translateY(-12px) rotate(1.5deg); }
  66%     { transform: translateY(8px) rotate(-1deg); }
}

/* ── Arch section dividers ──────────────────────────────────── */
.arch-top {
  position: relative;
}
.arch-top::before {
  content: '';
  position: absolute; top: -48px; left: 0; right: 0; height: 96px;
  background: inherit; z-index: 1;
  border-radius: 50% 50% 0 0 / 96px 96px 0 0;
}
.stats-strip { border-radius: 2.5rem 2.5rem 0 0; margin-top: -2rem; position: relative; z-index: 2; }
.companies   { border-radius: 2.5rem 2.5rem 0 0; position: relative; z-index: 2; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: var(--nav-h);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(72px); opacity: .5;
}
.b1 { width: 520px; height: 520px; background: var(--coral-lt); top: -100px; right: -80px;
      animation: bf 10s ease-in-out infinite; }
.b2 { width: 360px; height: 360px; background: var(--green-lt); bottom: 20px; left: -80px;
      animation: bf 12s ease-in-out infinite reverse; }
.b3 { width: 260px; height: 260px; background: var(--gold-lt); top: 40%; left: 38%;
      animation: bf 14s ease-in-out infinite 2s; }
@keyframes bf {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(30px,-20px) scale(1.05); }
  66%     { transform: translate(-20px,15px) scale(.96); }
}

.hero-container {
  max-width: var(--max-w); margin: 0 auto; padding: 5rem 2rem;
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 5rem; align-items: center;
  position: relative; z-index: 1;
}

/* Hero text */
.hero-pre {
  font-size: 1.05rem; color: var(--muted); font-weight: 400;
  margin-bottom: .5rem;
}

/* Character split animation */
.hero-name {
  font-size: clamp(2.6rem, 5.2vw, 5.2rem); font-weight: 900; line-height: 1;
  margin-bottom: 0; letter-spacing: -2px; white-space: nowrap;
  background: linear-gradient(135deg, var(--charcoal) 55%, var(--coral));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-name .char {
  display: inline-block; opacity: 0; transform: translateY(60px) rotate(3deg);
  transition: opacity .55s var(--ease-out), transform .55s var(--ease-out);
  transition-delay: calc(var(--i) * 35ms + 200ms);
}
.hero-name .word-space { display: inline-block; width: .35em; }
.hero-name.animated .char { opacity: 1; transform: none; }

.hero-divider {
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--gold));
  border-radius: 2px; margin: 1.5rem 0;
  transition: width 1s var(--ease-out);
  transition-delay: .8s;
}
.hero-divider.loaded { width: 80px; }

.hero-role   { font-size: 1rem; color: var(--muted); margin-bottom: .9rem; font-weight: 400; }
.hero-tagline {
  font-family: var(--ff-head); font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.55rem); color: var(--green);
  margin-bottom: 1.5rem; line-height: 1.5;
}
.hero-meta {
  display: flex; align-items: center; gap: .5rem;
  font-size: .85rem; color: var(--muted); margin-bottom: 2.5rem;
  font-family: var(--ff-mono);
}
.pulse-dot {
  width: 8px; height: 8px; background: var(--coral); border-radius: 50%;
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); box-shadow: 0 0 0 0 rgba(232,112,90,.6); }
  50%     { opacity:.7; transform:scale(1.3); box-shadow: 0 0 0 6px rgba(232,112,90,0); }
}
.dot-sep { color: var(--coral-lt); }

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero image */
.hero-visual { position: relative; display: flex; justify-content: center; }

.image-wrap {
  position: relative; width: 380px; height: 460px;
  transition: transform .6s var(--ease-out);
}
.image-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  border-radius: 55% 45% 52% 48% / 46% 52% 48% 54%;
  position: relative; z-index: 2;
  transition: border-radius .6s var(--ease-out);
}
.image-wrap:hover img { border-radius: 50%; }

.img-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--coral-lt), var(--green-lt));
  border-radius: 55% 45% 52% 48% / 46% 52% 48% 54%;
  display: none; align-items: center; justify-content: center;
  font-family: var(--ff-head); font-size: 4rem; color: var(--coral);
  font-weight: 700; z-index: 2;
}
.image-wrap.no-img img { display: none; }
.image-wrap.no-img .img-placeholder { display: flex; }

.img-ring {
  position: absolute; top: -14px; right: -14px;
  width: 100%; height: 100%;
  border: 2px solid var(--coral); opacity: .3;
  border-radius: 55% 45% 52% 48% / 46% 52% 48% 54%;
  z-index: 1; transition: transform .6s var(--ease-out), opacity .3s ease;
}
.image-wrap:hover .img-ring { transform: translate(8px,8px) rotate(5deg); opacity: .5; }

.img-dots {
  position: absolute; bottom: -20px; left: -28px;
  width: 120px; height: 120px;
  background-image: radial-gradient(var(--gold) 2.5px, transparent 2.5px);
  background-size: 18px 18px; z-index: 0; opacity: .7;
}
.img-glow {
  position: absolute; inset: -20px;
  background: radial-gradient(ellipse at center, rgba(232,112,90,.12) 0%, transparent 70%);
  z-index: 0; border-radius: 50%;
  animation: glow 4s ease-in-out infinite;
}
@keyframes glow {
  0%,100% { opacity:.6; transform:scale(1); }
  50%     { opacity:1;  transform:scale(1.08); }
}

/* Floating pills */
.float-pill {
  position: absolute;
  background: rgba(255,255,255,.9); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 30px; padding: .45rem 1rem;
  font-size: .76rem; font-weight: 600;
  display: flex; align-items: center; gap: .35rem;
  box-shadow: var(--sh-md); white-space: nowrap; z-index: 3;
}
.pill-1 { top: 8%;    left: -22px;  animation: pf 4.2s ease-in-out infinite; }
.pill-2 { bottom:28%; right: -28px; animation: pf 4.8s ease-in-out infinite .5s; }
.pill-3 { bottom: 6%; left: 14%;   animation: pf 5.4s ease-in-out infinite 1s; }
@keyframes pf { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-9px); } }

/* Scroll cue */
.scroll-cue {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted); z-index: 1; font-family: var(--ff-mono);
  transition: opacity var(--ease);
}
.scroll-cue:hover { opacity: .6; }
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--coral), transparent);
  animation: sline 2.2s ease-in-out infinite;
}
@keyframes sline {
  0%  { transform:scaleY(0); transform-origin:top; }
  49% { transform:scaleY(1); transform-origin:top; }
  50% { transform:scaleY(1); transform-origin:bottom; }
  100%{ transform:scaleY(0); transform-origin:bottom; }
}

/* ── Load animations ────────────────────────────────────────── */
.animate-up    { opacity:0; transform:translateY(26px); transition:opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.animate-right { opacity:0; transform:translateX(40px); transition:opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.animate-float { opacity:0; transition:opacity .5s ease; }
.animate-up.loaded, .animate-right.loaded, .animate-float.loaded { opacity:1; transform:none; }

.d1  { transition-delay:.10s; }
.d2  { transition-delay:.20s; }
.d3  { transition-delay:.32s; }
.d4  { transition-delay:.44s; }
.d5  { transition-delay:.56s; }
.d6  { transition-delay:.68s; }
.d7  { transition-delay:.80s; }
.d8  { transition-delay:.92s; }
.d9  { transition-delay:1.10s; }
.d10 { transition-delay:1.25s; }
.d11 { transition-delay:1.40s; }

/* ── Scroll-reveal ──────────────────────────────────────────── */
.fade-in {
  opacity:0; transform:translateY(32px);
  transition:opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.fade-in.visible { opacity:1; transform:none; }
.fade-in:nth-child(2) { transition-delay:.1s; }
.fade-in:nth-child(3) { transition-delay:.18s; }
.fade-in:nth-child(4) { transition-delay:.26s; }
.fade-in:nth-child(5) { transition-delay:.34s; }

/* ── Ticker ─────────────────────────────────────────────────── */
.ticker {
  background: var(--charcoal); overflow: hidden;
  padding: .9rem 0; border-top: 1px solid rgba(255,255,255,.06);
}
.ticker-track {
  display: flex; gap: 2rem; align-items: center; width: max-content;
  animation: ticker 22s linear infinite;
  font-family: var(--ff-mono); font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.45);
}
.t-sep { color: var(--coral); flex-shrink: 0; }
@keyframes ticker { from { transform:translateX(0); } to { transform:translateX(-50%); } }
.ticker:hover .ticker-track { animation-play-state: paused; }

/* ── About ──────────────────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1.3fr .7fr;
  gap: 6rem; align-items: center;
}
.about-text p { color: var(--mid); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.25rem; }
.values { display: flex; flex-direction: column; gap: 0; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--ivory-mid); }
.value-item {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1.1rem 0; border-bottom: 1px solid var(--ivory-mid);
  transition: background .3s ease;
}
.value-item:last-child { border-bottom: none; }
.val-num {
  font-family: var(--ff-mono); font-size: .68rem; font-weight: 500;
  color: var(--coral); letter-spacing: .12em; flex-shrink: 0;
  width: 28px; opacity: .7;
  transition: opacity .3s ease;
}
.value-item:hover .val-num { opacity: 1; }
.val-body { flex: 1; }
.val-body strong {
  font-family: var(--ff-body); font-size: .95rem; font-weight: 600;
  display: block; margin-bottom: .15rem; color: var(--charcoal);
  transition: color .3s ease;
}
.value-item:hover .val-body strong { color: var(--coral); }
.val-body p { font-size: .84rem; color: var(--muted); margin-bottom: 0; }

.quote-block {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(135deg, var(--green), var(--green-dk));
  padding: 3rem 2rem;
}
.qb-shape {
  position: absolute; width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,.06); top: -60px; right: -60px;
}
.qb-text {
  font-family: var(--ff-head); font-style: italic;
  font-size: 1.3rem; color: var(--white); line-height: 1.6;
  position: relative; z-index: 1;
}

/* ── Stats strip ────────────────────────────────────────────── */
.stats-strip {
  background: var(--charcoal2);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(232,112,90,.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(45,90,61,.1) 0%, transparent 60%);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; position: relative; z-index: 1;
}
.stat-item {
  text-align: center; padding: 1.5rem 1rem;
  position: relative; cursor: default;
  transition: transform .35s var(--ease-out);
}
.stat-item::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--r-md);
  background: radial-gradient(ellipse at center, rgba(244,194,97,.12) 0%, transparent 70%);
  opacity: 0; transition: opacity .4s ease;
}
.stat-item::after {
  content: '';
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--coral), var(--gold));
  border-radius: 2px;
  transition: width .45s var(--ease-out);
}
.stat-item:hover { transform: translateY(-6px); }
.stat-item:hover::before { opacity: 1; }
.stat-item:hover::after  { width: 48px; }

.stat-n {
  display: block; font-family: var(--ff-head);
  font-size: clamp(3rem, 5vw, 5rem); font-weight: 900;
  color: var(--coral); line-height: 1; margin-bottom: .6rem;
  letter-spacing: -2px;
  transition: color .4s ease, text-shadow .4s ease, transform .35s var(--ease-out);
}
.stat-item:hover .stat-n {
  color: var(--gold);
  text-shadow: 0 0 48px rgba(244,194,97,.45);
  transform: scale(1.06);
}
.stat-l {
  font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.4); font-weight: 500;
  transition: color .4s ease;
}
.stat-item:hover .stat-l { color: rgba(255,255,255,.75); }

/* ── Industries ─────────────────────────────────────────────── */
.ind-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.5rem;
}
.ind-card {
  grid-column: span 2;
  background: #111; border-radius: var(--r-lg);
  min-height: 300px; padding: 0;
  position: relative; overflow: hidden;
  transition: transform .5s var(--ease-out), box-shadow .5s ease;
  cursor: default;
}
.ind-card:nth-child(4) { grid-column: 2 / span 2; }
.ind-card:nth-child(5) { grid-column: 4 / span 2; }

/* Background photo/SVG */
.ind-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: grayscale(1) brightness(.7) contrast(1.05);
  transition: filter .65s ease, transform .65s var(--ease-out);
  z-index: 0;
}
/* Colour tint overlay — uses --c to tint on hover */
.ind-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--c, #E8705A);
  opacity: 0; z-index: 1;
  transition: opacity .65s ease;
  mix-blend-mode: color;
}
/* Bottom gradient for text legibility */
.ind-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.2) 50%, transparent 100%);
  z-index: 2; pointer-events: none;
}

.ind-card:hover .ind-bg-img {
  filter: grayscale(0) brightness(.8) contrast(1.05) saturate(1.15);
  transform: scale(1.04);
}
.ind-card:hover::before { opacity: .55; }
.ind-card:hover { transform: translateY(-6px); box-shadow: 0 30px 80px rgba(0,0,0,.35); }

.ind-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.75rem 1.75rem 1.5rem;
  z-index: 3;
}
.ind-tag {
  display: block; font-family: var(--ff-mono); font-size: .62rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: .5rem;
  transition: color .4s ease;
}
.ind-card:hover .ind-tag { color: rgba(255,255,255,.75); }
.ind-card h3 {
  font-size: 1.1rem; font-weight: 700; font-family: var(--ff-body);
  color: rgba(255,255,255,.9); margin-bottom: .5rem; line-height: 1.3;
}
.ind-card p {
  font-size: .82rem; color: rgba(255,255,255,.65); line-height: 1.6;
  margin-bottom: .75rem; max-height: 0; overflow: hidden;
  transition: max-height .5s var(--ease-out), opacity .5s ease;
  opacity: 0;
}
.ind-card:hover p { max-height: 100px; opacity: 1; }
.ind-arrow {
  font-size: 1rem; color: rgba(255,255,255,.7);
  transform: translateX(-6px); opacity: 0;
  transition: opacity .3s ease, transform .3s ease;
  display: inline-block;
}
.ind-card:hover .ind-arrow { opacity: 1; transform: none; }

/* ── Companies ──────────────────────────────────────────────── */
.companies { padding: 5rem 0 0; }
.companies .section-header { padding-bottom: 0; margin-bottom: 3.5rem; }

.co-marquee-wrap {
  background: var(--charcoal);
  padding: 2.5rem 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
/* fade edges */
.co-marquee-wrap::before,
.co-marquee-wrap::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
  pointer-events: none;
}
.co-marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--charcoal), transparent); }
.co-marquee-wrap::after  { right: 0; background: linear-gradient(to left,  var(--charcoal), transparent); }

.co-marquee {
  display: flex; align-items: center; gap: 4rem;
  width: max-content;
  animation: comarquee 18s linear infinite;
}
.co-marquee-wrap:hover .co-marquee { animation-play-state: paused; }

@keyframes comarquee { from { transform:translateX(0); } to { transform:translateX(-50%); } }

.co-logo {
  flex-shrink: 0; height: 44px; display: flex; align-items: center;
  opacity: .3; filter: grayscale(1);
  transition: opacity .4s ease, filter .4s ease, transform .3s ease;
  cursor: default;
}
.co-logo:hover { opacity: 1; filter: none; transform: scale(1.08); }

.co-logo svg { height: 100%; width: auto; }

/* Brand colors on hover */
.amadeus { color: #006BB6; }
.indra   { color: #0033A0; }
.mapfre  { color: #E30613; }

.co-sep { color: rgba(255,255,255,.12); font-size: .6rem; flex-shrink: 0; }

/* ── Services ───────────────────────────────────────────────── */
.services { background: var(--charcoal2); }
.services .section-title,
.services .section-sub { color: var(--white); }
.services .section-sub { color: rgba(255,255,255,.5); }
.services .label { color: var(--coral); }

.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.svc-card {
  background: rgba(255,255,255,.03); border-radius: var(--r-lg);
  padding: 3rem 2.5rem; position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  transition: transform .4s var(--ease-out), border-color .4s ease, box-shadow .4s ease;
}
.svc-card:hover {
  transform: translateY(-8px);
  border-color: rgba(232,112,90,.35);
  box-shadow: 0 32px 80px rgba(0,0,0,.3);
}
.svc-featured {
  border-color: var(--coral);
  background: rgba(232,112,90,.06);
}
.svc-featured:hover { border-color: var(--coral); }

.svc-bg-num {
  position: absolute; right: -1rem; bottom: -2.5rem;
  font-family: var(--ff-head); font-size: 13rem; font-weight: 900;
  line-height: 1; pointer-events: none; user-select: none;
  -webkit-text-stroke: 1px rgba(255,255,255,.04);
  -webkit-text-fill-color: transparent; color: transparent;
  transition: -webkit-text-stroke .4s ease;
}
.svc-card:hover .svc-bg-num { -webkit-text-stroke-color: rgba(232,112,90,.08); }

.svc-badge {
  display: inline-block; margin-bottom: 2rem;
  background: var(--coral); color: var(--white);
  font-family: var(--ff-mono); font-size: .62rem; font-weight: 600;
  padding: .3rem .85rem; border-radius: 20px;
  letter-spacing: .1em; text-transform: uppercase;
}

.svc-icon-wrap { margin-bottom: 1.5rem; }
.svc-icon-lg { font-size: 2.6rem; display: block; }

.svc-card h3 {
  font-size: 1.35rem; font-weight: 700; margin-bottom: 1rem;
  color: var(--white);
}
.svc-card > p {
  font-size: .9rem; color: rgba(255,255,255,.5); line-height: 1.8; margin-bottom: 1.75rem;
}

.svc-list { margin-bottom: 2.5rem; }
.svc-list li {
  font-size: .85rem; color: rgba(255,255,255,.45);
  padding: .55rem 0; border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex; align-items: center; gap: .6rem;
}
.svc-list li::before { content:'✦'; color: var(--coral); font-size: .6rem; flex-shrink:0; }

.svc-cta-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .85rem; font-weight: 600; color: var(--coral);
  font-family: var(--ff-body);
  padding: 0; background: none; border: none; cursor: pointer;
  transition: gap .25s ease, color .25s ease;
}
.svc-cta-btn:hover { gap: .75rem; color: var(--gold); }
.svc-arrow { transition: transform .25s ease; }
.svc-cta-btn:hover .svc-arrow { transform: translateX(4px); }

/* ── Process ────────────────────────────────────────────────── */
.proc-layout {
  display: flex; flex-direction: column; gap: 0;
  max-width: 820px; margin: 0 auto;
}
.proc-step {
  display: grid; grid-template-columns: 160px 1fr;
  gap: 2rem; align-items: flex-start;
  padding: 0; position: relative;
}
.proc-num-col {
  display: flex; flex-direction: column; align-items: center;
  position: relative;
}
.proc-num {
  font-family: var(--ff-head); font-weight: 900;
  font-size: clamp(5rem, 9vw, 8rem); line-height: 1;
  -webkit-text-stroke: 2px var(--coral);
  -webkit-text-fill-color: transparent; color: transparent;
  display: block; transition: -webkit-text-fill-color .4s ease;
  opacity: .22; transition: opacity .4s ease, -webkit-text-fill-color .4s ease;
  cursor: default;
}
.proc-step:hover .proc-num,
.proc-step.proc-active .proc-num {
  -webkit-text-fill-color: var(--coral);
  opacity: 1;
}
.proc-vline {
  width: 1px; flex: 1; min-height: 60px;
  background: linear-gradient(to bottom, var(--coral), transparent);
  opacity: .2; margin-top: .25rem;
  transition: opacity .4s ease;
}
.proc-step:hover .proc-vline { opacity: .6; }

.proc-content {
  padding: 1rem 0 3rem;
}
.proc-content h3 {
  font-size: 1.2rem; font-weight: 700; margin-bottom: .8rem;
  font-family: var(--ff-body); color: var(--charcoal);
  transition: color .4s ease;
}
.proc-step:hover .proc-content h3 { color: var(--coral); }
.proc-content p  { font-size: .9rem; color: var(--muted); line-height: 1.8; }

/* ── Contact ────────────────────────────────────────────────── */
.contact {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--green-dk) 0%, var(--green) 100%);
  padding: 7rem 0;
}
.contact-shapes { position: absolute; inset: 0; pointer-events: none; }
.cs1 { position: absolute; width: 450px; height: 450px; border-radius: 50%; background: rgba(255,255,255,.04); top: -180px; right: -100px; }
.cs2 { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,.04); bottom: -120px; left: -80px; }

.contact-inner { position: relative; z-index: 1; text-align: center; }
.contact-title {
  font-family: var(--ff-head); font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white); font-weight: 700; margin-bottom: 1.25rem; line-height: 1.2;
}
.contact-sub { color: rgba(255,255,255,.65); font-size: 1.05rem; max-width: 460px; margin: 0 auto 3rem; }

.ct-btns { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.ct-btn {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.18);
  border-radius: var(--r-md); padding: 1.25rem 2rem; color: var(--white);
  min-width: 260px; transition: background var(--ease), border-color var(--ease), transform .25s var(--ease-out), box-shadow var(--ease);
  backdrop-filter: blur(12px);
}
.ct-btn:hover {
  background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.4);
  box-shadow: 0 16px 36px rgba(0,0,0,.25);
}
.ct-icon  { font-size: 1.6rem; }
.ct-lbl   { display: block; font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; opacity: .55; margin-bottom: .2rem; }
.ct-val   { font-size: .92rem; font-weight: 500; }
.ct-note  { color: rgba(255,255,255,.38); font-size: .82rem; font-family: var(--ff-mono); letter-spacing: .06em; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer { background: var(--charcoal); padding: 3rem 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1rem; }
.footer-logo { font-family: var(--ff-head); font-style: italic; font-size: 1.7rem; color: var(--white); }
.footer-tag  { font-style: italic; color: rgba(255,255,255,.35); font-size: .9rem; }
.footer-nav  { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.footer-nav a { color: rgba(255,255,255,.5); font-size: .85rem; transition: color var(--ease); }
.footer-nav a:hover { color: var(--coral); }
.footer-copy { font-size: .75rem; color: rgba(255,255,255,.25); font-family: var(--ff-mono); }
.footer-privacy-link {
  background: none; border: none; cursor: pointer;
  font-size: .72rem; color: rgba(255,255,255,.2); font-family: var(--ff-mono);
  letter-spacing: .05em; text-decoration: underline; text-underline-offset: 3px;
  transition: color var(--ease);
}
.footer-privacy-link:hover { color: rgba(255,255,255,.55); }

/* ══════════════════════════════════════════════════════════════
   Responsive
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .ind-grid { grid-template-columns: repeat(2,1fr); }
  .ind-card, .ind-card:nth-child(4), .ind-card:nth-child(5) { grid-column: span 1; }
  .ind-card:nth-child(5) { grid-column: 1 / -1; max-width: 50%; justify-self: center; }
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .svc-card:first-child { grid-column: 1 / -1; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .proc-step { grid-template-columns: 120px 1fr; }
  .proc-num  { font-size: 5rem; }
}

@media (max-width: 900px) {
  .about-grid  { grid-template-columns: 1fr; gap: 3rem; }
  .svc-grid    { grid-template-columns: 1fr; }
  .svc-card:first-child { grid-column: unset; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-container {
    grid-template-columns: 1fr; text-align: center;
    gap: 3rem; padding: 2rem 1.5rem 5rem;
  }
  .hero-meta, .hero-ctas, .hero-divider { justify-content: center; }
  .hero-divider { margin: 1.5rem auto; }
  .image-wrap { width: 280px; height: 340px; margin: 0 auto; }
  .pill-1 { left: 0; }
  .pill-2 { right: 0; }
  .ind-grid { grid-template-columns: 1fr; }
  .ind-card, .ind-card:nth-child(4), .ind-card:nth-child(5) { grid-column: span 1; max-width: 100%; justify-self: stretch; }
  .ind-card { min-height: 220px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .proc-step { grid-template-columns: 90px 1fr; gap: 1rem; }
  .proc-num  { font-size: 4rem; -webkit-text-stroke-width: 1.5px; }
  .proc-content { padding-bottom: 2rem; }
  .proc-vline { min-height: 40px; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; justify-content: flex-end; }
  .privacy-panel { padding: 2.5rem 1.75rem; }
}

@media (max-width: 480px) {
  .section { padding: 5rem 0; }
  .container { padding: 0 1.25rem; }
  .hero-name { font-size: 2.1rem; letter-spacing: -1px; }
  .ct-btn { min-width: unset; width: 100%; max-width: 320px; }
  .ct-btns { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 1rem; }
  .proc-step { grid-template-columns: 1fr; }
  .proc-num-col { flex-direction: row; align-items: center; gap: 1rem; margin-bottom: .5rem; }
  .proc-vline { width: 40px; height: 1px; min-height: unset; flex: unset;
    background: linear-gradient(to right, var(--coral), transparent); }
  .svc-bg-num { font-size: 8rem; }
  .back-to-top { bottom: 1rem; right: 1rem; }
}

/* ── Reduced motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .cursor-dot, .cursor-ring { display: none !important; }
}
