  :root {
    --gold: #C8922A;
    --gold-light: #E8B84B;
    --gold-pale: #F5E6C8;
    --earth: #3D2B1F;
    --earth-mid: #6B4226;
    --cream: #FAF5EC;
    --charcoal: #1A1A1A;
    --green: #3A5C40;
    --green-light: #5A8A62;
    --text: #2C2C2C;
    --gray: #8A8A8A;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Barlow', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
    width: 100%;
    position: relative;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(26,26,26,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200,146,42,0.2);
  }

  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold-light);
    letter-spacing: 2px;
  }

  .nav-logo span { color: #fff; }

  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
  }

  .nav-toggle .bar {
    width: 100%;
    height: 2px;
    background: var(--gold-light);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .nav-toggle.active .bar:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
  .nav-toggle.active .bar:nth-child(2) { opacity: 0; }
  .nav-toggle.active .bar:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }


  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
  }

  .nav-links a:hover { color: var(--gold-light); }

  .nav-cta {
    background: var(--gold);
    color: #fff !important;
    padding: 10px 22px !important;
    border-radius: 2px;
    font-weight: 600 !important;
  }

  .nav-cta:hover { background: var(--gold-light); color: var(--earth) !important; }

  /* HERO */
  .hero {
    min-height: 100vh;
    background: var(--charcoal);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 70% 50%, rgba(200,146,42,0.12) 0%, transparent 70%),
      radial-gradient(ellipse 50% 80% at 20% 80%, rgba(58,92,64,0.2) 0%, transparent 60%),
      linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #1f1410 100%);
  }

  .hero-image {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.8)), url('../img/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
    opacity: 0.9;
  }

  .hero-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.4;
  }

  .hero-lines {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 45%;
    border-left: 1px solid rgba(200,146,42,0.15);
    background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(200,146,42,0.04) 60px,
      rgba(200,146,42,0.04) 61px
    );
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 60px 80px;
    max-width: 700px;
  }

  .hero-tag {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(200,146,42,0.4);
    padding: 6px 16px;
    margin-bottom: 28px;
    animation: fadeUp 0.8s ease both;
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 24px;
    animation: fadeUp 0.8s 0.15s ease both;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--gold-light);
  }

  .hero-sub {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 44px;
    animation: fadeUp 0.8s 0.3s ease both;
  }

  .hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.45s ease both;
  }

  .btn-primary {
    background: var(--gold);
    color: #fff;
    padding: 16px 36px;
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s;
  }

  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

  .btn-outline {
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.8);
    padding: 16px 36px;
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s;
  }

  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

  .hero-stats {
    position: absolute;
    right: 60px;
    bottom: 80px;
    display: flex;
    gap: 48px;
    animation: fadeUp 0.8s 0.6s ease both;
  }

  .stat {
    text-align: right;
  }

  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
  }

  .stat-label {
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-top: 4px;
  }

  .scroll-indicator {
    position: absolute;
    left: 60px;
    bottom: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.3);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: fadeUp 1s 0.8s ease both;
  }

  .scroll-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
    animation: scrollPulse 2s infinite;
  }

  @keyframes scrollPulse {
    0%, 100% { opacity: 0.4; width: 40px; }
    50% { opacity: 1; width: 60px; }
  }

  /* MARQUEE */
  .marquee-wrap {
    background: var(--gold);
    padding: 14px 0;
    overflow: hidden;
  }

  .marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
  }

  .marquee-item {
    flex-shrink: 0;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--earth);
    font-weight: 600;
    padding: 0 40px;
  }

  .marquee-dot { color: var(--earth); opacity: 0.5; }

  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ABOUT */
  .about {
    padding: 120px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--earth);
    margin-bottom: 24px;
  }

  .section-body {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
  }

  .about-visual {
    position: relative;
  }

  .about-card {
    background: var(--earth);
    color: #fff;
    padding: 48px 40px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
  }

  .about-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(200,146,42,0.3) 0%, transparent 70%);
  }

  .about-card-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
  }

  .about-card-item:last-child { margin-bottom: 0; }

  .about-icon {
    width: 44px;
    height: 44px;
    background: rgba(200,146,42,0.2);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.4rem;
  }

  .about-card-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 4px;
  }

  .about-card-val {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
  }

  /* PRODUCTS */
  .products {
    background: var(--earth);
    padding: 100px 60px;
    position: relative;
    overflow: hidden;
  }

  .products::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,146,42,0.08) 0%, transparent 70%);
  }

  .products-header {
    text-align: center;
    margin-bottom: 70px;
  }

  .products-header .section-tag { color: var(--gold-light); }

  .products-header .section-title { color: #fff; }

  .products-header p { color: rgba(255,255,255,0.5); max-width: 480px; margin: 0 auto; }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .product-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    background: #1a1a1a;
  }

  .product-card:first-child { border-radius: 4px 0 0 0; }
  .product-card:nth-child(2) { border-radius: 0 4px 0 0; }
  .product-card:nth-child(3) { border-radius: 0 0 0 4px; }
  .product-card:last-child { border-radius: 0 0 4px 0; }

  .product-emoji {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    opacity: 0.15;
    transition: all 0.5s;
  }

  .product-bg {
    position: absolute;
    inset: 0;
    transition: all 0.5s ease;
  }

  .product-card:nth-child(1) .product-bg { background: linear-gradient(135deg, #2C1810 0%, #4A2C1A 100%); }
  .product-card:nth-child(2) .product-bg { background: linear-gradient(135deg, #1A2C15 0%, #2A4A20 100%); }
  .product-card:nth-child(3) .product-bg { background: linear-gradient(135deg, #2A1A08 0%, #4A3010 100%); }
  .product-card:nth-child(4) .product-bg { background: linear-gradient(135deg, #2C0A14 0%, #4A1020 100%); }

  .product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    transition: opacity 0.4s;
    z-index: 2;
  }

  .product-img-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
  }

  .product-card:hover .product-img-bg {
    transform: scale(1.1);
  }

  .product-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 36px 36px 36px;
    transform: translateY(0);
    transition: transform 0.4s ease;
  }

  .product-num {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 8px;
    font-style: italic;
  }

  .product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .product-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s;
    opacity: 0;
  }

  .product-tag {
    display: inline-block;
    margin-top: 14px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
    border-top: 1px solid rgba(200,146,42,0.3);
    padding-top: 12px;
    opacity: 0;
    transition: opacity 0.4s;
  }

  .product-card:hover .product-emoji { opacity: 0.25; transform: scale(1.1); }
  .product-card:hover .product-desc { max-height: 100px; opacity: 1; }
  .product-card:hover .product-tag { opacity: 1; }

  /* WHY */
  .why {
    padding: 100px 60px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
  }

  .why-card {
    padding: 36px 30px;
    border: 1px solid rgba(200,146,42,0.2);
    border-radius: 4px;
    position: relative;
    background: #fff;
    transition: all 0.3s;
  }

  .why-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(200,146,42,0.08);
  }

  .why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    border-radius: 4px 4px 0 0;
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
  }

  .why-card:hover::before { transform: scaleX(1); }

  .why-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
  }

  .why-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--earth);
    margin-bottom: 10px;
  }

  .why-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
  }

  /* PROCESS */
  .process {
    background: var(--cream);
    padding: 100px 60px;
    border-top: 1px solid rgba(200,146,42,0.15);
    border-bottom: 1px solid rgba(200,146,42,0.15);
  }

  .process-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 60px;
    position: relative;
  }

  .process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(to right, var(--gold), rgba(200,146,42,0.2));
  }

  .step {
    text-align: center;
    padding: 0 20px;
  }

  .step-num {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
  }

  .step-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--earth);
    margin-bottom: 8px;
  }

  .step-text {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.6;
  }

  /* CONTACT */
  .contact {
    padding: 100px 60px;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
  }

  .contact::before {
    content: '';
    position: absolute;
    top: -300px; left: -300px;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,146,42,0.06) 0%, transparent 70%);
  }

  .contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
  }

  .contact-left .section-tag { color: var(--gold-light); }
  .contact-left .section-title { color: #fff; }

  .contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
  }

  .contact-icon {
    font-size: 1.4rem;
    width: 44px;
    flex-shrink: 0;
  }

  .contact-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
  }

  .contact-value {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .contact-form {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(200,146,42,0.2);
    padding: 44px 40px;
    border-radius: 4px;
  }

  .form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 28px;
  }

  .form-group {
    margin-bottom: 18px;
  }

  .form-label {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
  }

  .form-input, .form-select, .form-textarea {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 12px 16px;
    font-family: 'Barlow', sans-serif;
    font-size: 0.9rem;
    border-radius: 2px;
    outline: none;
    transition: border-color 0.3s;
    appearance: none;
  }

  .form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--gold);
  }

  .form-select option { background: #2a2a2a; }

  .form-textarea { resize: vertical; min-height: 100px; }

  .form-btn {
    width: 100%;
    background: var(--gold);
    color: #fff;
    border: none;
    padding: 16px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
  }

  .form-btn:hover { background: var(--gold-light); transform: translateY(-2px); }

  /* GALLERY */
  .gallery {
    padding: 100px 60px;
    background: var(--cream);
  }

  .gallery-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .gallery-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .gallery-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 28px;
  }

  .filter-btn {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 8px 22px;
    border: 1px solid rgba(200,146,42,0.35);
    background: transparent;
    color: var(--earth-mid);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.25s;
  }

  .filter-btn.active, .filter-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 12px;
  }

  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    cursor: pointer;
    background: #1a1a1a;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: 1; }
  .gallery-item:nth-child(2) { aspect-ratio: 1; }
  .gallery-item:nth-child(3) { aspect-ratio: 1; }
  .gallery-item:nth-child(4) { grid-column: span 2; aspect-ratio: 2/1; }
  .gallery-item:nth-child(5) { aspect-ratio: 1; }
  .gallery-item:nth-child(6) { aspect-ratio: 1; }
  .gallery-item:nth-child(7) { aspect-ratio: 1; }
  .gallery-item:nth-child(8) { aspect-ratio: 1; }

  .gallery-item:hover { transform: scale(1.02); box-shadow: 0 16px 40px rgba(0,0,0,0.25); z-index: 2; }

  .gallery-visual {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
  }

  .gallery-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .gallery-item:hover .gallery-img {
    transform: scale(1.1);
  }

  .gallery-caption {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.35s;
    z-index: 2;
  }

  .gallery-item:hover .gallery-caption { opacity: 1; }

  .gallery-cap-text {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
  }

  .gallery-cap-sub {
    font-size: 0.75rem;
    color: var(--gold-light);
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 1px;
    margin-top: 3px;
  }

  /* LIGHTBOX */
  .lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .lightbox.open { opacity: 1; pointer-events: all; }

  .lightbox-content {
    text-align: center;
    max-width: 600px;
    padding: 40px;
  }

  .lightbox-emoji { font-size: 8rem; margin-bottom: 20px; }

  .lightbox-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
  }

  .lightbox-desc {
    color: rgba(255,255,255,0.55);
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .lightbox-close {
    position: absolute;
    top: 30px; right: 40px;
    font-size: 2rem;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.2s;
  }

  .lightbox-close:hover { color: var(--gold); }

  /* FAQ */
  .faq {
    padding: 100px 60px;
    background: var(--earth);
    position: relative;
    overflow: hidden;
  }

  .faq::before {
    content: '';
    position: absolute;
    bottom: -200px; right: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,146,42,0.07) 0%, transparent 70%);
  }

  .faq-inner {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .faq-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .faq-header .section-tag { color: var(--gold-light); }
  .faq-header .section-title { color: #fff; }
  .faq-header p { color: rgba(255,255,255,0.45); margin-top: 12px; }

  .faq-list { display: flex; flex-direction: column; gap: 2px; }

  .faq-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(200,146,42,0.15);
    border-radius: 3px;
    overflow: hidden;
    transition: border-color 0.3s;
  }

  .faq-item.open { border-color: rgba(200,146,42,0.5); }

  .faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    gap: 20px;
  }

  .faq-q-text {
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
    line-height: 1.4;
  }

  .faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(200,146,42,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 300;
    transition: all 0.3s;
  }

  .faq-item.open .faq-icon {
    background: var(--gold);
    color: #fff;
    transform: rotate(45deg);
  }

  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding: 0 28px;
  }

  .faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 28px 24px;
  }

  .faq-a p {
    color: rgba(255,255,255,0.55);
    font-size: 0.92rem;
    line-height: 1.75;
    border-top: 1px solid rgba(200,146,42,0.12);
    padding-top: 16px;
  }


  /* FOOTER */
  /* FOOTER REDESIGN */
  .main-footer {
    background: #0a0a0a;
    color: #fff;
    padding: 100px 0 0;
    font-family: 'Barlow', sans-serif;
    border-top: 1px solid rgba(200,146,42,0.1);
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    padding: 0 60px 80px;
  }

  .footer-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--gold-light);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }

  .footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 35px; height: 2px;
    background: var(--gold);
  }

  .footer-bio {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    margin-top: 20px;
    max-width: 320px;
  }

  .footer-links-list {
    list-style: none;
    padding: 0;
  }

  .footer-links-list li {
    margin-bottom: 16px;
  }

  .footer-links-list a {
    color: rgba(255,255,255,0.6) !important;
    text-decoration: none !important;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
  }

  .footer-links-list a:hover {
    color: var(--gold-light) !important;
    transform: translateX(6px);
  }

  .footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 22px;
    align-items: flex-start;
  }

  .footer-contact-item p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    margin: 0;
  }

  .f-icon {
    font-size: 1.1rem;
    color: var(--gold);
    opacity: 0.9;
    margin-top: 2px;
  }

  /* Sub Footer */
  .sub-footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 40px 60px;
    background: #050505;
  }

  .sub-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
  }

  .copyright-text {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.5px;
    line-height: 1.6;
  }

  .partner-box {
    text-align: right;
  }

  .ew-logo {
    display: block;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: all 0.3s;
    text-decoration: none;
  }

  .ew-logo:hover { opacity: 1; color: var(--gold-light); }

  .ew-logo span { color: var(--gold); }


  /* Back to Top */
  .back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 48px;
    height: 48px;
    background: rgba(26,26,26,0.9);
    backdrop-filter: blur(10px);
    color: var(--gold-light);
    border: 1px solid rgba(200,146,42,0.4);
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
  }

  .back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .back-to-top:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
  }

  .back-to-top .arrow {
    font-size: 1.2rem;
    font-weight: bold;
  }


  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    /* Prevent horizontal overflow strictly */
    *, *::before, *::after { box-sizing: border-box !important; min-width: 0 !important; }

    html, body { 
      overflow-x: hidden !important; 
      width: 100% !important; 
      position: relative;
    }

    /* Hide large decorative pseudo elements on mobile */
    .hero-lines, .hero-grain, .products::before, .about-visual::before, .contact::before, .faq::before {
      display: none !important;
    }

    nav { padding: 18px 20px; background: rgba(26,26,26,0.98); }
    
    .nav-toggle { 
      display: flex !important; 
      order: 2;
    }

    .nav-links {
      position: fixed;
      top: 0;
      right: 0;
      width: 100%;
      height: 100vh;
      background: rgba(13, 13, 13, 0.99);
      backdrop-filter: blur(20px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
      z-index: 100;
      padding: 60px 24px;
      visibility: hidden;
    }

    .nav-links.active {
      transform: translateX(0);
      visibility: visible;
    }

    .nav-links a { font-size: 1.25rem; letter-spacing: 4px; }

    .hero {
      flex-direction: column !important;
      justify-content: center !important;
      align-items: center !important;
      padding: 120px 20px 60px !important;
      min-height: auto !important;
    }

    .hero-content { 
      padding: 0 !important; 
      text-align: center !important; 
      width: 100% !important; 
      max-width: 100% !important;
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
    }

    .hero h1 { 
      font-size: clamp(2.2rem, 8vw, 2.8rem) !important; 
      margin-bottom: 20px !important;
    }
    .hero-sub { 
      font-size: 0.95rem;
      margin-bottom: 30px !important;
    }
    
    .hero-btns { 
      flex-direction: column !important;
      align-items: stretch !important;
      width: 100% !important;
    }
    
    .btn-primary, .btn-outline {
      width: 100% !important;
      text-align: center !important;
    }

    .hero-stats {
      position: static !important;
      margin-top: 50px !important;
      gap: 24px !important;
      width: 100% !important;
    }
    
    .stat { text-align: center !important; }
    .scroll-indicator { display: none !important; }

    /* Universal padding and width reset for mobile */
    section { 
      padding: 60px 20px !important; 
      width: 100% !important;
      overflow: hidden !important;
    }

    .about { grid-template-columns: 1fr !important; gap: 40px !important; }
    .about-visual, .about-card { width: 100% !important; }
    .about-card { padding: 30px 20px !important; }
    
    .products-grid, .why-grid, .process-steps, .gallery-grid, .contact-inner { 
      grid-template-columns: 1fr !important; 
      width: 100% !important;
      gap: 20px !important;
    }

    .product-card { aspect-ratio: 1/1 !important; border-radius: 4px !important; }
    .gallery-item { aspect-ratio: 4/3 !important; grid-column: auto !important; grid-row: auto !important; }

    .faq-inner, .contact-form, .process-inner { width: 100% !important; }
    .contact-form { padding: 30px 20px !important; }

    .main-footer { padding: 60px 0 0 !important; }
    .footer-container { 
      grid-template-columns: 1fr !important; 
      padding: 0 20px 40px !important;
      gap: 40px !important;
    }
    .footer-bio { max-width: 100% !important; }
    .sub-footer { padding: 30px 20px !important; }
    .sub-footer-container { 
      flex-direction: column !important; 
      text-align: center !important;
      gap: 20px !important;
    }
    .partner-box { text-align: center !important; }
    .back-to-top { bottom: 20px !important; right: 20px !important; }
  }

