/* ==========================================================================
   seosistema.lt — site stylesheet
   Design tokens and layout replicated from the Claude Design handoff.
   ========================================================================== */

:root {
  --bg: #f2ede1;
  --ink: #17140d;
  --accent: #e2472a;
  --accent-dark: #c73c20;
  --cream: #f7f2e7;
  --body: #4a4438;
  --body-dark: #2a261d;
  --muted: #6f685a;
  --faint: #8a8272;
  --hairline: #d8d0be;
  --hairline-lt: #e6ded0;
  --input-line: #b7ad98;
  --row-hover: #e8e2d4;
  --on-dark-muted: #c8c2b5;
  --on-dark-faint: #b3aa99;
  --salmon: #f0a58c;
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Instrument Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --font-serif: 'Instrument Serif', serif;
}

* { box-sizing: border-box; }

html { scroll-padding-top: 140px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: var(--ink); }
a:hover { color: var(--accent); }

h1, h2, h3, h4, p, blockquote, figure { margin: 0; }

button { font: inherit; }
button:disabled { cursor: wait; opacity: .65; }

.spam-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-error {
  margin: 14px 0 0;
  color: #a52d19;
  font-size: 14px;
  line-height: 1.5;
}

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 40px; }

/* --------------------------------------------------------------------------
   Type helpers
   -------------------------------------------------------------------------- */

.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--accent);
  text-transform: uppercase;
}

.serif-accent {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--cream);
  padding: 15px 26px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
}
.btn:hover { background: var(--accent-dark); color: var(--cream); }

.btn-sm { padding: 11px 18px; font-size: 14px; }

.btn-outline {
  display: block;
  text-align: center;
  border: 1.5px solid var(--ink);
  background: transparent;
  color: var(--ink);
  padding: 12px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 3px;
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }

.btn-light {
  display: inline-block;
  background: var(--bg);
  color: var(--ink);
  padding: 16px 28px;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--font-display);
  border-radius: 3px;
  white-space: nowrap;
}
.btn-light:hover { background: var(--ink); color: var(--cream); }

.text-link {
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  border-bottom: 2px solid var(--ink);
  padding-bottom: 2px;
}

/* --------------------------------------------------------------------------
   Header / nav
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 13px 40px;
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .1em;
  color: var(--muted);
  text-transform: uppercase;
}
.topbar .topbar-center { text-align: center; }

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 2px solid var(--ink);
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -.035em;
  line-height: 1;
  color: var(--ink);
}
.nav-logo span { color: var(--accent); }
.nav-logo:hover { color: var(--ink); }

.nav-links { display: flex; align-items: center; gap: 28px; }

.nav-links > a:not(.btn) {
  position: relative;
  color: #3a352b;
  font-size: 15px;
  padding-bottom: 4px;
}
.nav-links > a:not(.btn):hover { color: var(--accent); }

.nav-links > a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--accent);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform .25s ease, opacity .25s 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); }

/* --------------------------------------------------------------------------
   Hero (home)
   -------------------------------------------------------------------------- */

.hero { padding: 60px 0 56px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 52px;
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .18em;
  color: var(--accent);
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(42px, 5.9vw, 74px);
  line-height: .98;
  letter-spacing: -.035em;
  margin-top: 22px;
}

.hero-lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--body);
  margin-top: 24px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 13.5px;
  color: var(--muted);
}
.hero-rating .stars { color: var(--accent); letter-spacing: 2px; }

.hero-media { position: relative; border: 1px solid var(--ink); }
.hero-media .frame {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #ece6da;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-media .badge {
  position: absolute;
  left: -1px;
  bottom: 26px;
  background: var(--accent);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .05em;
  padding: 10px 16px;
}

/* --------------------------------------------------------------------------
   Ticker
   -------------------------------------------------------------------------- */

.ticker {
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--hairline);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  background: var(--ink);
}
.ticker-track {
  display: inline-flex;
  animation: seomarquee 34s linear infinite;
}
.ticker-track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--bg);
  letter-spacing: -.01em;
}
.ticker-track .tick { color: var(--accent); }

@keyframes seomarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* --------------------------------------------------------------------------
   Section scaffolding
   -------------------------------------------------------------------------- */

.section { padding: 74px 0; }
.section-flush-top { padding: 0 0 74px; }
.section-rule { border-top: 2px solid var(--ink); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 20px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 2.9vw, 34px);
  line-height: 1.08;
  letter-spacing: -.02em;
}
.section-head .head-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}
.section-head .text-link { white-space: nowrap; font-size: 15px; }

/* --------------------------------------------------------------------------
   Services index (home)
   -------------------------------------------------------------------------- */

