/* ==========================================================================
   RASOI NRI KITCHEN — Hospitality Management Consultancy
   Premium editorial design system
   ========================================================================== */

:root {
  --red: #E31818;
  --deep-red: #B90F16;
  --gold: #F5B800;
  --gold-soft: #F9D65C;
  --cream: #FFF8E7;
  --dark: #1B1B1B;
  --dark-2: #232323;
  --grey: #6b6b6b;
  --line: rgba(27, 27, 27, 0.12);
  --line-light: rgba(255, 255, 255, 0.14);
  --white: #FFFFFF;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Manrope', 'Segoe UI', sans-serif;
  --shadow-sm: 0 6px 18px rgba(27, 27, 27, 0.08);
  --shadow-md: 0 18px 45px rgba(27, 27, 27, 0.14);
  --shadow-red: 0 14px 34px rgba(185, 15, 22, 0.35);
  --radius: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; background: none; border: 0; }

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

/* Keyboard accessibility */
:focus-visible { outline: 2.5px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
button:focus:not(:focus-visible), a:focus:not(:focus-visible), input:focus:not(:focus-visible) { outline: none; }

/* Keep anchored sections clear of the sticky header */
[id] { scroll-margin-top: 100px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 2000;
  background: var(--red); color: var(--white); padding: 10px 18px; font-weight: 600;
}
.skip-link:focus { left: 0; }

.container { width: min(1200px, 92%); margin: 0 auto; }

/* ---------- Typography ---------- */

h1, h2, h3 { font-family: var(--serif); font-weight: 700; line-height: 1.14; color: var(--dark); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--deep-red); margin-bottom: 22px;
}
.eyebrow::before { content: ''; width: 44px; height: 2px; background: var(--gold); }
.eyebrow--center::after { content: ''; width: 44px; height: 2px; background: var(--gold); }
.section--dark .eyebrow { color: var(--gold); }

.chapter {
  position: relative;
}
.chapter-no {
  position: absolute; top: -58px; left: -6px;
  font-family: var(--serif); font-size: clamp(90px, 12vw, 150px); font-weight: 800;
  color: transparent; -webkit-text-stroke: 1px rgba(185, 15, 22, 0.14);
  line-height: 1; pointer-events: none; user-select: none;
}
.section--dark .chapter-no { -webkit-text-stroke: 1px rgba(245, 184, 0, 0.18); }

.section-title { font-size: clamp(30px, 4.2vw, 52px); letter-spacing: -0.01em; }
.section-title em { font-style: italic; color: var(--deep-red); }
.section--dark .section-title { color: var(--white); }
.section--dark .section-title em { color: var(--gold); }

.lead { font-size: clamp(16px, 1.4vw, 19px); color: var(--grey); max-width: 640px; }
.section--dark .lead { color: rgba(255, 255, 255, 0.72); }

.section { padding: clamp(80px, 9vw, 130px) 0; position: relative; }
.section--cream { background: var(--cream); }
.section--dark { background: var(--dark); color: var(--white); }
.section-head { max-width: 760px; margin-bottom: clamp(44px, 6vw, 72px); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .lead { margin: 18px auto 0; }
.section-head .lead { margin-top: 18px; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: 10px;
  font-size: 14px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background-color 0.35s, color 0.35s, border-color 0.35s;
  position: relative; overflow: hidden;
}
.btn svg { width: 17px; height: 17px; transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(5px); }

.btn--primary { background: var(--red); color: var(--white); box-shadow: var(--shadow-red); }
.btn--primary:hover { background: var(--deep-red); transform: translateY(-3px); box-shadow: 0 20px 40px rgba(185, 15, 22, 0.4); }

.btn--ghost { border: 1.5px solid var(--gold); color: var(--white); background: transparent; }
.btn--ghost:hover { background: var(--gold); color: var(--dark); transform: translateY(-3px); }

.btn--outline-dark { border: 1.5px solid var(--dark); color: var(--dark); background: transparent; }
.btn--outline-dark:hover { background: var(--dark); color: var(--white); transform: translateY(-3px); }

.btn--small { padding: 12px 22px; font-size: 12.5px; border-radius: 8px; }

/* ---------- Scroll progress ---------- */

.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 1200; background: transparent; }
.scroll-progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--red), var(--gold)); }

/* ---------- Header ---------- */

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: padding 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
}
.header-inner { display: flex; align-items: center; gap: 28px; padding: 16px 0; transition: padding 0.4s var(--ease); }
.site-header.scrolled { box-shadow: 0 8px 30px rgba(27, 27, 27, 0.09); border-color: var(--line); }
.site-header.scrolled .header-inner { padding: 9px 0; }
.site-header.scrolled .brand-logo { width: 42px; height: 42px; }

.brand { display: flex; align-items: center; gap: 13px; margin-right: auto; }
.brand-logo { width: 52px; height: 52px; object-fit: contain; border-radius: 8px; transition: transform 0.4s var(--ease), width 0.4s, height 0.4s; }
.brand:hover .brand-logo { transform: rotate(-4deg) scale(1.05); }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-family: var(--serif); font-weight: 800; font-size: 19px; color: var(--dark); letter-spacing: 0.01em; }
.brand-name em { color: var(--red); font-style: normal; }
.brand-sub { font-size: 9.5px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--grey); }

