@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@600;700;800;900&display=swap");

:root {
  --brand: #1a5f3f;
  --brand-2: #2a7f54;
  --brand-light: #3a9f6f;
  --accent: #d4a574;
  --accent-dark: #e8c9a0;
  --text: #1a1a1a;
  --text-light: #4a4a4a;
  --text-secondary: #ffffff;
  --accent-red: #e63946;
  --accent-yellow: #ffd60a;
  --bg: #f8f8f8;
  --bg-light: #fafafa;
  --muted: #999999;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-1: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-2: 0 12px 32px rgba(0, 0, 0, 0.15);
  --shadow-3: 0 20px 48px rgba(0, 0, 0, 0.2);
  --transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  --header-height: 72px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-light) 100%);
  color: var(--text);
  line-height: 1.8;
  font-family: Inter, "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  animation: pageLoad 0.8s ease-out forwards;
  padding-top: 0;
  margin: 0;
}

body.inner-page {
  padding-top: 72px;
  margin: 0;
}

.premium-hero {
  width: 100%;
  min-height: 100vh;
  background: radial-gradient(circle at top right, #3f3f37, #05160f);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 90px;
  margin-bottom: 0.3cm; /* gap below marquee strip and next section */
}

.floating-icons i {
  position: absolute;
  color: rgba(197, 160, 89, 0.2);
  font-size: 8rem;
  pointer-events: none;
}

.fa-certificate { bottom: 10%; right: 5%; transform: rotate(15deg); }
.fa-seedling { top: 15%; left: 5%; transform: rotate(-10deg); }

.blur-blob {
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(197, 160, 89, 0.1);
  filter: blur(80px);
  border-radius: 50%;
  top: -100px;
  left: -100px;
}

.main-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  z-index: 10;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
  align-items: center;
}

.content-area {
  color: #f9f7f2;
}

.pre-title {
  color: #c5a059;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.85rem;
  font-weight: 700;
}

.brand-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(44px, 8vw, 80px);
  color: #f9f7f2;
  line-height: 1.1;
  margin: 15px 0;
}

.brand-title span {
  display: block;
  color: #c5a059;
  font-weight: 400;
}

.divider {
  width: 80px;
  height: 4px;
  background: #c5a059;
  margin: 20px 0;
}

.brand-desc {
  color: rgba(249, 247, 242, 0.85);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 640px;
}