.service-list { border-top: 2px solid var(--ink); }

.service-row {
  display: grid;
  grid-template-columns: 64px 1.1fr 1.5fr auto;
  gap: 24px;
  align-items: center;
  padding: 26px 12px;
  border-bottom: 1px solid var(--hairline);
  color: var(--ink);
}
.service-row:hover { background: var(--row-hover); color: var(--ink); }

.service-row .num {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--faint);
}
.service-row .num.accent { color: var(--accent); }

.service-row h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -.01em;
}

.service-row p {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--body);
}

.service-row .arrow { font-family: var(--font-mono); color: var(--accent); }

.chip {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  background: var(--accent);
  color: var(--cream);
  padding: 6px 11px;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Stats band
   -------------------------------------------------------------------------- */

.stats-band { background: var(--accent); color: var(--cream); }
.stats-band .container {
  padding-top: 56px;
  padding-bottom: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stats-band .value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 4.1vw, 52px);
  line-height: 1;
  letter-spacing: -.03em;
}
.stats-band .label {
  font-size: 14px;
  color: rgba(247, 242, 231, .82);
  margin-top: 8px;
}

/* --------------------------------------------------------------------------
   Method steps
   -------------------------------------------------------------------------- */

.method-head { margin-bottom: 44px; }

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.method-step { border-top: 2px solid var(--ink); padding-top: 20px; }
.method-step .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  color: var(--accent);
  line-height: 1;
}
.method-step h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin-top: 16px;
}
.method-step p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--body);
  margin-top: 8px;
}

/* --------------------------------------------------------------------------
   Results
   -------------------------------------------------------------------------- */

.results-head { margin-bottom: 36px; }

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--ink);
}
.result-cell { padding: 30px 32px; border-right: 1px solid var(--hairline); }
.result-cell:first-child { padding-left: 0; }
.result-cell:last-child { padding-right: 0; border-right: none; }
.result-cell .value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(46px, 5.2vw, 66px);
  line-height: .95;
  letter-spacing: -.03em;
}
.result-cell .tag {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--accent);
  margin-top: 14px;
  letter-spacing: .06em;
}
.result-cell .desc {
  font-size: 15.5px;
  color: var(--body);
  margin-top: 6px;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Quote band
   -------------------------------------------------------------------------- */

.quote-band { border-top: 2px solid var(--ink); }
.quote-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
}
.quote-media { overflow: hidden; border-right: 2px solid var(--ink); }
.quote-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: grayscale(100%) sepia(14%) contrast(106%);
}
.quote-body {
  padding: 64px 0 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quote-body .stars { color: var(--accent); font-size: 18px; letter-spacing: 3px; }
.quote-body blockquote {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(27px, 3.2vw, 40px);
  line-height: 1.22;
  letter-spacing: -.01em;
  margin-top: 20px;
}
.quote-body cite {
  font-style: normal;
  margin-top: 26px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   About teaser (home) / story (about)
   -------------------------------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}
.split-even { grid-template-columns: 1fr 1fr; }

.split h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-top: 16px;
}

.split .lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  margin-top: 18px;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.checklist div {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 16px;
  color: var(--body-dark);
}
.checklist span { color: var(--accent); font-family: var(--font-mono); }

.split .text-link { display: inline-block; margin-top: 26px; }

.photo-frame { overflow: hidden; border: 1px solid var(--ink); }
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) sepia(14%) contrast(106%);
  transition: filter .5s ease;
}
.photo-frame:hover img { filter: none; }
.photo-square { aspect-ratio: 1 / 1; }
.photo-landscape { aspect-ratio: 5 / 4; }

/* --------------------------------------------------------------------------
   Vilnius divider
   -------------------------------------------------------------------------- */

.divider-banner {
  position: relative;
  height: 340px;
  overflow: hidden;
  border-top: 2px solid var(--ink);
}
.divider-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) sepia(16%) contrast(108%);
}
.divider-banner .shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 20, 13, .82), rgba(23, 20, 13, .35));
}
.divider-banner .content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.divider-banner .container { width: 100%; color: var(--bg); }
.divider-banner .kicker {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .18em;
  color: var(--salmon);
}
.divider-banner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 4.4vw, 52px);
  line-height: 1;
  letter-spacing: -.03em;
  margin-top: 14px;
  max-width: 640px;
}

