/* ============================================================
   MyVerdura — section styles
   ============================================================ */

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 14px 16px;
  display: flex; justify-content: center;
  pointer-events: none;
}
.nav .wrap {
  pointer-events: auto;
  width: 100%; max-width: 1080px;
  height: 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 0 8px 0 22px;
  border-radius: 18px;
  background: rgba(247,246,243,0.55);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: 0 10px 34px rgba(31,28,22,0.16), inset 0 1px 0 rgba(255,255,255,0.55);
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), height var(--dur) var(--ease);
}
.nav.scrolled .wrap {
  background: rgba(247,246,243,0.7);
  box-shadow: 0 12px 38px rgba(31,28,22,0.2), inset 0 1px 0 rgba(255,255,255,0.6);
}
@media (max-width: 600px) {
  .nav { padding: 10px 12px; }
  .nav .wrap { height: 56px; padding: 0 8px 0 18px; border-radius: 16px; }
}
.wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 23px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  display: inline-flex; align-items: center; gap: 9px;
}
.wordmark .leaf {
  color: var(--leaf-mark);
  display: inline-flex;
}
.nav-links {
  display: none;
  align-items: center; gap: 32px;
  font-family: var(--font-body);
  font-size: 15px; font-weight: 500;
  color: var(--text-secondary);
}
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a { position: relative; padding: 6px 0; transition: color var(--dur) var(--ease); }
.nav-links a:hover { color: var(--emerald-700); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--emerald-600); transition: right var(--dur) var(--ease);
}
.nav-links a:hover::after { right: 0; }
.nav-links a.active { color: var(--emerald-700); font-weight: 600; }
.nav-links a.active::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-login { display: none; }
@media (min-width: 600px) { .nav-login { display: inline-flex; } }

/* ---------- STICKY CTA BAR (mobile / on-scroll) ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  background: rgba(247,246,243,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px rgba(74,69,61,0.08);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  display: flex; align-items: center; gap: 12px;
  transform: translateY(120%);
  transition: transform 360ms var(--ease);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .price-note { display: none; flex: 1; }
@media (min-width: 640px) {
  .sticky-cta { justify-content: center; }
  .sticky-cta .price-note { display: block; flex: 0 0 auto; }
}
.sticky-cta .price-note .lbl { font-size: 12px; color: var(--text-tertiary); }
.sticky-cta .price-note .val { font-family: var(--font-display); font-size: 18px; font-weight: 600; }

/* ---------- HERO (shared) ---------- */
.hero { position: relative; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px; }
.hero h1 {
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.hero h1 .italic { letter-spacing: -0.01em; }
.hero-sub {
  font-size: clamp(17px, 1.9vw, 21px);
  line-height: 1.5;
  color: var(--text-secondary);
  max-width: 30ch;
}
.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.hero-trustline {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--text-tertiary);
  flex-wrap: wrap;
}
.hero-trustline .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--line-strong); }

