/* ============================================================
   NORTH BRIDGE WORLDWIDE LLP — Main Stylesheet
   Palette: Ivory #F7F4EF | Sage #7A9E9F | Navy #1C2B3A | Gold #BFA06A | Warm White #FEFCF8
   Fonts: Cormorant Garamond (display) + Jost (body)
   ============================================================ */

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

:root {
  --ivory: #F7F4EF;
  --cream: #F0EBE3;
  --sage: #7A9E9F;
  --sage-dark: #5C8384;
  --navy: #1C2B3A;
  --navy-mid: #2D4052;
  --gold: #BFA06A;
  --gold-light: #D4B882;
  --white: #FEFCF8;
  --text: #2A2A2A;
  --text-light: #6B6B6B;
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'Jost', sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 12px rgba(28,43,58,0.08);
  --shadow-md: 0 8px 32px rgba(28,43,58,0.12);
  --shadow-lg: 0 20px 60px rgba(28,43,58,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background: var(--white);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 100px 0; }
.bg-cream { background: var(--cream); }

/* ---- Typography ---- */
.label {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.8;
}

.body-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section-header .section-sub {
  margin: 0 auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 2px;
  transition: all var(--transition);
  cursor: pointer;
  border: 1.5px solid transparent;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-sage {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}
.btn-sage:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.link-arrow {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-dark);
  border-bottom: 1px solid var(--sage-dark);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}
.link-arrow:hover {
  color: var(--navy);
  border-color: var(--navy);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: var(--white);
  padding: 0.9rem 0;
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-bridge {
  font-family: var(--ff-body);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--white);
  transition: color var(--transition);
}

.logo-sub {
  font-family: var(--ff-body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.site-header.scrolled .logo-bridge { color: var(--navy); }
.site-header.scrolled .logo-sub { color: var(--text-light); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover,
.nav-link.active { color: var(--white); }

.site-header.scrolled .nav-link { color: var(--text-light); }
.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active { color: var(--navy); }
.site-header.scrolled .nav-link::after { background: var(--sage); }

.btn-nav {
  background: var(--sage);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  transition: background var(--transition);
}
.btn-nav::after { display: none; }
.btn-nav:hover { background: var(--sage-dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}
.site-header.scrolled .hamburger span { background: var(--navy); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1631049552057-403cdb8f0658?w=1800&q=80');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  animation: heroZoom 10s ease forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28,43,58,0.72) 0%,
    rgba(28,43,58,0.45) 60%,
    rgba(122,158,159,0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 80px;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  animation: fadeUp 0.8s 0.2s both;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.4s both;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 520px;
  font-weight: 300;
  animation: fadeUp 0.8s 0.6s both;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.8s both;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeUp 1s 1s both;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

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

/* ============================================================
   STRIP
   ============================================================ */
.strip {
  background: var(--navy);
  padding: 1.4rem 0;
}

.strip-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 2rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.strip-icon {
  color: var(--gold);
  font-size: 0.6rem;
}

.strip-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.15);
}

/* ============================================================
   ABOUT SNAP
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.two-col.flip > *:first-child { order: 2; }
.two-col.flip > *:last-child { order: 1; }

.about-text { max-width: 520px; }

.about-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px 180px;
  gap: 12px;
}

.img-tile { overflow: hidden; border-radius: 3px; }
.img-tile img { transition: transform 0.7s ease; }
.img-tile:hover img { transform: scale(1.04); }

.img-tile-1 { grid-column: 1 / 3; }
.img-tile-2 { grid-column: 1; }
.img-tile-3 { grid-column: 2; }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.product-card {
  display: block;
  background: var(--white);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  height: 220px;
  overflow: hidden;
}

.card-image img {
  transition: transform 0.7s ease;
}

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

.card-body {
  padding: 1.4rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-title {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.card-desc {
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

.card-arrow {
  font-size: 1.2rem;
  color: var(--sage);
  transition: transform var(--transition);
}

.product-card:hover .card-arrow { transform: translateX(5px); }

.products-cta { text-align: center; }

/* ============================================================
   WHY US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.why-card {
  padding: 2.5rem 1.5rem;
  border-top: 2px solid var(--cream);
  transition: border-color var(--transition);
}

.why-card:hover { border-color: var(--sage); }

.why-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.why-card h4 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.8rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ============================================================
   QUOTE BANNER
   ============================================================ */
.quote-banner {
  position: relative;
  padding: 120px 2rem;
  background-image: url('https://images.unsplash.com/photo-1564078516393-cf04bd966897?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}

.quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,43,58,0.75);
}

.quote-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.quote-content blockquote {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.quote-content blockquote::before { content: '\201C'; }
.quote-content blockquote::after { content: '\201D'; }

.quote-content cite {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-style: normal;
}

/* ============================================================
   CATALOGUE CTA
   ============================================================ */
.catalogue-cta .cta-image {
  height: 450px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.catalogue-cta .cta-text { max-width: 480px; }
.catalogue-cta .cta-text .btn { margin-top: 0.5rem; }

/* ============================================================
   CONTACT STRIP
   ============================================================ */
.contact-strip {
  background: var(--sage);
  padding: 4rem 0;
}

.contact-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-strip-text h3 {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.contact-strip-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

.contact-strip-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-strip .btn-ghost-dark {
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.contact-strip .btn-ghost-dark:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  padding-top: 5rem;
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-bridge { color: var(--white); font-size: 1.1rem; }
.footer-brand .logo-sub { color: rgba(255,255,255,0.5); }

.footer-tagline {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-light);
  margin-top: 1rem;
}

.footer-url {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-top: 0.3rem;
}

.footer-links h5,
.footer-contact h5 {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}

.footer-links a,
.footer-contact a,
.footer-contact p {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  padding: 1.5rem 2rem;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 0;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,43,58,0.85) 0%, rgba(28,43,58,0.4) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
  width: 100%;
}

.page-hero-content .label { color: var(--gold-light); }
.page-hero-content h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  .two-col {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .two-col.flip > *:first-child { order: 1; }
  .two-col.flip > *:last-child { order: 2; }

  .about-image-grid {
    grid-template-rows: 200px 140px;
  }

  .product-grid { grid-template-columns: 1fr; }

  .why-grid { grid-template-columns: 1fr; gap: 1rem; }

  .contact-strip-inner { flex-direction: column; text-align: center; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .strip-inner { gap: 0; }
  .strip-item { padding: 0.4rem 1rem; }
  .strip-divider { display: none; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
  }

  .main-nav.open { display: flex; }

  .nav-link {
    color: var(--text-light) !important;
    padding: 0.9rem 2rem;
    width: 100%;
  }
  .nav-link:hover { color: var(--navy) !important; background: var(--cream); }
  .nav-link::after { display: none; }

  .btn-nav {
    margin: 0.5rem 2rem;
    text-align: center;
    width: calc(100% - 4rem);
  }

  .hamburger { display: flex; }

  .hero-scroll { display: none; }

  .quote-banner { background-attachment: scroll; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.6rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { text-align: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .contact-strip-actions { flex-direction: column; align-items: center; }
}

/* ========== VISION SECTION ========== */
.vision-section { background: var(--ivory); }

.vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.vision-card {
  background: var(--white);
  border: 1px solid rgba(28,43,58,0.08);
  border-radius: 4px;
  padding: 2rem 1.6rem;
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.vision-card:hover {
  box-shadow: 0 8px 32px rgba(28,43,58,0.10);
  transform: translateY(-4px);
}

.vision-number {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(28,43,58,0.08);
  line-height: 1;
  margin-bottom: 1rem;
}

.vision-card h4 {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.vision-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.vision-status {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
}

.vision-status.active {
  background: rgba(122,158,159,0.15);
  color: var(--sage-dark);
  border: 1px solid rgba(122,158,159,0.3);
}

.vision-status.launching {
  background: rgba(191,160,106,0.12);
  color: var(--gold);
  border: 1px solid rgba(191,160,106,0.3);
}

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

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

/* ── LOGO WITH IMAGE ── */
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-img { width: 40px; height: 40px; object-fit: contain; border-radius: 50%; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }

/* ── COMING SOON BUTTON FIX ── */
.cat-coming .btn-primary {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
}
.cat-coming .btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
