/* ============================================================
   KÜCHENWERK BOSSHARD AG – Stylesheet
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:        #18181b;
  --dark-2:      #27272a;
  --gold:        #b5924c;
  --gold-light:  #cead75;
  --gold-pale:   #f5ede0;
  --bg:          #f7f5f2;
  --white:       #ffffff;
  --text:        #1c1c1e;
  --text-muted:  #6b6b72;
  --border:      #e4e0d8;
  --radius:      6px;
  --radius-lg:   14px;
  --trans:       0.3s ease;
  --shadow:      0 4px 24px rgba(0,0,0,0.07);
  --shadow-md:   0 8px 40px rgba(0,0,0,0.11);
  --shadow-lg:   0 16px 64px rgba(0,0,0,0.16);
  --max-w:       1200px;
  --nav-h:       74px;
  --section-py:  100px;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
select, input, textarea {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* ── Container ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Sections ─────────────────────────────────────────────── */
.section { padding: var(--section-py) 0; }
.section-bg { background: var(--bg); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-header h2 { margin-top: 12px; }
.section-header p {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: 1.3rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

em { font-style: italic; color: var(--gold-light); }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.label-gold { color: var(--gold-light); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: all var(--trans);
  white-space: nowrap;
}
.btn-lg { padding: 17px 40px; font-size: 0.98rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(181,146,76,0.35);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(181,146,76,0.45);
}

.btn-outline-light {
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-outline-dark {
  border: 2px solid var(--dark);
  color: var(--dark);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}

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

/* ── Scroll Reveal ────────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease calc(var(--delay, 0s)), transform 0.65s ease calc(var(--delay, 0s));
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--trans), box-shadow var(--trans);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 var(--border), var(--shadow);
  backdrop-filter: blur(12px);
}
#navbar.scrolled .logo-name,
#navbar.scrolled .logo-sub { color: var(--dark); }
#navbar.scrolled .nav-links a { color: var(--dark); }
#navbar.scrolled .logo-mark { background: var(--dark); color: var(--white); }
#navbar.scrolled .hamburger span { background: var(--dark); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-mark {
  width: 40px; height: 40px;
  background: var(--gold);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  transition: background var(--trans);
}
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--trans);
}
.logo-sub {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color var(--trans);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--trans);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 22px;
  margin-left: 8px;
}
.nav-links .nav-cta:hover { background: var(--gold-light); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Overlay & Menu ────────────────────────────────── */
.mobile-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
  opacity: 0;
  transition: opacity var(--trans);
}
.mobile-overlay.active { display: block; opacity: 1; }

.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(340px, 90vw);
  height: 100%;
  background: var(--white);
  z-index: 1200;
  padding: 80px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: right 0.4s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { right: 0; }

.mobile-close {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 1.3rem;
  color: var(--text-muted);
  padding: 8px;
}
.mobile-close:hover { color: var(--text); }

.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu ul a {
  display: block;
  padding: 12px 0;
  font-size: 1.15rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
}
.mobile-menu ul a:hover { color: var(--gold); padding-left: 8px; transition: all var(--trans); }

.mobile-contact-info {
  margin-top: auto;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
#hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(18,18,20,0.78) 0%,
    rgba(18,18,20,0.52) 60%,
    rgba(18,18,20,0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
  max-width: 760px;
}

.hero-tag {
  display: inline-block;
  background: rgba(181,146,76,0.25);
  border: 1px solid rgba(181,146,76,0.5);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 24px;
}

.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  max-width: 580px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  width: 30px; height: 50px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 15px;
  position: relative;
}
.scroll-dot::after {
  content: '';
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
  animation: scrollBounce 1.8s ease infinite;
}
@keyframes scrollBounce {
  0%, 100% { top: 8px; opacity: 1; }
  80% { top: 28px; opacity: 0; }
}

/* ============================================================
   USP STRIP
   ============================================================ */
.usp-strip {
  background: var(--dark);
  padding: 0;
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background var(--trans);
}
.usp-item:last-child { border-right: none; }
.usp-item:hover { background: rgba(255,255,255,0.04); }

.usp-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(181,146,76,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.usp-icon svg { width: 22px; height: 22px; color: var(--gold); }

.usp-text { display: flex; flex-direction: column; gap: 2px; }
.usp-text strong { color: var(--white); font-size: 0.92rem; font-weight: 600; }
.usp-text span { color: rgba(255,255,255,0.5); font-size: 0.78rem; }

/* ============================================================
   LEISTUNGEN
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--trans);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 26px; height: 26px; color: var(--gold); }

.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.65; }

/* ============================================================
   CTA BANNERS
   ============================================================ */
.cta-banner { position: relative; padding: 90px 0; overflow: hidden; }

.cta-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(18,18,20,0.88) 0%, rgba(18,18,20,0.70) 100%);
}

.cta-dark .cta-bg { filter: none; }

.cta-gold {
  background: linear-gradient(135deg, var(--gold-pale) 0%, #ede5d8 100%);
}
.cta-gold .cta-bg, .cta-gold .cta-overlay { display: none; }

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.cta-centered { flex-direction: column; text-align: center; }
.cta-centered p { max-width: 620px; margin: 0 auto; }

.cta-dark .cta-content h2,
.cta-dark .cta-content p { color: var(--white); }
.cta-dark .cta-content p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-top: 12px; }

.cta-gold h2 { margin-top: 12px; }
.cta-gold p { color: var(--text-muted); font-size: 1.02rem; margin-top: 14px; }

.cta-action {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}

/* ============================================================
   REFERENZEN
   ============================================================ */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--white);
  transition: all var(--trans);
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--trans);
}
.gallery-item.hidden { display: none; }
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.gallery-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.gallery-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover .gallery-img-wrap img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(18,18,20,0.82) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--trans);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 8px;
  align-self: flex-start;
}
.gallery-overlay h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 4px; }
.gallery-overlay p { color: rgba(255,255,255,0.7); font-size: 0.82rem; }

