:root {
  --green-900: #0c2a1f;
  --green-800: #103a2c;
  --green-700: #14503b;
  --green-600: #1d6b50;
  --cream-50: #f8f4ea;
  --cream-100: #efe7d2;
  --cream-200: #e3d6b6;
  --gold-300: #e9c46a;
  --gold-500: #c9971f;
  --gold-600: #a87811;
  --gold-700: #7a5708;
  --ink-900: #14201a;
  --ink-700: #2a3a32;
  --muted: #6f7d75;
  --border: #e1d8c4;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(12, 42, 31, .08), 0 1px 2px rgba(12, 42, 31, .05);
  --shadow-md: 0 8px 20px -6px rgba(12, 42, 31, .14), 0 4px 8px -2px rgba(12, 42, 31, .08);
  --shadow-lg: 0 20px 40px -10px rgba(12, 42, 31, .22);
  --shadow-xl: 0 30px 60px -15px rgba(12, 42, 31, .35);
  --gold-grad: linear-gradient(135deg, #ecc972 0%, #b88819 50%, #ecc972 100%);
  --container: 1200px;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-900);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
::selection { background: rgba(201,151,31,.35); color: var(--green-900); }

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.text-balance { text-wrap: balance; }
.text-pretty { text-wrap: pretty; }
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.gold-bg { background: var(--gold-grad); color: var(--green-900); }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.section-label::before, .section-label::after {
  content: ""; display: block; width: 32px; height: 1px;
  background: rgba(201,151,31,.6);
}
.vault-bg {
  position: relative;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(20,80,59,.7) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(15,45,33,.95) 0%, transparent 60%),
    var(--green-900);
  color: var(--cream-50);
  overflow: hidden;
}
.vault-bg::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: .07; mix-blend-mode: overlay;
}
.vault-bg > * { position: relative; z-index: 1; }
.hairline { height: 1px; background: linear-gradient(90deg, transparent, rgba(201,151,31,.5), transparent); }

/* TOP BAR */
.topbar {
  background: var(--green-800);
  color: var(--cream-100);
  font-size: 12px;
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 36px; gap: 16px;
}
.topbar .auth { letter-spacing: .15em; text-transform: uppercase; opacity: .8; }
.topbar a { display: inline-flex; align-items: center; gap: 6px; padding: 4px 8px; border-radius: 4px; }
.topbar a:hover { background: rgba(255,255,255,.08); }
.topbar a svg { width: 14px; height: 14px; }
@media (max-width: 720px) { .topbar .auth { display: none; } }
@media (max-width: 600px) {
  .topbar .container { flex-direction: column; height: auto; padding: 12px 0; gap: 8px; }
  .topbar a { justify-content: center; }
}

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248,244,234,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(248,244,234,.98);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 80px;
}
.logo {
  display: inline-flex; align-items: center; gap: 12px;
}
.logo-mark {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold-grad);
  display: grid; place-items: center;
  box-shadow: 0 4px 10px rgba(168,120,17,.35);
  ring: 1px solid rgba(201,151,31,.4);
}
.logo-mark svg { width: 22px; height: 22px; color: var(--green-900); }
.logo-image { height: 40px; width: auto; max-width: 200px; }
.logo-text { line-height: 1; }
.logo-text .top { font-family: var(--serif); font-size: 18px; font-weight: 600; letter-spacing: .05em; color: var(--ink-900); }
.logo-text .bot { font-family: var(--serif); font-size: 16px; font-weight: 700; letter-spacing: .25em; color: var(--gold-600); margin-top: 4px; }
@media (max-width: 600px) {
  .logo { gap: 10px; }
  .logo-text .top { font-size: 16px; }
  .logo-text .bot { font-size: 14px; }
}
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative;
  padding: 8px 12px; border-radius: 6px;
  font-size: 14px; font-weight: 500; letter-spacing: .02em;
  color: var(--ink-700); transition: color .2s, background .2s;
}
.nav a:hover { color: var(--ink-900); background: rgba(0,0,0,.03); }
.nav a.active { color: var(--gold-600); }
.nav a.active::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 2px;
  height: 1px; background: var(--gold-600);
}
.menu-toggle {
  display: none;
  width: 40px; height: 40px; border: 1px solid var(--border);
  background: transparent; border-radius: 6px;
  cursor: pointer; align-items: center; justify-content: center;
}
.menu-toggle svg { width: 22px; height: 22px; }
.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--cream-50);
}
.mobile-nav.open { display: block; }
.mobile-nav .container { padding-top: 12px; padding-bottom: 16px; }
.mobile-nav a {
  display: block; padding: 12px 14px; border-radius: 6px;
  font-size: 16px; color: var(--ink-700);
}
.mobile-nav a:hover { background: rgba(0,0,0,.04); }
.mobile-nav a.active { color: var(--gold-600); font-weight: 600; }
@media (max-width: 600px) {
  .mobile-nav a { padding: 14px 16px; font-size: 17px; }
}
@media (max-width: 1024px) {
  .nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
}
@media (max-width: 600px) {
  .header-inner { height: auto; padding: 16px 0; gap: 16px; }
  .logo { margin-bottom: 8px; }
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 14px; font-weight: 600; letter-spacing: .02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s, box-shadow .2s, background .2s, color .2s;
  text-align: center;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--green-800); color: var(--cream-50); }
