/* FN-Sattlerei Ausbaupaket
   Bilder liegen lokal unter /images.
   Gemeinsames Styling für alle Seiten.
*/

:root {
  --espresso: #19110d;
  --espresso-2: #251814;
  --leather: #8b4b2d;
  --cognac: #c47a48;
  --sand: #f3eadf;
  --cream: #fffaf3;
  --paper: #ffffff;
  --ink: #211b17;
  --muted: #74685f;
  --line: rgba(33, 27, 23, 0.12);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(25, 17, 13, 0.16);
  --soft-shadow: 0 14px 34px rgba(25, 17, 13, 0.08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

input,
select,
textarea,
button {
  font: inherit;
}

.container {
  width: min(92%, var(--max));
  margin: 0 auto;
}

.topbar {
  background: var(--espresso);
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar strong {
  color: #ffd7bb;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 250, 243, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(33,27,23,0.10);
}

.navbar-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 250px;
}

.brand-mark {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--espresso), #4a2a1d);
  color: #ffd7bb;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 34px rgba(25, 17, 13, 0.22);
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  font-weight: 1000;
  font-size: 1.35rem;
  letter-spacing: -0.08em;
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 110%;
  height: 16px;
  left: -10%;
  bottom: 10px;
  background: repeating-linear-gradient(90deg, transparent 0 10px, rgba(255,215,187,0.35) 10px 14px);
  transform: rotate(-8deg);
  opacity: 0.8;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  color: var(--espresso);
  font-size: 1.25rem;
  letter-spacing: -0.04em;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  color: var(--espresso);
  font-weight: 900;
  font-size: 0.94rem;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  border-radius: 999px;
  background: var(--cognac);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid var(--cognac);
  background: var(--cognac);
  color: #fff;
  padding: 14px 22px;
  font-weight: 1000;
  box-shadow: 0 18px 44px rgba(196, 122, 72, 0.24);
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--leather);
}

.btn.secondary {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.38);
  box-shadow: none;
}

.btn.light {
  background: #fff;
  color: var(--espresso);
  border-color: rgba(255,255,255,0.7);
  box-shadow: none;
}

.hero {
  min-height: 720px;
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(90deg, rgba(25,17,13,0.96) 0%, rgba(25,17,13,0.78) 46%, rgba(25,17,13,0.18) 100%),
    url("../../images/hero-sattlerei.jpg") center/cover no-repeat;
}

.home .hero {
  background:
    linear-gradient(90deg, rgba(25,17,13,0.96) 0%, rgba(25,17,13,0.78) 46%, rgba(25,17,13,0.18) 100%),
    url("images/hero-sattlerei.jpg") center/cover no-repeat;
}

.hero::after {
  content: "MANUFAKTUR";
  position: absolute;
  right: -70px;
  bottom: 18px;
  color: rgba(255,255,255,0.055);
  font-size: clamp(4rem, 11vw, 10rem);
  font-weight: 1000;
  letter-spacing: -0.08em;
  transform: rotate(-4deg);
  white-space: nowrap;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 38px;
  align-items: center;
  padding: 88px 0;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  color: #ffe3cf;
  font-weight: 1000;
  margin-bottom: 20px;
}

.eyebrow span {
  width: 10px;
  height: 10px;
  background: var(--cognac);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(196,122,72,0.18);
}

h1,
h2,
h3 {
  line-height: 1.04;
  letter-spacing: -0.055em;
}

h1 {
  font-size: clamp(2.85rem, 6vw, 6.2rem);
  margin-bottom: 24px;
}

.hero p {
  color: rgba(255,255,255,0.84);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  max-width: 700px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hero-stat {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 20px;
  padding: 16px;
  backdrop-filter: blur(12px);
}

.hero-stat strong {
  display: block;
  color: #fff;
  font-size: 1.12rem;
  margin-bottom: 3px;
}

.hero-stat span {
  color: rgba(255,255,255,0.68);
  font-weight: 800;
  font-size: 0.9rem;
}

.hero-card {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 30px;
  padding: 18px;
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 64px rgba(0,0,0,0.22);
}

.hero-card img {
  height: 470px;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 16px;
}

.hero-card strong {
  display: block;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.hero-card p {
  color: rgba(255,255,255,0.72);
  margin: 0;
  font-size: 1rem;
}

section {
  padding: 88px 0;
}

.section-head {
  max-width: 840px;
  margin-bottom: 38px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.kicker {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(196,122,72,0.12);
  border: 1px solid rgba(196,122,72,0.20);
  color: var(--leather);
  font-weight: 1000;
  margin-bottom: 14px;
}

.section-head h2 {
  color: var(--espresso);
  font-size: clamp(2rem, 4vw, 4rem);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.08rem;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.problem-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--soft-shadow);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.problem-card span {
  font-size: 2rem;
  display: block;
  margin-bottom: 14px;
}

.problem-card h3 {
  color: var(--espresso);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.problem-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card img {
  height: 220px;
  object-fit: cover;
}

.service-body {
  padding: 22px;
}

.service-body h3 {
  color: var(--espresso);
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.service-body p {
  color: var(--muted);
  margin-bottom: 14px;
}

.service-body ul {
  color: var(--muted);
  padding-left: 18px;
  display: grid;
  gap: 4px;
}

.dark {
  background: var(--espresso);
  color: #fff;
}

.dark .section-head h2,
.dark h2,
.dark h3 {
  color: #fff;
}

.dark .section-head p,
.dark p {
  color: rgba(255,255,255,0.76);
}

.dark .kicker {
  color: #ffd7bb;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.split-photo {
  border-radius: 30px;
  overflow: hidden;
  min-height: 540px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
}

.split-photo img {
  height: 540px;
  object-fit: cover;
}

.point-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 14px;
}

.check {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cognac);
  color: #fff;
  font-weight: 1000;
}

.point strong {
  color: #fff;
  display: block;
  margin-bottom: 3px;
}

.point span {
  color: rgba(255,255,255,0.72);
}

.showcase {
  background: var(--sand);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.showcase-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 410px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
}

.showcase-card img {
  height: 100%;
  object-fit: cover;
}

.showcase-copy {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.showcase-copy h3 {
  color: var(--espresso);
  font-size: 1.95rem;
  margin-bottom: 12px;
}

.showcase-copy p {
  color: var(--muted);
  margin-bottom: 14px;
}

.showcase-copy strong {
  color: var(--leather);
}

.material-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 18px;
}

.material-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  min-height: 360px;
  background: #111;
  box-shadow: var(--shadow);
}

.material-card.tall {
  min-height: 520px;
}

.material-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.material-card:hover img {
  transform: scale(1.04);
}

.material-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0,0,0,0.76));
}

