:root {
    --espresso: #1a0e06;
    --mahogany: #2d1505;
    --sienna: #7b3f1e;
    --tan: #c8813a;
    --caramel: #d4943f;
    --cream: #f5ede0;
    --parchment: #efe4d2;
    --warm-white: #faf6f0;
    --gold: #b8976a;
    --gold-light: #d4b896;
    --text-dark: #1a0e06;
    --text-mid: #5a3a22;
    --text-light: #9b7355;
    --border: rgba(180,140,90,0.25);
    --shadow: rgba(26,14,6,0.15);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--warm-white);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* ─── SCROLLBAR ─────────────────────────────── */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--cream); }
  ::-webkit-scrollbar-thumb { background: var(--tan); border-radius: 3px; }

  /* ─── TYPOGRAPHY ────────────────────────────── */
  h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; }

  /* ─── NAV ────────────────────────────────────── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0 48px;
    display: flex; align-items: center; justify-content: space-between;
    height: 84px;
    transition: background 0.4s, box-shadow 0.4s;
  }
  nav.scrolled {
    background: rgba(26,14,6,0.96);
    box-shadow: 0 2px 32px rgba(0,0,0,0.3);
    backdrop-filter: blur(12px);
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 600; letter-spacing: 0.12em;
    color: var(--cream); text-decoration: none;
    display: flex; align-items: center; gap: 10px;
  }
  .nav-logo span { color: var(--caramel); }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    color: rgba(245,237,224,0.85); text-decoration: none;
    font-size: 0.78rem; font-weight: 500; letter-spacing: 0.18em;
    text-transform: uppercase; transition: color 0.3s;
    position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--caramel); transition: width 0.3s;
  }
  .nav-links a:hover { color: var(--caramel); }
  .nav-links a:hover::after { width: 100%; }
  .hamburger {
    display: none; flex-direction: column; gap: 5px; cursor: pointer;
    background: none; border: none; padding: 4px;
  }
  .hamburger span {
    display: block; width: 24px; height: 1.5px; background: var(--cream);
    transition: all 0.3s;
  }
  .mobile-menu {
    display: none; position: fixed; inset: 0; z-index: 999;
    background: var(--espresso); flex-direction: column;
    align-items: center; justify-content: center; gap: 36px;
    opacity: 0; transition: opacity 0.3s;
  }
  .mobile-menu.open { display: flex; opacity: 1; }
  .mobile-menu a {
    color: var(--cream); text-decoration: none; font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 400; letter-spacing: 0.1em; transition: color 0.3s;
  }
  .mobile-menu a:hover { color: var(--caramel); }
  .mobile-close {
    position: absolute; top: 24px; right: 32px; background: none; border: none;
    color: var(--cream); font-size: 2rem; cursor: pointer;
  }

  /* ─── HERO ────────────────────────────────────── */
  #home {
    min-height: 100vh; position: relative;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(135deg, rgba(26,14,6,0.85) 0%, rgba(45,21,5,0.7) 50%, rgba(123,63,30,0.5) 100%),
      url('https://images.unsplash.com/photo-1548036328-c9fa89d128fa?w=1800&q=80') center/cover no-repeat;
  }
  .hero-texture {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b8976a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
  .hero-content {
    position: relative; z-index: 2; text-align: center; padding: 0 24px;
    max-width: 760px;
    animation: heroFade 1.2s ease forwards;
  }
  @keyframes heroFade {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    border: 1px solid var(--gold); color: var(--gold-light);
    padding: 6px 20px; border-radius: 2px; font-size: 0.7rem;
    letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 32px;
    animation: heroFade 1.2s 0.2s ease both;
  }
  .hero-badge::before, .hero-badge::after {
    content: '✦'; font-size: 0.5rem; color: var(--caramel);
  }
  .hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 300; line-height: 1.15;
    color: var(--cream); letter-spacing: 0.03em; margin-bottom: 20px;
    animation: heroFade 1.2s 0.3s ease both;
  }
  .hero-title em { font-style: italic; color: var(--caramel); }
  .hero-sub {
    font-size: 1rem; font-weight: 300; color: rgba(245,237,224,0.75);
    line-height: 1.8; letter-spacing: 0.05em; margin-bottom: 48px;
    animation: heroFade 1.2s 0.45s ease both;
  }
  .hero-actions {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    animation: heroFade 1.2s 0.6s ease both;
  }
  .btn-primary {
    padding: 14px 40px; background: var(--caramel); color: var(--espresso);
    border: none; font-family: 'Jost', sans-serif; font-size: 0.75rem;
    font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
    cursor: pointer; text-decoration: none; transition: all 0.3s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--tan); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
  .btn-outline {
    padding: 14px 40px; background: transparent;
    border: 1px solid rgba(245,237,224,0.5); color: var(--cream);
    font-family: 'Jost', sans-serif; font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer;
    text-decoration: none; transition: all 0.3s; display: inline-block;
  }
  .btn-outline:hover {
    border-color: var(--caramel); color: var(--caramel);
    transform: translateY(-2px);
  }
  .hero-scroll {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(245,237,224,0.5); font-size: 0.65rem; letter-spacing: 0.2em;
    text-transform: uppercase; animation: bounce 2s ease-in-out infinite;
  }
  .hero-scroll svg { opacity: 0.5; }
  @keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

  /* ─── SECTION COMMON ─────────────────────────── */
  section { padding: 100px 48px; }
  .section-label {
    font-size: 0.68rem; letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--caramel); font-weight: 500; margin-bottom: 12px;
    display: flex; align-items: center; gap: 14px;
  }
  .section-label::before {
    content: ''; width: 40px; height: 1px; background: var(--caramel); display: block;
  }
  .section-title {
    font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; line-height: 1.25;
    color: var(--espresso); letter-spacing: 0.02em;
  }
  .section-title em { font-style: italic; color: var(--sienna); }
  .divider {
    width: 60px; height: 2px; background: var(--caramel);
    margin: 24px 0; display: block;
  }

  /* ─── ABOUT ──────────────────────────────────── */
  #about { background: var(--espresso); }
  .about-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }
  .about-images {
    position: relative; height: 560px;
  }
  .about-img-main {
    position: absolute; top: 0; left: 0;
    width: 70%; height: 80%;
    background: url('https://images.unsplash.com/photo-1473188588951-666fce8e7c68?w=800&q=80') center/cover;
    border: 3px solid rgba(200,129,58,0.2);
  }
  .about-img-secondary {
    position: absolute; bottom: 0; right: 0;
    width: 55%; height: 50%;
    background: url('https://images.unsplash.com/photo-1585386959984-a4155224a1ad?w=800&q=80') center/cover;
    border: 3px solid rgba(200,129,58,0.2);
    box-shadow: -20px -20px 0 rgba(200,129,58,0.1);
  }
  .about-year {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    background: var(--caramel); color: var(--espresso);
    width: 80px; height: 80px; display: flex; flex-direction: column;
    align-items: center; justify-content: center; z-index: 2;
  }
  .about-year strong { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; line-height: 1; }
  .about-year span { font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase; }
  .about-content .section-label { color: var(--caramel); }
  .about-content .section-title { color: var(--cream); }
  .about-content .divider { background: var(--caramel); }
  .about-text {
    color: rgba(245,237,224,0.65); line-height: 1.9; font-weight: 300;
    font-size: 0.95rem; margin-bottom: 40px;
  }
  .about-pillars {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  }
  .pillar {
    padding: 20px; border: 1px solid rgba(180,140,90,0.2);
    transition: border-color 0.3s, background 0.3s;
  }
  .pillar:hover { border-color: var(--caramel); background: rgba(200,129,58,0.06); }
  .pillar-icon { font-size: 1.4rem; margin-bottom: 10px; }
  .pillar h4 { color: var(--gold-light); font-size: 0.85rem; font-family: 'Jost', sans-serif; font-weight: 500; letter-spacing: 0.08em; }

  /* ─── PRODUCTS ───────────────────────────────── */
  #products { background: var(--warm-white); }
  .products-wrapper { max-width: 1200px; margin: 0 auto; }
  .products-header { text-align: center; margin-bottom: 60px; }
  .products-header .section-label { justify-content: center; }
  .products-header .section-label::before { display: none; }
  .products-header .divider { margin: 24px auto; }
  .category-tabs {
    display: flex; gap: 0; justify-content: center;
    border-bottom: 1px solid var(--border); margin-bottom: 52px;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
  }
  .cat-tab {
    padding: 12px 28px; font-family: 'Jost', sans-serif;
    font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
    font-weight: 500; background: none; border: none; cursor: pointer;
    color: var(--text-light); transition: all 0.3s; border-bottom: 2px solid transparent;
    margin-bottom: -1px; white-space: nowrap;
  }
  .cat-tab.active, .cat-tab:hover { color: var(--espresso); border-bottom-color: var(--caramel); }
  .products-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  }
  .product-card {
    cursor: pointer; position: relative;
    transition: transform 0.4s;
  }
  .product-card:hover { transform: translateY(-6px); }
  .product-card-img {
    width: 100%; padding-bottom: 120%; position: relative;
    overflow: hidden; background: var(--parchment);
  }
  .product-card-img img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.7s ease;
  }
  .product-card:hover .product-card-img img { transform: scale(1.06); }
  .quick-view {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(26,14,6,0.9); color: var(--cream);
    text-align: center; padding: 14px;
    font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
    opacity: 0; transform: translateY(100%); transition: all 0.35s;
  }
  .product-card:hover .quick-view { opacity: 1; transform: translateY(0); }
  .product-badge {
    position: absolute; top: 16px; left: 16px; z-index: 2;
    background: var(--caramel); color: var(--espresso);
    font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase;
    padding: 4px 10px; font-weight: 600;
  }
  .product-info { padding: 18px 4px 4px; }
  .product-info h3 {
    font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 500;
    color: var(--espresso); letter-spacing: 0.03em; margin-bottom: 6px;
  }
  .product-meta { display: flex; justify-content: space-between; align-items: center; }
  .product-price { font-size: 0.95rem; font-weight: 500; color: var(--sienna); }
  .product-stars { color: var(--caramel); font-size: 0.7rem; letter-spacing: 2px; }
  .products-cta { text-align: center; margin-top: 52px; }

  /* MODAL */
  .modal-overlay {
    display: none; position: fixed; inset: 0; z-index: 2000;
    background: rgba(26,14,6,0.92); align-items: center; justify-content: center;
    padding: 24px;
  }
  .modal-overlay.open { display: flex; }
  .modal {
    background: var(--warm-white); max-width: 840px; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr;
    max-height: 90vh; overflow-y: auto;
    position: relative;
  }
  .modal-img {
    background: var(--parchment);
    min-height: 400px;
  }
  .modal-img img { width: 100%; height: 100%; object-fit: cover; }
  .modal-body { padding: 48px 40px; }
  .modal-cat { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-light); margin-bottom: 12px; }
  .modal-title { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 400; color: var(--espresso); margin-bottom: 16px; }
  .modal-price { font-size: 1.3rem; color: var(--sienna); font-weight: 500; margin-bottom: 24px; }
  .modal-desc { font-size: 0.9rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 28px; }
  .modal-features { list-style: none; margin-bottom: 36px; }
  .modal-features li { font-size: 0.85rem; color: var(--text-mid); padding: 6px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
  .modal-features li::before { content: '—'; color: var(--caramel); }
  .modal-actions { display: flex; gap: 12px; flex-wrap: wrap; }
  .modal-close {
    position: absolute; top: 16px; right: 20px; font-size: 1.5rem;
    background: none; border: none; cursor: pointer; color: var(--text-mid);
    transition: color 0.3s;
  }
  .modal-close:hover { color: var(--espresso); }

  /* ─── BLOG ───────────────────────────────────── */
  #blog { background: var(--parchment); }
  .blog-wrapper { max-width: 1200px; margin: 0 auto; }
  .blog-header { margin-bottom: 52px; }
  .blog-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; }
  .blog-card {
    background: var(--warm-white); overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s; cursor: pointer;
  }
  .blog-card:hover { box-shadow: 0 12px 40px var(--shadow); transform: translateY(-4px); }
  .blog-card-img {
    width: 100%; height: 220px; overflow: hidden;
    background: var(--parchment); position: relative;
  }
  .blog-card.featured .blog-card-img { height: 300px; }
  .blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
  .blog-card:hover .blog-card-img img { transform: scale(1.04); }
  .blog-tag {
    position: absolute; bottom: 14px; left: 14px;
    background: var(--caramel); color: var(--espresso);
    font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase;
    padding: 4px 10px; font-weight: 600;
  }
  .blog-body { padding: 24px; }
  .blog-date { font-size: 0.68rem; color: var(--text-light); letter-spacing: 0.1em; margin-bottom: 10px; }
  .blog-body h3 {
    font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 500;
    color: var(--espresso); line-height: 1.4; margin-bottom: 10px;
  }
  .blog-card.featured .blog-body h3 { font-size: 1.55rem; }
  .blog-excerpt { font-size: 0.85rem; color: var(--text-mid); line-height: 1.75; }
  .blog-read-more {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 16px; font-size: 0.72rem; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--sienna); font-weight: 600;
    text-decoration: none; transition: gap 0.3s;
  }
  .blog-read-more:hover { gap: 14px; }
  .blog-cta { text-align: center; margin-top: 48px; }

  /* ─── OTHERS ─────────────────────────────────── */
  #others { background: var(--espresso); }
  .others-wrapper { max-width: 1200px; margin: 0 auto; }
  .others-header .section-label { color: var(--caramel); }
  .others-header .section-title { color: var(--cream); }
  .others-header .divider { background: var(--caramel); margin-bottom: 52px; }
  .others-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .other-card {
    border: 1px solid rgba(180,140,90,0.2); padding: 40px 32px;
    transition: all 0.35s; cursor: pointer; position: relative; overflow: hidden;
  }
  .other-card::before {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 100%; height: 3px; background: var(--caramel);
    transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
  }
  .other-card:hover { border-color: rgba(200,129,58,0.5); background: rgba(200,129,58,0.05); }
  .other-card:hover::before { transform: scaleX(1); }
  .other-icon { font-size: 2.2rem; margin-bottom: 20px; }
  .other-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 500; color: var(--cream); margin-bottom: 12px; }
  .other-card p { font-size: 0.85rem; color: rgba(245,237,224,0.6); line-height: 1.75; margin-bottom: 24px; }
  .other-link {
    font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--caramel); font-weight: 600; display: inline-flex;
    align-items: center; gap: 8px; text-decoration: none; transition: gap 0.3s;
  }
  .other-link:hover { gap: 14px; }

  /* ─── STATS ──────────────────────────────────── */
  .stats-band {
    background: var(--sienna); padding: 60px 48px;
    display: flex; justify-content: center; gap: 0;
  }
  .stat {
    text-align: center; flex: 1; max-width: 220px;
    border-right: 1px solid rgba(255,255,255,0.2); padding: 0 40px;
  }
  .stat:last-child { border-right: none; }
  .stat strong {
    display: block; font-family: 'Cormorant Garamond', serif;
    font-size: 3rem; font-weight: 300; color: var(--cream); line-height: 1;
  }
  .stat span { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,237,224,0.7); margin-top: 8px; display: block; }

  /* ─── CONTACT ────────────────────────────────── */
  #contact { background: var(--warm-white); }
  .contact-wrapper { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; }
  .contact-info .section-title { margin-bottom: 8px; }
  .contact-info .divider { margin-bottom: 28px; }
  .contact-tagline { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 40px; font-weight: 300; }
  .contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
  .contact-detail-icon {
    width: 40px; height: 40px; background: var(--espresso);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    font-size: 1rem;
  }
  .contact-detail-text label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-light); display: block; margin-bottom: 4px; }
  .contact-detail-text span { font-size: 0.9rem; color: var(--espresso); font-weight: 400; }
  .social-links { display: flex; gap: 12px; margin-top: 36px; }
  .social-link {
    width: 40px; height: 40px; border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-mid); text-decoration: none; font-size: 0.9rem;
    transition: all 0.3s;
  }
  .social-link:hover { background: var(--espresso); color: var(--cream); border-color: var(--espresso); }
  .map-placeholder {
    margin-top: 36px; height: 200px; background: var(--parchment);
    border: 1px solid var(--border); display: flex; align-items: center;
    justify-content: center; overflow: hidden; position: relative;
  }
  .map-placeholder iframe { width: 100%; height: 100%; border: none; }

  /* FORM */
  .contact-form { }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { margin-bottom: 20px; }
  .form-group label {
    display: block; font-size: 0.68rem; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--text-light); margin-bottom: 8px; font-weight: 500;
  }
  .form-group input,
  .form-group textarea {
    width: 100%; padding: 13px 16px;
    border: 1px solid var(--border); background: var(--warm-white);
    font-family: 'Jost', sans-serif; font-size: 0.9rem; color: var(--espresso);
    transition: border-color 0.3s; outline: none; resize: none;
  }
  .form-group input:focus,
  .form-group textarea:focus { border-color: var(--caramel); }
  .form-group textarea { min-height: 130px; }
  .form-submit {
    width: 100%; padding: 16px; background: var(--espresso); color: var(--cream);
    border: none; font-family: 'Jost', sans-serif; font-size: 0.75rem;
    font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase;
    cursor: pointer; transition: background 0.3s, transform 0.2s; margin-top: 8px;
  }
  .form-submit:hover { background: var(--sienna); transform: translateY(-2px); }
  .form-success { display: none; text-align: center; padding: 32px; color: var(--sienna); }
  .form-success h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; margin-bottom: 8px; }

  /* ─── FOOTER ─────────────────────────────────── */
  footer { background: var(--mahogany); padding: 60px 48px 32px; }
  .footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(180,140,90,0.15); }
  .footer-brand .nav-logo { font-size: 1.5rem; display: block; margin-bottom: 16px; }
  .footer-brand p { font-size: 0.85rem; color: rgba(245,237,224,0.5); line-height: 1.8; }
  .footer-col h4 { font-family: 'Jost', sans-serif; font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 600; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a { color: rgba(245,237,224,0.5); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
  .footer-col ul li a:hover { color: var(--caramel); }
  .footer-bottom { max-width: 1200px; margin: 28px auto 0; display: flex; justify-content: space-between; align-items: center; }
  .footer-bottom p { font-size: 0.78rem; color: rgba(245,237,224,0.35); }
  .footer-bottom a { color: var(--gold); text-decoration: none; }

  /* ─── WHATSAPP FLOAT ─────────────────────────── */
  .whatsapp-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25d366; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4); text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: pulse 2.5s ease-in-out infinite;
  }
  .whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
  @keyframes pulse {
    0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
  }
  .whatsapp-float svg { width: 28px; height: 28px; fill: white; }

  /* ─── REVEAL ANIMATIONS ──────────────────────── */
  .reveal { opacity: 0; transform: translateY(30px); 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; }

  /* ─── RESPONSIVE ─────────────────────────────── */
  @media (max-width: 1024px) {
    .blog-grid { grid-template-columns: 1fr 1fr; }
    .blog-card:nth-child(3) { display: none; }
    .others-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-wrapper { gap: 48px; }
  }
  @media (max-width: 768px) {
    section { padding: 72px 24px; }
    nav { padding: 0 24px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .about-grid { grid-template-columns: 1fr; }
    .about-images { height: 320px; }
    .products-grid { grid-template-columns: 1fr 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-card:nth-child(3) { display: block; }
    .others-grid { grid-template-columns: 1fr; }
    .stats-band { flex-wrap: wrap; gap: 32px; }
    .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 24px; }
    .stat:last-child { border-bottom: none; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .modal { grid-template-columns: 1fr; }
    .modal-img { min-height: 250px; }
    .form-row { grid-template-columns: 1fr; }
    .about-pillars { grid-template-columns: 1fr; }
  }
  @media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn-primary, .btn-outline { width: 100%; text-align: center; }
  }