.product-tags {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.product-tags span {
  border: 1px solid rgba(197, 160, 89, 0.4);
  padding: 10px 20px;
  border-radius: 4px;
  color: #c5a059;
  font-size: 0.9rem;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-tags span:hover {
  background: #c5a059;
  color: #05160f;
}

.visual-area {
  display: flex;
  justify-content: flex-end;
}

.premium-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(197, 160, 89, 0.2);
  padding: 40px;
  border-radius: 12px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
  max-width: 360px;
}

.card-inner i {
  font-size: 4rem;
  color: #c5a059;
  margin-bottom: 20px;
}

.card-inner h4 {
  color: #f9f7f2;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.card-inner p {
  color: rgba(249, 247, 242, 0.8);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.luxury-strip {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #c5a059;
  padding: 14px 0;
  overflow: hidden;
}

.scrolling-text {
  white-space: nowrap;
  animation: scroll 18s linear infinite;
}

.scrolling-text span {
  font-size: 1.1rem;
  font-weight: 900;
  color: #05160f;
  padding-right: 50px;
  letter-spacing: 5px;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 992px) {
  .hero-grid { gap: 32px; text-align: center; }
  .brand-title { font-size: clamp(36px, 10vw, 56px); }
  .divider { margin: 20px auto; }
  .brand-desc { margin: 0 auto; }
  .product-tags { justify-content: center; }
  .visual-area { justify-content: center; }
}

@keyframes pageLoad {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

a { color: inherit; text-decoration: none; }

/* COMMON */
.container { 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 48px 24px;
  position: relative;
  z-index: 1;
}

/* Header container should be tighter to reduce header height */
.header .container {
  padding: 10px 24px;
}

.section {
  position: relative;
  z-index: 2;
}

h1, h2, h3 { 
  color: var(--text);
  font-family: Poppins, Inter, system-ui, sans-serif; 
  font-weight: 800; 
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h2 { 
  color: var(--text); 
  margin-bottom: 24px; 
  font-size: clamp(28px, 3.5vw, 36px);
  text-align: center;
}

h3 { 
  color: var(--brand);
  font-size: clamp(18px, 2vw, 22px);
}

/* HEADER */
.header { 
  background: rgba(5, 22, 15, 0.82); 
  color: #fff; 
  text-align: center; 
  padding: 18px 20px; 
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 30;
  overflow: visible;
  border-bottom: 1px solid rgba(197, 160, 89, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  margin: 0;
}
    padding-top: var(--header-height);
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
    padding-top: var(--header-height);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(212, 165, 116, 0) 0%, rgba(212, 165, 116, 0.6) 50%, rgba(212, 165, 116, 0) 100%);
  opacity: 0.9;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.header.has-hero {
  padding: 12px 20px;
}

.header-inner { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  gap: 24px; 
  position: relative;
  z-index: 2;
}

/* Ensure nav sits above hero and dropdown positions correctly */
.nav {
  position: relative;
  z-index: 40;
}

.nav-overlay {
  display: none;
  position: fixed;
  top: var(--header-height, 72px);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 22, 15, 0.6);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  z-index: 900;
}

.nav.open ~ .nav-overlay {
  display: block;
}

body.menu-open {
  overflow: hidden;
}

.brand .logo { 
  color: #fff; 
  font-weight: 900; 
  font-size: clamp(24px, 3vw, 32px); 
  text-decoration: none; 
  font-family: Poppins, system-ui, sans-serif;
  text-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand .logo-img {
  height: 32px;
  width: auto;
  display: inline-block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
}

.brand .logo:hover {
  transform: translateY(-1px);
}

.brand p { 
  margin-top: 4px; 
  font-size: 14px; 
  opacity: 0.95; 
  font-weight: 500;
  letter-spacing: 0.5px;
}
.nav-toggle { 
  display: none; 
  background: rgba(255,255,255,0.15); 
  color: #fff; 
  border: 2px solid rgba(255,255,255,0.3); 
  padding: 10px 16px; 
  border-radius: var(--radius-sm); 
  cursor: pointer; 
  font-size: 20px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.nav-toggle:hover {
  background: rgba(255,255,255,0.25);
  transform: scale(1.05);
}

.nav .nav-links { 
  list-style: none; 
  display: flex; 
  gap: 28px; 
  align-items: center;
}

.nav .nav-links a { 
  color: #fff; 
  text-decoration: none; 
  font-weight: 600; 
  opacity: 0.9; 
  padding: 10px 0;
  position: relative;
  transition: var(--transition);
  font-size: 14px;
  letter-spacing: 0.6px;
}

.nav .nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  transition: var(--transition);
}

.nav .nav-links a:hover {
  opacity: 1;
  color: var(--accent);
}

.nav .nav-links a:hover::after,
.nav .nav-links a[aria-current="page"]::after {
  width: 100%;
  background: var(--accent-dark);
  width: 100%;
}

.nav .nav-links a[aria-current="page"] { 
  opacity: 1; 
}

.hero {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, rgba(26, 95, 63, 0.05) 0%, rgba(42, 127, 84, 0.08) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.08) 0%, rgba(26, 95, 63, 0.05) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(42, 127, 84, 0.06) 0%, rgba(212, 165, 116, 0.04) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-decorative {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  opacity: 0.06;
  z-index: 0;
}

.shape-1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  top: -150px;
  right: -150px;
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.shape-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--brand-light) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  border-radius: 50%;
  animation: float 10s ease-in-out infinite 1s;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  top: 30%;
  right: 5%;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite 2s;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 24px;
  border: 1px solid rgba(212, 165, 116, 0.2);
  box-shadow: 0 8px 32px rgba(26, 95, 63, 0.1);
  animation: scaleIn 0.8s ease-out;
}

.hero-badge-top {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border: 2px solid var(--accent);
  color: white;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  margin-bottom: 32px;
  animation: slideDown 0.6s ease-out 0.1s forwards;
  opacity: 0;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(212, 165, 116, 0.2);
}

.hero h1 { 
  font-size: clamp(42px, 7vw, 72px); 
  margin-bottom: 20px; 
  font-family: Poppins, Inter, system-ui, sans-serif; 
  font-weight: 900; 
  letter-spacing: -0.02em;
  line-height: 1.1;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
  opacity: 0;
  color: var(--text);
  background: linear-gradient(135deg, var(--text) 0%, var(--brand) 50%, var(--text) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.word-highlight {
  color: var(--accent);
  font-weight: 900;
  font-style: italic;
  background: none;
  -webkit-text-fill-color: unset;
}

.hero p { 
  font-size: clamp(16px, 2.2vw, 20px); 
  color: var(--text-light);
  font-weight: 500;
  max-width: 680px;
  margin: 0 auto 44px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
  opacity: 0;
  letter-spacing: 0.3px;
}

.cta { 
  margin-top: 44px;
  margin-bottom: 52px;
  display: flex; 
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
  opacity: 0;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  box-shadow: 0 12px 36px rgba(10, 22, 71, 0.4);
  transform: scale(1);
}

.btn-primary:hover {
  box-shadow: 0 20px 50px rgba(10, 22, 71, 0.55);
  transform: translateY(-6px) scale(1.05);
}

.hero-stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 40px;
  margin-top: 56px;
  padding-top: 48px;
  padding-bottom: 20px;
  border-top: 2px solid rgba(212, 165, 116, 0.3);
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease-out 0.5s forwards;
  opacity: 0;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--accent);
  font-family: Poppins, system-ui, sans-serif;
  margin-bottom: 10px;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn { 
  display: inline-block; 
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%); 
  color: white; 
  padding: 16px 40px; 
  border-radius: var(--radius); 
  text-decoration: none; 
  font-weight: 800; 
  transition: var(--transition);
  font-size: 16px;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--brand) 100%);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.btn:hover { 
  transform: translateY(-4px) scale(1.02); 
  box-shadow: 0 16px 40px rgba(10, 22, 71, 0.4);
  color: white;
}

.btn:hover::before {
  left: 0;
  opacity: 1;
}

.btn.secondary { 
  background: white; 
  border: 2px solid var(--brand);
  color: var(--brand); 
  box-shadow: inset 0 0 20px rgba(26, 95, 63, 0.1);
}

.btn.secondary:hover {
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: inset 0 0 20px rgba(26, 95, 63, 0.2), 0 0 20px rgba(10, 22, 71, 0.2);
  color: white;
}

/* PAGE HERO (About) */
.page-hero {
  position: relative;
  padding: 80px 0 80px;
  background: radial-gradient(circle at 10% 20%, rgba(197, 160, 89, 0.12), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(26, 95, 63, 0.18), transparent 32%),
    linear-gradient(135deg, #0a1812 0%, #0f261c 45%, #0a1812 100%);
  color: #f9f7f2;
  overflow: hidden;
  border-bottom: 1px solid rgba(197, 160, 89, 0.35);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 45%, rgba(255, 255, 255, 0.06) 100%);
  pointer-events: none;
  mix-blend-mode: screen;
}

.page-hero-inner {
  max-width: 960px;
  margin: -20px auto 0;
  text-align: center;
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.9s ease-out;
}

.page-hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  color: #f9f7f2;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.page-hero .eyebrow {
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(197, 160, 89, 0.85);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 18px;
}

