/* =========================================================================
   Almanac — design system
   Palette inspired by an editorial agri-finance mood: deep forest green,
   sage, refined gold and a warm cream canvas. Lora (serif display) + Inter.
   ========================================================================= */

:root {
  --ink:        #1c1a17;
  --ink-soft:   #3a362f;
  --forest:     #2f5036;
  --forest-700: #244029;
  --forest-900: #1a2f1d;
  --sage:       #7fa680;
  --sage-soft:  #e7efe6;
  --gold:       #c0962a;
  --gold-bright:#d8b14a;
  --gold-soft:  #f0e7c8;
  --gold-text:  #8a6a14;
  --cream:      #faf8f0;
  --cream-2:    #f4efe1;
  --paper:      #ffffff;
  --muted:      #6f6a61;
  --line:       rgba(28, 26, 23, 0.10);
  --line-2:     rgba(28, 26, 23, 0.16);
  --shadow-sm:  0 1px 2px rgba(26, 31, 22, 0.06), 0 2px 8px rgba(26, 31, 22, 0.05);
  --shadow-md:  0 8px 24px rgba(26, 31, 22, 0.10), 0 2px 6px rgba(26, 31, 22, 0.06);
  --shadow-lg:  0 24px 60px rgba(26, 31, 22, 0.16);
  --radius:     14px;
  --radius-sm:  10px;
  --maxw:       1160px;
  --serif: 'Lora', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; color: var(--ink); margin: 0 0 0.4em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.3rem, 5.5vw, 4rem); letter-spacing: -0.022em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
a { color: var(--forest); text-decoration: none; }
a:hover { color: var(--forest-700); }
img { max-width: 100%; display: block; }
hr { border: none; border-top: 1px solid var(--line); margin: 2.5rem 0; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.center { text-align: center; }
.muted { color: var(--muted); }
.serif { font-family: var(--serif); }
.eyebrow {
  font-family: var(--sans); font-weight: 600; font-size: 0.74rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold-text); margin-bottom: 0.7rem;
}
.band .eyebrow, .hero-art .eyebrow { color: var(--gold-bright); }
.lede { font-size: 1.18rem; color: var(--ink-soft); max-width: 60ch; }

/* ----------------------------- buttons ----------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem; cursor: pointer;
  font-family: var(--sans); font-weight: 600; font-size: 0.95rem;
  padding: 0.72rem 1.25rem; border-radius: 999px; border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-decoration: none; line-height: 1; white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--forest); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--forest-700); color: #fff; box-shadow: var(--shadow-md); }
.btn--gold { background: var(--gold); color: #20180a; }
.btn--gold:hover { background: var(--gold-bright); color: #20180a; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { background: var(--paper); border-color: var(--forest); color: var(--forest); }
.btn--light { background: rgba(255,255,255,0.14); color:#fff; border-color: rgba(255,255,255,0.30); }
.btn--light:hover { background: rgba(255,255,255,0.22); color:#fff; }
.btn--sm { padding: 0.5rem 0.9rem; font-size: 0.86rem; }
.btn--block { width: 100%; justify-content: center; }

/* ----------------------------- header ------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 248, 240, 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 0.6rem; font-family: var(--serif); font-weight: 600; font-size: 1.4rem; color: var(--ink); letter-spacing: -0.01em; }
.brand:hover { color: var(--ink); }
.brand .mark { width: 26px; height: 26px; flex: 0 0 auto; }
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a { color: var(--ink-soft); font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover, .nav-links a.active { color: var(--forest); }
.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line-2); border-radius: 9px; width: 44px; height: 44px; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content:''; display:block; width:18px; height:2px; background: var(--ink); position: relative; }
.nav-toggle span::before { position:absolute; top:-6px; } .nav-toggle span::after { position:absolute; top:6px; }

@media (max-width: 880px) {
  .nav-links, .nav-cta .btn--ghost { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; position: absolute; top: 68px; left: 0; right: 0; flex-direction: column;
    align-items: flex-start; gap: 0.2rem; background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 12px 24px 20px;
  }
  .nav-links.open a { padding: 0.55rem 0; width: 100%; border-bottom: 1px solid var(--line); }
}

/* ----------------------------- hero -------------------------------------- */
.hero { position: relative; overflow: hidden; padding: 84px 0 64px; }
.hero::after {
  content:''; position:absolute; inset:0; z-index:-1; pointer-events:none;
  background:
    radial-gradient(900px 420px at 88% -8%, rgba(192,150,42,0.12), transparent 60%),
    radial-gradient(700px 480px at -6% 12%, rgba(47,80,54,0.10), transparent 60%);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 0.5rem; }
