/* ===== RAMPORT INTERNATIONAL LLP — DESIGN SYSTEM ===== */

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

/* ===== CSS VARIABLES ===== */
:root {
  --espresso:    #1C0F07;
  --dark-brown:  #2C1A0E;
  --medium-brown:#4A2C17;
  --gold:        #D4901A;
  --gold-light:  #F0B84A;
  --amber:       #C8852A;
  --cream:       #F5EDE0;
  --cream-muted: #E8DDD0;
  --green:       #2D6A4F;
  --green-light: #40916C;
  --white:       #FFFFFF;
  --text-primary:#F5EDE0;
  --text-muted:  #B8A898;
  --glass-bg:    rgba(44,26,14,0.7);
  --glass-border:rgba(212,144,26,0.2);
  --shadow-gold: 0 0 40px rgba(212,144,26,0.15);
  --shadow-card: 0 20px 60px rgba(0,0,0,0.4);
  --radius:      16px;
  --radius-sm:   8px;
  --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--espresso);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.7;
}

h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; line-height: 1.25; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--espresso); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  background: transparent;
}

#navbar.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo .logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--espresso);
  box-shadow: 0 0 20px rgba(212,144,26,0.4);
  flex-shrink: 0;
}

.nav-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo .logo-text .brand { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.nav-logo .logo-text .tagline { font-size: 0.65rem; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream-muted);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { right: 0; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-toggle {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 6px 4px;
  display: flex;
  align-items: center;
  gap: 2px;
  cursor: pointer;
}
.lang-toggle button {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 1px;
}
.lang-toggle button.active {
  background: var(--gold);
  color: var(--espresso);
}

.btn-nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--espresso);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,144,26,0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO SECTION ===== */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 0.5s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28,15,7,0.92) 0%,
    rgba(28,15,7,0.75) 50%,
    rgba(44,26,14,0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,144,26,0.15);
  border: 1px solid rgba(212,144,26,0.3);
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}
.hero-badge .dot { width: 6px; height: 6px; background: var(--gold-light); border-radius: 50%; animation: pulse 2s infinite; }

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
}
.hero-title .accent { color: var(--gold); }
.hero-title .line2 { display: block; color: var(--cream-muted); font-size: 0.75em; font-weight: 400; font-style: italic; }

.hero-desc {
  font-size: 1.15rem;
  color: var(--cream-muted);
  max-width: 600px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.8s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--espresso);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212,144,26,0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--cream);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 50px;
  border: 1.5px solid rgba(245,237,224,0.3);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-secondary:hover {
  background: rgba(245,237,224,0.1);
  border-color: var(--cream);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1s forwards;
}
.hero-stat { text-align: center; }
.hero-stat .num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold); }
.hero-stat .label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll .arrow { width: 20px; height: 20px; border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(45deg); }

/* ===== SECTION COMMONS ===== */
section { padding: 6rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}
.section-label.visible { opacity: 1; transform: translateY(0); }
.section-label .line { width: 40px; height: 2px; background: var(--gold); }
.section-label span { font-size: 0.78rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 600; }

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease 0.1s;
}
.section-title.visible { opacity: 1; transform: translateY(0); }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease 0.2s;
}
.section-desc.visible { opacity: 1; transform: translateY(0); }

/* ===== ABOUT SECTION ===== */
#about {
  background: linear-gradient(180deg, var(--espresso) 0%, var(--dark-brown) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text .highlight {
  font-size: 1.3rem;
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.about-text p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; }

.about-offices {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.office-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(212,144,26,0.1);
  border: 1px solid rgba(212,144,26,0.2);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
}
.office-badge .icon { font-size: 1.4rem; }
.office-badge .info .city { font-weight: 600; font-size: 0.95rem; color: var(--cream); }
.office-badge .info .state { font-size: 0.75rem; color: var(--text-muted); }

.about-image {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.about-img-main img { width: 100%; height: 420px; object-fit: cover; }

.about-card-float {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  width: 220px;
}
.about-card-float .cert-title { font-size: 0.75rem; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0.5rem; }
.about-card-float .cert-items { display: flex; flex-direction: column; gap: 6px; }
.about-card-float .cert-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--cream-muted); }
.about-card-float .cert-item::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* ===== PRODUCTS SECTION ===== */
#products { background: var(--espresso); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--dark-brown);
  border: 1px solid rgba(212,144,26,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px);
}
.product-card.visible { opacity: 1; transform: translateY(0); }
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,144,26,0.4);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 30px rgba(212,144,26,0.1);
}