.page-hero .lede {
  color: rgba(249, 247, 242, 0.85);
  font-size: 18px;
  line-height: 1.8;
  max-width: 760px;
  margin: 0 auto 26px;
}

.hero-pills {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.hero-pills span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(197, 160, 89, 0.3);
  color: #f9f7f2;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  animation: shimmer 2.2s ease-in-out infinite;
}

.hero-pills span i {
  color: #c5a059;
}

.glow-orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.28;
  animation: driftSlow 14s ease-in-out infinite;
}

.orb-1 { top: -120px; left: -120px; background: rgba(197, 160, 89, 0.5); }
.orb-2 { bottom: -140px; right: -80px; background: rgba(26, 95, 63, 0.5); animation-delay: 1.6s; }
.orb-3 { top: 20%; right: 14%; background: rgba(255, 255, 255, 0.08); animation-delay: 0.8s; }

@keyframes driftSlow {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(20px, -20px, 0) scale(1.05); }
}

@keyframes shimmer {
  0%, 100% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25); }
  50% { box-shadow: 0 16px 48px rgba(197, 160, 89, 0.45); }
}

/* GENERIC SECTIONS */
.section { 
  padding-top: 0; 
  margin-bottom: 32px;
}

.luxe-panel {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82) 0%, rgba(250, 247, 240, 0.92) 100%);
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: 24px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  padding: 52px 36px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.luxe-panel::before,
.luxe-panel::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.38;
  z-index: -1;
  animation: driftSlow 16s ease-in-out infinite;
}

