/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img { display: block; max-width: 100%; }

:root {
  --olive:        #3d4a1a;
  --olive-mid:    #556128;
  --olive-light:  #7a8c35;
  --amber:        #c8860a;
  --amber-bright: #f0a825;
  --cream:        #f5ede0;
  --paper:        #fdf8f0;
  --dark:         #150f05;
  --brown:        #3b2a14;
  --red:          #8b1a1a;
  --red-bright:   #c0392b;
  --border:       #c4a85a;
  --text:         #2c1f0a;
  --muted:        #6b5a3a;
}

body {
  font-family: 'Source Serif 4', Georgia, serif;
  background: var(--paper);
  color: var(--text);
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

/* ─── HEADER ─── */
.site-header {
  background: var(--dark);
  border-bottom: 3px solid var(--amber);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

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

.logo-badge {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-bright) 100%);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--dark);
  box-shadow: 0 2px 10px rgba(200,134,10,0.45);
  flex-shrink: 0;
}

.logo-text-block { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: 'Oswald', sans-serif;
  font-size: 21px; font-weight: 700;
  color: var(--amber-bright);
  letter-spacing: 1.5px;
}
.logo-domain {
  font-size: 10px; letter-spacing: 2px;
  color: #888; text-transform: uppercase; margin-top: 3px;
}

.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
  color: #bbb;
  padding: 8px 14px; border-radius: 4px;
  transition: all 0.2s;
}
.site-nav a:hover, .site-nav a.active { color: var(--amber-bright); background: rgba(200,134,10,0.1); }
.nav-cta {
  background: var(--amber) !important;
  color: var(--dark) !important;
  font-weight: 700 !important;
  padding: 9px 18px !important;
  border-radius: 4px;
}
.nav-cta:hover { background: var(--amber-bright) !important; transform: none !important; }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: 0.3s; }

/* ─── URGENT BANNER ─── */
.urgent-banner {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 9px 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px; letter-spacing: 1px;
}
.urgent-banner strong { color: var(--amber-bright); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  position: relative; overflow: hidden;
}

.btn-gold {
  background: linear-gradient(135deg, #b57508 0%, var(--amber-bright) 50%, #b57508 100%);
  background-size: 200% auto;
  color: var(--dark);
  font-size: 18px;
  box-shadow: 0 6px 24px rgba(200,134,10,0.45), 0 2px 6px rgba(0,0,0,0.25);
}
.btn-gold::after {
  content:'';
  position: absolute; top: -50%; left: -70%;
  width: 40%; height: 200%;
  background: rgba(255,255,255,0.35);
  transform: skewX(-15deg);
  animation: btnshine 3.5s ease 1s infinite;
}
@keyframes btnshine { 0%{ left:-70% } 50%,100%{ left:130% } }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(200,134,10,0.55); background-position: right center; }

.btn-outline {
  background: transparent;
  border: 2px solid var(--amber);
  color: var(--amber-bright);
  font-size: 15px; padding: 12px 30px;
}
.btn-outline:hover { background: var(--amber); color: var(--dark); }

.btn-block { display: block; text-align: center; width: 100%; }

/* ─── SECTION COMMONS ─── */
.section { padding: 80px 24px; }
.section-sm { padding: 50px 24px; }
.container { max-width: 960px; margin: 0 auto; }
.container-wide { max-width: 1100px; margin: 0 auto; }
.container-narrow { max-width: 720px; margin: 0 auto; }