.product-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.08); }

.product-category-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(28,15,7,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212,144,26,0.3);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
}

.product-card-body {
  padding: 1.5rem;
}
.product-card-body h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--cream); }
.product-card-body p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }

.product-fact {
  background: rgba(212,144,26,0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: var(--gold-light);
  font-style: italic;
  margin-bottom: 1.25rem;
}
.product-fact strong { display: block; font-style: normal; font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 2px; }

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(212,144,26,0.1);
}
.product-card-footer .grade-badge {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.btn-inquire {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-inquire:hover {
  background: var(--gold);
  color: var(--espresso);
}

/* ===== COFFEE PRICE TABLE ===== */
#pricing {
  background: var(--dark-brown);
}

.price-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 3rem;
}

.price-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
thead { background: linear-gradient(135deg, var(--gold), var(--amber)); }
thead th {
  padding: 14px 18px;
  text-align: left;
  color: var(--espresso);
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}
tbody tr {
  border-bottom: 1px solid rgba(212,144,26,0.1);
  transition: var(--transition);
  opacity: 0;
  transform: translateX(-20px);
}
tbody tr.visible { opacity: 1; transform: translateX(0); }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: rgba(212,144,26,0.07); }
tbody td { padding: 14px 18px; color: var(--cream-muted); }
tbody td:first-child { font-weight: 600; color: var(--cream); }
tbody td.grade-tag { color: var(--gold-light); font-size: 0.82rem; }

.instant-table { margin-top: 2rem; }

.price-cta-box {
  background: linear-gradient(135deg, rgba(212,144,26,0.12), rgba(44,26,14,0.5));
  border: 1px solid rgba(212,144,26,0.3);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}
.price-cta-box h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--cream);
}
.price-cta-box p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37,211,102,0.4);
}
.btn-whatsapp svg { width: 22px; height: 22px; fill: white; }

.terms-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.terms-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.terms-list li::before { content: '→'; color: var(--gold); flex-shrink: 0; }

/* ===== WHY US ===== */
#why-us {
  background: var(--espresso);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: var(--dark-brown);
  border: 1px solid rgba(212,144,26,0.1);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}
.why-card.visible { opacity: 1; transform: translateY(0); }
.why-card:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.why-card .icon { font-size: 2.8rem; margin-bottom: 1rem; }
.why-card h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--cream); }
.why-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* ===== CONTACT STRIP ===== */
#contact-strip {
  background: linear-gradient(135deg, var(--dark-brown), var(--medium-brown));
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 4rem 2rem;
}
.contact-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.contact-strip-text h2 { font-size: 2.2rem; margin-bottom: 0.5rem; color: var(--cream); }
.contact-strip-text p { color: var(--text-muted); max-width: 500px; }
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 260px;
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(28,15,7,0.5);
  border: 1px solid rgba(212,144,26,0.15);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: var(--transition);
  text-decoration: none;
  color: var(--cream-muted);
}
.contact-channel:hover { border-color: var(--gold); background: rgba(212,144,26,0.1); color: var(--cream); }
.contact-channel .ch-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-channel .ch-info .label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.contact-channel .ch-info .value { font-size: 0.92rem; font-weight: 500; }

/* ===== FOOTER ===== */
footer {
  background: #0E0804;
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(212,144,26,0.1);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; margin: 1rem 0; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; margin-top: 1rem; }
.footer-social {
  width: 38px;
  height: 38px;
  background: rgba(212,144,26,0.1);
  border: 1px solid rgba(212,144,26,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition);
  text-decoration: none;
}
.footer-social:hover { background: var(--gold); color: var(--espresso); }

.footer-col h5 { color: var(--gold); font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1.25rem; font-family: 'Inter', sans-serif; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.88rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 6px; }

.footer-bottom {
  border-top: 1px solid rgba(212,144,26,0.1);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }
