:root {
  /* --gold: #c6a646; */
  --gold: #A8842F;
  --gold-light: #d4b96a;
  --deep-brown: #5a3e2b;
  --cream: #f5ebdd;
  /* --cream: #E1C8B0; */
  --beige: #e8d8c3;
  /* --dark-brown: #2b1e16; */
  --dark-brown: #2b1e16;
  --text-brown: #3d2a1e;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  background: var(--cream);
  color: var(--text-brown);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ======================== NAVBAR ======================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
/* Default text color (WHITE) */
nav .nav-logo,
nav .nav-links li a {
  color: #ffffff;
  transition: color 0.4s ease;
}
nav.scrolled {
  background: var(--cream);
  padding: 14px 60px;
  box-shadow: 0 2px 30px rgba(43, 30, 22, 0.08);
}
/* Change text color when scrolled */
nav.scrolled .nav-logo,
nav.scrolled .nav-links li a {
  color: #3b2a1e; /* Your brown color */
}
.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-decoration: none;
  flex-shrink: 0;
  z-index: 1100;
  position: relative;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: "Poppins", sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--dark-brown);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a.active {
  color: var(--gold);
}
.nav-links a.active::after {
  width: 100%;
}
.nav-cta {
  /* background: var(--deep-brown) !important;
  color: var(--gold) !important; */
  padding: 10px 22px;
  border-radius: 6px;
  letter-spacing: 0.12em !important;
  transition: background 0.3s, color 0.3s !important;
}
/* Default state */
nav .nav-cta {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: #ffffff;
}
nav.scrolled .nav-cta {
  background: var(--deep-brown);
  color: #fff !important;
  border: none;
}
nav .nav-cta:hover {
  background: var(--gold) !important;
  color: var(--dark-brown) !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--dark-brown) !important;
}
.nav-cta::after {
  display: none !important;
}

/* ======================== HAMBURGER ======================== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
  position: relative;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 8px;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.25s ease,
    background 0.3s;
  transform-origin: center;
}
nav.scrolled .hamburger span {
  background: var(--dark-brown);
}
.hamburger.open span {
  background: var(--cream) !important;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--dark-brown);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav-overlay a {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.3s;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: color 0.3s, opacity 0.4s ease, transform 0.4s ease;
}
.mobile-nav-overlay.open a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav-overlay.open a:nth-child(1) {
  transition-delay: 0.05s;
}
.mobile-nav-overlay.open a:nth-child(2) {
  transition-delay: 0.1s;
}
.mobile-nav-overlay.open a:nth-child(3) {
  transition-delay: 0.15s;
}
.mobile-nav-overlay.open a:nth-child(4) {
  transition-delay: 0.2s;
}
.mobile-nav-overlay.open a:nth-child(5) {
  transition-delay: 0.25s;
}
.mobile-nav-overlay.open a:nth-child(6) {
  transition-delay: 0.3s;
}
.mobile-nav-overlay.open a:nth-child(7) {
  transition-delay: 0.35s;
}
.mobile-nav-overlay a:hover,
.mobile-nav-overlay a.active {
  color: var(--gold);
}
.mobile-nav-cta {
  background: var(--gold) !important;
  color: var(--dark-brown) !important;
  padding: 14px 40px !important;
  border-radius: 2px;
  font-family: "Poppins", sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase;
  margin-top: 8px;
}
.mobile-nav-divider {
  width: 40px;
  height: 1px;
  background: rgba(198, 166, 70, 0.25);
  flex-shrink: 0;
}

/* ======================== SECTIONS ======================== */
section {
  padding: 100px 60px;
}
.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--dark-brown);
  line-height: 1.15;
  margin-bottom: 24px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.gold-line {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 28px;
}