.hero .accent { color: var(--forest); }
.hero-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.6rem 0 1.9rem; }
.tag { font-size: 0.8rem; font-weight: 600; color: var(--forest-700); background: var(--sage-soft); border: 1px solid rgba(47,80,54,0.14); padding: 0.32rem 0.7rem; border-radius: 999px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.hero-art {
  border-radius: 20px; background: linear-gradient(160deg, var(--forest) 0%, var(--forest-900) 100%);
  box-shadow: var(--shadow-lg); padding: 26px; color: #eef3ec; position: relative; overflow: hidden;
}
.hero-art .dotgrid { position:absolute; inset:0; opacity:0.18;
  background-image: radial-gradient(rgba(255,255,255,0.6) 1px, transparent 1.4px);
  background-size: 18px 18px; }
.mini-kpis { position: relative; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.kpi { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: 12px; padding: 14px 16px; }
.kpi .n { font-family: var(--serif); font-size: 1.7rem; color: var(--gold-bright); line-height: 1; }
.kpi .l { font-size: 0.78rem; color: #cdd8c9; margin-top: 6px; }
.hero-art .barline { position: relative; margin-top: 18px; height: 76px; display:flex; align-items:flex-end; gap:8px; }
.hero-art .barline i { flex:1; background: linear-gradient(180deg, var(--sage), rgba(127,166,128,0.35)); border-radius: 5px 5px 0 0; display:block; }

@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; gap: 36px; } .hero-art { order: -1; } }

/* trust strip */
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--cream-2); }
.trust-strip .wrap { display: flex; flex-wrap: wrap; gap: 1.2rem 2.4rem; align-items: center; justify-content: center; padding-top: 18px; padding-bottom: 18px; }
.trust-strip .item { display:flex; align-items:center; gap:0.5rem; color: var(--ink-soft); font-size: 0.9rem; font-weight: 500; }
.trust-strip svg { color: var(--forest); }

/* ----------------------------- sections ---------------------------------- */
.section-head { max-width: 64ch; margin-bottom: 2.2rem; }
.section-head.center { margin-left: auto; margin-right: auto; }