.btn-primary:hover { background: var(--green-700); }
.btn-gold { background: var(--gold-grad); color: var(--green-900); box-shadow: 0 4px 12px rgba(168,120,17,.35); }
.btn-gold:hover { box-shadow: 0 6px 18px rgba(168,120,17,.45); }
.btn-outline { background: transparent; color: var(--ink-900); border-color: var(--border); }
.btn-outline:hover { background: rgba(0,0,0,.04); }
.btn-outline-light { background: rgba(255,255,255,.06); color: var(--cream-50); border-color: rgba(255,255,255,.18); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); }
.btn-lg { padding: 16px 28px; font-size: 15px; }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-block { width: 100%; }

/* INPUTS */
input[type="text"], input[type="email"], input[type="tel"], input[type="search"],
textarea, select {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--border); border-radius: 8px;
  background: var(--white); color: var(--ink-900);
  font-size: 14px;
  transition: border-color .2s, box-shadow .2s;
}
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201,151,31,.15);
}
textarea { resize: vertical; min-height: 96px; font-family: var(--sans); }
label.fieldlabel {
  display: block; font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
  font-weight: 600;
}

/* HERO */
.hero { padding: 80px 0 100px; }
.hero-inner { display: grid; grid-template-columns: 7fr 5fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(28px, 8vw, 76px); margin-top: 24px; letter-spacing: -0.02em; }
.hero p.lead { color: rgba(248,244,234,.85); font-size: 17px; margin-top: 24px; max-width: 620px; }
.hero-cta { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 40px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.stat .v { font-family: var(--serif); font-size: 32px; font-weight: 700; }
.stat .l { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: rgba(248,244,234,.6); margin-top: 4px; }
.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(201,151,31,.3);
}
@media (max-width: 960px) {
  .hero { padding: 56px 0 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 600px) {
  .hero-stats { grid-template-columns: 1fr; }
}

/* SECTIONS */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-tight { padding: 56px 0; }
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .section-sm { padding: 48px 0; }
  .section-tight { padding: 40px 0; }
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(24px, 6vw, 52px); margin-top: 16px; }
.section-head p { color: var(--muted); margin-top: 16px; font-size: 17px; }
.bg-cream { background: var(--cream-100); }
.bg-card { background: var(--white); }

/* TRUST STRIP */
.trust-strip {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--white);
}
.trust-strip .container { padding: 48px 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.trust-item { display: flex; gap: 16px; align-items: flex-start; }
.trust-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--gold-grad); display: grid; place-items: center;
  box-shadow: var(--shadow-sm); flex-shrink: 0;
}
.trust-icon svg { width: 22px; height: 22px; color: var(--green-900); }
.trust-item h4 { font-size: 17px; }
.trust-item p { font-size: 13px; color: var(--muted); margin: 4px 0 0; }
@media (max-width: 900px) {
  .trust-strip .container { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 520px) {
  .trust-strip .container { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .trust-strip .container { padding: 32px 24px; }
}

/* COIN GRID */
.coin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}
.coin-grid.coin-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .coin-grid.coin-grid-4 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .coin-grid.coin-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .coin-grid.coin-grid-4 { grid-template-columns: 1fr; } }