/* --------------------------------------------------------------------------
   Contact block + forms
   -------------------------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-grid h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 4.4vw, 52px);
  line-height: 1;
  letter-spacing: -.03em;
  margin-top: 16px;
}

.contact-grid .lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--body);
  margin-top: 20px;
  max-width: 400px;
}

.contact-lines {
  margin-top: 30px;
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--body-dark);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-lines div { display: flex; align-items: center; gap: 12px; }
.contact-lines span { color: var(--accent); }

.form { display: flex; flex-direction: column; gap: 22px; }

.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
  letter-spacing: .08em;
}
.field input,
.field textarea {
  width: 100%;
  padding: 10px 2px;
  border: none;
  border-bottom: 1.5px solid var(--input-line);
  background: transparent;
  font-size: 17px;
  color: var(--ink);
  font-family: var(--font-body);
  border-radius: 0;
}
.field textarea { resize: vertical; }
.field input:focus,
.field textarea:focus {
  border-bottom-color: var(--accent);
  outline: none;
}
.field input::placeholder,
.field textarea::placeholder { color: #a99f8c; }

.form .submit {
  background: var(--accent);
  color: var(--cream);
  border: none;
  padding: 16px;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--font-display);
  cursor: pointer;
  border-radius: 3px;
  margin-top: 6px;
}
.form .submit:hover { background: var(--accent-dark); }

.form-success {
  border: 2px solid var(--ink);
  padding: 48px 28px;
  text-align: center;
}
.form-success .mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto;
}
.form-success h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  margin-top: 18px;
  letter-spacing: -.02em;
}
.form-success p { font-size: 15.5px; color: var(--body); margin-top: 10px; }

[hidden] { display: none !important; }

/* --------------------------------------------------------------------------
   Page hero (inner pages)
   -------------------------------------------------------------------------- */

.page-hero { padding: 72px 0 56px; border-bottom: 2px solid var(--ink); }
.page-hero.no-rule { border-bottom: none; padding-bottom: 48px; }

.page-hero .eyebrow { font-size: 13px; letter-spacing: .14em; }

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1;
  letter-spacing: -.035em;
  margin-top: 20px;
  max-width: 900px;
}
.page-hero h1.tight { line-height: 1.02; max-width: 940px; font-size: clamp(38px, 5.1vw, 64px); }

.page-hero .lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--body);
  margin-top: 24px;
  max-width: 600px;
}

/* --------------------------------------------------------------------------
   Service detail sections (paslaugos)
   -------------------------------------------------------------------------- */

.service-detail { padding: 70px 0; border-bottom: 1px solid var(--hairline); }
.service-detail.last { border-bottom: 2px solid var(--ink); }

.service-detail .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.service-detail .num-row { display: flex; align-items: center; gap: 16px; }
.service-detail .big-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  line-height: 1;
}
.service-detail .big-num.accent { color: var(--accent); }

.service-detail h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(27px, 2.9vw, 34px);
  letter-spacing: -.02em;
  margin-top: 16px;
}
.service-detail .num-row + h2 { margin-top: 20px; }

.service-detail .desc {
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  margin-top: 14px;
}

.service-detail .btn { margin-top: 24px; padding: 14px 24px; font-size: 15px; }
.service-detail .text-link { display: inline-block; margin-top: 24px; font-size: 15px; }

.included-card { border: 2px solid var(--ink); padding: 32px; }
.included-card .card-head {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--faint);
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 14px;
}
.included-card .item {
  display: flex;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--hairline-lt);
  font-size: 16px;
}
.included-card .item:last-child { border-bottom: none; padding-bottom: 0; }
.included-card .item span { color: var(--accent); font-family: var(--font-mono); }

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */

.pricing-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
}
.pricing-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-top: 14px;
}
.pricing-head p {
  max-width: 650px;
  margin: 18px auto 0;
  color: var(--body);
  font-size: 16.5px;
  line-height: 1.65;
}

.pricing-table-wrap {
  overflow-x: auto;
  border: 2px solid var(--ink);
  -webkit-overflow-scrolling: touch;
  scrollbar-color: var(--accent) var(--hairline-lt);
}

.pricing-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  table-layout: fixed;
}

.pricing-table th,
.pricing-table td {
  padding: 18px 20px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  text-align: left;
  vertical-align: top;
  transition: background-color .18s ease, color .18s ease;
}
.pricing-table tr > *:last-child { border-right: none; }
.pricing-table tbody tr:last-child > * { border-bottom: none; }
.pricing-table thead th { padding: 28px 20px 26px; }
.pricing-table thead th:first-child { width: 21%; }
.pricing-table thead th:not(:first-child) { width: 26.333%; }

