/* =============================================
   Schneiderei Modern Johnny — Main Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Open+Sans:wght@300;400;600&display=swap');

:root {
  --primary:  #0d1b2e;
  --accent:   #c9a84c;
  --accent2:  #e8c97a;
  --light:    #f8f6f1;
  --white:    #ffffff;
  --text:     #333333;
  --text-muted: #6c757d;
  --border:   #e0d9cc;
  --shadow:   0 4px 24px rgba(13,27,46,0.10);
  --radius:   8px;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --transition: 0.3s ease;
}

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

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent2); }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--primary);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.3rem; }
p { margin-bottom: 1rem; }

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}
.accent { color: var(--accent); }

/* ── Layout ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-alt { background: var(--light); }

/* ── Header & Nav ── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,27,46,0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  transition: all var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.logo img {
  height: 68px;
  width: auto;
  max-width: 280px;
  display: block;
  filter: none;
}
.logo-fallback {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 700;
  white-space: nowrap;
}
.logo-fallback span { color: var(--accent); }

nav ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}
nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
nav a:hover, nav a.active { color: var(--accent); }
nav a:hover::after, nav a.active::after { width: 100%; }

.nav-cta {
  background: var(--accent);
  color: var(--primary) !important;
  padding: 0.5rem 1.3rem;
  border-radius: 4px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--accent2); }
.nav-cta::after { display: none !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── Hero ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(to right, rgba(13,27,46,0.92) 0%, rgba(13,27,46,0.60) 60%, rgba(13,27,46,0.30) 100%),
    url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=1920&q=85') center/cover no-repeat;
  background-attachment: fixed;
  color: var(--white);
  text-align: center;
  padding: 8rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(201,168,76,0.12) 0%, transparent 70%);
}

.hero-content { position: relative; max-width: 780px; margin: 0 auto; }

/* Hero pill */

/* .hero-badge class kept for legacy — hero now uses .hero-pill */
.hero-badge {
  display: inline-block;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

#hero h1 { color: var(--white); margin-bottom: 1.2rem; }
#hero h1 span { color: var(--accent); }

/* ── Creative Hero Title Block ── */
.hero-title-block {
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}
.hero-title-service {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.hero-title-scissors {
  color: var(--accent);
  font-size: 1.1em;
  opacity: 0.85;
}
.hero-title-amp-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0.3rem 0;
}
.hero-title-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.7;
}
.hero-title-amp {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--accent);
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 0 30px rgba(201,168,76,0.5);
}
.hero-title-reinigung {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.hero-title-brand {
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(201,168,76,0.3);
  display: inline-block;
  width: 100%;
}
.hero-title-brand-inner {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  font-style: italic;
  color: var(--accent);
  font-family: var(--font-head);
  letter-spacing: 0.03em;
  text-shadow: 0 2px 20px rgba(201,168,76,0.3);
}
.hero-title-location {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .hero-title-service,
  .hero-title-reinigung { font-size: 1.25rem; letter-spacing: 0.06em; }
  .hero-title-amp { font-size: 2.2rem; }
  .hero-title-brand-inner { font-size: 2rem; }
}

.hero-text {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin: 0 auto 2.5rem;
}

.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-primary {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent2);
  border-color: var(--accent2);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201,168,76,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-dark:hover {
  background: #162038;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--accent);
  font-weight: 700;
  display: block;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary), #1e3058);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.8rem;
}
.service-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ── About / USP ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img-wrap img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-head);
  font-weight: 700;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  line-height: 1.2;
}
.about-badge strong { font-size: 2rem; display: block; }

.about-text h2 { margin-bottom: 1rem; }
.about-text p { color: var(--text-muted); }

.usp-list { margin: 1.5rem 0; }
.usp-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.usp-icon {
  width: 36px; height: 36px;
  background: rgba(201,168,76,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 1rem;
}
.usp-item p { margin: 0; font-size: 0.95rem; color: var(--text-muted); }
.usp-item strong { color: var(--text); }

/* ── Price List ── */
.price-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.4rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  background: transparent;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text);
  font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.price-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(201,168,76,0.4);
}

.price-card-head {
  background: var(--primary);
  color: var(--white);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.price-card-head h3 {
  color: var(--white);
  font-size: 1rem;
  margin: 0;
}
.price-card-head .cat-icon { font-size: 1.3rem; }

.price-table { width: 100%; border-collapse: collapse; }
.price-table tr { border-bottom: 1px solid var(--border); }
.price-table tr:last-child { border-bottom: none; }
.price-table td {
  padding: 0.65rem 1.5rem;
  font-size: 0.88rem;
  vertical-align: middle;
}
.price-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}
.price-table tr:nth-child(even):not(.price-subcat-head) { background: #fafaf8; }

/* Sub-category header rows */
.price-subcat-head td {
  padding: 0.55rem 1.5rem 0.4rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--primary);
  background: linear-gradient(90deg, rgba(201,168,76,0.13), transparent 80%) !important;
  border-bottom: 1px solid rgba(201,168,76,0.35) !important;
  border-top: 2px solid rgba(201,168,76,0.18);
}
.price-subcat-head td::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 0.7em;
  background: var(--accent);
  border-radius: 2px;
  margin-right: 0.5rem;
  vertical-align: middle;
  opacity: 0.8;
}

