/* ════════════════════════════════════════════════
   UNLEASH. — TALENT MANAGEMENT
   style.css  |  Black & White Premium Theme
════════════════════════════════════════════════ */

/* ── Google Fonts Import ───────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600;1,700&family=Inter:wght@300;400;500;600&family=Montserrat:wght@400;600;700;800;900&display=swap');

/* AOS CSS */
@import url('../unpkg.com/aos%402.3.4/dist/aos.css');

/* ── CSS Root Variables ─────────────────────── */
:root {
  --black:        #050505;
  --black-soft:   #111111;
  --black-mid:    #1a1a1a;
  --gray-dark:    #2a2a2a;
  --gray-mid:     #555555;
  --gray-light:   #aaaaaa;
  --white:        #f8f8f8;
  --white-pure:   #ffffff;
  --off-white:    #f0ede8;

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Inter', sans-serif;
  --font-display: 'Montserrat', sans-serif;

  --transition:   0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius:       4px;
}

/* ── Global Reset & Base ────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════ */
.navbar {
  background: transparent;
  z-index: 1000;
  transition: background var(--transition);
  backdrop-filter: blur(0px);
}

.navbar.scrolled {
  background: rgba(5, 5, 5, 0.92) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.15em;
  color: var(--white-pure) !important;
}

.nav-logo-img {
  /* height: 38px; */
  width: 130px;
  display: block;
  object-fit: contain;
}

.nav-link-custom {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.logo-dot {
  color: var(--white-pure);
}

.nav-link-custom:hover {
  color: var(--white-pure);
}

/* ════════════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Video Background */
.video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  filter: brightness(0.35) grayscale(0.4);
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  min-width: unset;
  min-height: unset;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.25) 0%, rgba(0, 0, 0, 0.25) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.07) 0%, rgba(0, 0, 0, 0.07) 50%, rgba(0,0,0,0.6) 100%);
}

/* Grain Texture */
.video-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.15;
  pointer-events: none;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
  max-width: 900px;
}

/* Hero badge animated border */
.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.45rem 1.2rem;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
}

.hero-badge::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  animation: badgeShine 3.5s ease-in-out infinite;
}

@keyframes badgeShine {
  0%   { left: -100%; }
  50%  { left: 100%; }
  100% { left: 100%; }
}

.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 300;
  line-height: 1.6;
  background: linear-gradient(135deg, #b8860b 0%, #d4a942 25%, #f5e27c 55%, #c9a84c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.01em;
}

.hero-highlight {
  font-weight: 300;
  font-style: normal;
  display: inline-block;
  position: relative;
  background: linear-gradient(135deg, #b8860b 0%, #d4a942 25%, #f5e27c 55%, #c9a84c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-highlight::after {
  display: none;
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
}

/* Hero Buttons */
.btn-hero-primary {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  background: var(--white-pure);
  color: var(--black);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.btn-hero-primary:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,255,255,0.12);
}

.btn-hero-ghost {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--white-pure);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-indicator span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
  margin: 0 auto;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ════════════════════════════════════════════════
   HERO — RESPONSIVE
════════════════════════════════════════════════ */

/* Large tablet / small desktop ≤ 1200px */
@media (max-width: 1200px) {
  .hero-content  { max-width: 780px; }
  .hero-heading  { font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.55; }
}

/* Tablet landscape ≤ 1024px */
@media (max-width: 1024px) {
  .hero-section  { min-height: 640px; }
  .hero-content  { max-width: 680px; padding: 0 2rem; }
  .hero-heading  { font-size: clamp(2rem, 5.5vw, 3.6rem); line-height: 1.5; }
}

/* Tablet portrait ≤ 768px */
@media (max-width: 768px) {
  .hero-section  { min-height: 560px; }
  .hero-content  { max-width: 100%; padding: 0 1.5rem; }
  .hero-heading  { font-size: clamp(1.9rem, 6vw, 3rem); line-height: 1.45; }
}

/* Large phones ≤ 600px */
@media (max-width: 600px) {
  .hero-section  { min-height: 520px; }
  .hero-content  { padding: 0 1.25rem; }
  .hero-heading  { font-size: clamp(1.7rem, 7vw, 2.6rem); line-height: 1.4; }
  .scroll-indicator { bottom: 1.5rem; }
  .scroll-indicator span { height: 44px; }
}

/* Phones ≤ 480px */
@media (max-width: 480px) {
  .hero-section  { min-height: 480px; }
  .hero-content  { padding: 0 1.1rem; }
  .hero-heading  { font-size: clamp(1.55rem, 7.5vw, 2.2rem); line-height: 1.38; }
  .scroll-indicator { display: none; }
}

/* Small phones ≤ 380px */
@media (max-width: 380px) {
  .hero-section  { min-height: 440px; }
  .hero-content  { padding: 0 1rem; }
  .hero-heading  { font-size: clamp(1.35rem, 8.5vw, 1.9rem); line-height: 1.35; }
}

/* ════════════════════════════════════════════════
   STATS STRIP
════════════════════════════════════════════════ */
.stats-strip {
  background: var(--black-soft);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 4rem 0;
}

.stat-item {
  padding: 1rem 2rem;
}

.border-stat {
  border-left: 1px solid rgba(255,255,255,0.08);
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--white-pure);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-top: 0.6rem;
}

/* ════════════════════════════════════════════════
   APPLY SECTION
════════════════════════════════════════════════ */
.apply-section {
  background: var(--black);
  overflow: hidden;
}

.apply-text-col {
  padding: 4rem 3rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.apply-tag {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gray-mid);
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}

.apply-heading {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  background: linear-gradient(135deg, #b8860b 0%, #d4a942 25%, #f5e27c 55%, #c9a84c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}


.apply-keyword {
  font-style: normal;
  position: relative;
  display: inline-block;
  white-space: nowrap;
}



.apply-sub {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.7;
  margin-top: 1.5rem;
  max-width: 360px;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.95rem 2.2rem;
  background: transparent;
  color: var(--white-pure);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  transition: all var(--transition);
  margin-top: 1rem;
}

.btn-instagram:hover {
  background: var(--white-pure);
  color: var(--black);
  border-color: var(--white-pure);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,255,255,0.1);
}

/* Photo Mosaic Grid */
.photo-mosaic {
  width: 100%;
  height: 100%;
  min-height: 600px;
  overflow: hidden;
  position: relative;
}

.photo-mosaic::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 80px;
  height: 100%;
  background: linear-gradient(to right, var(--black), transparent);
  z-index: 2;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(5, 110px);
  gap: 3px;
}

.mosaic-item {
  overflow: hidden;
  position: relative;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) brightness(0.85);
  transition: transform 0.6s ease, filter 0.4s ease;
}

.mosaic-item:hover img {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(1);
}

/* ════════════════════════════════════════════════
   PHOTO COLLAGE SINGLE
════════════════════════════════════════════════ */
.photo-collage-single {
  position: relative;
  flex: 1;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 2rem 2rem 2rem 0;
  overflow: hidden;
}

.photo-collage-single::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 80px;
  height: 100%;
  background: linear-gradient(to right, var(--black), transparent);
  z-index: 2;
  pointer-events: none;
}

.photo-collage-single img {
  position: relative;
  width: 100%;
  height: 600px;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 6px;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.photo-collage-single:hover img {
  transform: scale(1.03);
}

/* ════════════════════════════════════════════════
   PHOTO COLLAGE (old multi-card, kept for reference)
════════════════════════════════════════════════ */
.photo-collage {
  position: relative;
  width: 100%;
  min-height: 680px;
  padding: 3rem 3rem 5rem 2rem;
  overflow: visible;
}

/* Main large portrait — left anchor */
.collage-main {
  position: relative;
  width: 52%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
  z-index: 2;
  aspect-ratio: 3/4;
}

.collage-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}

.collage-main:hover img { transform: scale(1.04); }

/* Top-right square */
.collage-tr {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  width: 42%;
  aspect-ratio: 1/1;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 3;
}

.collage-tr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}

.collage-tr:hover img { transform: scale(1.05); }

/* Bottom-right tall card */
.collage-br {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  width: 38%;
  aspect-ratio: 4/5;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 3;
}

.collage-br img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}

.collage-br:hover img { transform: scale(1.05); }