.pricing-label {
  font-family: var(--font-mono);
  color: var(--faint);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.pricing-plan-name,
.pricing-plan-for,
.pricing-amount,
.pricing-period { display: block; }
.pricing-plan-name {
  font-family: var(--font-display);
  font-size: 25px;
  letter-spacing: -.02em;
}
.pricing-plan-for {
  min-height: 42px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.45;
}
.pricing-amount {
  margin-top: 22px;
  font-family: var(--font-display);
  font-size: 29px;
  letter-spacing: -.025em;
  white-space: nowrap;
}
.pricing-amount small {
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pricing-period {
  margin-top: 3px;
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
}

.pricing-table thead .pricing-featured { background: var(--ink); color: var(--bg); }
.pricing-featured .pricing-plan-for,
.pricing-featured .pricing-period { color: var(--on-dark-faint); }
.pricing-featured .pricing-amount small { color: var(--salmon); }
.pricing-featured .chip-sm { display: inline-block; margin-bottom: 12px; }
.pricing-table tbody td:nth-child(3) { background: #ebe4d7; }

.pricing-table tbody th {
  position: sticky;
  left: 0;
  z-index: 1;
  background: var(--bg);
  font-family: var(--font-mono);
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1.5;
  text-transform: uppercase;
}
.pricing-table tbody td {
  color: var(--body-dark);
  font-size: 14px;
  line-height: 1.5;
}
.pricing-table tbody tr:not(.pricing-action-row):hover > * { background: var(--row-hover); }

.pricing-action-row th,
.pricing-action-row td { padding-top: 22px; padding-bottom: 22px; vertical-align: middle; }
.pricing-table .btn,
.pricing-table .btn-outline { display: block; padding: 12px 10px; text-align: center; font-size: 13.5px; }
.pricing-table .btn { color: var(--cream); }

.chip-sm {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .08em;
  background: var(--accent);
  color: var(--cream);
  padding: 5px 9px;
}

.pricing-note {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11.5px;
  line-height: 1.65;
  color: var(--faint);
  max-width: 940px;
  margin: 20px auto 0;
}

.pricing-scroll-hint {
  display: none;
  margin-top: 10px;
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-align: center;
}

.audit-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 56px;
  align-items: center;
  margin-top: 52px;
  padding: 34px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--hairline);
  transition: background-color .2s ease, padding-left .2s ease, padding-right .2s ease;
}
.audit-offer:hover { background: var(--row-hover); padding-left: 20px; padding-right: 20px; }
.audit-offer h3 {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 31px);
  line-height: 1.1;
  letter-spacing: -.02em;
}
.audit-offer p {
  max-width: 760px;
  margin-top: 10px;
  color: var(--body);
  font-size: 15px;
  line-height: 1.6;
}
.audit-offer .text-link { white-space: nowrap; }
.audit-offer .text-link span { display: inline-block; transition: transform .18s ease; }
.audit-offer .text-link:hover span { transform: translateX(5px); }

.pricing-process {
  display: grid;
  grid-template-columns: .82fr 1.8fr;
  gap: 56px;
  margin-top: 72px;
}
.pricing-process-copy h3 {
  max-width: 360px;
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: clamp(27px, 3vw, 36px);
  line-height: 1.08;
  letter-spacing: -.025em;
}
.pricing-process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--ink);
}
.pricing-process-step {
  min-width: 0;
  padding: 24px 22px 4px;
  border-left: 1px solid var(--hairline);
  transition: transform .18s ease;
}
.pricing-process-step:first-child { border-left: none; padding-left: 0; }
.pricing-process-step:hover { transform: translateY(-4px); }
.pricing-process-step > span {
  display: block;
  margin-bottom: 28px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
}
.pricing-process-step strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.2;
}
.pricing-process-step p {
  margin-top: 10px;
  color: var(--body);
  font-size: 14px;
  line-height: 1.55;
}

@media (prefers-reduced-motion: reduce) {
  .pricing-table th,
  .pricing-table td,
  .audit-offer,
  .audit-offer .text-link span,
  .pricing-process-step { transition: none; }
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */

.cta-band { background: var(--accent); color: var(--cream); }
.cta-band .container {
  padding-top: 52px;
  padding-bottom: 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 3.2vw, 38px);
  line-height: 1.02;
  letter-spacing: -.03em;
}
.cta-band p {
  font-size: 17px;
  color: rgba(247, 242, 231, .88);
  margin-top: 12px;
}

/* --------------------------------------------------------------------------
   Values (about)
   -------------------------------------------------------------------------- */

.values-grid {
  border-top: 2px solid var(--ink);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.value-cell { padding: 28px 24px; border-right: 1px solid var(--hairline); }
.value-cell:first-child { padding-left: 0; }
.value-cell:last-child { padding-right: 0; border-right: none; }
.value-cell .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--accent);
}
.value-cell h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin-top: 14px;
}
.value-cell p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--body);
  margin-top: 8px;
}