.luxe-panel::before { width: 320px; height: 320px; top: -120px; right: -120px; background: rgba(197, 160, 89, 0.5); }
.luxe-panel::after { width: 240px; height: 240px; bottom: -80px; left: -100px; background: rgba(26, 95, 63, 0.35); animation-delay: 1.2s; }

.luxe-panel h2 {
  text-align: left;
}

.luxe-panel p {
  font-size: 17px;
}

.grid-3 { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 28px;
  margin-top: 36px;
}

.card { 
  background: white; 
  border-radius: var(--radius); 
  box-shadow: var(--shadow-1); 
  padding: 36px 28px; 
  transition: var(--transition);
  border: 2px solid rgba(212, 165, 116, 0.3);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--accent-dark) 0%, var(--accent) 100%);
  transition: var(--transition);
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 2px;
  background: linear-gradient(135deg, transparent 0%, rgba(212, 165, 116, 0.4) 50%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--transition);
}

.card:hover::after {
  opacity: 1;
}

.card:hover::before {
  height: 100%;
}

.card h3 { 
  color: var(--brand); 
  margin-bottom: 12px; 
  font-size: 20px;
}

.card p { 
  color: var(--text-light); 
  line-height: 1.8;
  font-size: 15px;
}

.card:hover { 
  transform: translateY(-8px) rotateY(1deg); 
  box-shadow: var(--shadow-3), 0 0 30px rgba(212, 165, 116, 0.2);
  border-color: rgba(212, 165, 116, 0.6);
}

/* Badges */
.badges { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); 
  gap: 16px; 
}

.badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 0 auto;
}

.badge { 
  background: linear-gradient(135deg, var(--brand-light) 0%, var(--brand-2) 100%); 
  border-radius: var(--radius); 
  box-shadow: var(--shadow-1); 
  padding: 24px 20px; 
  font-weight: 700; 
  text-align: center; 
  color: #ffffff;
  border: 2px solid var(--brand-light);
  transition: var(--transition);
  font-size: 15px;
  animation: popIn 0.5s ease-out;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.badge:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-2);
  border-color: #d4af37;
  background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
}

/* Stats */
.stats { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
  gap: 20px; 
  background: linear-gradient(135deg, #404040 0%, #1a1a1a 100%);
  padding: 48px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
  border: 2px solid #d4af37;
}

.stat { 
  text-align: center; 
  padding: 16px;
}

.stat span { 
  display: block; 
  font-weight: 900; 
  font-size: clamp(32px, 4vw, 42px); 
  color: #ffd700;
  font-family: Poppins, system-ui, sans-serif;
  line-height: 1;
  margin-bottom: 8px;
  animation: countUp 1.5s ease-out;
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat p { 
  color: #ffffff; 
  font-weight: 600;
  font-size: 15px;
}

/* Testimonials */
.testimonials { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 24px; 
}

.t-card { 
  background: white; 
  border-radius: var(--radius); 
  box-shadow: var(--shadow-1); 
  padding: 32px 24px; 
  opacity: 0.7; 
  transition: var(--transition);
  border: 2px solid rgba(212, 165, 116, 0.2);
  border-left: 5px solid var(--accent);
  position: relative;
}

.t-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  left: 20px;
  font-size: 64px;
  color: var(--accent);
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.2;
}

.t-card p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.t-card.active { 
  opacity: 1; 
  box-shadow: var(--shadow-3), 0 0 25px rgba(212, 165, 116, 0.25); 
  border-left-color: var(--accent-dark);
  border-color: rgba(212, 165, 116, 0.5);
  transform: scale(1.02);
}

.t-card h4 { 
  margin-top: 16px; 
  color: var(--brand); 
  font-weight: 700;
  font-size: 16px;
}

/* FAQ */
.faq { 
  display: grid; 
  gap: 16px; 
  max-width: 900px;
  margin: 0 auto;
}

.faq-item { 
  background: var(--bg); 
  border-radius: var(--radius); 
  box-shadow: var(--shadow-1); 
  overflow: hidden; 
  border: 2px solid rgba(212, 165, 116, 0.25);
  transition: var(--transition);
  animation: slideInLeft 0.6s ease-out;
}

.faq-item.open {
  border-color: rgba(212, 165, 116, 0.6);
  box-shadow: var(--shadow-2), 0 0 20px rgba(212, 165, 116, 0.15);
  animation: expandHeight 0.4s ease-out;
}

.faq-q { 
  width: 100%; 
  text-align: left; 
  padding: 20px 24px; 
  background: transparent; 
  border: none; 
  font-weight: 700; 
  cursor: pointer; 
  font-size: 16px;
  color: var(--text);
  transition: var(--transition);
  position: relative;
  padding-right: 48px;
}

.faq-q::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--brand);
  transition: var(--transition);
}

