@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --olive-darkest: #1E2517;
  --olive-deep: #2F3924;
  --olive-base: #465437;
  --olive-muted: #5D6E4A;
  --olive-subtle: #798D65;
  --cream-bg: #FAF8F2;
  --cream-surface: #FFFFFF;
  --cream-tint: #F3EFE4;
  
  --gold-primary: #D4AF37;
  --gold-warm: #C59B27;
  --gold-light: #F2DA86;
  --gold-border: rgba(212, 175, 55, 0.35);

  --text-primary: #202719;
  --text-muted: #5A6650;
  --text-light: #F9F7F1;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow-soft: 0 8px 24px -4px rgba(31, 37, 23, 0.08);
  --shadow-elevated: 0 14px 34px -4px rgba(31, 37, 23, 0.16);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-display: 'Cinzel', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: var(--cream-bg); color: var(--text-primary); font-family: var(--font-sans); line-height: 1.6; overflow-x: hidden; }

/* Announcement Bar */
.announcement-bar {
  background: var(--olive-darkest);
  color: var(--gold-light);
  font-size: 0.82rem;
  letter-spacing: 0.8px;
  text-align: center;
  padding: 0.5rem 1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--gold-border);
}

/* Header & Nav */
header {
  background: var(--olive-deep);
  border-bottom: 2px solid var(--gold-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 18px rgba(0,0,0,0.22);
}

.nav-container {
  max-width: 1240px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  max-width: 270px;
  height: 52px;
}

.logo-link img { width: 100%; height: 100%; object-fit: contain; }

.nav-links { display: flex; align-items: center; }
.nav-links a {
  margin-left: 1.6rem;
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
  position: relative;
  padding: 0.4rem 0;
}

.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 100%; height: 2px; background: var(--gold-primary);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-sm);
  color: var(--gold-light);
  padding: 6px 12px;
  font-size: 1.3rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(180deg, var(--olive-deep) 0%, var(--olive-base) 100%);
  color: var(--text-light);
  text-align: center;
  padding: clamp(3.5rem, 8vw, 5.5rem) 1.5rem clamp(2.8rem, 6vw, 4.5rem);
  border-bottom: 3px solid var(--gold-primary);
}

.hero-bow { font-size: 2.2rem; display: inline-block; margin-bottom: 0.6rem; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.2vw, 3.4rem);
  letter-spacing: 2px;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.hero .motto {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: #EFE7D5;
  margin-bottom: 1.35rem;
}

.hero p.lead {
  max-width: 680px;
  margin: 0 auto 2.25rem;
  font-size: clamp(0.98rem, 2vw, 1.15rem);
  color: #DCD4C0;
}

.hero-actions { display: flex; justify-content: center; gap: 0.85rem; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-warm) 100%);
  color: #1A2113;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid var(--gold-light);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 48px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 155, 39, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border: 1.5px solid var(--gold-primary);
}

.btn-outline:hover { background: rgba(212, 175, 55, 0.15); color: #FFF; }

/* Trust Badges / Value Props */
.trust-banner {
  background: var(--cream-surface);
  border-bottom: 1px solid var(--border-subtle);
  padding: 2rem 1.5rem;
}

.trust-container {
  max-width: 1240px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.trust-item h4 {
  font-family: var(--font-serif);
  color: var(--olive-deep);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.trust-item p { color: var(--text-muted); font-size: 0.88rem; }

/* Containers & Headings */
.container { max-width: 1240px; margin: auto; padding: clamp(2.5rem, 5vw, 4rem) 1.5rem; }
.section-title { text-align: center; margin-bottom: 2.75rem; }
.section-title h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.35rem);
  color: var(--olive-deep);
  margin-bottom: 0.4rem;
}
.section-title p { color: var(--text-muted); font-size: 1.05rem; }

/* Filter Chips */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--cream-surface);
  border: 1.5px solid var(--olive-muted);
  color: var(--olive-deep);
  padding: 0.45rem 1.15rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--olive-base);
  color: var(--gold-light);
  border-color: var(--olive-base);
}

/* Grid & Cards */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }

.card {
  background: var(--cream-surface);
  border: 1px solid rgba(70, 84, 55, 0.15);
  border-top: 4px solid var(--olive-base);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-top-color 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
  border-top-color: var(--gold-primary);
}

.card-media {
  background: var(--cream-tint);
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.6rem;
  border-bottom: 1px solid rgba(70, 84, 55, 0.1);
  position: relative;
}

.tag-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--olive-deep);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.card-content { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.card-title { font-family: var(--font-serif); font-size: 1.3rem; color: var(--olive-deep); margin-bottom: 0.35rem; }
.card-price { font-size: 1.2rem; font-weight: 700; color: var(--gold-warm); margin-bottom: 0.65rem; }
.card-desc { color: var(--text-muted); font-size: 0.93rem; margin-bottom: 1.35rem; flex-grow: 1; }

/* Forms */
form {
  background: var(--cream-surface);
  padding: clamp(1.8rem, 4vw, 2.75rem);
  border-radius: var(--radius-md);
  border: 1px solid rgba(70, 84, 55, 0.15);
  border-top: 5px solid var(--olive-deep);
  box-shadow: var(--shadow-soft);
  max-width: 680px;
  margin: 0 auto;
}

.form-group { margin-bottom: 1.35rem; }
label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--olive-deep); margin-bottom: 0.4rem; }
input, select, textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid rgba(70, 84, 55, 0.2);
  border-radius: var(--radius-sm);
  background-color: var(--cream-bg);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-primary);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold-warm);
  background-color: #FFF;
}

/* Floating WhatsApp / DM Quick Help */
.floating-order {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: var(--olive-deep);
  color: var(--gold-light);
  border: 2px solid var(--gold-primary);
  border-radius: 50px;
  padding: 0.75rem 1.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 999;
}

/* Footer */
footer {
  background: var(--olive-deep);
  border-top: 3px solid var(--gold-primary);
  color: var(--text-light);
  padding: 4rem 1.5rem 2.5rem;
  text-align: center;
  margin-top: 5rem;
}

.footer-logo { max-width: 270px; margin: 0 auto 1.5rem; }
.footer-logo img { width: 100%; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 1.75rem; }
.footer-links a { color: var(--gold-light); text-decoration: none; font-size: 0.95rem; }

/* Responsive Navigation */
@media (max-width: 840px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--olive-deep);
    border-bottom: 2px solid var(--gold-border);
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    margin: 0;
    padding: 0.8rem 1.5rem;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .grid { grid-template-columns: 1fr; }
}
