@import url('scale.css');

/* ── Content protection ───────────────────────────────────────────────────── */
img { -webkit-user-drag: none; user-drag: none; pointer-events: none; }
body { -webkit-user-select: none; user-select: none; }
input, textarea, select { -webkit-user-select: text; user-select: text; }

/* ── Reset & base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #0c0a08;
  --surface:     #141210;
  --surface2:    #1c1814;
  --surface3:    #242018;
  --orange:      #e05c18;
  --orange-dim:  #a84412;
  --text:        #ede8e0;
  --muted:       #7a6f65;
  --border:      #2a2420;
  --border2:     #3a3028;
  --nav-h:       64px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* ── Scroll animations ────────────────────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--delay, 0ms);
}
[data-animate].visible {
  opacity: 1;
  transform: none;
}

/* ── Navbar ───────────────────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.navbar.scrolled {
  background: rgba(12, 10, 8, 0.96);
  border-color: var(--border);
  backdrop-filter: blur(8px);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.nav-brand-text {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: nowrap;
}
.nav-links li { display: flex; align-items: center; }
.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }
.nav-news--active { color: var(--orange) !important; }
/* Mobile user+lang item — hidden on desktop */
.nav-mobile-user-item { display: none !important; }
@media (max-width: 768px) { .nav-mobile-user-item { display: flex !important; } }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero trees ───────────────────────────────────────────────────────────── */
.hero-trees {
  position: absolute;
  bottom: -40px;
  width: 28%;
  height: auto;
  max-height: 90%;
  pointer-events: none;
  object-fit: contain;
  opacity: 0.45;
  z-index: 0;
}
.hero-trees--left {
  left: -20px;
  transform: scaleX(-1);
  object-position: bottom left;
}
.hero-trees--right {
  right: -20px;
  object-position: bottom right;
}

@media (max-width: 768px) {
  .hero-trees { display: none; }
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  background: var(--bg);
  padding: 80px 0 64px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(224, 92, 24, 0.09) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
  opacity: 0.7;
}

.hero-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.06;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
  color: var(--text);
}
.hero-title em {
  font-style: italic;
  color: var(--orange);
}

.hero-sub {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 40px;
}

.form-flash {
  margin: 0 0 24px;
  padding: 14px 20px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: .04em;
}
.form-flash--ok   { background: rgba(80,200,120,.10); border: 1px solid rgba(80,200,120,.3); color: var(--green); }
.form-flash--err  { background: rgba(220,80,60,.10);  border: 1px solid rgba(220,80,60,.3);  color: #e06050; }
.form-flash--warn { background: rgba(224,160,24,.10); border: 1px solid rgba(224,160,24,.3); color: #d4a030; }

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--orange);
  color: var(--bg);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover {
  background: var(--orange-dim);
  transform: translateY(-2px);
}

.hero-photo { display: flex; justify-content: center; }

.photo-frame {
  position: relative;
  width: 320px;
  height: 390px;
  flex-shrink: 0;
}
.photo-frame::before {
  content: '';
  position: absolute;
  top: -14px;
  right: -14px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--orange);
  z-index: 0;
  transition: top 0.35s ease, right 0.35s ease;
}
.photo-frame:hover::before { top: -7px; right: -7px; }
.photo-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── Page container ───────────────────────────────────────────────────────── */
.page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px 80px;
}

/* ── Section labels ───────────────────────────────────────────────────────── */
.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 24px;
}

/* ── Intro ────────────────────────────────────────────────────────────────── */
.intro-section {
  padding-top: 72px;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  margin-bottom: 64px;
}
.intro-text p {
  font-size: 14.5px;
  line-height: 1.8;
  margin-bottom: 14px;
  color: var(--text);
}
.intro-text strong { font-weight: 500; color: var(--orange); }

.credentials {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
}
.credentials-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 16px;
}
.credential-item {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text);
}
.credential-item + .credential-item {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.pool-count-num {
  font-size: 22px;
  font-weight: 600;
  color: var(--orange);
  line-height: 1;
}

/* ── Retainer plans ───────────────────────────────────────────────────────── */
.retainer-section { margin-bottom: 64px; }

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.plan {
  padding: 28px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}
.plan:hover { border-color: var(--border2); transform: translateY(-4px); }
.plan.featured {
  border-color: var(--orange);
  background: var(--surface2);
}
.plan.featured:hover { border-color: var(--orange); }

.plan-badge {
  position: absolute;
  top: -11px; left: 16px;
  background: var(--orange);
  color: var(--bg);
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  font-weight: 500;
}
.plan-name {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  margin-bottom: 4px;
  color: var(--text);
}
.plan-hours {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 18px;
}
.plan-price {
  font-family: 'DM Serif Display', serif;
  font-size: 34px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}
.plan-price-sub {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 18px;
}
.plan-includes {
  list-style: none;
  font-size: 12.5px;
  line-height: 1.9;
  color: var(--text);
}
.plan-includes li::before {
  content: "→ ";
  color: var(--orange);
  font-family: 'DM Mono', monospace;
}
.retainer-note {
  font-size: 13px;
  color: var(--text);
  font-family: 'DM Mono', monospace;
  padding: 14px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  line-height: 1.65;
}

/* ── One-time services cards ──────────────────────────────────────────────── */
.tasks-section { margin-bottom: 64px; }

.tasks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.task-card {
  padding: 22px 44px 20px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: stretch;
  gap: 12px;
  transition: border-color 0.22s, transform 0.22s;
}
.task-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
}

