/*
================================================================
DESIGN DECISION LOG
================================================================
- Tone: Refined minimal / Scandinavian
- Font: Geist (single family, weights 300–700) + Geist Mono for detail
- Palette: ink #0c0c0c · paper #f4f4ee · paper-deep #e8e8e0 ·
           forest #1f5132 · moss #2d7a47 · stone #737370
- Layout: asymmetric 12-col grid, bento for benefits, editorial
  rhythm. Forest green is the sole accent. Paper bg with grain.
================================================================
*/

:root {
  --ink:         #0c0c0c;
  --paper:       #f4f4ee;
  --paper-deep:  #e8e8e0;
  --forest:      #1f5132;
  --moss:        #2d7a47;
  --stone:       #737370;
}

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Geist', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-feature-settings: 'ss01' on, 'ss03' on;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .7 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.hero-title {
  font-weight: 300;
  line-height: 0.94;
  letter-spacing: -0.045em;
  font-size: clamp(3.25rem, 10vw, 9.5rem);
}
.hero-title strong { font-weight: 500; color: var(--forest); }

.section-title {
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-size: clamp(2.25rem, 5.5vw, 4.75rem);
}
.section-title strong { font-weight: 500; color: var(--forest); }

.end-title {
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.05em;
  font-size: clamp(3.5rem, 12vw, 12rem);
}
.end-title strong { font-weight: 500; color: var(--forest); }

.eyebrow {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--stone);
}

.bracket {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: var(--stone);
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.bracket::before {
  content: '';
  width: 1.5rem;
  height: 1px;
  background: var(--stone);
}

/* CTA */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.05rem 1.8rem;
  background: var(--ink);
  color: var(--paper);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  border-radius: 999px;
  position: relative;
  transition: transform .25s ease, background .25s ease;
  overflow: hidden;
  will-change: transform;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--forest);
  transform: translateY(101%);
  transition: transform .35s cubic-bezier(.6,.05,.2,1);
  z-index: 0;
  border-radius: 999px;
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover::after { transform: translateY(0); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-primary:disabled { opacity: .55; cursor: not-allowed; }
.btn-primary:disabled:hover::after { transform: translateY(101%); }
.btn-primary:disabled:hover { transform: none; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.05rem 0.25rem;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--ink);
  transition: gap .3s ease, border-color .3s ease, color .3s ease;
  background: transparent;
}
.btn-ghost:hover {
  gap: 1rem;
  border-color: var(--forest);
  color: var(--forest);
}

/* Hero browser mockup */
.hero-mockup {
  position: absolute;
  top: 14%;
  right: -3vw;
  width: 34vw;
  max-width: 540px;
  z-index: 0;
  border-radius: 14px;
  background: var(--paper);
  box-shadow:
    0 60px 120px -50px rgba(12, 12, 12, 0.35),
    0 24px 48px -24px rgba(12, 12, 12, 0.15);
  overflow: hidden;
  transform: rotate(2deg);
  transform-origin: center;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
  border: 1px solid rgba(12,12,12,.08);
}
.hero-mockup:hover { transform: rotate(0deg) translateY(-4px); }

