/* Eat That Frog!, public marketing site + auth pages
   Shares the app's earthy green/gold palette but stands on its own. */
:root {
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Plus Jakarta Sans", "Inter", ui-sans-serif, system-ui, sans-serif;
  --green: #4f6f52;
  --green-d: #3c5540;
  --green-l: #6b8e5a;
  --gold: #c6a15b;
  --gold-d: #a9863f;
  --ink: #26302a;
  --muted: #5f6f63;
  --cream: #f7f4ec;
  --card: #ffffff;
  --line: #e4ddcd;
  --shadow: 0 10px 30px rgba(40, 60, 45, 0.10);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; color: var(--ink); background: var(--cream);
  font-family: var(--font-body);
  letter-spacing: -0.006em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; }
button, input, select, textarea { font-family: inherit; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-d); }
img { max-width: 100%; }

/* ---- Top navigation ---- */
.site-nav {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; gap: 18px;
  padding: 14px 28px; background: rgba(247, 244, 236, 0.92);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--line);
}
.site-nav .logo { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.01em; font-size: 1.15rem; color: var(--green-d); margin-right: auto; }
.site-nav .logo span { color: var(--gold-d); }
.site-nav .links { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.site-nav .links a { font-weight: 600; color: var(--ink); }
.site-nav .links a:hover { color: var(--green); }
.btn {
  display: inline-block; padding: 10px 18px; border-radius: 10px;
  font-weight: 700; cursor: pointer; border: none; font-size: .95rem;
  transition: transform .05s ease, box-shadow .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-d); color: #fff; }
.btn-gold { background: var(--gold); color: #3a2e10; }
.btn-gold:hover { background: var(--gold-d); color: #2c220b; }
.btn-ghost { background: transparent; border: 1px solid var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--green); color: var(--green); }
.btn-block { display: block; width: 100%; text-align: center; }

.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; }

/* ---- Hero ---- */
.hero {
  text-align: center; padding: 32px 24px 28px;
  background: radial-gradient(1200px 400px at 50% -80px, #e9efe2, transparent),
              linear-gradient(160deg, #fbf9f3, #f2ede1);
}
.hero .frog { font-size: 3.4rem; }
.hero h1 { font-size: 2.7rem; font-weight: 800; letter-spacing: -0.03em; margin: 12px auto 10px; max-width: 760px; line-height: 1.15; }
.hero h1 .hl { color: var(--green); }
.hero p.lead { font-size: 1.2rem; color: var(--muted); max-width: 640px; margin: 0 auto 26px; }
.hero .cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero .microcopy { margin-top: 14px; color: var(--muted); font-size: .9rem; }

/* ---- Section scaffolding ---- */
.section { max-width: 1080px; margin: 0 auto; padding: 64px 24px; }
.section h2 { font-size: 2rem; text-align: center; margin: 0 0 8px; }
.section .sub { text-align: center; color: var(--muted); max-width: 620px; margin: 0 auto 40px; }
.section.alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); max-width: none; }
.section.alt > * { max-width: 1080px; margin-left: auto; margin-right: auto; }

/* ---- Features ---- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  padding: 24px; box-shadow: var(--shadow);
}
.feature .ico { font-size: 1.9rem; }
.feature h3 { margin: 12px 0 6px; font-size: 1.15rem; }
.feature p { margin: 0; color: var(--muted); }

/* ---- Fake app screenshots (CSS mockups, no image files needed) ---- */
.shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 8px; }
.shot {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  overflow: hidden; box-shadow: var(--shadow);
}
.shot .bar { display: flex; gap: 6px; padding: 10px 12px; background: #eef1e8; border-bottom: 1px solid var(--line); }
.shot .bar i { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.shot .bar i:nth-child(1){ background:#e0736b;} .shot .bar i:nth-child(2){ background:#e6c15b;} .shot .bar i:nth-child(3){ background:#8bbf7a;}
.shot .cap { padding: 6px 12px; font-size: .82rem; color: var(--muted); background:#eef1e8; }
.shot .body { padding: 16px; min-height: 150px; }
.mock-row { height: 12px; border-radius: 6px; background: #eef1e8; margin: 9px 0; }
.mock-row.g { background: var(--green-l); opacity: .85; }
.mock-row.gold { background: var(--gold); opacity: .85; }
.mock-row.w60 { width: 60%; } .mock-row.w80 { width: 80%; } .mock-row.w40 { width: 40%; }
.mock-stat { display:flex; gap:10px; margin-bottom:12px; }
.mock-stat div { flex:1; background:#eef1e8; border-radius:10px; height:46px; }
.mock-frog { background: linear-gradient(120deg, var(--green), var(--green-l)); color:#fff; border-radius:10px; padding:10px 12px; font-weight:700; margin-bottom:12px; }
.mock-heat { display:grid; grid-template-columns: repeat(10,1fr); gap:5px; }
.mock-heat span { padding-top:100%; border-radius:3px; background:#e4ecdd; }
.mock-heat span.a{background:#bcd6ac;} .mock-heat span.b{background:#8bbf7a;} .mock-heat span.c{background:var(--green);}

/* ---- Pricing ---- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price {
  background: var(--card); border: 1px solid var(--line); border-radius: 18px;
  padding: 28px 24px; display: flex; flex-direction: column; box-shadow: var(--shadow);
}
.price.featured { border: 2px solid var(--green); position: relative; transform: translateY(-6px); }
.price .badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #3a2e10; font-size: .72rem; font-weight: 800;
  padding: 4px 12px; border-radius: 999px; letter-spacing: .04em;
}
.price h3 { margin: 0 0 4px; font-size: 1.2rem; }
.price .amount { font-family: var(--font-display); font-variant-numeric: tabular-nums; letter-spacing: -0.02em; font-size: 2.6rem; font-weight: 800; color: var(--green-d); }
.price .period { color: var(--muted); font-size: .9rem; margin-bottom: 16px; }
.price ul { list-style: none; padding: 0; margin: 0 0 22px; }
.price li { padding: 7px 0; border-bottom: 1px dashed var(--line); font-size: .94rem; }
.price li::before { content: "✓ "; color: var(--green); font-weight: 800; }
.price-cta { margin-top: auto; display: flex; flex-direction: column; gap: 10px; }
.btn-spacer { display: block; height: 40px; }
.btn-buy { background: var(--gold); color: #3a2e10; }
.btn-buy:hover { background: var(--gold-d); color: #2c220b; }

/* ---- Blog ---- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow); display: flex; flex-direction: column; overflow: hidden;
}
.post-card .post-thumb {
  display: block; width: 100%; height: 168px; aspect-ratio: auto; object-fit: cover;
  object-position: center; background: var(--line);
}
.post-card .pc-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.post-card .date { color: var(--gold-d); font-size: .82rem; font-weight: 700; }
.post-card h3 { margin: 6px 0 8px; font-size: 1.12rem; }
.post-card p { color: var(--muted); margin: 0 0 16px; }
.post-card a.more { margin-top: auto; font-weight: 700; }
.post-hero {
  display: block; width: 100%; max-width: 760px; height: auto; margin: 0 auto 8px;
  aspect-ratio: 1200 / 630; object-fit: contain; border-radius: 16px;
  box-shadow: var(--shadow);
}
.article { max-width: 720px; margin: 0 auto; padding: 56px 24px; }
.article .date { color: var(--gold-d); font-weight: 700; }
.article h1 { font-size: 2.1rem; margin: 8px 0 6px; }
.article .byline { color: var(--muted); margin-bottom: 26px; }
.article p { font-size: 1.08rem; margin: 0 0 18px; }
.article .back { display: inline-block; margin-bottom: 24px; }

/* ---- Contact ---- */
.form-wrap { max-width: 560px; margin: 0 auto; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  padding: 28px; box-shadow: var(--shadow);
}
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 700; margin-bottom: 6px; font-size: .9rem; }
.field input, .field textarea {
  width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: 10px;
  font: inherit; background: #fdfcf8;
}
.field input:focus, .field textarea:focus { outline: 2px solid var(--green-l); border-color: var(--green-l); }

/* Phone field: custom country-code dropdown with SVG flags,
   styled with the same recipe as the text inputs */
.phone-row { display: flex; gap: 8px; }
.phone-row input { flex: 1 1 auto; min-width: 0; }
.cc-dd { position: relative; flex: 0 0 auto; }
.cc-btn {
  display: flex; align-items: center; gap: 6px; min-width: 96px;
  padding: 11px 10px; border: 1px solid var(--line); border-radius: 10px;
  font: inherit; background: #fdfcf8; color: inherit; cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.cc-btn:hover { border-color: var(--green-l); }
.cc-btn:focus, .cc-btn[aria-expanded="true"] { outline: 2px solid var(--green-l); border-color: var(--green-l); }
.cc-flag {
  width: 16px; height: 11px; object-fit: cover; flex: 0 0 auto;
  border-radius: 2px; border: 1px solid rgba(0, 0, 0, .12); background: #fff;
}
.cc-btn-label { font-weight: 600; }
.cc-caret {
  width: 12px; height: 8px; margin-left: auto; flex: 0 0 auto;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5l5 5 5-5' fill='none' stroke='%237a8471' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  transition: transform .15s ease;
}
.cc-btn[aria-expanded="true"] .cc-caret { transform: rotate(180deg); }
.cc-panel {
  position: absolute; z-index: 40; top: calc(100% + 6px); left: 0;
  width: 300px; max-width: 82vw;
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow); overflow: hidden;
}
.cc-search-wrap { padding: 8px; border-bottom: 1px solid var(--line); }
.cc-search {
  width: 100%; padding: 8px 10px; border: 1px solid var(--line); border-radius: 8px;
  font: inherit; font-size: .92rem; background: #fdfcf8;
}
.cc-search:focus { outline: 2px solid var(--green-l); border-color: var(--green-l); }
.cc-list { max-height: 264px; overflow-y: auto; padding: 4px; }
.cc-opt {
  display: flex; align-items: center; gap: 10px; width: 100%;
  padding: 8px 10px; border: 0; border-radius: 8px;
  font: inherit; font-size: .95rem; text-align: left;
  background: transparent; color: inherit; cursor: pointer;
}
.cc-opt:hover, .cc-opt:focus { background: #eef3e8; outline: none; }
.cc-opt.is-selected { background: #e7f0e0; font-weight: 600; }
.cc-name { flex: 1 1 auto; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cc-dial { flex: 0 0 auto; color: var(--muted); font-size: .9rem; }
.phone-err { display: block; margin-top: 6px; font-size: .85rem; color: #a4342a; }
@media (max-width: 480px) {
  .phone-row { flex-direction: column; }
  .cc-dd, .cc-btn { width: 100%; }
  .cc-panel { width: 100%; }
}
.notice { background: #e7f0e0; color: var(--green-d); border: 1px solid #bcd6ac; padding: 12px 14px; border-radius: 10px; margin-bottom: 18px; }
.errbox { background: #fbe6e4; color: #a4342a; border: 1px solid #eab8b2; padding: 12px 14px; border-radius: 10px; margin-bottom: 18px; }

/* ---- Auth pages ---- */
/* .auth-wrap centres the card in the space below the shared top nav; the same
   gradient as the old full-page .auth-body, but leaving the site header visible. */
.auth-wrap { display: flex; align-items: flex-start; justify-content: center; padding: 24px 16px 64px;
  min-height: calc(100vh - 65px);
  background: radial-gradient(1000px 400px at 50% -120px, #e9efe2, transparent), linear-gradient(160deg, #fbf9f3, #eee8db); }
.auth-body { display: flex; align-items: center; justify-content: center; min-height: 100vh; padding: 32px 16px;
  background: radial-gradient(1000px 400px at 50% -100px, #e9efe2, transparent), linear-gradient(160deg, #fbf9f3, #eee8db); }
.auth-card { width: 100%; max-width: 420px; }
.auth-card .brand { font-family: var(--font-display); letter-spacing: -0.01em; text-align: center; font-size: 1.5rem; font-weight: 800; color: var(--green-d); margin-bottom: 4px; }
.auth-card .brand span { color: var(--gold-d); }
.auth-card .tag { text-align: center; color: var(--muted); margin-bottom: 22px; }
.auth-card h1 { font-size: 1.3rem; text-align: center; margin: 0 0 18px; }
.auth-alt { text-align: center; margin-top: 16px; color: var(--muted); font-size: .92rem; }
.auth-row { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; font-size: .88rem; }
.oauth { display: grid; gap: 10px; margin: 6px 0 4px; }
.oauth a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px; border: 1px solid var(--line); border-radius: 10px; font-weight: 700;
  background: #fff; color: var(--ink);
}
.oauth a:hover { border-color: var(--green); }
.oauth a.disabled { opacity: .55; }
.divider { text-align: center; color: var(--muted); margin: 16px 0; position: relative; font-size: .85rem; }
.divider::before, .divider::after { content: ""; position: absolute; top: 50%; width: 40%; height: 1px; background: var(--line); }
.divider::before { left: 0; } .divider::after { right: 0; }
.captcha-q { font-weight: 800; color: var(--green-d); background: #eef1e8; padding: 6px 10px; border-radius: 8px; display: inline-block; }

/* ---- Footer ---- */
.site-foot { background: var(--green-d); color: #dfe7d8; padding: 40px 24px; text-align: center; }
.site-foot a { color: #fff; font-weight: 600; margin: 0 10px; }
.site-foot .small { color: #a9bda2; font-size: .85rem; margin-top: 14px; }

/* ---- Admin ---- */
.admin-wrap { max-width: 1000px; margin: 0 auto; padding: 40px 24px; }
.admin-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.admin-table th, .admin-table td { padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--line); font-size: .92rem; }
.admin-table th { background: var(--green); color: #fff; }
.admin-table select, .admin-table input { padding: 5px 7px; border: 1px solid var(--line); border-radius: 7px; font: inherit; }
.tag-pill { padding: 2px 9px; border-radius: 999px; font-size: .78rem; font-weight: 700; }
.tag-pill.active { background: #e7f0e0; color: var(--green-d); }
.tag-pill.disabled { background: #fbe6e4; color: #a4342a; }
.tag-pill.admin { background: #efe6cf; color: var(--gold-d); }

@media (max-width: 860px) {
  .feature-grid, .shots, .price-grid, .post-grid { grid-template-columns: 1fr; }
  .price.featured { transform: none; }
  .site-nav .links { display: none; position: absolute; top: 58px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 8px 0; }
  .site-nav .links.open { display: flex; }
  .site-nav .links a { padding: 12px 24px; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: block; }
  .hero h1 { font-size: 2rem; }
}

/* --- Checkout order summary --- */
.order-summary { border: 1px solid #e6ddc9; border-radius: 12px; padding: 16px 18px; margin-bottom: 20px; background: #faf7ef; }
.order-row { display: flex; justify-content: space-between; align-items: baseline; padding: 6px 0; }
.order-row .muted { color: #8a8577; font-weight: 500; font-size: .85rem; }
.order-row.total { border-top: 1px dashed #d9cfb6; margin-top: 8px; padding-top: 12px; font-size: 1.05rem; }
.billed-to { color: #6b6656; font-size: .92rem; margin: 0 0 16px; }
.billed-to strong { color: #2f3b2f; }
.order-feats { margin: 10px 0 4px; padding-left: 18px; color: #55513f; font-size: .9rem; }
.order-feats li { margin: 3px 0; }
.secure-note { text-align: center; color: #6b6656; }

/* --- Real product screenshots ("See it in action") --- */
.shot-fig { margin: 0; }
.shot-fig img {
  width: 100%; height: auto; display: block; border-radius: 14px;
  border: 1px solid var(--line); box-shadow: 0 14px 34px rgba(38, 48, 42, .12);
  transition: transform .25s ease;
}
.shot-fig img:hover { transform: translateY(-4px) scale(1.01); }
.shot-fig figcaption { margin-top: 10px; text-align: center; color: var(--muted); font-size: .88rem; }
@media (max-width: 820px) { .shots { grid-template-columns: 1fr; } }

/* --- Screenshot lightbox (click to enlarge) --- */
.shot-fig img { cursor: zoom-in; }
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(20, 26, 22, .88);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 32px 20px;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: min(1200px, 94vw); max-height: 82vh;
  width: auto; height: auto; border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .15);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
  cursor: zoom-out;
}
.lightbox-caption { margin-top: 14px; color: #e8e4d8; font-size: .95rem; text-align: center; }
.lightbox-close {
  position: absolute; top: 18px; right: 22px;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .3); background: rgba(0, 0, 0, .35);
  color: #fff; font-size: 1.6rem; line-height: 1; cursor: pointer;
}
.lightbox-close:hover { background: rgba(255, 255, 255, .15); }

/* --- FAQ (landing) ---------------------------------------------------------- */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow); overflow: hidden;
}
.faq-item summary {
  cursor: pointer; list-style: none; padding: 18px 22px;
  font-weight: 700; color: var(--ink); font-size: 1.04rem;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; color: var(--gold-d); font-size: 1.5rem; line-height: 1;
  flex: 0 0 auto; transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "\2212"; } /* minus */
.faq-item summary:hover { color: var(--green); }
.faq-answer { padding: 0 22px 20px; }
.faq-answer p { margin: 0; color: var(--muted); line-height: 1.6; }

/* Badge logo lockup (mark + wordmark + tagline) */
.site-nav .logo { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.logo-mark { width: 34px; height: 34px; display: block; flex: 0 0 auto; }
.site-nav .logo .logo-stack { display: flex; flex-direction: column; line-height: 1.05; white-space: nowrap; color: var(--green-d); }
.site-nav .logo .logo-stack .gold { color: var(--gold-d); }
.site-nav .logo .logo-tag { font-family: 'Inter', ui-sans-serif, system-ui, sans-serif; font-size: .55rem; font-weight: 600; letter-spacing: .2em; color: #5f6f63; margin-top: 3px; }
.auth-card .brand .brand-mark { width: 52px; height: 52px; display: block; margin: 0 auto 8px; }
.auth-card .brand .brand-tag { display: block; font-family: 'Inter', ui-sans-serif, system-ui, sans-serif; font-size: .6rem; font-weight: 600; letter-spacing: .22em; color: #5f6f63; margin-top: 4px; }

/* ---- Homepage image slider ---- */
.slider { max-width: 1080px; margin: -6px auto 0; padding: 0 24px; }
.slider-track-wrap {
  position: relative; overflow: hidden; border-radius: 18px;
  border: 1px solid var(--line); box-shadow: 0 22px 48px -26px rgba(31, 60, 40, .55);
  background: #ece4d4;
}
.slider-track { display: flex; transition: transform .6s cubic-bezier(.4, 0, .2, 1); }
.slide { position: relative; min-width: 100%; margin: 0; }
.slide img { display: block; width: 100%; height: 440px; object-fit: cover; }
.slide-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 56px 30px 24px;
  background: linear-gradient(to top, rgba(18, 32, 22, .82), rgba(18, 32, 22, .28) 60%, transparent);
  color: #fff; text-align: left;
}
.slide-cap h3 { font-family: var(--font-display); font-size: 1.55rem; margin: 0 0 6px; color: #fff; }
.slide-cap p { margin: 0; color: rgba(255, 255, 255, .92); font-size: 1.02rem; line-height: 1.4; }
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border: none; border-radius: 50%; cursor: pointer;
  background: rgba(255, 255, 255, .85); color: var(--green-d);
  font-size: 1.6rem; line-height: 1; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .18); transition: background .2s ease, transform .05s ease;
}
.slider-btn:hover { background: #fff; }
.slider-btn:active { transform: translateY(-50%) scale(.94); }
.slider-btn.prev { left: 14px; }
.slider-btn.next { right: 14px; }
.slider-dots { display: flex; justify-content: center; gap: 9px; margin-top: 16px; }
.slider-dots button {
  width: 10px; height: 10px; padding: 0; border-radius: 50%; cursor: pointer;
  border: none; background: #cdc5b3; transition: background .2s ease, transform .2s ease;
}
.slider-dots button[aria-selected="true"] { background: var(--green); transform: scale(1.25); }

/* ---- Subpage hero band (blog, etc.) — matches the home hero ---- */
.page-hero {
  text-align: center; padding: 68px 24px 52px;
  background: radial-gradient(1200px 400px at 50% -80px, #e9efe2, transparent),
              linear-gradient(160deg, #fbf9f3, #f2ede1);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.03em; margin: 0 auto 10px; max-width: 760px; line-height: 1.15; }
.page-hero h1 .hl { color: var(--green); }
.page-hero p.lead { font-size: 1.15rem; color: var(--muted); max-width: 620px; margin: 0 auto; }

@media (max-width: 860px) {
  .slide img { height: 300px; }
  .slide-cap { padding: 46px 20px 18px; }
  .slide-cap h3 { font-size: 1.25rem; }
  .slide-cap p { font-size: .92rem; }
  .slider-btn { width: 38px; height: 38px; font-size: 1.3rem; }
  .page-hero { padding: 48px 22px 40px; }
  .page-hero h1 { font-size: 1.9rem; }
}
