/* Startup Global — landing page (Orbit palette: cream paper, coral sun) */
:root {
  --ink: #262019;
  --body: #5b5348;
  --muted: #9a9184;
  --bg: #f8f4ec;
  --bg-soft: #fffdf8;
  --line: #e5dccb;
  --accent: #e8663c;
  --accent-2: #b06c2e;
  --grad: linear-gradient(120deg, #e8663c, #d4552c);
  --radius: 16px;
  --shadow: 0 12px 40px rgba(66, 50, 24, 0.1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2 { font-family: 'Fraunces', Georgia, 'Times New Roman', serif; font-weight: 550; letter-spacing: -0.01em; }
h1, h2, h3 { color: var(--ink); line-height: 1.18; }
a { color: inherit; }

::selection { background: rgba(232, 102, 60, 0.22); color: var(--ink); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* Cream scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #ddd2bd; border-radius: 6px; border: 2px solid var(--bg); }

/* Scroll-reveal choreography (JS adds .reveal, then .visible in view) */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.001s !important; }
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 760px; }

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-block;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #fffdf8; box-shadow: 0 8px 24px rgba(232, 102, 60, 0.35); }
.btn-ghost { background: var(--bg-soft); color: var(--ink); border: 1.5px solid var(--ink); }
.btn-white { background: #fffdf8; color: var(--accent); }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-lg { padding: 15px 34px; font-size: 16px; }
.btn:not(.btn-sm):not(.btn-lg) { padding: 12px 26px; font-size: 15px; }

/* ── Nav ─────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 244, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 68px;
}
.logo { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; }
.logo-mark {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--accent);
  letter-spacing: -0.5px;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.logo-name { font-weight: 800; font-size: 18px; color: var(--ink); }
.logo-name span { color: var(--accent); }

.nav-links { display: flex; gap: 22px; margin-left: 8px; }
.nav-links a {
  position: relative;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--body);
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 6px 0 10px;
  background: var(--bg-soft);
  color: var(--muted);
}
.lang-switch svg { width: 15px; height: 15px; }
.lang-switch select {
  border: none;
  background: transparent;
  padding: 8px 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  outline: none;
  appearance: auto;
}

/* ── Hero ────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 15% -10%, rgba(232, 102, 60, 0.09), transparent),
    radial-gradient(800px 420px at 90% 0%, rgba(176, 108, 46, 0.08), transparent),
    var(--bg);
  padding: 92px 0 90px;
  text-align: center;
}
.hero-inner { position: relative; z-index: 1; }
.hero h1 { font-style: italic; font-weight: 500; }

/* The coral sun and its orbit ring — the app's identity on the page */
.hero-sun {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, rgba(239, 133, 96, 0.34), rgba(232, 102, 60, 0.16) 55%, transparent 72%);
  filter: blur(2px);
  animation: sun-breathe 7s ease-in-out infinite;
  pointer-events: none;
}
.hero-ring {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 460px;
  height: 460px;
  border-radius: 50%;
  border: 1.5px dashed rgba(38, 32, 25, 0.16);
  animation: ring-turn 90s linear infinite;
  pointer-events: none;
}
@keyframes sun-breathe {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.9; }
  50% { transform: translateX(-50%) scale(1.06); opacity: 1; }
}
@keyframes ring-turn { to { transform: translateX(-50%) rotate(360deg); } }

/* Stats strip: small caps, hairline dividers */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.hero-stats span {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-stats i { width: 1px; height: 14px; background: var(--line); }
.hero-badge {
  display: inline-block;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(232, 102, 60, 0.08);
}
.hero h1 {
  font-size: clamp(34px, 5.4vw, 58px);
  max-width: 820px;
  margin: 26px auto 0;
  letter-spacing: -0.5px;
}
.hero-sub {
  font-size: 18px;
  max-width: 680px;
  margin: 20px auto 0;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.hero-trust { margin-top: 16px; font-size: 13px; color: var(--muted); }
.hero-trust.light { color: rgba(255, 255, 255, 0.85); }

/* Approval mock card */
.hero-visual { margin-top: 54px; display: flex; justify-content: center; }
.mock-card {
  width: 460px;
  max-width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 22px;
  text-align: left;
}
.mock-head { display: flex; align-items: center; gap: 9px; color: var(--ink); font-size: 14px; }
.mock-bot {
  width: 30px; height: 30px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.mock-bot svg { width: 16px; height: 16px; }
.mock-time { margin-left: auto; color: var(--muted); font-size: 12px; }
.mock-msg { margin-top: 12px; font-size: 14.5px; }
.mock-actions { display: flex; gap: 10px; margin-top: 16px; }
.mock-approve, .mock-reject {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px;
  border-radius: 10px;
}
.mock-approve svg, .mock-reject svg { width: 15px; height: 15px; }
.mock-approve { background: #5f9450; color: #fff; }
.mock-reject { background: #f6e3dc; color: #c9452e; }

/* Framed product screenshot in the hero, with the approval card floating on it */
.hero-shot {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(66, 50, 24, 0.18);
  text-align: left;
}
.hero-shot-bar {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}
.hero-shot-bar i {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--line);
}
.hero-shot-bar i:first-child { background: var(--accent); }
.hero-shot > img {
  width: 100%;
  display: block;
  border-radius: 0 0 18px 18px;
}
.hero-shot .mock-card {
  position: absolute;
  right: -16px;
  bottom: -30px;
  width: 400px;
  box-shadow: 0 24px 60px rgba(66, 50, 24, 0.25);
}
@media (max-width: 860px) {
  .hero-shot .mock-card { position: static; width: auto; margin: 14px; box-shadow: var(--shadow); }
}

/* ── Sections ────────────────────────────────── */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-soft); }
.section h2 { font-size: clamp(26px, 3.6vw, 40px); text-align: center; }
.section-sub { text-align: center; margin: 14px auto 0; max-width: 560px; font-size: 16px; }

/* Editorial section labels: a hairline, the label, a hairline */
.section-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
}
.section-kicker::before,
.section-kicker::after {
  content: '';
  width: 54px;
  height: 1px;
  background: var(--line);
}

/* ── The problem ─────────────────────────────── */
.problem { max-width: 820px; margin: 0 auto; text-align: center; }
.problem .wa-kicker { margin-bottom: 18px; text-align: center; }
.problem h2 {
  text-align: center;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.22;
}
.problem h2 em {
  font-style: italic;
  color: var(--accent);
}
.problem-sub {
  margin: 20px auto 0;
  font-size: 16.5px;
  max-width: 560px;
}
.problem-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.problem-chips span {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 20px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  transition: border-color 0.18s, transform 0.18s;
}
.problem-chips span:hover { border-color: rgba(232, 102, 60, 0.5); transform: translateY(-2px); }

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  margin-top: 46px;
}
.features-grid { counter-reset: feature; }
.feature-card {
  position: relative;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.feature-card::after {
  counter-increment: feature;
  content: '0' counter(feature);
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  opacity: 0.7;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(232, 102, 60, 0.4); }
.feature-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(232, 102, 60, 0.45);
  color: var(--accent);
  transition: background 0.18s, transform 0.18s;
}
.feature-card:hover .feature-icon { background: rgba(232, 102, 60, 0.1); transform: rotate(-6deg); }
.feature-icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 17px; margin: 12px 0 8px; }
.feature-card p { font-size: 14.5px; }