/* ======================== BUTTONS ======================== */
.btn-primary {
  background: var(--gold);
  color: var(--dark-brown);
  padding: 14px 32px;
  border: none;
  border-radius: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  text-decoration: none;
  display: inline-block;
  border: 1px solid var(--gold);
}
.btn-primary:hover {
  background: var(--dark-brown);
  border: 1px solid black;
  color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(198, 166, 70, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  padding: 14px 32px;
  border: 1px solid rgba(245, 235, 221, 0.3);
  border-radius: 2px;
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-small {
  background: var(--deep-brown);
  color: var(--gold);
  padding: 9px 18px;
  border: none;
  border-radius: 2px;
  font-family: "Poppins", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;
}
.btn-small:hover {
  background: var(--gold);
  color: var(--dark-brown);
}
.btn-dark {
  background: var(--dark-brown);
  color: var(--cream);
  padding: 16px 40px;
  border: none;
  border-radius: 2px;
  font-family: "Poppins", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  text-decoration: none;
}
.btn-dark:hover {
  background: var(--deep-brown);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(43, 30, 22, 0.25);
}

/* ======================== PAGE HERO ======================== */
.page-hero {
  background: var(--dark-brown);
  padding: 160px 60px 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 80% 50%,
    rgba(198, 166, 70, 0.08) 0%,
    transparent 60%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.page-hero-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.page-hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
}
.page-hero-title em {
  color: var(--gold);
  font-style: italic;
}

/* ======================== PRODUCT CARDS ======================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--beige);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(43, 30, 22, 0.12);
}
.product-card-image {
  aspect-ratio: 5.8/3;
  background: var(--dark-brown);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-image-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card-image-bg {
  transform: scale(1.05);
}
.pc-1 .product-card-image-bg {
  /* background: linear-gradient(135deg, #3d1a0a, #7a2e1a); */
  background-image: url(./Products/Product1.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.pc-2 .product-card-image-bg {
  /* background: linear-gradient(135deg, #1a2b0a, #3d5a1a); */
  background-image: url(./Products/Product2.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.pc-3 .product-card-image-bg {
  /* background: linear-gradient(135deg, #0a1a3d, #1a3d7a); */
  background-image: url(./Products/Product3.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.pc-4 .product-card-image-bg {
  /* background: linear-gradient(135deg, #3d2a0a, #7a5a1a); */
  background-image: url(./Products/Product5.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.pc-5 .product-card-image-bg {
  /* background: linear-gradient(135deg, #3d0a1a, #7a1a3d); */
  background-image: url(./Products/Product4.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.product-card-icon {
  position: relative;
  z-index: 1;
  font-size: 4rem;
  opacity: 0.3;
}
.product-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--dark-brown);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
  z-index: 2;
}
.product-card-body {
  padding: 24px 24px 28px;
}
.product-card-day {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.product-card-name {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark-brown);
  margin-bottom: 10px;
  line-height: 1.3;
}
.product-card-desc {
  font-size: 0.8rem;
  color: var(--text-brown);
  opacity: 0.7;
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 300;
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.product-card-weight {
  font-size: 0.72rem;
  color: var(--text-brown);
  opacity: 0.5;
  letter-spacing: 0.05em;
}

/* ======================== CTA SECTION ======================== */
.cta-section {
  background: var(--gold);
  text-align: center;
  padding: 100px 60px;
}
.cta-section .section-eyebrow {
  color: var(--dark-brown);
  opacity: 0.6;
}
.cta-section .section-title {
  color: var(--dark-brown);
}
.cta-section .section-title em {
  color: var(--deep-brown);
}
.cta-subtitle {
  font-size: 0.95rem;
  color: var(--deep-brown);
  opacity: 0.8;
  max-width: 480px;
  margin: 0 auto 44px;
  line-height: 1.8;
  font-weight: 300;
}

/* ======================== PILLARS ======================== */
.pillars-section {
  background: var(--dark-brown);
  padding: 100px 60px;
}
.pillars-section .section-title {
  color: var(--cream);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}
.pillar-card {
  text-align: center;
  padding: 48px 32px;
  border: 1px solid rgba(198, 166, 70, 0.15);
  border-radius: 2px;
  transition: border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.pillar-card:hover {
  border-color: rgba(198, 166, 70, 0.4);
}
.pillar-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  border: 1px solid rgba(198, 166, 70, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
}
.pillar-name {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
}
.pillar-desc {
  font-size: 0.78rem;
  color: rgba(245, 235, 221, 0.5);
  line-height: 1.8;
  font-weight: 300;
}
.pillar-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(198, 166, 70, 0.05);
  line-height: 1;
}

/* ======================== FOOTER ======================== */
footer {
  position: relative;
  background-image: url(./Products/footer-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 70px 60px 40px;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 10, 5, 0.7); /* dark transparent layer */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 0;
}
footer > * {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr 1.4fr;
  gap: 48px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(198, 166, 70, 0.1);
  align-items: start;
}
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(245, 235, 221, 0.45);
  line-height: 1.8;
  max-width: 240px;
  font-weight: 300;
  margin-top: 12px;
}
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(198, 166, 70, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(198, 166, 70, 0.6);
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(198, 166, 70, 0.08);
}
.footer-col h5 {
  font-family: "Playfair Display", serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.8rem;
  color: rgba(245, 235, 221, 0.45);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 300;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(245, 235, 221, 0.3);
  font-weight: 300;
}
.footer-copy span {
  color: var(--gold);
  opacity: 0.7;
}

/* ======================== FOOTER CONTACT FORM ======================== */
.footer-contact-col h5 {
  font-family: "Playfair Display", serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.footer-form-group {
  margin-bottom: 10px;
}
.footer-form-group input,
.footer-form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  /* border: 1px solid rgba(198, 166, 70, 0.15); */
  border: 1px solid #cab26458;
  border-radius: 2px;
  padding: 10px 13px;
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  color: var(--cream);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  font-weight: 300;
}
.footer-form-group input:focus,
.footer-form-group textarea:focus {
  border-color: rgba(198, 166, 70, 0.45);
  box-shadow: 0 0 0 3px rgba(198, 166, 70, 0.06);
}
.footer-form-group textarea {
  resize: none;
  min-height: 72px;
}
.footer-form-group input::placeholder,
.footer-form-group textarea::placeholder {
  color: rgba(245, 235, 221, 0.22);
}

/* Phone row */
.footer-phone-row {
  display: flex;
  gap: 8px;
}
.footer-country-select {
  flex: 0 0 105px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid #cab26458;
  border-radius: 2px;
  padding: 10px 8px;
  font-family: "Poppins", sans-serif;
  font-size: 0.76rem;
  color: var(--cream);
  outline: none;
  cursor: pointer;
  transition: border-color 0.3s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='5'%3E%3Cpath d='M0 0l4 5 4-5z' fill='rgba(198,166,70,0.45)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 7px center;
  background-size: 8px;
  padding-right: 22px;
}
.footer-country-select:focus {
  border-color: rgba(198, 166, 70, 0.45);
}
.footer-country-select option {
  background: #1a0f0a;
  color: var(--cream);
}
.footer-phone-input {
  flex: 1;
}
.footer-phone-input input {
  min-width: 0;
}

.footer-submit-btn {
  width: 100%;
  background: var(--gold);
  color: var(--dark-brown);
  padding: 11px 20px;
  border: none;
  border-radius: 2px;
  font-family: "Poppins", sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  margin-top: 6px;
}
.footer-submit-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ======================== FADE ANIMATIONS ======================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1200px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-contact-col {
    grid-column: 1 / -1;
    max-width: 500px;
  }
}
@media (max-width: 1024px) {
  nav {
    padding: 18px 24px;
  }
  nav.scrolled {
    padding: 12px 24px;
  }
  section {
    padding: 70px 24px;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-hero {
    padding: 140px 24px 60px;
  }
  /* Show hamburger, hide desktop links */
  .hamburger {
    display: flex;
  }
  .nav-links {
    display: none !important;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-contact-col {
    grid-column: 1 / -1;
  }
  .cta-section {
    padding: 70px 24px;
  }
  .pillars-section {
    padding: 70px 24px;
  }
  footer {
    padding: 60px 24px 36px;
  }
}
@media (max-width: 640px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-contact-col {
    grid-column: auto;
    max-width: 100%;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons a {
    text-align: center;
  }
}

.nav-logo{
  height: 70px;
  width: 70px;
}
.footer-logo{
  height: 80px;
  width: 80px;
}