.price-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
  background: var(--light);
  padding: 1rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}

/* ── Gallery / Testimonials ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-family: var(--font-head);
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
}
.stars { color: var(--accent); font-size: 1rem; margin-bottom: 0.8rem; }
.review-text { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 1rem; font-style: italic; }
.reviewer { font-weight: 700; font-size: 0.88rem; }

/* ── Hours & Contact ── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { font-weight: 600; }
.hours-list .time { color: var(--accent); font-weight: 700; }
.hours-list .closed { color: #999; }

.contact-info-list { margin-bottom: 2rem; }
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.ci-icon {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.ci-text { font-size: 0.92rem; }
.ci-text strong { display: block; font-size: 0.8rem; text-transform: uppercase; color: var(--text-muted); }

/* ── Contact Form ── */
.contact-form-wrap { background: var(--white); padding: 2.5rem; border-radius: var(--radius); box-shadow: var(--shadow); }

.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--text); text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }

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

.form-success {
  background: #e8f5e9;
  border: 1px solid #66bb6a;
  color: #2e7d32;
  padding: 1rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  display: none;
}
.form-error {
  background: #fdecea;
  border: 1px solid #ef5350;
  color: #c62828;
  padding: 1rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  display: none;
}

/* ── Map ── */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 380px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ── WhatsApp Float ── */
#whatsapp-btn {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 999;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: all var(--transition);
  animation: pulse-wa 2s ease-in-out infinite;
}
#whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}
#whatsapp-btn svg { width: 32px; height: 32px; fill: white; }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.8); }
}

/* ── Mobile Dock Navigation ── */
nav.dock { display: none; }

/* ── GLS Slide Tab (mobile only) ── */
.gls-tab { display: none; }

/* ── Scroll-to-top FAB (mobile only) ── */
#scroll-top-btn { display: none; }

@media (max-width: 768px) {
  /* Hide hamburger + main nav — dock handles navigation */
  .nav-toggle { display: none !important; }
  #main-nav   { display: none !important; }

  /* Body padding so content clears floating dock */
  body { padding-bottom: 100px; }

  /* Desktop WhatsApp float hidden on mobile */
  #whatsapp-btn { display: none !important; }

  /* ── Floating Pill Dock ── */
  nav.dock {
    display: flex !important;
    position: fixed !important;
    top: auto !important;
    bottom: 16px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: calc(100% - 32px) !important;
    max-width: 420px !important;
    max-height: none !important;
    overflow: visible !important;
    background: rgba(10, 20, 38, 0.96) !important;
    backdrop-filter: blur(24px) saturate(1.4) !important;
    -webkit-backdrop-filter: blur(24px) saturate(1.4) !important;
    border: 1px solid rgba(192, 160, 80, 0.18) !important;
    border-radius: 28px !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.45), 0 2px 8px rgba(0,0,0,0.25) !important;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom)) !important;
    justify-content: space-around !important;
    align-items: center !important;
    z-index: 1100 !important;
  }
  nav.dock ul { display: none !important; }

  /* GLS Tab */
  .gls-tab {
    display: block;
    position: fixed;
    left: 0;
    bottom: 120px;
    z-index: 1090;
  }

  /* Hide old GLS floating badge */
  #gls-badge { display: none !important; }

  /* ── Scroll-to-top FAB ── */
  #scroll-top-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: fixed !important;
    right: 16px !important;
    bottom: 96px !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: rgba(10, 20, 38, 0.94) !important;
    border: 1px solid rgba(192, 160, 80, 0.35) !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4) !important;
    color: var(--accent) !important;
    cursor: pointer !important;
    z-index: 1090 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(12px) !important;
    transition: opacity 0.3s ease, transform 0.3s ease !important;
  }
  #scroll-top-btn.visible {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }
  #scroll-top-btn:hover {
    background: rgba(20, 36, 62, 0.98) !important;
    box-shadow: 0 6px 22px rgba(0,0,0,0.5) !important;
    transform: translateY(-2px) !important;
  }
}

