/*=============About us Style=============*/
 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --gold: #c9a84c;
    --gold-light: #e2c47a;
    --gold-dark: #8a6a1f;
    --gold-dim: #a68a3a;
    --gold-lt: #e8d59e;
    --bg-dark: #1a1612;
    --bg-mid: #221e19;
    --bg-card: #2a2520;
    --bg: #1a1612;
    --bg2: #2d2822;
    --bg3: #1f1b17;
    --text-primary: #f0e8d8;
    --text-muted: #a09070;
    --text: #d4cfc0;
    --text-dim: #8b7d6b;
    --border: rgba(201,168,76,0.2);
    --white: #ffffff;
    --card: #2a2520;
    --input-bg: #1f1b17;
  }

  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 ─── */
    .hero {
      padding: 80px 48px 60px;
      text-align: center;
      max-width: 860px;
      margin: 0 auto;
    }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(52px, 7vw, 90px);
      font-weight: 400;
      color: var(--gold);
      line-height: 1.05;
      margin-bottom: 20px;
      margin-top: 14%;
    }
    .hero-rule {
      width: 48px;
      height: 1px;
      background: var(--gold-dim);
      margin: 0 auto 32px;
    }
    .hero-sub {
      font-style: italic;
      font-size: clamp(16px, 2vw, 19px);
      color: var(--text);
      max-width: 620px;
      margin: 0 auto;
    }

    /* ─── INFO CARDS ─── */
    .info-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      margin: 0 0 0 0;
    }
    .info-card {
      padding: 44px 24px;
      text-align: center;
      border-right: 1px solid var(--border);
      background: var(--card);
      transition: background 0.25s;
    }
    .info-card:last-child { border-right: none; }
    .info-card:hover { background: var(--bg2); }
    .info-icon {
      width: 44px;
      height: 44px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
    }
    .info-icon svg {
      width: 20px;
      height: 20px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .info-label {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 500;
      color: var(--white);
      margin-bottom: 8px;
    }
    .info-value {
      font-size: 14px;
      color: var(--text-dim);
    }

    /* ─── MAIN CONTENT ─── */
    .content-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      border-top: 1px solid var(--border);
    }

    /* ─── FORM SIDE ─── */
    .form-side {
      padding: 64px 48px 64px 48px;
      border-right: 1px solid var(--border);
    }
    .side-heading {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 44px;
    }
    .side-heading svg {
      width: 20px;
      height: 20px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex-shrink: 0;
    }
    .side-heading h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 32px;
      font-weight: 400;
      color: var(--white);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 20px;
    }
    .form-row.full { grid-template-columns: 1fr; }

    .field { display: flex; flex-direction: column; gap: 8px; }
    .field label {
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: 0.2em;
      color: var(--text-dim);
    }
    .field label span { color: var(--gold); margin-left: 2px; }

    .field input,
    .field textarea,
    .field select {
      background: var(--input-bg);
      border: 1px solid var(--border);
      color: var(--white);
      padding: 14px 16px;
      font-family: 'EB Garamond', serif;
      font-size: 15px;
      outline: none;
      transition: border-color 0.2s;
      width: 100%;
      -webkit-appearance: none;
      appearance: none;
    }
    .field input::placeholder,
    .field textarea::placeholder { color: var(--text-dim); }
    .field input:focus,
    .field textarea:focus,
    .field select:focus { border-color: var(--gold-dim); }

    .field textarea {
      height: 140px;
      resize: vertical;
    }

    .send-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--gold);
      color: var(--bg);
      border: none;
      padding: 16px 32px;
      font-family: 'Cinzel', serif;
      font-size: 11px;
      letter-spacing: 0.18em;
      cursor: pointer;
      transition: background 0.2s;
      margin-top: 12px;
    }
    .send-btn:hover { background: var(--gold-lt); }
    .send-btn svg {
      width: 16px;
      height: 16px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.5;
    }

    /* ─── MAP SIDE ─── */
    .map-side {
      padding: 64px 48px 64px 48px;
    }

    .map-embed {
      width: 100%;
      height: 290px;
      border: 1px solid var(--border);
      overflow: hidden;
      margin-bottom: 0;
    }
    .map-embed iframe {
      width: 100%;
      height: 100%;
      border: none;
      filter: grayscale(30%) invert(5%);
    }

    .store-info-box {
      border: 1px solid var(--border);
      border-top: none;
      background: var(--bg2);
      padding: 32px 28px;
    }
    .store-info-box h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 12px;
    }
    .store-info-box p {
      font-size: 14px;
      color: var(--text-dim);
      line-height: 1.7;
      margin-bottom: 20px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--border);
    }
    .store-hours { display: flex; flex-direction: column; gap: 8px; }
    .hours-row {
      display: flex;
      gap: 8px;
      font-size: 14px;
      color: var(--text-dim);
    }
    .hours-row strong { color: var(--text); font-weight: 500; }

    /* ─── NEWSLETTER ─── */
    .newsletter {
      background: var(--bg3);
      border-top: 1px solid var(--border);
      padding: 90px 48px;
      text-align: center;
    }
    .newsletter-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(34px, 5vw, 54px);
      font-weight: 400;
      color: var(--gold);
      margin-bottom: 14px;
    }
    .newsletter-sub {
      font-size: 16px;
      color: var(--text-dim);
      margin-bottom: 36px;
    }
    .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 18px;
      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-lt); }

    /* ─── ANIMATIONS ─── */
    .anim {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .anim.visible { opacity: 1; transform: translateY(0); }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .content-wrap { grid-template-columns: 1fr; }
      .form-side {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 56px 32px;
      }
      .map-side { padding: 56px 32px; }
    }

    @media (max-width: 768px) {
      nav { padding: 0 20px; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .nav-cart { display: none; }

      .hero { padding: 60px 24px 48px; }

      .info-strip { grid-template-columns: repeat(2, 1fr); }
      .info-card:nth-child(2) { border-right: none; }
      .info-card:nth-child(3) { border-top: 1px solid var(--border); }
      .info-card:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }

      .form-side,
      .map-side { padding: 48px 20px; }

      .form-row { grid-template-columns: 1fr; }

      .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

      .newsletter { padding: 72px 24px; }
      .newsletter-form { flex-direction: column; }
      .newsletter-form button { width: 100%; padding: 16px; }

      footer { padding: 60px 20px 32px; }
    }

    @media (max-width: 480px) {
      .info-strip { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
    }
      /* 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); }
  }
