/* ============================================================
   AURI BESPOKE COMMERCIAL PARTNERS
   Main Stylesheet — style.css
   Version: 1.0.0
   ============================================================ */

/* ── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
  --navy:       #0D1B3E;
  --navy-deep:  #070e20;
  --navy-mid:   #0f2251;
  --gold:       #C9A84C;
  --gold-light: #e4c878;
  --gold-pale:  #f5e9c8;
  --cream:      #FAF7F0;
  --warm-white: #FFFDF8;
  --charcoal:   #1A1A1A;
  --mid:        #555555;
  --light-mid:  #888888;
  --white:      #FFFFFF;
  --transition: 0.3s ease;
}

/* ── RESET & BASE ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; }
ul { list-style: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }



@media print {

 .print-page {
    page-break-before: always;
    break-before: page;
    page-break-inside: avoid;
    break-inside: avoid;
  }

  .print-page:first-child {
    page-break-before: auto;
  }

}

/* ── NAVIGATION ─────────────────────────────────────────────── */
nav {
   top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5vw;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
  background: rgba(7,14,32,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: height var(--transition);
}
nav.scrolled { height: 62px; }
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 44px; width: auto; object-fit: contain; transition: height var(--transition); }
nav.scrolled .nav-logo img { height: 36px; }
.nav-links { display: flex; gap: 2.2rem; }
.nav-links a {
  font-size: 0.75rem; font-weight: 400;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  background: transparent; border: 1px solid var(--gold);
  color: var(--gold); padding: 0.5rem 1.4rem;
  font-family: 'Outfit', sans-serif; font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: all 0.25s; display: inline-block;
}
.nav-cta:hover { background: var(--gold); color: var(--navy-deep); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 1px; background: var(--gold); }

/* Mobile Menu */
.mob-menu {
  display: none; position: fixed; inset: 0;
  background: var(--navy-deep); z-index: 999;
  flex-direction: column; align-items: center;
  justify-content: center; gap: 1.8rem;
}
.mob-menu.open { display: flex; }
.mob-menu img { height: 55px; width: auto; margin-bottom: 0.5rem; }
.mob-menu a { font-size: 1.3rem; font-weight: 300; color: rgba(255,255,255,0.8); letter-spacing: 0.1em; }
.mob-menu a.gold { color: var(--gold); }

/* ── HERO ───────────────────────────────────────────────────── */
#hero {
  min-height: 100vh; position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(110deg, rgba(7,14,32,0.96) 38%, rgba(7,14,32,0.55) 100%);
}
.hero-grid { position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: 0.06; }
.hero-grid svg { width: 100%; height: 100%; }
.hero-content { padding: 12vh 4vw 10vh 8vw; position: relative; z-index: 3; }
.hero-logo-mark { margin-bottom: 2rem; animation: fadeUp 0.8s ease 0.1s both; }
.hero-logo-mark img { height: 68px; width: auto; filter: brightness(1.1); }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.8rem; animation: fadeUp 0.8s ease 0.2s both;
}
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5.2rem); font-weight: 300;
  line-height: 1.08; color: #fff; margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease 0.4s both;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 0.98rem; font-weight: 300; line-height: 1.85;
  color: rgba(255,255,255,0.6); max-width: 460px;
  margin-bottom: 2.8rem; animation: fadeUp 0.8s ease 0.6s both;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 0.8s ease 0.8s both; }