.faq-item.open .faq-q::after {
  content: '−';
}

.faq-q:hover {
  color: var(--brand);
}

.faq-a { 
  display: none; 
  padding: 0 24px 20px; 
  color: var(--text-light); 
  line-height: 1.7;
}

.faq-item.open .faq-a { 
  display: block; 
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Newsletter */
.newsletter { 
  text-align: center; 
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg) 100%);
  padding: 56px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
  border: 2px solid rgba(212, 165, 116, 0.3);
}

.newsletter h2 {
  margin-bottom: 12px;
}

.newsletter > p {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 16px;
}

.newsletter-form { 
  display: grid; 
  grid-template-columns: 1fr auto; 
  gap: 12px; 
  max-width: 600px; 
  margin: 0 auto;
}

.newsletter-form input { 
  padding: 16px 20px; 
  border: 2px solid var(--brand-light); 
  border-radius: var(--radius); 
  font-size: 16px;
  transition: var(--transition);
  background: var(--bg);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(26, 95, 63, 0.1);
}

.newsletter-status { 
  margin-top: 16px; 
  color: var(--brand); 
  font-weight: 600; 
}

/* ABOUT */
.about h2 {
  text-align: left;
}
.about p { 
  line-height: 1.8; 
  font-size: 17px; 
  color: #4a4a4a;
  max-width: 800px;
}

/* Corporate Card */
.corporate-card {
  background: linear-gradient(135deg, #0a1812 0%, #0f261c 50%, #0a1812 100%);
  border: 2px solid rgba(197, 160, 89, 0.4);
  border-radius: 32px;
  padding: 56px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.corporate-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}

.corporate-card::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(26, 95, 63, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 10s ease-in-out infinite 2s;
}

.corporate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 2;
}

.corp-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 16px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: var(--transition);
  animation: slideUp 0.6s ease-out;
}

.corp-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(197, 160, 89, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(212, 165, 116, 0.2);
}

.corp-icon {
  font-size: 36px;
  min-width: 50px;
  display: flex;
  align-items: center;
}

.corp-content h3 {
  color: rgba(212, 165, 116, 0.9);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
  line-height: 1;
}

.corp-content p {
  color: #f9f7f2;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

/* Collapsible sections */
.collapsible-section .content-preview {
  margin-bottom: 16px;
}

.collapsible-section .content-full {
  margin-bottom: 16px;
}

.see-more-btn {
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(212, 165, 116, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.see-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 22, 71, 0.4);
}

.see-more-btn i {
  transition: var(--transition);
}

.collapsible-section.expanded .see-more-btn i {
  transform: rotate(180deg);
}

/* UPLOAD */
.upload form { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 16px; 
}

.upload input, .upload button { 
  flex: 1 1 220px; 
  padding: 14px 16px; 
  font-size: 16px; 
  border-radius: var(--radius);
}

.upload input {
  border: 2px solid var(--brand-light);
  transition: var(--transition);
}

.upload input:focus {
  outline: none;
  border-color: var(--brand);
}

.upload button { 
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%); 
  border: none; 
  color: white; 
  cursor: pointer; 
  transition: var(--transition);
  font-weight: 700;
  box-shadow: var(--shadow-1);
}

.upload button:hover { 
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}

/* PRODUCTS */
.product-list { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 28px; 
}

.product-card { 
  background: white; 
  border-radius: var(--radius); 
  box-shadow: var(--shadow-1); 
  overflow: hidden; 
  transition: var(--transition);
  border: 2px solid rgba(212, 165, 116, 0.25);
  animation: slideUp 0.6s ease-out;
}

.product-card:hover { 
  transform: translateY(-12px); 
  box-shadow: var(--shadow-3), 0 0 35px rgba(212, 165, 116, 0.2);
  border-color: var(--accent);
}

.product-card img { 
  width: 100%; 
  height: 220px; 
  object-fit: contain; 
  background: #f7f7f2; 
  transition: var(--transition);
  position: relative;
}

