/* ============================================================
   Gohar GmbH — Stylesheet
   Palette: Anthrazit (Personal) / Gold (Folie) — aus der Wortmarke
   ============================================================ */

:root {
  --ink:          #0E1114;
  --anthracite:   #1A1F24;
  --anthracite-2: #262D34;
  --anthracite-3: #39424B;
  --steel:        #8A959F;
  --steel-2:      #B7BFC7;

  --paper:        #ECEEF0;
  --paper-2:      #DDE1E5;
  --paper-3:      #C9CFD5;

  --gold:         #C79A2B;
  --gold-bright:  #E8C45F;
  --gold-deep:    #8A6712;

  --display: "Archivo Expanded", "Archivo", "Helvetica Neue", Arial, sans-serif;
  --body:    "IBM Plex Sans", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono:    "IBM Plex Mono", ui-monospace, "SFMono-Regular", Consolas, monospace;

  --wrap: 1180px;
  --gut: clamp(20px, 5vw, 56px);
  --radius: 2px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ---------- Utility ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-deep), transparent);
  max-width: 120px;
}
.eyebrow--dark { color: var(--gold-deep); }
.eyebrow--dark::after { background: linear-gradient(90deg, var(--gold-deep), transparent); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { display: none; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); letter-spacing: 0; }

p { margin: 0 0 1.1em; }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--steel-2); max-width: 60ch; }

.gold-text { color: var(--gold-bright); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 26px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.btn--gold { background: var(--gold); color: var(--ink); font-weight: 600; }
.btn--gold:hover { background: var(--gold-bright); transform: translateY(-2px); }
.btn--ghost { border-color: var(--anthracite-3); color: var(--paper); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-bright); }
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: var(--anthracite-2); transform: translateY(-2px); }
.btn--outline-dark { border-color: rgba(14,17,20,.35); color: var(--ink); }
.btn--outline-dark:hover { border-color: var(--ink); background: rgba(14,17,20,.06); }

:where(a, button, input, textarea, select):focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(14,17,20,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--anthracite-2);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 76px;
}
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; margin-right: auto; }
.brand img { width: 62px; }
.brand-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .04em;
  line-height: 1;
}
.brand-name span { color: var(--gold); }
.brand-claim {
  display: block;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .2em;
  color: var(--steel);
  margin-top: 5px;
  text-transform: uppercase;
}

.site-nav { display: flex; gap: 30px; }
.site-nav a {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .11em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--steel-2);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color .18s ease, border-color .18s ease;
}
.site-nav a:hover { color: var(--paper); border-bottom-color: var(--gold); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--anthracite-3);
  border-radius: var(--radius);
  color: var(--paper);
  padding: 9px 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 11vw, 130px) 0 clamp(60px, 9vw, 110px);
  background:
    radial-gradient(120% 90% at 82% 18%, rgba(199,154,43,.16), transparent 58%),
    linear-gradient(180deg, var(--ink), var(--anthracite));
}
/* feine Wickellinien im Hintergrund — Anspielung auf die gewickelte Folienrolle */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    100deg,
    rgba(255,255,255,.045) 0 1px,
    transparent 1px 9px
  );
  opacity: .6;
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.hero h1 { margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--gold-bright); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero-figure { display: flex; justify-content: center; }
.hero-figure svg { width: 100%; max-width: 380px; height: auto; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--anthracite-2);
  padding-top: 26px;
}
.hero-meta div { padding-right: 42px; margin-right: 42px; border-right: 1px solid var(--anthracite-2); }
.hero-meta div:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.hero-meta dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 6px;
}
.hero-meta dd {
  margin: 0;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
}