.mockup-chrome {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .65rem .95rem;
  background: var(--paper-deep);
  border-bottom: 1px solid rgba(12,12,12,.07);
}
.mockup-chrome .dots { display: flex; gap: .35rem; }
.mockup-chrome .dots span {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(12,12,12,.18);
}
.mockup-chrome .url {
  flex: 1;
  background: var(--paper);
  border: 1px solid rgba(12,12,12,.08);
  border-radius: 5px;
  padding: .2rem .65rem;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: .65rem;
  color: var(--stone);
  text-align: center;
}
.mockup-body {
  padding: 1.5rem 1.5rem 1.75rem;
  background: var(--paper);
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
}
.mockup-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .7rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2rem;
}
.mockup-nav .nav-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--forest);
  border-radius: 50%;
  margin-right: .4rem;
  vertical-align: middle;
}
.mockup-nav span:last-child {
  color: var(--stone);
  font-weight: 400;
  font-size: .6rem;
}
.mockup-h {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.mockup-h em {
  font-style: normal;
  font-weight: 500;
  color: var(--forest);
}
.mockup-sub {
  font-size: .72rem;
  color: var(--stone);
  line-height: 1.5;
  margin-top: .85rem;
  max-width: 28ch;
}
.mockup-cta {
  margin-top: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--ink);
  color: var(--paper);
  font-size: .65rem;
  padding: .55rem .9rem;
  border-radius: 99px;
  align-self: flex-start;
  font-weight: 500;
}
.mockup-cta::after {
  content: '↗';
  font-size: .8rem;
  line-height: 1;
}
.mockup-grid {
  margin-top: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: .35rem;
}
.mockup-grid > div {
  background: var(--paper-deep);
  border-radius: 4px;
  aspect-ratio: 1 / 1;
}
.mockup-grid > div:first-child {
  background: var(--ink);
  aspect-ratio: 2 / 1;
  grid-column: 1 / -1;
  position: relative;
}
.mockup-grid > div:first-child::after {
  content: '';
  position: absolute;
  inset: auto auto 18% 14%;
  width: 22%;
  height: 4px;
  background: var(--forest);
  border-radius: 2px;
}
.mockup-grid > div:nth-child(2) { background: var(--forest); }
.mockup-grid > div:nth-child(3) { background: var(--paper-deep); }
.mockup-grid > div:nth-child(4) { background: var(--paper-deep); }

.mockup-tag {
  position: absolute;
  bottom: -1rem;
  left: -1.25rem;
  background: var(--ink);
  color: var(--paper);
  padding: .55rem .85rem;
  border-radius: 99px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: .65rem;
  letter-spacing: .1em;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  z-index: 2;
}
.mockup-tag .pulse {
  width: 6px; height: 6px;
  background: #84cc16;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(132, 204, 22, .7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(132,204,22,.7); }
  70%  { box-shadow: 0 0 0 8px rgba(132,204,22,0); }
  100% { box-shadow: 0 0 0 0 rgba(132,204,22,0); }
}

/* Trust strip */
.trust-strip {
  border-top: 1px solid rgba(12,12,12,.12);
  border-bottom: 1px solid rgba(12,12,12,.12);
  background: var(--paper);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (min-width: 768px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}
.trust-item {
  padding: 2.25rem 1.5rem 2rem;
  border-right: 1px solid rgba(12,12,12,.1);
  border-bottom: 1px solid rgba(12,12,12,.1);
  display: flex;
  flex-direction: column;
  gap: .65rem;
  position: relative;
  transition: background .3s ease;
}
.trust-item:hover { background: var(--paper-deep); }
@media (min-width: 768px) {
  .trust-item { border-bottom: none; }
  .trust-item:last-child { border-right: none; }
}
@media (max-width: 767px) {
  .trust-item:nth-child(even) { border-right: none; }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }
}
.trust-num {
  font-weight: 300;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--ink);
  font-feature-settings: 'lnum' on, 'tnum' on, 'ss03' on;
}
.trust-num span { color: var(--forest); font-weight: 500; }
.trust-label {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--stone);
}

/* Portfolio */
.work-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(12,12,12,.14);
  align-items: center;
}
@media (min-width: 900px) {
  .work-item {
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    padding: 4rem 0;
  }
  .work-item:nth-child(even) .work-preview { order: 2; }
  .work-item:nth-child(even) .work-meta { order: 1; padding-right: 4%; }
}
.work-item:last-child { border-bottom: 1px solid rgba(12,12,12,.14); }

.work-preview {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper-deep);
  aspect-ratio: 4 / 3;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.work-item:hover .work-preview { transform: translateY(-4px); }
.work-preview-inner {
  position: absolute;
  inset: 1rem;
  border-radius: 6px;
  background: var(--paper);
  box-shadow: 0 14px 30px -16px rgba(12,12,12,.18);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.work-preview-chrome {
  display: flex;
  gap: .3rem;
  padding: .55rem .75rem;
  background: var(--paper-deep);
  align-items: center;
}
.work-preview-chrome span {
  width: 7px; height: 7px;
  background: rgba(12,12,12,.18);
  border-radius: 50%;
}

.work-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.work-category {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--forest);
}
.work-title {
  font-weight: 400;
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.work-desc {
  color: var(--stone);
  line-height: 1.65;
  max-width: 48ch;
}
.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .5rem;
}
.work-tag {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: .66rem;
  letter-spacing: .08em;
  padding: .35rem .7rem;
  border: 1px solid rgba(12,12,12,.18);
  border-radius: 99px;
  color: var(--ink);
}
.work-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: .75rem;
  color: var(--ink);
  font-weight: 500;
  font-size: .95rem;
  border-bottom: 1px solid var(--ink);
  padding-bottom: .2rem;
  align-self: flex-start;
  transition: gap .3s ease, color .3s ease, border-color .3s ease;
}
.work-link:hover { gap: 1rem; color: var(--forest); border-color: var(--forest); }