.product-card:hover img {
  transform: scale(1.08) rotate(1deg);
  filter: brightness(1.1);
}

.product-card .info { 
  padding: 20px; 
  text-align: center; 
}

.product-card h3 { 
  margin-bottom: 8px; 
  font-size: 19px;
  color: var(--brand);
}

.product-card p { 
  color: var(--accent); 
  font-weight: 800; 
  font-size: 20px;
  font-family: Poppins, system-ui, sans-serif;
}

/* GALLERY */
.gallery-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); 
  gap: 20px; 
}

.gallery-grid img { 
  width: 100%; 
  height: 220px; 
  object-fit: cover; 
  border-radius: var(--radius); 
  transition: var(--transition);
  box-shadow: var(--shadow-1);
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-2);
}

/* CONTACT */
.form { 
  display: grid; 
  gap: 16px; 
  max-width: 700px; 
  margin: 0 auto; 
}

.form input, .form textarea { 
  padding: 16px 20px; 
  border: 2px solid var(--brand-light); 
  border-radius: var(--radius); 
  font-size: 16px; 
  transition: var(--transition);
  font-family: inherit;
}

.form input:focus, .form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(26, 95, 63, 0.1);
}

.form textarea { 
  min-height: 140px; 
  resize: vertical; 
}

.form button { 
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%); 
  color: white; 
  border: none; 
  padding: 16px 20px; 
  border-radius: var(--radius); 
  cursor: pointer; 
  font-size: 16px;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(10, 22, 71, 0.4);
}

/* FOOTER */
.footer { 
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1515 50%, #0f0f0f 100%); 
  color: white; 
  text-align: center; 
  padding: 16px 20px; 
  margin-top: 80px; 
  border-top: 2px solid rgba(212, 165, 116, 0.25);
  position: relative;
  overflow: hidden;
  animation: fadeIn 1s ease-out;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(212, 165, 116, 0.1);
  width: 100%;
  box-sizing: border-box;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.15), transparent);
  opacity: 0.4;
}

