/* TFI Lava — Round 02 brand foundation
   White-basis system with deep-grey (not black) dark moments */

@font-face {
  font-family: 'Söhne';
  src: url('/assets/fonts/TestSohne-Buch-BF663d89cd32e6a.otf') format('opentype');
  font-weight: 400; font-style: normal;
}
@font-face {
  font-family: 'Söhne';
  src: url('/assets/fonts/TestSohne-Leicht-BF663d89cd4952e.otf') format('opentype');
  font-weight: 300; font-style: normal;
}
@font-face {
  font-family: 'Söhne';
  src: url('/assets/fonts/TestSohne-Extrafett-BF663d89cc9f2c0.otf') format('opentype');
  font-weight: 800; font-style: normal;
}

:root {
  /* White-basis palette */
  --white: #ffffff;
  --bone: #f6f3ec;
  --bone-deep: #eee9dc;
  --paper: #fafaf7;

  /* Type & rules on light */
  --ink: #1f2024;        /* primary text */
  --ink-soft: #4a4b50;   /* secondary text */
  --slate: #7d7e85;      /* tertiary text, captions */
  --hairline: rgba(31,32,36,0.10);
  --hairline-soft: rgba(31,32,36,0.06);

  /* Deep-grey (NOT pure black) for dark moments */
  --deep: #1f2024;       /* primary dark — used for hero, footer, dark panels */
  --deep-mid: #2a2b30;
  --deep-soft: #3a3b40;
  --hairline-dark: rgba(255,255,255,0.12);

  /* Lava accent */
  --lava: #e0531e;
  --lava-deep: #c1411a;
  --lava-soft: #f3a071;
  --lava-bg: #fce9df;    /* very subtle orange wash */
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  font-family: 'Söhne', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  background: var(--white);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* utility */
.eyebrow { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.18em; color: var(--lava); }
.eyebrow-slate { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.18em; color: var(--slate); }

.cta { display: inline-flex; align-items: center; gap: 12px; padding: 16px 32px; background: var(--lava); color: var(--white); font-weight: 800; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; border: 0; cursor: pointer; }
.cta--ghost { background: transparent; border: 1.5px solid var(--ink); color: var(--ink); }
.cta--ghost-light { background: transparent; border: 1.5px solid var(--white); color: var(--white); }
.cta--dark { background: var(--deep); color: var(--white); }
.cta:after { content: ' →'; font-weight: 400; }

/* Nav — light bg version */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 60px;
  border-bottom: 1px solid var(--hairline);
  background: var(--white);
}
.nav__brand img { height: 32px; }
.nav__links { display: flex; gap: 36px; font-size: 12px; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); }
.nav__cta { padding: 10px 22px; border: 1px solid var(--lava); color: var(--lava); font-size: 11px; font-weight: 800; letter-spacing: 0.10em; text-transform: uppercase; }

/* Nav variant for dark hero */
.nav--on-dark { background: transparent; border-bottom: 0; }
.nav--on-dark .nav__links { color: var(--white); }
.nav--on-dark .nav__cta { color: var(--white); border-color: var(--white); }

/* Footer — deep grey */
.footer {
  background: var(--deep);
  color: var(--white);
  padding: 80px 60px 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--hairline-dark);
}
.footer__brand img { height: 48px; margin-bottom: 22px; }
.footer__tagline { color: rgba(255,255,255,0.70); font-size: 13px; max-width: 320px; line-height: 1.6; }
.footer h4 { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.18em; color: var(--lava); margin-bottom: 18px; }
.footer ul { list-style: none; }
.footer li { font-size: 13px; color: var(--white); margin-bottom: 9px; font-weight: 300; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; font-size: 11px; color: rgba(255,255,255,0.55); letter-spacing: 0.05em; }
.footer__bottom a { color: rgba(255,255,255,0.55); margin-left: 22px; }

/* Cookie banner — at end of body content (not floating) */
.cookie {
  margin: 0;
  background: var(--deep);
  color: var(--white);
  padding: 18px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  font-size: 12px;
  border-top: 1px solid var(--lava);
}
.cookie p { max-width: 740px; color: var(--white); font-weight: 300; }
.cookie__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie__btn { padding: 10px 18px; background: var(--lava); color: var(--white); font-weight: 800; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; border: 0; cursor: pointer; }
.cookie__btn--ghost { background: transparent; border: 1px solid var(--white); }

/* Privacy callout (appears next to forms) */
.privacy-callout {
  font-size: 12px; color: var(--ink-soft); line-height: 1.5;
  padding: 14px 16px;
  border-left: 2px solid var(--lava);
  background: var(--lava-bg);
  margin-top: 16px;
}
.privacy-callout strong { color: var(--ink); font-weight: 400; }

/* Section heading utilities */
.section { padding: 120px 60px; }
.section__inner { max-width: 1200px; margin: 0 auto; }
.section--alt { background: var(--bone); }
.section--paper { background: var(--paper); }
.section--deep { background: var(--deep); color: var(--white); }
.section--lava { background: var(--lava); color: var(--white); }
.section--deep .eyebrow { color: var(--lava-soft); }

h1, h2, h3, h4 { color: inherit; }

/* Common type sizes */
.h-display { font-size: 88px; font-weight: 800; line-height: 1.0; letter-spacing: -0.02em; }
.h1 { font-size: 64px; font-weight: 800; line-height: 1.05; letter-spacing: -0.01em; }
.h2 { font-size: 48px; font-weight: 800; line-height: 1.1; letter-spacing: -0.01em; }
.h3 { font-size: 28px; font-weight: 800; line-height: 1.2; letter-spacing: -0.01em; }
.lead { font-size: 22px; font-weight: 300; line-height: 1.55; max-width: 720px; }
.body { font-size: 17px; font-weight: 300; line-height: 1.65; }
.small { font-size: 14px; font-weight: 300; line-height: 1.55; color: var(--ink-soft); }
em.lava { color: var(--lava); font-style: normal; }

/* Pull quote */
.pullquote {
  background: var(--deep);
  color: var(--white);
  padding: 100px 60px;
}
.pullquote__inner { max-width: 1080px; margin: 0 auto; }
.pullquote .eyebrow { color: var(--lava-soft); display: block; margin-bottom: 28px; }
.pullquote q { display: block; font-size: 42px; font-weight: 300; line-height: 1.3; color: var(--white); quotes: none; max-width: 980px; }
.pullquote q em { color: var(--lava); font-style: normal; font-weight: 800; }
.pullquote__attr { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 32px; }
