*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #40916C;
  --gold: #C8932A;
  --gold-light: #DBA84A;
  --gold-pale: #FBF3E0;
  --cream: #FAF7F2;
  --white: #FFFFFF;
  --dark: #1A1A1A;
  --text-muted: #5C5C5C;
  --border: #E8E0D0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(27,67,50,0.97);
  backdrop-filter: blur(10px);
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  border-bottom: 1px solid rgba(200,147,42,0.2);
}

.nav-logo { display:flex; align-items:center; text-decoration:none; }

.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links { display:flex; align-items:center; gap:28px; list-style:none; }

.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none; font-size: 13px; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 10px 22px; border-radius: 4px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  /* --hero-bg is set by PHP inline style so the CMS can change the photo.
     Falls back to hero.jpg when the variable is not set (static HTML use). */
  background:
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M40 40L20 20h40L40 40zm0 0L20 60h40L40 40z'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(135deg, rgba(10,32,18,0.91) 0%, rgba(27,67,50,0.84) 100%),
    var(--hero-bg, url('hero.jpg'));
  background-size: auto, cover, cover;
  background-position: center, center, center;
  background-repeat: repeat, no-repeat, no-repeat;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  padding-top: 68px;
  overflow: hidden;
  position: relative;
}

.hero-left {
  padding: 80px 5% 80px 8%;
  position: relative; z-index: 1;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,147,42,0.12);
  border: 1px solid rgba(200,147,42,0.35);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 11px; font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 1.2px; text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content:''; width:6px; height:6px;
  background: var(--gold); border-radius: 50%;
  flex-shrink: 0;
}

h1.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px,4.5vw,60px);
  font-weight: 800; color: var(--white);
  line-height: 1.1; margin-bottom: 22px;
}
h1.hero-title .accent {
  color: var(--gold); font-style: italic; display: block;
}

.hero-sub {
  font-size: 16px; color: rgba(255,255,255,0.72);
  max-width: 500px; margin-bottom: 44px; line-height: 1.75;
}

.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px;
}

.btn-primary {
  background: var(--gold); color: var(--white);
  padding: 15px 30px; border-radius: 4px;
  font-weight: 700; font-size: 14px;
  text-decoration: none; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s; font-family: 'Inter', sans-serif;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-ghost {
  background: transparent; color: var(--white);
  padding: 15px 30px; border-radius: 4px;
  font-weight: 600; font-size: 14px;
  text-decoration: none; border: 1.5px solid rgba(255,255,255,0.35);
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.hero-stats { display: flex; gap: 36px; }

.stat { border-left: 2px solid var(--gold); padding-left: 16px; }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 30px; font-weight: 700;
  color: var(--white); line-height: 1;
}
.stat-lbl {
  font-size: 11px; color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px;
}

/* Hero right — product cards */
.hero-right {
  padding: 60px 8% 60px 2%;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px; width: 100%; max-width: 420px;
}

.sc-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,147,42,0.18);
  border-radius: 12px; padding: 16px;
  display: flex; align-items: center; gap: 12px;
  transition: all 0.25s;
}
.sc-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(200,147,42,0.5);
  transform: translateY(-2px);
}
.sc-card.wide { grid-column: 1/-1; background: rgba(200,147,42,0.10); border-color: rgba(200,147,42,0.35); }

.sc-icon { font-size: 30px; flex-shrink: 0; }

.sc-name { font-weight: 600; font-size: 12px; color: var(--white); line-height: 1.3; }
.sc-hint { font-size: 10px; color: rgba(255,255,255,0.5); margin-top: 3px; }

.sc-pill {
  background: rgba(200,147,42,0.22); color: var(--gold-light);
  font-size: 9px; font-weight: 700; padding: 3px 8px;
  border-radius: 100px; margin-left: auto; white-space: nowrap; flex-shrink: 0;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--gold-pale);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 6%;
  display: flex; align-items: center;
  justify-content: center; gap: 40px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 600; color: var(--green);
}
.trust-item .ti-icon { font-size: 16px; }

/* ── SECTIONS ── */
section { padding: 88px 6%; }

.sec-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}