.footer h3 {
  color: rgba(212, 165, 116, 0.7);
  margin-bottom: 16px;
  font-size: 18px;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.footer p {
  opacity: 0.75;
  margin: 8px 0;
  transition: var(--transition);
  color: #d0ccc8;
  font-size: 14px;
  letter-spacing: 0.3px;
  line-height: 1.6;
}

.footer p:hover {
  opacity: 0.95;
  color: rgba(212, 165, 116, 0.85);
  text-shadow: 0 0 8px rgba(212, 165, 116, 0.15);
}

/* MOBILE */
@media (max-width: 480px) {
  :root {
    --header-height: 60px;
  }
  
  .container {
    padding: 32px 16px;
  }
  
  .cta {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  
  .btn {
    width: 100%;
    padding: 14px 32px;
  }

  .hero {
    min-height: 580px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-content {
    padding: 0 16px;
  }

  .hero-badge-top {
    padding: 10px 24px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    margin-bottom: 16px;
  }

  .hero p {
    margin-bottom: 28px;
    font-size: 16px;
  }

  .cta {
    gap: 12px;
    margin-bottom: 36px;
  }

  .hero-stats-bar {
    gap: 24px;
    padding-top: 28px;
    margin-top: 36px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .hero-stat-number {
    font-size: 28px;
  }

  .hero-shape {
    opacity: 0.03;
  }

  .card {
    padding: 28px 20px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .newsletter-form {
    grid-template-columns: 1fr;
  }
  
  .badges {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 60px 0 50px;
  }

  .page-hero-inner {
    margin: 0 auto;
  }

  .page-hero h1 {
    font-size: clamp(32px, 7vw, 42px);
  }

  .page-hero .lede {
    font-size: 16px;
  }

  .hero-pills {
    width: 100%;
  }

  .hero-pills span {
    width: 100%;
    justify-content: center;
  }

  .luxe-panel {
    padding: 36px 22px;
  }

  .corp-item {
    padding: 16px;
  }

  .corp-content h3 {
    font-size: 12px;
  }

  .corp-content p {
    font-size: 14px;
  }
  
  /* Touch-friendly buttons */
  .btn, .see-more-btn, .form button {
    min-height: 48px;
  }
  
  .hero-pills span {
    padding: 12px 14px;
    font-size: 13px;
    gap: 8px;
  }
  
  .hero-pills span i {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  :root { --header-height: 64px; }
  .container {
    padding: 40px 20px;
  }
  .header { padding: 10px 16px; }
  .header .container { padding: 8px 16px; }
  .brand p { display: none; }
  .brand .logo-img { height: 26px; }
  .brand .logo { font-size: clamp(20px, 6vw, 24px); }
  
  .nav-toggle { 
    display: block; 
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 60;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 22px;
  }
  
  .nav .nav-links { 
    display: none; 
    flex-direction: column; 
    background: rgba(5, 22, 15, 0.95); 
    padding: 20px; 
    border-radius: var(--radius); 
    gap: 16px;
    position: fixed;
    top: calc(var(--header-height, 72px) + 8px);
    right: 16px;
    left: 16px;
    min-width: 220px;
    margin-top: 0;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-3);
    z-index: 1000;
  }
  
  .nav.open .nav-links { 
    display: flex; 
  }
  
  .hero h1 { 
    font-size: 36px; 
  }
  
  .upload form { 
    flex-direction: column; 
  }
  
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .stats {
    padding: 32px 20px;
    gap: 16px;
  }

  .page-hero {
    padding: 120px 0 90px;
  }

  .page-hero-inner {
    padding: 0 12px;
  }

  .hero-pills {
    justify-content: center;
  }

  .luxe-panel {
    padding: 44px 28px;
  }

  .page-hero-inner {
    margin: 0 auto;
  }
  
  /* Tablet improvements */
  .card {
    padding: 28px 24px;
  }
  
  .section {
    padding: 40px 20px;
  }
}

/* Document Modal Styles */
.doc-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  padding: 50px 20px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.95);
}

.doc-modal-content {
  margin: 0 auto;
  display: block;
  width: auto;
  max-width: 90%;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.doc-modal-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #ffffff;
  font-size: 48px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  z-index: 10001;
}

.doc-modal-close:hover,
.doc-modal-close:focus {
  color: var(--accent);
  text-decoration: none;
  cursor: pointer;
}

/* Contact Hours Clock */
.hours-card {
  text-align: center;
}

.hours-card .hours-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.clock-icon {
  position: relative;
  width: 52px;
  height: 52px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(212,165,116,0.2), rgba(5,22,15,0.9));
  box-shadow: 0 0 0 1px rgba(212,165,116,0.2), 0 8px 22px rgba(0,0,0,0.35);
}

.clock-center {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px rgba(212,165,116,0.6);
}

.clock-hand {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom center;
  background: #f8f8f8;
  border-radius: 4px;
  box-shadow: 0 0 6px rgba(0,0,0,0.25);
}

.hand-hour {
  width: 3px;
  height: 16px;
  transform: translate(-50%, 2px) rotate(20deg);
  animation: rotate-hour 28s linear infinite;
}

.hand-minute {
  width: 2px;
  height: 22px;
  transform: translate(-50%, 2px) rotate(120deg);
  animation: rotate-minute 10s linear infinite;
}

@keyframes rotate-hour {
  from { transform: translate(-50%, 2px) rotate(0deg); }
  to   { transform: translate(-50%, 2px) rotate(360deg); }
}

@keyframes rotate-minute {
  from { transform: translate(-50%, 2px) rotate(0deg); }
  to   { transform: translate(-50%, 2px) rotate(360deg); }
}

#docModalCaption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 20px 0;
  height: 150px;
}

@keyframes zoomIn {
  from {transform: scale(0.8); opacity: 0}
  to {transform: scale(1); opacity: 1}
}

@keyframes fadeIn {
  from {opacity: 0}
  to {opacity: 1}
}

.doc-thumbnail {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.doc-thumbnail:hover {
  transform: scale(1.05);
}

.address-card .map-link {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

.address-card .map-link:hover {
  text-decoration: underline;
}

/* Hours card styling */
.hours-card {
  background: linear-gradient(135deg, rgba(26,95,63,0.08), rgba(212,165,116,0.12));
  border: 1px solid rgba(212,165,116,0.25);
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}

.hours-card h3 { margin-bottom: 4px; }
.hours-time { margin: 0; font-weight: 600; }
.hours-note { margin: 4px 0 0; color: #4a4a4a; font-size: 14px; }

.hours-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  justify-content: center;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(26,95,63,0.08);
  border: 1px solid rgba(26,95,63,0.15);
  border-radius: 12px;
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.meta-pill i { color: var(--brand); }

.meta-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.12);
  background: rgba(26,95,63,0.14);
}

/* Social card pills */
.social-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-card .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(212,165,116,0.35);
  background: rgba(212,165,116,0.08);
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  flex: 1 1 140px;
}

.social-pill i { color: var(--accent); }

.social-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
  background: rgba(212,165,116,0.16);
}

