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

:root {
  --bg: #f5f1ea;
  --honey: #c8b477;
  --honey-bright: #c8b477;
  --sand: #e6dcc8;
  --linen: #f5f1ea;
  --linen2: #ede8df;
  --tan: #f1ebe0;
  --tan2: #b8a88e;
  --gray1: #1a1a1a;
  --gray2: #2a2826;
  --dim1: #9b7f36;
  --dim2: #7a7a7a;
  --dim3: #1a1a1a;
  --slate: #3d4f4f;
  --grad: #191813;
  --ticket: #f4f0e7;
  --gold: #9b7f36;
  --gold-light: #d4c6a0;
  --text: #1f1c17;
  --section-padding: 60px;
  --section-padding-mobile: 56px;
  --side-padding: 120px;
  --side-padding-mobile: 40px;
  --content-max-width: 1400px;
  --smooth-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --smooth-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  width: 100%;
  background: var(--grad);
  color: var(--tan);
  font-family: "Jost", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
}

/* ══════════════════ CUSTOM CURSOR ══════════════════ */
#cursorGlow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9996;
  transition: opacity 0.4s;
  mix-blend-mode: screen;
}

.cursor-dot {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--honey);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10000;
  transition:
    width 0.3s var(--smooth-ease),
    height 0.3s var(--smooth-ease),
    opacity 0.3s ease,
    background 0.3s ease;
  will-change: transform;
}

.cursor-ring {
  position: fixed;
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(200, 180, 119, 0.55);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition:
    width 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    opacity 0.35s ease;
  will-change: transform;
}

.cursor-dot.hovering {
  width: 0;
  height: 0;
  opacity: 0;
}

.cursor-ring.hovering {
  width: 56px;
  height: 56px;
  border-color: var(--honey);
  border-width: 1.5px;
}

@media (hover: none) {
  .cursor-dot,
  .cursor-ring,
  #cursorGlow {
    display: none;
  }
  body {
    cursor: auto;
  }
}

/* ══════════════════ SCROLL REVEAL ══════════════════ */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  will-change: opacity, transform;
}

.reveal {
  opacity: 0;
  transform: translateY(60px);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 1.2s var(--smooth-ease-out),
    transform 1.2s var(--smooth-ease-out);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-70px);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 1.2s var(--smooth-ease-out),
    transform 1.2s var(--smooth-ease-out);
}

.reveal-right {
  opacity: 0;
  transform: translateX(70px);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 1.2s var(--smooth-ease-out),
    transform 1.2s var(--smooth-ease-out);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9) translateY(30px);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition:
    opacity 1.1s var(--smooth-ease-out),
    transform 1.1s var(--smooth-ease-out);
}

.stagger > * {
  opacity: 0;
  transform: translateY(40px);
  will-change: opacity, transform;
}
.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.9s var(--smooth-ease-out),
    transform 0.9s var(--smooth-ease-out);
}
.stagger.visible > *:nth-child(1) {
  transition-delay: 0s;
}
.stagger.visible > *:nth-child(2) {
  transition-delay: 0.08s;
}
.stagger.visible > *:nth-child(3) {
  transition-delay: 0.16s;
}
.stagger.visible > *:nth-child(4) {
  transition-delay: 0.24s;
}
.stagger.visible > *:nth-child(5) {
  transition-delay: 0.32s;
}
.stagger.visible > *:nth-child(6) {
  transition-delay: 0.4s;
}
.stagger.visible > *:nth-child(7) {
  transition-delay: 0.48s;
}
.stagger.visible > *:nth-child(8) {
  transition-delay: 0.56s;
}
.stagger.visible > *:nth-child(9) {
  transition-delay: 0.64s;
}
.stagger.visible > *:nth-child(10) {
  transition-delay: 0.72s;
}
.stagger.visible > *:nth-child(11) {
  transition-delay: 0.8s;
}
.stagger.visible > *:nth-child(12) {
  transition-delay: 0.88s;
}

/* ══════════════════ NAV ══════════════════ */
nav {
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--side-padding);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(212, 169, 55, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    box-shadow 0.5s var(--smooth-ease),
    background 0.5s var(--smooth-ease);
}
nav.scrolled {
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.15);
  background: rgba(241, 235, 224, 0.95);
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-stamp {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s var(--smooth-ease);
  overflow: hidden;
}
.logo-stamp:hover {
  transform: rotate(25deg) scale(1.1);
}
.logo-stamp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.logo-text {
  color: #191813;
  font-family: Jost;
  font-size: 24px;
  font-weight: 500;
}
.logo-text span {
  color: #9b7f36;
  font-family: Jost;
  font-size: 24px;
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 70px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-family: "Jost", sans-serif;
  position: relative;
  padding-bottom: 4px;
  color: #191813;
  font-size: 20px;
  font-weight: 400;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--honey);
  transition: width 0.4s var(--smooth-ease);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a:hover {
  color: #9b7f36;
}

/* ══════════════════ HERO ══════════════════ */
.s-hero {
  background: var(--grad);
  padding: var(--section-padding) var(--side-padding);
  min-height: 700px;
  display: flex;
  align-items: center;
  gap: 56px;
  position: relative;
  overflow: hidden;
}
.s-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

@keyframes glow-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.hero-left {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  opacity: 0;
  transform: translateX(-40px);
  animation: fadeInLeft 1s 0.3s var(--smooth-ease-out) forwards;
  text-transform: uppercase;
   animation-play-state: paused; 
}
.hero-h1 {
  opacity: 0;
  transform: translateY(35px);
  animation: fadeInUp 1s 0.5s var(--smooth-ease-out) forwards;
  animation-play-state: paused;
}
.hero-sub {
  opacity: 0;
  transform: translateY(35px);
  animation: fadeInUp 1s 0.7s var(--smooth-ease-out) forwards;
  animation-play-state: paused;
}
.hero-btns {
  opacity: 0;
  transform: translateY(35px);
  animation: fadeInUp 1s 0.9s var(--smooth-ease-out) forwards;
   animation-play-state: paused;
}
/* once the splash is gone, let them actually play */
body.intro-done .hero-eyebrow,
body.intro-done .hero-h1,
body.intro-done .hero-sub,
body.intro-done .hero-btns {
  animation-play-state: running;
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-eyebrow .eyebrow-line {
  background: #c8b477;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
}
.eyebrow-line {
  width: 48px;
  height: 2px;
  background: var(--dim1);
  flex-shrink: 0;
}
.eyebrow-text {
  color: #c8b477;
  font-family: Jost;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.44px;
}

.hero-h1 {
  font-family: "Playfair Display", serif;
  font-size: 68px;
  line-height: 1.35;
  font-weight: 600;
  color: var(--tan);
}
.hero-h1 em {
  color: #c8b477;
  font-style: italic;
}

.hero-sub {
  font-size: 18px;
  max-width: 700px;
  color: #c7b58a;
  font-family: "Jost", sans-serif;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  border: 1px solid var(--honey);
  padding: 10px 20px;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-family: "Jost", sans-serif;
  color: var(--honey);
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
}
.btn-primary::before {
  content: "";
  position: absolute;
  width: 300%;
  height: 300%;
  background: var(--honey);
  border-radius: 50%;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease;
  z-index: -1;
}
.btn-primary:hover::before {
  transform: translate(-50%, -50%) scale(1);
}
.btn-primary:hover {
  color: #000;
}

.hero-right {
  position: absolute;
  right: -180px;
}
.stamp-img {
  width: 600px;
  will-change: transform;
  animation: float 8s ease-in-out infinite;
}

/* ══════════════════ REGION ══════════════════ */
.s-region {
  background: var(--bg);
  padding: var(--section-padding) var(--side-padding);
}
.region-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.region-eyebrow .eyebrow-line {
  background: var(--dim1);
}
.region-eyebrow .eyebrow-text {
  color: var(--dim1);
}

.region-headline {
  color: #191813;
  font-family: "Playfair Display";
  font-size: 60px;
  font-weight: 500;
  line-height: normal;
}
.region-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.region-col-body {
  font-family: "jost";
  font-size: 20px;
  font-weight: 400;
  color: var(--dim3);
  line-height: 1.75;
  max-width: 460px;
  margin-top: 20px;
}
.region-col-body em {
  font-style: italic;
  font-family: "Playfair Display";
  font-weight: 600;
  color: #1a1a1a;
}

/* ══════════════════ AIRPORTS ══════════════════ */
.s-airports {
  background: var(--grad);
  padding: var(--section-padding) var(--side-padding);
  padding-top: 80px;
}
.airports-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 56px;
}
.airports-eyebrow .eyebrow-line {
  height: 1px;
  background: var(--honey);
  flex: 1;
}
.airports-eyebrow .eyebrow-text {
  color: var(--honey);
}
.section-gap {
  height: 60px; /* adjust */
  background: var(--bg);
}
.airports-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.airport-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
  border-right: 2px solid #706644;
  text-align: center;
  transition:
    background 0.4s ease,
    transform 0.4s var(--smooth-ease);
  cursor: none;
  position: relative;
}
.airport-cell:hover {
  /* transform: translateY(-6px); */
}
.airport-cell:nth-child(6) {
  border-right: none;
}
.airport-cell:nth-child(7),
.airport-cell:nth-child(8),
.airport-cell:nth-child(9),
.airport-cell:nth-child(10),
.airport-cell:nth-child(11) {
  border-top: 2px solid #706644;
}
.airport-cell:last-child {
  border-right: none;
  border-top: 2px solid #706644;
}