.task-num {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--orange);
  opacity: 0.65;
}

.task-card-name {
  font-family: 'DM Serif Display', serif;
  font-size: 15px;
  color: var(--text);
  line-height: 1.35;
  flex: 1;
}

.task-card-price {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--orange);
}

.task-card-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.task-price--req {
  color: var(--muted);
  font-style: italic;
}

.task-card--full {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  padding-right: 22px;
  background: var(--surface2);
}
.task-card--full .task-card-price { margin-top: 0; }

/* ── Honeypot anti-spam field ─────────────────────────────────────────────── */
.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}

/* ── Task card — selectable state ─────────────────────────────────────────── */
.task-card {
  cursor: pointer;
  position: relative;
}
.task-card-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.task-check {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 20px;
  height: 20px;
  border: 1px solid var(--border2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: transparent;
  background: transparent;
  transition: border-color .18s, background .18s, color .18s;
  flex-shrink: 0;
}
.task-card:hover .task-check { border-color: var(--orange); }
.task-card--selected {
  border-color: var(--orange) !important;
  background: rgba(224,92,24,.07) !important;
}
.task-card--selected .task-check {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--bg);
}
.task-card--full .task-check { position: static; flex-shrink: 0; margin-left: 8px; }

@keyframes ot-shake {
  0%,100% { transform: translateX(0); }
  25%      { transform: translateX(-4px); }
  75%      { transform: translateX(4px); }
}
.task-card--shake { animation: ot-shake .4s ease; border-color: #c05050 !important; }

/* ── One-Time Request Form ────────────────────────────────────────────────── */
.ot-form-wrap {
  margin-top: 2px;
  padding: 22px 24px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: none;
  transition: border-color .2s;
}
.ot-form-wrap--active { border-color: rgba(224,92,24,.3); }

.ot-form-hint {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .04em;
  margin-bottom: 16px;
}

.ot-fields { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.ot-fields-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.ot-input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  padding: 10px 13px;
  outline: none;
  transition: border-color .2s;
}
.ot-input::placeholder { color: var(--muted); }
.ot-input:focus { border-color: var(--orange); }
.ot-textarea { resize: vertical; min-height: 68px; }

.ot-form-footer {
  display: flex;
  align-items: center;
  gap: 20px;
}
.ot-selected-summary {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .08em;
  color: var(--orange);
  opacity: .8;
}

.ot-submit {
  padding: 11px 28px;
  background: var(--orange);
  color: var(--bg);
  border: none;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
  margin-left: auto;
}
.ot-submit:hover { background: var(--orange-d); }

@media (max-width: 600px) {
  .ot-fields-row { grid-template-columns: 1fr; }
  .ot-form-wrap { padding: 18px 16px; }
  .ot-form-footer { flex-direction: column; align-items: flex-start; }
  .ot-submit { margin-left: 0; }
}

/* ── News listing ─────────────────────────────────────────────────────────── */
.news-section { margin-bottom: 64px; padding-top: 60px; }
.news-empty { font-size: 13px; color: var(--muted); padding: 40px 0; }

.news-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 860px;
  margin: 0 auto;
}

.news-card {
  display: flex;
  flex-direction: row;
  background: var(--surface);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: border-color .22s, background .22s;
  min-height: 140px;
}
.news-card:hover { border-color: var(--border2); background: var(--surface2); }

.news-card-cover {
  width: 240px;
  flex-shrink: 0;
  overflow: hidden;
}
.news-card-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.news-card:hover .news-card-cover img { transform: scale(1.04); }
.news-card-cover--empty { width: 240px; flex-shrink: 0; background: var(--surface2); }