.wp-content { padding: 1rem 1.1rem; flex: 1; display: flex; flex-direction: column; gap: .65rem; }
.wp-line { height: 6px; background: var(--paper-deep); border-radius: 3px; }
.wp-line.dark { background: var(--ink); }
.wp-line.forest { background: var(--forest); }
.wp-line.w-80 { width: 80%; }
.wp-line.w-60 { width: 60%; }
.wp-line.w-40 { width: 40%; }
.wp-block { flex: 1; background: var(--paper-deep); border-radius: 4px; margin-top: .35rem; position: relative; overflow: hidden; }
.wp-block.dark { background: var(--ink); }
.wp-block.forest { background: var(--forest); }
.wp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .35rem; margin-top: .35rem; }
.wp-grid > span { aspect-ratio: 1; background: var(--paper-deep); border-radius: 3px; }
.wp-grid > span:nth-child(2) { background: var(--forest); }

/* Hanging numerals */
.numeral {
  font-weight: 300;
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 1;
  color: var(--forest);
  letter-spacing: -0.05em;
  font-feature-settings: 'lnum' on, 'tnum' on;
}

/* Marquee — seamless infinite (content duplicated in HTML, animates -50%) */
.marquee {
  display: flex;
  overflow: hidden;
  border-top: 1px solid rgba(12,12,12,.12);
  border-bottom: 1px solid rgba(12,12,12,.12);
  padding: 1.15rem 0;
}
.marquee-track {
  display: flex;
  gap: 3.5rem;
  padding-right: 3.5rem;
  animation: scroll 38s linear infinite;
  flex-shrink: 0;
  white-space: nowrap;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  font-weight: 400;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  letter-spacing: -0.02em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 3.5rem;
}
.marquee-item::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--forest);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Pre koho cards */
.for-card {
  position: relative;
  padding: 2.4rem 2rem 2.2rem;
  border: 1px solid rgba(244, 244, 238, .14);
  background: transparent;
  overflow: hidden;
  transition: background .4s ease, border-color .4s ease;
  cursor: pointer;
  display: block;
}
.for-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--forest);
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(.6,.05,.2,1);
  z-index: 0;
}
.for-card > * { position: relative; z-index: 1; }
.for-card:hover::before { transform: translateY(0); }
.for-card:hover { border-color: var(--forest); }
.for-card:hover .for-card-arrow { transform: translate(4px, -4px); }

.for-card-arrow {
  transition: transform .4s cubic-bezier(.6,.05,.2,1);
}

/* Postup timeline */
.step {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.2rem;
  padding: 2.4rem 0;
  border-top: 1px solid rgba(12,12,12,.14);
  align-items: start;
}
@media (min-width: 768px) {
  .step {
    grid-template-columns: 5rem 16rem 1fr;
    gap: 2.5rem;
    padding: 3rem 0;
  }
}
.step:last-child { border-bottom: 1px solid rgba(12,12,12,.14); }
.step-num {
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--forest);
  line-height: 1;
  letter-spacing: -0.04em;
  font-feature-settings: 'lnum' on, 'tnum' on;
}
.step-title {
  font-weight: 500;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* FAQ */
details.faq {
  border-top: 1px solid rgba(12,12,12,.14);
  padding: 1.65rem 0;
}
details.faq:last-of-type { border-bottom: 1px solid rgba(12,12,12,.14); }
details.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 2rem;
  font-weight: 500;
  font-size: clamp(1.15rem, 1.9vw, 1.5rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  transition: color .3s ease;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary:hover { color: var(--forest); }
details.faq .faq-mark {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--forest);
  transition: transform .35s cubic-bezier(.6,.05,.2,1);
  flex-shrink: 0;
  line-height: 1;
}
details.faq[open] .faq-mark { transform: rotate(45deg); }
details.faq .faq-body {
  margin-top: 1rem;
  max-width: 62ch;
  color: var(--stone);
  line-height: 1.65;
  font-size: 1rem;
}

/* Brand logotype — stacked 2-line + offset tile mark */
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
  transition: opacity .2s ease;
}
.brand-logo:hover { opacity: 0.75; }

