/* =========================================================================
   DUSHYANT KHANNA — Personal Brand Website
   Shared design system & styles
   Palette: Midnight Navy + Champagne Gold + Ivory
   Type: Playfair Display (editorial serif) + Inter (modern sans)
   ========================================================================= */

/* ----------  Design Tokens  ---------- */
:root {
  /* Brand colours */
  --navy-950: #070f1c;
  --navy-900: #0a1626;
  --navy-850: #0d1c30;
  --navy-800: #10233b;
  --navy-700: #16304f;
  --navy-600: #1e3d63;

  --ivory: #f8f5ee;
  --cream: #efe9dc;
  --paper: #ffffff;

  --gold: #c2a15b;
  --gold-bright: #d4b878;
  --gold-deep: #a5843f;

  --ink: #14202f;      /* primary text on light */
  --slate: #465468;    /* secondary text on light */
  --muted: #7c8798;    /* tertiary text */
  --line: #e4ddce;     /* hairlines on light */

  --on-dark: #eef2f8;         /* primary text on dark */
  --on-dark-soft: #aeb9c9;    /* secondary text on dark */
  --on-dark-faint: #6c7a8f;   /* tertiary text on dark */
  --line-dark: rgba(194, 161, 91, 0.22);

  /* Type */
  --serif: "Playfair Display", "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Rhythm */
  --container: 1180px;
  --container-wide: 1320px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(72px, 9vw, 140px);

  --radius: 4px;
  --radius-lg: 8px;

  --shadow-sm: 0 2px 10px rgba(10, 22, 38, 0.06);
  --shadow-md: 0 18px 40px -18px rgba(10, 22, 38, 0.28);
  --shadow-lg: 0 40px 80px -30px rgba(7, 15, 28, 0.55);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----------  Reset & Base  ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}

p { margin: 0 0 1.1em; }

::selection { background: var(--gold); color: var(--navy-950); }

/* ----------  Layout helpers  ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--wide { max-width: var(--container-wide); }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(56px, 6vw, 96px); }

.bg-dark { background: var(--navy-900); color: var(--on-dark); }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4,
.hero h1, .hero h2, .hero h3,
.page-hero h1, .page-hero h2, .page-hero h3,
.feature-band h1, .feature-band h2, .feature-band h3,
.cta-band h1, .cta-band h2, .cta-band h3 { color: var(--on-dark); }
.bg-cream { background: var(--cream); }
.bg-paper { background: var(--paper); }

/* ----------  Shared type components  ---------- */
.overline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 22px;
}
.bg-dark .overline { color: var(--gold-bright); }
.overline::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.overline--center { justify-content: center; }

.display {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.05;
}
.h2 { font-size: clamp(2rem, 4vw, 3rem); }
.h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); }

.lead {
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  line-height: 1.65;
  color: var(--slate);
}
.bg-dark .lead { color: var(--on-dark-soft); }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head--full { max-width: none; }
.section-head--center { margin-inline: auto; text-align: center; }

.text-gold { color: var(--gold); }

/* ----------  Buttons  ---------- */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: var(--navy-950);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bg);
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease),
    color 0.3s var(--ease), box-shadow 0.4s var(--ease);
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px -14px rgba(194, 161, 91, 0.6);
}
.btn .arrow { transition: transform 0.4s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--on-dark);
  border-color: var(--line-dark);
}
.btn--ghost:hover {
  background: rgba(194, 161, 91, 0.08);
  border-color: var(--gold);
  box-shadow: none;
}
.btn--outline-dark {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: rgba(20, 32, 47, 0.2);
}
.btn--outline-dark:hover {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-deep);
  box-shadow: none;
}

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), gap 0.3s var(--ease);
}
.bg-dark .textlink { color: var(--gold-bright); }
.textlink:hover { border-color: currentColor; gap: 12px; }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: 22px;
  transition: background 0.45s var(--ease), padding 0.45s var(--ease),
    box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(9, 22, 38, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-block: 14px;
  border-bottom-color: var(--line-dark);
}
/* On light (interior) pages the header starts solid */
.site-header--solid {
  background: rgba(9, 22, 38, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--on-dark);
}
.brand__mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.02em;
  flex: none;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
