/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }

/* ---------- Tokens ---------- */
:root {
  --bg: #F8F8F5;
  --bg-elev: #FFFFFF;
  --bg-warm: #ECE7DA;
  --ink: #1A1812;
  --ink-soft: #5C564B;
  --ink-mute: #8A8378;
  --line: #D9D4C7;
  --line-soft: #E5E1D5;
  --accent: #2D4A3E;
  --accent-soft: #3D5C50;
  --accent-fade: rgba(45, 74, 62, 0.35);
  --accent-warm: #9B6B3A;
  --accent-warm-soft: #C49363;
  --serif: 'Playfair Display', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --section-pad: clamp(64px, 9vw, 128px);
  --container: 1180px;
}

/* ---------- Base ---------- */
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--bg);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-repeat: repeat;
  background-size: 240px 240px;
  font-feature-settings: 'kern' on, 'liga' on;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .container { padding: 0 48px; }
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
}
h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  font-variation-settings: "opsz" 144;
}
h2 {
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.1;
  font-variation-settings: "opsz" 96;
}
h3 {
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.25;
  font-variation-settings: "opsz" 36;
}
p { color: var(--ink-soft); }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--ink-mute);
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--accent);
  color: #FCFAF4;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: 2px;
  transition: background 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  white-space: nowrap;
}
.btn:hover {
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 24, 18, 0.18);
}
.btn-small { padding: 10px 18px; font-size: 14px; }
.btn-arrow::after {
  content: "→";
  transition: transform 0.2s ease;
}
.btn-arrow:hover::after { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
  transition: border-color 0.3s ease;
}
.site-header.on-dark {
  border-bottom-color: rgba(247, 243, 235, 0.18);
}
.site-header.on-dark .brand,
.site-header.on-dark .nav-links a,
.site-header.on-dark .lang-switch a.active {
  color: var(--bg);
}
.site-header.on-dark .nav-links a {
  color: rgba(247, 243, 235, 0.78);
}
.site-header.on-dark .nav-links a:hover {
  color: var(--bg);
}
.site-header.on-dark .lang-switch {
  color: rgba(247, 243, 235, 0.5);
}
.site-header.on-dark .lang-switch span {
  color: rgba(247, 243, 235, 0.3);
}
.site-header.on-dark .nav-links a::after {
  background: var(--bg);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 36;
}
.lang-switch {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-size: 13px;
  color: var(--ink-mute);
}
.lang-switch a.active { color: var(--ink); font-weight: 500; }
.lang-switch span { color: var(--line); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links {
  display: none;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 450;
  color: var(--ink-soft);
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
@media (min-width: 1024px) {
  .nav-links { display: inline-flex; }
}
@media (max-width: 600px) {
  .nav-right .btn { display: none; }
}
section[id] { scroll-margin-top: 80px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 72px);
  min-height: calc(100svh - 72px);
  display: flex;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 32px;
}
.hero .container { width: 100%; position: relative; z-index: 1; }

/* Mesh gradient blobs */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
  will-change: transform;
}
.hero::before {
  width: 70vw;
  height: 70vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(circle, rgba(155, 107, 58, 0.55), rgba(155, 107, 58, 0) 60%);
  top: -25%;
  left: 5%;
  animation: heroBlobA 28s ease-in-out infinite;
}
.hero::after {
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, rgba(45, 74, 62, 0.45), rgba(45, 74, 62, 0) 60%);
  bottom: -25%;
  right: 5%;
  animation: heroBlobB 34s ease-in-out infinite;
}
@keyframes heroBlobA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20%, 10%) scale(1.1); }
}
@keyframes heroBlobB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-18%, -12%) scale(0.92); }
}
@media (prefers-reduced-motion: reduce) {
  .hero::before, .hero::after { animation: none; }
}
.hero-eyebrow { color: var(--accent); }
.hero-eyebrow::before { background: var(--accent); }
.hero h1 {
  max-width: 16ch;
  margin-bottom: 32px;
}
.hero-sub {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  max-width: 56ch;
  margin-bottom: 48px;
}
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.price-line {
  font-size: 14px;
  color: var(--ink-mute);
}
.price-line strong {
  color: var(--ink-soft);
  font-weight: 500;
}