.airport-code {
  color: #c8b477;
  font-family: "Playfair Display";
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 12px;
  transition:
    transform 0.4s var(--smooth-ease),
    color 0.35s ease;
}
.airport-cell:hover .airport-code {
  transform: scale(1.12);
  color: var(--honey-bright);
}
.airport-divider {
  width: 36px;
  height: 2px;
  background: var(--honey);
  margin: 0 auto 12px;
  opacity: 0.65;
}
.airport-name {
  color: #c8b477;
  font-family: "Jost";
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* ══════════════════ WHAT WE DO ══════════════════ */
.s-what {
  background: var(--grad);
  padding: var(--section-padding) 0;
  margin-bottom: 80px;
}
.what-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 0 var(--side-padding);
}
.what-eyebrow-text {
  font-family: "Jost", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--honey);
}
.what-header {
  padding: 0 var(--side-padding);
  margin-bottom: 48px;
}
.what-headline {
  color: #c8b477;
  font-family: "Playfair Display";
  font-size: 60px;
  font-weight: 600;
  line-height: normal;
}

/* Grid with inset margin — not glued to edges */
.what-grid {
  background: #191813;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 var(--side-padding);
  border: none;
  border-top: 1px dashed rgba(200, 180, 119, 0.35);
}

.what-card {
  background: var(--grad);
  border-right: none;
  border-bottom: none;
  padding: 60px 56px 64px;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: grid;
  flex-direction: column;
  justify-content: flex-end;
  cursor: none;
}
/* Crosshair dividers: vertical between the two columns, horizontal between the two rows */
.what-card:nth-child(2n + 1) {
  border-right: 1px solid rgba(155, 127, 54, 0.55);
}
.what-card:nth-child(1),
.what-card:nth-child(2) {
  border-bottom: 1px solid rgba(155, 127, 54, 0.55);
}

/* Bottom bar animation on hover */
.what-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--honey), transparent);
  opacity: 0;
  transition:
    width 0.6s var(--smooth-ease),
    opacity 0.4s ease;
}
.what-card:hover::after {
  width: 80%;
  opacity: 1;
}

/* Left side vertical bar animation */
.what-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 2px;
  height: 0%;
  background: var(--honey);
  opacity: 0;
  transition:
    height 0.5s var(--smooth-ease),
    top 0.5s var(--smooth-ease),
    opacity 0.3s ease;
}

.what-card-inner {
  /* position: relative; */
  display: flex;
  flex-direction: column;
  transform: translateY(40px);
  transition: transform 0.7s var(--smooth-ease-out);
  will-change: transform;
}
.what-card:hover .what-card-inner {
  transform: translateY(0);
}

.what-card-num {
  color: #f1ebe0;
  font-family: "Playfair Display";
  font-size: 32px;
  font-style: italic;
  font-weight: 600;
  line-height: normal;
}
.what-card-title {
  color: #f1ebe0;
  font-family: "Playfair Display";
  font-size: 41px;
  font-weight: 600;
  line-height: normal;
}
.what-card-body {
  
  font-family: "Jost", sans-serif;
  font-size: 16px;
  color: var(--bg);
  line-height: 1.75;
  max-width: 500px;
  margin-top: 20px;
   /* min-height: 84px; */
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s 0.15s var(--smooth-ease-out),
    transform 0.55s 0.15s var(--smooth-ease-out);
  will-change: opacity, transform;
}
.what-card:hover .what-card-body {
  opacity: 1;
  transform: translateY(0);
}
.what-card:hover .what-card-title {
  color: var(--honey);
}
.what-card:hover .what-card-num {
  color: var(--honey);
}

/* ══════════════════ QUOTE ══════════════════ */
.s-quote {
  background: var(--grad);
  /* background: url("../public/images/WEB/Quote.png") center no-repeat; */
  padding: 150px var(--side-padding);
  text-align: center;
  position: relative;
  height: 570px;
  overflow: hidden;
}

.s-quote::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: linear-gradient(to left, #2a2826 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.s-quote::after {
  display: none;
}
.quote-text {
  color: #c8b477;
  font-family: "Playfair Display";
  font-size: 72px;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 45px;
  position: relative;
  z-index: 2;
}
.quote-sub {
  color: #f1ebe0;
  text-align: center;
  font-family: "Jost";
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  position: relative;
  z-index: 2;
  max-width: 740px;
  margin: 0 auto;
}

/* ══════════════════ LETTER ══════════════════ */
.s-letter {
  background: #191813;
  padding: var(--section-padding) var(--side-padding);
}
.letter-eyebrow {
  font-family: "Jost", sans-serif;
  font-size: 21px;
  font-weight: 400;
  color: var(--honey);
  margin-bottom: 40px;
  letter-spacing: 0.04em;
  text-align: left;
  margin-left: 0; /* ← was 229px, remove the fixed offset */
}

.letter-card {
  max-width: 100%; /* ← was 1000px, now full width */
  margin: 0 auto;
  background: var(--linen);
  border-radius: 6px;
  padding: 80px 100px 80px 88px; /* ← more padding, especially top */
  position: relative;
  border: 3px solid transparent;
  background-clip: padding-box;
  transition:
    transform 0.6s var(--smooth-ease),
    box-shadow 0.6s ease;
}
.letter-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
}
.letter-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 6px;
  padding: 10px;
  background: repeating-linear-gradient(
    -45deg,
    #c0392b 0px,
    #c0392b 10px,
    #fff 10px,
    #fff 18px,
    #2c3a6b 18px,
    #2c3a6b 28px,
    #fff 28px,
    #fff 36px
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.letter-stamp {
  position: absolute;
  top: 36px;
  right: 56px;
  width: 86px;
  height: 86px;
  border: 2px solid var(--honey);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.letter-stamp img {
  width: 86px;
  height: 86px;
}
.letter-stamp-text {
  font-family: "Jost", sans-serif;
  font-size: 7px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--honey);
  text-align: center;
}
.letter-salutation {
  font-family: "Pinyon Script", cursive;
  font-size: 56px;
  color: #b23a2e;
  margin-bottom: 32px;
}
.letter-body .char {
  color: #000;
}

.letter-salutation .char,
.letter-body .char,
.letter-sign .char {
  opacity: 0;
  display: inline;
  transition: opacity 0.15s ease;
}
.ink-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--sienna);
  vertical-align: middle;
  margin-left: 1px;
  opacity: 0;
  animation: blink-cursor 0.6s step-end infinite;
}
.ink-cursor.active {
  opacity: 1;
}
@keyframes blink-cursor {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.letter-body {
  color: #191813;
  line-height: 1.7;
  max-width: 820px;
  margin-bottom: 44px;
  font-family: " Playfair Display";
  font-weight: 500;
  font-style: Italic;
  font-size: 24px;
  leading-trim: NONE;

  letter-spacing: 0%;
}
.letter-sign {
  font-family: "Pinyon Script", cursive;
  font-size: 44px;
  color: #b23a2e;
}
.letter-stamp-bottom {
  position: absolute;
  bottom: 36px;
  right: 56px;
  text-align: right;
}
.letter-stamp-bottom p {
  font-family: "Jost", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim1);
  line-height: 1.9;
}

/* ══════════════════ PARTNERS — STICKY STACKING CARDS ══════════════════ */
/* Uses these root vars from styles.css: --bg, --sand, --honey, --dim1,
   --section-padding, --side-padding. Safe defaults provided below. */