/* --------------------------------------------------------------------------
   Dark split (about — why links / blog newsletter)
   -------------------------------------------------------------------------- */

.dark-section { background: var(--ink); color: var(--bg); }
.dark-section .kicker {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--salmon);
  text-transform: uppercase;
}
.dark-section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-top: 16px;
}
.dark-section .lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--on-dark-muted);
  margin-top: 18px;
}
.dark-section .container.split-pad {
  padding-top: 74px;
  padding-bottom: 74px;
}

.factbox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(242, 237, 225, .14);
  border: 1px solid rgba(242, 237, 225, .14);
}
.factbox > div { background: var(--ink); padding: 30px 24px; }
.factbox .value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  color: var(--accent);
  line-height: 1;
}
.factbox .label { font-size: 14px; color: var(--on-dark-muted); margin-top: 8px; }

/* --------------------------------------------------------------------------
   Working process (about)
   -------------------------------------------------------------------------- */

.work-story-photo { margin: 0; }
.work-story-image {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: #ded6c7;
}
.work-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(1.03);
  transform: scale(1.01);
  transition: filter .5s ease, transform .7s ease;
}
.work-story-photo:hover img {
  filter: saturate(.96) contrast(1);
  transform: scale(1.035);
}
.work-story-photo figcaption {
  padding-top: 9px;
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.work-principles-head {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: end;
  margin-bottom: 46px;
}
.work-principles-head h2 {
  max-width: 560px;
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.7vw, 45px);
  line-height: 1.04;
  letter-spacing: -.035em;
}
.work-principles-head > p {
  max-width: 540px;
  color: var(--body);
  font-size: 16.5px;
  line-height: 1.65;
}
.work-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--hairline);
}
.work-principle {
  min-width: 0;
  padding: 28px 30px 34px;
  border-right: 1px solid var(--hairline);
  transition: background-color .2s ease, transform .2s ease;
}
.work-principle:first-child { padding-left: 0; }
.work-principle:last-child { border-right: none; padding-right: 0; }
.work-principle:hover { background: var(--row-hover); transform: translateY(-3px); }
.work-principle > span {
  display: block;
  margin-bottom: 40px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
}
.work-principle h3 {
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.15;
}
.work-principle p {
  margin-top: 11px;
  color: var(--body);
  font-size: 14.5px;
  line-height: 1.58;
}

@media (prefers-reduced-motion: reduce) {
  .work-story-image img,
  .work-principle { transition: none; }
}

/* --------------------------------------------------------------------------
   Blog (tinklarastis)
   -------------------------------------------------------------------------- */

.featured-post {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  border: 2px solid var(--ink);
  color: var(--ink);
}
.featured-post:hover { color: var(--ink); }
.featured-post .media {
  overflow: hidden;
  border-right: 2px solid var(--ink);
  background: #ece6da;
}
.featured-post .media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: top center;
}
.featured-post .body {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-post .tags { display: flex; gap: 12px; align-items: center; }
.featured-post .cat { font-family: var(--font-mono); font-size: 12px; color: var(--faint); }
.featured-post h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 2.9vw, 34px);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-top: 18px;
}
.featured-post p { font-size: 16px; line-height: 1.65; color: var(--body); margin-top: 14px; }
.featured-post .meta {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--faint);
  margin-top: 22px;
  display: flex;
  gap: 16px;
}

.featured-section { padding: 0 0 56px; }
.category-section { padding: 0 0 32px; }
.blog-index-title { max-width: 880px; }
.blog-index-lead { font-size: 18px; max-width: 620px; margin-top: 22px; }

.cat-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 28px;
}
.cat-filter .pill {
  font-family: var(--font-mono);
  font-size: 13px;
  border: 1px solid #cabfa9;
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--body);
  cursor: pointer;
  background: none;
  font: inherit;
}
.cat-filter .pill:hover { border-color: var(--ink); color: var(--ink); }
.cat-filter .pill.active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.post-card {
  border: 1px solid var(--ink);
  display: flex;
  flex-direction: column;
  background: var(--bg);
  transition: transform .3s ease;
}
.post-card > a {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: var(--ink);
}
.post-card:hover { transform: translateY(-4px); }
.post-card:hover > a { color: var(--ink); }
.post-card[hidden] { display: none; }
.post-card .thumb {
  aspect-ratio: 16 / 10;
  background: repeating-linear-gradient(45deg, #e9e3d5, #e9e3d5 11px, #e2dac9 11px, #e2dac9 22px);
  border-bottom: 1px solid var(--ink);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  position: relative;
  overflow: hidden;
}
.post-card .thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.post-card:hover .thumb img { transform: scale(1.025); }
.post-card .thumb span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .06em;
  background: var(--bg);
  border: 1px solid var(--ink);
  padding: 5px 10px;
  color: #3a352b;
  position: relative;
  z-index: 1;
}
.post-card .body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.post-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -.01em;
}
.post-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 10px;
  flex: 1;
}
.post-card .meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--faint);
  margin-top: 18px;
}
.filter-empty {
  font-family: var(--font-mono);
  color: var(--faint);
  padding-top: 24px;
  padding-bottom: 56px;
}

