    /* ============================
       Design Tokens (Theme)
       ============================ */
    :root {
      --bg: #F3EDE4;           /* soft beige */
      --bg-2: #EFE7DB;         /* slightly deeper beige */
      --text: #111111;         /* near-black text */
      --muted: #6B6B6B;        /* muted text */
      --line: rgba(17,17,17,.08); /* subtle hairline */
      --accent: #C2A66B;       /* gentle gold accent (use sparingly) */

      --container: 1200px;
      --radius: 12px;
      --shadow-soft: 0 8px 24px rgba(0,0,0,.06);
      --transition: 220ms cubic-bezier(.2,.8,.2,1);
    }




    /* Loader container */
#loader {
  position: fixed;
  inset: 0;
  background: #f9f6f1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity .6s ease, visibility .6s ease;
}

/* Ring */
.loader-ring {
  position: relative;
  width: 90px;
  height: 90px;
  border: 6px solid transparent;
  border-top: 6px solid #c6a76f;
  border-right: 6px solid #e4cda1;
  border-radius: 50%;
  animation: spin 1.6s linear infinite;
  box-shadow: 0 0 15px rgba(198,167,111,0.5), 0 0 25px rgba(228,205,161,0.3);
  margin-bottom: 20px;
}

/* Sparkle/glint effect */
.loader-ring .sparkle {
  position: absolute;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, #fff 0%, #c6a76f 80%);
  border-radius: 50%;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  animation: sparkleMove 1.6s linear infinite;
}

/* Brand text */
.loader-text {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #2a2a2a;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #c6a76f, #e4cda1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShimmer 2.5s ease-in-out infinite;
}

/* Animations */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes sparkleMove {
  0% { transform: translateX(-50%) rotate(0deg); }
  100% { transform: translateX(-50%) rotate(360deg); }
}

@keyframes textShimmer {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Hide loader */
#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}













.fab-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
}

.fab {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: none;
  background: #cab078; /* premium beige */
  color: white;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .4s ease, background .3s;
}
.fab:hover { transform: scale(1.12); }

/* Main Button Animation */
.main-fab {
  position: relative;
  z-index: 2;
  transition: transform .4s ease;
}
.fab-container.active .main-fab {
  transform: rotate(45deg); /* + becomes × */
  background: #b89a5c;
}

/* Options hidden */
.fab-options {
  position: absolute;
  bottom: 0;
  right: 0;
  pointer-events: none;
}
.fab-options .fab {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45px;
  height: 45px;
  font-size: 0;
  background: #fff;
  color: #333;
  box-shadow: 0 5px 12px rgba(0,0,0,0.15);
  opacity: 0;
  transform: scale(0.5) translate(0,0);
  transition: all 0.4s cubic-bezier(.68,-0.55,.27,1.55);
}
.fab-options img, .fab-options svg {
  width: 20px;
  height: 20px;
}