.s-partners {
  --partners-nav-offset: 106px;
  --partners-header-height: 88px;
  --partners-stack-base-top: calc(
    var(--partners-nav-offset) + var(--partners-header-height) + 16px
  );
  --partners-stack-step: 132px;
  --partners-bar-gap: 6px;
  --partners-stack-bottom-gap: 50px;
  background: var(--bg, #f5f1ea);
  width: 100%;
  padding: var(--section-padding, 60px) var(--side-padding, 120px);
  position: relative;
}
/* Eyebrow header sticks above the cards */
.partners-sticky-card__header {
  position: sticky;
  top: var(--partners-nav-offset);
  z-index: 30;
  background: var(--bg, #f5f1ea);
  padding-bottom: 16px;
  isolation: isolate;
}
.partners-sticky-card__header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 16px;
  background: linear-gradient(to bottom, var(--bg, #f5f1ea) 40%, transparent);
  pointer-events: none;
}
.partners-label  {
  font-family: "jost";
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color:  #9b7f36;
  display: flex;
  align-items: center;
  gap: 16px;
}
.partners-label .eyebrow-text{
   color:  #9b7f36;
}
.partners-label .eyebrow-line {
  width: 36px;
  height: 2px;
  background: currentColor;
  opacity: 0.6;
}
/* Sticky stack */
.partners-sticky-card {
  position: relative;
}
.s-partners,
.partners-sticky-card {
  transform: none !important;
  overflow: visible !important;
}
.partners-sticky-card__list {
  position: relative;
  padding-bottom: 12vh;
}
.partners-sticky-card__list-item {
  position: sticky;
  overflow: hidden;
  background: var(--sand, #e6dcc8);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.5s ease;
  box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.04);
}
.partners-sticky-card__list-item--1 {
  top: var(--partners-stack-base-top);
  height: calc(
    100vh - var(--partners-stack-base-top) - var(--partners-stack-bottom-gap)
  );
  z-index: 1;
}
.partners-sticky-card__list-item--2 {
  top: calc(
    var(--partners-stack-base-top) + var(--partners-stack-step) +
      var(--partners-bar-gap)
  );
  height: calc(
    100vh - var(--partners-stack-base-top) - var(--partners-stack-step) -
      var(--partners-bar-gap) - var(--partners-stack-bottom-gap)
  );
  z-index: 2;
}
.partners-sticky-card__list-item--3 {
  top: calc(
    var(--partners-stack-base-top) + 2 *
      (var(--partners-stack-step) + var(--partners-bar-gap))
  );
  height: calc(
    100vh - var(--partners-stack-base-top) - 2 *
      (var(--partners-stack-step) + var(--partners-bar-gap)) -
      var(--partners-stack-bottom-gap)
  );
  z-index: 3;
}
/* The title bar that stays visible when stacked */
.partners-sticky-card__list-item-bar {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  background: var(--sand, #e6dcc8);
  padding: 36px 48px 20px;
}
/* The body (desc + logos) revealed as the card scrolls up */
.partners-sticky-card__list-item-content {
  /* flex: 1; */
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 25px;
  padding: 24px 48px 40px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.partners-sticky-card__list-item-content::-webkit-scrollbar {
  display: none;
}

/* Typography */
.partner-name {
  color: #1b1b1b;
  font-family: "Playfair Display", serif;
  font-size: 64px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
}
.partner-desc {
  color: #1b1b1b;
  font-family: "jost";
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 980px;
}
/* Logo row pinned to bottom of card */
.partner-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px 40px;
  margin-top: auto;
}
.partner-logos img {
  height: 90px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
/* ══════════════════ TABLET ══════════════════ */
/* @media (max-width: 1024px) { */
.partner-name {
  font-size: 48px;
}
.partners-sticky-card__list-item-bar {
  padding: 28px 32px 16px !important;
}
.partners-sticky-card__list-item-content {
  padding: 20px 32px 32px !important;
}
/* .partner-logos img {
  height: 48px !important;
  max-width: 120px !important;
} */
/* } */
/* ══════════════════ MOBILE — stop sticking, stack normally ══════════════════ */
@media (max-width: 768px) {
  .s-partners {
    --partners-stack-base-top: 0 !important;
    --partners-stack-step: 0 !important;
    --partners-stack-bottom-gap: 0 !important;
  }

  /* Force non-sticky layout (already in your code, but keep it) */
  .partners-sticky-card__list-item,
  .partners-sticky-card__list-item--1,
  .partners-sticky-card__list-item--2,
  .partners-sticky-card__list-item--3 {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    overflow: visible !important;
    margin-bottom: 16px !important;
  }
  .partners-sticky-card__header {
    position: static;
    padding: 0;
  }
  .partners-sticky-card__header::after {
    display: none;
  }
  .partners-label {
    margin-bottom: 28px;
  }
  .partners-sticky-card__list {
    padding-bottom: 0;
  }
  .partners-sticky-card__list-item {
    position: relative;
    top: auto;
    height: auto;
    margin-bottom: 16px;
    overflow: visible;
    border-radius: 14px;
  }
  .partners-sticky-card__list-item-bar {
    padding: 24px 22px 0;
  }
  .partners-sticky-card__list-item-content {
    padding: 14px 22px 28px;
    overflow: visible;
    gap: 20px;
  }
  .partner-name {
    font-size: 36px;
  }
  .partner-desc {
    font-size: 15px;
  }
  .partner-logos {
    gap: 20px 28px;
  }
  .partner-logos img {
    height: 40px;
    max-width: 100px;
  }
  @media (prefers-reduced-motion: no-preference) {
  .hero-eyebrow, .hero-h1, .hero-sub, .hero-btns {
    animation-play-state: running; /* fallback default */
  }
}
body.intro-done .hero-eyebrow,
body.intro-done .hero-h1,
body.intro-done .hero-sub,
body.intro-done .hero-btns {
  animation-play-state: running;
}
}
@media (max-width: 500px) {
  .partner-name {
    font-size: 30px;
  }
  .partner-desc {
    font-size: 14px;
  }
  .partner-logos img {
    height: 34px;
    max-width: 90px;
  }
  .partners-sticky-card__list-item.reveal {
    overflow: visible !important;
  }

  .partners-sticky-card__list-item.reveal.visible {
    overflow: hidden !important;
  }
}
@media (max-width: 800px) {
  .partners-sticky-card__list-item {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    margin-bottom: 20px !important;
    overflow: visible !important;
  }
}






/* ══════════════════ TEAM ══════════════════ */
.s-team {
  background: var(--linen);
  padding: var(--section-padding) var(--side-padding);
}
.team-label {
  color: #9b7f36;
  font-family: "Jost";
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.44px;
  margin-bottom: 20px;
  text-transform: uppercase;
  display: flex;
  gap: 16px;
  align-items: center;
}
.team-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 96px;
}
.team-headline {
  font-family: "Playfair Display", serif;
  font-size: 68px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.06;
}
.team-sub {
  font-family: "Jost", sans-serif;
  font-size: 18px;
  color: #191813;
  line-height: 1.75;
  max-width: 520px;
  padding-top: 10px;
}
.team-sub em {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 700;
  color: #191813;
}
.founders-label,
.team-grid-label {
  color: #9b7f36;
  text-align: center;
  font-family: "Jost";
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.44px;
  margin-bottom: 56px;
  text-transform: uppercase;
}
.founders-row {
  display: flex;
  gap: 140px;
  margin-bottom: 100px;
  flex-wrap: wrap;
  justify-content: center;
}
.founder-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.founder-photo-placeholder {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: var(--gray2);
  border: 2.5px solid var(--honey);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition:
    transform 0.5s var(--smooth-ease),
    box-shadow 0.5s ease;
}
.founder-photo-placeholder:hover {
  transform: scale(1.06) translateY(-8px);
  box-shadow: rgba(155, 127, 54, 0.25) 0px 20px 80px;
  border-color: var(--honey);
}
.founder-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-name {
  color: #191813;

  font-family: "Playfair Display";
  font-size: 47px;
  font-weight: 500;
  line-height: normal;
}
.founder-role {
  color: #7a6243;
  font-family: Jost;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.founder-connect {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  width: fit-content;
  color: #9b7f36;
  font-family: "Jost";
  font-size: 14px;
  font-weight: 500;
  cursor: none;
}
.founder-connect a {
  text-decoration: none;
}

.founder-connect::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background: #9b7f36;
}

.founder-connect:hover::after {
  width: 100%;
}

.founder-connect:hover {
  gap: 10px; /* icon move na ho */
  text-decoration: none; /* remove old underline */
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 56px 32px;
}
.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.member-photo {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: var(--gray2);
  border: 2.5px solid var(--honey);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition:
    transform 0.45s var(--smooth-ease),
    box-shadow 0.45s ease,
    border-color 0.35s ease;
}
.member-photo:hover {
  transform: scale(1.08) translateY(-6px);
  box-shadow: 0 20px 80px rgba(155, 127, 54, 0.25);
  border-color: var(--honey);
}
.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: filter 0.4s ease;
}
.member-photo:hover img {
  filter: grayscale(0%);
}

.member-name {
  color: #000;
  font-family: "Playfair Display";
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
}
.member-role {
  color: #7a6243;
  font-family: Jost;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: -4px;
}

/* ══════════════════ BOARDING PASS ══════════════════ */
.join-ticket-section {
  background: #f1ebe0;
  padding: var(--section-padding) var(--side-padding);
}
.ticket {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 320px;
  background: #f1ebe0;
  border: 1.5px solid #b5964c;

  min-height: 520px;
  overflow: visible;
  transition:
    box-shadow 0.5s var(--smooth-ease),
    transform 0.5s var(--smooth-ease);
}
.ticket:hover {
  /* box-shadow: 0 28px 90px rgba(181, 150, 76, 0.25); */
  transform: translateY(-6px);
}
.ticket::before {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  left: -55px;
  top: 50%;
  transform: translateY(-50%);
  background: #f1ebe0;
  border: 1.5px solid #b5964c;
  border-radius: 50%;
  z-index: 2;
}
.ticket::after {
  content: "";
  position: absolute;
  width: 55px;
  height: 112px;
  left: -56px;
  top: calc(50% - 56px);
  background: #f1ebe0;
  z-index: 3;
}
.ticket-notch {
  position: absolute;
  width: 110px;
  height: 110px;
  left: -55px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #f1ebe0;
  border: 2px solid rgba(181, 150, 76, 0.8);
}
.ticket-main {
  padding: 44px 60px;
  display: flex;
  flex-direction: column;
}
.ticket-top {
  display: flex;
  justify-content: space-between;
}
.ticket-label {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.08em;
  font-weight: 600;
  display: flex;
  gap: 6px;
}
.ticket-label img {
  width: 24px;
  height: 24px;
}
.ticket-meta {
  display: flex;
  gap: 56px;
}
.ticket-meta span {
  display: block;
  color: #c8b477;
  font-family: "Jost";
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}
.ticket-meta strong {
  display: block;
  margin-top: 2px;
  font-size: 14px;
  color: #c4b38b;
  letter-spacing: 0.08em;
}
.ticket-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.ticket-center h2 {
  color: #191813;
  font-family: "Playfair Display";
  font-size: 48px;
  font-style: italic;
  font-weight: 600;
  margin-bottom: 12px;
}
.ticket-center p {
  color: #191813;
  font-family: "Jost";
  font-size: 20px;
  font-weight: 400;
  max-width: 580px;
}
.ticket-line {
  position: relative;
  margin: 12px 0 44px;
  text-align: center;
}
.ticket-line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 2px dashed #cbb783;
}
.ticket-line span img {
  position: relative;
  background: #f1ebe0;
  color: var(--gold);
  padding: 0 20px;
  font-size: 24px;
}

.ticket-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.ticket-bottom button {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
  background: transparent;
  border: 1.5px solid #9b7f36;
  color: #9b7f36;
  padding: 16px 36px;
  font-size: 18px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: none;
  width: 106;
  height: 41;
  border-width: 1px;
  angle: 0 deg;
  opacity: 1;
  gap: 8px;
  padding-top: 6px;
  padding-right: 8px;
  padding-bottom: 6px;
  padding-left: 8px;
}
.ticket-bottom button::before {
  content: "";
  position: absolute;
  width: 300%;
  height: 300%;
  background: var(--honey);
  border-radius: 50%;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease;
  z-index: -1;
}

.ticket-bottom button:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.ticket-bottom button:hover {
  color: #000;
}

.ticket-bottom span {
  display: block;
  color: #c8b477;
  font-size: 11px;
  letter-spacing: 0.14em;
}
.ticket-bottom strong {
  display: block;
  margin-top: 5px;
  color: #c8b477;
  font-size: 14px;
}
.ticket-bottom div:last-child {
  text-align: right;
}

.ticket-stub {
  position: relative;
  border-left: 2px dashed rgba(181, 150, 76, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 32px; /* fixed equal gap */
  padding: 40px 48px;
  align-self: stretch;
}
.ticket-stub > div {
  flex-shrink: 0;
}
.dxb {
  color: #e9e1d2;
  font-family: "Jost";
  font-size: 84px;
  font-weight: 400;
  text-align: center;
  margin: 0;
  height: 100px;
  display: flex;
  align-items: center;
}
.barcode {
  margin: 0; /* remove top margin so space-between drives spacing */
  display: flex;
  gap: 9px;
}

.barcode span {
  width: 11px;
  height: 120px;
  background: #e6dece;
}
.barcode span:nth-child(3),
.barcode span:nth-child(6) {
  width: 22px;
}

.seal {
  margin: 0; /* remove top margin */
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 32px;
  transition: transform 0.5s var(--smooth-ease);
}
.seal img {
  width: 100px;
  height: 100px;
}
.seal:hover {
  transform: rotate(25deg) scale(1.1);
}

.welcome {
  margin: 0; /* let space-between handle the gap */
  color: var(--gold);
  letter-spacing: 0.12em;
  font-size: 14px;
  display: flex;
  gap: 10px;
}
.welcome span img {
  height: 20px;
  width: 20px;
}

/* ══════════════════ CONTACT ══════════════════ */
.s-contact {
  background: var(--bg);
  padding: 80px var(--side-padding) 100px;
}
.contact-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-eyebrow {
  color: #9b7f36;
  margin-bottom: 30px;
  font-family: "Jost";
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-eyebrow-dash {
  display: none;
}

.contact-top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 130px;
  align-items: start;
  margin-bottom: 56px;
}
.contact-headline {
  font-family: "Playfair Display", serif;
  font-size: 52px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.1;
}
.contact-intro {
  color: #191813;
  font-family: Jost;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
}
.contact-right {
  padding-top: 0;
}
.contact-form-wrapper {
  max-width: 660px;
}
.contact-form {
  display: flex;
  flex-direction: column;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 80px;
  row-gap: 0;
  max-width: 100%;
}
.contact-field--full {
  grid-column: 1 / -1;
  margin-bottom: 12px;
  max-width: 100%;
}
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #191813;
  margin-bottom: 36px;
  position: relative;
  border-right: none;
  padding-right: 0;
  padding-left: 0;
}
.contact-field:nth-child(odd),
.contact-field:nth-child(even) {
  padding-right: 0;
  padding-left: 0;
  border-right: none;
}
.contact-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  margin-top: 8px;
  max-width: 100%;
}

.contact-bar-email,
.contact-bar-city {
  color: #191813;
  font-family: "Jost";
  font-size: 20px;
  font-weight: 400;
}
.contact-bar-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact-bar-icons a {
  color: var(--gray1);
  display: flex;
  align-items: center;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}
.contact-bar-icons a:hover {
  color: var(--honey);
  transform: translateY(-2px);
}
.contact-field label {
  color: #000;
  font-family: Jost;
  font-size: 15px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 1.6px;
}
.contact-field input,
.contact-field textarea {
  background: transparent;
  border: none;
  padding: 0;
  font-family: "Jost", sans-serif;
  font-size: 15px;
  color: var(--gray1);
  outline: none;
  resize: none;
  width: 100%;
}
.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(26, 26, 26, 0.25);
  font-weight: 300;
}
.contact-field textarea {
  min-height: 36px;
  line-height: 1.65;
}
.contact-field::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--honey);
  transition: width 0.5s var(--smooth-ease);
}
.contact-field:focus-within::after {
  width: 100%;
}
.contact-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
}
.contact-email-link {
  font-family: "Jost", sans-serif;
  font-size: 13px;
  color: var(--honey);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.25s ease;
}
.contact-email-link:hover {
  color: var(--gray1);
}