.brand:hover .brand__mark { background: var(--gold); color: var(--navy-950); }
.brand__logo { height: clamp(50px, 6.2vw, 68px); width: auto; display: block; }
/* Header shows a crest-focused crop of the logo (name/tagline trimmed) for prominence */
.site-header .brand__logo {
  height: clamp(64px, 6.8vw, 84px);
  width: auto;
}
.footer-brand .brand__logo { height: 78px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.brand__role {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 38px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  padding-block: 6px;
  transition: color 0.3s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav__link:hover,
.nav__link[aria-current="page"] { color: var(--on-dark); }
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

.nav__cta { margin-left: 8px; }
.nav__cta .btn { padding: 12px 24px; }

/* Mobile toggle */
.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 120;
}
.nav__toggle span {
  position: absolute;
  left: 9px; right: 9px;
  height: 1.5px;
  background: var(--on-dark);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.nav__toggle span:nth-child(1) { top: 15px; }
.nav__toggle span:nth-child(2) { top: 22px; }
.nav__toggle span:nth-child(3) { top: 29px; }
body.nav-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav__toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 60px;
  background:
    radial-gradient(1200px 600px at 82% -10%, rgba(194, 161, 91, 0.16), transparent 60%),
    radial-gradient(900px 500px at 0% 110%, rgba(30, 61, 99, 0.5), transparent 55%),
    linear-gradient(160deg, var(--navy-950), var(--navy-850) 55%, var(--navy-900));
  color: var(--on-dark);
  overflow: hidden;
}
.hero::before {
  /* fine engraved lines texture */
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    90deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 84px);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  width: 100%;
}
.hero__eyebrow {
  color: var(--gold-bright);
  margin-bottom: 26px;
}
.hero__title {
  font-size: clamp(2.9rem, 7vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.hero__title .accent { font-style: italic; color: var(--gold); }
.hero__subtitle {
  font-family: var(--sans);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  margin-bottom: 30px;
}
.hero__subtitle .divider { color: var(--gold); margin-inline: 12px; }
.hero__desc {
  max-width: 540px;
  font-size: 1.12rem;
  color: var(--on-dark-soft);
  margin-bottom: 38px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* Portrait */
.hero__portrait { position: relative; justify-self: center; }
.portrait-frame {
  position: relative;
  width: min(400px, 78vw);
  aspect-ratio: 4 / 5;
}
.portrait-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  filter: grayscale(0.12) contrast(1.02);
}
.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 10px -10px -10px 10px;
  border: 1px solid var(--gold);
  z-index: 1;
}
.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  z-index: 3;
  pointer-events: none;
}
.portrait-badge {
  position: absolute;
  left: -26px; bottom: 34px;
  z-index: 4;
  background: var(--navy-950);
  border: 1px solid var(--line-dark);
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.portrait-badge strong {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}
.portrait-badge span {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  margin-top: 6px;
}

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--on-dark-faint);
}
.hero__scroll .line {
  width: 1px; height: 46px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollLine 2.4s var(--ease) infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  40% { transform: scaleY(1); transform-origin: top; }
  60% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ==========================================================================
   STATS STRIP
   ========================================================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.stat {
  padding: clamp(32px, 4vw, 52px) 28px;
  text-align: center;
  border-right: 1px solid var(--line-dark);
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.01em;
}
.stat__label {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
}

/* ==========================================================================
   INTRO / SPLIT
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.split--reverse .split__media { order: 2; }

.figure {
  position: relative;
}
.figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.figure__tag {
  position: absolute;
  bottom: 0; left: 0;
  transform: translateY(50%);
  background: var(--navy-900);
  color: var(--on-dark);
  padding: 20px 26px;
  max-width: 78%;
  box-shadow: var(--shadow-md);
}
.figure__tag .k {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--gold);
}
.figure__tag .v {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
}
.figure--framed::after {
  content: "";
  position: absolute;
  inset: -9px -9px 9px 9px;
  border: 1px solid var(--gold);
  z-index: -1;
}

.pull-quote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.4;
  color: var(--ink);
  font-style: italic;
  padding-left: 26px;
  border-left: 2px solid var(--gold);
}
.bg-dark .pull-quote { color: var(--on-dark); }

/* ==========================================================================
   FOCUS / SERVICE CARDS
   ========================================================================== */
.grid { display: grid; gap: 1px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2vw, 26px);
}

.card {
  position: relative;
  padding: clamp(20px, 3.4vw, 24px);
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease),
    border-color 0.5s var(--ease);
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card:hover::before { transform: scaleX(1); }
.card__num {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold-deep);
  letter-spacing: 0.1em;
}
.card__title {
  font-size: 1.4rem;
  margin: 16px 0 12px;
}
.card__text {
  font-size: 0.98rem;
  color: var(--slate);
  margin: 0;
}
.card__icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  margin-bottom: 22px;
}
.card__icon svg { width: 22px; height: 22px; }