.news-card-body { padding: 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; justify-content: center; }
.news-card-date { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: .1em; color: var(--orange); opacity: .7; }
.news-card-title { font-family: 'DM Serif Display', serif; font-size: 17px; color: var(--text); line-height: 1.3; }
.news-card-excerpt { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ── Single post ──────────────────────────────────────────────────────────── */
.news-post {
  max-width: 860px;
  margin: 0 auto 64px;
  padding-top: 60px;
}

.news-post-cover {
  width: 100%;
  margin-bottom: 36px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.news-post-cover img { width: 100%; height: auto; display: block; }

.news-post-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.news-back { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--muted); text-decoration: none; letter-spacing: .06em; transition: color .18s; }
.news-back:hover { color: var(--orange); }
.news-post-date { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--muted); letter-spacing: .08em; }
.news-post-title { font-family: 'DM Serif Display', serif; font-size: 32px; color: var(--text); line-height: 1.2; margin-bottom: 32px; }

/* Post body — Quill output */
.news-post-body { color: var(--text2); font-size: 15px; line-height: 1.85; }
.news-post-body h2 { font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--text); margin: 36px 0 12px; font-weight: normal; }
.news-post-body h3 { font-family: 'DM Serif Display', serif; font-size: 18px; color: var(--text); margin: 28px 0 10px; font-weight: normal; }
.news-post-body p  { margin-bottom: 18px; }
.news-post-body strong { color: var(--text); font-weight: 500; }
.news-post-body em { font-style: italic; }
.news-post-body a  { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }
.news-post-body blockquote { border-left: 3px solid var(--orange); padding: 4px 0 4px 20px; margin: 24px 0; color: var(--muted); font-style: italic; }
.news-post-body ul, .news-post-body ol { padding-left: 24px; margin-bottom: 18px; }
.news-post-body li { margin-bottom: 8px; }
.news-post-body img { max-width: 100%; border: 1px solid var(--border); margin: 20px 0; display: block; }
.news-post-body pre { background: var(--surface2); border: 1px solid var(--border); padding: 16px 18px; font-size: 12px; overflow-x: auto; margin: 20px 0; border-left: 3px solid var(--border2); }
.news-post-body code { font-family: 'DM Mono', monospace; font-size: 12px; background: var(--surface2); padding: 2px 6px; }
/* BB formatting blocks */
.news-post-body .bb-hero    { font-family: 'DM Serif Display', serif; font-size: 24px; color: var(--text); border-left: 3px solid var(--orange); padding: 12px 20px; margin: 24px 0; background: rgba(200,121,65,.06); }
.news-post-body .bb-section { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--orange); border-bottom: 1px solid var(--border); padding-bottom: 7px; margin: 32px 0 14px; display: block; }
.news-post-body .bb-callout { border-left: 3px solid #5a9a8a; background: rgba(90,154,138,.07); padding: 14px 18px; margin: 16px 0; }
.news-post-body .bb-warning { border-left: 3px solid var(--orange); background: rgba(200,121,65,.07); padding: 14px 18px; margin: 16px 0; }
.news-post-body .bb-quote   { border-left: 3px solid var(--border2); padding: 10px 18px; margin: 16px 0; font-style: italic; color: var(--muted); }
.news-post-body .bb-divider { border: none; border-top: 1px solid var(--border); margin: 28px 0; display: block; }

/* ── News card meta row ──────────────────────────────────────────────────── */
.news-card-meta { display: flex; align-items: center; justify-content: space-between; }
.news-card-views { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--muted); }

/* ── Post footer ─────────────────────────────────────────────────────────── */
.news-post-footer {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border);
}
.news-post-stats { display: flex; align-items: center; gap: 16px; }
.news-stat { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--muted); }
.news-like-btn {
  display: flex; align-items: center; gap: 6px;
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--muted); font-family: 'DM Mono', monospace; font-size: 11px;
  padding: 6px 14px; cursor: pointer; transition: all .2s;
}
.news-like-btn:hover { border-color: rgba(200,121,65,.4); color: var(--orange); }
.news-like-btn.liked { border-color: rgba(200,121,65,.5); color: var(--orange); background: rgba(200,121,65,.08); }
.like-icon { font-size: 13px; }

/* Share */
.news-share { display: flex; align-items: center; gap: 8px; }
.news-share-label { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .1em; color: var(--muted); text-transform: uppercase; margin-right: 4px; }
.share-btn {
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--muted); font-size: 12px; text-decoration: none; cursor: pointer;
  transition: all .2s; font-weight: 600;
}
.share-btn:hover { border-color: rgba(200,121,65,.4); color: var(--orange); }

@media (max-width: 600px) {
  .news-card { flex-direction: column; }
  .news-card-cover { width: 100%; height: 160px; }
  .news-card-cover--empty { width: 100%; height: 80px; }
  .news-post-title { font-size: 24px; }
  .news-post { padding-top: 40px; }
  .news-section { padding-top: 40px; }
  .news-post-footer { flex-direction: column; align-items: flex-start; }
}