.coin-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: block;
}
.coin-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,151,31,.4);
}
.coin-img {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--green-800);
  overflow: hidden;
}
.coin-sprite {
  position: absolute; inset: 0;
  background-image: url("../images/coin-grid.jpg");
  background-size: 400% 280%;
  background-repeat: no-repeat;
  transition: transform .6s;
}
.coin-card:hover .coin-sprite { transform: scale(1.05); }
.coin-fallback {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  display: grid; place-items: center;
}
.coin-disc {
  width: 60%; aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold-grad);
  display: grid; place-items: center;
  box-shadow: inset 0 -4px 12px rgba(0,0,0,.2), 0 8px 20px rgba(0,0,0,.3);
  text-align: center; padding: 12px;
}
.coin-disc .y { font-family: var(--serif); font-weight: 700; font-size: 26px; color: var(--green-900); line-height: 1; }
.coin-disc .d { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: rgba(12,42,31,.7); margin-top: 4px; }
.coin-badge {
  position: absolute; top: 12px;
  padding: 4px 10px; border-radius: 100px;
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
.coin-badge.left { left: 12px; background: rgba(255,255,255,.92); color: var(--ink-900); border: 1px solid var(--border); }
.coin-badge.right { right: 12px; background: var(--gold-grad); color: var(--green-900); box-shadow: var(--shadow-sm); }
.coin-body { padding: 20px; }
.coin-cat { font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: var(--muted); }
.coin-name { font-family: var(--serif); font-size: 19px; font-weight: 600; margin: 6px 0; line-height: 1.2; }
.coin-desc { font-size: 13px; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.coin-foot {
  margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.coin-price-label { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }
.coin-price { font-family: var(--serif); font-size: 22px; font-weight: 700; }
.coin-link { font-size: 13px; font-weight: 500; color: var(--ink-700); display: inline-flex; align-items: center; gap: 4px; }
.coin-card:hover .coin-link { color: var(--gold-600); }

/* PAGE HERO */
.page-hero { padding: 80px 0; }
.page-hero h1 { font-size: clamp(24px, 7vw, 64px); margin-top: 16px; }
.page-hero p { color: rgba(248,244,234,.8); margin-top: 16px; font-size: 17px; max-width: 660px; }
.page-hero.with-image .container { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.page-hero.with-image .image-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-xl); border: 1px solid rgba(201,151,31,.3);
}
@media (max-width: 880px) {
  .page-hero.with-image .container { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .page-hero { padding: 56px 0; }
}

/* SHOP */
.shop-layout { display: grid; grid-template-columns: 280px 1fr; gap: 48px; }
@media (max-width: 960px) { .shop-layout { grid-template-columns: 1fr; } }
.filter-block + .filter-block { margin-top: 32px; }
.filter-list { display: flex; flex-direction: column; gap: 4px; }
.filter-list button {
  text-align: left; padding: 9px 14px; border-radius: 6px;
  background: transparent; border: none; cursor: pointer;
  font-size: 14px; color: var(--ink-700);
}
.filter-list button:hover { background: rgba(0,0,0,.04); }
.filter-list button.active { background: rgba(201,151,31,.12); color: var(--gold-600); font-weight: 600; }
.shop-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; font-size: 14px; color: var(--muted); }
.shop-meta a { color: var(--gold-600); text-decoration: underline; }
.search-input { position: relative; }
.search-input svg { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--muted); width: 16px; height: 16px; }
.search-input input { padding-left: 38px; }
.help-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
}
.help-card .lbl { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-600); }
.help-card p { font-size: 13px; color: var(--muted); margin: 8px 0 14px; }

/* PRODUCT */
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
@media (max-width: 960px) { .product-layout { grid-template-columns: 1fr; } }
.product-main-img {
  position: relative; aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--green-800);
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.product-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 12px; }
.product-thumb {
  position: relative; aspect-ratio: 1 / 1;
  border-radius: 8px; overflow: hidden;
  background: var(--green-800);
  border: 1px solid var(--border); opacity: .8;
}
.product-thumb:hover { opacity: 1; }
.product-meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.product-meta .k { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.product-meta .v { font-weight: 500; margin-top: 2px; }
.value-card {
  background: var(--green-800); color: var(--cream-50);
  border-radius: var(--radius-lg); padding: 22px;
  display: flex; align-items: flex-end; justify-content: space-between;
}
.crumbs { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 6px; padding: 16px 0; flex-wrap: wrap; }
.crumbs a:hover { color: var(--gold-600); }
.crumb-sep { opacity: .5; }

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 1024px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
}
.step .num {
  position: absolute; top: -14px; right: -14px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-800); color: var(--gold-300);
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 700; font-size: 16px;
  border: 1px solid rgba(201,151,31,.4);
}
.step .icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--gold-grad); display: grid; place-items: center;
  box-shadow: var(--shadow-sm); margin-bottom: 18px;
}
.step .icon svg { width: 22px; height: 22px; color: var(--green-900); }
.step h3 { font-size: 21px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted); margin: 0; }