/* Article pages */
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  padding-top: 26px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--faint);
}
.breadcrumbs a { color: var(--body); }
.breadcrumbs a:hover { color: var(--accent); }
.article-header {
  padding-top: 64px;
  padding-bottom: 38px;
}
.article-header h1 {
  max-width: 990px;
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: clamp(42px, 6.2vw, 76px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.045em;
}
.article-lead {
  max-width: 760px;
  margin-top: 24px;
  color: var(--body);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}
.article-byline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
  max-width: 900px;
  padding-top: 28px;
  margin-top: 30px;
  border-top: 1px solid var(--hairline);
}
.byline-author {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.byline-author:hover { color: var(--accent); }
.byline-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .06em;
}
.byline-author span { display: flex; flex-direction: column; }
.byline-author strong { font-family: var(--font-display); font-size: 15px; }
.byline-author small { margin-top: 3px; font-family: var(--font-mono); color: var(--faint); font-size: 10.5px; }
.article-meta {
  display: flex;
  gap: 10px;
  font-family: var(--font-mono);
  color: var(--faint);
  font-size: 11.5px;
}
.article-figure { margin-bottom: 54px; }
.article-figure picture {
  display: block;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: #e5ddcf;
}
.article-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.article-figure figcaption {
  margin-top: 9px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--faint);
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(190px, 240px) minmax(0, 720px);
  justify-content: center;
  gap: 76px;
  padding-bottom: 88px;
}
.article-toc {
  align-self: start;
  position: sticky;
  top: 112px;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--hairline);
  padding: 18px 0;
}
.article-toc strong {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.article-toc ol {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 14px;
  padding-left: 18px;
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.45;
}
.article-toc a { color: var(--body); }
.article-toc a:hover { color: var(--accent); }
.article-content {
  color: var(--body-dark);
  font-size: 17.5px;
  line-height: 1.78;
}
.article-content > p:first-child {
  font-size: 20px;
  line-height: 1.65;
  color: var(--ink);
}
.article-content p + p { margin-top: 20px; }
.article-content h2 {
  scroll-margin-top: 120px;
  margin-top: 58px;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(29px, 3.1vw, 38px);
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--ink);
}
.article-content h3 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 23px;
  line-height: 1.2;
  color: var(--ink);
}
.article-content ul,
.article-content ol {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 22px 0;
  padding-left: 28px;
}
.article-content li { padding-left: 4px; }
.article-content a { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 3px; }
.article-content code {
  border: 1px solid #d8cdb8;
  background: #ebe4d7;
  padding: 1px 5px;
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: .86em;
}
.article-callout {
  margin: 32px 0;
  padding: 22px 24px;
  border-left: 5px solid var(--accent);
  background: #e9e1d3;
  color: var(--ink);
}
.article-table-wrap { overflow-x: auto; margin: 28px 0; }
.article-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.45;
}
.article-table th,
.article-table td { border: 1px solid var(--ink); padding: 13px 15px; text-align: left; vertical-align: top; }
.article-table th { background: var(--ink); color: var(--bg); font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em; text-transform: uppercase; }
.editorial-note {
  margin-top: 58px;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.6;
  color: var(--faint);
}
.author-box {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 38px;
  padding: 28px;
  border: 1px solid var(--ink);
  background: #eee7da;
}
.author-mark {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 16px;
  letter-spacing: .08em;
}
.article-content .author-box h2 { margin: 6px 0 7px; font-size: 25px; }
.author-box p { font-size: 14px; line-height: 1.55; color: var(--body); }
.article-content .author-box a { display: inline-block; margin-top: 10px; font-size: 13px; text-decoration: none; }
.related-section { padding: 72px 0 84px; border-top: 2px solid var(--ink); }
.related-head { display: block; }
.related-head h2 { margin-top: 12px; font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px); letter-spacing: -.035em; }
.related-grid { margin-top: 34px; }