.brand-logo .brand-mark {
  flex-shrink: 0;
}

.brand-logo .brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-family: 'Geist', system-ui, sans-serif;
  letter-spacing: -0.035em;
  line-height: 0.95;
}
.brand-logo .bt-line {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  white-space: nowrap;
}
.brand-logo .bt-line:first-child {
  letter-spacing: -0.04em;
}
.brand-logo .bt-tld {
  color: var(--forest);
  font-weight: 700;
  margin-left: 0.05em;
}

@media (max-width: 480px) {
  .brand-logo .brand-mark { width: 30px; height: 30px; }
  .brand-logo .bt-line { font-size: 0.82rem; }
  .brand-logo { gap: 0.55rem; }
}

/* Nav */
nav.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: rgba(244, 244, 238, 0.78);
  border-bottom: 1px solid rgba(12,12,12,.06);
  transition: background .3s ease;
}

/* Email mega-link */
.mega-link {
  font-weight: 400;
  font-size: clamp(1.35rem, 3.4vw, 2.5rem);
  letter-spacing: -0.035em;
  color: var(--paper);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(244,244,238,.35);
  padding-bottom: .35rem;
  transition: color .3s ease, border-color .3s ease, gap .3s ease;
}
.mega-link:hover {
  color: #84cc16;
  border-color: #84cc16;
  gap: 1.5rem;
}

::selection { background: var(--forest); color: var(--paper); }

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }
.reveal[data-delay="6"] { transition-delay: .48s; }

.ornament-spin { animation: spin 40s linear infinite; transform-origin: center; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Mobile nav */
.mobile-toggle { display: none; }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: inline-flex; }
  .hero-mockup {
    position: relative;
    width: 88%;
    max-width: 360px;
    right: auto;
    top: auto;
    margin: 2.5rem auto 0;
    transform: rotate(-1.5deg);
  }
  .hero-mockup .mockup-tag { left: -0.5rem; bottom: -.75rem; }
}

/* Hero grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - 5rem);
  align-items: center;
  padding: 6rem 0 5rem;
}

/* Bento */
.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(12,12,12,0.1);
  border: 1px solid rgba(12,12,12,0.1);
}
@media (min-width: 900px) {
  .bento { grid-template-columns: repeat(6, 1fr); }
}

.bento-item {
  background: var(--paper);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-height: 260px;
  position: relative;
  transition: background .3s ease;
  overflow: hidden;
}
.bento-item:hover { background: var(--paper-deep); }

.bento-feature {
  background: var(--ink) !important;
  color: var(--paper);
  min-height: 521px;
}
.bento-feature:hover { background: var(--ink) !important; }

@media (min-width: 900px) {
  .bento-item:nth-child(1) { grid-column: span 3; grid-row: span 2; }
  .bento-item:nth-child(2) { grid-column: span 3; }
  .bento-item:nth-child(3) { grid-column: span 3; }
  .bento-item:nth-child(4) { grid-column: span 2; }
  .bento-item:nth-child(5) { grid-column: span 2; }
  .bento-item:nth-child(6) { grid-column: span 2; }
}

.bento-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
}
.bento-feature .bento-head { color: rgba(244,244,238,.55); }

.bento-metric {
  font-weight: 300;
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--forest);
  font-feature-settings: 'lnum' on, 'tnum' on, 'ss03' on;
}
.bento-metric .sub {
  font-size: 0.32em;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--stone);
  margin-left: 0.4em;
}

.bento-title {
  font-weight: 500;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-top: auto;
}

.bento-feature-title {
  font-weight: 300;
  font-size: clamp(1.85rem, 3.4vw, 2.85rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--paper);
  margin: auto 0 1.25rem;
}
.bento-feature-title strong {
  color: #9ed4ad;
  font-weight: 500;
  display: inline-block;
}