/* Floating accent card — overlaps bottom of main */
.collage-accent {
  position: absolute;
  bottom: 0;
  left: 30%;
  width: 38%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(0,0,0,0.6);
  border: 3px solid rgba(255,255,255,0.08);
  z-index: 4;
  transform: rotate(-2deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.collage-accent:hover {
  transform: rotate(0deg) scale(1.03);
  box-shadow: 0 24px 70px rgba(0,0,0,0.7);
}

.collage-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Decorative "DUBAI FASHION" label */
.collage-label {
  position: absolute;
  top: 50%;
  left: -0.5rem;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center center;
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
}

/* ════════════════════════════════════════════════
   QUALIFICATIONS SECTION
════════════════════════════════════════════════ */
.qual-section {
  background: var(--black);
  color: var(--white);
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}

/* Zigzag top border */
.zigzag-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background:
    linear-gradient(135deg, var(--black) 25%, transparent 25%) -20px 0,
    linear-gradient(225deg, var(--black) 25%, transparent 25%) -20px 0,
    linear-gradient(315deg, var(--black) 25%, transparent 25%),
    linear-gradient(45deg,  var(--black) 25%, transparent 25%);
  background-size: 40px 40px;
  background-color: var(--black);
}

/* Zigzag bottom border */
.zigzag-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background:
    linear-gradient(135deg, var(--black) 25%, transparent 25%) -20px 0,
    linear-gradient(225deg, var(--black) 25%, transparent 25%) -20px 0,
    linear-gradient(315deg, var(--black) 25%, transparent 25%),
    linear-gradient(45deg,  var(--black) 25%, transparent 25%);
  background-size: 40px 40px;
  background-color: var(--black);
}

.qual-inner {
  padding: 2rem 5vw;
}

.qual-eyebrow {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 0.8rem;
}

.qual-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  background: linear-gradient(135deg, #b8860b 0%, #d4a942 25%, #f5e27c 55%, #c9a84c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.qual-note {
  font-size: 0.85rem;
  color: var(--gray-mid);
  margin-top: 0.8rem;
  font-style: normal;
}

.qual-card {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 2.2rem;
  padding-bottom: 1rem;
  height: 100%;
}

.qual-icon {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gray-mid);
  margin-bottom: 1.4rem;
}

.qual-metric {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--white-pure);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.qual-metric em {
  font-style: normal;
  font-weight: 300;
}

.qual-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--gray-light);
  font-weight: 400;
}

.qual-desc strong {
  color: var(--white-pure);
  font-weight: 600;
}

.qual-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.qual-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.45rem;
}

.qual-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #999;
  font-size: 0.8rem;
  top: 0.05em;
}

/* ════════════════════════════════════════════════
   MARQUEE STRIP
════════════════════════════════════════════════ */
.marquee-section {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 2.8rem 0;
  overflow: hidden;
}

.marquee-track {
  width: 100%;
  overflow: hidden;
}

.marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marqueeScroll 35s linear infinite;
}

/* Logo marquee */
.marquee-logos {
  gap: 2rem;
  padding: 0.5rem 0;
}

.marquee-logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 1.1rem 2rem;
  width: 160px;
  height: 90px;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.marquee-logo-item img {
  height: 56px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(0) brightness(1);
  transition: filter 0.35s ease, transform 0.35s ease;
}

.marquee-logo-item:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.45);
}

.marquee-logo-item:hover img {
  transform: scale(1.08);
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════
   TRIPS AROUND THE WORLD SECTION
════════════════════════════════════════════════ */
.trips-section {
  background: var(--black);
  padding: 0;
  overflow: hidden;
}

/* ── Bento Grid ──────────────────────────────── */
/*
   Desktop layout (3 cols × 4 rows):
   ┌─ portrait ─┬─ titletext ─┬─── house ───┐  row1 190px
   │            ├─── dining ──┤             │  row2 270px
   ├─── cars ───┤             ├─── villa ───┤  row3 270px
   │            ├─── hotel ───┤             │  row4 270px
   └────────────┴─────────────┴─────────────┘
*/
.trips-bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 190px 270px 270px 270px;
  grid-template-areas:
    "portrait  titlecell  house"
    "portrait  dining     house"
    "cars      dining     villa"
    "cars      hotel      villa";
  gap: 10px;
  max-width: 1250px;
  margin: 0 auto;
  padding: 56px 20px 10px;
}

/* Title cell — pure text, no image */
.bento-titlecell {
  grid-area: titlecell;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.5rem 1rem 1rem;
  background: transparent;
}

.trips-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 60px;
  font-weight: 300;
  background: linear-gradient(135deg, #b8860b 0%, #d4a942 25%, #f5e27c 55%, #c9a84c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.22;
  letter-spacing: 0em;
  margin-bottom: 0.8rem;
}

.trips-title strong {
  font-weight: 700;
  font-style: normal;
  display: inline;
}

.trips-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: #888888;
  line-height: 1.8;
  max-width: 230px;
  margin: 0 auto;
}

.trips-subtitle strong {
  color: #333;
  font-weight: 600;
}

.trips-subtitle em {
  font-style: normal;
  color: #666;
}

/* Image cards */
.bento-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: var(--black-mid);
  cursor: pointer;
  box-shadow: 0 2px 18px rgba(0,0,0,0.45);
  transition: box-shadow 0.4s ease, transform 0.35s ease;
}

.bento-card:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  transform: translateY(-3px);
}

.bento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bento-card:hover img {
  transform: scale(1.06);
}

/* Grid area assignments */
.bento-portrait { grid-area: portrait; }
.bento-house    { grid-area: house; }
.bento-dining   { grid-area: dining; }
.bento-cars     { grid-area: cars; }
.bento-villa    { grid-area: villa; }
.bento-hotel    { grid-area: hotel; }

/* ── Service Text Cards (left column) ───────── */
.bento-service-card {
  background: var(--black-mid);
  display: flex;
  flex-direction: column;
  padding: 1.6rem 1.6rem;
  gap: 0;
  cursor: default;
  overflow: hidden;
}

.bento-service-card:hover {
  transform: translateY(-3px);
}

/* compact numbered list */
.bsc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
  justify-content: space-between;
}

.bsc-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.55rem 0.3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  transition: background 0.35s ease, padding-left 0.35s ease, border-color 0.35s ease;
}

.bsc-list-item:last-child {
  border-bottom: none;
}

.bsc-list-item:hover {
  background: rgba(255,255,255,0.05);
  padding-left: 0.75rem;
  border-color: transparent;
}

.bsc-num {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.55);
  min-width: 22px;
  padding-top: 0.18rem;
  flex-shrink: 0;
  transition: color 0.35s ease;
}

.bsc-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.bsc-name {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,1);
  line-height: 1.3;
  letter-spacing: 0.01em;
  transition: color 0.35s ease;
}

.bsc-desc {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  transition: color 0.35s ease;
}

.bsc-list-item:hover .bsc-name {
  color: rgba(255,255,255,1);
}

.bsc-list-item:hover .bsc-num {
  color: rgba(255,255,255,0.6);
}

.bsc-list-item:hover .bsc-desc {
  color: rgba(255,255,255,0.55);
}

/* legacy — keep to avoid breaking anything that still references them */
.bsc-service { display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.bsc-divider { width: 100%; height: 1px; background: rgba(255,255,255,0.08); margin: 0.6rem 0; flex-shrink: 0; }

/* ── Testimonial Banner ──────────────────────── */
.trips-testimonial {
  position: relative;
  margin-top: 10px;
  height: 370px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.testimonial-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: brightness(0.30) saturate(0.5);
}

.testimonial-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

.testimonial-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 2.5rem;
  max-width: 560px;
  width: 100%;
}

.t-stars {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.25em;
  margin-bottom: 1.5rem;
  display: block;
}

.t-open-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 5.5rem;
  line-height: 0.45;
  color: rgba(255,255,255,0.16);
  text-align: left;
  margin-bottom: 1rem;
  display: block;
  user-select: none;
}

.t-close-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 5.5rem;
  line-height: 0;
  color: rgba(255,255,255,0.16);
  text-align: right;
  margin-top: 0.6rem;
  display: block;
  user-select: none;
}

.t-quote-text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.95rem, 1.9vw, 1.15rem);
  font-weight: 700;
  line-height: 1.8;
  color: rgba(255,255,255,0.88);
  font-style: normal;
  margin: 0;
  letter-spacing: 0.005em;
}

.t-author {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.38);
  margin-top: 1.3rem;
  display: block;
}

/* ── Trips Responsive ────────────────────────── */
@media (max-width: 991px) {
  .trips-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 220px 220px 220px 220px;
    grid-template-areas:
      "titlecell  titlecell"
      "portrait   house"
      "portrait   dining"
      "cars       dining"
      "cars       hotel";
    padding: 36px 16px 10px;
    max-width: 100%;
  }
  .bento-villa    { display: none; }
  .bento-titlecell { padding: 1.5rem 1rem; }
  .trips-testimonial { height: 300px; }
}

@media (max-width: 600px) {
  .trips-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 180px 180px 180px;
    grid-template-areas:
      "titlecell  titlecell"
      "portrait   house"
      "dining     cars"
      "hotel      hotel";
    gap: 8px;
    padding: 28px 10px 8px;
  }
  .bento-villa    { display: none; }
  .trips-testimonial { height: 260px; }
  .t-quote-text   { font-size: 0.9rem; }
  .testimonial-content { padding: 1.5rem; }
}

/* ════════════════════════════════════════════════
   CUSTOM CURSOR
════════════════════════════════════════════════ */
.cursor-dot {
  display: none !important;
}

.cursor-ring {
  display: none !important;
  mix-blend-mode: difference;
}

/* ════════════════════════════════════════════════
   HERO ABSTRACT ELEMENTS
════════════════════════════════════════════════ */
.hero-abstracts {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  will-change: transform;
}