/* ── Dock items ── */
.dock-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: rgba(255,255,255,0.45) !important;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 12px 4px;
  border-radius: 18px;
  transition: color 0.2s ease, background 0.2s ease;
  text-decoration: none !important;
  flex: 1;
  text-align: center;
  position: relative;
}
.dock-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
.dock-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  stroke: currentColor;
  transition: stroke 0.2s;
}
.dock-label {
  display: block;
  line-height: 1;
}
.dock-item:active .dock-icon,
.dock-item:focus .dock-icon {
  transform: scale(1.15) translateY(-2px);
}
.dock-item:hover,
.dock-item--active {
  color: var(--accent) !important;
}
.dock-item--active {
  background: rgba(192, 160, 80, 0.12);
}
.dock-item--active .dock-icon {
  transform: translateY(-2px);
}

/* Override generic mobile nav-link color inside dock */
@media (max-width: 768px) {
  nav.dock a,
  nav.dock button.dock-item {
    display: flex !important;
    color: rgba(255,255,255,0.45) !important;
    font-size: 9px !important;
    background: transparent !important;
    border: none !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
  }
  nav.dock a.dock-item--active {
    color: var(--accent) !important;
    background: rgba(192, 160, 80, 0.12) !important;
  }
  nav.dock a:hover,
  nav.dock button.dock-item:hover { color: var(--accent) !important; }
}

/* ── GLS Slide Tab ── */
.gls-tab-trigger {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  background: #F5C400;
  color: #1a1000;
  border: none;
  cursor: pointer;
  padding: 10px 8px 10px 6px;
  border-radius: 0 10px 10px 0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 3px 2px 14px rgba(0,0,0,0.3);
  transition: background 0.2s;
}
.gls-tab-trigger svg { color: #1a1000; }
.gls-tab-trigger:hover { background: #ffd700; }

.gls-tab-panel {
  position: absolute;
  left: 0;
  top: 0;
  width: 240px;
  background: #fff;
  border-radius: 0 14px 14px 0;
  box-shadow: 4px 0 24px rgba(0,0,0,0.25);
  padding: 1rem;
  transform: translateX(-110%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
  opacity: 0;
}
.gls-tab.open .gls-tab-panel {
  transform: translateX(40px);
  pointer-events: auto;
  opacity: 1;
}

.gls-panel-inner { display: flex; flex-direction: column; gap: 0.6rem; }
.gls-panel-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
}
.gls-panel-badge svg { stroke: #F5C400; flex-shrink: 0; }
.gls-tab-panel p {
  font-size: 0.82rem;
  color: #555;
  margin: 0;
  line-height: 1.45;
}
.gls-panel-link {
  display: inline-block;
  background: var(--primary);
  color: #fff !important;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
}
.gls-panel-link:hover { background: var(--accent); color: var(--primary) !important; }
.gls-panel-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #999;
  line-height: 1;
  padding: 4px;
}

/* ── Cookie Banner ── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--primary);
  color: var(--white);
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
#cookie-banner.show { transform: translateY(0); }
#cookie-banner p { margin: 0; font-size: 0.88rem; color: rgba(255,255,255,0.85); }
#cookie-banner a { color: var(--accent); }
.cookie-btns { display: flex; gap: 0.8rem; flex-shrink: 0; }
.cookie-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid;
  font-family: var(--font-body);
  transition: all var(--transition);
}
.cookie-accept { background: var(--accent); border-color: var(--accent); color: var(--primary); }
.cookie-accept:hover { background: var(--accent2); border-color: var(--accent2); }
.cookie-decline { background: transparent; border-color: rgba(255,255,255,0.4); color: var(--white); }
.cookie-decline:hover { border-color: var(--white); }

/* ── Footer ── */
footer {
  background: #111820;
  color: rgba(255,255,255,0.78);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

/* Footer contact list */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.70);
  line-height: 1.5;
}
.footer-contact-list a {
  color: rgba(255,255,255,0.70);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-list a:hover { color: var(--accent); }
.fc-icon { font-size: 0.9rem; flex-shrink: 0; margin-top: 1px; }

/* Footer hours */
.footer-hours {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}
.footer-brand p { font-size: 0.88rem; margin-top: 1rem; line-height: 1.8; }
.footer-logo { height: 50px; margin-bottom: 0.5rem; }

footer h4 {
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 1rem;
  margin-bottom: 1rem;
}
footer ul li { margin-bottom: 0.5rem; }
footer ul a { color: rgba(255,255,255,0.7); font-size: 0.88rem; }
footer ul a:hover { color: var(--accent); }

.footer-social { display: flex; gap: 0.8rem; margin-top: 1rem; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  font-size: 0.9rem;
}
.social-btn:hover { background: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; margin: 0; }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a { font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.footer-legal a:hover { color: var(--accent); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1e3058 100%);
  color: var(--white);
  padding: 8rem 1.5rem 4rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-hero p { color: rgba(255,255,255,0.75); }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* ── Legal Pages ── */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
}
.legal-content h2 { font-size: 1.4rem; margin-top: 2rem; margin-bottom: 0.5rem; }
.legal-content h3 { font-size: 1.1rem; margin-top: 1.5rem; margin-bottom: 0.4rem; }
.legal-content p, .legal-content li { font-size: 0.95rem; color: var(--text-muted); }
.legal-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }

/* ── Alert boxes ── */
.alert {
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}
.alert-info { background: #e3f0ff; border-left: 4px solid #2196f3; color: #0d47a1; }
.alert-success { background: #e8f5e9; border-left: 4px solid #4caf50; color: #1b5e20; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap img { height: 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .header-inner { height: 68px; }

  /* ── Mobile nav drawer ── */
  nav {
    display: block;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--primary);
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1),
                box-shadow 0.35s ease;
    box-shadow: none;
  }
  nav.open {
    max-height: 420px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.45);
  }
  nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0.6rem 1.4rem 1.2rem;
  }
  nav ul li {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transform: translateX(-12px);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  nav.open ul li {
    transform: translateX(0);
    opacity: 1;
  }
  nav.open ul li:nth-child(1) { transition-delay: 0.05s; }
  nav.open ul li:nth-child(2) { transition-delay: 0.10s; }
  nav.open ul li:nth-child(3) { transition-delay: 0.15s; }
  nav.open ul li:nth-child(4) { transition-delay: 0.20s; }
  nav a {
    display: block;
    padding: 1rem 0;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.9);
  }
  nav a:hover { color: var(--accent); }
  .nav-cta {
    margin-top: 0.6rem;
    display: inline-block;
    text-align: center;
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 8px;
  }
  .nav-toggle { display: flex; }

  /* ── Hero pill on mobile ── */
  .hero-pill {
    font-size: 0.68rem;
    letter-spacing: 1px;
    padding: 0.4rem 1rem;
  }

  .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 2rem; }
}