.bento-desc {
  font-size: 0.95rem;
  color: var(--stone);
  line-height: 1.55;
  max-width: 38ch;
}
.bento-feature .bento-desc { color: rgba(244,244,238,.65); max-width: 42ch; }

.bento-feature-mark {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(244,244,238,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(244,244,238,.55);
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.grid-overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(12,12,12,.04) 1px, transparent 1px);
  background-size: calc(100% / 12) 100%;
  opacity: .9;
  z-index: 0;
}

.mono { font-family: 'Geist Mono', ui-monospace, monospace; }

/* ============ KONTAKT — light form section ============ */
.form-section {
  background: var(--paper-deep);
  position: relative;
}

.form-card {
  background: var(--paper);
  border: 1px solid rgba(12,12,12,0.08);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  box-shadow:
    0 1px 0 rgba(0,0,0,.02),
    0 30px 70px -40px rgba(12,12,12,.18);
}
@media (min-width: 768px) {
  .form-card { padding: 2.75rem 2.5rem; }
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
  max-width: none;
}
@media (min-width: 640px) {
  .contact-form .row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.35rem;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.field label {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--stone);
}
.field label .req { color: var(--forest); margin-left: 2px; }

.field input,
.field textarea,
.field select {
  background: var(--paper);
  border: 1px solid rgba(12,12,12,0.14);
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  padding: .85rem 1rem;
  border-radius: 8px;
  letter-spacing: -0.005em;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
  outline: none;
  resize: vertical;
  width: 100%;
}
.field textarea { min-height: 140px; line-height: 1.55; }
.field input:hover,
.field textarea:hover,
.field select:hover {
  border-color: rgba(12,12,12,0.3);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--forest);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(31,81,50,0.10);
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(12,12,12,0.32);
}
.field select { cursor: pointer; }
.field select option { background: var(--paper); color: var(--ink); }
.field .error {
  color: #b3401d;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: .72rem;
  letter-spacing: .04em;
  margin-top: .15rem;
}

.field-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.captcha-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--paper-deep);
  border: 1px dashed rgba(12,12,12,0.14);
  border-radius: 10px;
  align-items: end;
}
@media (min-width: 640px) {
  .captcha-row { grid-template-columns: auto 1fr; gap: 1.25rem; }
}
.captcha-q {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .7rem .95rem;
  background: var(--paper);
  border: 1px solid rgba(12,12,12,0.1);
  border-radius: 99px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: .8rem;
  letter-spacing: .04em;
  color: var(--ink);
  white-space: nowrap;
  align-self: end;
  margin-bottom: 2px;
}
.captcha-q strong { color: var(--forest); font-weight: 600; }
.captcha-q svg { color: var(--forest); }

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: .75rem;
}
.form-status {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--stone);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.form-status svg { color: var(--forest); }

.form-success {
  border: 1px solid rgba(31,81,50,.35);
  background: rgba(31,81,50,.06);
  padding: 1.5rem 1.5rem;
  border-radius: 10px;
  color: var(--ink);
  font-size: 1rem;
  display: flex;
  align-items: flex-start;
  gap: .9rem;
}
.form-success svg { color: var(--forest); flex-shrink: 0; margin-top: .2rem; width: 22px; height: 22px; }
.form-success strong { display: block; color: var(--ink); margin-bottom: .25rem; font-size: 1.05rem; font-weight: 500; }
.form-success span { color: var(--stone); font-size: .95rem; line-height: 1.55; }

/* Info side cards */
.info-card {
  display: flex;
  gap: 1rem;
  padding: 1.35rem 1.35rem;
  background: var(--paper);
  border: 1px solid rgba(12,12,12,0.08);
  border-radius: 10px;
  align-items: flex-start;
  transition: border-color .25s ease, transform .25s ease;
}
.info-card:hover {
  border-color: rgba(31,81,50,0.3);
  transform: translateY(-2px);
}
.info-card .icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(31,81,50,.08);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-card .icon svg { width: 20px; height: 20px; }
.info-card strong {
  display: block;
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: .25rem;
  letter-spacing: -0.015em;
}
.info-card p {
  color: var(--stone);
  font-size: .9rem;
  line-height: 1.55;
}
.info-card a { color: var(--forest); }
.info-card a:hover { text-decoration: underline; }