.material-copy {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: #fff;
}

.material-copy strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.material-copy span {
  color: rgba(255,255,255,0.76);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: step;
}

.process-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  min-height: 230px;
  box-shadow: 0 14px 34px rgba(25,17,13,0.06);
}

.process-card::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  color: var(--cognac);
  font-weight: 1000;
  font-size: 2rem;
  letter-spacing: -0.08em;
  margin-bottom: 18px;
}

.process-card h3 {
  color: var(--espresso);
  font-size: 1.28rem;
  margin-bottom: 10px;
}

.process-card p {
  color: var(--muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--soft-shadow);
}

.faq-item h3 {
  color: var(--espresso);
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.faq-item p {
  color: var(--muted);
}

.contact {
  background:
    linear-gradient(135deg, rgba(196,122,72,0.12), transparent 32%),
    var(--espresso);
  color: #fff;
  padding-bottom: 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.contact-card,
.form-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 22px 64px rgba(0,0,0,0.20);
}

.contact-card h2,
.form-card h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.45rem);
  margin-bottom: 12px;
}

.contact-card p {
  color: rgba(255,255,255,0.76);
  margin-bottom: 22px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 15px;
}

.contact-icon {
  flex: 0 0 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--cognac);
  color: #fff;
  font-weight: 1000;
}

.contact-row strong {
  display: block;
  color: #fff;
  margin-bottom: 3px;
}

.contact-row span {
  color: rgba(255,255,255,0.72);
}

form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: #fff;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  padding: 14px 15px;
  outline: 0;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255,255,255,0.44);
}

select option {
  color: var(--ink);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.page-hero {
  min-height: 460px;
  display: grid;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(25,17,13,0.96), rgba(25,17,13,0.70)),
    url("../../images/hero-sattlerei.jpg") center/cover no-repeat;
}

.page-hero .container {
  padding: 70px 0;
}

.page-hero h1 {
  max-width: 860px;
}

.page-hero p {
  max-width: 700px;
  color: rgba(255,255,255,0.82);
  font-size: 1.12rem;
}

.page-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: start;
}

.page-content {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--soft-shadow);
}

.page-content h2 {
  color: var(--espresso);
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.page-content p {
  color: var(--muted);
  margin-bottom: 16px;
}

.page-content ul {
  color: var(--muted);
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.sidebar-card {
  background: var(--espresso);
  color: #fff;
  border-radius: 30px;
  padding: 30px;
  position: sticky;
  top: 110px;
}

.sidebar-card h3 {
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.sidebar-card p {
  color: rgba(255,255,255,0.76);
  margin-bottom: 18px;
}

footer {
  background: #120c09;
  color: rgba(255,255,255,0.62);
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

footer strong {
  color: #fff;
}

footer a {
  color: rgba(255,255,255,0.76);
  margin-left: 14px;
}

.mobile-cta {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 120;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: rgba(255,250,243,0.94);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 10px;
  backdrop-filter: blur(12px);
}

@media (max-width: 1080px) {
  .nav-links {
    display: none;
  }

  .hero-inner,
  .split-grid,
  .contact-grid,
  .page-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .process-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-grid,
  .material-strip {
    grid-template-columns: 1fr;
  }

  .showcase-card {
    grid-template-columns: 1fr;
  }

  .showcase-card img {
    height: 300px;
  }

  .sidebar-card {
    position: static;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 92px;
  }

  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 10px 0;
  }

  .navbar-inner {
    min-height: 76px;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
  }

  .brand-copy strong {
    font-size: 1.05rem;
  }

  .brand-copy span {
    display: none;
  }

  .navbar .btn {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 64px 0;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4rem);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats,
  .service-grid,
  .process-grid,
  .form-row,
  .problem-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-card img,
  .split-photo,
  .split-photo img {
    height: 340px;
    min-height: 340px;
  }

  section {
    padding: 64px 0;
  }

  .contact-card,
  .form-card,
  .page-content,
  .sidebar-card {
    padding: 24px;
    border-radius: 26px;
  }

  .footer-inner {
    flex-direction: column;
  }

  footer a {
    display: inline-block;
    margin: 8px 12px 0 0;
  }

  .mobile-cta {
    display: grid;
  }

  .mobile-cta .btn {
    width: 100%;
    padding: 13px 12px;
  }
}