/* ---------- Section base ---------- */
section {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
  border-top: 1px solid var(--line-soft);
}
section:first-of-type { border-top: none; }
.section-head {
  max-width: 720px;
  margin-bottom: 64px;
}
.section-head h2 + p {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.55;
}
.section-num {
  font-family: var(--serif);
  font-size: clamp(56px, 7vw, 96px);
  font-style: italic;
  font-weight: 300;
  color: var(--accent-warm-soft);
  line-height: 0.85;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  font-variation-settings: "opsz" 144;
  display: block;
  opacity: 0.55;
}

/* ---------- Problem ---------- */
.problem {
  background-color: var(--bg-warm);
  background-image: none;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) {
  .problem-grid { grid-template-columns: 1fr 1.4fr; gap: 96px; }
}
.problem-body p + p { margin-top: 18px; font-size: 18px; line-height: 1.65; }

/* ---------- Use cases ---------- */
.usecase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 768px) {
  .usecase-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
.usecase {
  background: var(--bg-elev);
  border: 1px solid var(--line-soft);
  padding: 36px 28px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 768px) {
  .usecase { padding: 48px 40px; }
}
.usecase-num {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--accent);
  font-variation-settings: "opsz" 36;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.usecase h3 { margin-bottom: 16px; }
.usecase p { font-size: 16px; line-height: 1.6; }
.usecase:hover {
  border-color: var(--accent-fade);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(26, 24, 18, 0.07);
}

/* ---------- Methodology ---------- */
.timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) {
  .timeline { grid-template-columns: repeat(3, 1fr); gap: 48px; }
}
.step {
  position: relative;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  transition: border-color 0.3s ease;
}
.step:hover { border-color: var(--accent-fade); }
.step-label {
  position: absolute;
  top: -10px;
  left: 0;
  background: var(--bg);
  padding-right: 16px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.step h3 { margin-bottom: 16px; }
.step p { font-size: 16px; line-height: 1.6; }

.methodology {
  background-color: var(--ink);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  border-top: none;
}
.methodology h2 { color: var(--bg); }
.methodology .section-head p { color: rgba(247, 243, 235, 0.65); }
.methodology .eyebrow { color: rgba(247, 243, 235, 0.55); }
.methodology .eyebrow::before { background: rgba(247, 243, 235, 0.55); }
.methodology .section-num { color: rgba(247, 243, 235, 0.12); }
.methodology .step { border-top-color: rgba(247, 243, 235, 0.18); }
.methodology .step-label { background: var(--ink); color: #6BB99A; }
.methodology .step h3 { color: var(--bg); }
.methodology .step p { color: rgba(247, 243, 235, 0.7); }
.methodology .step:hover { border-color: rgba(247, 243, 235, 0.45); }

/* ---------- Pricing ---------- */
.pricing .section-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.pricing-card {
  background: var(--bg-elev);
  border: 1px solid var(--line-soft);
  padding: 36px 28px;
  max-width: 560px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .pricing-card { padding: 44px 48px; }
}
.price-display {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 24px;
}
.price-amount {
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 52px);
  font-weight: 500;
  line-height: 1;
  font-variation-settings: "opsz" 96;
  letter-spacing: -0.02em;
}
.price-meta {
  font-size: 14px;
  color: var(--ink-mute);
}
.pricing-includes {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.pricing-includes li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 15px;
  color: var(--ink-soft);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.pricing-includes li:last-child { border-bottom: none; }
.pricing-includes li::before {
  content: "";
  width: 8px;
  height: 1px;
  background: var(--accent);
  margin-top: 14px;
  flex: 0 0 auto;
}
.pricing-deduction {
  background: var(--bg);
  border-left: 2px solid var(--accent);
  padding: 18px 22px;
  margin: 0 0 24px;
}
.pricing-deduction strong {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  font-size: 17px;
  display: block;
  margin-bottom: 6px;
  font-variation-settings: "opsz" 36;
}
.pricing-deduction p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ---------- Team ---------- */
.team {
  background-color: var(--bg-warm);
  background-image: none;
}
.team-head h2 .accent-text {
  color: var(--accent-warm);
  font-style: italic;
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 700px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (min-width: 1100px) {
  .team-grid { grid-template-columns: repeat(4, 1fr); }
}
.team-card {
  background: var(--bg-elev);
  border: 1px solid var(--line-soft);
  padding: 36px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: border-color 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.team-card:not(.team-card-more):hover {
  border-color: var(--accent-fade);
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(26, 24, 18, 0.08);
}
.team-photo {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg);
  margin-bottom: 4px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.team-card:not(.team-card-more):hover .team-photo {
  transform: scale(1.06);
}
.team-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 48;
  color: var(--ink);
}
.team-role {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.team-bio {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 30ch;
}
.team-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-mute);
  padding: 4px;
  margin-top: auto;
  transition: color 0.2s ease;
}
.team-linkedin:hover { color: var(--ink); }
.team-linkedin svg { width: 20px; height: 20px; }
.team-card-more {
  background: var(--bg-elev);
  border-style: dashed;
  border-color: var(--line);
  justify-content: center;
}
.team-photo-more {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  border: 1px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  font-variation-settings: "opsz" 96;
  margin-bottom: 4px;
}
.team-card-more .team-name { color: var(--ink); }
.team-card-more .team-bio { color: var(--ink-mute); }

/* ---------- Tech ---------- */
.tech-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line-soft);
}
.tech-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-soft);
}
@media (min-width: 768px) {
  .tech-row {
    grid-template-columns: 220px 1fr;
    gap: 48px;
    align-items: baseline;
  }
}
.tech-label {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.tech-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
}
.tech-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: transform 0.3s ease;
}
.tech-item:hover { transform: translateY(-2px); }
.tech-item .tech-logo {
  height: 20px;
  width: auto;
  max-width: 90px;
  opacity: 0.9;
}
.tech-item .tech-text {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  font-variation-settings: "opsz" 48;
  letter-spacing: -0.01em;
}
.tech-note {
  margin-top: 32px;
  font-size: 15px;
  color: var(--ink-mute);
  max-width: 56ch;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 880px; }
