/*=============About us Style=============*/
 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --gold: #c9a84c;
    --gold-light: #e2c47a;
    --gold-dark: #8a6a1f;
    --bg-dark: #1a1612;
    --bg-mid: #221e19;
    --bg-card: #2a2520;
    --text-primary: #f0e8d8;
    --text-muted: #a09070;
    --border: rgba(201,168,76,0.2);
    --white: #ffffff;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Cormorant Garamond', serif;
    overflow-x: hidden;
  }

/* NAVBAR */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(26, 22, 18, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--text-primary);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-icon {
  color: var(--text-primary);
  cursor: pointer;
  transition: color 0.2s;
}
.nav-icon:hover { color: var(--gold-light); }

/* HAMBURGER BUTTON */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text-primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* Hamburger → X animation */
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* MOBILE */
@media (max-width: 768px) {
  nav {
    padding: 18px 24px;
    flex-wrap: wrap;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    padding: 12px 0 4px;
    order: 3; /* pushes below logo + icons row */
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    border-top: 1px solid var(--border);
  }

  .nav-links a {
    display: block;
    padding: 14px 4px;
    font-size: 12px;
  }

  .nav-links a::after {
    display: none;
  }
}
.nav-logo-img {
  height: 85px;
  width: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 768px) {
  .nav-logo-img {
    height: 32px;
  }
}
    /* ── HERO / OUR STORY ── */
    .story-section {
      padding: 120px 48px 80px;
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
    }

    .eyebrow {
      font-family: 'Cinzel', serif;
      font-size: 11px;
      letter-spacing: 0.3em;
      color: var(--text-dim);
      margin-bottom: 24px;
      margin-top: 14%;
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(52px, 7vw, 88px);
      font-weight: 400;
      color: var(--gold);
      line-height: 1.1;
      margin-bottom: 20px;
    }

    .title-rule {
      width: 48px;
      height: 1px;
      background: var(--gold-dim);
      margin: 0 auto 48px;
    }

    .story-text {
      font-size: clamp(16px, 2vw, 20px);
      color: var(--text);
      max-width: 680px;
      margin: 0 auto;
      text-align: center;
    }

    /* ── STATS ── */
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-top: 1px solid var(--border);
    }

    .stat {
      padding: 60px 24px;
      text-align: center;
      border-right: 1px solid var(--border);
    }

    .stat:last-child { border-right: none; }

    .stat-number {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(40px, 5vw, 64px);
      font-weight: 300;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 12px;
    }

    .stat-label {
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: 0.22em;
      color: var(--text-dim);
    }

    /* ── JOURNEY / TIMELINE ── */
    .journey-section {
      padding: 120px 48px;
      text-align: center;
    }

    .journey-section .section-title {
      margin-bottom: 20px;
    }

    .timeline {
      position: relative;
      max-width: 860px;
      margin: 80px auto 0;
    }

    .timeline::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 1px;
      background: var(--border);
      transform: translateX(-50%);
    }

    .timeline-item {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 32px;
      align-items: start;
      margin-bottom: 64px;
    }

    .timeline-item:last-child { margin-bottom: 0; }

    .timeline-left {
      text-align: right;
      padding-right: 16px;
    }

    .timeline-right {
      text-align: left;
      padding-left: 16px;
    }

    .timeline-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--gold);
      margin-top: 6px;
      flex-shrink: 0;
    }

    .timeline-year {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 500;
      color: var(--gold);
      margin-bottom: 6px;
    }

    .timeline-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      font-weight: 500;
      color: var(--white);
      margin-bottom: 10px;
    }

    .timeline-desc {
      font-size: 15px;
      color: var(--text-dim);
      line-height: 1.6;
    }

    /* Even items: right side has content, left side is empty */
    .timeline-item.right .timeline-left { order: 1; }
    .timeline-item.right .timeline-dot-wrap { order: 2; }
    .timeline-item.right .timeline-right { order: 3; }

    .timeline-item.left .timeline-left { order: 3; text-align: left; padding-left: 16px; padding-right: 0; }
    .timeline-item.left .timeline-dot-wrap { order: 2; }
    .timeline-item.left .timeline-right { order: 1; text-align: right; padding-right: 16px; padding-left: 0; }

    .timeline-dot-wrap {
      display: flex;
      justify-content: center;
      padding-top: 6px;
    }

    /* ── VALUES ── */
    .values-section {
      padding: 120px 48px;
      text-align: center;
    }

    .values-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      max-width: 1080px;
      margin: 64px auto 0;
    }

    .value-card {
      background: var(--bg2);
      border: 1px solid var(--border);
      padding: 40px;
      text-align: left;
      transition: border-color 0.3s;
    }

    .value-card:hover { border-color: var(--gold-dim); }

    .value-icon {
      width: 48px;
      height: 48px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .value-icon svg {
      width: 22px;
      height: 22px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 1.5;
    }

    .value-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px;
      font-weight: 500;
      color: var(--white);
      margin-bottom: 14px;
    }

    .value-desc {
      font-size: 16px;
      color: var(--text-dim);
      line-height: 1.75;
    }

    /* ── QUOTE ── */
    .quote-section {
      background: var(--bg3);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 100px 48px;
      text-align: center;
    }

    .quote-mark {
      font-family: 'Cormorant Garamond', serif;
      font-size: 56px;
      color: var(--gold-dim);
      line-height: 0.5;
      margin-bottom: 32px;
    }

    .quote-text {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: clamp(22px, 3vw, 34px);
      font-weight: 400;
      color: var(--text);
      max-width: 820px;
      margin: 0 auto 32px;
      line-height: 1.5;
    }

    .quote-rule {
      width: 40px;
      height: 1px;
      background: var(--gold-dim);
      margin: 0 auto 20px;
    }

    .quote-author {
      font-family: 'Cinzel', serif;
      font-size: 11px;
      letter-spacing: 0.25em;
      color: var(--text-dim);
    }

    /* ── SERVICES ── */
    .services-section {
      padding: 120px 48px;
      text-align: center;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      max-width: 1080px;
      margin: 64px auto 0;
    }

    .service-card {
      background: var(--bg2);
      border: 1px solid var(--border);
      padding: 48px 32px 40px;
      text-align: center;
      transition: border-color 0.3s;
    }

    .service-card:hover { border-color: var(--gold-dim); }

    .service-icon {
      width: 52px;
      height: 52px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
    }

    .service-icon svg {
      width: 22px;
      height: 22px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 1.5;
    }

    .service-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-weight: 500;
      color: var(--white);
      margin-bottom: 10px;
    }

    .service-desc {
      font-size: 14px;
      color: var(--text-dim);
    }

    /* ── NEWSLETTER ── */
    .newsletter-section {
      background: var(--bg3);
      border-top: 1px solid var(--border);
      padding: 100px 48px;
      text-align: center;
    }

    .newsletter-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(34px, 5vw, 56px);
      font-weight: 400;
      color: var(--gold);
      margin-bottom: 16px;
    }

    .newsletter-sub {
      font-size: 16px;
      color: var(--text-dim);
      margin-bottom: 40px;
      max-width: 460px;
      margin-left: auto;
      margin-right: auto;
    }

    .newsletter-form {
      display: flex;
      gap: 12px;
      max-width: 500px;
      margin: 0 auto;
    }

    .newsletter-form input {
      flex: 1;
      background: transparent;
      border: 1px solid var(--border);
      color: var(--white);
      padding: 14px 20px;
      font-family: 'EB Garamond', serif;
      font-size: 15px;
      outline: none;
      transition: border-color 0.2s;
    }

    .newsletter-form input::placeholder { color: var(--text-dim); }
    .newsletter-form input:focus { border-color: var(--gold-dim); }

    .newsletter-form button {
      background: var(--gold);
      color: var(--bg);
      border: none;
      padding: 14px 28px;
      font-family: 'Cinzel', serif;
      font-size: 11px;
      letter-spacing: 0.18em;
      cursor: pointer;
      transition: background 0.2s;
      white-space: nowrap;
    }

    .newsletter-form button:hover { background: var(--gold-light); }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .anim {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .anim.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 0 24px; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .nav-cart { display: none; }

      .story-section { padding: 80px 24px 60px; }
      .journey-section,
      .values-section,
      .services-section,
      .newsletter-section { padding: 80px 24px; }
      .quote-section { padding: 72px 24px; }

      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .stat { border-bottom: 1px solid var(--border); }
      .stat:nth-child(2) { border-right: none; }
      .stat:nth-child(3) { border-bottom: none; }
      .stat:nth-child(4) { border-right: none; border-bottom: none; }

      .values-grid { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr 1fr; }

      .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

      .newsletter-form { flex-direction: column; }
      .newsletter-form button { width: 100%; padding: 16px; }

      /* Timeline mobile: single column */
      .timeline::before { left: 16px; }
      .timeline-item {
        grid-template-columns: auto 1fr;
        gap: 16px;
      }
      .timeline-item.right .timeline-left,
      .timeline-item.left .timeline-right { display: none; }
      .timeline-item.right .timeline-dot-wrap { order: 1; }
      .timeline-item.right .timeline-right { order: 2; text-align: left; padding-left: 0; }
      .timeline-item.left .timeline-dot-wrap { order: 1; }
      .timeline-item.left .timeline-left { order: 2; text-align: left; padding-left: 0; padding-right: 0; }
      .timeline-dot-wrap { justify-content: flex-start; padding-top: 8px; }
    }

    @media (max-width: 600px) {
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .services-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    }

      /* FOOTER */
  footer {
    background: var(--bg-dark);
    padding: 80px 48px 40px;
    border-top: 1px solid var(--border);
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto 60px;
  }

  .footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--gold-light);
    margin-bottom: 16px;
    display: block;
  }

  .footer-tagline {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
  }

  .footer-heading {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 24px;
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-links a {
    font-size: 16px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 300;
  }

  .footer-links a:hover { color: var(--gold-light); }

  .footer-contact p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-weight: 300;
    line-height: 1.5;
  }

  .footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-copy {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
  }

  /* SCROLL ANIMATIONS */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .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; }

  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    section { padding: 70px 24px; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .about-section.full-bleed { grid-template-columns: 1fr; padding: 70px 24px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .nav-links { gap: 20px; }
  }

  @media (max-width: 600px) {
    .nav-links { display: none; }
    .categories-grid { grid-template-columns: 1fr 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .newsletter-input { border-right: 1px solid var(--border); }
  }
