/* ============================
   GLANZWERK 030 — STYLESHEET
   ============================ */

:root {
  --gold: #E1C1AA;
  --dark: #2D2E32;
  --dark-lighter: #3a3b40;
  --gray-bg: #f5f5f5;
  --gray-border: #e8e3de;
  --text: #2D2E32;
  --text-muted: #6b7280;
  --white: #ffffff;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 16px rgba(0,0,0,0.07);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.12);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ---- TEXTURE BACKGROUND ---- */
.section--texture {
  background-image: url('bg-texture.png');
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  position: relative;
}
.section--texture-subtle {
  background-color: var(--white);
  background-image: url('bg-texture.png');
  background-size: cover;
  background-position: center top;
  background-repeat: repeat;
}

/* ---- CONTAINER ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- TYPOGRAPHY ---- */
.label {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.6rem;
  display: block;
  text-align: center;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  text-align: center;
  margin-bottom: 3rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn--dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn--dark:hover {
  background: var(--dark-lighter);
  border-color: var(--dark-lighter);
  transform: translateY(-1px);
}
.btn--gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: #d4af96;
  border-color: #d4af96;
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}
.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid #f0ebe5;
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  gap: 2rem;
}
.nav__logo { flex-shrink: 0; }
.nav__links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--dark); }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 1rem 2rem 1.5rem;
  border-top: 1px solid #f0ebe5;
}
.nav__mobile a {
  padding: 0.75rem 0;
  border-bottom: 1px solid #f5f0eb;
  font-weight: 500;
  color: var(--text);
}
.nav__mobile a:last-child { border-bottom: none; margin-top: 1rem; }
.nav__mobile .btn { border-bottom: none; text-align: center; justify-content: center; }
.nav__mobile.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  margin-top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #111;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,10,10,0.88) 0%,
    rgba(10,10,10,0.65) 50%,
    rgba(10,10,10,0.25) 100%
  );
  z-index: 1;
}
.hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.hero__content {
  max-width: 620px;
  width: 100%;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
}
.hero__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.hero__sub {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.hero__service {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 6rem 0;
}
.section--gray {
  background: var(--gray-bg);
}

/* ============================================================
   CARDS
   ============================================================ */
.cards {
  display: grid;
  gap: 1.5rem;
}
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.section--gray .card {
  background: var(--white);
}
.card__icon {
  width: 48px; height: 48px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.card__icon svg { width: 100%; height: 100%; }
.card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* Service cards */
.card--service h3 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 1rem;
}
.checklist {
  list-style: none;
  margin-bottom: 1.5rem;
}
.checklist li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.3rem 0 0.3rem 1.5rem;
  position: relative;
  line-height: 1.5;
  border-bottom: 1px solid #f5f0eb;
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
}
.card__subtitle {
  font-weight: 700;
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  display: block;
}
.card__subtitle2 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}
.card__intro {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.card__note {
  font-size: 0.78rem;
  color: var(--gold);
  font-style: italic;
  line-height: 1.5;
  margin-top: -0.5rem;
  margin-bottom: 1.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid #f0ebe5;
}
.card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s;
}
.card__link:hover { color: var(--gold); }