@media (max-width: 480px) {
  .price-grid { grid-template-columns: 1fr; }
  #cookie-banner { flex-direction: column; }
}

/* ── Animations ── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Utility ── */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.divider {
  width: 60px; height: 3px;
  background: var(--accent);
  margin: 0.8rem auto 0;
  border-radius: 2px;
}
.divider-left { margin-left: 0; }

/* ── Hero mobile ── */
@media (max-width: 768px) {
  #hero { background-attachment: scroll; }
}

/* ── Section label ── */
.section-label {
  text-align: center;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

/* ── Trust Strip ── */
.trust-strip {
  background: var(--primary);
  border-top: 1px solid rgba(201,168,76,0.25);
  padding: 1rem 0;
}
.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.trust-item::before {
  content: '✓';
  color: var(--accent);
  font-weight: 800;
}

/* ── Image-backed Service Cards ── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.svc-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  height: 300px;
  background: var(--svc-bg, #0d1b2e) center/cover no-repeat;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.svc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,46,0.95) 0%, rgba(13,27,46,0.40) 55%, rgba(13,27,46,0.10) 100%);
  transition: background 0.3s ease;
}
.svc-card:hover .svc-overlay {
  background: linear-gradient(to top, rgba(13,27,46,0.97) 0%, rgba(13,27,46,0.65) 100%);
}
.svc-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  color: white;
  z-index: 1;
  transition: padding 0.3s ease;
}
.svc-icon-badge {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.5rem;
}
.svc-body h3 {
  color: white;
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.svc-body p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.8rem;
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.35s ease;
}
.svc-card:hover .svc-body p {
  max-height: 60px;
  opacity: 1;
}
.svc-cta {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.5px;
}
@media (max-width: 900px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card { height: 240px; }
}

/* ── Process Section ── */
.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 3rem;
}
.process-step { text-align: center; padding: 0 1rem; }
.process-connector {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2.8rem;
}
.process-connector::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--accent), rgba(201,168,76,0.3));
}
.process-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  color: var(--accent);
  opacity: 0.15;
  font-weight: 700;
  line-height: 1;
  margin-bottom: -1.5rem;
}
.process-circle {
  width: 64px; height: 64px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.2rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.process-step h3 { margin-bottom: 0.6rem; font-size: 1.1rem; }
.process-step p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
@media (max-width: 768px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-connector { display: none; }
  .process-step { padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
  .process-step:last-child { border-bottom: none; }
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem 1.8rem;
  box-shadow: 0 4px 30px rgba(13,27,46,0.08);
  border-top: 3px solid var(--accent);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(13,27,46,0.14); }
.t-quote {
  font-family: var(--font-head);
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.15;
  line-height: 0.8;
  margin-bottom: 0.5rem;
}
.t-stars { color: #f4c430; font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; }
.t-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.t-avatar {
  width: 40px; height: 40px;
  background: var(--primary);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ── CTA Strip ── */
.cta-strip {
  background: var(--primary);
  color: white;
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.cta-inner h2 { color: white; margin-bottom: 0.5rem; }
.cta-inner p  { color: rgba(255,255,255,0.65); margin: 0; font-size: 0.9rem; }
.cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 768px) {
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; }
}

/* ── Service card "more" label ── */
.service-more {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.5px;
  transition: gap var(--transition);
}
.service-card:hover .service-more { letter-spacing: 1px; }

/* ── Modal ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }

.modal-box {
  background: var(--white);
  border-radius: 12px;
  max-width: 760px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-img-wrap { overflow: hidden; border-radius: 12px 0 0 12px; }
.modal-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

.modal-body { padding: 2rem; }
.modal-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.modal-body h2 { font-size: 1.4rem; margin-bottom: 0.8rem; }
.modal-body p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 32px; height: 32px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  transition: background var(--transition);
}
.modal-close:hover { background: var(--accent); color: var(--primary); }

.modal-price-table { width: 100%; border-collapse: collapse; }
.modal-price-table tr { border-bottom: 1px solid var(--border); }
.modal-price-table td { padding: 0.5rem 0; font-size: 0.85rem; }
.modal-price-table td.modal-price-val { text-align: right; font-weight: 700; color: var(--accent); white-space: nowrap; padding-left: 0.8rem; }
.modal-subcat-head td {
  padding: 0.55rem 0 0.3rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--primary);
  background: linear-gradient(90deg, rgba(201,168,76,0.12), transparent 80%);
  border-bottom: 1px solid rgba(201,168,76,0.3) !important;
  border-top: 2px solid rgba(201,168,76,0.15);
}
.modal-subcat-head + tr td { border-top: none; }

@media (max-width: 600px) {
  .modal-box { grid-template-columns: 1fr; }
  .modal-img-wrap { height: 200px; border-radius: 12px 12px 0 0; }
  .modal-img-wrap img { border-radius: 12px 12px 0 0; }
}

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #eee;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,46,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  padding: 0.5rem;
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   ENHANCED ANIMATIONS — Scroll-triggered
   ══════════════════════════════════════════════ */

/* Left entrance */
.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }

/* Right entrance */
.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* Scale/zoom entrance */
.zoom-in {
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.zoom-in.visible { opacity: 1; transform: scale(1); }

/* Stagger delays */
.stagger-1 { transition-delay: 0.10s !important; }
.stagger-2 { transition-delay: 0.20s !important; }
.stagger-3 { transition-delay: 0.30s !important; }
.stagger-4 { transition-delay: 0.40s !important; }
.stagger-5 { transition-delay: 0.50s !important; }
.stagger-6 { transition-delay: 0.60s !important; }

/* ══════════════════════════════════════════════
   TAILORING SHOWCASE — Full-width parallax
   ══════════════════════════════════════════════ */
.tailor-showcase {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(to right, rgba(13,27,46,0.88) 0%, rgba(13,27,46,0.55) 55%, rgba(13,27,46,0.15) 100%),
    url('https://images.unsplash.com/photo-1556905055-8f358a7a47b2?w=1920&q=85') center/cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}
@media (max-width: 768px) {
  .tailor-showcase { background-attachment: scroll; min-height: 380px; }
}

.tailor-showcase-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 4rem 1.5rem;
}
.tailor-showcase-content .section-label { text-align: left; }
.tailor-showcase-content h2 { color: white; margin-bottom: 1rem; text-align: left; }
.tailor-showcase-content p  { color: rgba(255,255,255,0.80); text-align: left; max-width: 520px; margin-bottom: 2rem; }

.tailor-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.tailor-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 6px;
  padding: 0.5rem 1rem;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
}
.tailor-feature-icon {
  color: var(--accent);
  font-size: 1rem;
}

/* SVG tailoring icons in service cards */
.svc-svg-icon {
  width: 40px;
  height: 40px;
  display: block;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* ══════════════════════════════════════════════
   GLS PAKETSHOP SECTION
   ══════════════════════════════════════════════ */
.gls-section {
  background: linear-gradient(135deg, #f8f6f1 0%, #edeae3 100%);
  padding: 4.5rem 0;
  border-top: 4px solid #003087;
  border-bottom: 4px solid #003087;
  position: relative;
  overflow: hidden;
}
.gls-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 320px; height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(0,48,135,0.04) 100%);
  pointer-events: none;
}

.gls-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (max-width: 900px) {
  .gls-inner { grid-template-columns: 1fr; gap: 2rem; }
}

.gls-logo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}
.gls-logo-svg {
  width: 160px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0,48,135,0.2));
}
.gls-official-badge {
  background: #003087;
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
}