.btn-send {
  background: transparent;
  border: none;
  padding: 0;
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #9b7f36;
  cursor: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  transition:
    color 0.3s ease,
    letter-spacing 0.4s ease,
    transform 0.35s var(--smooth-ease);
}
.btn-send::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #9b7f36;
}

.btn-send:hover::after {
  width: 100%; /* spans text + icon together */
}

.btn-send:hover {
  text-decoration: none; /* remove the old underline */
}

/* ══════════════════ FOOTER ══════════════════ */
footer {
  background: #c8b477;
  padding: 10px var(--side-padding);
  display: flex;
  align-items: center;
  justify-content: center;
}
footer p {
  color: #2b2b29;
  font-family: "Jost";
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.44px;
  text-decoration: none !important;
  border: none !important;
}
footer a,
footer a:hover {
  text-decoration: none !important;
  color: inherit;
}
footer p::after,
footer::after {
  display: none;
}

/* ══════════════════ RESPONSIVE — 1100px ══════════════════ */
@media (max-width: 1100px) {
  .airports-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .what-grid {
    grid-template-columns: 1fr;
    margin: 0 40px;
  }
  .what-card:nth-child(n) {
    border-right: none;
  }
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .what-eyebrow,
  .what-header {
    padding: 0 60px;
  }
  .contact-top-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-headline {
    font-size: 48px;
  }
  .partner-name {
    font-size: 48px;
  }
  .airport-cell:nth-child(7),
  .airport-cell:nth-child(8),
  .airport-cell:nth-child(9),
  .airport-cell:nth-child(10),
  .airport-cell:nth-child(11) {
    border-top: none;
    border-bottom: none;
  }
  .eyebrow-text {
    font-size: 8px;
  }
  .partners-label .eyebrow-line {
    width: 20px;
  }
  .airport-name {
    font-size: 5px;
  }
  .section-gap {
    height: 30px;
  }
  .eyebrow-line {
    width: 20px;
  }
  .btn-primary {
    padding: 6px 8px;
    gap: 8px;
    font-size: 12px;
    font-weight: 500px;
  }
}