/* Ventures (dark cards) */
.venture {
  position: relative;
  padding: clamp(32px, 3.2vw, 44px);
  background: var(--navy-850);
  border: 1px solid var(--line-dark);
  color: var(--on-dark);
  display: flex;
  flex-direction: column;
  min-height: 300px;
  transition: transform 0.5s var(--ease), background 0.5s var(--ease);
}
.venture:hover { transform: translateY(-6px); background: var(--navy-800); }
.venture__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 20px;
}
.venture__name { font-size: 1.7rem; margin-bottom: 14px; }
.venture__role {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-dark-faint);
  margin-bottom: 18px;
}
.venture__text { color: var(--on-dark-soft); font-size: 0.98rem; margin: 0 0 auto; }
.venture__meta {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ==========================================================================
   iBRICS FEATURE BAND
   ========================================================================== */
.feature-band {
  position: relative;
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(194,161,91,0.14), transparent 60%),
    linear-gradient(120deg, var(--navy-950), var(--navy-800));
  color: var(--on-dark);
  overflow: hidden;
}
.feature-band__inner {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.feature-band__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
.fact {
  background: var(--navy-900);
  padding: 26px 24px;
}
.fact strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}
.fact span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
}

/* ==========================================================================
   TIMELINE (About page)
   ========================================================================== */
.timeline {
  position: relative;
  max-width: 860px;
  margin-inline: auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 15px; top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(var(--gold), var(--line));
}
.tl-item {
  position: relative;
  padding: 0 0 clamp(38px, 5vw, 58px) 56px;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: "";
  position: absolute;
  left: 8px; top: 6px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--navy-900);
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 6px var(--ivory);
}
.tl-phase {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.tl-title { font-size: clamp(1.35rem, 2.4vw, 1.75rem); margin-bottom: 12px; }
.tl-text { color: var(--slate); margin: 0; }

/* Values / principles list */
.principles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.principle { background: var(--paper); padding: clamp(28px, 3vw, 40px); }
.principle__no { font-family: var(--serif); color: var(--gold); font-size: 1.1rem; }
.principle__title { font-size: 1.25rem; margin: 12px 0 10px; }
.principle__text { color: var(--slate); font-size: 0.96rem; margin: 0; }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
/* Contact hero sits closer to the header — less empty space above the form */
.page-hero.contact-hero { padding-top: clamp(118px, 12vw, 146px); padding-bottom: clamp(48px, 6vw, 80px); }
.contact-breadcrumb { margin-bottom: clamp(22px, 3vw, 40px); }

/* In the Press (contact page) */
.press-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.press-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(26px, 3vw, 40px);
  background: rgba(16, 30, 51, 0.5);
  border: 1px solid var(--line-dark);
  min-height: 210px;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), background 0.5s var(--ease);
}
.press-card:hover { transform: translateY(-6px); border-color: var(--gold); background: rgba(20, 35, 59, 0.6); }
.press-card__source {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-bright);
}
.press-card__title {
  font-family: var(--serif); font-size: clamp(1.15rem, 1.9vw, 1.5rem);
  line-height: 1.3; color: var(--on-dark);
}
.press-card__cta {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-deep);
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.press-card:hover .press-card__cta { color: var(--gold-bright); gap: 12px; }

.social-strip { margin-top: clamp(44px, 5vw, 68px); text-align: center; }
.social-links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 6px;
}
.social-links a {
  font-size: 13px; letter-spacing: 0.03em; color: var(--on-dark-soft);
  padding: 9px 18px; border: 1px solid var(--line-dark); border-radius: 999px;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.social-links a:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-2px); }

@media (max-width: 700px) {
  .press-grid { grid-template-columns: 1fr; }
}

.contact-aside .overline { color: var(--gold-bright); }
.contact-channels { list-style: none; margin: 34px 0 0; padding: 0; }
.contact-channels li {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line-dark);
}
.contact-channels li:last-child { border-bottom: 1px solid var(--line-dark); }
.contact-channels .ci {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center;
  border: 1px solid var(--line-dark);
  color: var(--gold-bright);
}
.contact-channels .ci svg { width: 19px; height: 19px; }
.contact-channels .cl {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--on-dark-faint); margin-bottom: 4px;
}
.contact-channels .cv { color: var(--on-dark); font-size: 1.02rem; }