/* category chips */
.chips { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-bottom: 2rem; }
.chip {
  font-size: 0.88rem; font-weight: 600; padding: 0.5rem 1rem; border-radius: 999px; cursor: pointer;
  background: var(--paper); border: 1px solid var(--line-2); color: var(--ink-soft); transition: all .15s ease;
}
.chip:hover { border-color: var(--forest); color: var(--forest); }
.chip.active { background: var(--forest); color: #fff; border-color: var(--forest); }

/* product grid */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .grid--3, .grid--2 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .22s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.card-art { height: 148px; position: relative; overflow: hidden; }
.card-cat { position:absolute; top:12px; left:12px; font-size:0.7rem; font-weight:700; letter-spacing:0.05em; text-transform:uppercase; color:#20180a; background: var(--gold-soft); border:1px solid rgba(192,150,42,0.4); padding: 0.28rem 0.6rem; border-radius: 999px; }
.card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: 0.35rem; }
.card-body .sub { color: var(--muted); font-size: 0.92rem; margin-bottom: 0.9rem; flex: 1; }
.card-foot { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; margin-top: auto; }
.price { font-family: var(--serif); font-weight: 600; font-size: 1.2rem; color: var(--ink); font-variant-numeric: tabular-nums; }
.price small { font-family: var(--sans); font-weight: 500; font-size: 0.78rem; color: var(--muted); }
.badge-pop { position:absolute; top:12px; right:12px; background: var(--forest); color:#fff; font-size:0.68rem; font-weight:700; letter-spacing:0.04em; text-transform:uppercase; padding:0.28rem 0.55rem; border-radius:999px; }

/* product detail */
.detail-grid { display: grid; grid-template-columns: 1.4fr 0.6fr; gap: 40px; align-items: start; }
@media (max-width: 880px) { .detail-grid { grid-template-columns: 1fr; } }
.detail-art { height: 280px; border-radius: var(--radius); overflow: hidden; margin-bottom: 26px; }
.feature-list { list-style: none; padding: 0; margin: 1.2rem 0; display: grid; gap: 0.7rem; }
.feature-list li { display: flex; gap: 0.65rem; align-items: flex-start; }
.feature-list li svg { flex: 0 0 auto; margin-top: 3px; color: var(--forest); }
.buy-card { position: sticky; top: 92px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 24px; }
.buy-card .price { font-size: 2rem; display: block; margin-bottom: 0.2rem; }
.buy-card .incl { font-size: 0.85rem; color: var(--muted); margin: 0.4rem 0 1.2rem; }
.buy-note { font-size: 0.8rem; color: var(--muted); margin-top: 0.9rem; text-align:center; }

/* knowledge */
.article-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .18s ease, box-shadow .22s ease; }
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.article-card .art { height: 120px; }
.article-card .body { padding: 18px 20px 20px; }
.article-card .meta { font-size: 0.78rem; color: var(--muted); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.04em; }
.prose { max-width: 70ch; margin: 0 auto; }
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.5rem; }
.prose blockquote { border-left: 3px solid var(--gold); margin: 1.5rem 0; padding: 0.2rem 0 0.2rem 1.2rem; color: var(--ink-soft); font-style: italic; }
.prose ul { padding-left: 1.2rem; } .prose li { margin-bottom: 0.4rem; }