.gls-text-col h2 {
  color: #003087;
  margin-bottom: 0.6rem;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
}
.gls-text-col > p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
  line-height: 1.7;
}

.gls-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.8rem;
}
@media (max-width: 600px) {
  .gls-features-grid { grid-template-columns: 1fr; }
}
.gls-feat {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: white;
  border-radius: 8px;
  padding: 0.9rem 1rem;
  box-shadow: 0 2px 8px rgba(0,48,135,0.07);
  border-left: 3px solid #003087;
}
.gls-feat-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.gls-feat strong { display: block; font-size: 0.88rem; color: #003087; margin-bottom: 0.2rem; }
.gls-feat span   { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

.gls-hours {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: #003087;
  border-radius: 8px;
  padding: 1rem 1.5rem;
}
.gls-hours-item { color: rgba(255,255,255,0.9); font-size: 0.85rem; }
.gls-hours-item strong { display: block; color: #FFD700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.2rem; }

/* ══════════════════════════════════════════════
   GLS FLOATING BADGE (sticky left)
   ══════════════════════════════════════════════ */
#gls-badge {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 990;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #003087;
  color: white;
  padding: 0.8rem 0.6rem;
  border-radius: 0 8px 8px 0;
  box-shadow: 3px 3px 16px rgba(0,48,135,0.35);
  text-decoration: none;
  transition: transform 0.3s ease, padding 0.3s ease;
  cursor: pointer;
  gap: 0.4rem;
  max-width: 52px;
}
#gls-badge:hover {
  transform: translateY(-50%) translateX(4px);
  padding-right: 0.9rem;
  max-width: none;
  background: #002570;
}
#gls-badge .gls-badge-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}
#gls-badge .gls-badge-icon {
  font-size: 1.3rem;
}
@media (max-width: 768px) {
  #gls-badge { display: none; }
}