.hero-orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 70%);
  top: -10%; left: 10%;
}

.hero-orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, transparent 70%);
  bottom: 10%; right: 12%;
  opacity: 0.07;
}

.hero-orb-3 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, transparent 65%);
  top: 40%; left: 55%;
  opacity: 0.06;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  stroke: rgba(255,255,255,0.04);
  opacity: 1;
}

.hero-circle-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.07);
  top: 50%; left: 50%;
  width: 70vmin; height: 70vmin;
  transform: translate(-50%, -50%);
  animation: ringPulse 8s ease-in-out infinite;
  will-change: transform;
}

.hero-ring-2 {
  width: 50vmin; height: 50vmin;
  border-color: rgba(255,255,255,0.05);
  animation-delay: -4s;
  animation-duration: 10s;
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}

/* ════════════════════════════════════════════════
   CONTACT SECTION
════════════════════════════════════════════════ */
.contact-section {
  background: var(--black);
  padding: 2rem 1rem 4rem;
  position: relative;
  overflow: hidden;
}

/* ── Contact Side Videos ───────────────────── */
.contact-side-videos {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  display: flex;
  justify-content: space-between;
}

.contact-video-left,
.contact-video-right {
  width: 40%;
  height: 100%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.contact-video-left video,
.contact-video-right video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.55;
}

.contact-video-veil {
  position: absolute;
  inset: 0;
}

.contact-video-veil--left {
  background: linear-gradient(
    to right,
    rgba(5,5,5,0.25) 0%,
    rgba(5,5,5,0.95) 100%
  );
}

.contact-video-veil--right {
  background: linear-gradient(
    to left,
    rgba(5,5,5,0.25) 0%,
    rgba(5,5,5,0.95) 100%
  );
}

@media (max-width: 768px) {
  .contact-video-left,
  .contact-video-right {
    width: 40%;
  }
}

/* Abstract background */
.contact-abstracts {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.abstract-orb {
  position: absolute;
  left:    var(--ox);
  top:     var(--oy);
  width:   var(--os);
  height:  var(--os);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, transparent 70%);
  filter: blur(90px);
  opacity: var(--oo);
  transform: translate(-50%, -50%);
  will-change: transform;
}

.contact-lines {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  stroke: rgba(255,255,255,0.04);
  fill: none;
}

.contact-section::before {
  content: 'APE.';
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 14rem);
  font-weight: 900;
  color: rgba(255,255,255,0.025);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.1em;
  z-index: 2;
}

.contact-pre {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 1.5rem;
}

.contact-heading {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  background: linear-gradient(135deg, #b8860b 0%, #d4a942 25%, #f5e27c 55%, #c9a84c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.contact-heading span {
  font-style: normal;
}

.contact-sub {
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.contact-sub strong {
  color: var(--white-pure);
}

.btn-contact-cta {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.2rem 3.5rem;
  background: var(--white-pure);
  color: var(--black);
  border-radius: 100px;
  transition: all var(--transition);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 0 rgba(255,255,255,0);
}

.btn-contact-cta:hover {
  background: var(--off-white);
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(255,255,255,0.18), 0 0 0 8px rgba(255,255,255,0.06);
}

.btn-contact-ghost {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--gray-light);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  transition: all var(--transition);
}

.btn-contact-ghost:hover {
  color: var(--white-pure);
  border-bottom-color: var(--white-pure);
}

/* ── Contact About Block ───────────────────── */
.contact-about {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.ca-eyebrow {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 1.8rem;
}

.ca-heading {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white-pure);
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}

.ca-heading span {
  font-style: normal;
}

.ca-body {
  font-size: 1rem;
  color: var(--gray-light);
  line-height: 1.85;
  margin-bottom: 1.4rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.ca-body strong {
  color: var(--white-pure);
  font-weight: 500;
}

/* Pillars row */
.ca-pillars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 4rem;
}

.ca-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  width: 170px;
  padding: 2.2rem 1.4rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: default;
}

.ca-pillar:hover {
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 40px rgba(255,255,255,0.06);
}

.ca-pillar-icon {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gray-mid);
}

.ca-pillar-label {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 400;
  font-style: normal;
  color: var(--gray-light);
  text-align: center;
  line-height: 1.5;
}

/* Divider */
.contact-divider {
  max-width: 900px;
  margin: 0 auto 6rem;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.12), transparent);
  position: relative;
  z-index: 2;
}

/* CTA block */
.contact-divider { position: relative; z-index: 2; }

.contact-cta-block {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
}

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.site-footer {
  background: var(--black-soft);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--white-pure);
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--gray-mid);
  letter-spacing: 0.04em;
}

.footer-ig {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-light);
  letter-spacing: 0.08em;
  transition: color var(--transition);
}

.footer-ig:hover {
  color: var(--white-pure);
}

.footer-social-links {
  display: flex;
  gap: 1.25rem;
}

@media (max-width: 576px) {
  .site-footer .container {
    flex-direction: column;
    align-items: center !important;
    text-align: center;
    gap: 0.75rem;
  }
}

/* ════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .apply-text-col {
    padding: 3rem 1.5rem 2rem;
  }

  .photo-collage-single {
    padding: 1.5rem;
  }
  .photo-collage-single img {
    height: 380px;
  }

  .photo-collage {
    min-height: 480px;
    padding: 2rem 1.5rem 4rem 1rem;
  }

  .collage-label { display: none; }

  .photo-mosaic::before {
    display: none;
  }

  .mosaic-grid {
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(6, 90px);
  }
}

@media (max-width: 767px) {
  .nav-links { display: none; }
  .cursor-dot, .cursor-ring { display: none; }

  .photo-collage {
    min-height: 420px;
    padding: 2rem 1rem 4rem;
  }

  .collage-main  { width: 56%; }
  .collage-tr    { width: 40%; right: 1rem; }
  .collage-br    { width: 36%; right: 1rem; }
  .collage-accent { width: 42%; left: 28%; }

  .hero-heading {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .mosaic-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(8, 80px);
  }

  .qual-inner {
    padding: 2rem;
  }

  .border-stat {
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .btn-hero-primary, .btn-hero-ghost {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 0.5rem auto;
    text-align: center;
  }
}

/* ════════════════════════════════════════════════
   HOMEPAGE — RESPONSIVE REFINEMENTS
   (design-preserving; tablet → small phone)
════════════════════════════════════════════════ */

/* ── Tablet portrait / large phone (≤ 768px) ─── */
@media (max-width: 768px) {
  /* keep the two nav links reachable on mobile (no hamburger needed) */
  .nav-links { display: flex !important; gap: 1.25rem; }
  .nav-link-custom { font-size: 0.78rem; }

  .hero-section { min-height: 560px; }

  .apply-text-col { padding: 3rem 1.5rem 2rem; }
  .apply-sub { max-width: 100%; }
  .photo-collage-single { padding: 0 1.5rem 1.5rem; }
  .photo-collage-single::before { display: none; }
  .photo-collage-single img { height: 380px; }

  .qual-section { padding: 4.5rem 0; }
  .qual-inner { padding: 1.5rem 1.5rem; }

  .marquee-section { padding: 2.2rem 0; }
}

/* ── Phones (≤ 600px) — single-column bento so the
      service lists & cards never clip ──────────── */
@media (max-width: 600px) {
  .trips-bento {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-template-areas: none;
    gap: 12px;
    padding: 26px 14px 10px;
  }
  .trips-bento > * { grid-area: auto !important; }
  .bento-villa { display: none; }

  .bento-titlecell { order: -1; padding: 0.5rem 0.5rem 0.75rem; }
  .trips-title { font-size: 44px; line-height: 1.2; }

  /* image cards need an explicit height once rows are auto */
  .bento-card:not(.bento-service-card) { height: 200px; }

  /* service cards grow to fit their full list */
  .bento-service-card { height: auto; padding: 1.5rem 1.4rem; }
  .bsc-list { gap: 0.15rem; }
  .bsc-list-item { padding: 0.65rem 0.3rem; }

  /* contact section — keep CTA readable over side videos */
  .contact-section { padding: 1.5rem 1rem 3rem; }
  .contact-video-left video,
  .contact-video-right video { opacity: 0.32; }
  .contact-actions { flex-direction: column; gap: 1.25rem; }
  .btn-contact-cta { width: 100%; max-width: 320px; text-align: center; }
  .contact-heading { font-size: clamp(2.8rem, 11vw, 7rem); }
}

/* ── Small phones (≤ 430px) ──────────────────── */
@media (max-width: 430px) {
  .navbar { padding-left: 1rem !important; padding-right: 1rem !important; }
  .nav-links { gap: 0.9rem; }
  .nav-link-custom { font-size: 0.72rem; }

  .hero-content { padding: 0 1.1rem; }

  .apply-text-col { padding: 2.5rem 1.25rem 1.75rem; }
  .photo-collage-single { padding: 0 1.1rem 1.25rem; }
  .photo-collage-single img { height: 320px; }
  .btn-instagram { padding: 0.9rem 1.6rem; font-size: 0.7rem; }

  .qual-inner { padding: 1.25rem 1.2rem; }

  .marquee-logo-item { width: 132px; height: 78px; padding: 0.9rem 1.4rem; }
  .marquee-logo-item img { height: 46px; max-width: 100px; }

  .trips-title { font-size: 38px; }
  .bento-card:not(.bento-service-card) { height: 180px; }

  .contact-pre { letter-spacing: 0.25em; }
}

