/* ==========================================================================
   JOURDAN WIESBADEN — ATELIER FÜR MAßKONFEKTION & HERRENMODE
   Design System & Tailor-Stitch Styling
   ========================================================================== */

/* --- 1. LOCAL FONTS (DSGVO-KONFORM) --- */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-latin-400-normal.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-latin-400-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-latin-600-normal.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-latin-700-normal.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/outfit-latin-400-normal.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/outfit-latin-500-normal.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/outfit-latin-600-normal.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* --- 2. CSS VARIABLES & THEME --- */
:root {
  /* Brand colors inspired by the original Jourdan identity (#29000e) */
  --bg-dark: #19010a;
  --bg-primary: #23020e;
  --bg-secondary: #2f0514;
  --bg-tertiary: #3a081b;
  --bg-card: rgba(45, 6, 22, 0.85);
  --bg-card-hover: rgba(58, 8, 27, 0.95);
  
  /* Text colors */
  --text-main: #f5f2ec;
  --text-light: #ffffff;
  --text-muted: #b8b3a8;
  --text-dim: #8e887d;
  
  /* Tailoring Stitch & Accent tones */
  --stitch: #bbaea1;
  --stitch-subtle: rgba(187, 174, 161, 0.35);
  --stitch-glow: rgba(187, 174, 161, 0.15);
  --accent-gold: #c5a880;
  --accent-gold-light: #dfcaa7;
  --accent-burgundy: #b35366;
  --border-subtle: rgba(187, 174, 161, 0.18);
  
  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Bookman Old Style', 'Georgia', serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Layout */
  --max-width: 1240px;
  --header-height: 90px;
  --radius-sm: 3px;
  --radius-md: 6px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- 3. RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-main);
  background: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 50% 0%, #3d071d 0%, #24020f 45%, #16010a 100%),
    linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.4));
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Selection */
::selection {
  background: var(--accent-burgundy);
  color: var(--text-light);
}

/* Links */
a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--text-light);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.25;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1.2rem;
  color: var(--text-muted);
  font-weight: 400;
}
p:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* --- 4. SIGNATURE TAILOR-STITCH ELEMENTS (DIE NAHT) --- */

/* Pick-stitch border (AMF-Naht) for cards */
.stitched-card {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.stitched-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1.5px dashed var(--stitch);
  border-radius: 2px;
  pointer-events: none;
  opacity: 0.55;
  transition: var(--transition);
}

.stitched-card:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 168, 128, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
}

.stitched-card:hover::after {
  opacity: 0.95;
  border-color: var(--accent-gold);
}

/* Stitched Frame for images */
.stitched-frame {
  position: relative;
  display: inline-block;
  padding: 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
}

.stitched-frame::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1.5px dashed var(--stitch);
  pointer-events: none;
  opacity: 0.7;
}

.stitched-frame img {
  border: 1px solid rgba(0, 0, 0, 0.4);
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Horizontal Stitch Divider with central Sartorial Icon */
.stitch-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 600px;
  margin: 0.5rem auto 2.5rem auto;
}

.stitch-divider::before,
.stitch-divider::after {
  content: "";
  flex: 1;
  border-top: 1.5px dashed var(--stitch);
  opacity: 0.6;
}

.stitch-divider-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-gold);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.stitch-divider-icon svg {
  width: 20px;
  height: 20px;
}

/* Tailor's Inner Label (Authentic Bespoke Suiting Badge) */
.tailor-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1rem;
  background: rgba(35, 4, 15, 0.9);
  border: 1px solid rgba(197, 168, 128, 0.3);
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold-light);
  position: relative;
}

.tailor-label::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px dashed rgba(187, 174, 161, 0.4);
  pointer-events: none;
}

/* Tailor Buttons with Stitched Border */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  position: relative;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, #440a20 0%, #2f0514 100%);
  border: 1px solid rgba(197, 168, 128, 0.45);
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px dashed rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  pointer-events: none;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
  border-color: var(--accent-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.btn-primary:hover::after {
  border-color: rgba(25, 1, 10, 0.6);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  position: relative;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-main);
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-outline::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px dashed var(--stitch-subtle);
  border-radius: 2px;
  pointer-events: none;
  transition: var(--transition);
}