/* TWO COLUMN */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr; } }
.two-col h2 { font-size: clamp(32px, 4vw, 48px); margin-top: 16px; }
.two-col p.lead { color: var(--muted); font-size: 17px; margin-top: 16px; }
.two-col.dark p.lead { color: rgba(248,244,234,.85); }
.image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(201,151,31,.4);
}
.image-frame.glow::before {
  content: ""; position: absolute; inset: -16px;
  background: var(--gold-grad); opacity: .15; filter: blur(40px);
  border-radius: 24px; z-index: -1;
}
.bullets { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; margin-top: 24px; padding: 0; list-style: none; }
.bullets li { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.bullets li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-500); flex-shrink: 0; }

/* TESTIMONIALS */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 960px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .testi-grid { grid-template-columns: 1fr; } }
.testi {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px;
}
.stars { display: flex; gap: 4px; color: var(--gold-500); margin-bottom: 16px; }
.stars svg { width: 16px; height: 16px; fill: currentColor; }
.testi blockquote { font-family: var(--serif); font-size: 19px; line-height: 1.45; margin: 0; font-weight: 500; }
.testi .who { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); }
.testi .who .n { font-weight: 600; font-size: 14px; }
.testi .who .l { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }

/* GRID OF VALUES / FEATURES */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 1024px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feat-grid { grid-template-columns: 1fr; } }
.feat {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
}
.feat .icon { width: 48px; height: 48px; border-radius: 10px; background: var(--gold-grad); display: grid; place-items: center; margin-bottom: 18px; }
.feat .icon svg { width: 22px; height: 22px; color: var(--green-900); }
.feat h3 { font-size: 20px; margin-bottom: 6px; }
.feat p { font-size: 14px; color: var(--muted); margin: 0; }

/* ARTICLE LIST */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .article-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .article-grid { grid-template-columns: 1fr; } }
.article-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; display: flex; flex-direction: column; min-height: 100%;
  transition: transform .2s, box-shadow .2s;
}
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.article-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.article-meta .cat { font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: var(--gold-600); font-weight: 700; }
.article-meta .min { font-size: 12px; color: var(--muted); display: inline-flex; align-items: center; gap: 6px; }
.article-card h3 { font-size: 22px; line-height: 1.2; }
.article-card p { font-size: 14px; color: var(--muted); margin-top: 12px; flex: 1; }
.article-foot { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--border); font-size: 13px; color: var(--gold-600); display: inline-flex; align-items: center; gap: 6px; font-weight: 500; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: transparent; border: none;
  padding: 22px 8px; cursor: pointer;
  font-family: var(--serif); font-size: 19px; font-weight: 600;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  color: var(--ink-900);
}
.faq-q .chev { width: 20px; height: 20px; flex-shrink: 0; transition: transform .25s; color: var(--muted); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); color: var(--gold-600); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
  color: var(--muted); font-size: 15px; line-height: 1.65;
}
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner { padding: 0 8px 22px; }

/* CONTACT */
.contact-layout { display: grid; grid-template-columns: 5fr 7fr; gap: 48px; }
@media (max-width: 960px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.contact-item .icon {
  width: 44px; height: 44px; border-radius: 10px; background: var(--gold-grad);
  display: grid; place-items: center; flex-shrink: 0; box-shadow: var(--shadow-sm);
}
.contact-item .icon svg { width: 20px; height: 20px; color: var(--green-900); }
.contact-item .lbl { font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--muted); }
.map-card {
  position: relative; aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); margin-top: 24px;
}
.map-card .vault-bg { position: absolute; inset: 0; }
.map-card .label {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center;
  color: var(--cream-50); padding: 24px;
}
.form-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.form-row { margin-bottom: 16px; }