/* ════════════════════════════════════════════════
   ABOUT PAGE — about.css
   Rayman Ventures | Black & White Premium Theme
════════════════════════════════════════════════ */

/* ── Shared helper ──────────────────────────── */
.ab-section-label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.4rem;
  display: block;
  position: relative;
  padding-left: 1.6rem;
}
.ab-section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 1px;
  background: rgba(255,255,255,0.35);
}
.ab-label-light {
  color: rgba(255,255,255,0.6);
}
.ab-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.18;
  background: linear-gradient(135deg, #b8860b 0%, #d4a942 25%, #f5e27c 55%, #c9a84c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.6rem;
  letter-spacing: -0.01em;
}
.ab-heading em {
  font-style: normal;
  font-weight: 300;
}

/* ════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */
.ab-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  overflow: hidden;
  background: var(--black);
}

/* About Hero Video Background */
.ab-hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.ab-hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.35) grayscale(0.35);
}

.ab-hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,5,5,0.3) 0%,
    rgba(5,5,5,0.6) 100%
  );
}

/* Abstracts */
.ab-abstracts {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

@keyframes abOrbDrift {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(30px,-40px) scale(1.08); }
  66%      { transform: translate(-20px,25px) scale(0.95); }
}

.ab-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0;
  animation: abOrbDrift 14s ease-in-out infinite;
}
.ab-orb-1 {
  width: 500px; height: 500px;
  top: -150px; left: -100px;
  background: radial-gradient(circle, rgba(255,255,255,0.07), transparent 70%);
  animation-delay: 0s;
  opacity: 1;
}
.ab-orb-2 {
  width: 380px; height: 380px;
  bottom: -80px; right: 30%;
  background: radial-gradient(circle, rgba(255,255,255,0.05), transparent 70%);
  animation-delay: -5s;
  opacity: 1;
}
.ab-orb-3 {
  width: 280px; height: 280px;
  top: 40%; right: 10%;
  background: radial-gradient(circle, rgba(200,200,200,0.04), transparent 70%);
  animation-delay: -9s;
  opacity: 1;
}

.ab-hero-rings {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ab-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.09) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.5) 0%, transparent 75%);
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.5) 0%, transparent 75%);
}

.ab-corner-tl {
  position: absolute;
  top: 0; left: 0;
  width: 120px; height: 120px;
}
.ab-corner-br {
  position: absolute;
  bottom: 0; right: 0;
  width: 120px; height: 120px;
}

/* Image panel — right half */
.ab-hero-img-panel {
  position: relative;
  grid-column: 2;
  height: 100vh;
  overflow: hidden;
  z-index: 2;
}
.ab-hero-img-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0.15) brightness(0.85);
  transform: scale(1.06);
  transition: transform 12s ease;
}
.ab-hero-img-panel:hover img {
  transform: scale(1);
}
.ab-hero-img-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, var(--black) 0%, rgba(5,5,5,0.55) 28%, transparent 55%),
    linear-gradient(to bottom, rgba(5,5,5,0.3) 0%, transparent 20%, transparent 75%, rgba(5,5,5,0.65) 100%);
}

/* Hero content — left half */
.ab-hero-content {
  position: relative;
  z-index: 3;
  grid-column: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10rem 4rem 6rem 7rem;
}

.ab-hero-pre {
  
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-bottom: 2.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ab-hero-pre::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1px;
  background: rgba(255,255,255,0.3);
}

.ab-hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 6vw, 5.6rem);
  font-weight: 300;
  line-height: 1.1;
  background: linear-gradient(135deg, #b8860b 0%, #d4a942 25%, #f5e27c 55%, #c9a84c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  margin-bottom: 1.8rem;
}
.ab-hero-heading em {
  font-style: normal;
}

.ab-hero-sub {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.48);
  max-width: 420px;
  margin-bottom: 3rem;
}

.ab-hero-scroll {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ab-scroll-line {
  display: block;
  width: 1px;
  height: 55px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.55));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ════════════════════════════════════════════════
   TAGLINE BANNER
════════════════════════════════════════════════ */
.ab-tagline-banner {
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  padding: 1.4rem 0;
  background: rgba(255,255,255,0.02);
}
.ab-tagline-inner {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: taglineScroll 18s linear infinite;
}
@keyframes taglineScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ab-tagline-text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  font-style: normal;
  color: rgb(255, 255, 255);
  letter-spacing: 0.05em;
}
.ab-tagline-dot {
  color: rgba(255,255,255,0.2);
  font-size: 0.75rem;
  align-self: center;
}

/* ════════════════════════════════════════════════
   ABOUT US
════════════════════════════════════════════════ */
.ab-about {
  padding: 9rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.ab-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  max-width: 1340px;
  margin: 0 auto;
}

.ab-about-grid--reverse {
  direction: rtl;
}
.ab-about-grid--reverse > * {
  direction: ltr;
}

/* Visuals */
.ab-about-visuals {
  position: relative;
  height: 320px;
}
.ab-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ab-img-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: grayscale(0.15);
  transition: transform 0.8s ease;
}
.ab-img-main:hover img {
  transform: scale(1.03);
}
.ab-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%;
  height: 55%;
  border-radius: 2px;
  overflow: hidden;
  border: 3px solid var(--black);
}
.ab-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.1);
  transition: transform 0.8s ease;
}
.ab-img-accent:hover img {
  transform: scale(1.03);
}

.ab-float-stat {
  position: absolute;
  top: 48%;
  left: -32px;
  background: #ffffff;
  color: #050505;
  padding: 1.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  z-index: 4;
  box-shadow: 0 16px 50px rgba(0,0,0,0.4);
}
.ab-float-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
  color: #050505;
}
.ab-float-num sup {
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
}
.ab-float-label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(5,5,5,0.55);
}
.ab-cross-deco {
  position: absolute;
  bottom: 12%;
  left: 92%;
  width: 40px;
  height: 40px;
  opacity: 0.5;
}

/* Text side */
.ab-about-text {
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ab-about-body p {
  font-family: var(--font-sans);
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.72);
  margin-bottom: 1.3rem;
}
.ab-about-body p:last-child { margin-bottom: 0; }

.ab-mini-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.ab-mini-stat {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.ab-mini-num {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
}
.ab-mini-num sup {
  font-size: 0.9rem;
  font-family: var(--font-display);
}
.ab-mini-lbl {
  font-family: var(--font-display);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.ab-mini-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════
   VISION & MISSION
════════════════════════════════════════════════ */
.ab-vm-section {
  padding: 8rem 0;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  background: rgba(255,255,255,0.015);
}
.ab-vm-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ab-vm-bg svg {
  width: 100%;
  height: 100%;
  stroke: rgba(255,255,255,0.03);
}
.ab-vm-label {
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}
.ab-vm-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
  position: relative;
  z-index: 1;
}
.ab-vm-rule {
  width: 1px;
  background: rgba(255,255,255,0.08);
  align-self: stretch;
}
.ab-vm-card {
  padding: 0 2rem;
}
.ab-vm-number {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.18);
  margin-bottom: 0.8rem;
}
.ab-vm-tag {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.4rem;
}
.ab-vm-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 1.4rem;
}
.ab-vm-body {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.88;
  color: rgba(255,255,255,0.62);
}
.ab-vm-line {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.22);
  margin-top: 2.5rem;
}

/* ════════════════════════════════════════════════
   SERVICES — BENTO GRID
════════════════════════════════════════════════ */
.ab-services {
  padding: 9rem 0;
  overflow: hidden;
}
.ab-services-header {
  max-width: 1340px;
  margin: 0 auto 4rem;
}
.ab-services-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5px;
  max-width: 1340px;
  margin: 0 auto;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}

.ab-svc-card {
  background: var(--black);
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
.ab-svc-card:hover {
  background: rgba(255,255,255,0.025);
}
/* Featured card spans 2 rows */
.ab-svc-featured {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
}
.ab-svc-img {
  position: relative;
  height: 300px;
  overflow: hidden;
  flex-shrink: 0;
}
.ab-svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3) brightness(0.65);
  transition: transform 0.8s ease, filter 0.6s ease;
}
.ab-svc-featured:hover .ab-svc-img img {
  transform: scale(1.04);
  filter: grayscale(0) brightness(0.75);
}
.ab-svc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, var(--black) 100%);
}

.ab-svc-body {
  padding: 2.5rem 2.8rem 3rem;
  flex: 1;
}
.ab-svc-icon {
  width: 36px;
  height: 36px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.6rem;
}
.ab-svc-icon svg {
  width: 100%;
  height: 100%;
}
.ab-svc-tag {
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.2);
  margin-bottom: 0.8rem;
}
.ab-svc-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 1.6rem;
}
.ab-svc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.ab-svc-list li {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 300;
  color: rgba(255,255,255,0.62);
  padding-left: 1.2rem;
  position: relative;
}
.ab-svc-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.2);
  font-size: 0.7rem;
}