.btn-outline:hover {
  color: var(--text-light);
  border-color: var(--stitch);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.btn-outline:hover::after {
  border-color: var(--stitch);
}

/* --- 5. TOP BAR & HEADER --- */
.top-bar {
  background: rgba(18, 1, 8, 0.95);
  border-bottom: 1px dashed var(--stitch-subtle);
  font-size: 0.85rem;
  padding: 0.5rem 0;
  color: var(--text-dim);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar a {
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.top-bar a:hover {
  color: var(--accent-gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(30, 2, 13, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1.5px dashed var(--stitch-subtle);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(22, 1, 10, 0.97);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 66px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
  border-radius: 2px;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1;
}

.brand-sub {
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-top: 0.22rem;
  font-weight: 500;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.35rem;
}

.nav-link {
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 0.4rem 0;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  border-bottom: 1.5px dashed var(--accent-gold);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-light);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Dropdown Navigation ("Maßkonfektion") */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.dropdown-arrow {
  color: var(--accent-gold);
  transition: transform 0.25s ease;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #1f020c;
  border: 1.5px dashed var(--stitch);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0;
  min-width: 180px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.85);
  z-index: 250;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.65rem 1.4rem;
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition);
  white-space: nowrap;
  text-align: left;
}

.dropdown-item:hover {
  color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.05);
  padding-left: 1.65rem;
}

/* Nav Button CTA einzeilig */
.nav-cta {
  margin-left: 0.4rem;
  flex-shrink: 0;
}

.nav-cta .btn-primary {
  white-space: nowrap !important;
  padding: 0.65rem 1.35rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: #2a0515;
  border: 1.5px dashed var(--stitch);
  color: var(--text-light);
  padding: 0.55rem 0.75rem;
  cursor: pointer;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
  z-index: 102;
}

.mobile-toggle:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
  border-color: var(--accent-gold);
}

/* --- 6. HERO SECTION --- */
.hero {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-bottom: 1.5px dashed var(--stitch-subtle);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.hero-title {
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.hero-title span {
  display: block;
  color: var(--accent-gold);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  font-size: 0.9em;
}

.hero-lead {
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  line-height: 1.8;
  color: #dfd8cc;
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Hero Visual Frame */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-card {
  position: relative;
  background: var(--bg-card);
  padding: 18px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  max-width: 440px;
  width: 100%;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1.5px dashed var(--stitch);
  pointer-events: none;
  opacity: 0.8;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

.hero-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-card:hover .hero-image-wrap img {
  transform: scale(1.03);
}

.hero-badge-scabal {
  position: absolute;
  bottom: 25px;
  right: -15px;
  background: var(--bg-primary);
  border: 1px solid var(--accent-gold);
  padding: 0.8rem 1.4rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  z-index: 3;
}

.hero-badge-scabal::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px dashed var(--stitch);
  pointer-events: none;
}

.hero-badge-scabal h4 {
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
}

.hero-badge-scabal p {
  font-size: 0.75rem;
  margin: 0;
  color: var(--text-muted);
}

/* Trust / Feature bar */
.trust-strip {
  border-top: 1.5px dashed var(--stitch-subtle);
  border-bottom: 1.5px dashed var(--stitch-subtle);
  background: rgba(20, 2, 9, 0.65);
  padding: 1.8rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  position: relative;
}

.trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -1rem;
  top: 15%;
  height: 70%;
  border-right: 1.5px dashed var(--stitch-subtle);
}

.trust-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--stitch);
  border-radius: var(--radius-sm);
  color: var(--accent-gold);
  flex-shrink: 0;
}

.trust-icon svg {
  width: 24px;
  height: 24px;
}

.trust-text h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.2;
}

.trust-text p {
  font-size: 0.85rem;
  margin: 0;
  color: var(--text-dim);
}

/* --- 7. SECTION STYLING --- */
.section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  position: relative;
}

.section-alt {
  background: rgba(22, 1, 10, 0.45);
  border-top: 1.5px dashed var(--stitch-subtle);
  border-bottom: 1.5px dashed var(--stitch-subtle);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem auto;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1.25rem;
}

.section-lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* --- 8. ATELIER PHILOSOPHY & ABOUT --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-quote-box {
  position: relative;
  background: var(--bg-card);
  padding: 3rem 2.5rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  margin-bottom: 2rem;
}

.about-quote-box::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1.5px dashed var(--stitch);
  pointer-events: none;
  opacity: 0.7;
}

.about-quote {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.about-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-author-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.about-author-title {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.about-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.spec-item {
  border-left: 2px dashed var(--accent-gold);
  padding-left: 1.2rem;
}

.spec-item h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-light);
}

.spec-item p {
  font-size: 0.9rem;
  margin: 0;
}