.faq-item {
  border-bottom: 1px solid var(--line-soft);
}
.faq-item:first-child { border-top: 1px solid var(--line-soft); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--serif);
  font-size: clamp(19px, 1.5vw, 22px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 48;
  line-height: 1.3;
}
.faq-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  position: relative;
  margin-top: 8px;
  transition: transform 0.3s ease;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: opacity 0.3s ease;
}
.faq-icon::before { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%); }
.faq-icon::after  { left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%); }
.faq-item.open .faq-icon::after { opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-a-inner {
  padding-bottom: 32px;
  max-width: 64ch;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.faq-item.open .faq-a {
  max-height: 600px;
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  z-index: 200;
  width: 0;
  will-change: width;
  transition: width 0.08s linear;
}

/* ---------- Hero load animation ---------- */
.js-loaded .hero-eyebrow,
.js-loaded .hero h1,
.js-loaded .hero-sub,
.js-loaded .hero-cta {
  opacity: 0;
  transform: translateY(18px);
  animation: heroReveal 0.95s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.js-loaded .hero-eyebrow { animation-delay: 0.05s; }
.js-loaded .hero h1 { animation-delay: 0.18s; }
.js-loaded .hero-sub { animation-delay: 0.42s; }
.js-loaded .hero-cta { animation-delay: 0.6s; }
@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Reveal on scroll ---------- */
.js-loaded .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.js-loaded .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-loaded .reveal,
  .js-loaded .hero-eyebrow,
  .js-loaded .hero h1,
  .js-loaded .hero-sub,
  .js-loaded .hero-cta {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
  .scroll-progress { display: none; }
}

/* ---------- Final CTA (split: book + write) ---------- */
.cta-final {
  background: var(--ink);
  color: var(--bg);
  border-top: none;
}
.cta-final h2,
.cta-final h3 {
  color: var(--bg);
}
.cta-final p {
  color: rgba(247, 243, 235, 0.7);
  line-height: 1.55;
}
.cta-final .eyebrow { color: rgba(247, 243, 235, 0.55); }
.cta-final .eyebrow::before { background: rgba(247, 243, 235, 0.55); }

.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}
@media (min-width: 900px) {
  .cta-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 80px;
  }
}

/* Left column: direct booking */
.cta-book h2 {
  max-width: 16ch;
  margin-bottom: 18px;
}
.cta-book > p {
  font-size: 18px;
  max-width: 46ch;
  margin-bottom: 28px;
}
.cta-book .btn {
  background: var(--bg);
  color: var(--ink);
}
.cta-book .btn:hover {
  background: #FFFFFF;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.cta-book .price-line {
  color: rgba(247, 243, 235, 0.55);
  margin-top: 18px;
  font-size: 14px;
}
.cta-book .price-line strong { color: rgba(247, 243, 235, 0.8); }

/* Right column: contact form */
.cta-write {
  position: relative;
}
@media (min-width: 900px) {
  .cta-write {
    border-left: 1px solid rgba(247, 243, 235, 0.12);
    padding-left: 80px;
  }
}
@media (max-width: 899px) {
  .cta-write {
    border-top: 1px solid rgba(247, 243, 235, 0.12);
    padding-top: 56px;
  }
}
.cta-write h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}
.cta-write > p {
  font-size: 16px;
  margin-bottom: 28px;
  max-width: 44ch;
}