/* ============================================================
   ÜBER UNS
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-image-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: 28px; right: -20px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
}
.about-badge strong {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--gold);
}
.about-badge span { font-size: 0.8rem; color: var(--text-muted); }

.about-content { display: flex; flex-direction: column; gap: 20px; }
.about-content h2 { margin-top: 10px; }
.lead { font-size: 1.1rem; color: var(--text-muted); }
.about-content p { color: var(--text-muted); font-size: 0.95rem; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat strong {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.stat span { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--dark); }
.testimonials-section .section-header { color: var(--white); }
.testimonials-section .section-label { color: var(--gold-light); }
.testimonials-section .section-header p { color: rgba(255,255,255,0.6); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all var(--trans);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}

.testimonial-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }

.testimonial-card blockquote {
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-author strong { display: block; color: var(--white); font-size: 0.9rem; }
.testimonial-author span { color: rgba(255,255,255,0.45); font-size: 0.78rem; }

/* ============================================================
   PROZESS
   ============================================================ */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.process-connector {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-pale));
  margin-top: 34px;
  flex-shrink: 0;
  position: relative;
}
.process-connector::after {
  content: '';
  position: absolute;
  right: -6px; top: -5px;
  width: 10px; height: 10px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  transform: rotate(45deg);
}

.step-number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
}
.step-content h3 { margin-bottom: 10px; font-size: 1.15rem; }
.step-content p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

/* ============================================================
   KONTAKT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.4rem;
  margin-bottom: 28px;
}

.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 42px; height: 42px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; color: var(--gold); }
.contact-item > div:last-child { display: flex; flex-direction: column; gap: 2px; }
.contact-item strong { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-muted); }
.contact-item span,
.contact-item a { color: var(--text); font-size: 0.93rem; line-height: 1.5; }
.contact-item a:hover { color: var(--gold); }

.contact-map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }

/* Contact Form */
.contact-form-wrap {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  font-size: 0.93rem;
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b72' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(181,146,76,0.12);
}
.form-group input.error,
.form-group textarea.error { border-color: #e53935; }

.form-group textarea { resize: vertical; min-height: 110px; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}
.form-check label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}
.form-check label a { color: var(--gold); text-decoration: underline; }

.form-note {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
  gap: 16px;
}
.form-success.visible { display: flex; }

.success-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
}
.form-success h3 { font-size: 1.4rem; }
.form-success p { color: var(--text-muted); max-width: 340px; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer { background: var(--dark); }

.footer-top { padding: 72px 0 56px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-about { display: flex; flex-direction: column; gap: 20px; }
.logo-light .logo-name { color: var(--white); }
.logo-light .logo-sub { color: rgba(255,255,255,0.45); }

.footer-about > p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--trans);
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(181,146,76,0.1);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  transition: color var(--trans);
}
.footer-col ul a:hover { color: var(--gold-light); }

.footer-col address {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 20px;
}
.footer-col address p,
.footer-col address a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.5;
}
.footer-col address a:hover { color: var(--gold-light); }

.footer-hours {
  display: flex; flex-direction: column; gap: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-hours strong { color: rgba(255,255,255,0.7); font-size: 0.8rem; margin-bottom: 4px; }
.footer-hours span { color: rgba(255,255,255,0.4); font-size: 0.82rem; }

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  transition: color var(--trans);
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

.footer-credit {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}
.footer-credit a {
  color: var(--gold);
  font-weight: 500;
  transition: color var(--trans);
}
.footer-credit a:hover { color: var(--gold-light); }

/* ── Back to Top ──────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--dark);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 900;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: all var(--trans);
  transform: translateY(8px);
}
.back-to-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); transform: translateY(-3px); }
.back-to-top svg { width: 20px; height: 20px; }

/* ============================================================
   RESPONSIVE – TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
  .about-badge { right: 0; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 40px; }

  .process-steps { flex-direction: column; gap: 20px; }
  .process-connector {
    width: 2px; height: 40px;
    background: linear-gradient(180deg, var(--gold), var(--gold-pale));
    margin-top: 0; margin-left: 34px;
  }
  .process-connector::after {
    right: -5px; top: auto;
    bottom: -6px;
    transform: rotate(135deg);
  }
  .process-step { flex-direction: row; gap: 20px; align-items: flex-start; }
  .step-number { font-size: 2rem; min-width: 60px; text-align: center; }

  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .usp-item:nth-child(2n) { border-right: none; }
  .usp-item:nth-last-child(-n+2) { border-bottom: none; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-action { flex-direction: row; justify-content: center; }
}

/* ============================================================
   RESPONSIVE – MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-py: 56px; --nav-h: 64px; }

  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .hero-buttons .btn { width: 100%; justify-content: center; }

  /* Sections */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-overlay { opacity: 1; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge { right: 16px; }
  .about-image-wrap img { aspect-ratio: 16/9; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-legal { flex-wrap: wrap; gap: 12px; }

  .cta-action { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 340px; }

  .usp-grid { grid-template-columns: 1fr; }
  .usp-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .usp-item:last-child { border-bottom: none; }

  .filter-bar { gap: 6px; }
  .filter-btn { padding: 7px 16px; font-size: 0.82rem; }

  h2 { font-size: 1.8rem; }
  .hero-content h1 { font-size: 2.2rem; }
}

/* ============================================================
   RESPONSIVE – SMALL (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-header { margin-bottom: 40px; }
  .service-card { padding: 28px 20px; }
  .testimonial-card { padding: 24px 20px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .back-to-top { bottom: 16px; right: 16px; }
}