.main-nav ul { display: flex; gap: 2px; }
.main-nav a {
  position: relative; display: block; padding: 10px 10px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em; color: var(--dark-2); white-space: nowrap;
  transition: color 0.3s;
}
.main-nav a::after {
  content: ''; position: absolute; left: 10px; right: 10px; bottom: 4px; height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.main-nav a:hover, .main-nav a.active { color: var(--deep-red); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 10px; z-index: 1101; }
.hamburger span { width: 26px; height: 2px; background: var(--dark); transition: transform 0.35s var(--ease), opacity 0.3s; }
.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; z-index: 1100; background: var(--dark);
  display: flex; align-items: center; justify-content: center; text-align: center;
  opacity: 0; visibility: hidden; transition: opacity 0.45s var(--ease), visibility 0.45s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu-logo { margin: 0 auto 30px; border-radius: 14px; background: var(--white); padding: 6px; }
.mobile-menu nav li { overflow: hidden; }
.mobile-menu nav a {
  display: block; font-family: var(--serif); font-size: clamp(28px, 7vw, 40px); font-weight: 700;
  color: var(--white); padding: 6px 0; transform: translateY(110%); transition: transform 0.6s var(--ease), color 0.3s;
}
.mobile-menu.open nav a { transform: translateY(0); }
.mobile-menu nav li:nth-child(1) a { transition-delay: 0.08s; }
.mobile-menu nav li:nth-child(2) a { transition-delay: 0.14s; }
.mobile-menu nav li:nth-child(3) a { transition-delay: 0.2s; }
.mobile-menu nav li:nth-child(4) a { transition-delay: 0.26s; }
.mobile-menu nav li:nth-child(5) a { transition-delay: 0.32s; }
.mobile-menu nav li:nth-child(6) a { transition-delay: 0.38s; }
.mobile-menu nav li:nth-child(7) a { transition-delay: 0.44s; }
.mobile-menu nav a:hover, .mobile-menu nav a.active { color: var(--gold); }
.mobile-menu-cta { margin-top: 30px; }
.mobile-menu-loc { margin-top: 26px; font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); }

/* ---------- Hero ---------- */

.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--dark); color: var(--white); overflow: hidden;
  padding: 150px 0 90px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 85% 20%, rgba(227, 24, 24, 0.16), transparent 60%),
    radial-gradient(700px 500px at 10% 90%, rgba(245, 184, 0, 0.1), transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 6vw, 90px); align-items: center; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 28px; opacity: 0; transform: translateY(16px);
  transition: opacity 0.8s var(--ease) 0.1s, transform 0.8s var(--ease) 0.1s;
}
.hero-eyebrow::before { content: ''; width: 52px; height: 1.5px; background: var(--gold); }
body.loaded .hero-eyebrow { opacity: 1; transform: none; }

.hero-title { font-size: clamp(42px, 5.6vw, 76px); color: var(--white); font-weight: 700; letter-spacing: -0.015em; }
.hero-title .line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.hero-title .line-inner { display: block; transform: translateY(115%); transition: transform 1.1s var(--ease); }
body.loaded .hero-title .line:nth-child(1) .line-inner { transform: translateY(0); transition-delay: 0.25s; }
body.loaded .hero-title .line:nth-child(2) .line-inner { transform: translateY(0); transition-delay: 0.4s; }
.hero-title em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-family: var(--serif); font-size: clamp(18px, 1.8vw, 23px); font-style: italic; font-weight: 500;
  color: rgba(255, 255, 255, 0.85); margin-top: 22px;
  opacity: 0; transform: translateY(18px); transition: opacity 0.9s var(--ease) 0.65s, transform 0.9s var(--ease) 0.65s;
}
.hero-desc {
  color: rgba(255, 255, 255, 0.62); max-width: 520px; margin-top: 18px; font-size: 16px;
  opacity: 0; transform: translateY(18px); transition: opacity 0.9s var(--ease) 0.78s, transform 0.9s var(--ease) 0.78s;
}
body.loaded .hero-sub, body.loaded .hero-desc { opacity: 1; transform: none; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; opacity: 0; transform: translateY(18px); transition: opacity 0.9s var(--ease) 0.92s, transform 0.9s var(--ease) 0.92s; }
body.loaded .hero-ctas { opacity: 1; transform: none; }

.hero-loc {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 46px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255, 255, 255, 0.55);
  opacity: 0; transition: opacity 1s var(--ease) 1.1s;
}
.hero-loc svg { width: 15px; height: 15px; color: var(--red); }
body.loaded .hero-loc { opacity: 1; }

.hero-media { position: relative; opacity: 0; transform: scale(0.94); transition: opacity 1.2s var(--ease) 0.5s, transform 1.2s var(--ease) 0.5s; }
body.loaded .hero-media { opacity: 1; transform: none; }
.hero-frame {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
}
.hero-frame::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(227, 24, 24, 0.14), transparent 45%, rgba(27, 27, 27, 0.35));
  mix-blend-mode: multiply;
}
.hero-frame img { width: 100%; height: 112%; object-fit: cover; will-change: transform; }
.hero-frame video { width: 100%; height: 112%; object-fit: cover; will-change: transform; display: block; }
.hero-media::before {
  content: ''; position: absolute; inset: -18px 18px 18px -18px;
  border: 1.5px solid var(--gold); border-radius: var(--radius); z-index: -0; pointer-events: none;
  transform: translate(0, 0);
}
.hero-media > .hero-frame { position: relative; z-index: 1; }