/* ══════════════════════════════════════════════
   HERO — Left-aligned (updated)
   ══════════════════════════════════════════════ */
#hero {
  text-align: left;
  padding: 8rem 1.5rem 5rem;
}
#hero .hero-content {
  margin: 0;
  max-width: 680px;
}
#hero .hero-btns { justify-content: flex-start; }
#hero .hero-stats { justify-content: flex-start; }
.hero-text { margin: 0 0 2.5rem; }

@media (max-width: 768px) {
  #hero { text-align: center; }
  #hero .hero-content { margin: 0 auto; }
  #hero .hero-btns  { justify-content: center; }
  #hero .hero-stats { justify-content: center; }
  .hero-text { margin: 0 auto 2.5rem; }
}

/* ══════════════════════════════════════════════
   HERO — decorative accent line
   ══════════════════════════════════════════════ */
.hero-accent-line {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 1.5rem;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .hero-accent-line { margin-left: auto; margin-right: auto; }
}

/* ══════════════════════════════════════════════
   MOBILE FIXES — Overflow, Scroll, Layout
   ══════════════════════════════════════════════ */

/* 1. Prevent horizontal overflow (white space on sides) */
html {
  overflow-x: clip;
}
body {
  overflow-x: clip;
  /* Prevent horizontal rubber-band on iOS */
  overscroll-behavior-x: none;
}

/* 2. Flex/grid items: prevent overflow by removing default min-width */
.container, nav ul, .trust-items, .hero-btns, .hero-stats,
.svc-grid, .process-grid, .gallery-grid, .testimonials-grid,
.price-grid, .about-grid, .footer-grid, .cta-inner, .gls-inner,
.gls-features-grid, .tailor-features {
  min-width: 0;
}

/* 3. Media elements */
img, video, iframe {
  max-width: 100%;
}

/* 4. Container tighter padding on small phones */
@media (max-width: 400px) {
  .container { padding: 0 0.9rem; }
}

/* 5. Hero section on mobile */
@media (max-width: 768px) {
  #hero {
    padding: 7rem 1rem 4rem;
  }
  .hero-content {
    max-width: 100%;
    width: 100%;
  }
  .hero-btns { flex-wrap: wrap; gap: 0.8rem; }
  .hero-stats { gap: 1.5rem; }
}

/* 6. Hero pill badge — desktop/mobile switching handled near hero CSS */
.hero-pill-wrap {
  display: block;
  margin-bottom: 1.4rem;
  position: relative;
  z-index: 10;
}
.hero-pill {
  display: inline-block;
  background: #c9a84c;
  color: #0d1b2e;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.45rem 1.2rem;
  border-radius: 20px;
  white-space: normal;
  word-break: break-word;
  max-width: calc(100vw - 3rem);
  line-height: 1.6;
  text-align: center;
  box-shadow: 0 2px 14px rgba(201,168,76,0.35);
}

/* 7. Trust strip: wrap nicely on small screens */
@media (max-width: 600px) {
  .trust-items {
    gap: 1.2rem;
    padding: 0 0.5rem;
  }
  .trust-item { font-size: 0.75rem; }
}