/* Admin page responsive tweaks */
.admin-page .grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.admin-page .form input,
.admin-page .form select,
.admin-page .form textarea,
.admin-page .form button {
  width: 100%;
}

.admin-page .form input[type="file"] {
  padding: 10px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
}

.social-pill.ig i { color: #d74c8f; }
.social-pill.fb i { color: #3b5998; }
.social-pill.wa i { color: #25D366; }

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 44px 32px;
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero h1 { 
    font-size: 56px; 
  }
  
  .product-card img {
    height: 240px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
  
  /* Desktop premium enhancements */
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .card {
    padding: 32px 28px;
  }
  
  .hero {
    min-height: 100vh;
  }
}

/* Sticky nav on pages without hero */
.header:not(.has-hero) { 
  position: sticky; 
  top: 0; 
  z-index: 50; 
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  backdrop-filter: saturate(160%) blur(12px); 
  box-shadow: 0 4px 16px rgba(46, 134, 171, 0.15);
  padding: 16px 20px;
}

/* Smooth scrolling for anchor links */
html {
  scroll-padding-top: 100px;
}

/* Accessibility: reduce motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after { 
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* High DPI Screens (Retina) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .card,
  .btn,
  input,
  textarea,
  select {
    border-width: 0.5px;
  }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .header { padding: 8px 16px; }
  .hero { min-height: auto; padding: 40px 0; }
  .page-hero { padding: 40px 0 30px; }
}

/* Utility Classes for inline styles */
.mt-16 { margin-top: 16px; }
.mt-12 { margin-top: 12px; }
.mt-8 { margin-top: 8px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-12 { margin-bottom: 12px; }
.text-center { text-align: center; }
.max-w-800 { max-width: 800px; margin-left: auto; margin-right: auto; }
.color-text-light { color: #4a4a4a; }
.color-success { color: #2b7a0b; }
.font-weight-600 { font-weight: 600; }

/* Document page specific */
.doc-card-image { padding: 0; overflow: hidden; }
.doc-card-padding { padding: 20px; }
.doc-icon-color { color: #d4a574; margin-right: 10px; }
.doc-icon-mr { margin-right: 8px; }
.doc-img-style { width: 100%; height: 200px; object-fit: cover; cursor: pointer; }
.doc-link-block { display: block; }

/* Documents all docs section */
.doc-info-flex { display: flex; align-items: center; gap: 12px; }
.doc-icon-pdf { font-size: 24px; color: #e63946; }
.doc-icon-alt { font-size: 24px; color: #2a7f54; }
.doc-icon-archive { font-size: 24px; color: #d4a574; }

/* Corporate identity heading */
.corp-heading { color: #f9f7f2; margin-bottom: 32px; font-size: clamp(28px, 5vw, 36px); }

/* Collapsible content hidden by default */
.content-hidden { display: none; }

/* --- Policies Card Custom Design --- */
.policies-card {
  max-width: 300px;
  padding: 24px 16px 18px 16px;
  border-radius: 18px;
}
.policies-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}
.policies-header i {
  font-size: 36px;
  margin-bottom: 4px;
}
.policies-title {
  font-size: 1.3rem;
}
.policies-content {
  margin-bottom: 0;
}
.policies-desc {
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.policies-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(90deg, #2b7a0b 0%, #d4a574 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: 10px;
  padding: 10px 18px;
  box-shadow: 0 4px 16px rgba(44, 62, 80, 0.10);
  margin-top: 8px;
  text-transform: uppercase;
  transition: box-shadow 0.3s, transform 0.3s;
}
.policies-btn i {
  font-size: 1.3em;
}
.policies-btn:hover {
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.18);
  transform: translateY(-2px) scale(1.03);
  background: linear-gradient(90deg, #236c2b 0%, #e8c9a0 100%);
}
.policies-img-preview {
  max-width: 220px;
  height: 110px;
  border-radius: 10px;
  margin-bottom: 16px;
}
.policies-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}
.policies-modal.active {
  display: flex;
}
.policies-modal-content {
  padding: 12px;
  border-radius: 12px;
}
.policies-modal-content img {
  max-width: 90vw;
  max-height: 70vh;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
}