.hero-badge {
  position: absolute; left: -34px; bottom: 40px; z-index: 2;
  background: var(--white); color: var(--dark); border-radius: 12px; padding: 20px 26px;
  box-shadow: var(--shadow-md); border-left: 4px solid var(--red);
}
.hero-badge strong { display: block; font-family: var(--serif); font-size: 34px; color: var(--deep-red); line-height: 1; }
.hero-badge span { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey); }

/* ---------- Marquee ---------- */

.marquee { background: var(--deep-red); color: var(--cream); overflow: hidden; padding: 18px 0; border-top: 1px solid rgba(245, 184, 0, 0.35); border-bottom: 1px solid rgba(245, 184, 0, 0.35); }
.marquee-track { display: flex; gap: 0; width: max-content; animation: marquee 36s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--serif); font-size: clamp(16px, 1.6vw, 21px); font-style: italic; letter-spacing: 0.06em;
  white-space: nowrap; padding: 0 14px; display: inline-flex; align-items: center; gap: 28px;
}
.marquee-track span::after { content: '✦'; color: var(--gold); font-style: normal; font-size: 0.8em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */

.stats { background: var(--cream); border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: clamp(40px, 5vw, 64px) 24px; text-align: center; position: relative; }
.stat + .stat::before { content: ''; position: absolute; left: 0; top: 25%; bottom: 25%; width: 1px; background: var(--line); }
.stat-num { font-family: var(--serif); font-size: clamp(38px, 4.4vw, 58px); font-weight: 800; color: var(--deep-red); line-height: 1; }
.stat-num sup { color: var(--gold); font-size: 0.55em; }
.stat-label { margin-top: 12px; font-size: 11.5px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--grey); }

/* ---------- Split sections ---------- */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(44px, 6vw, 90px); align-items: center; }
.split-media { position: relative; }
.split-media::before {
  content: ''; position: absolute; top: 26px; bottom: -26px; left: -22px; width: 5px;
  background: linear-gradient(180deg, var(--red), var(--gold)); border-radius: 4px;
}
.split-media .frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4 / 4.6; }
.split-media .frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.split-media:hover .frame img { transform: scale(1.05); }
.split-content p + p { margin-top: 18px; }
.split-content p { color: var(--grey); }
.split-content .btn { margin-top: 34px; }

.tick-list { margin-top: 26px; display: grid; gap: 12px; }
.tick-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; font-size: 15px; }
.tick-list svg { flex: none; width: 20px; height: 20px; color: var(--gold); margin-top: 2px; }
.section--dark .tick-list li { color: rgba(255, 255, 255, 0.85); }

/* ---------- Service cards ---------- */

.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px 32px; overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon {
  width: 58px; height: 58px; border-radius: 12px; display: grid; place-items: center;
  background: var(--cream); color: var(--deep-red); margin-bottom: 24px;
  transition: background-color 0.4s, color 0.4s, transform 0.4s var(--ease);
}
.service-card .icon svg { width: 27px; height: 27px; }
.service-card:hover .icon { background: var(--red); color: var(--white); transform: rotate(-6deg) scale(1.06); }
.service-card h3 { font-size: 21px; margin-bottom: 12px; }
.service-card p { font-size: 14.5px; color: var(--grey); }
.learn-more {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 22px;
  font-size: 12.5px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--deep-red);
}
.learn-more svg { width: 15px; height: 15px; transition: transform 0.35s var(--ease); }
.learn-more:hover svg { transform: translateX(5px); }

/* ---------- Vision / Mission ---------- */

.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.vm-card { border-radius: var(--radius); padding: clamp(36px, 4vw, 54px); position: relative; overflow: hidden; }
.vm-card--dark { background: var(--dark); color: var(--white); }
.vm-card--dark h3 { color: var(--gold); }
.vm-card--dark p { color: rgba(255, 255, 255, 0.75); }
.vm-card--red { background: var(--deep-red); color: var(--white); }
.vm-card--red h3 { color: var(--white); }
.vm-card--red p { color: rgba(255, 255, 255, 0.82); }
.vm-card h3 { font-size: clamp(24px, 2.4vw, 32px); margin-bottom: 18px; }
.vm-card .vm-kicker { font-size: 11px; font-weight: 800; letter-spacing: 0.3em; text-transform: uppercase; opacity: 0.65; display: block; margin-bottom: 14px; }
.vm-points { margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; }
.vm-points li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; font-weight: 600; }
.vm-points svg { flex: none; width: 18px; height: 18px; color: var(--gold); margin-top: 2px; }

/* ---------- Why choose us ---------- */

.why { position: relative; background: var(--dark); color: var(--white); overflow: hidden; }
.why-bg { position: absolute; inset: 0; }
.why-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.16; }
.why-bg .bg-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.2; }
.why-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(27, 27, 27, 0.96) 20%, rgba(27, 27, 27, 0.75)); }
.why .container { position: relative; }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 40px; margin-top: 10px; }
.why-item {
  display: flex; gap: 18px; padding: 22px 24px; border: 1px solid var(--line-light); border-radius: 12px;
  background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(6px);
  transition: transform 0.4s var(--ease), border-color 0.4s, background-color 0.4s;
}
.why-item:hover { transform: translateX(8px); border-color: rgba(245, 184, 0, 0.5); background: rgba(245, 184, 0, 0.05); }
.why-item svg { flex: none; width: 24px; height: 24px; color: var(--gold); margin-top: 3px; }
.why-item p { font-size: 15px; color: rgba(255, 255, 255, 0.85); font-weight: 500; }