/* ── AI everywhere: WhatsApp ─────────────────── */
.wa {
  display: flex;
  align-items: center;
  gap: 56px;
}
.wa-copy { flex: 1; min-width: 280px; }
.wa-kicker {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.wa-copy h2 {
  text-align: left;
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 42px);
  max-width: 460px;
}
.wa-copy ul { list-style: none; margin-top: 30px; display: flex; flex-direction: column; gap: 20px; }
.wa-copy li { position: relative; padding-left: 26px; }
.wa-copy li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.wa-copy li:nth-child(1)::before { background: #e8663c; }
.wa-copy li:nth-child(2)::before { background: #e89a3c; }
.wa-copy li:nth-child(3)::before { background: #d8a24a; }
.wa-copy li:nth-child(4)::before { background: #5f9450; }
.wa-copy li strong { display: block; color: var(--ink); font-size: 17px; }
.wa-copy li span { font-size: 14.5px; }

/* The phone mock */
.wa-chat {
  flex: 1;
  max-width: 470px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(66, 50, 24, 0.14);
  overflow: hidden;
}
.wa-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}
.wa-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #fffdf8;
  font-weight: 800;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.wa-who { flex: 1; }
.wa-who strong { display: block; color: var(--ink); font-size: 15.5px; }
.wa-who span { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; color: #5f9450; }
.wa-dot { width: 7px; height: 7px; border-radius: 50%; background: #5f9450; display: inline-block; }
.wa-badge { font-size: 11px; font-weight: 800; letter-spacing: 2.5px; color: var(--muted); }
.wa-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.wa-msg {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 15px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--body);
  max-width: 88%;
}
.wa-msg.blocker em {
  display: block;
  font-style: normal;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.wa-msg.me {
  align-self: flex-end;
  background: var(--accent);
  border-color: var(--accent);
  color: #fffdf8;
  border-radius: 12px 12px 4px 12px;
}
@media (max-width: 900px) {
  .wa { flex-direction: column; gap: 34px; }
  .wa-chat { max-width: 100%; }
}

/* Steps — "From empty workspace to a working team" */
.how .wa-kicker { margin-bottom: 16px; }
.how-title {
  text-align: left !important;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 3.8vw, 44px);
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 42px;
}
.step {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 26px 32px;
  text-align: left;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(232, 102, 60, 0.4); }
.step-n {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--accent);
}
.step h3 { font-size: 17.5px; margin: 16px 0 8px; line-height: 1.3; }
.step p { font-size: 14px; }
.steps-note {
  margin-top: 30px;
  font-size: 14.5px;
  color: var(--body);
}

/* ── Pricing ─────────────────────────────────── */
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
  margin-top: 48px;
  align-items: stretch;
}
.plan {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 20px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
}
.plan.featured {
  border-color: var(--accent);
  border-top-width: 4px;
  box-shadow: 0 20px 54px rgba(232, 102, 60, 0.16);
  transform: scale(1.02);
}
.plan-price { font-family: 'Fraunces', Georgia, serif; font-weight: 600; }
.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan h3 { font-size: 20px; }
.plan-tagline { font-size: 13.5px; margin-top: 6px; min-height: 42px; }
.plan-price {
  font-size: 46px;
  font-weight: 800;
  color: var(--ink);
  margin: 16px 0 4px;
}
.plan-price .cur { font-size: 24px; vertical-align: super; margin-right: 2px; }
.plan-price small { font-size: 15px; color: var(--muted); font-weight: 600; }
.plan-cta { margin: 14px 0 20px; }
.plan ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.plan li {
  font-size: 14px;
  padding-left: 26px;
  position: relative;
}
.plan li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.enterprise {
  margin-top: 26px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.enterprise > div { flex: 1; min-width: 240px; }
.enterprise strong { color: var(--ink); font-size: 16px; }
.enterprise p { font-size: 14px; margin-top: 3px; }

/* ── FAQ ─────────────────────────────────────── */
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 22px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  font-size: 15.5px;
  list-style: none;
  position: relative;
  padding-right: 28px;
}
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 22px;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item { transition: border-color 0.18s; }
.faq-item[open] { border-color: rgba(232, 102, 60, 0.45); }
.faq-item p { margin-top: 12px; font-size: 14.5px; }

/* ── Final CTA ───────────────────────────────── */
.final-cta {
  background: var(--grad);
  padding: 84px 0;
  text-align: center;
}
.final-cta h2 {
  color: #fff;
  font-size: clamp(26px, 3.6vw, 40px);
  max-width: 760px;
  margin: 0 auto 30px;
}

/* ── Footer ──────────────────────────────────── */
.footer { background: #262019; padding: 48px 0; color: #c9c0b2; }
.footer .logo-name { color: #fffdf8; }
.footer-inner { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.footer-tagline { margin-top: 12px; font-size: 14px; }
.footer-right { text-align: right; font-size: 14px; display: flex; flex-direction: column; gap: 6px; }
.footer-right a { color: #f0a888; text-decoration: none; }
.footer-legal { color: #8d8272; font-size: 12.5px; margin-top: 8px; }
.footer-colophon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 253, 248, 0.09);
}
.footer-colophon span { color: #8d8272; font-size: 10px; }
.footer-colophon p {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  color: #8d8272;
}

/* ── Product tour: real screenshots, alternating rows ── */
.tour { margin-top: 10px; }
.tour-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 52px;
}
.tour-row:nth-child(even) { flex-direction: row-reverse; }
.tour-shot {
  flex: 1.3;
  min-width: 0;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(66, 50, 24, 0.14);
  transition: transform 0.2s;
}
.tour-row:hover .tour-shot { transform: translateY(-4px) rotate(-0.3deg); }
.tour-row:nth-child(even):hover .tour-shot { transform: translateY(-4px) rotate(0.3deg); }
.tour-shot img { width: 100%; display: block; }
.tour-bar {
  display: flex;
  gap: 5px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
}
.tour-bar i { width: 8px; height: 8px; border-radius: 50%; background: var(--line); }
.tour-bar i:first-child { background: var(--accent); }
.tour-copy { flex: 1; min-width: 260px; }
.tour-n {
  display: block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.tour-copy h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 26px;
  font-weight: 600;
}
.tour-copy p { font-size: 15px; margin-top: 10px; line-height: 1.7; }
@media (max-width: 860px) {
  .tour-row, .tour-row:nth-child(even) { flex-direction: column; gap: 18px; margin-top: 40px; }
}

/* ── Sub-pages: Blog & About ─────────────────── */
.nav-current { color: var(--accent) !important; }
.nav-current::after { transform: scaleX(1) !important; }

.page-hero {
  padding: 72px 0 34px;
  text-align: center;
  background:
    radial-gradient(700px 320px at 50% -20%, rgba(232, 102, 60, 0.09), transparent),
    var(--bg);
}
.page-hero h1 {
  font-style: italic;
  font-weight: 500;
  font-size: clamp(32px, 4.6vw, 52px);
  max-width: 760px;
  margin: 0 auto;
}
.page-hero p {
  max-width: 560px;
  margin: 18px auto 0;
  font-size: 16.5px;
}

/* Blog */
.post-featured {
  display: flex;
  gap: 40px;
  align-items: center;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 46px;
}
.post-featured .post-cover { flex: 1.2; min-width: 0; align-self: stretch; }
.post-featured .post-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-featured-copy { flex: 1; padding: 36px 38px 36px 0; }
.post-featured-copy h2 { text-align: left; font-size: 28px; margin-top: 12px; }
.post-featured-copy p { margin-top: 12px; font-size: 15px; }
.post-more {
  display: inline-block;
  margin-top: 18px;
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
.post-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(232, 102, 60, 0.4); }
.post-card .post-cover { height: 170px; overflow: hidden; border-bottom: 1px solid var(--line); }
.post-card .post-cover img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.post-body { padding: 20px 22px 24px; }
.post-body h3 { font-family: 'Fraunces', Georgia, serif; font-size: 19px; font-weight: 600; margin-top: 10px; line-height: 1.3; }
.post-body p { font-size: 13.5px; margin-top: 8px; }
.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
}
.post-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(232, 102, 60, 0.35);
  padding: 3px 10px;
  border-radius: 999px;
}
.blog-note {
  text-align: center;
  margin-top: 46px;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
}

/* About */
.about-photo {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 64px rgba(66, 50, 24, 0.16);
}
.about-photo svg { display: block; width: 100%; height: auto; }
.about-pill {
  position: absolute;
  left: 22px;
  bottom: 20px;
  background: var(--bg-soft);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(66, 50, 24, 0.2);
}
.about-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.about-stats > div { text-align: center; }
.about-stats strong {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
}
.about-stats span { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); }
.about-stats i { width: 1px; height: 34px; background: var(--line); }
.about-story {
  max-width: 680px;
  margin: 44px auto 0;
}
.about-story p { font-size: 16px; line-height: 1.8; margin-bottom: 18px; }
.about-story em { font-family: 'Fraunces', Georgia, serif; }
.about-story strong { color: var(--ink); }

/* ── Responsive ──────────────────────────────── */
.nav-menu-cta { display: none; }

/* Hamburger button (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-soft);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav-inner { gap: 10px; height: 60px; }
  .logo-name { font-size: 16px; }
  .logo-mark { width: 30px; height: 30px; font-size: 15px; }
  .nav-toggle { display: flex; }
  .nav-actions { gap: 8px; }
  .nav-actions .btn { padding: 8px 14px; font-size: 13px; white-space: nowrap; }
  .lang-switch { padding: 0 4px 0 8px; }
  .lang-switch select { font-size: 12px; padding: 6px 2px; }

  /* Nav links become a dropdown panel under the bar, opened by the hamburger */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 6px 20px 12px;
    background: rgba(248, 244, 236, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(66, 50, 24, 0.12);
  }
  .nav.open .nav-links { display: flex; }
  .nav-links a { padding: 13px 0; font-size: 15.5px; border-bottom: 1px solid var(--line); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a::after { display: none; }
  .nav-actions .btn { display: none; }
  .nav-links .nav-menu-cta {
    display: inline-flex;
    justify-content: center;
    margin-top: 12px;
    padding: 12px 18px;
    font-size: 14.5px;
    color: #fffdf8;
    border-bottom: none;
  }

  .footer-inner, .footer-right { text-align: left; }
  .plan.featured { transform: none; }
  .post-featured { flex-direction: column; gap: 0; }
  .post-featured-copy { padding: 26px 24px; }
}