/* Direction A — full-bleed photo, copy lower-left */
.hero-a {
  min-height: 100svh;
  display: flex; align-items: flex-end;
  background-size: cover; background-position: center;
  position: relative;
  padding-bottom: 9vh;
}
.hero-a::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(38,34,28,0.72) 0%, rgba(38,34,28,0.32) 38%, rgba(38,34,28,0.05) 64%, rgba(38,34,28,0.12) 100%);
}
.hero-a::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(38,34,28,0.45) 0%, rgba(38,34,28,0) 52%);
}
.hero-a .wrap { position: relative; z-index: 2; }
.hero-a .hero-eyebrow { color: rgba(247,246,243,0.85); }
.hero-a .hero-eyebrow .dot-lead { background: var(--emerald-400); }
.hero-a h1 { color: var(--text-inverse); max-width: 16ch; }
.hero-a .hero-sub { color: rgba(247,246,243,0.92); margin-top: 22px; }
.hero-a .hero-ctas { margin-top: 34px; }
.hero-a .hero-trustline { color: rgba(247,246,243,0.78); margin-top: 30px; }
.hero-a .hero-trustline .sep { background: rgba(247,246,243,0.4); }
.hero-a .btn-secondary {
  background: rgba(247,246,243,0.10);
  color: var(--text-inverse);
  border-color: rgba(247,246,243,0.45);
  backdrop-filter: blur(4px);
}
.hero-a .btn-secondary:hover { background: rgba(247,246,243,0.2); color: #fff; border-color: rgba(247,246,243,0.7); }
.scroll-hint {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(247,246,243,0.7);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-hint .line { width: 1px; height: 34px; background: linear-gradient(rgba(247,246,243,0.7), rgba(247,246,243,0)); animation: scrolldrop 2s var(--ease) infinite; }
@keyframes scrolldrop { 0%{transform:scaleY(0); transform-origin: top;} 45%{transform:scaleY(1); transform-origin: top;} 55%{transform:scaleY(1); transform-origin: bottom;} 100%{transform:scaleY(0); transform-origin: bottom;} }

/* Direction B — split: editorial copy on canvas (left), photo (right) */
.hero-b {
  display: grid; grid-template-columns: 1fr;
  background:
    linear-gradient(180deg, var(--hero-top, var(--accent-gold-soft)) 0%, var(--hero-mid, var(--emerald-50)) 30%, var(--canvas) 70%);
  padding-top: 112px;
}
.hero-b .wrap { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 940px) {
  .hero-b .wrap { grid-template-columns: 1.05fr 0.95fr; gap: 56px; padding-top: 24px; padding-bottom: 24px; min-height: 100svh; }
}
.hero-b .col-text { padding: 40px 0; }
.hero-b h1 { max-width: 14ch; }
.hero-b .hero-sub { margin-top: 24px; }
.hero-b .hero-ctas { margin-top: 36px; }
.hero-b .hero-trustline { margin-top: 30px; }
.hero-b .col-media {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-xl);
}
@media (min-width: 940px) { .hero-b .col-media { aspect-ratio: auto; height: 78svh; align-self: center; } }
.hero-b .col-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-b .media-float {
  position: absolute; left: 18px; bottom: 18px; right: 18px;
  background: rgba(253,251,246,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-md);
}
.hero-b .media-float .mono { font-size: 12px; color: var(--text-tertiary); }
.hero-b .media-float .ttl { font-family: var(--font-display); font-size: 16px; font-weight: 600; }

/* Direction C — centered editorial + app phone */
.hero-c {
  background: linear-gradient(180deg, var(--hero-top, var(--accent-gold-soft)) 0%, var(--hero-mid, var(--emerald-50)) 26%, var(--canvas) 60%);
  padding-top: 128px; padding-bottom: 0; text-align: center;
  overflow: hidden;
}
.hero-c .wrap { display: flex; flex-direction: column; align-items: center; }
.hero-c .hero-eyebrow { justify-content: center; }
.hero-c h1 { max-width: 18ch; }
.hero-c .hero-sub { margin: 24px auto 0; text-align: center; max-width: 46ch; }
.hero-c .hero-ctas { justify-content: center; margin-top: 34px; }
.hero-c .hero-trustline { justify-content: center; margin-top: 26px; margin-bottom: 8px; }
.hero-c .hero-stage {
  position: relative; margin-top: 46px; width: 100%;
  display: flex; justify-content: center; align-items: flex-end;
}
.hero-c .hero-stage .band {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: min(1100px, 96%); height: 64%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-bottom: none;
  border-radius: var(--r-2xl) var(--r-2xl) 0 0;
}
.hero-c .phone {
  position: relative; z-index: 2;
  width: clamp(260px, 34vw, 360px);
  transform: translateY(6%);
  filter: drop-shadow(0 24px 48px rgba(74,69,61,0.22));
}
.hero-c .phone img { width: 100%; }
.hero-c .side-card {
  display: none;
  position: relative; z-index: 2;
  width: 240px; background: var(--raised);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 20px; text-align: left; box-shadow: var(--shadow-md);
}
@media (min-width: 1080px) { .hero-c .side-card { display: block; } }
.hero-c .side-card.left { margin-right: -40px; margin-bottom: 90px; }
.hero-c .side-card.right { margin-left: -40px; margin-bottom: 130px; }
.hero-c .side-card .ic {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--emerald-50); color: var(--emerald-700);
  display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
}
.hero-c .side-card .ttl { font-family: var(--font-display); font-size: 17px; font-weight: 600; margin-bottom: 4px; }
.hero-c .side-card p { font-size: 13.5px; color: var(--text-tertiary); line-height: 1.45; }

/* ---------- SECTION SCAFFOLD ---------- */
.section { padding: 96px 0; }
@media (min-width: 768px) { .section { padding: 128px 0; } }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { display: inline-flex; align-items:center; gap: 9px; margin-bottom: 18px; }
.section-head h2 {
  font-size: clamp(30px, 4vw, 44px); line-height: 1.08; letter-spacing: -0.015em;
}
.section-head p { margin-top: 18px; font-size: 18px; line-height: 1.55; color: var(--text-secondary); }

/* ---------- TRUST STRIP ---------- */
.trust {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
}
.trust .wrap { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 900px) { .trust .wrap { grid-template-columns: 1.3fr 1fr; gap: 56px; } }
.trust-network { display: flex; align-items: center; gap: 18px; }
.trust-network .avatar {
  width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex: 0 0 auto;
  border: 2px solid var(--raised); box-shadow: var(--shadow-sm);
  filter: grayscale(0.15);
}
.trust-network .copy .lead { font-size: 15px; line-height: 1.45; color: var(--text-secondary); max-width: 42ch; }
.trust-network .copy .lead strong { color: var(--text-primary); font-weight: 600; }
.trust-network .copy .loc {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 8px;
  font-family: var(--font-mono); font-size: 12.5px; color: var(--text-tertiary);
}
.trust-traction { display: flex; flex-wrap: wrap; gap: 10px 12px; }
@media (min-width: 900px) { .trust-traction { justify-content: flex-end; } }
.trust-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: var(--r-pill);
  background: var(--canvas); border: 1px solid var(--line);
  font-size: 13px; color: var(--text-secondary);
}
.trust-chip .n { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--emerald-700); }