/* dark band (forest) */
.band { background: linear-gradient(165deg, var(--forest) 0%, var(--forest-900) 100%); color: #eef3ec; position: relative; overflow: hidden; }
.band h2, .band h3 { color: #fff; }
.band .muted { color: #c2cfbf; }
.band .dotgrid { position:absolute; inset:0; opacity:0.10; background-image: radial-gradient(rgba(255,255,255,0.7) 1px, transparent 1.4px); background-size: 22px 22px; }
.band .wrap { position: relative; }

/* bundles */
.bundle { border: 1px solid rgba(255,255,255,0.16); background: rgba(255,255,255,0.05); border-radius: var(--radius); padding: 24px; display:flex; flex-direction:column; }
.bundle.featured { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.bundle h3 { margin-bottom: 0.3rem; }
.bundle .price { color: var(--gold-bright); font-size: 1.8rem; }
.bundle ul { list-style: none; padding: 0; margin: 1rem 0 1.4rem; display:grid; gap:0.5rem; flex:1; }
.bundle ul li { display:flex; gap:0.5rem; align-items:flex-start; font-size:0.92rem; color:#dbe5d7; }
.bundle ul li svg { flex:0 0 auto; margin-top:3px; color: var(--gold-bright); }

/* testimonials */
.quote { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.quote p { font-family: var(--serif); font-size: 1.12rem; color: var(--ink-soft); }
.quote .by { font-size: 0.86rem; color: var(--muted); margin-top: 0.8rem; }

/* forms */
.form { display: grid; gap: 1rem; max-width: 560px; }
.form.cols { grid-template-columns: 1fr 1fr; }
@media (max-width: 560px){ .form.cols { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.84rem; font-weight: 600; color: var(--ink-soft); }
.field input, .field textarea, .field select {
  font-family: var(--sans); font-size: 0.98rem; color: var(--ink); background: var(--paper);
  border: 1px solid var(--line-2); border-radius: var(--radius-sm); padding: 0.7rem 0.85rem; width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--forest); box-shadow: 0 0 0 3px rgba(47,80,54,0.12); }
.field textarea { min-height: 120px; resize: vertical; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: 0.82rem; color: var(--muted); }
.msg { padding: 0.8rem 1rem; border-radius: var(--radius-sm); font-size: 0.92rem; font-weight: 500; }
.msg.ok { background: var(--sage-soft); color: var(--forest-700); border: 1px solid rgba(47,80,54,0.2); }
.msg.err { background: #fbeaea; color: #9a2c2c; border: 1px solid #e6c3c3; }

/* newsletter band */
.news { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; }
.news-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
@media (max-width: 760px){ .news-grid { grid-template-columns: 1fr; } }
.inline-form { display: flex; gap: 0.6rem; }
.inline-form input { flex: 1; }
@media (max-width: 460px){ .inline-form { flex-direction: column; } }

/* security feature list */
.sec-grid { display:grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
@media (max-width: 680px){ .sec-grid { grid-template-columns: 1fr; } }
.sec-item { display:flex; gap: 0.9rem; align-items:flex-start; background: var(--paper); border:1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; box-shadow: var(--shadow-sm); }
.sec-item .ic { flex:0 0 auto; width: 38px; height: 38px; border-radius: 10px; background: var(--sage-soft); display:flex; align-items:center; justify-content:center; color: var(--forest); }
.sec-item h4 { margin: 0 0 0.25rem; font-family: var(--sans); font-size: 0.98rem; }
.sec-item p { margin: 0; font-size: 0.88rem; color: var(--muted); }

/* footer */
.site-footer { background: var(--forest-900); color: #cdd8c9; padding: 56px 0 32px; }
.site-footer a { color: #cdd8c9; }
.site-footer a:hover { color: #fff; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
@media (max-width: 760px){ .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot-grid h5 { font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: #9fb09a; margin: 0 0 0.9rem; }
.foot-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; font-size: 0.92rem; }
.foot-brand { font-family: var(--serif); font-size: 1.4rem; color: #fff; display:flex; align-items:center; gap:0.5rem; margin-bottom: 0.6rem; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 20px; display:flex; flex-wrap:wrap; gap: 0.6rem 1.4rem; justify-content: space-between; font-size: 0.84rem; color: #9fb09a; }

/* breadcrumb / back */
.crumb { font-size: 0.88rem; color: var(--muted); margin-bottom: 1.2rem; display:inline-flex; align-items:center; gap:0.4rem; }

/* modal */
.scrim { position: fixed; inset: 0; background: rgba(20,24,18,0.55); backdrop-filter: blur(3px); z-index: 100; display:flex; align-items:center; justify-content:center; padding: 20px; }
.modal { background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow-lg); max-width: 540px; width: 100%; max-height: 90vh; overflow: auto; padding: 28px; }
.modal h3 { margin-bottom: 0.3rem; }
.modal .x { float: right; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--muted); line-height: 1; }

/* admin */
.admin-shell { max-width: 1040px; }
.stat-row { display:grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 24px; }
@media (max-width: 680px){ .stat-row { grid-template-columns: repeat(2,1fr); } }
.stat { background: var(--paper); border:1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px; }
.stat .n { font-family: var(--serif); font-size: 1.9rem; color: var(--forest); line-height: 1; }
.stat .l { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }
.table { width: 100%; border-collapse: collapse; background: var(--paper); border:1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; font-size: 0.9rem; }
.table th, .table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.table th { background: var(--cream-2); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
.pill { font-size: 0.72rem; font-weight: 700; padding: 0.2rem 0.55rem; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.03em; }
.pill.new { background: var(--gold-soft); color:#7a5a10; }
.pill.contacted { background: #e3ecf7; color:#2b4d7a; }
.pill.won { background: var(--sage-soft); color: var(--forest-700); }
.pill.lost { background:#efe8e6; color:#7a6a64; }

.tabbar { display:flex; gap:0.4rem; margin-bottom: 20px; border-bottom:1px solid var(--line); }
.tabbar button { background:none; border:none; padding: 0.7rem 1rem; font-weight:600; color: var(--muted); cursor:pointer; border-bottom: 2px solid transparent; }
.tabbar button.active { color: var(--forest); border-bottom-color: var(--forest); }

/* utilities */
.row { display:flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.spacer { flex: 1; }
.mt0 { margin-top: 0; } .mb0 { margin-bottom: 0; }
.fade-in { animation: fade .35s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* =========================================================================
   v2 — accessibility, demos, expertise, booking, pricing tiers, flagship
   ========================================================================= */

/* skip link + visible focus */
.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--forest); color: #fff; padding: 0.7rem 1rem; border-radius: 0 0 8px 0; font-weight: 600; }
.skip-link:focus { left: 0; color: #fff; }
a:focus-visible, button:focus-visible, .btn:focus-visible, .chip:focus-visible, select:focus-visible, input:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--forest); outline-offset: 2px; border-radius: 6px; box-shadow: 0 0 0 2px var(--cream);
}
.stat .n, .kpi .n, .buy-card .price { font-variant-numeric: tabular-nums; }

/* guarantee badge */
.guarantee { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; font-weight: 600; color: var(--forest-700); background: var(--sage-soft); border: 1px solid rgba(47,80,54,0.18); padding: 0.4rem 0.8rem; border-radius: 999px; }
.guarantee svg { color: var(--forest); }

/* tier selector (buy-card) */
.tiers { display: grid; gap: 8px; margin: 4px 0 14px; }
.tier-opt { display: flex; align-items: center; justify-content: space-between; gap: 10px; border: 1px solid var(--line-2); border-radius: var(--radius-sm); padding: 10px 12px; cursor: pointer; transition: border-color .15s ease, background .15s ease; }
.tier-opt:hover { border-color: var(--forest); }
.tier-opt.sel { border-color: var(--forest); background: var(--sage-soft); box-shadow: 0 0 0 1px var(--forest) inset; }
.tier-opt .t-name { font-weight: 600; font-size: 0.9rem; }
.tier-opt .t-desc { font-size: 0.76rem; color: var(--muted); }
.tier-opt .t-price { font-family: var(--serif); font-weight: 600; font-variant-numeric: tabular-nums; }

/* screenshot / mockup gallery */
.shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 1.2rem 0; }
@media (max-width: 680px){ .shots { grid-template-columns: 1fr 1fr; } }
.shot { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: var(--paper); cursor: zoom-in; box-shadow: var(--shadow-sm); }
.shot img { width: 100%; height: 120px; object-fit: cover; display: block; }
.shot .cap { font-size: 0.74rem; color: var(--muted); padding: 6px 8px; border-top: 1px solid var(--line); }
.lightbox { position: fixed; inset: 0; background: rgba(20,24,18,0.82); z-index: 120; display: flex; align-items: center; justify-content: center; padding: 24px; cursor: zoom-out; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 12px; box-shadow: var(--shadow-lg); }

/* demo widget */
.demo-wrap { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-md); overflow: hidden; }
.demo-bar { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: var(--cream-2); border-bottom: 1px solid var(--line); font-size: 0.82rem; color: var(--muted); }
.demo-dot { width: 10px; height: 10px; border-radius: 50%; background: #d9b24a; }
.demo-dot.r { background: #d98a8a; } .demo-dot.g { background: #8abf8f; }
.demo-body { padding: 22px; }
.demo-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 24px; }
@media (max-width: 760px){ .demo-grid { grid-template-columns: 1fr; } }
.driver { margin-bottom: 14px; }
.driver label { display: flex; justify-content: space-between; font-size: 0.86rem; font-weight: 600; margin-bottom: 4px; }
.driver label .v { color: var(--forest); font-variant-numeric: tabular-nums; }
.driver input[type=range] { width: 100%; accent-color: var(--forest); }
.demo-out { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.demo-kpi { background: var(--cream); border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; }
.demo-kpi .n { font-family: var(--serif); font-size: 1.6rem; color: var(--forest); line-height: 1; font-variant-numeric: tabular-nums; }
.demo-kpi .l { font-size: 0.76rem; color: var(--muted); margin-top: 4px; }
.bridge { display: flex; align-items: flex-end; gap: 6px; height: 150px; padding-top: 8px; }
.bridge .col { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 100%; }
.bridge .bar { width: 100%; border-radius: 4px 4px 0 0; }
.bridge .lab { font-size: 0.66rem; color: var(--muted); margin-top: 6px; text-align: center; line-height: 1.1; }
.bridge .val { font-size: 0.7rem; font-weight: 600; margin-bottom: 4px; font-variant-numeric: tabular-nums; }

/* expertise page */
.exp-hero { max-width: 820px; }
.avatar { width: 96px; height: 96px; border-radius: 50%; background: linear-gradient(160deg, var(--forest), var(--forest-900)); display: flex; align-items: center; justify-content: center; color: var(--gold-bright); font-family: var(--serif); font-size: 2.2rem; font-weight: 700; box-shadow: var(--shadow-md); flex: 0 0 auto; }
.byline { display: flex; align-items: center; gap: 16px; margin: 1.6rem 0; }
.byline .who { font-weight: 700; font-size: 1.05rem; }
.byline .role { color: var(--muted); font-size: 0.9rem; }
.vignette { background: var(--paper); border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow-sm); }
.vignette .who { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--forest-700); margin-bottom: 0.5rem; }
.vignette .metric { font-family: var(--serif); color: var(--forest); font-weight: 600; }
.principles { counter-reset: p; display: grid; gap: 14px; padding: 0; list-style: none; }
.principles li { counter-increment: p; display: flex; gap: 14px; }
.principles li::before { content: counter(p); flex: 0 0 auto; width: 34px; height: 34px; border-radius: 9px; background: var(--sage-soft); color: var(--forest-700); font-weight: 700; display: flex; align-items: center; justify-content: center; font-family: var(--serif); }
.cred-strip { display: flex; flex-wrap: wrap; gap: 10px; margin: 1.2rem 0; }
.cred { font-size: 0.84rem; font-weight: 600; color: var(--ink-soft); background: var(--cream-2); border: 1px solid var(--line); padding: 0.5rem 0.9rem; border-radius: 999px; }
.confidential { font-size: 0.82rem; color: var(--muted); font-style: italic; }

/* booking page */
.book-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 860px){ .book-grid { grid-template-columns: 1fr; } }
.book-steps { list-style: none; padding: 0; margin: 1.2rem 0; display: grid; gap: 0.7rem; }
.book-steps li { display: flex; gap: 0.6rem; align-items: flex-start; }
.book-steps li svg { flex: 0 0 auto; margin-top: 3px; color: var(--forest); }

/* flagship dark band */
.flagship { background: linear-gradient(165deg, #1f2a23 0%, #14130f 100%); color: #eef3ec; position: relative; overflow: hidden; }
.flagship h2, .flagship h3 { color: #fff; }
.flagship .muted { color: #b9c4b4; }
.flagship .price { color: var(--gold-bright); }
.flagship .incl-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin: 1.2rem 0 1.6rem; }
@media (max-width: 680px){ .flagship .incl-grid { grid-template-columns: 1fr 1fr; } }
.flagship .incl-grid div { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; padding: 12px 14px; font-size: 0.88rem; }

/* membership */
.member { border: 1px dashed var(--line-2); border-radius: var(--radius); padding: 22px; background: var(--cream-2); }