/* Animation when active */
.fab-container.active .fab-options {
  pointer-events: auto;
}
.fab-container.active .fab-options .whatsapp {
  transform: scale(1) translate(-70px,-20px);
  opacity: 1;
  transition-delay: 0.05s;
}
.fab-container.active .fab-options .email {
  transform: scale(1) translate(-50px,-80px);
  opacity: 1;
  transition-delay: 0.15s;
}
.fab-container.active .fab-options .phone {
  transform: scale(1) translate(0,-110px);
  opacity: 1;
  transition-delay: 0.25s;
}





    /* ============================
       Base / Reset
       ============================ */
    * { box-sizing: border-box; }
    html:focus-within { scroll-behavior: smooth; }
    html, body { height: 100%; }
    body {
      margin: 0;
      font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
      font-size: 16px;
      line-height: 1.5;
      color: var(--text);
      background: linear-gradient(180deg, var(--bg), var(--bg-2));
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    img, picture, svg, video { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

    .container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
    .visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0; }

    /* Topbar */
    .topbar { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; font-size: .95rem; color: var(--muted); border-bottom: 1px solid var(--line); background: rgba(243,237,228,.6); }
    .topbar .left, .topbar .right { display: flex; gap: 14px; align-items: center; }
    .topbar .item { display:flex; gap:8px; align-items:center; }
    .icon-sm { width:18px; height:18px; opacity:.85; }

 /* Header / Navbar */
.site-header { 
  position: sticky; 
  top: 0; 
  z-index: 60; 
  backdrop-filter: saturate(140%) blur(6px); 
  background: rgba(243, 237, 228, .85); 
}

.nav { 
  display: grid; 
  grid-template-columns: auto 1fr auto; 
  align-items: center; 
  gap: 12px; 
  height: 72px; 
  border-bottom: 1px solid var(--line); 
}

.nav__brand { 
  display: flex; 
  align-items: center; 
  gap: .6rem; 
  font-weight: 600; 
  letter-spacing: .04em; 
}

.brand-mark { 
  width: 32px; 
  height: 32px; 
  border: 1px solid var(--line); 
  border-radius: 50%; 
  display: grid; 
  place-items: center; 
}

/* Center nav: dropdowns */
.nav-center { 
  display: flex; 
  justify-content: center; 
  gap: 18px; 
  align-items: center; 
}

.nav-center .nav-item { 
  position: relative; 
}

.nav-center button { 
  background: none; 
  border: 0; 
  padding: 8px 6px; 
  font-weight: 500; 
}

/* Dropdown container */
.dropdown {
  position: relative;
}

/* Dropdown button */
.dropbtn {
  text-decoration: none;
  padding: 10px 16px;
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: #111;
  cursor: pointer;
  transition: color 0.3s ease;
}
.dropbtn:hover {
  color: #c9a76b; /* gold hover */
}

/* Dropdown menu */
.nav-center .dropdown-content {
  position: absolute;
  top: calc(100% + 8px);              /* just below the link */
  left: 50%;                          /* center horizontally */
  transform: translateX(-50%) scale(.98);
  min-width: 200px;
  background: #fff;
  border-radius: 8px;
  padding: 10px 0;
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
  border: 1px solid #eee;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform-origin: top;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

/* Dropdown links */
.nav-center .dropdown-content a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  font-size: 14px;
  color: #111;
  transition: background 0.3s ease, color 0.3s ease;
}
.nav-center .dropdown-content a:hover {
  background: #f7f7f7;
  color: #c9a76b;
}

/* Show on hover */
.dropdown:hover .dropdown-content,
.nav-center .dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
  pointer-events: auto;
}





    /* Right actions */
    .nav-actions { display:flex; gap:10px; margin-left: 80px; align-items:center; }
    .icon-btn { width:40px; height:40px; display:grid; place-items:center; border:1px solid var(--line); border-radius:50%; transition: transform var(--transition); background: transparent; }
    .icon-btn:hover { transform: translateY(-3px); }

    /* Search bar that fades down beneath navbar */
    .search-bar { max-width:700px; margin: 12px auto; opacity:0; transform:translateY(-8px); transition: opacity 260ms ease, transform 260ms ease; }
    .search-bar.active { opacity:1; transform:translateY(0); margin-bottom: 7px; }
    .search-field { display:flex; gap:8px; align-items:center; border:1px solid var(--line); padding:10px 12px; border-radius:999px; background:white; }
    .search-field input { border:0; outline:0; font-size:1rem; flex:1; }

    /* Drawer / Mobile menu */
    /* Drawer (fullscreen) */
  /* ===========================
   Drawer (fullscreen from top)
   =========================== */