/* ---------- Timeline ---------- */

.timeline { position: relative; max-width: 900px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: 50%; width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--red), var(--gold));
  transform: translateX(-50%);
}
.timeline-item { position: relative; width: 50%; padding: 0 60px 56px 0; }
.timeline-item:nth-child(even) { margin-left: 50%; padding: 0 0 56px 60px; }
.timeline-dot {
  position: absolute; top: 0; right: -27px; width: 54px; height: 54px; border-radius: 50%;
  background: var(--red); color: var(--white); display: grid; place-items: center;
  font-family: var(--serif); font-weight: 800; font-size: 18px;
  border: 3px solid var(--gold); box-shadow: 0 8px 22px rgba(185, 15, 22, 0.35); z-index: 2;
  transition: transform 0.4s var(--ease);
}
.timeline-item:nth-child(even) .timeline-dot { right: auto; left: -27px; }
.timeline-item:hover .timeline-dot { transform: scale(1.12); }
.timeline-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 26px 30px;
  box-shadow: var(--shadow-sm); transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.timeline-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.timeline-card h3 { font-size: 19px; }
.timeline-card .t-step { font-size: 11px; font-weight: 800; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 8px; }

/* ---------- Industries ---------- */

.ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ind-card {
  display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center;
  padding: 30px 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--white);
  transition: transform 0.4s var(--ease), background-color 0.4s, border-color 0.4s;
}
.ind-card svg { width: 30px; height: 30px; color: var(--deep-red); transition: color 0.4s, transform 0.4s var(--ease); }
.ind-card span { font-size: 13.5px; font-weight: 700; letter-spacing: 0.03em; }
.ind-card:hover { background: var(--dark); border-color: var(--dark); transform: translateY(-6px); }
.ind-card:hover svg { color: var(--gold); transform: scale(1.12); }
.ind-card:hover span { color: var(--white); }

/* ---------- Clients ---------- */

.client-group { margin-bottom: 54px; }
.client-group-title {
  display: flex; align-items: center; gap: 18px; margin-bottom: 26px;
  font-size: 12.5px; font-weight: 800; letter-spacing: 0.28em; text-transform: uppercase; color: var(--deep-red);
}
.client-group-title::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }
.client-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.client-card {
  display: flex; align-items: center; justify-content: center; text-align: center; min-height: 108px;
  padding: 22px; border: 1px solid var(--line); border-radius: 12px; background: var(--white);
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
}
.client-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: var(--gold); }
.client-card .c-name { font-family: var(--serif); font-size: 18px; font-weight: 700; color: var(--dark); }
.client-card .c-loc { display: block; font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey); margin-top: 6px; }

/* ---------- International ---------- */

.intl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; position: relative; }
.intl-card { border-radius: var(--radius); overflow: hidden; position: relative; min-height: 380px; display: flex; align-items: flex-end; box-shadow: var(--shadow-md); }
.intl-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.intl-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(27, 27, 27, 0.88)); }
.intl-card:hover img { transform: scale(1.06); }
.intl-card-body { position: relative; z-index: 1; padding: 34px; color: var(--white); }
.intl-card-body .city { font-family: var(--serif); font-size: clamp(24px, 2.4vw, 32px); font-weight: 700; }
.intl-card-body .country { font-size: 11.5px; font-weight: 800; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: block; }
.intl-card-body address { font-style: normal; color: rgba(255, 255, 255, 0.8); margin-top: 10px; font-size: 15px; }
.intl-card-body a { color: var(--white); border-bottom: 1px solid var(--gold); }
.intl-connector {
  display: none;
}

/* ---------- Leadership ---------- */

.leader-card {
  display: grid; grid-template-columns: 0.9fr 1.1fr; border-radius: var(--radius); overflow: hidden;
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); margin-bottom: 40px;
}
.leader-card:nth-child(even) { grid-template-columns: 1.1fr 0.9fr; }
.leader-card:nth-child(even) .leader-media { order: 2; }
.leader-media { position: relative; min-height: 480px; }
.leader-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 1.2s var(--ease); }
.leader-card:hover .leader-media img { transform: scale(1.04); }
.leader-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(200deg, rgba(185, 15, 22, 0.12), transparent 50%); }
.leader-body { padding: clamp(34px, 4vw, 56px); }
.leader-role { font-size: 11.5px; font-weight: 800; letter-spacing: 0.24em; text-transform: uppercase; color: var(--deep-red); margin-bottom: 14px; }
.leader-body h3 { font-size: clamp(26px, 2.6vw, 36px); margin-bottom: 18px; }
.leader-body > p { color: var(--grey); font-size: 15px; }
.leader-body > p + p { margin-top: 14px; }
.leader-quote {
  margin-top: 22px; padding: 18px 22px; border-left: 3px solid var(--gold); background: var(--cream);
  font-family: var(--serif); font-style: italic; font-size: 16.5px; color: var(--dark-2); border-radius: 0 10px 10px 0;
}
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.tag {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.05em; padding: 7px 14px; border-radius: 100px;
  background: var(--cream); color: var(--dark-2); border: 1px solid rgba(245, 184, 0, 0.4);
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
}
.tag:hover { background: var(--red); color: var(--white); transform: translateY(-2px); }
.tag-title { font-size: 11px; font-weight: 800; letter-spacing: 0.26em; text-transform: uppercase; color: var(--grey); margin-top: 28px; }