/* ── What I bring ─────────────────────────────────────────────────────────── */
.value-section { margin-bottom: 64px; }
.value-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--border);
}
.value-list li {
  padding: 18px 24px;
  font-size: 13.5px; line-height: 1.6; color: var(--muted);
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  position: relative; padding-left: 42px;
}
.value-list li:nth-child(even) { border-right: none; }
.value-list li:nth-last-child(-n+2) { border-bottom: none; }
.value-list li::before {
  content: '→';
  position: absolute; left: 18px;
  color: var(--orange); font-weight: 500;
}

/* ── Pricing note ─────────────────────────────────────────────────────────── */
.pricing-note {
  margin-bottom: 48px;
  padding: 28px 36px;
  background: rgba(234, 130, 50, 0.05);
  border: 1px solid rgba(234, 130, 50, 0.25);
  border-left: 3px solid var(--orange);
}
.pricing-note-title {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 14px;
}
.pricing-note-body p { font-size: 13.5px; color: var(--muted); margin: 0 0 10px; }
.pricing-note-body ul { margin: 0; padding-left: 16px; }
.pricing-note-body li { font-size: 13px; color: var(--muted); line-height: 1.8; }

/* ── Why section ──────────────────────────────────────────────────────────── */
.why-section {
  margin-bottom: 64px;
  padding: 36px 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.why-item { font-size: 13.5px; line-height: 1.75; color: var(--muted); }
.why-item strong {
  display: block;
  font-weight: 500;
  color: var(--orange);
  margin-bottom: 6px;
  font-size: 13px;
}

/* ── Terms ────────────────────────────────────────────────────────────────── */
.terms-section { margin-bottom: 64px; }
.terms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  overflow: hidden;
}
.term-item {
  padding: 20px 22px;
  border-right: 1px solid var(--border);
}
.term-item:last-child { border-right: none; }
.term-title {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 8px;
}
.term-value { font-size: 13.5px; line-height: 1.6; color: var(--text); }

/* ── Carousel ─────────────────────────────────────────────────────────────── */
.carousel-section { margin-bottom: 64px; }
.carousel-wrap {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 16 / 9;
  max-height: 480px;
  border: 1px solid var(--border);
}
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-slide {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-slide img { width: 100%; height: 100%; object-fit: contain; display: block; }
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(12, 10, 8, 0.8);
  border: 1px solid var(--border2);
  color: var(--text);
  font-size: 16px;
  width: 44px; height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  z-index: 10;
}
.carousel-btn:hover { background: var(--orange); border-color: var(--orange); color: var(--bg); }
.carousel-btn.prev { left: 14px; }
.carousel-btn.next { right: 14px; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border2);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none; padding: 0;
}
.carousel-dot.active { background: var(--orange); transform: scale(1.5); }

/* ── Footer ───────────────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-logo-img { width: 30px; height: 30px; object-fit: contain; opacity: 0.7; }
.footer-name {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--text);
}
.footer-contacts {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  text-align: right;
  line-height: 2;
}
.footer-contacts a { color: var(--muted); transition: color 0.2s; }
.footer-contacts a:hover { color: var(--orange); }

/* ── Mobile ───────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --nav-h: 56px; }

  .nav-inner { padding: 0 20px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    z-index: 99;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links li { display: block; }
  .nav-links a { font-size: 13px; }

  .hero { padding: 48px 0 40px; }
  .hero::before { display: none; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 40px;
  }
  .hero-title { font-size: 36px; }
  .hero-photo { order: -1; }
  .photo-frame { width: 260px; height: 315px; }

  .page { padding: 0 20px 60px; }

  .intro-section {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 48px;
    margin-bottom: 48px;
  }

  .plans { grid-template-columns: 1fr; }
  .tasks-grid { grid-template-columns: 1fr; }
  .task-card--full { flex-direction: column; align-items: flex-start; }
  .value-list { grid-template-columns: 1fr; }
  .value-list li:nth-child(even) { border-right: none; }
  .value-list li:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .value-list li:last-child { border-bottom: none; }
  .pricing-note { padding: 20px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-section { padding: 24px 20px; }

  .terms-grid { grid-template-columns: 1fr; }
  .term-item { border-right: none; border-bottom: 1px solid var(--border); }
  .term-item:last-child { border-bottom: none; }

  footer { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-contacts { text-align: left; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 30px; }
  .photo-frame { width: 220px; height: 265px; }
}

@media print {
  .navbar, .hero-photo, .carousel-section { display: none; }
  body { background: white; color: black; }
  .page { padding: 20px; }
}