/* ══════════════════ RESPONSIVE — 800px ══════════════════ */
@media (max-width: 800px) {
  :root {
    --side-padding: 24px;
    --section-padding: 56px;
  }

  /* NAV */
  nav {
    padding: 18px var(--side-padding);
  }
  .nav-links {
    display: none;
  }

  /* HERO */
  .s-hero {
    padding: var(--section-padding) var(--side-padding);
    min-height: auto;
  }
  .hero-right {
    display: none;
  }

  .hero-h1 {
    font-size: 27px;
  }
  .hero-sub {
    font-size: 11px;
  }

  /* REGION */
  .region-headline {
    font-size: 27px;
  }
  .region-two-col {
    /* grid-template-columns: 1fr; */
    gap: 30px;
  }
  .region-col-body {
    font-size: 12px;
    max-width: 100%;
    font-family: "Jost";
    line-height: 1.4;
  }
  .airports-eyebrow {
    margin-bottom: 30px;
  }

  /* AIRPORTS */
  .airports-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .airport-code {
    font-size: 32px;
  }
  .s-airports {
    margin-bottom: 40px;
  }

  /* WHAT WE DO */
  .what-grid {
    grid-template-columns: 1fr;
    margin: 0 var(--side-padding);
  }
  .what-headline {
    font-size: 36px;
  }
  .what-eyebrow,
  .what-header {
    padding: 0 var(--side-padding);
  }
  .what-card {
    padding: 40px 32px;
  }
  .what-card-title {
    font-size: 34px;
  }
  .what-card-inner {
    transform: translateY(0);
  }
  .what-card-body {
    opacity: 1;
    transform: translateY(0);
  }
  .s-what {
    margin-bottom: 40px;
  }

  /* QUOTE */
  .s-quote {
    height: auto;
    padding: 80px var(--side-padding);
  }
  .quote-text {
    font-size: 40px;
  }
  .quote-sub {
    font-size: 16px;
  }

  /* LETTER */
  .s-letter {
    padding: 48px var(--side-padding);
  }
  .letter-eyebrow {
    margin-left: 0;
    font-size: 15px;
    margin-bottom: 15px;
    text-align: left;
  }
  .letter-card {
    padding: 40px 20px 90px 20px;
    margin: 0;
  }
  .letter-stamp {
    top: 20.6rem;
    right: 19px;
    width: 56px;
    height: 56px;
  }
  .letter-stamp img {
    width: 56px;
    height: 56px;
  }
  .letter-salutation {
    font-size: 38px;
    margin-bottom: 8px;
  }
  .letter-body {
    font-size: 17px;
    max-width: 100%;
    margin-bottom: 28px;
  }
  .letter-sign {
    font-size: 32px;
  }
  .letter-stamp-bottom {
    bottom: 31px;
    right: 157px;
    text-align: left;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: #9b7f36;
  }
  .letter-stamp-bottom p {
    font-size: 10px;
  }

  /* PARTNERS */
  .s-partners {
    padding: var(--section-padding) var(--side-padding);
  }
  .partners-sticky-card__header {
    position: static;
    padding: 0;
  }
  .partners-sticky-card__header::after {
    display: none;
  }
  .partners-label {
    margin-bottom: 36px;
  }
  .partners-sticky-card__list {
    padding-bottom: 0;
  }
  .partners-sticky-card__list-item {
    position: relative;
    top: auto !important;
    height: auto !important;
    margin-bottom: 20px !important;
    overflow: visible !important;
  }
  .partners-sticky-card__list-item-bar {
    padding: 28px 20px 0;
    border-bottom: none;
  }
  .partners-sticky-card__list-item-content {
    padding: 12px 20px 28px;
    overflow: visible;
  }
  .partner-name {
    font-size: 36px;
  }
  .partner-desc {
    font-size: 15px;
  }
  .partner-logos {
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
    column-gap: 11px;
  }
  .partner-logo-pill {
    padding: 8px 14px;
    font-size: 12px;
  }

  /* TEAM */
  .team-header {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 56px;
  }
  .team-headline {
    font-size: 44px;
  }
  .team-sub {
    max-width: 100%;
  }
  .founders-row {
    gap: 40px;
  }
  .founder-name {
    font-size: 34px;
  }
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 16px;
  }
  .member-photo {
    width: 120px;
    height: 120px;
  }
  .member-name {
    font-size: 18px;
  }

  /* TICKET */
  .join-ticket-section {
    padding: var(--section-padding) var(--side-padding);
  }
  .ticket {
    grid-template-columns: 1fr;
    min-height: auto;
    overflow: hidden;
  }
  .ticket::before,
  .ticket::after,
  .ticket-notch {
    display: none;
  }
  .ticket-stub {
    display: none;
  }
  .ticket-main {
    padding: 36px 28px;
  }
  .ticket-center h2 {
    font-size: 34px;
  }
  .ticket-center p {
    font-size: 16px;
  }
  .ticket-bottom {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }
  .ticket-bottom div:last-child {
    text-align: center;
  }
  .ticket-bottom button {
    width: 100%;
    justify-content: center;
  }

  /* CONTACT */
  .contact-top-row {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 36px;
  }
  .contact-headline {
    font-size: 36px;
  }
  .contact-intro {
    font-size: 16px;
  }
  .contact-form-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
  .contact-field--full {
    grid-column: 1;
  }
  .contact-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  /* FOOTER */
  footer {
    padding: 16px var(--side-padding);
  }
  footer p {
    font-size: 14px;
    letter-spacing: 0.8px;
  }
}
@media (max-width: 768px) {
  .ticket-label img {
  width: 14px;
  height: 14px;
}
  .contact-bottom-bar {
    flex-wrap: wrap !important;
    flex-direction: row !important;
  }

  .contact-bar-email {
    order: 1;
    flex: 1;
  }

  .contact-bar-icons {
    order: 2;
  }

  .contact-bar-city {
    order: 3;
    width: 100%; /* full width lega, toh neeche chala jayega */
    margin-top: 4px;
  }
  .founder-photo-placeholder:hover {
    transform: none !important;
  }
  .member-photo:hover {
    transform: none !important;
  }
  .letter-card {
    padding: 40px 20px 90px 20px !important;
  }
  .what-card::after {
    display: none !important;
  }
  .what-card:last-child {
    border-bottom: none !important;
  }
  .what-card:last-child::after {
    display: none;
  }
  .what-card,
  .what-card *,
  .what-card::before,
  .what-card::after {
    border: none !important;
    box-shadow: none !important;
  }

  html,
  body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  nav {
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }
  .partners-sticky-card__list-item {
    border-radius: 12px !important;
    overflow: visible !important;
    background: var(--sand) !important;
  }

  .partners-sticky-card__list-item-bar {
    background: var(--sand) !important;
  }

  .partners-sticky-card__list-item-content {
    background: var(--sand) !important;
  }
  .partners-sticky-card__list-item,
  .partners-sticky-card__list-item--1,
  .partners-sticky-card__list-item--2,
  .partners-sticky-card__list-item--3 {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    overflow: visible !important;
    margin-bottom: 16px !important;
  }

  /* Ensure content is visible */
  .partners-sticky-card__list-item-content {
    overflow: visible !important;
    max-height: none !important;
  }

  /* Disable sticky header */
  .partners-sticky-card__header {
    position: static !important;
  }
}