.leader-teaser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.leader-teaser {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 440px; display: flex; align-items: flex-end;
  box-shadow: var(--shadow-md);
}
.leader-teaser img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 1.2s var(--ease); }
.leader-teaser::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(27, 27, 27, 0.92)); }
.leader-teaser:hover img { transform: scale(1.05); }
.leader-teaser-body { position: relative; z-index: 1; padding: 32px; color: var(--white); }
.leader-teaser-body h3 { color: var(--white); font-size: 26px; }
.leader-teaser-body p { color: rgba(255, 255, 255, 0.75); font-size: 13.5px; margin: 8px 0 16px; }

/* ---------- CTA ---------- */

.cta { position: relative; background: var(--deep-red); color: var(--white); overflow: hidden; }
.cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(700px 400px at 90% 10%, rgba(245, 184, 0, 0.18), transparent 60%),
    radial-gradient(600px 400px at 5% 100%, rgba(27, 27, 27, 0.35), transparent 60%);
}
.cta-inner { position: relative; text-align: center; max-width: 780px; margin: 0 auto; }
.cta h2 { color: var(--white); font-size: clamp(32px, 4.4vw, 54px); }
.cta h2 em { color: var(--gold); font-style: italic; }
.cta p { color: rgba(255, 255, 255, 0.85); margin: 20px auto 0; max-width: 620px; }
.cta .hero-ctas { justify-content: center; opacity: 1; transform: none; }
.cta .btn--ghost { border-color: var(--white); }
.cta .btn--ghost:hover { background: var(--white); color: var(--dark); }
.cta .btn--gold { background: var(--gold); color: var(--dark); }
.cta .btn--gold:hover { background: var(--gold-soft); transform: translateY(-3px); }

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  background: var(--dark); color: var(--white); padding: 190px 0 90px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(800px 400px at 85% 0%, rgba(227, 24, 24, 0.18), transparent 60%);
}
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--white); font-size: clamp(36px, 5vw, 62px); max-width: 800px; }
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero .lead { margin-top: 20px; }
.breadcrumb { font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); margin-bottom: 22px; display: block; }
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* ---------- Services detail ---------- */

.service-block { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; padding: clamp(50px, 6vw, 80px) 0; border-bottom: 1px solid var(--line); }
.service-block:last-child { border-bottom: 0; }
.service-block:nth-child(even) .sb-media { order: 2; }
.sb-media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 11; box-shadow: var(--shadow-md); position: relative; }
.sb-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.sb-media:hover img { transform: scale(1.05); }
.sb-no { font-family: var(--serif); font-size: 15px; font-weight: 800; color: var(--gold); letter-spacing: 0.2em; display: block; margin-bottom: 12px; }
.sb-content h3 { font-size: clamp(24px, 2.6vw, 34px); margin-bottom: 18px; }
.sb-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px; margin-top: 6px; }
.sb-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; font-weight: 600; color: var(--dark-2); }
.sb-list svg { flex: none; width: 17px; height: 17px; color: var(--red); margin-top: 3px; }

/* ---------- Contact ---------- */

.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 5vw, 70px); align-items: start; }
.contact-info-card { background: var(--dark); color: var(--white); border-radius: var(--radius); padding: clamp(32px, 4vw, 48px); position: sticky; top: 110px; }
.contact-info-card h3 { color: var(--white); font-size: 26px; margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255, 255, 255, 0.65); font-size: 14.5px; margin-bottom: 28px; }
.info-row { display: flex; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line-light); }
.info-row svg { flex: none; width: 21px; height: 21px; color: var(--gold); margin-top: 3px; }
.info-row strong { display: block; font-size: 11px; font-weight: 800; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); margin-bottom: 4px; }
.info-row a, .info-row span { color: var(--white); font-size: 15px; }
.info-row a:hover { color: var(--gold); }