/* ---------- Split: zwei Geschäftsbereiche ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; }
.split-panel { padding: clamp(48px, 7vw, 96px) clamp(26px, 4.5vw, 64px); position: relative; }
.split-panel h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); }

.split-panel--personal {
  background: var(--anthracite);
  color: var(--paper);
  clip-path: polygon(0 0, 100% 0, calc(100% - 70px) 100%, 0 100%);
  padding-right: clamp(46px, 6vw, 90px);
}
.split-panel--folie {
  background: linear-gradient(150deg, var(--gold-bright), var(--gold) 55%, var(--gold-deep));
  color: var(--ink);
  margin-left: -70px;
  clip-path: polygon(70px 0, 100% 0, 100% 100%, 0 100%);
  padding-left: clamp(58px, 7vw, 110px);
}
.split-panel--folie .lede { color: rgba(14,17,20,.78); }
.split-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}
.split-panel--personal .split-tag { color: var(--steel); }
.split-panel--folie .split-tag { color: rgba(14,17,20,.6); }

.split-list { list-style: none; margin: 26px 0 30px; padding: 0; }
.split-list li { padding: 11px 0 11px 26px; position: relative; font-size: .96rem; }
.split-panel--personal .split-list li { border-bottom: 1px solid var(--anthracite-2); }
.split-panel--folie .split-list li { border-bottom: 1px solid rgba(14,17,20,.16); }
.split-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 20px;
  width: 10px; height: 1px;
}
.split-panel--personal .split-list li::before { background: var(--gold); }
.split-panel--folie .split-list li::before { background: var(--ink); }

/* ---------- Produkt / Spec ---------- */
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--paper { background: var(--paper); color: var(--ink); }
.section--paper .lede { color: #46505A; }
.section--dark { background: var(--anthracite); }

.product-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
  margin-top: 46px;
}
.product-visual {
  background: linear-gradient(165deg, #fff, var(--paper-2));
  border: 1px solid var(--paper-3);
  border-radius: var(--radius);
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-visual svg { width: 100%; max-width: 300px; height: auto; }

/* Signature: Typenschild der Rolle */
.spec-plate {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
  padding: 30px clamp(22px, 3vw, 34px) 26px;
  font-family: var(--mono);
}
.spec-plate h3 {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 4px;
  font-weight: 500;
}
.spec-plate .spec-name {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 22px;
  letter-spacing: -.01em;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--anthracite-3);
  font-size: 13.5px;
}
.spec-row:last-of-type { border-bottom: 0; }
.spec-row dt { color: var(--steel); letter-spacing: .06em; text-transform: uppercase; font-size: 11.5px; }
.spec-row dd { margin: 0; text-align: right; color: var(--paper); font-weight: 500; }
.spec-row dd small { display: block; color: var(--steel); font-size: 11px; font-weight: 400; letter-spacing: .04em; }
.spec-foot {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--anthracite-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--steel);
}
.spec-foot strong { color: var(--gold-bright); font-weight: 500; }

.spec-note {
  margin-top: 20px;
  font-size: .88rem;
  color: #5A646E;
  line-height: 1.6;
}

/* ---------- Anwendungen ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px;
  background: var(--anthracite-2);
  border: 1px solid var(--anthracite-2);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 44px;
}
.card { background: var(--anthracite); padding: 32px 28px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--steel-2); font-size: .94rem; margin: 0; }
.card-mark {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

/* ---------- Kontakt ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(34px, 5vw, 70px);
  margin-top: 44px;
  align-items: start;
}
.contact-block { margin-bottom: 30px; }
.contact-block dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
}
.contact-block dd { margin: 0; font-size: 1.02rem; line-height: 1.55; }
.contact-block a { text-decoration: none; border-bottom: 1px solid var(--anthracite-3); }
.contact-block a:hover { border-bottom-color: var(--gold); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--steel);
}
.field input, .field textarea, .field select {
  font-family: var(--body);
  font-size: 15px;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--anthracite-3);
  border-radius: var(--radius);
  padding: 13px 15px;
  width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); }
.form-consent {
  grid-column: 1 / -1;
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: .84rem;
  color: var(--steel-2);
  line-height: 1.5;
}
.form-consent input { width: 17px; height: 17px; margin-top: 2px; flex: none; accent-color: var(--gold); }
.hp { position: absolute; left: -9999px; opacity: 0; }

.form-status {
  grid-column: 1 / -1;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: .92rem;
  border-left: 3px solid var(--gold);
  background: rgba(199,154,43,.1);
}
.form-status--error { border-left-color: #C25A4B; background: rgba(194,90,75,.12); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); border-top: 1px solid var(--anthracite-2); padding: 56px 0 34px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--anthracite-2);
}
.site-footer img { width: 190px; margin-bottom: 18px; }
.site-footer p { color: var(--steel); font-size: .9rem; max-width: 34ch; }
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 15px;
  font-weight: 500;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: var(--steel-2); text-decoration: none; font-size: .93rem; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--steel);
}

/* ---------- Rechtstexte ---------- */
.legal { padding: clamp(56px, 8vw, 96px) 0; }
.legal .wrap { max-width: 780px; }
.legal h2 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); margin-top: 44px; }
.legal h2:first-of-type { margin-top: 30px; }
.legal p, .legal li { color: var(--steel-2); }
.legal address { font-style: normal; color: var(--paper); line-height: 1.8; }
.legal .hinweis {
  background: var(--anthracite);
  border: 1px solid var(--anthracite-2);
  border-left: 3px solid var(--gold);
  padding: 22px 24px;
  border-radius: var(--radius);
  margin-bottom: 36px;
}
.legal .hinweis p:last-child { margin-bottom: 0; }