/* ══════════════════ RESPONSIVE — 500px ══════════════════ */
@media (max-width: 500px) {
  :root {
    --side-padding: 16px;
    --section-padding: 48px;
  }

  .airports-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .airport-code {
    font-size: 28px;
  }

  .what-grid {
    margin: 0 var(--side-padding);
  }
  .what-headline {
    font-size: 28px;
  }
  .what-card-title {
    font-size: 28px;
  }
  .what-card {
    padding: 32px 20px;
  }

  .quote-text {
    font-size: 32px;
  }

  .letter-salutation {
    font-size: 30px;
  }
  .letter-body {
    font-size: 15px;
  }

  .partner-name {
    font-size: 30px;
  }
  .partner-desc {
    font-size: 14px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-headline {
    font-size: 36px;
  }
  .founder-name {
    font-size: 28px;
  }
  .member-photo {
    width: 100px;
    height: 100px;
  }
  .member-name {
    font-size: 15px;
  }

  .contact-headline {
    font-size: 28px;
  }
  .contact-intro {
    font-size: 15px;
  }

  .hero-h1 {
    font-size: 27px;
  }
  .hero-left {
    gap: 17px;
  }
}

/* ══════════════════ REDUCED MOTION ══════════════════ */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-eyebrow,
  .hero-h1,
  .hero-sub,
  .hero-btns {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .stamp-img {
    animation: none;
  }
}

/* ════════════════════════════════════════════════════════════════
   MOBILE VIEW OVERRIDES — match provided mobile mockups exactly
   (Only affects screens ≤ 900px. Desktop view unchanged.)
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* ── AIRPORTS: 6 columns × 2 rows (fits within viewport) ── */
  .s-airports {
    padding: 32px 12px 20px !important;
    margin-bottom: 24px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }
  .airports-grid {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    gap: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .airport-cell {
    padding: 16px 2px !important;
    min-width: 0 !important;
    text-align: center !important;
    border-right: 1px solid rgba(200, 180, 119, 0.22) !important;
    border-bottom: 1px solid rgba(200, 180, 119, 0.22) !important;
    border-top: none !important;
    border-left: none !important;
  }
  .airport-cell:nth-child(3),
  .airport-cell:nth-child(9) {
    border-right: none !important;
  }
  .airport-cell:nth-child(6n) {
    border-right: none !important;
  }
  .airport-cell:nth-child(n + 10) {
    border-bottom: none !important;
  }
  .airport-code {
    font-size: 15px !important;
    letter-spacing: 0.3px !important;
    line-height: 1.1 !important;
  }
  .airport-city {
    font-size: 8px !important;
    letter-spacing: 0.8px !important;
    margin-top: 8px !important;
    line-height: 1.2 !important;
    word-break: break-word !important;
  }

  /* ── WHAT WE DO: 2 × 2 grid, titles only ── */
  .s-what {
    margin-bottom: 0px !important;
    padding-top: 36px !important;
    padding-bottom: 0px !important;
  }
  .what-eyebrow,
  .what-header {
    padding: 0 24px !important;
    text-align: left !important;
  }
  .what-headline {
    font-size: 28px !important;
    line-height: 1.15 !important;
    text-align: left !important;
    margin-bottom: 36px !important;
  }
  .what-grid {
    grid-template-columns: 1fr 1fr !important;
    margin: 0 24px !important;
    gap: 0 !important;
    border-top: 1px solid rgba(200, 180, 119, 0.18);
  }
  .what-card {
    padding: 28px 18px 36px !important;
    border-right: 1px solid rgba(200, 180, 119, 0.18) !important;
    border-bottom: 1px solid rgba(200, 180, 119, 0.18) !important;
    min-height: 65px !important;
  }
  .what-card:nth-child(2n) {
    border-right: none !important;
  }

  .what-card:nth-last-child(-n + 1) {
    border-bottom: none !important;
  }
  .what-card-number {
    font-size: 13px !important;

    margin-bottom: 14px !important;
    display: block !important;
  }
  .what-card-title {
    font-size: 18px !important;
    line-height: 1.2 !important;
    margin-bottom: 0 !important;
  }
  .what-card-body,
  .what-card-cta {
    display: none !important;
  }

  /* ── TEAM: header 2-col, founders 2-col, members 4-col ── */
  .s-team {
    padding: 48px 24px !important;
  }
  .team-header {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 28px !important;
    align-items: start !important;
    margin-bottom: 40px !important;
  }
  .team-headline {
    font-size: 30px !important;
    line-height: 1.05 !important;
    text-align: left !important;
  }
  .team-sub {
    font-size: 12px !important;
    line-height: 1.5 !important;
    max-width: 100% !important;
  }
  .founders-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
    margin-bottom: 44px !important;
  }
  .founder-photo-placeholder,
  .founder-photo {
    width: 110px !important;
    height: 110px !important;
    margin: 0 auto 12px !important;
  }
  .founder-name {
    font-size: 20px !important;
    text-align: center !important;
  }
  .founder-role {
    font-size: 9px !important;
    text-align: center !important;
  }
  .team-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 28px 12px !important;
  }
  .member-photo {
    width: 78px !important;
    height: 78px !important;
    margin: 0 auto 10px !important;
  }
  .member-name {
    font-size: 11px !important;
    text-align: center !important;
    line-height: 1.2 !important;
  }
  .member-role {
    font-size: 8px !important;
    text-align: center !important;
    letter-spacing: 0.6px !important;
  }

  /* ── CONTACT: 2-col header & form ── */
  .s-contact {
    padding: 48px 24px !important;
  }
  .contact-top-row {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-bottom: 28px !important;
  }
  .contact-headline {
    font-size: 28px !important;
    line-height: 1.15 !important;
  }
  .contact-intro {
    font-size: 12px !important;
  }
  .contact-form-grid {
    grid-template-columns: 1fr 1fr !important;
    column-gap: 20px !important;
    row-gap: 18px !important;
  }
  .contact-field--full {
    grid-column: 1 / -1 !important;
  }
  .contact-field label {
    font-size: 10px !important;
    letter-spacing: 1.4px !important;
  }
  .contact-field input,
  .contact-field textarea {
    font-size: 14px !important;
  }
  .contact-bottom-bar {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
  }
  .contact-bar-email,
  .contact-bar-city {
    font-size: 11px !important;
  }

  /* ── TICKET single-column tidy ── */
  .ticket-center h2 {
    font-size: 22px !important;
  }
  .ticket-center p {
    font-size: 12px !important;
  }
}

/* Extra tighten under 480px */
@media (max-width: 480px) {
  .airport-code {
    font-size: 15px !important;
  }
  .airport-city {
    font-size: 6px !important;
  }
  .what-headline {
    font-size: 24px !important;
  }
  .what-card-title {
    font-size: 24px !important;
  }
  .team-headline {
    font-size: 26px !important;
  }
  .member-photo {
    width: 68px !important;
    height: 68px !important;
  }
  .member-name {
    font-size: 10px !important;
  }
}

/* ══════════════════ TICKET — MOBILE EXACT MATCH (image ref) ══════════════════ */
@media (max-width: 768px) {
  .join-ticket-section {
    background: #f1ebe0 !important;
    padding: 40px 16px !important;
  }

  /* Card */
  .ticket {
    display: block !important;
    grid-template-columns: 1fr !important;
    background: #f1ebe0 !important;
    border: 1.5px solid #b5964c !important;

    min-height: auto !important;
    overflow: visible !important;
    position: relative !important;
    padding: 0 !important;
    margin-top: 28px !important;
  }
  .ticket:hover {
    transform: none !important;
    box-shadow: none !important;
  }

  /* Hide side notch decorations */
  .ticket::before,
  .ticket::after {
    display: none !important;
  }

  /* Top-center semicircle notch */
  .ticket-notch {
    display: block !important;
    position: absolute !important;
    width: 56px !important;
    height: 28px !important;
    left: 50% !important;
    top: -1.5px !important;
    transform: translateX(-50%) !important;
    background: #f1ebe0 !important;
    border: 1.5px solid #b5964c !important;
    border-top: none !important;
    border-radius: 0 0 56px 56px !important;
  }

  /* Main content */
  .ticket-main {
    padding: 36px 22px 22px !important;
    display: flex !important;
    flex-direction: column !important;
  }

  /* Top row: label + flight/gate meta */
  .ticket-top {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 8px !important;
    margin-bottom: 36px !important;
  }
  .ticket-label {
    font-size: 9px !important;
    letter-spacing: 0.12em !important;
    color: #b5964c !important;
    font-weight: 600 !important;
  }

  .ticket-meta {
    display: flex !important;
    gap: 18px !important;
  }
  .ticket-meta span {
    font-size: 8px !important;
    letter-spacing: 0.14em !important;
    color: #b5964c !important;
    font-weight: 600 !important;
  }
  .ticket-meta strong {
    font-size: 10px !important;
    color: #b5964c !important;
    margin-top: 3px !important;
    letter-spacing: 0.1em !important;
  }

  /* Center headline */
  .ticket-center {
    text-align: center !important;
    padding: 0 8px !important;
  }
  .ticket-center h2 {
    font-family: "Playfair Display", serif !important;
    font-style: italic !important;
    font-weight: 600 !important;
    font-size: 28px !important;
    line-height: 1.15 !important;
    color: #191813 !important;
    margin-bottom: 16px !important;
  }
  .ticket-center p {
    font-size: 13px !important;
    line-height: 1.55 !important;
    color: #191813 !important;
    max-width: 280px !important;
    margin: 0 auto !important;
  }

  /* Dashed line with plane */
  .ticket-line {
    margin: 30px 0 22px !important;
  }
  .ticket-line::before {
    border-top: 1.5px dashed #b5964c !important;
  }
  .ticket-line span {
    background: #f1ebe0 !important;
    color: #b5964c !important;
    font-size: 16px !important;
    padding: 0 12px !important;
  }

  /* Bottom row: destination · button · seat */
  .ticket-bottom {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center !important;
    gap: 8px !important;
    text-align: left !important;
  }
  .ticket-bottom > div:first-child {
    text-align: left !important;
  }
  .ticket-bottom > div:last-child {
    text-align: right !important;
  }
  .ticket-bottom span {
    font-size: 8px !important;
    letter-spacing: 0.14em !important;
    color: #b5964c !important;
  }
  .ticket-bottom strong {
    font-size: 10px !important;
    color: #b5964c !important;
    margin-top: 3px !important;
  }
  .ticket-bottom button {
    width: auto !important;
    padding: 10px 18px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    font-style: normal !important;
    border: 1.2px solid #b5964c !important;
    color: #9b7f36 !important;
    background: transparent !important;

    letter-spacing: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    transform: none !important;
    box-shadow: none !important;
  }
  .ticket-bottom button::before {
    display: none !important;
  }
  .ticket-bottom button svg {
    width: 11px !important;
    height: 11px !important;
  }

  /* SHOW stub at bottom as horizontal row */
  .ticket-stub {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    align-items: center !important;
    border-left: none !important;
    padding: 18px 22px 24px !important;
    gap: 12px !important;
  }
  .ticket-stub .dxb {
    font-size: 24px !important;
    color: #d9cdb0 !important;
    text-align: left !important;
    margin: 0 !important;
    font-weight: 500 !important;
    letter-spacing: 0.02em !important;
  }
  .ticket-stub .barcode {
    margin: 0 0 0 -37px !important;
    display: flex !important;
    gap: 3px !important;
    width: 42px;
    height: 25px;

    justify-content: center !important;
  }
  .ticket-stub .barcode span {
    width: 3px !important;
    height: 28px !important;
    color: #d9cdb0 !important;
  }
  .ticket-stub .barcode span:nth-child(3),
  .ticket-stub .barcode span:nth-child(6) {
    width: 6px !important;
  }
  .ticket-stub .seal {
    margin: 0 0 0 auto !important;
    width: 56px !important;
    height: 56px !important;
    border: 1.5px solid #b5964c !important;
  }

  .ticket-stub .seal img {
    width: 56px !important;
    height: 56px !important;
  }
  .ticket-stub .welcome {
    display: none !important;
  }
  .contact-eyebrow span {
    font-size: 10px;
  }
}