.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(30px, 4vw, 48px); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dark-2); }
.field label i { color: var(--red); font-style: normal; }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 15px; color: var(--dark);
  padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 9px; background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 4px rgba(227, 24, 24, 0.09);
}
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--red); }
.field-error { font-size: 12.5px; color: var(--red); font-weight: 600; }
.radio-row { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-chip { position: relative; }
.radio-chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.radio-chip span {
  display: inline-block; padding: 11px 20px; border: 1.5px solid var(--line); border-radius: 100px;
  font-size: 13.5px; font-weight: 700; transition: all 0.3s;
}
.radio-chip input:checked + span { background: var(--red); border-color: var(--red); color: var(--white); }
.radio-chip input:focus-visible + span { box-shadow: 0 0 0 4px rgba(227, 24, 24, 0.18); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.alert { border-radius: 10px; padding: 18px 22px; margin-bottom: 26px; font-size: 15px; font-weight: 600; display: flex; gap: 12px; align-items: flex-start; }
.alert svg { flex: none; width: 20px; height: 20px; margin-top: 2px; }
.alert--success { background: #eafaf0; border: 1px solid #b7e8c9; color: #1c7a3d; }
.alert--error { background: #fdecec; border: 1px solid #f5c1c1; color: var(--deep-red); }

/* ---------- Footer ---------- */

.site-footer { background: var(--dark); color: rgba(255, 255, 255, 0.7); padding: clamp(60px, 7vw, 90px) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 56px; }
.footer-logo-badge { display: inline-block; background: var(--white); border-radius: 14px; padding: 8px; margin-bottom: 20px; transition: transform 0.4s var(--ease); }
.footer-logo-badge:hover { transform: rotate(-3deg) scale(1.04); }
.footer-logo-badge img { border-radius: 8px; }
.footer-tagline { font-size: 14px; max-width: 300px; }
.footer-loc { display: flex; align-items: center; gap: 8px; margin-top: 18px; font-size: 12.5px; letter-spacing: 0.08em; color: var(--gold); font-weight: 600; }
.footer-loc svg { width: 15px; height: 15px; flex: none; }
.footer-col h4 { font-family: var(--sans); font-size: 12px; font-weight: 800; letter-spacing: 0.26em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: 14px; transition: color 0.3s, padding-left 0.3s; }
.footer-col a:hover { color: var(--gold); padding-left: 5px; }
.footer-contact li { font-size: 14px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; border-top: 1px solid var(--line-light); font-size: 13px; }
.to-top { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-light); display: grid; place-items: center; transition: background-color 0.3s, border-color 0.3s; }
.to-top svg { width: 18px; height: 18px; }
.to-top:hover { background: var(--red); border-color: var(--red); }

/* ---------- WhatsApp float ---------- */

.whatsapp-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%; background: var(--deep-red); color: var(--white);
  display: grid; place-items: center; box-shadow: 0 12px 30px rgba(185, 15, 22, 0.45);
  transition: transform 0.35s var(--ease), background-color 0.35s;
}
.whatsapp-float svg { width: 27px; height: 27px; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.06); background: var(--red); }
.whatsapp-float::after {
  content: ''; position: absolute; inset: -5px; border-radius: 50%; border: 1.5px solid rgba(227, 24, 24, 0.5);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(0.9); opacity: 1; } 100% { transform: scale(1.35); opacity: 0; } }

/* ---------- Scroll reveal ---------- */