.hero-right { position: relative; z-index: 3; padding: 10vh 7vw 10vh 2vw; display: flex; flex-direction: column; gap: 1.4rem; }
.hero-stat { border-left: 2px solid var(--gold); padding: 1.2rem 1.5rem; background: rgba(13,27,62,0.72); backdrop-filter: blur(12px); }
.hero-stat:nth-child(1) { animation: fadeUp 0.7s ease 0.5s both; }
.hero-stat:nth-child(2) { animation: fadeUp 0.7s ease 0.65s both; }
.hero-stat:nth-child(3) { animation: fadeUp 0.7s ease 0.8s both; }
.hero-stat-n { font-family: 'Cormorant Garamond', serif; font-size: 2.9rem; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 0.25rem; }
.hero-stat-l { font-size: 0.72rem; font-weight: 400; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase; }
.hero-qcard { background: rgba(13,27,62,0.75); border: 1px solid rgba(201,168,76,0.22); padding: 1.8rem; backdrop-filter: blur(12px); margin-top: 0.4rem; animation: fadeUp 0.7s ease 1s both; }
.hero-qcard-text { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-style: italic; font-weight: 300; color: rgba(255,255,255,0.82); line-height: 1.7; margin-bottom: 0.8rem; }
.hero-qcard-attr { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.scroll-cue { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; opacity: 0.5; animation: fadeUp 1s ease 1.4s both; }
.scroll-cue span { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollAnim 2s ease-in-out infinite; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  background: var(--gold); color: var(--navy-deep);
  padding: 0.88rem 2.2rem; border: none;
  font-family: 'Outfit', sans-serif; font-size: 0.78rem;
  font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; display: inline-block; transition: all 0.25s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: rgba(255,255,255,0.8);
  padding: 0.88rem 2.2rem; border: 1px solid rgba(255,255,255,0.28);
  font-family: 'Outfit', sans-serif; font-size: 0.78rem;
  font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; display: inline-block; transition: all 0.25s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── SHARED SECTION STYLES ──────────────────────────────────── */
section { position: relative; }
.si { max-width: 1280px; margin: 0 auto; padding: 7rem 5vw; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem;
}
.eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.stitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem); font-weight: 300;
  line-height: 1.15; color: var(--navy); margin-bottom: 1rem;
}
.stitle em { font-style: italic; color: var(--gold); }
.stitle.lt { color: #fff; }
.slead { font-size: 1rem; font-weight: 300; line-height: 1.9; color: var(--mid); max-width: 580px; }
.slead.lt { color: rgba(255,255,255,0.55); }
.gold-rule { width: 55px; height: 2px; background: var(--gold); margin: 1.5rem 0; }

/* ── ABOUT ──────────────────────────────────────────────────── */
#about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; margin-top: 4rem; }
.about-p { font-size: 0.93rem; font-weight: 300; line-height: 1.95; color: var(--mid); margin-bottom: 1.4rem; }
.vals { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-top: 2.5rem; }
.val { padding: 1.4rem; border-top: 2px solid var(--gold); background: #fff; }
.val-t { font-size: 0.78rem; font-weight: 500; color: var(--navy); letter-spacing: 0.06em; margin-bottom: 0.45rem; text-transform: uppercase; }
.val-b { font-size: 0.82rem; font-weight: 300; line-height: 1.7; color: var(--mid); }
.about-img-col { position: relative; }
.about-img-main { width: 100%; height: 420px; overflow: hidden; position: relative; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.about-img-main:hover img { transform: scale(1.04); }
.about-img-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,14,32,0.65), transparent 55%); }
.about-img-badge { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; display: flex; align-items: flex-end; gap: 1.5rem; }
.about-img-n { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 300; color: var(--gold); line-height: 1; }
.about-img-sub { font-size: 0.7rem; font-weight: 300; color: rgba(255,255,255,0.75); line-height: 1.5; text-transform: uppercase; letter-spacing: 0.1em; }
.about-img-sm { position: absolute; bottom: -2.5rem; right: -2rem; width: 175px; height: 135px; overflow: hidden; border: 4px solid var(--cream); box-shadow: 0 10px 40px rgba(0,0,0,0.2); }
.about-img-sm img { width: 100%; height: 100%; object-fit: cover; }
.about-logo-wm { position: absolute; top: -1.5rem; left: -1rem; opacity: 0.06; pointer-events: none; z-index: 0; }
.about-logo-wm img { height: 180px; width: auto; filter: invert(1); }

/* ── SERVICES ───────────────────────────────────────────────── */
#services { background: var(--navy-deep); }
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(201,168,76,0.12); margin-top: 4rem; }
.svc { background: var(--navy-deep); position: relative; overflow: hidden; transition: background 0.35s; }
.svc:hover { background: rgba(13,27,62,0.9); }
.svc-img { width: 100%; height: 220px; overflow: hidden; position: relative; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.svc:hover .svc-img img { transform: scale(1.06); }
.svc-img-ov { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(7,14,32,0.25), rgba(7,14,32,0.78)); }
.svc-tag { position: absolute; top: 1rem; left: 1rem; background: var(--gold); color: var(--navy-deep); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.28rem 0.75rem; }
.svc-body { padding: 2rem 2.2rem 2.5rem; }
.svc-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: rgba(201,168,76,0.18); line-height: 1; margin-bottom: 0.8rem; }
.svc-title { font-size: 0.9rem; font-weight: 500; color: var(--gold); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.75rem; }
.svc-text { font-size: 0.87rem; font-weight: 300; line-height: 1.85; color: rgba(255,255,255,0.52); }
.svc-list { margin-top: 1rem; }
.svc-list li { font-size: 0.8rem; color: rgba(255,255,255,0.4); padding: 0.28rem 0 0.28rem 1rem; position: relative; }
.svc-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); opacity: 0.5; }