/* Dark variant card */
.ab-svc-dark {
  background: rgba(255,255,255,0.04);
}
.ab-svc-dark:hover {
  background: rgba(255,255,255,0.07);
}

/* ════════════════════════════════════════════════
   ABOUT TESTIMONIALS
════════════════════════════════════════════════ */
.ab-testimonials-section {
  background: var(--black);
  padding: 4rem 0 5rem;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.ab-testimonials-section .ab-services-header {
  margin-bottom: 3.5rem;
}

.ab-testi-track-wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.ab-testi-track-wrap::before,
.ab-testi-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.ab-testi-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--black), transparent);
}
.ab-testi-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--black), transparent);
}

.ab-testi-track {
  display: inline-flex;
  gap: 1.5rem;
  animation: abTestiScroll 40s linear infinite;
  padding: 0.5rem 0 1.5rem;
}

.ab-testi-track:hover {
  animation-play-state: paused;
}

@keyframes abTestiScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ab-testi-card {
  flex-shrink: 0;
  width: 320px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.ab-testi-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.18);
}

.ab-testi-stars {
  font-size: 1rem;
  color: #f5c518;
  letter-spacing: 0.1em;
}

.ab-testi-quote {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  flex: 1;
}

.ab-testi-author {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════
   CORE VALUE PROPOSITION
════════════════════════════════════════════════ */
.ab-cvp {
  padding: 9rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.ab-cvp-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 7rem;
  align-items: start;
  max-width: 1340px;
  margin: 0 auto;
}
.ab-cvp-left { position: relative; }
.ab-cvp-sub {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.78;
  color: rgba(255,255,255,0.45);
  margin-bottom: 3rem;
}
.ab-cvp-img {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  height: 450px;
}
.ab-cvp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) brightness(0.7);
  transition: transform 0.8s ease;
}
.ab-cvp-img:hover img { transform: scale(1.03); }
.ab-cvp-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.08);
}

/* Value items */
.ab-cvp-right {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 0.5rem;
}
.ab-cvp-item {
  display: flex;
  gap: 2rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative;
  transition: background var(--transition);
}
.ab-cvp-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.ab-cvp-item::before {
  content: '';
  position: absolute;
  left: -1.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0);
  transition: background var(--transition);
}
.ab-cvp-item:hover::before {
  background: rgba(255,255,255,0.35);
}
.ab-cvp-num {
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.18);
  flex-shrink: 0;
  padding-top: 0.3rem;
  width: 24px;
}
.ab-cvp-content {}
.ab-cvp-title {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}
.ab-cvp-desc {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.72;
  margin: 0;
}

/* ════════════════════════════════════════════════
   WHY RAYMAN VENTURES
════════════════════════════════════════════════ */
.ab-why {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  display: flex;
  align-items: center;
}
.ab-why-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ab-why-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.6) brightness(0.22);
}
.ab-why-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(5,5,5,0.92) 0%, rgba(5,5,5,0.6) 50%, rgba(5,5,5,0.82) 100%),
    linear-gradient(to bottom, rgba(5,5,5,0.4) 0%, transparent 30%, transparent 70%, rgba(5,5,5,0.4) 100%);
}

.ab-why-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 7rem;
  align-items: center;
  max-width: 1340px;
  margin: 0 auto;
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.ab-why-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.12;
  background: linear-gradient(135deg, #b8860b 0%, #d4a942 25%, #f5e27c 55%, #c9a84c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  letter-spacing: -0.015em;
}
.ab-why-heading em { font-style: normal; }
.ab-why-sub {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.78;
  color: rgba(255,255,255,0.5);
}