/* 8. Tailor-showcase: no fixed parallax on mobile (causes iOS jitter) */
@media (max-width: 768px) {
  .tailor-showcase {
    background-attachment: scroll !important;
  }
}

/* 9. GLS badge on mobile — show as small horizontal pill at bottom-right */
@media (max-width: 768px) {
  #gls-badge {
    display: flex !important;   /* override desktop display:none */
    position: fixed;
    left: auto;
    right: 1rem;
    bottom: 5.5rem;             /* sits above WhatsApp button */
    top: auto;
    transform: none;
    flex-direction: row;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    border-radius: 20px;
    box-shadow: 0 3px 12px rgba(0,48,135,0.35);
    max-width: none;
    width: auto;
  }
  #gls-badge:hover {
    transform: translateY(-2px);
    padding-right: 0.9rem;
    max-width: none;
  }
  #gls-badge .gls-badge-label {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
  }
  #gls-badge .gls-badge-icon svg {
    width: 22px;
    height: 22px;
  }
}

/* 10. Logo on mobile */
@media (max-width: 480px) {
  .logo img {
    max-width: 160px !important;
    height: 44px;
  }
}

/* ── Mobile Info Strip (header right side, mobile only) ── */
.mobile-info-strip { display: none; }

@media (max-width: 768px) {
  .mobile-info-strip {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    margin-left: auto;
    padding-right: 2px;
  }
  .mis-phone {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.3px;
    white-space: nowrap;
    line-height: 1.2;
  }
  .mis-phone svg { stroke: var(--accent); flex-shrink: 0; }
  .mis-hours {
    display: flex;
    align-items: center;
    gap: 3px;
    color: rgba(255,255,255,0.5);
    font-size: 0.6rem;
    white-space: nowrap;
    line-height: 1.2;
  }
  .mis-hours svg { stroke: rgba(255,255,255,0.35); flex-shrink: 0; }
}

/* 11. Svc grid — one column on small phones */
@media (max-width: 440px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card { height: 220px; }
}

/* 12. GLS section inner layout */
@media (max-width: 600px) {
  .gls-inner { gap: 1.5rem; }
  .gls-hours { flex-direction: column; gap: 0.6rem; }
  .gls-features-grid { grid-template-columns: 1fr; }
}

/* 13. About grid: stack on mobile (already done at 1024px but reinforce padding) */
@media (max-width: 768px) {
  .about-grid { gap: 2rem; }
  .about-img-wrap img { height: 260px; }
}

/* 14. Testimonials — already 1-col on mobile but ensure no overflow */
@media (max-width: 600px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 1.5rem 1.2rem; }
}

/* 15. CTA strip stacks on mobile */
@media (max-width: 600px) {
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; justify-content: center; }
}

/* 16. Process section on mobile */
@media (max-width: 600px) {
  .process-step { padding: 1.2rem 0.5rem; }
}

/* 17. Price grid on mobile */
@media (max-width: 600px) {
  .price-grid { grid-template-columns: 1fr; }
}