/* Sprungziele unter der klebenden Kopfzeile freihalten */
[id] { scroll-margin-top: 96px; }

/* ---------- Platzhalter ---------- */
.placeholder {
  background: rgba(199,154,43,.16);
  border-left: 3px solid var(--gold);
  padding: 2px 8px;
  border-radius: var(--radius);
  color: var(--gold-bright);
  font-family: var(--mono);
  font-size: .84em;
  letter-spacing: .02em;
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { order: -1; max-width: 260px; margin-inline: auto; }
  .split { grid-template-columns: 1fr; }
  .split-panel--personal { clip-path: none; padding-right: clamp(26px, 4.5vw, 64px); }
  .split-panel--folie { margin-left: 0; clip-path: none; padding-left: clamp(26px, 4.5vw, 64px); }
  .product-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--ink);
    border-bottom: 1px solid var(--anthracite-2);
    padding: 6px var(--gut) 20px;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 15px 0; border-bottom: 1px solid var(--anthracite-2); }
  .nav-toggle { display: block; }
  .site-header .wrap { position: relative; }
  .header-cta { display: none; }
  .hero-meta div { border-right: 0; margin-right: 0; padding-right: 0; width: 50%; margin-bottom: 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 520px) {
  .brand-claim { display: none; }
  .brand img { width: 52px; }
}

/* ---------- Personaldienstleistung ---------- */
.rollen {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--anthracite-2);
  border: 1px solid var(--anthracite-2);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 40px 0 0;
  list-style: none;
  padding: 0;
}
.rollen li {
  background: var(--anthracite);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rollen b {
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -.005em;
}
.rollen span { color: var(--steel); font-size: .85rem; line-height: 1.5; }

.ablauf {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 3vw, 44px);
  margin-top: 52px;
  counter-reset: schritt;
}
.ablauf > div {
  counter-increment: schritt;
  padding-top: 22px;
  border-top: 2px solid var(--gold);
}
.ablauf > div:nth-child(2) { border-top-color: var(--anthracite-3); }
.ablauf > div:nth-child(3) { border-top-color: var(--anthracite-3); }
.ablauf > div::before {
  content: counter(schritt, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.ablauf h3 { margin-bottom: 8px; }
.ablauf p { color: var(--steel-2); font-size: .93rem; margin: 0; }

.personal-head {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(26px, 5vw, 64px);
  align-items: end;
}
.personal-claim {
  border-left: 2px solid var(--gold);
  padding: 4px 0 4px 22px;
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -.005em;
}

@media (max-width: 900px) {
  .ablauf { grid-template-columns: 1fr; gap: 26px; }
  .personal-head { grid-template-columns: 1fr; }
  .rollen { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .rollen { grid-template-columns: 1fr; }
}

/* ---------- Hervorgehobener Vorteil ---------- */
.vorteil {
  background: linear-gradient(140deg, var(--gold-bright), var(--gold) 60%, var(--gold-deep));
  color: var(--ink);
  border-radius: var(--radius);
  padding: 24px 26px;
  margin-bottom: 34px;
}
.vorteil span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(14,17,20,.62);
  display: block;
  margin-bottom: 10px;
}
.vorteil b {
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.9vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -.01em;
  display: block;
  margin-bottom: 8px;
  line-height: 1.2;
}
.vorteil p { margin: 0; font-size: .92rem; line-height: 1.55; color: rgba(14,17,20,.82); }
