/* ==========================================================================
   1. BRAND VARIABLES & GLOBAL RESET
   ========================================================================== */
:root {
  --bg-primary: #FAF4E8;
  --bg-secondary: #FDF9F0;
  --bg-hero-end: #F4E8D0;
  
  --color-brand: #4A1525;         /* Signature Dark Burgundy */
  --color-brand-hover: #330C18;
  
  --color-gold: #D4AF37;
  --color-gold-hover: #B59021;
  --color-accent: #C5A059;
  
  --color-text-dark: #2B2118;
  --color-text-muted: #6B5E52;
  --color-border: #E8D8B8;
  --color-white: #FFFFFF;
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-full: 50px;
  --shadow-card: 0 4px 20px rgba(74, 21, 37, 0.06);
  --shadow-btn: 0 4px 15px rgba(212, 175, 55, 0.3);
  --transition: all 0.3s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-serif);
  background-color: var(--bg-primary);
  color: var(--color-text-dark);
  line-height: 1.6;
  position: relative;
  min-height: 100vh;
}

/* ==========================================================================
   BOTANICAL BACKGROUND FRONDS (MIRRORED & ALIGNED ON SAME TOP LINE)
   ========================================================================== */

/* Left Palm Frond */
body::before {
  content: "";
  position: fixed;
  top: 100px;
  left: 0;
  width: 240px;
  height: 350px;
  pointer-events: none;
  z-index: -1;
  opacity: 0.18;
  background-image: url('images/palm-frond-left.png');
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
}

/* Right Palm Frond (Flipped horizontal to face left) */
body::after {
  content: "";
  position: fixed;
  top: 100px;
  right: 0;
  width: 240px;
  height: 350px;
  pointer-events: none;
  z-index: -1;
  opacity: 0.18;
  background-image: url('images/palm-frond-right.png');
  background-repeat: no-repeat;
  background-position: right top;
  background-size: contain;
  transform: scaleX(-1);
}

a {
  text-decoration: none;
  color: inherit;
}

/* ==========================================================================
   2. HEADER & NAVIGATION
   ========================================================================== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 5%;
  background: var(--color-brand);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--color-gold);
}

.brand-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.header-logo {
  height: 65px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.3));
  transition: var(--transition);
}

.brand-container:hover .header-logo {
  transform: scale(1.05);
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-gold);
  margin-top: 2px;
}

nav#nav-menu {
  display: flex;
  align-items: center;
}

nav#nav-menu a {
  margin-left: 1.5rem;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #FAF4E8;
  transition: var(--transition);
}

nav#nav-menu a:hover {
  color: var(--color-gold);
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.hamburger-menu span {
  width: 100%;
  height: 3px;
  background-color: var(--color-gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* Shared Subtitles & Badges */
.section-tagline {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-gold-hover);
  margin-bottom: 1rem;
  font-weight: 700;
  display: block;
}

.lead-text {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 680px;
  margin: 1.5rem auto 0 auto;
  line-height: 1.8;
}

/* ==========================================================================
   3. HERO & PERKS
   ========================================================================== */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1rem 7rem 1rem;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-hero-end) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  max-width: 850px;
  color: var(--color-brand);
  margin-bottom: 1.2rem;
  line-height: 1.25;
}

.hero p {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 650px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  padding: 0.9rem 2rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--color-gold);
  color: var(--color-brand);
  border: 2px solid var(--color-gold);
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  background-color: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  color: #FFFFFF;
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-brand);
  border: 2px solid var(--color-brand);
}

.btn-secondary:hover {
  background-color: var(--color-brand);
  color: var(--color-gold);
}

.perks-bar {
  display: flex;
  justify-content: space-around;
  background: var(--color-brand);
  color: var(--color-gold);
  padding: 1.5rem 5%;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  flex-wrap: wrap;
  gap: 1rem;
  border-bottom: 1px solid var(--color-border);
}

/* ==========================================================================
   4. PRODUCT GRID
   ========================================================================== */
.bestsellers {
  padding: 5rem 5%;
  text-align: center;
}

.bestsellers h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--color-brand);
  margin-bottom: 0.5rem;
}

.subtitle {
  font-family: var(--font-sans);
  color: var(--color-text-muted);
  margin-bottom: 3rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold);
}

