 
 /* ─── RESET & BASE ─────────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --orange:    #D2773B;
      --black:     #0a0a0a;
      --off-white: #f8f7f4;
      --mid-grey:  #888;
      --light-line:#e2e0db;
      --max-w:     1160px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
      background: #fff;
      color: var(--black);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }


.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-sizing: border-box;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.quote-btn {
  background-color: black;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  white-space: nowrap;
}



/* Logo + Text */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #000;
}

.logo-img {
  width: 40px;
  height: auto;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: rotate(-8deg) scale(1.1);
}

.logo-text {
  display: inline-block;
}

.navbar-content {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a:focus,
.nav-links li a.active {
  color: #D2773B;
}

.nav-links.mobile-active {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem 0;
  gap: 0;
}

.nav-links.mobile-active li {
  width: 100%;
  text-align: center;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .navbar-content {
    display: none;
  }

  .navbar-content.mobile-active {
    display: block;
  }
}
.quote-btn {
  background-color: black;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.theme-toggle {
  margin-left: 1rem;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #222;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

/* ─── SCROLL REVEAL ────────────────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.8s cubic-bezier(.16,1,.3,1),
                  transform 0.8s cubic-bezier(.16,1,.3,1);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ─── UTILITY ──────────────────────────────────────────────────────── */
    .container {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 2rem;
    }

    .label {
      font-family: 'Syne', sans-serif;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--orange);
    }

    hr.rule {
      border: none;
      border-top: 1px solid var(--light-line);
      margin: 0;
    }

    /* ─── HERO ─────────────────────────────────────────────────────────── */
    .about-hero {
      padding: 9rem 2rem 5rem;
      max-width: var(--max-w);
      margin: 0 auto;
    }

    .about-hero .label { margin-bottom: 2rem; display: block; }

    .about-hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 7vw, 6.5rem);
      font-weight: 300;
      line-height: 1.05;
      color: var(--black);
      max-width: 820px;
    }

    .about-hero h1 em {
      font-style: italic;
      color: var(--orange);
    }

    .about-hero .hero-sub {
      margin-top: 2.5rem;
      max-width: 520px;
      font-size: 1.05rem;
      line-height: 1.75;
      color: #444;
      font-weight: 300;
    }

    /* ─── INTRO SPLIT ──────────────────────────────────────────────────── */
    .intro-split {
      padding: 6rem 0;
      border-top: 1px solid var(--light-line);
    }

    .intro-split .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
    }

    .intro-text .label { margin-bottom: 1.5rem; display: block; }

    .intro-text h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 400;
      line-height: 1.2;
      color: var(--black);
      margin-bottom: 1.75rem;
    }

    .intro-text p {
      font-size: 1rem;
      line-height: 1.8;
      color: #555;
      margin-bottom: 1.25rem;
    }

    .intro-image {
      position: relative;
    }

    .intro-image::before {
      content: '';
      position: absolute;
      top: -20px;
      left: -20px;
      right: 20px;
      bottom: 20px;
      border: 1px solid var(--light-line);
      border-radius: 4px;
      z-index: 0;
    }

    .intro-image img {
      width: 100%;
      height: 480px;
      object-fit: cover;
      border-radius: 4px;
      display: block;
      position: relative;
      z-index: 1;
      filter: grayscale(15%);
    }

    /* ─── PROOF NUMBERS ────────────────────────────────────────────────── */
    .proof-strip {
      padding: 5rem 0;
      background: var(--black);
    }

    .proof-strip .container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
    }

    .proof-item {
      padding: 3rem 2.5rem;
      border-right: 1px solid rgba(255,255,255,0.08);
      text-align: center;
    }
    .proof-item:last-child { border-right: none; }

    .proof-item .big-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3.5rem, 6vw, 5.5rem);
      font-weight: 300;
      color: var(--orange);
      line-height: 1;
      display: block;
    }

    .proof-item .proof-label {
      font-family: 'Syne', sans-serif;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #fff;
      display: block;
      margin-top: 0.75rem;
    }

    .proof-item .proof-sub {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.4);
      margin-top: 0.5rem;
      display: block;
      line-height: 1.5;
    }

    /* ─── STORY ────────────────────────────────────────────────────────── */
    .our-story {
      padding: 7rem 0;
      border-top: 1px solid var(--light-line);
    }

    .our-story .container {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 6rem;
      align-items: start;
    }

    .story-aside .label { margin-bottom: 1.5rem; display: block; }

    .story-aside .aside-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 8rem;
      font-weight: 300;
      color: var(--light-line);
      line-height: 1;
      display: block;
      margin-top: 1rem;
    }

    .story-body h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 3vw, 2.75rem);
      font-weight: 400;
      line-height: 1.2;
      color: var(--black);
      margin-bottom: 2.5rem;
    }

    .story-body p {
      font-size: 1.05rem;
      line-height: 1.85;
      color: #555;
      margin-bottom: 1.75rem;
      max-width: 680px;
    }

    .story-body p:last-child { margin-bottom: 0; }

    /* ─── VALUES ───────────────────────────────────────────────────────── */
    .core-values {
      padding: 7rem 0;
      background: var(--off-white);
    }

    .values-header {
      margin-bottom: 4rem;
    }

    .values-header .label { margin-bottom: 1.5rem; display: block; }

    .values-header h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 400;
      color: var(--black);
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    .value-card {
      background: #fff;
      padding: 2.5rem;
      border-radius: 2px;
      border: 1px solid var(--light-line);
      transition: border-color 0.3s ease, transform 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .value-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 3px;
      height: 0;
      background: var(--orange);
      transition: height 0.35s cubic-bezier(.16,1,.3,1);
    }

    .value-card:hover { transform: translateY(-3px); border-color: transparent; }
    .value-card:hover::before { height: 100%; }

    .value-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 300;
      color: var(--orange);
      display: block;
      margin-bottom: 1.5rem;
    }

    .value-card h3 {
      font-family: 'Syne', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      color: var(--black);
      margin-bottom: 0.75rem;
    }

    .value-card p {
      font-size: 0.95rem;
      line-height: 1.75;
      color: #666;
    }

    /* ─── CTA ──────────────────────────────────────────────────────────── */
    .about-cta {
      padding: 8rem 0;
      background: var(--black);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    /* Subtle decorative circle */
    .about-cta::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 600px;
      height: 600px;
      border-radius: 50%;
      border: 1px solid rgba(210, 119, 59, 0.12);
      pointer-events: none;
    }
    .about-cta::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 900px;
      height: 900px;
      border-radius: 50%;
      border: 1px solid rgba(210, 119, 59, 0.06);
      pointer-events: none;
    }

    .cta-inner { position: relative; z-index: 1; }

    .about-cta .label {
      color: rgba(210,119,59,0.8);
      margin-bottom: 2rem;
      display: block;
    }

    .about-cta h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      font-weight: 300;
      line-height: 1.1;
      color: #fff;
      max-width: 640px;
      margin: 0 auto 1.5rem;
    }

    .about-cta h2 em {
      font-style: italic;
      color: var(--orange);
    }

    .about-cta p {
      color: rgba(255,255,255,0.5);
      font-size: 1rem;
      max-width: 440px;
      margin: 0 auto 3rem;
      line-height: 1.7;
    }

    .cta-btn {
      display: inline-block;
      background: var(--orange);
      color: #fff;
      padding: 1rem 2.5rem;
      border-radius: 2px;
      text-decoration: none;
      font-family: 'Syne', sans-serif;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: background 0.25s ease, transform 0.25s ease;
    }

    .cta-btn:hover {
      background: #be6830;
      transform: translateY(-2px);
    }

    /* ─── RESPONSIVE ───────────────────────────────────────────────────── */
    @media (max-width: 900px) {
      .intro-split .container {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
      .intro-image::before { display: none; }
      .intro-image img { height: 320px; }

      .our-story .container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
      .story-aside .aside-num { display: none; }

      .proof-strip .container {
        grid-template-columns: 1fr;
      }
      .proof-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
      .proof-item:last-child { border-bottom: none; }

      .values-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 600px) {
      .about-hero { padding: 7rem 1.25rem 4rem; }
      .container { padding: 0 1.25rem; }
    }
/*-------------------------------------------------------*/
footer {
  background-color: #000;
  color: #fff;
  padding: 3rem 2rem;
  font-size: 0.95rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  min-width: 200px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 3px;
}

.footer-center h4,
.footer-right h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-center ul,
.footer-right ul {
  list-style: none;
  padding: 0;
}

.footer-center ul li,
.footer-right ul li {
  margin-bottom: 0.5rem;
}

.footer-center ul li a,
.footer-right ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-center ul li a:hover,
.footer-right ul li a:hover {
  color: #d4af37; /* Gold hover */
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #aaa;
}

.footer-legal {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0;
  margin-bottom: 0.5rem;
}

.footer-legal a {
  color: #aaa;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #fff;
}


/* Mobile Responsiveness */
@media (max-width: 768px) {
  

  .about-hero h1 {
    font-size: 1.8rem;
  }

  .about-hero p {
    font-size: 1rem;
  }

  .founder-story {
    padding: 2rem 1rem;
    flex-direction: column;
    gap: 1.5rem;
  }

  .story-text,
  .story-image {
    flex: 1 1 100%;
  }

  .core-values {
    padding: 2rem 1rem;
  }

  .core-values h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .value-card {
    padding: 1.5rem;
  }

  .about-cta {
    padding: 2rem 1rem;
  }

  .about-cta h2 {
    font-size: 1.5rem;
  }

  .cta-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }

  .global-impact {
    padding: 2rem 1rem;
  }

  .global-impact h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .impact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .impact-block {
    padding: 1.5rem;
  }

  .impact-block h3 {
    font-size: 2rem;
  }

  .our-story {
    padding: 2rem 1rem;
  }

  .our-story h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .our-story p {
    font-size: 0.95rem;
  }

  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 70px;
  }


  .logo {
    font-size: 1.2rem;
  }

  .logo-img {
    width: 32px;
  }

  .about-hero h1 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .about-hero p {
    font-size: 0.95rem;
  }

  .value-card h3 {
    font-size: 14px;
  }

  .value-icon {
    width: 30px;
  }

  .story-container {
    max-width: 100%;
  }

  .footer-bottom {
    font-size: 0.75rem;
  }
}