.newsletter .container {
  padding-top: 60px;
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.newsletter h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 3.2vw, 38px);
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-top: 0;
}
.newsletter .sub { font-size: 16px; color: var(--on-dark-muted); margin-top: 14px; max-width: 400px; }

.newsletter form {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  flex-wrap: wrap;
}
.newsletter .field { flex: 1; min-width: 220px; }
.newsletter .field label { color: var(--faint); }
.newsletter .field input {
  padding: 12px 2px;
  border-bottom: 1.5px solid #4a463c;
  font-size: 16px;
  color: var(--bg);
}
.newsletter .field input::placeholder { color: #7c766a; }
.newsletter .field input:focus { border-bottom-color: var(--accent); }
.newsletter .subscribe {
  background: var(--accent);
  color: var(--cream);
  border: none;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font-display);
  cursor: pointer;
  border-radius: 3px;
}
.newsletter .subscribe:hover { background: var(--accent-dark); }
.newsletter .success {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--bg);
}

/* --------------------------------------------------------------------------
   Contact page
   -------------------------------------------------------------------------- */

.contact-page-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: start;
}

.form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.direct-card { border: 2px solid var(--ink); padding: 30px; }
.direct-card .card-head {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--faint);
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 14px;
}
.direct-card .lines {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--body-dark);
}
.direct-card .lines div { display: flex; align-items: center; gap: 12px; }
.direct-card .lines span { color: var(--accent); }

.map-card {
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--ink);
  position: relative;
}
.map-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: grayscale(100%) sepia(16%) contrast(108%);
}
.map-card .badge {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--accent);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  padding: 8px 14px;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq { max-width: 900px; margin: 0 auto; padding: 0 40px; }
.faq .eyebrow { margin-bottom: 8px; display: block; }
.faq h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(27px, 2.9vw, 34px);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 28px;
}
.faq details { border-top: 1px solid var(--hairline); padding: 22px 4px; }
.faq details:first-of-type { border-top: 2px solid var(--ink); }
.faq details:last-of-type { border-bottom: 2px solid var(--ink); }
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::marker { content: ""; }
.faq summary .indicator {
  color: var(--accent);
  font-size: 24px;
  font-family: var(--font-mono);
  flex-shrink: 0;
}
.faq details[open] summary .indicator { display: inline-block; transform: rotate(45deg); }
.faq details p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  margin-top: 14px;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer { background: var(--bg); border-top: 2px solid var(--ink); }

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 40px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 36px;
  align-items: start;
}

.footer-brand .logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -.035em;
}
.footer-brand .logo span { color: var(--accent); }
.footer-brand p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 12px;
  max-width: 280px;
}
.footer-brand .btn { margin-top: 20px; padding: 12px 20px; font-size: 14px; }

.footer-col .col-head {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .1em;
  color: var(--faint);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col .links {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 14.5px;
}
.footer-col .links a { color: var(--body); }
.footer-col .links a:hover { color: var(--accent); }
.footer-col .links.mono { font-family: var(--font-mono); color: var(--body); }

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 40px 40px;
  border-top: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--faint);
  letter-spacing: .04em;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1023px) {
  .container { padding: 0 28px; }
  .faq { padding: 0 28px; }

  .topbar { padding: 13px 28px; }
  .topbar .topbar-center { display: none; }
  .nav { padding: 16px 28px; }

  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-media { max-width: 480px; }

  .section-head { grid-template-columns: 1fr; gap: 12px; align-items: start; }

  .service-row { grid-template-columns: 48px 1fr auto; }
  .service-row p { grid-column: 2 / 4; }

  .stats-band .container { grid-template-columns: repeat(2, 1fr); }

  .method-grid { grid-template-columns: repeat(2, 1fr); }

  .results-grid { grid-template-columns: 1fr; }
  .result-cell {
    padding: 26px 0;
    border-right: none;
    border-bottom: 1px solid var(--hairline);
  }
  .result-cell:last-child { border-bottom: none; }

  .quote-grid { grid-template-columns: 1fr; }
  .quote-media { border-right: none; border-bottom: 2px solid var(--ink); }
  .quote-media img { min-height: 300px; }
  .quote-body { padding: 44px 0; }

  .split, .split-even { grid-template-columns: 1fr; gap: 36px; }

  .contact-grid, .contact-page-grid { grid-template-columns: 1fr; gap: 44px; }

  .service-detail .container { grid-template-columns: 1fr; gap: 36px; }

  .pricing-table { min-width: 840px; }
  .pricing-process { grid-template-columns: 1fr; gap: 32px; }
  .pricing-process-copy h3 { max-width: 620px; }

  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value-cell { padding: 24px; }
  .value-cell:nth-child(odd) { padding-left: 0; }
  .value-cell:nth-child(even) { border-right: none; padding-right: 0; }
  .value-cell:nth-child(-n+2) { border-bottom: 1px solid var(--hairline); }

  .work-principles-head { grid-template-columns: 1fr; gap: 20px; align-items: start; }

  .featured-post { grid-template-columns: 1fr; }
  .featured-post .media { border-right: none; border-bottom: 2px solid var(--ink); }
  .featured-post .media img { min-height: 260px; }
  .featured-post .body { padding: 32px 28px; }

  .post-grid { grid-template-columns: repeat(2, 1fr); }

  .article-layout { grid-template-columns: minmax(0, 720px); gap: 38px; }
  .article-toc { position: static; }

  .newsletter .container { grid-template-columns: 1fr; gap: 32px; }

  .footer-grid { grid-template-columns: 1fr 1fr; padding: 44px 28px 28px; }
  .footer-bottom { padding: 20px 28px 32px; }
}