.product-image {
  width: 100%;
  height: 220px;
  background-color: var(--bg-hero-end);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-hover);
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px dashed var(--color-accent);
}

.product-card h3 {
  font-size: 1.2rem;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}

.product-card p {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.price {
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--color-brand);
}

/* ==========================================================================
   5. ABOUT US & PRIVACY POLICY PAGE LAYOUT
   ========================================================================== */
.story-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 6rem 2rem 9rem 2rem;
  min-height: 75vh;
}

.story-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.story-header h1 {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--color-brand);
  line-height: 1.25;
}

.story-block {
  margin-bottom: 3.5rem;
}

.story-block h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-brand);
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.5rem;
}

.story-block p {
  font-family: var(--font-sans);
  color: var(--color-text-dark);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.story-block p strong {
  color: var(--color-brand);
}

.highlight-box {
  background: var(--bg-secondary);
  border-left: 4px solid var(--color-gold);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

/* ==========================================================================
   6. CONTACT US PAGE LAYOUT
   ========================================================================== */
.contact-container {
  max-width: 1050px;
  margin: 0 auto;
  padding: 6rem 2rem 9rem 2rem;
  min-height: 75vh;
}

.contact-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.bold-headline {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--color-brand);
  line-height: 1.25;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  padding: 3rem 2.5rem;
  text-align: left;
}

.contact-card h3 {
  margin-bottom: 1.2rem;
  color: var(--color-brand);
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
}

.contact-detail-item {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--color-border);
}

.contact-detail-item strong {
  display: block;
  font-family: var(--font-sans);
  color: var(--color-brand);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
}

.contact-detail-item p {
  font-family: var(--font-sans);
  color: var(--color-text-dark);
  font-size: 1.05rem;
  font-weight: 500;
}

.contact-form .form-group {
  margin-bottom: 1.8rem;
}

.contact-form label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-brand);
  margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: var(--bg-secondary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-text-dark);
  outline: none;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-gold);
  background: #FFFFFF;
}

/* ==========================================================================
   7. FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--color-brand);
  color: var(--bg-primary);
  border-top: 2px solid var(--color-gold);
  padding: 4rem 5% 1.5rem 5%;
  font-family: var(--font-sans);
  position: relative;
  z-index: 10;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-col h4 {
  font-family: var(--font-serif);
  color: var(--color-gold);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
}

.footer-about {
  font-size: 0.9rem;
  color: rgba(250, 244, 232, 0.8);
  margin-bottom: 1.5rem;
  max-width: 320px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a, 
.social-links a {
  color: rgba(250, 244, 232, 0.85);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col ul li a:hover, 
.social-links a:hover {
  color: var(--color-gold);
  padding-left: 3px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-newsletter label {
  display: block;
  font-size: 0.85rem;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.newsletter-input-group {
  display: flex;
  gap: 0.5rem;
  max-width: 340px;
}

.newsletter-input-group input {
  padding: 0.7rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-gold);
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  font-size: 0.85rem;
  outline: none;
  flex: 1;
}

.newsletter-input-group input::placeholder {
  color: rgba(250, 244, 232, 0.5);
}

.newsletter-input-group .btn {
  padding: 0.7rem 1.4rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 1.5rem auto 0 auto;
  font-size: 0.8rem;
  color: rgba(250, 244, 232, 0.6);
  flex-wrap: wrap;
  gap: 1rem;
}

.payment-badges span {
  font-weight: 600;
  color: var(--color-gold);
}

/* ==========================================================================
   8. RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 768px) {
  body::before,
  body::after {
    width: 140px;
    height: 220px;
    top: 70px;
    opacity: 0.14;
  }

  header {
    position: relative;
    flex-direction: row;
    justify-content: space-between;
  }

  .hamburger-menu {
    display: flex;
  }

  /* Mobile Navigation - Sleek Corner Dropdown Card */
  nav#nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 5%;
    width: 200px;
    background-color: var(--color-brand);
    border: 1px solid var(--color-gold);
    border-radius: var(--radius-md);
    padding: 1rem 0;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    z-index: 100;
  }

  nav#nav-menu a {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    display: block;
    padding: 0.4rem 1rem;
  }

  nav#nav-menu a:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--color-gold);
  }

  nav#nav-menu.active {
    display: flex;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .bold-headline,
  .story-header h1 {
    font-size: 2.3rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}