/* ══════════════════ MOBILE EXACT MATCH — AIRPORTS / WHAT / TEAM ══════════════════ */
@media (max-width: 768px) {
  /* ───── AIRPORTS: 3 cols × 4 rows, dark card cells, city under code ───── */
  .s-airports {
    padding: 36px 16px !important;
    background: #191813 !important;
  }
  .airports-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0 !important;

    max-width: 100% !important;
  }
  .airport-cell {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 22px 4px !important;

    border-bottom: 1px solid rgba(181, 150, 76, 0.28) !important;
    text-align: center !important;
    background: transparent !important;
  }
  .airport-code {
    font-family: "Playfair Display", serif !important;
    font-size: 28px !important;
    font-weight: 600 !important;

    letter-spacing: 0.04em !important;
    line-height: 1 !important;
  }
  .airport-divider {
    display: none !important;
  }
  .airport-name,
  .airport-city {
    display: block !important;
    margin-top: 8px !important;
    font-size: 10px !important;
    letter-spacing: 0.12em !important;
    color: #8a7a52 !important;
    text-transform: uppercase !important;
    font-weight: 500 !important;
  }

  /* ───── WHAT WE DO: accordion-style list ───── */
  .s-what {
    background: #f1ebe0 !important;
  }
  .what-eyebrow {
    justify-content: flex-start !important;
    margin-bottom: 14px !important;
  }
  .what-eyebrow-text {
    color: #9b7f36 !important;
    font-size: 10px !important;
    letter-spacing: 0.18em !important;
  }
  .what-header {
    text-align: left !important;
    margin-bottom: 14px !important;
  }
  .what-headline {
    font-family: "Playfair Display" !important;

    font-size: 26px !important;
    line-height: 1.15 !important;
    color: #191813 !important;
    text-align: left !important;
  }
  .what-sub,
  .what-intro {
    font-size: 13px !important;
    color: #4a443a !important;
    text-align: left !important;
    margin: 10px 0 22px !important;
    max-width: 100% !important;
  }
  .what-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    margin: 0 !important;
    border-top: 1px solid rgba(155, 127, 54, 0.35) !important;
  }
  .what-card {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(155, 127, 54, 0.35) !important;
    border-radius: 0 !important;
    padding: 0 !important;
    cursor: pointer !important;
    margin: 0 20px;
  }
  .what-card-inner {
    display: grid !important;
    grid-template-columns: 28px 1fr 24px !important;
    align-items: start !important;
    gap: 12px !important;
    padding-top: 16px !important;
    position: relative !important;
  }
  .what-card-num {
    font-family: "Playfair Display" !important;
    font-style: normal !important;
    font-size: 20px !important;
    color: #c8b477 !important;
    font-weight: 400 !important;
    letter-spacing: 0.06em !important;
    margin-left: 6px;
  }
  .what-card-title {
    font-family: "Playfair Display" !important;

    font-weight: 500 !important;

    margin: 10 !important;
    grid-column: 2 !important;
  }
  .what-card .what-card-cta,
  .what-card-cta {
    display: none !important;
  }
  /* Body collapsed by default, expands when .open */
  .what-card-body {
    display: block !important;
    grid-column: 2 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    margin: 0 !important;
    font-size: 13px !important;
    line-height: 1.55 !important;

    transition:
      max-height 0.45s ease,
      opacity 0.35s ease,
      margin 0.35s ease !important;
  }
  .what-card.open .what-card-body {
    max-height: 400px !important;
    opacity: 1 !important;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }

  .what-card-inner::after {
    content: "+" !important;
    grid-column: 3;
    grid-row: 1 !important;
    /* justify-self: end !important; */
    align-self: start !important;
    font-size: 30px !important;
    color: #c8b477 !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    transition: transform 0.3s ease !important;
    padding-top: 2px !important;
  }
  .what-card.open .what-card-inner::after {
    transform: rotate(45deg) !important;
  }

  /* ───── QUOTE ───── */
  .s-quote {
    padding: 48px 24px !important;
    text-align: center !important;
  }
  .quote-text {
    font-family: "Playfair Display", serif !important;
    font-style: italic !important;
    font-size: 24px !important;
    line-height: 1.3 !important;
  }
  .quote-sub {
    margin-top: -30px;
    font-size: 12px;
    text-align: center !important;
  }

  /* ───── TEAM: stacked layout ───── */
  .s-team {
    padding: 40px 18px !important;
  }
  .team-label {
    text-align: center !important;
    font-size: 10px !important;
    letter-spacing: 0.22em !important;
    color: #9b7f36 !important;
    margin-bottom: 18px !important;
  }
  .team-header {
    display: block !important;
    grid-template-columns: 1fr !important;
    margin-bottom: 20px !important;
  }
  .team-headline {
    font-family: "Playfair Display", serif !important;
    font-size: 30px !important;
    line-height: 1.1 !important;

    text-align: left !important;
    margin-bottom: 14px !important;
  }
  .team-sub {
    font-size: 12px !important;
    line-height: 1.6 !important;

    text-align: left !important;
    max-width: 100% !important;
  }

  /* Founders label */
  .founders-label {
    font-size: 10px !important;

    color: #9b7f36 !important;
    margin: 28px 0 14px !important;
    text-align: left !important;
  }
  /* Founders stacked vertically, each row: photo + text inline */
  .founders-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
  }

  .founder-card {
    display: grid !important;
    grid-template-columns: 72px 1fr !important;
    grid-template-rows: auto auto auto !important;
    align-items: center !important;
    gap: 9px 14px !important;
    text-align: left !important;
  }

  .founder-photo-placeholder,
  .founder-photo {
    width: 72px !important;
    height: 72px !important;
    border-radius: 50% !important;
    grid-row: 1 / 4 !important; /* spans all 3 text rows */
    grid-column: 1 !important;
    margin: 0 !important;
  }
  .founder-photo-placeholder img,
  .founder-photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
  .founder-info {
    display: contents !important;
  }
  .founder-name {
    grid-column: 2 !important;
    grid-row: 1 !important;
    font-size: 22px !important;
    font-weight: 500 !important;
    text-align: left !important;
    margin: 0 !important;
    line-height: 1.15 !important;
  }

  .founder-role {
    grid-column: 2 !important;
    grid-row: 2 !important;
    font-size: 11px !important;
    text-align: left !important;
    margin: 0 !important;
  }

  .founder-connect {
    grid-column: 2 !important;
    grid-row: 3 !important;
    font-size: 11px !important;
    text-align: left !important;
    justify-content: flex-start !important;
    padding: 0 !important;
  }
  .founder-connect a {
    text-decoration: none;
  }
  .founder-bio {
    display: none !important;
  }

  /* People behind the work */
  .team-grid-label {
    font-size: 10px !important;

    color: #9b7f36 !important;
    margin: 32px 0 18px !important;
    text-align: left !important;
  }
  .team-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 22px 10px !important;
  }
  .team-grid .team-member:last-child:nth-child(3n + 1) {
    grid-column: 2 / 3 !important;
  }
  .team-member {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
  }
  .member-photo {
    width: 64px !important;
    height: 64px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    margin: 0 auto 8px !important;
  }
  .member-photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
  .member-name {
    font-family: "Playfair Display", serif !important;
    font-size: 16px !important;
    font-weight: 500 !important;

    line-height: 1.2 !important;
    margin-bottom: 3px !important;
  }
  .member-role {
    font-size: 7px !important;
    letter-spacing: 0.14em !important;
    color: #8a7a52 !important;
    line-height: 1.3 !important;
    text-transform: uppercase !important;
  }
}

