/* ═══════════════════════════════════════════════════════════
   BOLD Solutions — Stylesheet
   Palet: Zand | Build · Optimize · Link · Deliver
   ═══════════════════════════════════════════════════════════ */

/* --- Design tokens --- */
:root {
  --ink:          #1A1815;
  --oker:         #E3A22F;
  --umber:        #7A4A10;
  --zand:         #E4D9C2;
  --papier:       #F2EBDD;
  --papier-light: #F7F3EA;
  --wit:          #FFFFFF;

  --text-primary:    #1A1815;
  --text-secondary:  #3D382F;
  --text-muted:      #5C5449;
  --text-label:      #6E675C;
  --text-label-zand: #4A443A;

  --font-sans:  'Archivo', system-ui, sans-serif;
  --font-black: 'Archivo Black', system-ui, sans-serif;
  --font-serif: 'Source Serif 4', Georgia, serif;
  --font-mono:  'JetBrains Mono', monospace;

  --max-w:      1312px;
  --pad-x:      clamp(1.25rem, 5vw, 4rem);
  --section-py: clamp(3.5rem, 8vw, 5rem);
  --border:     1px solid var(--zand);
  --transition: 0.18s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--wit);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--umber); text-decoration: none; }
a:hover { color: var(--ink); }
ul { list-style: none; }

/* --- Focus styles --- */
:focus-visible {
  outline: 2px solid var(--oker);
  outline-offset: 3px;
}

/* --- Logo --- */
.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}
.logo-bold {
  font-family: var(--font-black);
  font-size: 1.5rem;
  line-height: 0.86;
  letter-spacing: -0.035em;
}
.logo-line {
  width: 100%;
  height: 1.5px;
  background: currentColor;
  margin: 3px 0 2px;
}
.logo-solutions {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 5.5px;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  width: 100%;
  text-align: center;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: opacity var(--transition);
}
.btn:hover { opacity: 0.85; text-decoration: none; }
.btn-primary  { background: var(--ink);  color: var(--papier); }
.btn-oker     { background: var(--oker); color: var(--ink); }
.btn-outline  {
  border: 2px solid var(--ink);
  color: var(--ink);
  background: transparent;
  padding: calc(0.875rem - 2px) calc(1.5rem - 2px);
}

/* --- Section label --- */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--umber);
}

/* ═══════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--wit);
  border-bottom: var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.25rem var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 1.875rem;
  font-size: 0.9375rem;
  font-weight: 500;
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--umber); }
.nav-links a.active {
  border-bottom: 2px solid var(--ink);
  padding-bottom: 2px;
}
.nav-links .btn { color: var(--ink); }
.nav-links .btn:hover { opacity: 0.85; color: var(--ink); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: var(--text-label);
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: var(--text-label);
  padding: 0.2rem 0.25rem;
  transition: color var(--transition);
}
.lang-btn:hover { color: var(--ink); }
.lang-btn.active-lang { color: var(--ink); font-weight: 500; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.3rem;
  cursor: pointer;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .hamburger span:nth-child(2) { opacity: 0; }
.nav-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 1rem var(--pad-x) 1.5rem;
  border-top: var(--border);
  background: var(--wit);
  gap: 0.125rem;
}
.mobile-nav a {
  display: block;
  padding: 0.625rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--papier);
  text-decoration: none;
}
.mobile-nav a:hover { color: var(--umber); }
.mobile-nav .btn {
  margin-top: 0.875rem;
  width: 100%;
}
.nav-open .mobile-nav { display: flex; }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
  .mobile-nav { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════
   HOME — HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) var(--pad-x);
  display: grid;
  gap: 3rem;
  align-items: center;
}
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hero h1 {
  font-weight: 800;
  font-size: clamp(2.125rem, 5vw, 4rem);
  line-height: 1.0;
  letter-spacing: -0.035em;
}
.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.0625rem, 2vw, 1.3125rem);
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 32rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  align-items: center;
  margin-top: 0.375rem;
}
.hero-photo {
  border: 1px solid #DCD3BF;
  background: repeating-linear-gradient(135deg, #F0EBE0 0 8px, #FFFFFF 8px 16px);
  aspect-ratio: 4/5;
  max-height: 480px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1rem;
}
.hero-photo span {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-label);
  background: var(--wit);
  padding: 0.3rem 0.625rem;
}
@media (min-width: 768px) {
  .hero { grid-template-columns: 1.12fr 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   HOME — BOLD METHOD
   ═══════════════════════════════════════════════════════════ */