/* --- 9. SERVICES & OFFERINGS (MAßKONFEKTION) --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.service-img-wrap {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-bottom: 1.5px dashed var(--stitch-subtle);
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.05);
}

.service-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(25, 1, 10, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--accent-gold);
  padding: 0.35rem 0.8rem;
  font-family: var(--font-serif);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold-light);
}

.service-content {
  padding: 2.2rem 2rem 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.service-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex: 1;
}

.service-features {
  list-style: none;
  border-top: 1px dashed var(--stitch-subtle);
  padding-top: 1.2rem;
  margin-bottom: 1.8rem;
}

.service-features li {
  font-size: 0.85rem;
  color: var(--text-main);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.service-features li svg {
  color: var(--accent-gold);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* --- 10. SCABAL HERITAGE SECTION --- */
.scabal-banner {
  background: radial-gradient(circle at right center, #42081f 0%, #25020f 60%, #150009 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  position: relative;
  padding: clamp(3rem, 6vw, 4.5rem);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.scabal-banner::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1.5px dashed var(--stitch);
  pointer-events: none;
  opacity: 0.6;
}

.scabal-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

.scabal-tag {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  display: block;
}

.scabal-grid h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 1.5rem;
}

.scabal-specs-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.scabal-spec-box {
  background: rgba(18, 1, 8, 0.6);
  padding: 1.2rem;
  border-left: 2px dashed var(--accent-gold);
}

.scabal-spec-box h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.scabal-spec-box p {
  font-size: 0.85rem;
  margin: 0;
  color: var(--text-dim);
}

.scabal-img-frame {
  position: relative;
}

.scabal-img-frame img {
  border: 1px solid var(--border-subtle);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  width: 100%;
}

/* --- 11. HOME- & OFFICE-SERVICE --- */
.homeservice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.homeservice-card {
  position: relative;
  background: var(--bg-card);
  padding: 3rem 2.5rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
}

.homeservice-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1.5px dashed var(--stitch);
  pointer-events: none;
  opacity: 0.7;
}

.step-list {
  list-style: none;
  margin: 2rem 0;
}

.step-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.step-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  width: 44px;
  height: 44px;
  border: 1px dashed var(--stitch);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--bg-primary);
}

.step-text h4 {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.step-text p {
  font-size: 0.9rem;
  margin: 0;
}

/* --- 12. IMPRESSIONEN / GALLERY --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3.5;
  overflow: hidden;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1.5px dashed var(--stitch);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 1, 10, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.gallery-zoom-icon {
  width: 42px;
  height: 42px;
  border: 1px dashed var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  background: rgba(35, 4, 15, 0.85);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.gallery-item:hover::after,
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-zoom-icon {
  transform: scale(1);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Gallery Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(12, 1, 6, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  max-height: 100%;
  background: var(--bg-secondary);
  padding: 12px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.9);
}

.lightbox-content::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1.5px dashed var(--stitch);
  pointer-events: none;
  opacity: 0.8;
  z-index: 1;
}

/* Das Bild wird ueber max-width und max-height beschraenkt — keine Prozent-Height am Container */
.lightbox-img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  max-height: 80dvh;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  position: relative;
  z-index: 0;
}