.ab-why-checklist {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ab-why-item {
  display: flex;
  gap: 1.8rem;
  align-items: flex-start;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ab-why-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.ab-why-check {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-top: 0.1rem;
  transition: border-color var(--transition), background var(--transition);
}
.ab-why-item:hover .ab-why-check {
  background: #ffffff;
  color: #050505;
  border-color: #ffffff;
}
.ab-why-item-text {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.ab-why-item-text strong {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.01em;
}
.ab-why-item-text span {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.68;
}

/* ════════════════════════════════════════════════
   MARKET POSITIONING
════════════════════════════════════════════════ */
.ab-market {
  padding: 9rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.ab-market-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 7rem;
  align-items: center;
  max-width: 1340px;
  margin: 0 auto;
}

.ab-market-img {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  height: 640px;
}
.ab-market-img img,
.ab-market-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ab-market-img img {
  filter: grayscale(0.15) brightness(0.75);
  transition: transform 0.9s ease;
}
.ab-market-img:hover img { transform: scale(1.03); }

.ab-market-img-badge {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  background: rgba(5,5,5,0.88);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 1.1rem 1.6rem;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.ab-mib-label {
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.32);
  text-transform: uppercase;
}
.ab-mib-location {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 300;
  color: #ffffff;
}

.ab-market-body p {
  font-family: var(--font-sans);
  font-size: 0.94rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.3rem;
}
.ab-market-body p:last-child { margin-bottom: 0; }

.ab-region-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.ab-region-tag {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.45rem 1.1rem;
  transition: border-color var(--transition), color var(--transition);
}
.ab-region-tag:hover {
  border-color: rgba(255,255,255,0.5);
  color: #ffffff;
}

.ab-geo-row {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 2rem;
}
.ab-geo-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.38);
}
.ab-geo-item svg {
  color: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════
   FAQ ACCORDION
════════════════════════════════════════════════ */
.ab-faq {
  display: flex;
  flex-direction: column;
  margin-top: 0.5rem;
}

.ab-faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ab-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.3rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
}

.ab-faq-question span:first-child {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  transition: color 0.3s ease;
}

.ab-faq-question[aria-expanded="true"] span:first-child {
  background: linear-gradient(135deg, #b8860b 0%, #d4a942 25%, #f5e27c 55%, #c9a84c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ab-faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  position: relative;
  transition: border-color 0.3s ease, transform 0.4s ease;
}

.ab-faq-icon::before,
.ab-faq-icon::after {
  content: '';
  position: absolute;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, background 0.3s ease;
}

.ab-faq-icon::before { width: 10px; height: 1.5px; }
.ab-faq-icon::after  { width: 1.5px; height: 10px; }

.ab-faq-question[aria-expanded="true"] .ab-faq-icon {
  border-color: #c9a84c;
  transform: rotate(45deg);
}

.ab-faq-question[aria-expanded="true"] .ab-faq-icon::before,
.ab-faq-question[aria-expanded="true"] .ab-faq-icon::after {
  background: #c9a84c;
}

.ab-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ab-faq-answer p {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  padding-bottom: 1.3rem;
  margin: 0;
}

/* ════════════════════════════════════════════════
   MARQUEE
════════════════════════════════════════════════ */
.ab-marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 1.6rem 0;
}
.ab-marquee-track { overflow: hidden; }
.ab-marquee-content {
  display: inline-flex;
  gap: 3.5rem;
  white-space: nowrap;
  animation: abMarquee 22s linear infinite;
}
@keyframes abMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ab-marquee-content span {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.ab-m-dot {
  color: rgba(255,255,255,0.15) !important;
  font-size: 0.5rem !important;
  align-self: center;
  display: inline-block;
  vertical-align: middle;
}

/* ════════════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════════════ */
.ab-cta {
  padding: 10rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ab-cta-abstracts {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ab-cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}
.ab-cta-orb-1 {
  width: 500px; height: 500px;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 70%);
}
.ab-cta-orb-2 {
  width: 300px; height: 300px;
  bottom: -100px; left: 20%;
  background: radial-gradient(circle, rgba(255,255,255,0.04), transparent 70%);
}

.ab-cta-inner { position: relative; z-index: 2; }
.ab-cta-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.015em;
}
.ab-cta-heading em { font-style: normal; }
.ab-cta-sub {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  max-width: 500px;
  margin: 0 auto 3.5rem;
  line-height: 1.75;
}
.ab-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.ab-cta-btn-primary {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.8rem;
  background: #ffffff;
  color: #050505;
  border-radius: 4px;
  transition: all var(--transition);
}
.ab-cta-btn-primary:hover {
  background: #eeeeee;
  color: #050505;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,255,255,0.12);
}
.ab-cta-btn-ghost {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 3px;
  transition: all var(--transition);
}
.ab-cta-btn-ghost:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

/* ════════════════════════════════════════════════
   NAV ACTIVE STATE
════════════════════════════════════════════════ */
.nav-link-active {
  color: var(--white-pure) !important;
}

/* ════════════════════════════════════════════════
   RESPONSIVE — ABOUT PAGE
════════════════════════════════════════════════ */

/* ── Large desktop (≤ 1200px) ─────────────────── */
@media (max-width: 1200px) {
  .ab-hero-content { padding: 8rem 3rem 6rem 4rem; }
  .ab-about-grid,
  .ab-cvp-inner,
  .ab-market-grid { gap: 4rem; }
  .ab-why-inner { gap: 4rem; }
  .ab-vm-grid { gap: 3rem; }
  .ab-market-img { height: 540px; }
}

/* ── Tablet landscape (≤ 1024px) ──────────────── */
@media (max-width: 1024px) {
  .ab-hero-content { padding: 7rem 3rem 5rem 3rem; }
  .ab-about { padding: 6rem 0 3rem; }
  .ab-about-grid { gap: 3rem; }
  .ab-about-visuals { height: 260px; }
  .ab-market-img { height: 480px; }
  .ab-why-inner { gap: 3rem; padding-top: 5rem; padding-bottom: 5rem; }
  .ab-market { padding: 6rem 0; }
  .ab-testimonials-section { padding: 3rem 0 4rem; }
}

/* ── Tablet portrait (≤ 992px) ────────────────── */
@media (max-width: 992px) {
  /* Hero — full bleed video, content anchored to bottom */
  .ab-hero {
    grid-template-columns: 1fr;
    height: 100vh;
    min-height: 600px;
    align-items: flex-end;
  }
  .ab-hero-video-bg video {
    filter: brightness(0.32) grayscale(0.35);
  }
  /* darken lower area so the heading stays legible over the video */
  .ab-hero-video-overlay {
    background: linear-gradient(to bottom, rgba(5,5,5,0.2) 0%, rgba(5,5,5,0.5) 50%, rgba(5,5,5,0.94) 100%);
  }
  .ab-hero-content {
    grid-column: 1;
    padding: 0 2.5rem 5rem;
    z-index: 3;
    justify-content: flex-end;
  }
  .ab-hero-sub { max-width: 100%; }

  /* About grid → single column */
  .ab-about { padding: 5rem 0 3rem; }
  .ab-about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .ab-about-visuals { height: 460px; }
  .ab-float-stat { left: 1rem; bottom: -20px; top: auto; }

  /* VM grid → single column */
  .ab-vm-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ab-vm-rule { display: none; }
  .ab-vm-card { padding: 0; }

  /* Services grid → 2 cols */
  .ab-services-grid { grid-template-columns: 1fr 1fr; }
  .ab-svc-featured { grid-row: auto; }

  /* CVP → single column */
  .ab-cvp-inner { grid-template-columns: 1fr; gap: 3rem; }
  .ab-cvp-img { height: 300px; }
  .ab-cvp { padding: 5rem 0; }

  /* Why → single column */
  .ab-why-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .ab-why { min-height: auto; }

  /* Market → single column */
  .ab-market-grid { grid-template-columns: 1fr; gap: 3rem; }
  .ab-market-img { height: 420px; }
  .ab-market { padding: 5rem 0; }
}

/* ── Mobile landscape / small tablet (≤ 767px) ── */
@media (max-width: 767px) {
  /* Hero */
  .ab-hero { min-height: 550px; }
  .ab-hero-content { padding: 0 1.5rem 4rem; }
  .ab-hero-heading { font-size: clamp(2.2rem, 7vw, 2.8rem); }
  .ab-hero-sub { font-size: 0.88rem; }
  .ab-hero-pre { font-size: 0.55rem; letter-spacing: 0.3em; }

  /* About */
  .ab-about { padding: 4rem 0 2.5rem; }
  .ab-about-visuals { height: 300px; }
  .ab-img-main { width: 88%; height: 82%; }
  .ab-about-text { padding-left: 0; }
  .ab-about-body p { font-size: 0.9rem; }

  /* Services */
  .ab-services { padding: 5rem 0; }
  .ab-services-grid { grid-template-columns: 1fr; }
  .ab-svc-body { padding: 2rem 1.8rem; }
  .ab-svc-img { height: 220px; }

  /* Testimonials */
  .ab-testimonials-section { padding: 3rem 0; }
  .ab-testi-card { width: 280px; padding: 1.6rem 1.4rem; }

  /* Mini stats */
  .ab-mini-stats { gap: 1.5rem; flex-wrap: wrap; }
  .ab-mini-num { font-size: 1.5rem; }

  /* Why */
  .ab-why-inner { padding-top: 3.5rem; padding-bottom: 3.5rem; gap: 2.5rem; }
  .ab-why-heading { font-size: clamp(2rem, 6vw, 2.8rem); }
  .ab-why-sub { font-size: 0.85rem; }
  .ab-why-item { padding: 1.4rem 0; gap: 1.2rem; }

  /* Market + FAQ */
  .ab-market { padding: 4rem 0; }
  .ab-market-grid { gap: 2.5rem; }
  .ab-market-img { height: 280px; }
  .ab-market-img-badge { left: 1rem; bottom: 1rem; padding: 0.8rem 1.2rem; }
  .ab-mib-location { font-size: 0.9rem; }
  .ab-market-text { padding-left: 0; }
  .ab-faq-question { padding: 1.1rem 0; }
  .ab-faq-question span:first-child { font-size: 0.86rem; }
  .ab-faq-answer p { font-size: 0.84rem; }

  /* Headings */
  .ab-heading { font-size: clamp(1.8rem, 5vw, 2.4rem); }

  /* CTA */
  .ab-cta { padding: 6rem 0; }
  .ab-cta-heading { font-size: clamp(2rem, 6vw, 2.6rem); }
  .ab-cta-actions { flex-direction: column; gap: 1.5rem; align-items: center; }
  .ab-cta-btn-primary { width: 100%; max-width: 280px; text-align: center; }
}

/* ── Mobile portrait (≤ 576px) ────────────────── */
@media (max-width: 576px) {
  /* Hero */
  .ab-hero { min-height: 500px; }
  .ab-hero-content {
    padding: 3rem 1.2rem 3.5rem;
    justify-content: center;
    text-align: center;
    margin-top: -3rem;
  }
  .ab-hero-heading { font-size: clamp(2rem, 8vw, 2.4rem); }
  .ab-hero-sub { font-size: 0.84rem; max-width: 100%; }

  /* About */
  .ab-about { padding: 3.5rem 0 2rem; }
  .ab-about-visuals { height: 240px; }

  /* Why */
  .ab-why-inner { padding-top: 3rem; padding-bottom: 3rem; }
  .ab-why-heading { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .ab-why-check { width: 24px; height: 24px; font-size: 0.65rem; }

  /* Market */
  .ab-market { padding: 3rem 0; }
  .ab-market-img { height: 240px; }
  .ab-region-tags { gap: 0.5rem; }
  .ab-region-tag { font-size: 0.55rem; padding: 0.4rem 0.8rem; }

  /* Testimonials */
  .ab-testi-card { width: 260px; }

  /* Services */
  .ab-svc-body { padding: 1.6rem 1.4rem; }

  /* Section labels */
  .ab-section-label { font-size: 0.55rem; letter-spacing: 0.28em; }

  /* CTA */
  .ab-cta { padding: 5rem 0; }
  .ab-cta-sub { font-size: 0.88rem; }
}

/* ── Small phones (≤ 380px) ───────────────────── */
@media (max-width: 380px) {
  .ab-hero-content {
    padding: 2.5rem 1rem 3rem;
    justify-content: center;
    text-align: center;
    margin-top: -3rem;
  }
  .ab-hero-heading { font-size: clamp(1.7rem, 9vw, 2rem); }
  .ab-hero-pre { font-size: 0.5rem; }
  .ab-hero-sub { font-size: 0.8rem; }

  .ab-about-visuals { height: 200px; }
  .ab-heading { font-size: 1.7rem; }

  .ab-why-heading { font-size: 1.7rem; }
  .ab-why-item-text strong { font-size: 0.84rem; }
  .ab-why-item-text span { font-size: 0.78rem; }

  .ab-market-img { height: 200px; }
  .ab-faq-question span:first-child { font-size: 0.82rem; }
  .ab-faq-icon { width: 20px; height: 20px; }

  .ab-testi-card { width: 240px; padding: 1.4rem 1.2rem; }
  .ab-testi-quote { font-size: 0.9rem; }

  .ab-cta-heading { font-size: 1.7rem; }
  .ab-svc-body { padding: 1.4rem 1.2rem; }
}


/* ════════════════════════════════════════════════
   RAYMAN VENTURES — CONTACT PAGE
   contact.css  |  Black & White Premium Theme
════════════════════════════════════════════════ */

/* ── Active nav link ────────────────────────── */
.nav-link-active {
  color: var(--white-pure) !important;
}

/* ════════════════════════════════════════════════
   PAGE HERO / HEADER
════════════════════════════════════════════════ */
.cp-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 3rem 1.5rem 6rem;
  text-align: center;
  background: var(--black);
}

/* ── Contact Hero Background Image ─────── */
.cp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.cp-hero-bg img,
.cp-hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.32) grayscale(0.4);
}

.cp-hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,5,5,0.3) 0%,
    rgba(5,5,5,0.55) 100%
  );
}

.cp-abstracts {
  z-index: 1;
}

.cp-hero-content,
.cp-scroll-cue {
  position: relative;
  z-index: 2;
}