@media (max-width: 899px) {
  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 2px solid var(--ink);
    padding: 8px 28px 20px;
  }
  .nav-open .nav-links { display: flex; }

  .nav-links > a:not(.btn) {
    padding: 14px 0;
    font-size: 17px;
    border-bottom: 1px solid var(--hairline-lt);
  }
  .nav-links > a.active::after { display: none; }
  .nav-links > a.active { color: var(--accent); }
  .nav-links > .btn { margin-top: 16px; text-align: center; }

  .pricing-scroll-hint { display: block; }
  .audit-offer { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 599px) {
  .container { padding: 0 20px; }
  .faq { padding: 0 20px; }
  .topbar { padding: 11px 20px; font-size: 10.5px; }
  .nav { padding: 14px 20px; }
  .nav-links { padding: 8px 20px 20px; }
  .nav-logo { font-size: 26px; }

  .hero { padding: 44px 0 48px; }
  .section { padding: 56px 0; }
  .section-flush-top { padding: 0 0 56px; }
  .page-hero { padding: 52px 0 44px; }
  .service-detail { padding: 52px 0; }

  .pricing-head { margin-bottom: 32px; text-align: left; }
  .pricing-head p { margin-left: 0; }
  .pricing-table { min-width: 760px; }
  .pricing-table th,
  .pricing-table td { padding: 15px 14px; }
  .pricing-table thead th { padding: 22px 14px; }
  .pricing-plan-name { font-size: 22px; }
  .pricing-plan-for { min-height: 38px; font-size: 12.5px; }
  .pricing-amount { font-size: 24px; }
  .audit-offer { margin-top: 38px; padding: 28px 0; }
  .audit-offer:hover { padding-left: 12px; padding-right: 12px; }
  .pricing-process { margin-top: 54px; }
  .pricing-process-steps { grid-template-columns: 1fr; }
  .pricing-process-step,
  .pricing-process-step:first-child {
    padding: 20px 0;
    border-left: none;
    border-bottom: 1px solid var(--hairline);
  }
  .pricing-process-step:last-child { border-bottom: none; }
  .pricing-process-step > span { margin-bottom: 12px; }

  .service-row { grid-template-columns: 40px 1fr; padding: 22px 8px; }
  .service-row .chip, .service-row .arrow { display: none; }
  .service-row p { grid-column: 1 / 3; }

  .method-grid { grid-template-columns: 1fr; }
  .work-principles { grid-template-columns: 1fr; }
  .work-principle,
  .work-principle:first-child,
  .work-principle:last-child {
    padding: 24px 0;
    border-right: none;
    border-bottom: 1px solid var(--hairline);
  }
  .work-principle:last-child { border-bottom: none; }
  .work-principle > span { margin-bottom: 14px; }
  .post-grid { grid-template-columns: 1fr; }
  .article-header { padding-top: 44px; padding-bottom: 30px; }
  .article-header h1 { font-size: clamp(38px, 12vw, 54px); }
  .article-byline { align-items: flex-start; }
  .article-meta { width: 100%; }
  .article-figure { margin-bottom: 38px; }
  .article-layout { padding-bottom: 60px; }
  .article-content { font-size: 16.5px; line-height: 1.72; }
  .article-content > p:first-child { font-size: 18px; }
  .author-box { grid-template-columns: 1fr; padding: 22px; }
  .related-section { padding: 56px 0 64px; }
  .factbox { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-band .container { gap: 28px 20px; }
  .divider-banner { height: 280px; }
  .quote-body blockquote { font-size: 27px; }
  .form .field-row { grid-template-columns: 1fr; }
  .included-card { padding: 24px; }
  .ticker-track span { font-size: 18px; }
}