/* Form fields styled for dark bg */
.cta-final .form-field span {
  color: rgba(247, 243, 235, 0.5);
}
.cta-final .form-field input,
.cta-final .form-field textarea {
  background: rgba(247, 243, 235, 0.08);
  border-color: rgba(247, 243, 235, 0.3);
  color: var(--bg);
}
.cta-final .form-field input::placeholder,
.cta-final .form-field textarea::placeholder {
  color: rgba(247, 243, 235, 0.4);
}
.cta-final .form-field input:focus,
.cta-final .form-field textarea:focus {
  background: rgba(247, 243, 235, 0.14);
  border-color: rgba(247, 243, 235, 0.6);
}
.cta-final .form-status { color: rgba(247, 243, 235, 0.55); }
.cta-final .form-status.success { color: #6BB99A; }
.cta-final .form-status.error { color: #E6A1A1; }
.cta-final .form-actions .btn {
  background: var(--bg);
  color: var(--ink);
}
.cta-final .form-actions .btn:hover {
  background: #FFFFFF;
}

/* ---------- Contact form ---------- */
.contact-form {
  max-width: 100%;
  margin: 0;
  background: transparent;
  border: none;
  padding: 0;
}
.contact-form input[name="bot-field"] {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  height: 0;
  width: 0;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
@media (min-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; gap: 20px; }
}
.form-field {
  display: block;
  margin-bottom: 18px;
}
.form-field span {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--bg);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  background: #FFFFFF;
}
.form-field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}
.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.form-status {
  font-size: 13px;
  color: var(--ink-mute);
  margin: 0;
}
.form-status.success { color: var(--accent); }
.form-status.error { color: #B33A3A; }

/* ---------- Footer ---------- */
footer {
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; align-items: center; }
}
.footer-brand {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 13px;
  color: var(--ink-mute);
}
.footer-meta a:hover { color: var(--ink); }