.footer-bottom .gold { color: var(--gold); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(28,15,7,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 2rem;
  z-index: 999;
  flex-direction: column;
  gap: 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.1rem; color: var(--cream-muted); transition: var(--transition); }
.mobile-menu a:hover { color: var(--gold); }

/* ===== PAGE HERO ===== */
.page-hero {
  min-height: 45vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--espresso) 0%, var(--dark-brown) 100%);
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.png') center/cover;
  opacity: 0.08;
}
.page-hero-content { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; width: 100%; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1rem; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--text-muted); }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; color: var(--cream); }
.page-hero p { color: var(--text-muted); margin-top: 0.75rem; max-width: 600px; font-size: 1.05rem; }

/* ===== PRODUCTS PAGE ===== */
.products-detail {
  background: var(--espresso);
  padding: 5rem 2rem;
}
.product-detail-section {
  margin-bottom: 6rem;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.product-detail-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.product-detail-img img { width: 100%; height: 380px; object-fit: cover; }

.product-detail-body .prod-category {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.product-detail-body h2 { font-size: 2.2rem; font-weight: 700; color: var(--cream); margin-bottom: 1rem; }
.product-detail-body .prod-desc { color: var(--text-muted); line-height: 1.8; margin-bottom: 1.5rem; }

.fun-facts-box {
  background: rgba(212,144,26,0.08);
  border: 1px solid rgba(212,144,26,0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.fun-facts-box h4 { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.fun-facts-box ul { display: flex; flex-direction: column; gap: 0.75rem; }
.fun-facts-box ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--cream-muted);
  line-height: 1.6;
}
.fun-facts-box ul li .fact-icon { font-size: 1.1rem; flex-shrink: 0; }

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.88rem;
}
.specs-table td { padding: 10px 14px; border-bottom: 1px solid rgba(212,144,26,0.08); }
.specs-table td:first-child { color: var(--text-muted); width: 40%; }
.specs-table td:last-child { color: var(--cream); font-weight: 500; }

/* ===== CONTACT PAGE ===== */
.contact-page { background: var(--espresso); padding: 5rem 2rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info-card {
  background: var(--dark-brown);
  border: 1px solid rgba(212,144,26,0.15);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.contact-info-card h3 { font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--cream); }
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(212,144,26,0.1);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-detail .d-icon { font-size: 1.5rem; flex-shrink: 0; padding-top: 2px; }
.contact-detail .d-label { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 2px; }
.contact-detail .d-value { color: var(--cream); font-size: 0.95rem; }
.contact-detail .d-value a { color: var(--cream); transition: var(--transition); }
.contact-detail .d-value a:hover { color: var(--gold); }

.inquiry-form-card {
  background: var(--dark-brown);
  border: 1px solid rgba(212,144,26,0.15);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.inquiry-form-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--cream); }
.inquiry-form-card p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 6px; font-weight: 500; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: rgba(28,15,7,0.6);
  border: 1px solid rgba(212,144,26,0.2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,144,26,0.1);
}
.form-group select { appearance: none; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ===== BLOG PAGE ===== */
.blog-section { background: var(--espresso); padding: 5rem 2rem; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 2rem; }
.blog-card {
  background: var(--dark-brown);
  border: 1px solid rgba(212,144,26,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}
.blog-card.visible { opacity: 1; transform: translateY(0); }
.blog-card:hover { transform: translateY(-6px); border-color: rgba(212,144,26,0.35); box-shadow: var(--shadow-card); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 0.75rem; }
.blog-tag {
  background: rgba(212,144,26,0.15);
  color: var(--gold-light);
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-date { font-size: 0.78rem; color: var(--text-muted); }
.blog-card-body h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--cream); line-height: 1.4; }
.blog-card-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.blog-read-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 1rem; color: var(--gold); font-size: 0.85rem; font-weight: 600; transition: var(--transition); }
.blog-read-more:hover { gap: 10px; }

.blog-empty { text-align: center; padding: 5rem 2rem; color: var(--text-muted); }
.blog-empty h3 { font-size: 1.5rem; color: var(--cream-muted); margin-bottom: 0.5rem; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { display: none; }
  .price-intro { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 4rem 1.5rem; }
  .nav-links, .btn-nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 1.5rem; }
  .contact-strip-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-secondary { justify-content: center; }
}

@media (max-width: 480px) {
  #navbar { padding: 0 1rem; }
  .hero-content { padding: 6rem 1rem 3rem; }
  .hero-title { font-size: 2rem; }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}