/* ---------- PRODUCT PROOF ---------- */
.proof-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 16px;
}
@media (min-width: 760px) {
  .proof-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 230px;
    gap: 20px;
  }
}
.proof-tile {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--sunken);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.proof-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.proof-tile:hover img { transform: scale(1.04); }
.proof-tile .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 18px 16px;
  background: linear-gradient(to top, rgba(38,34,28,0.78), rgba(38,34,28,0));
  color: var(--text-inverse);
}
.proof-tile .cap .k { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.82; }
.proof-tile .cap .t { font-family: var(--font-display); font-size: 19px; font-weight: 600; margin-top: 3px; }
.proof-tile.phone-tile { background: var(--sunken); }
.proof-tile.phone-tile img { object-fit: cover; }

/* desktop spans */
@media (min-width: 760px) {
  .proof-tile.t-land { grid-column: span 7; grid-row: span 2; }
  .proof-tile.t-app  { grid-column: span 5; grid-row: span 3; }
  .proof-tile.t-harvest { grid-column: span 4; grid-row: span 1; }
  .proof-tile.t-plate { grid-column: span 3; grid-row: span 1; }
}

/* ---------- MODAL ---------- */
.modal-scrim {
  position: fixed; inset: 0; z-index: 100;
  background: var(--overlay);
  backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 220ms var(--ease);
}
.modal-scrim.open { opacity: 1; pointer-events: auto; }
.modal {
  width: 100%; max-width: 520px;
  background: var(--raised);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transform: translateY(16px) scale(0.98);
  transition: transform 260ms var(--ease);
  max-height: 92vh; display: flex; flex-direction: column;
}
.modal-scrim.open .modal { transform: none; }
.modal-hero {
  height: 132px; background-size: cover; background-position: center 60%;
  position: relative;
}
.modal-hero::after { content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(38,34,28,0.5), rgba(38,34,28,0.05)); }
.modal-close {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  width: 34px; height: 34px; border-radius: 50%;
  border: none; cursor: pointer;
  background: rgba(253,251,246,0.9); color: var(--text-primary);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur) var(--ease);
}
.modal-close:hover { background: #fff; }
.modal-body { padding: 28px; overflow-y: auto; }
.modal-steps { display: flex; gap: 6px; margin-bottom: 20px; }
.modal-steps .s { height: 4px; flex: 1; border-radius: 2px; background: var(--sunken); transition: background var(--dur) var(--ease); }
.modal-steps .s.active { background: var(--emerald-500); }
.modal-steps .s.done { background: var(--emerald-600); }
.modal h3 { font-size: 26px; line-height: 1.12; }
.modal .modal-sub { margin-top: 8px; font-size: 14.5px; color: var(--text-tertiary); }
.field { margin-top: 16px; }
.field label { display: block; font-size: 13px; font-weight: 500; color: var(--text-secondary); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; height: 46px; padding: 0 14px;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  background: var(--canvas); font-family: var(--font-body); font-size: 15px; color: var(--text-primary);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field textarea { height: auto; padding: 12px 14px; resize: vertical; min-height: 84px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--emerald-500); box-shadow: 0 0 0 3px var(--emerald-50);
}
.field .hint { font-size: 12.5px; color: var(--text-tertiary); margin-top: 6px; }
.opt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 8px; }
.opt {
  border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 14px; cursor: pointer; background: var(--canvas);
  transition: all var(--dur) var(--ease);
}
.opt:hover { border-color: var(--emerald-400); }
.opt.sel { border-color: var(--emerald-600); background: var(--emerald-50); box-shadow: 0 0 0 1px var(--emerald-600); }
.opt .o-t { font-family: var(--font-display); font-size: 17px; font-weight: 600; }
.opt .o-p { font-family: var(--font-mono); font-size: 13px; color: var(--emerald-700); margin-top: 2px; }
.opt .o-d { font-size: 12.5px; color: var(--text-tertiary); margin-top: 6px; line-height: 1.4; }
.modal-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 24px; }
.modal-confirm { text-align: center; padding: 14px 0 6px; }
.modal-confirm .check {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px;
  background: var(--emerald-50); color: var(--emerald-600);
  display: flex; align-items: center; justify-content: center;
}
.modal-confirm h3 { margin-bottom: 8px; }
.modal-confirm p { color: var(--text-secondary); font-size: 15px; max-width: 38ch; margin: 0 auto; }