.offices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 36px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
.office { background: var(--navy-900); padding: 22px 20px; }
.office__city {
  font-family: var(--serif); font-size: 1.2rem; color: var(--gold);
}
.office__region {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--on-dark-soft); margin-top: 6px;
}

/* Form */
.form-card {
  background: rgba(16, 30, 51, 0.5);
  border: 1px solid var(--line-dark);
  padding: clamp(28px, 4vw, 52px);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 24px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
}
.field label .req { color: var(--gold-bright); }
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--on-dark);
  background: rgba(7, 15, 28, 0.5);
  border: 1px solid var(--line-dark);
  border-radius: 2px;
  padding: 14px 16px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease),
    background 0.3s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23d4b878' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.field select option { background: var(--navy-850); color: var(--on-dark); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(7, 15, 28, 0.72);
  box-shadow: 0 0 0 3px rgba(194, 161, 91, 0.16);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--on-dark-faint); }

.field.invalid input,
.field.invalid select,
.field.invalid textarea { border-color: #e07a5f; background: rgba(224, 122, 95, 0.1); }
.field .error {
  font-size: 12px; color: #e79a86; letter-spacing: 0.02em;
  text-transform: none; font-weight: 500; display: none;
}
.field.invalid .error { display: block; }

.consent {
  grid-column: 1 / -1;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--on-dark-soft);
  line-height: 1.5;
}
.consent input { width: 18px; height: 18px; margin-top: 3px; flex: none; accent-color: var(--gold); }
.consent a { color: var(--gold-bright); border-bottom: 1px solid currentColor; }

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.form-note { font-size: 0.85rem; color: var(--muted); margin: 0; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 10px;
}
.form-success.show { display: block; animation: fadeUp 0.6s var(--ease); }
.form-success .tick {
  width: 64px; height: 64px; margin: 0 auto 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(194,161,91,0.12);
  border: 1px solid var(--gold);
  color: var(--gold-deep);
}
.form-success h3 { font-size: 1.7rem; margin-bottom: 12px; color: var(--on-dark); }
.form-success p { color: var(--on-dark-soft); max-width: 420px; margin-inline: auto; }
form.hide { display: none; }

/* ==========================================================================
   PAGE HERO (interior pages)
   ========================================================================== */
.page-hero {
  position: relative;
  padding-top: clamp(150px, 18vw, 220px);
  padding-bottom: clamp(60px, 8vw, 96px);
  background:
    radial-gradient(900px 500px at 85% -20%, rgba(194,161,91,0.14), transparent 60%),
    linear-gradient(160deg, var(--navy-950), var(--navy-850));
  color: var(--on-dark);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 84px);
}
.page-hero__inner { position: relative; max-width: 780px; }
.page-hero__title { font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 1.03; margin-bottom: 22px; }
.page-hero__title .accent { font-style: italic; color: var(--gold); }
.page-hero__desc { font-size: 1.15rem; color: var(--on-dark-soft); max-width: 620px; }
.breadcrumb {
  display: flex; gap: 10px; align-items: center;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--on-dark-faint); margin-bottom: 26px;
}
.breadcrumb a:hover { color: var(--gold-bright); }
.breadcrumb .sep { color: var(--gold); }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band {
  background:
    radial-gradient(700px 360px at 15% 120%, rgba(194,161,91,0.16), transparent 55%),
    linear-gradient(120deg, var(--navy-900), var(--navy-800));
  color: var(--on-dark);
  text-align: center;
}
.cta-band__title { font-size: clamp(2rem, 4.4vw, 3.2rem); margin-bottom: 20px; }
.cta-band__title .accent { font-style: italic; color: var(--gold); }
.cta-band p { color: var(--on-dark-soft); max-width: 560px; margin: 0 auto 34px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--navy-950);
  color: var(--on-dark-soft);
  padding-top: clamp(60px, 7vw, 90px);
  border-top: 1px solid var(--line-dark);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: 52px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand .brand__name { font-size: 22px; color: var(--on-dark); }