/* ── DIFFERENTIATOR ─────────────────────────────────────────── */
#difference { background: var(--cream); }
.diff-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 3.5rem; border: 1px solid rgba(201,168,76,0.25); }
.diff-imgcol { position: relative; overflow: hidden; min-height: 500px; }
.diff-imgcol img.bg { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.diff-imgcol-ov { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(7,14,32,0.88), rgba(201,168,76,0.1)); }
.diff-logo-area { position: absolute; top: 2rem; left: 2.5rem; z-index: 2; }
.diff-logo-area img { height: 55px; width: auto; opacity: 0.85; }
.diff-quote { position: absolute; bottom: 2.5rem; left: 2.5rem; right: 2.5rem; z-index: 2; }
.diff-quote-t { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-style: italic; font-weight: 300; color: #fff; line-height: 1.65; margin-bottom: 0.8rem; }
.diff-quote-by { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.diff-tablecol { background: #fff; }
.diff-head { display: grid; grid-template-columns: 1fr 1fr; background: var(--navy); }
.diff-head-c { padding: 1rem 1.4rem; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; }
.diff-head-c:first-child { color: rgba(255,255,255,0.4); }
.diff-head-c:last-child { color: var(--gold); background: rgba(201,168,76,0.1); border-left: 1px solid rgba(201,168,76,0.3); }
.diff-row { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(201,168,76,0.1); transition: background 0.2s; }
.diff-row:hover { background: rgba(201,168,76,0.03); }
.diff-c { padding: 0.85rem 1.4rem; font-size: 0.84rem; font-weight: 300; }
.diff-c:first-child { color: var(--mid); border-right: 1px solid rgba(201,168,76,0.1); }
.diff-c:last-child { color: var(--charcoal); }
.chk { color: var(--gold); font-style: normal; margin-right: 0.3rem; }
.xmk { color: #ccc; font-style: normal; margin-right: 0.3rem; }
.dim { font-size: 0.67rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--light-mid); display: block; margin-bottom: 0.2rem; }

/* ── PARTNERSHIP ────────────────────────────────────────────── */
#partnership { background: var(--warm-white); }
.pship-banner { width: 100%; height: 300px; position: relative; overflow: hidden; }
.pship-banner img.bg { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.pship-banner-ov { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,14,32,0.92) 38%, rgba(7,14,32,0.5)); }
.pship-banner-cnt { position: absolute; inset: 0; display: flex; align-items: center; gap: 3rem; padding: 0 8vw; }
.pship-banner-logo img { height: 60px; width: auto; opacity: 0.9; }
.pship-banner-divider { width: 1px; height: 70px; background: rgba(201,168,76,0.4); flex-shrink: 0; }
.pship-banner-t { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 300; color: #fff; line-height: 1.2; }
.pship-banner-t em { font-style: italic; color: var(--gold); }
.pship-banner-s { font-size: 0.88rem; font-weight: 300; color: rgba(255,255,255,0.6); margin-top: 0.7rem; max-width: 400px; }
.pship-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid rgba(201,168,76,0.2); margin-top: 4rem; }
.pcard { overflow: hidden; }
.pcard-img { height: 200px; overflow: hidden; position: relative; }
.pcard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.pcard:hover .pcard-img img { transform: scale(1.07); }
.pcard-img-ov { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(7,14,32,0.2), rgba(7,14,32,0.65)); }
.pcard-body { padding: 1.8rem 1.8rem 2rem; border-top: 2px solid var(--gold); }
.pbadge { display: inline-block; background: var(--gold); color: var(--navy-deep); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.25rem 0.7rem; margin-bottom: 0.9rem; }
.pcard-title { font-size: 0.88rem; font-weight: 500; color: var(--navy); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.65rem; }
.pcard-text { font-size: 0.83rem; font-weight: 300; line-height: 1.85; color: var(--mid); }
.pquote { text-align: center; margin-top: 4rem; }
.pquote-t { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-style: italic; font-weight: 300; color: var(--navy); line-height: 1.6; max-width: 680px; margin: 0 auto 2.5rem; }
.pquote-t::before { content: '\201C'; color: var(--gold); font-size: 2.5rem; line-height: 0; vertical-align: -0.45rem; }
.pquote-t::after  { content: '\201D'; color: var(--gold); font-size: 2.5rem; line-height: 0; vertical-align: -0.45rem; }

/* ── PROCESS ─────────────────────────────────────────────────── */
#process { background: var(--navy-deep); }
.proc-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 3.5rem; position: relative; }
.proc-steps::before { content: ''; position: absolute; top: 40px; left: 10%; right: 10%; height: 1px; background: linear-gradient(to right, var(--gold), rgba(201,168,76,0.2)); z-index: 0; }
.proc-step { position: relative; z-index: 1; text-align: center; padding: 0 0.8rem; }
.proc-circle { width: 80px; height: 80px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; background: var(--navy-deep); position: relative; overflow: hidden; transition: background 0.3s; }
.proc-step:hover .proc-circle { background: rgba(201,168,76,0.1); }
.proc-circle-img { position: absolute; inset: 0; opacity: 0.22; border-radius: 50%; overflow: hidden; }
.proc-circle-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.proc-num { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300; color: var(--gold); position: relative; z-index: 1; }
.proc-t { font-size: 0.74rem; font-weight: 500; color: #fff; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.45rem; }
.proc-b { font-size: 0.76rem; font-weight: 300; color: rgba(255,255,255,0.42); line-height: 1.65; }

/* ── MARKET ──────────────────────────────────────────────────── */
#market { background: var(--navy); overflow: hidden; }
.mkt-strip { width: 100%; height: 360px; position: relative; overflow: hidden; }
.mkt-strip img.bg { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.mkt-strip-ov { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(7,14,32,0.3), rgba(7,14,32,0.78)); }
.mkt-strip-text { position: absolute; bottom: 2.5rem; left: 5vw; right: 5vw; display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.mkt-strip-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 300; color: #fff; line-height: 1.2; }
.mkt-strip-title em { font-style: italic; color: var(--gold); }
.mkt-stats { display: flex; gap: 2.5rem; }
.mkt-stat-n { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 300; color: var(--gold); }
.mkt-stat-l { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.mkt-cnt { padding: 4rem 5vw 6rem; max-width: 1280px; margin: 0 auto; }
.mkt-sectors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(201,168,76,0.1); margin-top: 3rem; }
.msector { background: rgba(255,255,255,0.02); overflow: hidden; }
.msector-img { height: 180px; overflow: hidden; position: relative; }
.msector-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.msector:hover .msector-img img { transform: scale(1.07); }
.msector-img-ov { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(7,14,32,0.2), rgba(7,14,32,0.72)); }
.msector-body { padding: 1.4rem 1.5rem 1.8rem; }
.msector-t { font-size: 0.78rem; font-weight: 500; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.4rem; }
.msector-b { font-size: 0.8rem; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.65; }

/* ── TEAM ────────────────────────────────────────────────────── */
#team { background: var(--cream); }
.team-split { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; margin-top: 4rem; }
.team-p { font-size: 0.93rem; font-weight: 300; line-height: 1.95; color: var(--mid); margin-bottom: 1.2rem; }
.creds { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 2rem; }
.cred { background: var(--navy); color: rgba(255,255,255,0.75); font-size: 0.67rem; font-weight: 400; letter-spacing: 0.08em; padding: 0.35rem 0.95rem; text-transform: uppercase; }
.fcard { overflow: hidden; }
.fcard-img { width: 100%; height: 300px; overflow: hidden; position: relative; }
.fcard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.fcard:hover .fcard-img img { transform: scale(1.04); }
.fcard-img-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,14,32,0.9), rgba(7,14,32,0.1) 60%); }
.fcard-body { background: var(--navy); padding: 2rem 2.2rem; }
.finit { width: 60px; height: 60px; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; color: var(--navy-deep); margin-top: -3rem; position: relative; z-index: 2; border: 3px solid var(--navy); }
.fname { font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; font-weight: 300; color: #fff; margin: 1rem 0 0.25rem; }
.frole { font-size: 0.68rem; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.fbio { font-size: 0.84rem; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.6); }
.fcontact { display: flex; gap: 1.2rem; margin-top: 1.5rem; flex-wrap: wrap; }
.fcontact a { font-size: 0.78rem; color: var(--gold); }

/* ── CONTACT ─────────────────────────────────────────────────── */
#contact { background: var(--navy-deep); }
.contact-hero { width: 100%; height: 250px; position: relative; overflow: hidden; }
.contact-hero img.bg { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.contact-hero-ov { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(7,14,32,0.35), rgba(7,14,32,0.92)); }
.contact-hero-logo { position: absolute; bottom: 2rem; right: 5vw; z-index: 2; }
.contact-hero-logo img { height: 50px; width: auto; opacity: 0.7; }
.cg { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; margin-top: 4rem; }
.cintro { font-size: 0.93rem; font-weight: 300; line-height: 1.9; color: rgba(255,255,255,0.58); margin-bottom: 2.5rem; }
.cinfo { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.8rem; }
.cicon { width: 40px; height: 40px; border: 1px solid rgba(201,168,76,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cicon svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.clabel { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-bottom: 0.25rem; }
.cvalue { font-size: 0.88rem; font-weight: 300; color: rgba(255,255,255,0.82); }
.cvalue a { color: rgba(255,255,255,0.82); }
.cvalue a:hover { color: var(--gold); }
.offices { margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid rgba(201,168,76,0.12); display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.ofc { padding: 1.3rem 1.5rem; border: 1px solid rgba(201,168,76,0.12); }
.oflag { font-size: 1.4rem; margin-bottom: 0.7rem; display: block; }
.ocountry { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.odetail { font-size: 0.82rem; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* Form */
.cform { display: flex; flex-direction: column; gap: 1.1rem; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ff { display: flex; flex-direction: column; gap: 0.35rem; }
.flabel { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.finput { background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.18); color: rgba(255,255,255,0.82); padding: 0.7rem 1rem; font-family: 'Outfit', sans-serif; font-size: 0.87rem; font-weight: 300; outline: none; transition: border-color 0.2s; width: 100%; }
.finput:focus { border-color: var(--gold); }
textarea.finput { resize: vertical; min-height: 100px; }
.fsub { background: var(--gold); color: var(--navy-deep); border: none; padding: 0.88rem 2.4rem; font-family: 'Outfit', sans-serif; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: all 0.25s; align-self: flex-start; margin-top: 0.4rem; }
.fsub:hover { background: var(--gold-light); }
.form-success { display: none; color: var(--gold); font-size: 0.83rem; margin-top: 0.5rem; }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer { background: #040912; padding: 2.2rem 5vw; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(201,168,76,0.1); flex-wrap: wrap; gap: 1rem; }
.footer-logo img { height: 38px; width: auto; }
.fcopy { font-size: 0.72rem; color: rgba(255,255,255,0.28); }
.flinks { display: flex; gap: 1.5rem; }
.flinks a { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.32); }
.flinks a:hover { color: var(--gold); }

/* ── REVEAL ANIMATIONS ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.rd1 { transition-delay: 0.1s; }
.rd2 { transition-delay: 0.2s; }
.rd3 { transition-delay: 0.3s; }
.rd4 { transition-delay: 0.4s; }

/* ── KEYFRAMES ───────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
@keyframes scrollAnim {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 960px) {
  #hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-content { padding: 14vh 6vw 10vh; }
  nav .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .about-grid, .diff-split, .team-split, .cg { grid-template-columns: 1fr; gap: 3rem; }
  .pship-grid { grid-template-columns: 1fr; }
  .mkt-sectors { grid-template-columns: 1fr 1fr; }
  .proc-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .proc-steps::before { display: none; }
  .about-img-sm { right: -1rem; bottom: -1.5rem; width: 130px; height: 105px; }
  .offices { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; }
  .pship-banner-divider { display: none; }
}
@media (max-width: 600px) {
  .si { padding: 4.5rem 1.5rem; }
  .vals { grid-template-columns: 1fr; }
  .mkt-sectors { grid-template-columns: 1fr; }
  .proc-steps { grid-template-columns: 1fr; }
  .diff-split { grid-template-columns: 1fr; }
  .diff-imgcol { min-height: 260px; }
  .pship-grid { grid-template-columns: 1fr; }
}