/* 18. Gallery grid on mobile */
@media (max-width: 400px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* 19. Tailor showcase content padding on mobile */
@media (max-width: 600px) {
  .tailor-showcase-content {
    padding: 3rem 1rem;
  }
  .tailor-features {
    gap: 0.7rem;
  }
  .tailor-feature {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

/* 20. Fix stat numbers wrapping awkwardly */
@media (max-width: 400px) {
  .stat-num { font-size: 1.6rem; }
  .stat-label { font-size: 0.7rem; }
}

/* ══════════════════════════════════════════════
   FOOTER LOGO — keep gold colours (no invert filter)
   ══════════════════════════════════════════════ */
.footer-logo {
  filter: none !important;
  opacity: 0.92;
}

/* ══════════════════════════════════════════════
   REINIGUNG ANNAHME — highlight section
   ══════════════════════════════════════════════ */
.reinigung-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #1a2f4e 100%);
  border-left: 5px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.8rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.reinigung-icon {
  font-size: 2.8rem;
  flex-shrink: 0;
}
.reinigung-text { flex: 1; min-width: 200px; }
.reinigung-text h3 { color: var(--accent); margin-bottom: 0.4rem; }
.reinigung-text p  { color: rgba(255,255,255,0.80); font-size: 0.9rem; margin: 0; }
@media (max-width: 600px) {
  .reinigung-banner { flex-direction: column; text-align: center; gap: 1rem; }
}

/* ══════════════════════════════════════════════
   COMPACT / TIDY LAYOUT IMPROVEMENTS
   ══════════════════════════════════════════════ */

/* Tighter section spacing */
.section { padding: 4rem 0; }

/* Reduce hero min-height slightly so page feels less stretched */
#hero { min-height: 88vh; }

/* Svc-grid: max 3 cols on desktop, slightly smaller cards */
.svc-card { height: 280px; }

/* Process numbers less dominant */
.process-num { font-size: 2.8rem; }

/* About section image tighter */
@media (min-width: 1025px) {
  .about-img-wrap img { height: 400px; }
}

/* Footer tighter */
footer { padding: 3rem 0 1.5rem; }

/* Testimonials slightly compact */
.testimonial-card { padding: 1.6rem 1.5rem; }

/* GLS section compact */
.gls-section { padding: 3.5rem 0; }

/* Trust strip items — lighter weight */
.trust-item { font-size: 0.80rem; }

/* Service grid 4-col on very wide screens */
@media (min-width: 1200px) {
  .svc-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ══════════════════════════════════════════════
   HERO STATS — glass morphism + highlight
   ══════════════════════════════════════════════ */
.hero-stats {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  display: inline-flex;
  gap: 2rem;
  margin-top: 2rem;
}
.stat-highlight .stat-num { color: var(--accent); }
.stat-highlight .stat-label { color: var(--accent); opacity: 0.9; }
.stat-highlight {
  position: relative;
}
.stat-highlight::before {
  content: '';
  position: absolute;
  inset: -4px -8px;
  border-radius: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
}

/* Trust strip — accent item */
.trust-item-accent {
  color: var(--accent) !important;
  font-weight: 700;
}

/* Gallery tag overlay */
.gallery-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  margin-bottom: 0.4rem;
  letter-spacing: 0.5px;
}
.gallery-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}
.gallery-item-reinigung .gallery-overlay {
  background: rgba(201,168,76,0.15);
}

/* ══════════════════════════════════════════════
   REINIGUNG ANNAHME SPOTLIGHT SECTION
   ══════════════════════════════════════════════ */
.reinigung-spotlight {
  background: linear-gradient(135deg, #f8f6f0 0%, #fefdf9 100%);
  border-top: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
}
.reinigung-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.reinigung-heading {
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}
.reinigung-price-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}
.r-chip {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 20px;
  padding: 0.35rem 0.9rem;
  font-size: 0.82rem;
  color: var(--text);
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.r-chip strong { color: var(--primary); }

/* Image mosaic */
.reinigung-img-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto;
  gap: 0.8rem;
  border-radius: 16px;
  overflow: hidden;
}
.r-img-main { grid-row: 1 / 3; }
.r-img-main img,
.r-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  transition: transform 0.4s ease;
}
.r-img-main img { height: 380px; }
.r-img-small { display: flex; flex-direction: column; gap: 0.8rem; }
.r-img-small img { height: 185px; }
.reinigung-img-mosaic:hover img { transform: scale(1.02); }

/* ── Brautmode Spotlight ── */
.braut-spotlight {
  background: linear-gradient(135deg, #fff5f8 0%, #fef0f5 100%);
  border-top: 3px solid #b5507a;
  border-bottom: 3px solid #b5507a;
}
.braut-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.braut-heading {
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}
.braut-img-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto;
  gap: 0.8rem;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.b-img-main { grid-row: 1 / 3; }
.b-img-main img,
.b-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  transition: transform 0.4s ease;
}
.b-img-main img { height: 380px; }
.b-img-small { display: flex; flex-direction: column; gap: 0.8rem; }
.b-img-small img { height: 185px; }
.braut-img-mosaic:hover img { transform: scale(1.02); }
.braut-ribbon {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(181,80,122,0.9);
  color: #fff;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}
.braut-img-col { position: relative; }
.braut-checklist {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
}
.braut-checklist li {
  font-size: 0.9rem;
  color: var(--text);
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(181,80,122,0.15);
}
.braut-price-box {
  background: rgba(181,80,122,0.08);
  border-left: 3px solid #b5507a;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
  color: var(--text);
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .braut-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .braut-img-col { order: -1; }
  .braut-heading { font-size: 2rem; }
  .braut-checklist { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .braut-img-mosaic {
    grid-template-columns: 1fr;
  }
  .b-img-main { grid-row: auto; }
  .b-img-main img { height: 220px; }
  .b-img-small { flex-direction: row; }
  .b-img-small img { height: 120px; }
}

@media (max-width: 900px) {
  .reinigung-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .reinigung-heading { font-size: 2rem; }
}
@media (max-width: 600px) {
  .reinigung-img-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .r-img-main { grid-row: auto; }
  .r-img-main img { height: 220px; }
  .r-img-small { flex-direction: row; }
  .r-img-small img { height: 120px; }
  .reinigung-heading { font-size: 1.7rem; }
  .braut-heading { font-size: 1.7rem; }
  .hero-stats {
    padding: 0.8rem 1rem;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
}