.section-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--olive-light);
  text-align: center; margin-bottom: 10px;
}
.section-title {
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 900;
  text-align: center; margin-bottom: 16px;
}
.divider {
  width: 72px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  margin: 18px auto 40px;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--dark);
  border-top: 3px solid var(--amber);
  padding: 48px 24px 28px;
}
.footer-inner {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #2a2010;
}
.footer-brand .logo-name { font-size: 24px; margin-bottom: 10px; }
.footer-brand p { font-size: 13px; color: #777; line-height: 1.8; max-width: 320px; margin-top: 10px; }
.footer-col h4 { font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: 2px; color: var(--amber); margin-bottom: 14px; text-transform: uppercase; }
.footer-col a { display: block; font-size: 13px; color: #777; margin-bottom: 8px; }
.footer-col a:hover { color: var(--amber-bright); }
.footer-bottom { max-width: 960px; margin: 24px auto 0; font-size: 11px; color: #444; text-align: center; line-height: 1.9; }

/* ─── CARDS ─── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.card {
  background: var(--paper);
  border: 1px solid #ddd0b0;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(74,83,32,0.13); }
.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 22px 20px; }
.card-tag {
  display: inline-block;
  background: var(--olive);
  color: #e8dfc4;
  font-family: 'Oswald', sans-serif;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  padding: 3px 10px; border-radius: 2px; margin-bottom: 10px;
}
.card-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.card-body p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ─── IMAGE SECTION ─── */
.img-text { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.img-text.reverse .img-side { order: 2; }
.img-text.reverse .text-side { order: 1; }
.img-side img { width: 100%; border-radius: 8px; object-fit: cover; box-shadow: 0 12px 40px rgba(0,0,0,0.15); }
.text-side .tag {
  display: inline-block; background: var(--red); color: #fff;
  font-family: 'Oswald', sans-serif; font-size: 10px; letter-spacing: 2px;
  padding: 3px 10px; border-radius: 2px; margin-bottom: 14px;
}
.text-side h3 { font-size: clamp(20px, 3vw, 32px); font-weight: 900; margin-bottom: 14px; line-height: 1.25; }
.text-side p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }

/* ─── PRICE BOX ─── */
.price-box {
  background: var(--paper);
  border: 2px solid var(--border);
  border-radius: 12px;
  max-width: 500px; margin: 0 auto;
  padding: 44px 36px;
  box-shadow: 0 16px 56px rgba(74,83,32,0.12);
  text-align: center;
  position: relative; overflow: hidden;
}
.price-box::before {
  content: 'LIMITED TIME';
  position: absolute; top: 22px; right: -32px;
  background: var(--red); color: #fff;
  font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 2px;
  padding: 5px 44px; transform: rotate(38deg);
}
.price-was { font-size: 18px; color: #aaa; text-decoration: line-through; margin-bottom: 4px; }
.price-now { font-family: 'Playfair Display', serif; font-size: 76px; font-weight: 900; color: var(--olive); line-height: 1; }
.price-now sup { font-size: 38px; vertical-align: top; margin-top: 14px; }
.price-note { font-size: 14px; color: var(--muted); margin: 10px 0 28px; }
.guarantee-strip {
  margin-top: 28px; padding-top: 24px;
  border-top: 1px dashed #d0bc8a;
  display: flex; gap: 16px; align-items: center; text-align: left;
}
.guarantee-icon { font-size: 38px; flex-shrink: 0; }
.guarantee-strip p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.guarantee-strip strong { color: var(--text); }

/* ─── TESTIMONIALS ─── */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.testi {
  background: var(--cream);
  border-left: 4px solid var(--olive);
  border-radius: 0 8px 8px 0;
  padding: 26px 22px;
}
.stars { color: var(--amber-bright); font-size: 17px; margin-bottom: 10px; }
.testi p { font-size: 15px; color: #555; line-height: 1.75; font-style: italic; margin-bottom: 14px; }
.testi-name { font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: 1px; color: var(--olive-light); }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.up { opacity: 1; transform: translateY(0); }

/* ─── TRUST STRIP ─── */
.trust-bar { background: var(--olive); padding: 18px 24px; }
.trust-items { max-width: 960px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 28px; }
.trust-item { display: flex; align-items: center; gap: 9px; color: #e0d8c0; font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: 1px; }
.trust-item svg { flex-shrink: 0; }

/* ─── BREADCRUMB ─── */
.breadcrumb { background: var(--cream); border-bottom: 1px solid #ddd0b0; padding: 10px 24px; }
.breadcrumb-inner { max-width: 960px; margin: 0 auto; font-size: 13px; color: var(--muted); }
.breadcrumb-inner a { color: var(--olive-light); }
.breadcrumb-inner a:hover { color: var(--amber); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .img-text { grid-template-columns: 1fr; gap: 28px; }
  .img-text.reverse .img-side, .img-text.reverse .text-side { order: unset; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .site-nav { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--dark); padding: 16px; gap: 4px; border-bottom: 2px solid var(--amber); }
  .site-nav.open { display: flex; }
  .hamburger { display: block; }
}
@media (max-width: 480px) {
  .btn { padding: 14px 26px; font-size: 15px; }
}