/* ── Abstract Layers ──────────────────────── */
.cp-abstracts {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Floating orbs */
.cp-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
  animation: cpOrbDrift 14s ease-in-out infinite alternate;
}

.cp-orb-1 {
  width: 520px;
  height: 520px;
  top: -160px;
  left: -140px;
  background: radial-gradient(circle, rgba(255,255,255,0.055) 0%, transparent 70%);
  animation-duration: 16s;
}

.cp-orb-2 {
  width: 380px;
  height: 380px;
  top: 40%;
  right: -100px;
  background: radial-gradient(circle, rgba(255,255,255,0.035) 0%, transparent 70%);
  animation-duration: 12s;
  animation-delay: -4s;
}

.cp-orb-3 {
  width: 280px;
  height: 280px;
  bottom: -60px;
  left: 35%;
  background: radial-gradient(circle, rgba(255,255,255,0.028) 0%, transparent 70%);
  animation-duration: 10s;
  animation-delay: -7s;
}

@keyframes cpOrbDrift {
  0%   { transform: translate(0, 0) scale(1);     }
  50%  { transform: translate(30px, -20px) scale(1.05); }
  100% { transform: translate(-20px, 30px) scale(0.97); }
}

/* SVG rings */
.cp-ring-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Corner accent lines */
.cp-corner-tl,
.cp-corner-br {
  position: absolute;
  width: 120px;
  height: 120px;
  pointer-events: none;
}
.cp-corner-tl { top: 80px; left: 32px; }
.cp-corner-br { bottom: 24px; right: 32px; transform: none; }

/* Dot grid */
.cp-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 40%, transparent 100%);
}

/* ── Breadcrumb ─────────────────────────────── */
.cp-breadcrumb {
  position: relative;
  z-index: 2;
  margin-bottom: 2.2rem;
}

.cp-breadcrumb ol {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.cp-breadcrumb li {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.cp-breadcrumb li a {
  color: rgba(255,255,255,0.38);
  transition: color var(--transition);
}

.cp-breadcrumb li a:hover {
  color: var(--white-pure);
}

.cp-bc-sep {
  color: rgba(255,255,255,0.2);
  font-size: 0.45rem;
}

.cp-bc-active {
  color: var(--white-pure);
}

/* ── Hero Content ───────────────────────────── */
.cp-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 3rem;
}

.cp-hero-pre {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 1.2rem;
}

.cp-hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 300;
  line-height: 1.12;
  background: linear-gradient(135deg, #b8860b 0%, #d4a942 25%, #f5e27c 55%, #c9a84c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.4rem;
}

.cp-hero-heading em {
  font-style: normal;
  color: rgba(255,255,255,0.55);
}

.cp-hero-sub {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(255,255,255,0.46);
  letter-spacing: 0.05em;
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Scroll cue */
.cp-scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cp-scroll-line {
  display: block;
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3));
  animation: cpScrollPulse 2s ease-in-out infinite;
}

@keyframes cpScrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1);    }
  50%       { opacity: 0.8; transform: scaleY(1.15); }
}

/* ════════════════════════════════════════════════
   CONTACT INFO STRIP
════════════════════════════════════════════════ */
.cp-info-strip {
  position: relative;
  z-index: 2;
  padding: 0;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.cp-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

/* spacer divs no longer needed */
.cp-info-rule {
  display: none;
}

.cp-info-card {
  padding: 3rem 2.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background var(--transition);
  cursor: default;
}

.cp-info-card:last-child {
  border-right: none;
}

.cp-info-card:hover {
  background: rgba(255,255,255,0.02);
}

/* Icon */
.cp-info-icon {
  width: 36px;
  height: 36px;
  color: rgba(255, 255, 255, 0.93);
  margin-bottom: 0.4rem;
  flex-shrink: 0;
}

.cp-info-icon svg {
  width: 100%;
  height: 100%;
}

/* Label */
.cp-info-label {
  font-family: var(--font-display);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.1rem;
}

/* Value */
.cp-info-value {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.9;
  font-style: normal;
  display: block;
}

.cp-info-link {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: color var(--transition);
}

.cp-info-link:hover {
  color: var(--white-pure);
}

.cp-info-link-sm {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.32);
  margin-top: -0.2rem;
}

.cp-info-link-sm:hover {
  color: rgba(255,255,255,0.72);
}

.cp-social-link {
  display: inline-flex !important;
  align-items: center;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.3s ease;
}

.cp-social-link:hover {
  color: #ffffff;
}

.cp-info-muted {
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
  display: block;
}

/* ════════════════════════════════════════════════
   MAIN: FORM + MAP
════════════════════════════════════════════════ */
.cp-main {
  position: relative;
  padding: 8rem 0 9rem;
  background: var(--black);
  overflow: hidden;
}

/* Abstract blobs */
.cp-main-abstracts {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cp-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.cp-blob-1 {
  width: 600px;
  height: 600px;
  top: -100px;
  right: -200px;
  background: radial-gradient(circle, rgba(255,255,255,0.032) 0%, transparent 65%);
}

.cp-blob-2 {
  width: 440px;
  height: 440px;
  bottom: -80px;
  left: -120px;
  background: radial-gradient(circle, rgba(255,255,255,0.025) 0%, transparent 65%);
}

.cp-main-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Grid layout */
.cp-main-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 5rem;
  align-items: stretch;
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 4rem;
}

/* ── Section label shared style ─────────────── */
.cp-section-label {
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  margin-bottom: 1.1rem;
}

/* ════════════════════════════════════════════════
   CONTACT FORM
════════════════════════════════════════════════ */
.cp-form-wrap {
  position: relative;
  background: rgba(255,255,255,0.022);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 3.5rem 3.2rem 3rem;
}

.cp-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, rgba(255,255,255,0.5), transparent 60%);
  pointer-events: none;
}

.cp-form-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 300;
  line-height: 1.18;
  background: linear-gradient(135deg, #b8860b 0%, #d4a942 25%, #f5e27c 55%, #c9a84c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.7rem;
}

.cp-form-sub {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 300;
  color: rgba(255,255,255,0.42);
  line-height: 1.7;
  margin-bottom: 2.6rem;
}

/* Form layout */
.cp-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.cp-field-group {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.cp-field-full {
  margin-bottom: 2rem;
}

/* Label */
.cp-label {
  font-family: var(--font-display);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.cp-field-group:focus-within .cp-label {
  color: var(--white-pure);
}

/* Input / Select / Textarea */
.cp-input {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.85rem 0.9rem;
  outline: none;
  width: 100%;
  transition: border-color var(--transition), background var(--transition);
  -webkit-appearance: none;
  appearance: none;
  border-radius: 2px;
}

.cp-input::placeholder {
  color: rgba(255,255,255,0.2);
}

.cp-input:focus {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.45);
  border-bottom-color: rgba(255,255,255,0.7);
}

/* Select arrow */
.cp-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(255,255,255,0.25)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.4rem center;
  padding-right: 1.4rem;
}

.cp-select option {
  background: var(--black-soft);
  color: var(--white);
}

/* ── Custom subject dropdown (replaces native <select> so the
      hovered option is black instead of the OS blue highlight) ── */
.cp-customselect {
  position: relative;
  width: 100%;
}

.cp-cs-trigger {
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.cp-cs-value.cp-cs-placeholder {
  color: rgba(255,255,255,0.2);
}

.cp-cs-list {
  list-style: none;
  margin: 0.4rem 0 0;
  padding: 0.35rem;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--black-soft);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.6);
  max-height: 280px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.cp-customselect.open .cp-cs-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cp-customselect.open .cp-cs-trigger {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.45);
  border-bottom-color: rgba(255,255,255,0.7);
}

.cp-cs-option {
  padding: 0.6rem 0.75rem;
  border-radius: 6px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

/* Black highlight on hover / keyboard focus / selected — no blue */
.cp-cs-option:hover,
.cp-cs-option.focused,
.cp-cs-option[aria-selected="true"] {
  background: #000000;
  color: #ffffff;
}

/* Animated underline */
.cp-field-line {
  display: none;
}

/* Textarea */
.cp-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.75;
}

/* Form footer */
.cp-form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin-top: 1.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* Submit button — matches site's btn-hero-primary style */
button.cp-submit-btn {
  all: unset;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  background: #ffffff;
  color: #050505;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.4s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  box-sizing: border-box;
}

button.cp-submit-btn:hover {
  background: #eeeeee;
  color: #050505;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,255,255,0.12);
}

button.cp-submit-btn:focus-visible {
  outline: 2px solid rgba(255,255,255,0.5);
  outline-offset: 3px;
}

button.cp-submit-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.cp-submit-text {
  display: inline-block;
}

.cp-submit-arrow {
  display: inline-block;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
  line-height: 1;
}

button.cp-submit-btn:hover .cp-submit-arrow {
  transform: translateX(4px);
}

/* Form note */
.cp-form-note {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.38);
  margin: 0;
}

.cp-form-note a {
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  transition: color var(--transition);
}

.cp-form-note a:hover {
  color: var(--white-pure);
}