/* Target cards */
.card--target {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.card--target::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}
.card__tag {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.card__quote {
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.gallery__item {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #f0ebe5;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.gallery__item:hover img { transform: scale(1.04); }

/* ============================================================
   QUOTE BANNER
   ============================================================ */
.banner {
  background: var(--dark);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
/* Texture overlay */
.banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('bg-texture.png') center / cover repeat;
  opacity: 0.06;
  pointer-events: none;
}
/* Decorative large quotation mark */
.banner::after {
  content: '\201C';
  font-family: var(--font-serif);
  position: absolute;
  top: -0.15em;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(14rem, 22vw, 22rem);
  line-height: 1;
  color: var(--gold);
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
}
.banner__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
/* Gold accent line above label */
.banner__inner::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
  opacity: 0.7;
}
.banner blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.7;
  max-width: 780px;
  margin: 0 auto 2rem;
}
.banner__inner::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto;
  opacity: 0.7;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact__cards { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.contact__card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #faf8f6;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
}
.contact__card-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  color: var(--gold);
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.contact__card-icon svg { width: 100%; height: 100%; }
.contact__card strong { display: block; font-size: 0.9rem; margin-bottom: 0.2rem; }
.contact__card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.contact__card a { color: var(--dark); transition: color 0.2s; }
.contact__card a:hover { color: var(--gold); }

/* FORM */
.contact__form-wrap {
  background: #faf8f6;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.contact__form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--dark); }
.form-group input,
.form-group textarea {
  padding: 0.7rem 1rem;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(225,193,170,0.2);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group--check {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}
.form-group--check input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
}
.form-group--check label {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}
.link { color: var(--dark); text-decoration: underline; }
.req { color: #e53e3e; }
.form__note {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  justify-content: center;
}
.form__success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  text-align: center;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.faq__item {
  border-bottom: 1px solid var(--gray-border);
}
.faq__item:last-child { border-bottom: none; }
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: background 0.2s;
}
.faq__q:hover { background: #faf8f6; }
.faq__arrow {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.3s ease;
}
.faq__q[aria-expanded="true"] .faq__arrow { transform: rotate(180deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}
.faq__a.open {
  max-height: 300px;
}
.faq__a p {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 1.25rem 0 1.5rem;
  color: rgba(255,255,255,0.6);
}
.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gold);
  transition: opacity 0.2s;
}
.footer__social:hover { opacity: 0.8; }
.footer__col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer__col p { font-size: 0.85rem; line-height: 1.8; color: rgba(255,255,255,0.6); }
.footer__col a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   STATIC HERO (subpages without video)
   ============================================================ */
.hero--static {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero--static .hero__overlay {
  background: linear-gradient(
    to right,
    rgba(10,10,10,0.92) 0%,
    rgba(10,10,10,0.72) 55%,
    rgba(10,10,10,0.32) 100%
  );
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb__sep { color: rgba(255,255,255,0.3); }

/* Advantages grid */
.advantages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.advantage {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
}
.advantage__icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  color: var(--gold);
  background: #faf8f6;
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 7px;
}
.advantage__icon svg { width: 100%; height: 100%; }
.advantage__text strong { display: block; font-size: 0.9rem; color: var(--dark); margin-bottom: 0.2rem; }
.advantage__text p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* Two-column text split */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col__label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; display: block; }
.two-col__title { font-family: var(--font-serif); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; color: var(--dark); line-height: 1.25; margin-bottom: 1.25rem; }
.two-col__text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; margin-bottom: 1rem; }
.two-col__box {
  background: #faf8f6;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.5rem;
}
.two-col__box ul { list-style: none; }
.two-col__box ul li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  border-bottom: 1px solid #f0ebe5;
  line-height: 1.5;
}
.two-col__box ul li:last-child { border-bottom: none; }
.two-col__box ul li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; font-size: 0.8rem; }
.two-col__visual {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.two-col__visual img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px; height: 44px;
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 999;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}
.scroll-top:hover { transform: translateY(-3px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cards--3 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__brand { grid-column: span 2; }
}

@media (max-width: 1024px) {
  .advantages { grid-template-columns: 1fr 1fr; }
  .two-col { gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav__links, .nav__inner > .btn { display: none; }
  .nav__burger { display: flex; }

  .hero {
    min-height: 100svh;
  }
  .hero__overlay {
    background: linear-gradient(to bottom, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.6) 100%);
  }
  .hero__container { padding: 0 1.5rem; }
  .hero__content { max-width: 100%; }

  .section { padding: 4rem 0; }
  .cards--3, .cards--2 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }

  .contact { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__brand { grid-column: span 1; }

  .banner blockquote br { display: none; }
  .hero__title br { display: none; }

  .advantages { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col__visual { display: none; }
}

@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 1.5rem; }
}