.method {
  background: var(--papier);
  border-top: var(--border);
  border-bottom: var(--border);
  padding: var(--section-py) var(--pad-x);
}
.method-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.method-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.625rem;
}
.method h2 {
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-top: 0.375rem;
}
.method-intro {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.method-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.method-card {
  background: var(--wit);
  border-top: 4px solid var(--zand);
  padding: 1.5rem 1.375rem 1.625rem;
}
.method-card.highlight { border-top-color: var(--oker); }
.method-card-letter {
  font-family: var(--font-black);
  font-size: 1.875rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.method-card.highlight .method-card-letter { color: var(--umber); }
.method-card-title {
  font-weight: 700;
  font-size: 1.0625rem;
  margin: 0.5rem 0 0.4rem;
}
.method-card-desc {
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
}
@media (min-width: 640px) {
  .method-cards { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 768px) {
  .method-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  .method-intro { max-width: 26rem; }
}

/* ═══════════════════════════════════════════════════════════
   HOME — SERVICES
   ═══════════════════════════════════════════════════════════ */
.services {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-py) var(--pad-x);
}
.services-heading {
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-top: 0.375rem;
}
.services-grid {
  display: grid;
  gap: 1.75rem;
  margin-top: 2.5rem;
}
.service-card {
  background: var(--papier-light);
  border: var(--border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.service-card-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--umber);
}
.service-card h3 {
  font-weight: 700;
  font-size: 1.375rem;
  letter-spacing: -0.015em;
}
.service-card p {
  font-family: var(--font-serif);
  font-size: 0.96875rem;
  line-height: 1.6;
  color: var(--text-secondary);
}
@media (min-width: 640px)  { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

/* ═══════════════════════════════════════════════════════════
   HOME — QUOTE BAND
   ═══════════════════════════════════════════════════════════ */
.quote-band {
  padding: 0 var(--pad-x) var(--section-py);
  max-width: var(--max-w);
  margin: 0 auto;
}
.quote-inner {
  background: var(--oker);
  padding: clamp(2rem, 5vw, 3.25rem) clamp(1.5rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 2.5vw, 1.875rem);
  line-height: 1.35;
}
.quote-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-shrink: 0;
}
.quote-avatar {
  width: 44px;
  height: 44px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.quote-avatar span {
  font-family: var(--font-black);
  font-size: 1.8125rem;
  color: var(--papier);
  letter-spacing: -0.04em;
  line-height: 1;
}
.quote-name {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
}
.quote-name span { font-weight: 400; color: #3D2E0A; }
@media (min-width: 768px) {
  .quote-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* ═══════════════════════════════════════════════════════════
   HOME — FOR WHOM
   ═══════════════════════════════════════════════════════════ */
.for-whom {
  background: var(--papier-light);
  border-top: var(--border);
  border-bottom: var(--border);
  padding: var(--section-py) var(--pad-x);
}
.for-whom-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.for-whom h2 {
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-top: 0.375rem;
}
.for-whom-desc {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 36rem;
}
.for-whom-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1rem;
}
.tag {
  background: var(--zand);
  color: var(--text-label-zand);
  padding: 0.375rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.for-whom-right p {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text-secondary);
}
@media (min-width: 768px) {
  .for-whom-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   HOME — ABOUT SNIPPET
   ═══════════════════════════════════════════════════════════ */
.about-snippet {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-py) var(--pad-x);
  display: grid;
  gap: 3rem;
  align-items: center;
}
.about-snippet-photo {
  border: 1px solid #DCD3BF;
  background: repeating-linear-gradient(135deg, #211E1A 0 8px, #1A1815 8px 16px);
  aspect-ratio: 3/2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1rem;
}
.about-snippet-photo span {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-label);
  background: var(--wit);
  padding: 0.3rem 0.625rem;
}
.about-snippet-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-snippet h2 {
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-top: 0.375rem;
}
.about-snippet p {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-secondary);
}
.link-arrow {
  font-weight: 600;
  color: var(--umber);
  font-size: 1rem;
  text-decoration: none;
  margin-top: 0.25rem;
}
.link-arrow:hover { color: var(--ink); }
@media (min-width: 768px) {
  .about-snippet { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   HOME — CONTACT CTA
   ═══════════════════════════════════════════════════════════ */
.contact-cta {
  background: var(--zand);
  padding: var(--section-py) var(--pad-x);
}
.contact-cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-cta h2 {
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.contact-cta-desc {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 32rem;
}
.contact-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}
.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.contact-direct-label {
  font-family: var(--font-mono);
  font-size: 0.65625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-label-zand);
}
.contact-direct a {
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--zand);
  border-top: var(--border);
  padding: 3rem var(--pad-x);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
}
.footer-tagline {
  font-family: var(--font-mono);
  font-size: 0.65625rem;
  letter-spacing: 0.18em;
  color: var(--umber);
  margin-top: 0.75rem;
}
.footer-email {
  font-size: 0.9375rem;
  color: var(--ink);
  font-weight: 500;
  margin-top: 0.875rem;
  text-decoration: none;
}
.footer-email:hover { color: var(--umber); }
.footer-nav {
  display: flex;
  flex-direction: column;
}
.footer-nav a {
  display: block;
  color: var(--ink);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 2.1;
  text-decoration: none;
}
.footer-nav a:hover { color: var(--umber); }
.footer-bottom {
  border-top: 1px solid #C9BEA6;
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: var(--text-label);
}
@media (min-width: 640px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ═══════════════════════════════════════════════════════════
   PAGE HERO (over, contact)
   ═══════════════════════════════════════════════════════════ */
.page-hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5.5rem) var(--pad-x) clamp(2rem, 4vw, 3rem);
}
.page-hero h1 {
  font-weight: 800;
  font-size: clamp(2.125rem, 5vw, 3.5rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  max-width: 28rem;
  margin-top: 0.75rem;
}
.page-hero-intro {
  font-family: var(--font-serif);
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 36rem;
  margin-top: 1.25rem;
}

/* ═══════════════════════════════════════════════════════════
   OVER PAGE
   ═══════════════════════════════════════════════════════════ */
.over-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x) var(--section-py);
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 768px) {
  .over-grid { grid-template-columns: 5fr 7fr; }
}
.over-photo {
  border: 1px solid #DCD3BF;
  background: repeating-linear-gradient(135deg, #211E1A 0 8px, #1A1815 8px 16px);
  aspect-ratio: 3/4;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1rem;
  max-height: 480px;
}
.over-photo span {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-label);
  background: var(--wit);
  padding: 0.3rem 0.625rem;
}
.over-text {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}
.over-text p {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text-secondary);
}
.over-text h2 {
  font-weight: 800;
  font-size: 1.625rem;
  letter-spacing: -0.025em;
  margin-top: 0.5rem;
}