/* FINAL CTA */
.final-cta { padding: 96px 0; text-align: center; }
.final-cta h2 { font-size: clamp(34px, 4vw, 56px); margin-top: 16px; }
.final-cta p { color: rgba(248,244,234,.8); font-size: 17px; max-width: 600px; margin: 16px auto 0; }
.final-cta .ctas { display: flex; gap: 12px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.final-cta .meta { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: rgba(248,244,234,.4); margin-top: 32px; }

/* FOOTER */
.site-footer {
  margin-top: 96px;
  background: var(--green-800);
  color: var(--cream-100);
}
.footer-trust .container {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 40px 24px;
}
@media (max-width: 900px) { .footer-trust .container { grid-template-columns: repeat(2, 1fr); } }
.footer-trust .trust-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(201,151,31,.15); display: grid; place-items: center; }
.footer-trust .trust-icon svg { width: 18px; height: 18px; color: var(--gold-300); }
.footer-trust .trust-item { display: flex; align-items: center; gap: 14px; }
.footer-trust .trust-item h4 { font-size: 14px; font-family: var(--sans); font-weight: 500; letter-spacing: .02em; margin: 0; }
.footer-main {
  display: grid; grid-template-columns: 4fr 2fr 2fr 4fr; gap: 32px;
  padding: 56px 24px;
}
@media (max-width: 960px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) { .footer-main { grid-template-columns: 1fr; } }
.footer-col h5 { font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--gold-300); font-family: var(--sans); font-weight: 700; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-col ul a { font-size: 14px; color: rgba(248,244,234,.85); }
.footer-col ul a:hover { color: var(--gold-300); }
.footer-about p { font-size: 14px; color: rgba(248,244,234,.8); max-width: 380px; margin: 16px 0; }
.footer-contacts { display: grid; gap: 8px; font-size: 14px; color: rgba(248,244,234,.85); }
.footer-contacts .row { display: flex; gap: 10px; align-items: flex-start; }
.footer-contacts svg { width: 16px; height: 16px; color: var(--gold-300); margin-top: 4px; flex-shrink: 0; }
.newsletter-form { display: flex; gap: 8px; flex-direction: column; }
@media (min-width: 480px) { .newsletter-form { flex-direction: row; } }
.newsletter-form input {
  background: rgba(255,255,255,.06); color: var(--cream-50);
  border-color: rgba(255,255,255,.15);
}
.newsletter-form input::placeholder { color: rgba(248,244,234,.5); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: rgba(248,244,234,.6);
}
.footer-bottom .tag { letter-spacing: .25em; text-transform: uppercase; }

/* TOAST */
.toast {
  position: fixed; bottom: 24px; right: 24px; left: 24px;
  background: var(--green-800); color: var(--cream-50);
  border: 1px solid rgba(201,151,31,.4);
  border-radius: var(--radius); padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  z-index: 100; max-width: 400px; margin-left: auto;
  transform: translateY(20px); opacity: 0;
  transition: transform .3s, opacity .3s;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast .t { font-weight: 600; font-size: 14px; }
.toast .d { font-size: 13px; opacity: .85; margin-top: 4px; }

/* GRADING */
.grade-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 800px; margin: 32px auto 0; }
@media (max-width: 600px) { .grade-grid { grid-template-columns: 1fr; } }
.grade {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 16px;
}
.grade .k { font-family: var(--serif); font-weight: 700; color: var(--gold-600); font-size: 19px; width: 100px; flex-shrink: 0; }
.grade .v { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s, transform .6s; }
.reveal.in { opacity: 1; transform: none; }

/* HIGHLIGHTS */
.highlights { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.highlights li { display: flex; gap: 16px; align-items: flex-start; }
.highlights li .num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold-grad); color: var(--green-900);
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}

/* 404 */
.notfound { padding: 140px 0; text-align: center; }
.notfound .four { font-family: var(--serif); font-weight: 700; font-size: clamp(80px, 16vw, 180px); line-height: 1; }
.notfound h1 { font-size: clamp(34px, 4vw, 52px); margin-top: 8px; }
.notfound p { color: rgba(248,244,234,.8); margin: 18px auto 0; max-width: 560px; }
.notfound .ctas { display: flex; gap: 12px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