.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px,3vw,42px);
  font-weight: 700; color: var(--green);
  line-height: 1.2; margin-bottom: 14px;
}

.sec-body {
  font-size: 15px; color: var(--text-muted);
  max-width: 620px; line-height: 1.8;
}

.gold-rule {
  width: 56px; height: 3px;
  background: var(--gold); border-radius: 2px;
  margin-bottom: 20px;
}

.sec-header { margin-bottom: 52px; }

/* ── ABOUT ── */
.about { background: var(--white); }

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

.value-chips {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-top: 28px;
}
.chip {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; background: var(--cream);
  border-radius: 8px; border-left: 3px solid var(--gold);
  font-size: 13px; font-weight: 600; color: var(--green);
}

.about-panel {
  background: var(--green);
  border-radius: 16px; padding: 48px 40px;
  position: relative; overflow: hidden;
}
.about-panel::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 220px; color: rgba(255,255,255,0.04);
  position: absolute; top: -40px; right: -10px;
  line-height: 1; pointer-events: none;
}

.panel-block { margin-bottom: 32px; }
.panel-block:last-child { margin-bottom: 0; }

.panel-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.panel-text {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-style: italic;
  color: rgba(255,255,255,0.88); line-height: 1.65;
}

/* ── PRODUCTS ── */
.products { background: var(--cream); }

.prod-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}

.prod-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden; transition: all 0.25s; cursor: default;
}
.prod-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(27,67,50,0.12);
  border-color: var(--gold);
}

.prod-visual {
  height: 200px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.prod-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.prod-card:hover .prod-visual img {
  transform: scale(1.04);
}

.prod-badge {
  position: absolute; top: 10px; right: 10px;
  background: var(--green); color: var(--white);
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.3px; padding: 3px 9px; border-radius: 100px;
}

.prod-body { padding: 16px 16px 20px; }

.prod-aka {
  font-size: 10px; font-weight: 700;
  color: var(--gold); letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 4px;
}
.prod-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px; font-weight: 700;
  color: var(--green); margin-bottom: 8px;
}
.prod-desc { font-size: 12px; color: var(--text-muted); line-height: 1.55; margin-bottom: 12px; }

.prod-pack {
  background: var(--cream); border-radius: 6px;
  padding: 8px 10px; font-size: 11px;
  color: var(--text-muted); line-height: 1.4;
}
.prod-pack strong { color: var(--green); font-weight: 600; }

/* ── SERVICES ── */
.services { background: var(--white); }

.svc-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 18px;
}

.svc-card {
  padding: 26px 22px; border-radius: 12px;
  border: 1px solid var(--border); transition: all 0.25s;
}
.svc-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(27,67,50,0.07);
  transform: translateY(-2px);
}

.svc-icon {
  width: 46px; height: 46px; background: var(--gold-pale);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 22px; margin-bottom: 14px;
}

.svc-name { font-weight: 700; font-size: 13px; color: var(--green); margin-bottom: 8px; }
.svc-desc { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* ── WHY ── */
.why {
  background: var(--green); position: relative; overflow: hidden;
}
.why::before {
  content:''; position:absolute; inset:0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M40 40L20 20h40L40 40zm0 0L20 60h40L40 40z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.why .sec-title { color: var(--white); }
.why .sec-body { color: rgba(255,255,255,0.65); }

.why-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px;
  position: relative; z-index: 1;
}

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,147,42,0.18);
  border-radius: 12px; padding: 24px;
  transition: all 0.25s;
}
.why-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(200,147,42,0.5);
}

.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 34px; font-weight: 800;
  color: rgba(200,147,42,0.25);
  line-height: 1; margin-bottom: 12px;
}
.why-ttl {
  font-weight: 700; font-size: 13px;
  color: var(--white); margin-bottom: 8px;
}
.why-txt { font-size: 12px; color: rgba(255,255,255,0.58); line-height: 1.6; }

/* ── MARKETS ── */
.markets { background: var(--cream); text-align: center; }
.markets .sec-header { text-align: center; }
.markets .sec-body { margin: 0 auto; }
.markets .gold-rule { margin: 14px auto 0; }

.market-tags {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-top: 40px;
}