/* Success message */
.cp-form-success {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.8rem;
  padding: 1rem 1.4rem;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white-pure);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  background: rgba(255,255,255,0.04);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.cp-form-success.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cp-form-success svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: rgba(255,255,255,0.5);
}

/* ════════════════════════════════════════════════
   MAP
════════════════════════════════════════════════ */
.cp-map-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

.cp-map-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.5), transparent 80%);
  pointer-events: none;
  z-index: 10;
}

.cp-map-inner {
  padding: 2.8rem 2.8rem 2rem;
}

.cp-map-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 300;
  background: linear-gradient(135deg, #b8860b 0%, #d4a942 25%, #f5e27c 55%, #c9a84c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.8rem;
  line-height: 1.18;
}

/* Map iframe frame */
.cp-map-frame {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 200px;
  overflow: hidden;
  background: var(--black-mid);
}

.cp-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  filter: grayscale(1) invert(1) brightness(0.82) contrast(0.9);
  transition: filter 0.5s ease;
}

.cp-map-frame:hover iframe {
  filter: grayscale(0.7) invert(1) brightness(0.9) contrast(0.92);
}

/* Corner accents on the map */
.cp-map-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none;
  z-index: 3;
}

.cp-map-corner-tl { top: -1px;  left: -1px;  border-top: 2px solid rgba(255,255,255,0.5); border-left: 2px solid rgba(255,255,255,0.5); }
.cp-map-corner-tr { top: -1px;  right: -1px; border-top: 2px solid rgba(255,255,255,0.5); border-right: 2px solid rgba(255,255,255,0.5); }
.cp-map-corner-bl { bottom: -1px; left: -1px;  border-bottom: 2px solid rgba(255,255,255,0.5); border-left: 2px solid rgba(255,255,255,0.5); }
.cp-map-corner-br { bottom: -1px; right: -1px; border-bottom: 2px solid rgba(255,255,255,0.5); border-right: 2px solid rgba(255,255,255,0.5); }

/* Address bar below map */
.cp-map-addr {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.4rem 2rem;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  flex-wrap: wrap;
}

.cp-map-addr-pin {
  flex-shrink: 0;
  color: rgba(255,255,255,0.3);
  margin-top: 0.2rem;
}

.cp-map-addr span {
  flex: 1;
}

.cp-map-directions {
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  border-bottom: 1px solid rgba(255,255,255,0.14);
  white-space: nowrap;
  align-self: center;
  transition: color var(--transition);
}

.cp-map-directions:hover {
  color: var(--white-pure);
}

/* ════════════════════════════════════════════════
   CONTACT PAGE — FAQ SECTION
════════════════════════════════════════════════ */
.cp-faq-section {
  background: var(--black);
  padding: 5rem 0 6rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ════════════════════════════════════════════════
   RESPONSIVE — CONTACT PAGE
════════════════════════════════════════════════ */

/* ── Large desktop (≤ 1200px) ─────────────────── */
@media (max-width: 1200px) {
  .cp-main-grid {
    padding: 0 2.5rem;
    gap: 3.5rem;
  }
}

/* ── Tablet landscape (≤ 1024px) ──────────────── */
@media (max-width: 1024px) {
  /* Info grid → 2 columns.
     nth-child counts .cp-info-rule siblings too (odd = card, even = rule) */
  .cp-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* 2nd card = nth-child(3): remove right border */
  .cp-info-card:nth-child(3) { border-right: none; }
  /* 3rd card = nth-child(5): add top border */
  .cp-info-card:nth-child(5) { border-top: 1px solid rgba(255,255,255,0.07); }
  /* 4th card = nth-child(7): add top border (right already none via :last-child) */
  .cp-info-card:nth-child(7) { border-top: 1px solid rgba(255,255,255,0.07); }

  .cp-main-grid {
    gap: 3rem;
    padding: 0 2rem;
  }

  .cp-map-frame {
    min-height: 300px;
  }
}

/* ── Tablet portrait / stacked (≤ 900px) ─────── */
@media (max-width: 900px) {
  .cp-hero {
    min-height: 45vh;
    padding: 8rem 2rem 5rem;
  }

  .cp-main {
    padding: 5rem 0 6rem;
  }

  .cp-main-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 1.5rem;
  }

  /* Map becomes aspect-ratio box; iframe fills it absolutely */
  .cp-map-frame {
    aspect-ratio: 16 / 7;
    min-height: 240px;
    flex: none;
  }

  .cp-map-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
  }
}

/* ── Mobile landscape / small tablet (≤ 767px) ── */
@media (max-width: 767px) {
  .cp-hero {
    padding: 7rem 1.5rem 4.5rem;
    min-height: 40vh;
  }

  .cp-hero-heading {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .cp-hero-sub {
    font-size: 0.85rem;
    max-width: 100%;
  }

  /* Info grid → 1 column, bordered rows */
  .cp-info-grid {
    grid-template-columns: 1fr;
  }

  .cp-info-card {
    padding: 2rem 1.8rem;
    border-right: none !important;
    border-top: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .cp-info-card:last-child { border-bottom: none; }

  /* Form rows → single column */
  .cp-form-row {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .cp-form-wrap {
    padding: 2rem 1.6rem 1.8rem;
  }

  .cp-map-inner {
    padding: 1.8rem 1.6rem 1.4rem;
  }

  .cp-main {
    padding: 4rem 0 5rem;
  }

  .cp-main-grid {
    padding: 0 1rem;
    gap: 2rem;
  }

  .cp-form-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

  button.cp-submit-btn {
    width: 100%;
    justify-content: center;
  }

  .cp-map-addr {
    flex-wrap: wrap;
    gap: 0.6rem;
    padding: 1.2rem 1.4rem;
  }

  .cp-map-directions { width: 100%; }

  .cp-map-frame {
    aspect-ratio: 16 / 8;
  }

  /* FAQ section */
  .cp-faq-section {
    padding: 3.5rem 0 4rem;
  }
}

/* ── Mobile portrait (≤ 576px) ────────────────── */
@media (max-width: 576px) {
  .cp-hero {
    padding: 6.5rem 1.2rem 4rem;
    min-height: 38vh;
  }

  .cp-hero-pre {
    font-size: 0.52rem;
    letter-spacing: 0.22em;
  }

  .cp-hero-heading {
    font-size: clamp(1.9rem, 7.5vw, 2.6rem);
  }

  .cp-hero-sub {
    font-size: 0.82rem;
  }

  .cp-info-card {
    padding: 1.8rem 1.4rem;
  }

  .cp-info-icon {
    width: 28px;
    height: 28px;
  }

  .cp-info-value {
    font-size: 0.84rem;
  }

  .cp-main {
    padding: 3.5rem 0 4rem;
  }

  .cp-main-grid {
    padding: 0 0.75rem;
    gap: 1.6rem;
  }

  .cp-form-wrap {
    padding: 1.8rem 1.2rem 1.6rem;
  }

  .cp-form-heading {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .cp-map-heading {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .cp-map-inner {
    padding: 1.6rem 1.2rem 1.2rem;
  }

  .cp-map-addr {
    padding: 1rem 1.2rem;
    font-size: 0.75rem;
  }

  .cp-map-frame {
    aspect-ratio: 4 / 3;
  }

  .cp-form-row {
    gap: 1.2rem;
  }

  .cp-input {
    font-size: 0.88rem;
    padding: 0.8rem 0.85rem;
  }

  /* FAQ section */
  .cp-faq-section {
    padding: 3rem 0 3.5rem;
  }
  .cp-faq-section .contact-heading {
    margin-bottom: 2rem !important;
  }
}

/* ── Small phones (≤ 430px) ───────────────────── */
@media (max-width: 430px) {
  .cp-hero {
    padding: 6rem 1rem 3.5rem;
  }

  .cp-hero-heading {
    font-size: clamp(1.75rem, 8.5vw, 2.2rem);
  }

  .cp-form-wrap {
    padding: 1.5rem 1rem 1.2rem;
  }

  .cp-map-inner {
    padding: 1.4rem 1rem 1rem;
  }

  .cp-info-card {
    padding: 1.5rem 1.2rem;
  }

  .cp-map-addr {
    padding: 0.9rem 1rem;
    font-size: 0.72rem;
  }

  button.cp-submit-btn {
    padding: 0.9rem 1.5rem;
    font-size: 0.68rem;
  }
}

/* ── Very small phones (≤ 360px) ──────────────── */
@media (max-width: 360px) {
  .cp-hero {
    padding: 5.5rem 0.9rem 3rem;
  }

  .cp-hero-heading {
    font-size: clamp(1.6rem, 9vw, 2rem);
  }

  .cp-form-wrap {
    padding: 1.2rem 0.9rem 1rem;
  }

  .cp-map-inner {
    padding: 1.2rem 0.9rem 0.9rem;
  }

  .cp-info-card {
    padding: 1.3rem 1rem;
  }

  .cp-input {
    font-size: 0.82rem;
    padding: 0.7rem 0.75rem;
  }

  .cp-main-grid {
    padding: 0 0.5rem;
  }
}