.drawer {
  position: fixed;
  inset: 0;
  background: var(--bg, #f3ede4);
  z-index: 1200;
  transform: translateY(-100%);
  transition: transform .36s cubic-bezier(.2,.9,.2,1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.drawer[data-open="true"] { transform: translateY(0); }

/* ===========================
   Panels
   =========================== */
.drawer-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: var(--bg, #f3ede4);
  will-change: transform;
}

/* Main panel visible by default */
.drawer-panel.main {
  transform: translateX(0);
  transition: transform .32s ease;
}

/* Submenu panel (slides from right) */
.drawer-panel.submenu {
  transform: translateX(100%);
  transition: transform .32s ease;
  width: 100%;       /* default full width (mobile) */
  max-width: 100%;
}
.drawer-panel.submenu.show {
  transform: translateX(0);
}

/* Submenu header */
.drawer-panel.submenu .drawer-head {
  padding: 14px 16px;
  font-size: 0.95rem;
}

/* Submenu links */
#submenuLinks {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* ===========================
   Header inside drawer
   =========================== */
.drawer-head {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px;
  border-bottom:1px solid rgba(0,0,0,0.06);
  background: transparent;
}
.drawer-head .title { font-weight:700; font-size:1rem; }
.close-btn, .back-btn {
  background:none; border:0; font-size:1.05rem; cursor:pointer; padding:6px;
}

/* ===========================
   Nav links list
   =========================== */
.drawer-links {
  overflow:auto;
  -webkit-overflow-scrolling: touch;
  display:flex;
  flex-direction:column;
}
.link-row {
  padding:14px 16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-bottom:1px solid rgba(0,0,0,0.04);
  font-weight:600;
  cursor:pointer;
  background:transparent;
}
.link-row:hover { background: rgba(0,0,0,0.03); }

/* ===========================
   Utilities (profile, wishlist, store, contact)
   =========================== */
.drawer-utilities {
  padding:14px 16px;
  border-top:1px solid rgba(0,0,0,0.06);
  display:flex;
  flex-direction:row;
  /* margin-left: 120px; */
  gap:10px;
}
.util-btn {
  display:flex;
  gap:12px;
  align-items:center;
  padding:10px 12px;
  border-radius:8px;
  cursor:pointer;
  font-weight:600;
  background: rgba(255,255,255,0.3);
}
.util-icon { width:20px; height:20px; display:inline-block; }

/* ===========================
   Submenu list items
   =========================== */
.submenu-list {
  display:flex;
  flex-direction:column;
}
.submenu-list a {
  padding:12px 16px;
  border-bottom:1px solid rgba(0,0,0,0.04);
  color:inherit;
  text-decoration:none;
}

/* ===========================
   Responsive adjustments
   =========================== */

/* Phones (<480px): full width */
@media (max-width: 480px) {
  .drawer-panel.submenu { width: 100%; }
}

/* Tablets (481px–900px): take 80% width from right */
@media (max-width: 900px) and (min-width: 481px) {
  .drawer-panel.submenu {
    width: 80%;
    left: auto;
    right: 0;
    border-left: 1px solid rgba(0,0,0,0.06);
  }
}

/* Larger screens: hide drawer completely */
@media (min-width: 901px) {
  .drawer { display:none; }
  .drawer-panel.submenu { display:none; }
}

    /* Country modal */
    .modal-backdrop { position:fixed; inset:0; background: rgba(0,0,0,.28); display:grid; place-items:center; opacity:0; pointer-events:none; transition: opacity 240ms ease; z-index:100; }
    .modal-backdrop.show { opacity:1; pointer-events:auto; }
    .modal { width: min(420px, 92%); background: white; border-radius:12px; padding:18px; transform: translateY(12px) scale(.99); opacity:0; transition: opacity 260ms ease, transform 260ms ease; box-shadow: var(--shadow-soft); }
    .modal-backdrop.show .modal { transform: translateY(0) scale(1); opacity:1; }
    .modal h3 { margin:0 0 10px; }
    .modal .row { display:flex; gap:10px; margin-bottom:12px; }
    .modal select { flex:1; padding:10px; border:1px solid var(--line); border-radius:8px; }
    .modal .actions { display:flex; justify-content:flex-end; gap:8px; }
    .btn-ghost { padding:8px 12px; border-radius:8px; border:1px solid var(--line); }
    .btn-primary { background:var(--accent); color:white; padding:8px 14px; border-radius:8px; }

    /* Responsive rules */
    @media (max-width: 900px) {
      .topbar { display:none; }
      .nav { grid-template-columns: auto 1fr auto; }
      .nav-center { display:none; }
      /* right icons: hide profile & wishlist on mobile, show cart */
      .icon-profile, .icon-wish { display:none; }
      .icon-cart { display:inline-grid; }
      /* mobile header minimal: logo left, search + cart right */
    }

    @media (min-width: 901px) {
      .drawer { display:none; }
      .mobile-only { display:none; }
    }


 




    /*/////////////// hero section ////////////*/


 .hero {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  background: #f3ede4;
}

/* Slideshow container */
.hero-slideshow {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}

.hero-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fadeSlideshow 12s infinite;
}

/* Staggered delays for each image */
.hero-slideshow img:nth-child(1) { animation-delay: 0s; }
.hero-slideshow img:nth-child(2) { animation-delay: 3s; }
.hero-slideshow img:nth-child(3) { animation-delay: 6s; }
.hero-slideshow img:nth-child(4) { animation-delay: 9s; }

/* Fade animation */
@keyframes fadeSlideshow {
  0%   { opacity: 0; }
  8%   { opacity: 1; }
  25%  { opacity: 1; }
  33%  { opacity: 0; }
  100% { opacity: 0; }
}

/* Overlay content */
.hero-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 90vh;
  padding: clamp(40px, 6vw, 100px);
  color: #111;
}

.hero-overlay h1 {
  font-size: clamp(1.8rem, 4vw + 1rem, 4rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-overlay p {
  font-size: clamp(0.9rem, 1vw + 0.6rem, 1.3rem);
  margin-bottom: 1.5rem;
  max-width: 600px;
}

/* Button */
.btn {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: clamp(10px, 1.5vw, 14px) clamp(20px, 3vw, 32px);
  border-radius: 30px;
  font-weight: 500;
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.1rem);
  transition: background 0.3s, transform 0.2s;
}
.btn:hover { 
  background: #333; 
  transform: translateY(-2px); 
}

/* Responsiveness */
@media(max-width: 900px) {
  .hero-overlay {
    align-items: center;
    text-align: center;
    padding: 50px 6%;
  }
  .hero-overlay p { max-width: 90%; }
}

@media(max-width: 480px) {
  .hero {
    min-height: 75vh; /* reduce height for small phones */
  }
  .hero-overlay {
    padding: 40px 5%;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
}











    /* Section */
    .brand-story {
      padding: 100px 20px;
      background: linear-gradient(135deg, #fff, var(--bg));
    }
    .brand-container {
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 50px;
      align-items: center;
    }

    /* Image */
    .brand-img {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    .brand-img img {
      width: 100%;
      display: block;
      transition: transform 0.6s ease;
    }
    .brand-img:hover img {
      transform: scale(1.08);
    }

    /* Text */
    .brand-text h2 {
      font-size: 2.6rem;
      font-weight: 700;
      margin-bottom: 20px;
      position: relative;
      display: inline-block;
    }
    .brand-text h2::after {
      content: "";
      display: block;
      width: 120px;
      height: 4px;
      background: var(--gold);
      margin-top: 12px;
      border-radius: 2px;
    }
    .brand-text p {
      font-size: 1.05rem;
      line-height: 1.7;
      margin-bottom: 20px;
      color: #444;
    }
    .brand-text button {
      padding: 12px 28px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      border: none;
      border-radius: 6px;
      color: #fff;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      box-shadow: var(--shadow);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .brand-text button:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }

    /* Responsive */
    @media(max-width: 768px) {
      .brand-text h2 {
        font-size: 2rem;
      }
      .brand-text p {
        font-size: 0.95rem;
      }
    }












     /* Section */
    .heritage {
      padding: 100px 20px;
      background: linear-gradient(135deg, #fff, var(--bg));
    }
    .container2 {
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
      align-items: center;
    }

    /* Text content */
    .heritage-text h2 {
      font-size: 2.6rem;
      font-weight: 700;
      margin-bottom: 20px;
      position: relative;
      display: inline-block;
    }
    .heritage-text h2::after {
      content: "";
      display: block;
      width: 120px;
      height: 4px;
      background: var(--gold);
      margin-top: 12px;
      border-radius: 2px;
    }
    .heritage-text p {
      font-size: 1.05rem;
      line-height: 1.7;
      margin-bottom: 20px;
      color: #444;
    }
    .heritage-text button {
      padding: 12px 28px;
      background: linear-gradient(90deg, var(--gold), #e8d2a0);
      border: none;
      border-radius: 6px;
      color: #fff;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      box-shadow: var(--shadow);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .heritage-text button:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }

    /* Image */
    .heritage-img {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    .heritage-img img {
      width: 100%;
      display: block;
      transition: transform 0.6s ease;
    }
    .heritage-img:hover img {
      transform: scale(1.08);
    }

    /* Responsive tweaks */
    @media(max-width: 768px) {
      .heritage-text h2 {
        font-size: 2rem;
      }
      .heritage-text p {
        font-size: 0.95rem;
      }
    }











        /* Section */
    .craftsmanship {
      padding: 100px 20px;
      background: linear-gradient(135deg, #fff, var(--bg));
      text-align: center;
    }
    .craftsmanship h2 {
      font-size: 2.6rem;
      font-weight: 700;
      margin-bottom: 20px;
      position: relative;
      display: inline-block;
      background: #b89a5c;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .craftsmanship h2::after {
      content: "";
      display: block;
      width: 120px;
      height: 4px;
      background:#b89a5c;
      margin: 12px auto 0;
      border-radius: 2px;
    }
    .craftsmanship p.intro {
      font-size: 1.1rem;
      color: #555;
      margin-bottom: 60px;
      max-width: 750px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Cards Grid */
    .craft-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 35px;
      max-width: 1100px;
      margin: 0 auto;
    }
    .craft-card {
      position: relative;
      background: rgba(255, 255, 255, 0.75);
      border-radius: 18px;
      padding: 40px 25px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.12);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(198,167,111,0.4);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    .craft-card:hover {
      transform: translateY(-12px) scale(1.02);
      box-shadow: 0 15px 40px rgba(0,0,0,0.18);
    }

    /* Icon */
    .craft-icon1 {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      border: 1px solid #b89a5c;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      box-shadow: 0 6px 16px rgba(198,167,111,0.4);
    }
    .craft-icon1 svg {
      width: 30px;
      height: 30px;
      color: #b89a5c;
    }

    .craft-card h3 {
      font-size: 1.6rem;
      margin-bottom: 15px;
      color: var(--dark);
    }
    .craft-card p {
      font-size: 1rem;
      color: #444;
      line-height: 1.6;
    }

    /* Responsive */
    @media(max-width: 768px) {
      .craftsmanship h2 {
        font-size: 2rem;
      }
      .craftsmanship p.intro {
        font-size: 1rem;
      }
    }
















    /* Section */
    .values {
      padding: 100px 20px;
      background: linear-gradient(135deg, #fff, var(--bg));
      text-align: center;
    }
    .values h2 {
      font-size: 2.6rem;
      font-weight: 700;
      margin-bottom: 20px;
      position: relative;
      display: inline-block;
      background: #b89a5c;
      -webkit-background-clip: text;
      color: #b89a5c;
      -webkit-text-fill-color: transparent;
    }
    .values h2::after {
      content: "";
      display: block;
      width: 120px;
      height: 4px;
      background: #b89a5c;
      margin: 12px auto 0;
      border-radius: 2px;
    }
    .values p.intro {
      font-size: 1.1rem;
      color: #555;
      margin-bottom: 60px;
      max-width: 750px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Cards Grid */
    .value-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 35px;
      max-width: 1100px;
      margin: 0 auto;
    }
    .value-card {
      background: rgba(255, 255, 255, 0.75);
      border-radius: 18px;
      padding: 40px 25px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.12);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(198,167,111,0.4);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    .value-card:hover {
      transform: translateY(-12px) scale(1.02);
      box-shadow: 0 15px 40px rgba(0,0,0,0.18);
    }

    /* Icon */
    .value-icon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      display: flex;
      align-items: center;
      border: 1px solid #b89a5c;
      justify-content: center;
      margin: 0 auto 20px;
      box-shadow: 0 6px 16px rgba(198,167,111,0.4);
    }
    .value-icon svg {
      width: 30px;
      height: 30px;
      color: #b89a5c;
    }

    .value-card h3 {
      font-size: 1.4rem;
      margin-bottom: 12px;
      color: var(--dark);
    }
    .value-card p {
      font-size: 1rem;
      color: #444;
      line-height: 1.6;
    }

    /* Responsive */
    @media(max-width: 768px) {
      .values h2 {
        font-size: 2rem;
      }
      .values p.intro {
        font-size: 1rem;
      }
    }






































   footer {
      background: #111;
      color: #eee;
      padding: 60px 20px 20px;
      overflow: hidden;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
    }

    /* Footer Column */
    .footer-col {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.6s ease;
    }
    .footer-col.show {
      opacity: 1;
      transform: translateY(0);
    }

    .footer-col h4 {
      font-size: 1rem;
      margin-bottom: 16px;
      font-weight: 700;
      color: #fff;
      position: relative;
    }
    .footer-col h4::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 40px;
      height: 2px;
      background: linear-gradient(90deg, #d4af37, #b08d57);
      border-radius: 2px;
    }

    .footer-col ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .footer-col ul li {
      margin-bottom: 10px;
    }
    .footer-col ul li a {
      color: #ccc;
      text-decoration: none;
      font-size: 0.95rem;
      transition: color 0.3s ease;
    }
    .footer-col ul li a:hover {
      color: #d4af37;
    }

    /* Brand */
    .nav__brand {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 20px;
    }
    .nav__brand svg {
      width: 24px;
      height: 24px;
      stroke: #d4af37;
    }
    .nav__brand strong {
      color: #fff;
      font-size: 1rem;
    }

    /* Social Icons */
    .social-links {
      display: flex;
      gap: 14px;
      margin-top: 12px;
    }
    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
      transition: background 0.3s ease, transform 0.3s ease;
    }
    .social-links a:hover {
      background: #d4af37;
      transform: translateY(-3px);
    }
    .social-links svg {
      width: 18px;
      height: 18px;
      fill: #eee;
      transition: fill 0.3s ease;
    }
    .social-links a:hover svg {
      fill: #111;
    }

    /* Bottom Links */
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      margin-top: 40px;
      padding-top: 20px;
      text-align: center;
      font-size: 0.85rem;
      color: #aaa;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.6s ease;
    }
    .footer-bottom.show {
      opacity: 1;
      transform: translateY(0);
    }

    .footer-bottom a {
      color: #aaa;
      margin: 0 8px;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-bottom a:hover {
      color: #d4af37;
    }

 @media(max-width: 600px) {
  .footer-container {
    text-align: center;
  }
  .footer-col {
    align-items: center;
    text-align: center;
  }
  .footer-col h4 { 
    font-size: 0.95rem; 
    display: inline-block; /* center as block */
    position: relative;
  }
  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%); /* move line under heading center */
  }
  .footer-col ul li a { 
    font-size: 0.9rem; 
  }
  .social-links {
    justify-content: center;
  }
}