.mkt-tag {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 100px; padding: 11px 22px;
  font-size: 13px; font-weight: 500;
  color: var(--green); transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.mkt-tag:hover { border-color: var(--gold); background: var(--gold-pale); color: var(--gold); }

/* ── CERTS ── */
.certs { background: var(--white); text-align: center; }
.certs .sec-header { text-align: center; }
.certs .sec-body { margin: 0 auto; }
.certs .gold-rule { margin: 14px auto 0; }

.cert-list {
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: center; margin-top: 40px;
}

.cert-item {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 12px; padding: 18px 24px;
  display: flex; align-items: center; gap: 14px;
  min-width: 200px; text-align: left;
  transition: all 0.2s;
}
.cert-item:hover { border-color: var(--gold); }

.cert-ico {
  width: 42px; height: 42px; background: var(--gold-pale);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; font-size: 20px; flex-shrink: 0;
}
.cert-name { font-weight: 700; font-size: 13px; color: var(--green); }
.cert-status { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ── CTA STRIP ── */
.cta-strip {
  background: linear-gradient(130deg, var(--green) 0%, #275A45 100%);
  text-align: center; padding: 96px 6%;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content:''; position:absolute;
  top:-80px; right:-80px; width:360px; height:360px;
  border-radius:50%; background: rgba(200,147,42,0.07);
  pointer-events: none;
}
.cta-strip::after {
  content:''; position:absolute;
  bottom:-80px; left:-80px; width:280px; height:280px;
  border-radius:50%; background: rgba(200,147,42,0.05);
  pointer-events: none;
}

.cta-strip .sec-label { display:block; }
.cta-strip .sec-title { color:var(--white); max-width:580px; margin:0 auto 16px; }
.cta-strip .sec-body { color:rgba(255,255,255,0.72); margin:0 auto 40px; text-align:center; }

.cta-actions {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap; position: relative; z-index: 1;
}

/* ── CONTACT ── */
.contact { background: var(--cream); }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.25fr;
  gap: 64px; align-items: start;
}

.ch-list { display: flex; flex-direction: column; gap: 14px; margin-top: 30px; }

.ch-card {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; background: var(--white);
  border-radius: 10px; border: 1px solid var(--border);
  text-decoration: none; transition: all 0.2s;
}
.ch-card:hover { border-color: var(--gold); transform: translateX(4px); }

.ch-icon {
  width: 40px; height: 40px; background: var(--gold-pale);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; font-size: 18px; flex-shrink: 0;
}
.ch-lbl { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.ch-val { font-size: 13px; font-weight: 600; color: var(--green); margin-top: 1px; }

/* Form */
.form-box {
  background: var(--white); border-radius: 16px;
  padding: 40px; border: 1px solid var(--border);
}
.form-box-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  color: var(--green); margin-bottom: 4px;
}
.form-box-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: 11px; font-weight: 700;
  color: var(--green); text-transform: uppercase;
  letter-spacing: 0.6px; margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 13px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 13px; font-family: 'Inter', sans-serif;
  color: var(--dark); background: var(--white);
  outline: none; transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 96px; resize: vertical; }

.submit-btn {
  width: 100%; justify-content: center;
  margin-top: 4px; font-size: 15px; padding: 16px;
}

/* ── FOOTER ── */
footer {
  background: #0F2318;
  padding: 36px 6%;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.foot-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
}
.foot-tagline { font-size:11px; color:rgba(255,255,255,0.35); margin-top:6px; }
.foot-mid { font-size:12px; color:rgba(255,255,255,0.5); text-align:center; line-height:1.7; }
.foot-right { font-size:12px; color:rgba(255,255,255,0.4); text-align:right; line-height:1.7; }

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
  .prod-grid, .svc-grid, .why-grid { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:900px) {
  .hero { grid-template-columns:1fr; }
  .hero-right { display:none; }
  .about-grid, .contact-grid { grid-template-columns:1fr; gap:40px; }
}
@media(max-width:640px) {
  .prod-grid, .svc-grid, .why-grid { grid-template-columns:1fr; }
  .nav-links { display:none; }
  .form-row { grid-template-columns:1fr; }
  .hero-stats { gap:20px; }
  .trust-bar { gap:20px; }
}