.lightbox-caption {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
  padding-top: 0.75rem;
  position: relative;
  z-index: 0;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(25, 1, 10, 0.85);
  border: 1px dashed var(--stitch);
  color: var(--text-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 1010;
}

.lightbox-close {
  top: 25px;
  right: 25px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  font-size: 1.8rem;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
}

.lightbox-prev {
  left: 25px;
}

.lightbox-next {
  right: 25px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
  border-color: var(--accent-gold-light);
}

/* --- 13. CONTACT & APPOINTMENT FORM --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
}

.contact-info-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-block {
  margin-bottom: 2.2rem;
}

.contact-block h3 {
  font-size: 1.4rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.contact-details {
  list-style: none;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-icon {
  width: 36px;
  height: 36px;
  border: 1.5px dashed rgba(224, 83, 112, 0.45);
  border-radius: var(--radius-sm);
  color: #e05370;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
  background: rgba(58, 8, 27, 0.75);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: #e05370;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.hours-table td {
  padding: 0.4rem 0;
}
.hours-table td:last-child {
  text-align: right;
  color: var(--text-light);
  font-weight: 500;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed var(--stitch-subtle);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-main);
  transition: var(--transition);
}

.social-btn:hover {
  border-color: var(--accent-gold);
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.08);
}

/* Form Styles */
.form-card {
  position: relative;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

.form-group.full {
  grid-column: 1 / -1;
  margin-bottom: 1.25rem;
}

.form-label {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(20, 2, 9, 0.7);
  border: 1.5px dashed var(--stitch-subtle);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-light);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--accent-gold);
  background: rgba(28, 3, 13, 0.9);
  box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c5a880' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Honeypot field (hidden from users, traps spam bots) */
.hp-field {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  position: absolute !important;
  left: -9999px !important;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 0.25rem;
  accent-color: var(--accent-gold);
}

.form-status {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  display: none;
  font-size: 0.92rem;
}

.form-status.success {
  display: block;
  background: rgba(34, 197, 94, 0.15);
  border: 1px dashed rgba(34, 197, 94, 0.5);
  color: #86efac;
}

.form-status.error {
  display: block;
  background: rgba(239, 68, 68, 0.15);
  border: 1px dashed rgba(239, 68, 68, 0.5);
  color: #fca5a5;
}

/* --- 14. FOOTER & LEGAL --- */
.site-footer {
  background: #110006;
  border-top: 1.5px dashed var(--stitch-subtle);
  padding: 4.5rem 0 2rem 0;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-col h4 {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  color: var(--text-muted);
}
.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px dashed var(--stitch-subtle);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

/* Back to Top button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--bg-secondary);
  border: 1px dashed var(--stitch);
  border-radius: var(--radius-sm);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 90;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
}

/* --- 15. SUBPAGE TEMPLATE (IMPRESSUM & DATENSCHUTZ) --- */
.subpage-hero {
  padding: clamp(3rem, 6vw, 5rem) 0 2rem 0;
  border-bottom: 1.5px dashed var(--stitch-subtle);
  background: rgba(22, 1, 10, 0.4);
}

.legal-content {
  padding: 4rem 0;
  max-width: 860px;
  margin-inline: auto;
}

.legal-content h2 {
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px dashed var(--stitch-subtle);
  padding-bottom: 0.5rem;
}

.legal-content h3 {
  font-size: 1.3rem;
  margin-top: 1.8rem;
  margin-bottom: 0.6rem;
  color: var(--accent-gold);
}

.legal-content ul {
  margin: 1rem 0 1.5rem 1.8rem;
  color: var(--text-muted);
}

.legal-content li {
  margin-bottom: 0.5rem;
}

/* --- 16. RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .header-container {
    height: 75px;
  }
  .top-bar {
    display: none;
  }
  
  /* Mobile Toggle sichtbar */
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* 100% solider, blickdichter Hintergrund für das Burgermenü (keine Transparenz!) */
  .nav-menu {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 75px);
    height: calc(100dvh - 75px);
    background-color: #19010a !important;
    background: #19010a !important;
    opacity: 1 !important;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 2.5rem 1.5rem 4rem 1.5rem;
    gap: 1.4rem;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-top: 1.5px dashed var(--stitch);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.98);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 99999;
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.35rem;
    padding: 0.5rem 1rem;
    text-align: center;
  }

  /* Mobile Dropdown */
  .nav-dropdown {
    width: 100%;
    text-align: center;
  }

  .dropdown-menu {
    position: static;
    transform: none !important;
    background: rgba(45, 6, 22, 0.7);
    border: 1px dashed var(--stitch-subtle);
    margin: 0.5rem auto 0 auto;
    padding: 0.5rem 0;
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    min-width: 0;
    width: 100%;
    max-width: 280px;
  }

  .dropdown-item {
    font-size: 1.15rem;
    text-align: center;
    padding: 0.55rem 1rem;
  }

  .nav-cta {
    margin-top: 1rem;
    margin-left: 0;
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .nav-cta .btn-primary {
    width: 100%;
    padding: 0.85rem 1.5rem;
    font-size: 0.9rem;
  }

  /* Grids */
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .trust-item:nth-child(2)::after {
    display: none;
  }
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin-inline: auto;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual {
    order: -1;
  }
  .hero-card {
    max-width: 360px;
  }
  .hero-image-wrap img {
    height: 380px;
  }
  .about-grid,
  .scabal-grid,
  .homeservice-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 580px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-item::after {
    display: none !important;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }
  .gallery-item {
    aspect-ratio: 1 / 1;
  }
  .gallery-item img {
    object-fit: contain;
  }

  /* Lightbox mobil optimieren */
  .lightbox {
    padding: 0.75rem;
  }
  .lightbox-content {
    max-width: 100%;
    max-height: 100%;
    padding: 8px;
  }
  .lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    max-height: 70dvh;
    width: auto;
    height: auto;
  }
  .lightbox-caption {
    font-size: 0.85rem;
    padding-top: 0.5rem;
  }
  .lightbox-close {
    top: 8px;
    right: 8px;
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
    z-index: 1011;
  }
  .lightbox-prev,
  .lightbox-next {
    width: 44px;
    height: 44px;
    top: 50%;
    transform: translateY(-50%);
  }
  .lightbox-prev {
    left: 4px;
  }
  .lightbox-next {
    right: 4px;
  }

  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
  }
  .scabal-specs-list,
  .about-specs {
    grid-template-columns: 1fr;
  }
}