[data-reveal] { opacity: 0; transform: translateY(36px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
[data-reveal].is-inview { opacity: 1; transform: none; }
[data-reveal="left"] { transform: translateX(-44px); }
[data-reveal="right"] { transform: translateX(44px); }
[data-reveal="zoom"] { transform: scale(0.92); }
[data-reveal].is-inview { transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  [data-reveal], .hero-title .line-inner, .hero-eyebrow, .hero-sub, .hero-desc, .hero-ctas, .hero-loc, .hero-media { opacity: 1 !important; transform: none !important; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1080px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .ind-grid { grid-template-columns: repeat(3, 1fr); }
  .client-cards { grid-template-columns: repeat(2, 1fr); }
  .leader-card, .leader-card:nth-child(even) { grid-template-columns: 1fr; }
  .leader-card:nth-child(even) .leader-media { order: 0; }
  .leader-media { min-height: 400px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero { min-height: auto; padding: 140px 0 80px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { max-width: 520px; }
  .hero-badge { left: 12px; }
  .split { grid-template-columns: 1fr; }
  .split-media { max-width: 560px; }
  .vm-grid, .why-grid, .intl-grid, .contact-grid, .leader-teaser-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .service-block { grid-template-columns: 1fr; }
  .service-block:nth-child(even) .sb-media { order: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3)::before { display: none; }

  .timeline::before { left: 27px; }
  .timeline-item, .timeline-item:nth-child(even) { width: 100%; margin-left: 0; padding: 0 0 44px 84px; }
  .timeline-dot, .timeline-item:nth-child(even) .timeline-dot { left: 0; right: auto; }
}

@media (max-width: 1320px) {
  .main-nav a { padding: 10px 7px; font-size: 12.5px; }
  .header-inner { gap: 18px; }
}

@media (max-width: 600px) {
  .brand-sub { display: none; }
  .brand-name { font-size: 16px; }
  .cards-grid, .ind-grid, .client-cards, .form-grid, .sb-list, .vm-points { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-badge { padding: 14px 18px; bottom: 16px; }
  .hero-badge strong { font-size: 26px; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 50px; height: 50px; }
  .timeline-card { padding: 20px 22px; }
}

/* ---------- Office maps ---------- */

.maps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.map-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: var(--white); }
.map-card iframe { width: 100%; height: 340px; border: 0; display: block; filter: saturate(0.85); }
.map-card-body { padding: 20px 26px; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.map-card-body strong { font-family: var(--serif); font-size: 19px; display: block; }
.map-card-body span { display: block; font-size: 13px; color: var(--grey); margin-top: 2px; }
.map-dir { font-size: 11.5px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--deep-red); display: inline-flex; align-items: center; gap: 7px; }
.map-dir svg { width: 14px; height: 14px; }
.map-dir:hover { color: var(--gold); }
@media (max-width: 900px) { .maps-grid { grid-template-columns: 1fr; } }

/* ---------- Case studies ---------- */

.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.case-card { border-radius: var(--radius); overflow: hidden; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease); }
.case-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.case-media { aspect-ratio: 16 / 10; overflow: hidden; position: relative; }
.case-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.case-card:hover .case-media img { transform: scale(1.06); }
.case-cat { position: absolute; top: 16px; left: 16px; background: var(--red); color: var(--white); font-size: 10.5px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; padding: 7px 14px; border-radius: 100px; }
.case-body { padding: 26px 28px 30px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.case-body h3 { font-size: 21px; }
.case-loc { font-size: 11.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey); }
.case-body > p { font-size: 14.5px; color: var(--grey); }
.case-scope { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); font-size: 12.5px; font-weight: 600; color: var(--dark-2); }
.case-scope b { display: block; font-size: 10.5px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--deep-red); margin-bottom: 5px; }
@media (max-width: 1080px) { .case-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .case-grid { grid-template-columns: 1fr; } }

/* ---------- Blog ---------- */

.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.blog-card { border-radius: var(--radius); overflow: hidden; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease); }
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.blog-media { aspect-ratio: 16 / 8.5; overflow: hidden; display: block; }
.blog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.blog-card:hover .blog-media img { transform: scale(1.06); }
.blog-body { padding: 28px 30px 32px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.blog-meta { display: flex; gap: 16px; font-size: 11.5px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey); }
.blog-meta i { color: var(--gold); font-style: normal; }
.blog-body h3 { font-size: clamp(20px, 2vw, 25px); line-height: 1.25; }
.blog-body h3 a { transition: color 0.3s; }
.blog-body h3 a:hover { color: var(--deep-red); }
.blog-body > p { font-size: 14.5px; color: var(--grey); }
.blog-body .learn-more { margin-top: auto; padding-top: 10px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }

.article-hero { background: var(--dark); color: var(--white); padding: 190px 0 70px; position: relative; overflow: hidden; }
.article-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(700px 380px at 85% 0%, rgba(227, 24, 24, 0.18), transparent 60%); }
.article-hero .container { position: relative; max-width: 860px; }
.article-hero h1 { color: var(--white); font-size: clamp(30px, 4.2vw, 50px); margin-top: 16px; }
.article-hero .blog-meta { color: rgba(255, 255, 255, 0.55); }
.article-body { max-width: 780px; margin: 0 auto; }
.article-body > img { border-radius: var(--radius); box-shadow: var(--shadow-md); margin-bottom: 40px; aspect-ratio: 16 / 8; object-fit: cover; width: 100%; }
.article-body h2 { font-size: clamp(23px, 2.6vw, 30px); margin: 42px 0 16px; }
.article-body p { color: var(--grey); margin-bottom: 18px; }
.article-body ul { margin: 0 0 20px 22px; }
.article-body ul li { list-style: disc; color: var(--grey); margin-bottom: 9px; padding-left: 4px; }
.article-body strong { color: var(--dark); }
.article-cta { margin-top: 48px; background: var(--cream); border-left: 4px solid var(--red); border-radius: 0 12px 12px 0; padding: 28px 32px; }
.article-cta h3 { font-size: 22px; margin-bottom: 10px; }
.article-cta p { color: var(--grey); font-size: 15px; margin-bottom: 20px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.back-link:hover { text-decoration: underline; }

/* ---------- Newsletter ---------- */

.footer-news { display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; padding: 36px 0; border-top: 1px solid var(--line-light); }
.footer-news h4 { font-family: var(--serif); font-size: 22px; color: var(--white); margin-bottom: 6px; }
.footer-news-text p { font-size: 13.5px; max-width: 420px; }
.news-form { display: flex; gap: 10px; flex: 1; min-width: 280px; max-width: 480px; }
.news-form input[type="email"] {
  flex: 1; font-family: var(--sans); font-size: 14.5px; padding: 13px 18px; border-radius: 9px;
  border: 1.5px solid var(--line-light); background: rgba(255, 255, 255, 0.06); color: var(--white);
  transition: border-color 0.3s;
}
.news-form input::placeholder { color: rgba(255, 255, 255, 0.4); }
.news-form input:focus { outline: none; border-color: var(--gold); }
.news-msg { font-size: 15px; font-weight: 600; }
.news-ok { color: #7bd88f; }
.news-err { color: #ff9d9d; }
@media (max-width: 600px) { .news-form { flex-direction: column; max-width: 100%; } }

/* ---------- Case metrics (renders only when approved figures are added) ---------- */

.case-metrics { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.metric { background: var(--cream); border: 1px solid rgba(245, 184, 0, 0.5); border-radius: 9px; padding: 10px 14px; font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--grey); }
.metric b { display: block; font-family: var(--serif); font-size: 17px; letter-spacing: 0; text-transform: none; color: var(--deep-red); margin-top: 2px; }

/* ---------- Gallery ---------- */

.gallery-grid { columns: 3; column-gap: 20px; }
.g-item {
  position: relative; break-inside: avoid; margin-bottom: 20px;
  border-radius: var(--radius); overflow: hidden; box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}
.g-item img, .g-item video { width: 100%; display: block; transition: transform 1.1s var(--ease); }
.g-item:hover img, .g-item:hover video { transform: scale(1.05); }
.g-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(27, 27, 27, 0.88));
  opacity: 0.45; transition: opacity 0.5s;
}
.g-item:hover::after { opacity: 1; }
.g-cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 22px 24px;
  display: flex; flex-direction: column; gap: 5px;
  transform: translateY(8px); opacity: 0.92; transition: transform 0.5s var(--ease), opacity 0.5s;
}
.g-item:hover .g-cap { transform: translateY(0); opacity: 1; }
.g-tag { font-size: 10.5px; font-weight: 800; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); }
.g-title { font-family: var(--serif); font-size: 19px; font-weight: 700; color: var(--white); }
@media (max-width: 1000px) { .gallery-grid { columns: 2; } }
@media (max-width: 560px) { .gallery-grid { columns: 1; } }