/* Values */
.values {
  background: var(--papier);
  border-top: var(--border);
  border-bottom: var(--border);
  padding: var(--section-py) var(--pad-x);
}
.values-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.values h2 {
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.025em;
  margin-bottom: 2rem;
  margin-top: 0.375rem;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.value-card {
  background: var(--wit);
  border: var(--border);
  border-top: 4px solid var(--zand);
  padding: 1.5rem;
}
.value-card.accent { border-top-color: var(--oker); }
.value-card h3 {
  font-weight: 700;
  font-size: 1.0625rem;
  margin-bottom: 0.375rem;
}
.value-card p {
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
}
@media (min-width: 768px) {
  .values-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Personal note */
.personal-note {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-py) var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.personal-note p {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 36rem;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════ */
.contact-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x) var(--section-py);
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}
.contact-info p {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-secondary);
}
.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  padding-top: 1.5rem;
  border-top: var(--border);
  margin-top: 0.375rem;
}
.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.info-label {
  font-family: var(--font-mono);
  font-size: 0.65625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-label);
}
.contact-info-item a,
.contact-info-item span {
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
}

/* Contact form */
.contact-form-card {
  background: var(--papier-light);
  border: var(--border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-form-card h2 {
  font-weight: 800;
  font-size: 1.625rem;
  letter-spacing: -0.02em;
}
.form-fields {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.form-field label {
  font-family: var(--font-mono);
  font-size: 0.65625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-label);
}
.form-field input,
.form-field textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--wit);
  border: 1.5px solid var(--zand);
  padding: 0.625rem 0.75rem;
  width: 100%;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  border-radius: 0;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--ink); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-label); }
.form-field textarea { resize: vertical; min-height: 9rem; }
.form-privacy {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
  font-family: var(--font-serif);
}
.hnypot { display: none; }

/* Company details */
.company-details {
  background: var(--papier-light);
  border: var(--border);
  border-top: 4px solid var(--zand);
  padding: 1.5rem;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.company-details-label {
  font-family: var(--font-mono);
  font-size: 0.65625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-label);
  margin-bottom: 0.5rem;
}
.company-details p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-family: var(--font-serif);
}

/* ═══════════════════════════════════════════════════════════
   THANK YOU PAGE
   ═══════════════════════════════════════════════════════════ */
.thankyou {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--section-py) var(--pad-x);
}
.thankyou-inner {
  max-width: 32rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}
.thankyou-icon {
  width: 56px;
  height: 56px;
  background: var(--oker);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-black);
  font-size: 2.25rem;
  color: var(--ink);
  line-height: 1;
}
.thankyou h1 {
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.025em;
}
.thankyou p {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-secondary);
}