.footer-brand p { margin: 20px 0 0; max-width: 340px; font-size: 0.96rem; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-bright); margin-bottom: 20px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 13px; }
.footer-col a { font-size: 0.98rem; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-block: 28px;
  font-size: 0.85rem;
  color: var(--on-dark-faint);
}
.footer-bottom .socials { display: flex; gap: 10px; }
.footer-bottom .socials a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--line-dark);
  color: var(--on-dark-soft);
  transition: all 0.3s var(--ease);
}
.footer-bottom .socials a:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-2px); }
.footer-bottom .socials svg { width: 17px; height: 17px; }

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__portrait { display: none; }
  .hero { min-height: auto; padding-top: 150px; padding-bottom: 90px; }
  .feature-band__inner { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .figure__tag { position: static; transform: none; margin-top: 20px; max-width: none; }
  .figure--framed::after { display: none; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav__menu,
  .nav__cta { display: none; }
  .nav__toggle { display: block; }

  .site-nav-mobile {
    position: fixed;
    inset: 0;
    z-index: 110;
    background: linear-gradient(160deg, var(--navy-950), var(--navy-850));
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--gutter);
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
  }
  body.nav-open .site-nav-mobile { transform: none; }
  .site-nav-mobile ul { list-style: none; margin: 0 0 40px; padding: 0; }
  .site-nav-mobile li { overflow: hidden; }
  .site-nav-mobile ul a {
    display: block;
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--on-dark);
    padding: 12px 0;
    border-bottom: 1px solid var(--line-dark);
  }
  .site-nav-mobile ul a[aria-current="page"] { color: var(--gold); }
  /* The CTA keeps its normal button styling — compact, not a giant menu link */
  .site-nav-mobile .btn {
    align-self: flex-start;
    font-size: 12px;
    letter-spacing: 0.12em;
    padding: 13px 26px 13px 32px;
  }

  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line-dark); }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .principles { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .feature-band__facts { grid-template-columns: 1fr; }
  .offices { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (min-width: 761px) { .site-nav-mobile { display: none; } }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   PHOTOGRAPHY — placements added with real imagery
   ========================================================================== */
/* Hero: full-length studio portrait — bias crop toward the face */
.portrait-frame img { object-position: 50% 12%; }
/* Interior figures crop from the centre */
.figure img { object-position: 50% 30%; }

/* iBRICS feature band — official speaker graphic */
.feature-band__inner { align-items: center; }
.feature-band__media { position: relative; }
.ibrics-figure {
  position: relative;
  margin: 0;
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-lg);
}
.ibrics-figure::after {
  content: "";
  position: absolute;
  inset: -8px -8px 8px 8px;
  border: 1px solid var(--gold);
  z-index: -1;
}
.ibrics-figure img { width: 100%; display: block; }
.ibrics-caption {
  margin: 22px 0 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  text-align: center;
}

/* In Focus gallery (About) */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 26px);
  align-items: start;
}
.gallery__item {
  margin: 0;
  background: var(--navy-900);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.gallery__item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.gallery__item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 30%;
  display: block;
}
/* Middle tile is a full-length two-person photo — keep both faces in frame */
.gallery__item:nth-child(2) img { object-position: 50% 16%; }
/* The two branded graphics carry their own text — show them in full */
.gallery__item:first-child img,
.gallery__item:last-child img { object-fit: contain; background: #0a0a0a; }
.gallery__item figcaption {
  padding: 18px 20px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

@media (max-width: 900px) {
  .gallery { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .gallery { grid-template-columns: 1fr; }
  .ibrics-figure::after { display: none; }
}

/* ==========================================================================
   CAROUSEL (About — engagements)
   ========================================================================== */
.carousel {
  --media-h: clamp(400px, 62vw, 640px);
  position: relative;
  max-width: 620px;
  margin-inline: auto;
  outline: none;
}
.carousel__viewport { overflow: hidden; }
.carousel__track {
  display: flex;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}
.carousel__slide { flex: 0 0 100%; min-width: 0; margin: 0; }
.carousel__media {
  position: relative;
  height: var(--media-h);
  background: #0b0b0b;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.carousel__media img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.55);
}
.carousel__caption {
  text-align: center;
  padding: 20px 40px 0;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  min-height: 42px;
}
.carousel__btn {
  position: absolute;
  top: calc(var(--media-h) / 2);
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: rgba(10, 22, 38, 0.72);
  color: var(--gold-bright);
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.carousel__btn:hover { background: var(--gold); color: var(--navy-950); }
.carousel__btn--prev { left: -6px; }
.carousel__btn--next { right: -6px; }
.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}
.carousel__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.carousel__dot:hover { background: var(--gold-deep); }
.carousel__dot.is-active { background: var(--gold); transform: scale(1.3); }

@media (max-width: 600px) {
  .carousel__btn--prev { left: 6px; }
  .carousel__btn--next { right: 6px; }
  .carousel__caption { padding-inline: 22px; }
}