.g-item { cursor: zoom-in; }

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed; inset: 0; z-index: 1500;
  background: rgba(18, 18, 18, 0.96); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.45s var(--ease), visibility 0.45s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-stage { max-width: min(1100px, 90vw); max-height: 80vh; display: flex; align-items: center; justify-content: center; }
.lb-stage img, .lb-stage video {
  max-width: 100%; max-height: 80vh; border-radius: var(--radius);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  transform: scale(0.94); transition: transform 0.45s var(--ease);
}
.lightbox.open .lb-stage img, .lightbox.open .lb-stage video { transform: scale(1); }
.lb-close {
  position: absolute; top: 22px; right: 22px; width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid var(--line-light); color: var(--white); display: grid; place-items: center;
  transition: background-color 0.3s, border-color 0.3s, transform 0.3s; z-index: 2;
}
.lb-close:hover { background: var(--red); border-color: var(--red); transform: rotate(90deg); }
.lb-close svg { width: 19px; height: 19px; }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%;
  border: 1.5px solid var(--line-light); color: var(--white); display: grid; place-items: center;
  transition: background-color 0.3s, border-color 0.3s; z-index: 2;
}
.lb-prev { left: 22px; }
.lb-next { right: 22px; }
.lb-nav:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.lb-nav svg { width: 20px; height: 20px; }
.lb-cap { position: absolute; left: 0; right: 0; bottom: 26px; text-align: center; display: flex; flex-direction: column; gap: 5px; align-items: center; pointer-events: none; }
.lb-cap .g-title { font-size: 22px; }
@media (max-width: 700px) {
  .lb-nav { top: auto; bottom: 90px; transform: none; width: 46px; height: 46px; }
  .lb-stage { max-height: 70vh; }
  .lb-stage img, .lb-stage video { max-height: 70vh; }
}

/* ---------- Article byline & author box (E-E-A-T) ---------- */

.byline { display: inline-flex; align-items: center; gap: 14px; margin-top: 30px; }
.byline img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.byline span { display: flex; flex-direction: column; }
.byline b { font-size: 15px; color: var(--white); font-weight: 700; transition: color 0.3s; }
.byline i { font-style: normal; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.55); margin-top: 2px; }
.byline:hover b { color: var(--gold); }

.author-box {
  display: flex; gap: 26px; align-items: flex-start;
  background: var(--cream); border: 1px solid rgba(245, 184, 0, 0.4); border-radius: var(--radius);
  padding: 30px 34px; margin-top: 44px;
}
.author-box > img { width: 92px; height: 92px; border-radius: 50%; object-fit: cover; flex: none; border: 3px solid var(--gold); }
.author-kicker { font-size: 11px; font-weight: 800; letter-spacing: 0.24em; text-transform: uppercase; color: var(--grey); }
.author-box h3 { font-size: 22px; margin: 6px 0 2px; }
.author-role { font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--deep-red); margin-bottom: 10px; }
.author-box p:not(.author-role) { font-size: 14px; color: var(--grey); }
.author-box .learn-more { margin-top: 14px; }
@media (max-width: 600px) { .author-box { flex-direction: column; text-align: center; align-items: center; } }

/* ---------- FAQ accordion ---------- */

.faq-wrap { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.faq-side { position: sticky; top: 110px; }
.faq-side .lead { margin-top: 18px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 18px;
  text-align: left; padding: 24px 4px;
  font-family: var(--serif); font-size: clamp(17px, 1.6vw, 20px); font-weight: 700; color: var(--dark);
  transition: color 0.3s;
}
.faq-q:hover { color: var(--deep-red); }
.faq-icon {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid var(--gold); display: grid; place-items: center; color: var(--deep-red);
  transition: transform 0.45s var(--ease), background-color 0.3s, border-color 0.3s, color 0.3s;
}
.faq-icon svg { width: 14px; height: 14px; }
.faq-item.open .faq-icon { background: var(--red); border-color: var(--red); color: var(--white); transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.5s var(--ease); }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p { padding: 0 48px 26px 4px; color: var(--grey); font-size: 15px; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
@media (max-width: 900px) { .faq-wrap { grid-template-columns: 1fr; } .faq-side { position: static; } }

/* ---------- Social sharing ---------- */

.share-row { display: flex; align-items: center; gap: 12px; margin-top: 46px; padding-top: 28px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.share-row > span { font-size: 11.5px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--grey); margin-right: 6px; }
.share-row a, .share-copy {
  width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--line);
  display: grid; place-items: center; color: var(--dark-2); position: relative;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s, transform 0.3s var(--ease);
}
.share-row a:hover, .share-copy:hover { background: var(--red); border-color: var(--red); color: var(--white); transform: translateY(-3px); }
.share-row svg { width: 16px; height: 16px; }
.share-copy { cursor: pointer; background: none; font-family: inherit; }
.copied-tip {
  position: absolute; bottom: calc(100% + 9px); left: 50%; transform: translateX(-50%);
  background: var(--dark); color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
  padding: 5px 11px; border-radius: 6px; opacity: 0; pointer-events: none; transition: opacity 0.3s; white-space: nowrap;
}
.share-copy.copied .copied-tip { opacity: 1; }