/* ══════════════════ LATEST NEWS ══════════════════ */
.s-news {
  background: #e9ddc9;

  padding: var(--section-padding) var(--side-padding);
}

.news-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.news-headline {
  color: #191813;
  font-family: "Playfair Display", serif;
  font-size: 52px;
  font-weight: 500;
  text-align: left;
  margin-bottom: 24px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}


.news-card {
  background: #f1ebe0;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.4s var(--smooth-ease),
    box-shadow 0.4s ease;

  display: flex;
  flex-direction: column;
  height: 100%; /* important */
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.13);
}

.news-img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.news-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--smooth-ease);
}
.news-card:hover .news-img-wrap img {
  transform: scale(1.05);
}

.news-date-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 10px;
  border-radius: 3px;
  z-index: 2;
  min-width: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.news-date-day {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  color: #191813;
  line-height: 1;
}
.news-date-mon {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
}
.news-date-yr {
  font-family: "Jost", sans-serif;
  font-size: 10px;
  color: #999;
  letter-spacing: 0.05em;
}

.news-body {
  padding: 24px 22px 28px;

  display: flex;
  flex-direction: column;
  flex: 1; /* takes remaining space */
  gap: 10px;
}

.news-title {
 font-family: "Playfair Display";
font-weight: 500;
font-style: SemiBold;
font-size: 20px;
leading-trim: NONE;
line-height: 1.2;
letter-spacing: 0%;
color: #000;
 display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;

}
.news-desc {
  font-family: "Jost";
font-weight: 400;
font-style: Regular;
font-size: 16px;
leading-trim: NONE;
line-height: 1.4;
letter-spacing: 0px;
color: #494949;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;

}
.news-read {
   margin-top: auto; 
 font-family: "Jost";
font-weight: 500;
font-style: Medium;
font-size: 16px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: 0%;
 position: relative;  
  display: inline-block;  
text-decoration: underline;
text-decoration-style: solid;
text-decoration-offset: 0%;
text-decoration-thickness: 0%;
color: #9B7F36;
}
.news-read::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.35s var(--smooth-ease);
}


/* ── News Responsive ── */
@media (max-width: 900px) {
  .news-grid {
    grid-template-columns: repeat(1, 2fr) !important;
    gap: 20px !important;
  }
  .news-headline {
    font-size: 36px !important;
    margin-bottom: 32px !important;
  }
}

@media (max-width: 768px) {
  .s-news {partners-label
    padding: 32px 16px !important;
  }

  .news-img-wrap {
    height: 140px !important;
  }

  .news-body {
    padding: 16px 16px 20px !important;
  }

  .news-title {
    font-size: 16px !important;
    margin-bottom: 6px !important;
  }

  .news-desc {
    font-size: 12px !important;
    margin-bottom: 12px !important;
  }

  .news-headline {
    font-size: 24px !important;
    margin-bottom: 16px !important;
  }
  .news-read {
    font-size: 10px;
  }
}

/* ══════════════════ MOBILE HAMBURGER ══════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #191813;
}

@media (max-width: 860px) {
  .nav-hamburger {
    display: inline-flex;
  }
  #mainNav .nav-links {
    display: none;
  }
  #mainNav {
    justify-content: flex-start;
    gap: 14px;
  }
}

/* ══════════════════ OVERLAY ══════════════════ */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 9997;
}
.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ══════════════════ SIDE PANEL ══════════════════ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100dvh;
  width: 100vw;
  max-width: 390px;
  background: #ede7d9;
  z-index: 9998;
  transform: translateX(-100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  justify-content: flex-start !important;
}
.mobile-menu.open {
  transform: translateX(0);
}

/* ══════════════════ HEADER ROW ══════════════════ */
.mobile-menu-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.12);
  flex-shrink: 0;
  background: #ede7d9;
}

.mobile-menu-close {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #1a1a1a;
}

.mobile-menu-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-menu-logo .logo-stamp {
  width: 52px;
  height: 52px;
}

.mobile-menu-logo .logo-text {
  color: #191813;
  font-family: Jost;
  font-size: 24px;
  font-weight: 500;
}

.mobile-menu-logo .logo-text span {
  color: #9b7f36;
}

/* ══════════════════ DIVIDER LINE ══════════════════ */
.mm-divider-line {
  display: none !important;
}

/* ══════════════════ NAV LINKS ══════════════════ */
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  margin: 0;
  flex: 0;
  width: 100%;
  flex: 0 0 auto !important;
  background: transparent;
}

.mobile-menu-nav {
  border-bottom: none !important;
}

.mobile-menu::after {
  display: none !important;
}

.mobile-menu-nav a {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  text-align: left !important;
  padding: 18px 0 !important;
  border-bottom: 1px solid rgba(26, 26, 26, 0.12) !important;
  color: #1a1a1a !important;
  text-decoration: none !important;
  font-family: "Playfair Display", serif !important;
  font-size: 24px !important;
  font-weight: 500 !important;
  letter-spacing: 0.01em !important;
  transition: color 0.3s ease !important;
  width: 100% !important;
  box-sizing: border-box !important;
}



.mobile-menu-nav a:hover {
  color: #9b7f36 !important;
}

.mm-label {
  font-family: "Playfair Display", serif !important;
  font-size: 24px !important;
  font-weight: 500 !important;
  color: inherit !important;
  text-align: left !important;
  flex: 1 !important;
}

.mm-num {
  font-family: Playfair Display;
  font-weight: 500;
  font-style: Italic;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #9b7f36;
}



/* ══════════════════ SPLIT-FLAP LOADER ══════════════════ */
.sf-overlay{
  position:fixed; inset:0; z-index:99999;
  background:#191813;
  display:flex; align-items:center; justify-content:center;
  opacity:1;
  transition: opacity .6s ease;
}
.sf-overlay.sf-fade-out{
  opacity:0;
}
.sf-overlay.is-done{
  display:none;
}

.sf-word{
  display:flex; gap:clamp(3px, 1.2vw, 6px); flex-wrap:nowrap; justify-content:center;
  padding:0 12px;
  width:100%;
  max-width:100vw;
  box-sizing:border-box;
}

.sf-tile{
  width:clamp(28px, 5.2vw, 64px);
  height:clamp(40px, 7.4vw, 92px);
  perspective: 500px;
  position:relative;
  flex-shrink: 0;
}
.sf-tile.sf-space{
  width:clamp(6px, 2vw, 24px);
  background:transparent;
}

/* the part that actually rotates */
.sf-flip-card{
  position:relative;
  width:100%;
  height:100%;
  transform-style: preserve-3d;
  transition: transform .22s cubic-bezier(.45,0,.55,1);
}
.sf-flip-card.is-flipping{
  transform: rotateX(-180deg);
}

.sf-face{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:6px;
  background:#1f1c17;
  box-shadow:
    inset 0 -2px 0 rgba(0,0,0,.6),
    inset 0 1px 0 rgba(255,255,255,.04),
    0 6px 14px rgba(0,0,0,.45);
  font-family:"Manrope","Jost",sans-serif;
  font-weight:800;
 font-size:clamp(11px, 4.5vw, 52px);
  color:#f1ebe0;
  letter-spacing:.02em;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.sf-face::before{
  content:""; position:absolute; left:0; right:0; top:50%;
  height:1px; background:rgba(0,0,0,.7); z-index:2;
}
.sf-face-back{
  transform: rotateX(180deg);
}
.sf-tile.sf-space .sf-face{
  background:transparent;
  box-shadow:none;
}
.sf-tile.sf-space .sf-face::before{
  display:none;
}
.sf-tile-gold .sf-face {
  color: #c8b477; 
}
@media (max-width: 480px) {
  .sf-word {
    flex-wrap: wrap;
    row-gap: 12px;
  }
  .sf-tile.sf-space {
    flex: 0 0 100%;
    width: 100%;
    height: 0;
  }
}