/* ==========================================================================
   ATELIER H. ACABAY – Stylesheet
   Autor: Claude Code
   Farbschema: Navy (#1C2B4A) + Gold (#C9A84C) + Cream (#FAF8F3)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
  /* Colours */
  --gold:         #C9A84C;
  --gold-light:   #E8D080;
  --gold-dark:    #A07830;
  --navy:         #1C2B4A;
  --navy-dark:    #0E1B30;
  --navy-mid:     #253656;
  --cream:        #FAF8F3;
  --white:        #FFFFFF;
  --dark:         #1A1A1A;
  --gray-dark:    #4A4A4A;
  --gray:         #7A7A7A;
  --gray-light:   #E8E6E0;
  --success:      #4caf50;

  /* Typography */
  --font-serif:   'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-elegant: 'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Lato', Arial, Helvetica, sans-serif;

  /* Spacing */
  --section-py:   100px;
  --container:    1200px;
  --gap:          2rem;

  /* Shadows */
  --shadow-sm:    0 2px 12px rgba(28,43,74,.08);
  --shadow-md:    0 8px 32px rgba(28,43,74,.14);
  --shadow-lg:    0 20px 60px rgba(28,43,74,.20);

  /* Borders */
  --radius:       8px;
  --radius-lg:    16px;

  /* Transitions */
  --ease:         cubic-bezier(.4,0,.2,1);
  --speed:        .3s;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

/* Kein smooth scroll auf Mobil – direktes Springen ist professioneller */
@media (max-width: 768px) {
  html {
    scroll-behavior: auto;
  }
}

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

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--speed) var(--ease);
}

ul, ol {
  list-style: none;
}

address {
  font-style: normal;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */
/* Scroll-Offset für sticky Header – native CSS Lösung */
section[id],
div[id] {
  scroll-margin-top: 85px;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.3rem; }

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

p { line-height: 1.75; }

/* --------------------------------------------------------------------------
   4. Layout Utilities
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.section {
  padding-block: var(--section-py);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 4rem;
}

.section-title {
  margin-block: .5rem 1rem;
}

.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}

.gold-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-inline: auto;
  margin-top: 1rem;
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background var(--speed) var(--ease),
              color       var(--speed) var(--ease),
              transform   var(--speed) var(--ease),
              box-shadow  var(--speed) var(--ease);
  cursor: pointer;
}

.btn:hover  { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0);   }

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-gold:hover { background: var(--gold-light); }

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

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

.btn-block {
  width: 100%;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   6. Header & Navigation
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--speed) var(--ease),
              box-shadow  var(--speed) var(--ease),
              backdrop-filter var(--speed) var(--ease);
}

.header.scrolled {
  background: rgba(14, 27, 48, .96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 28px;
  height: 58px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-atelier {
  font-family: var(--font-elegant);
  font-size: .7rem;
  font-style: italic;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .04em;
}

/* Nav menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-link {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  padding: .5rem .9rem;
  border-radius: 2px;
  transition: color var(--speed) var(--ease);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  inset-block-end: 2px;
  inset-inline: .9rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--speed) var(--ease);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.nav-cta {
  background: var(--gold);
  color: var(--navy-dark);
  padding: .5rem 1.25rem;
  margin-left: .5rem;
}

.nav-link.nav-cta::after { display: none; }

.nav-link.nav-cta:hover {
  background: var(--gold-light);
  color: var(--navy-dark);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 4px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--speed) var(--ease),
              opacity   var(--speed) var(--ease);
  transform-origin: center;
}

.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background-color: var(--navy-dark);
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14,27,48,.95) 0%,
    rgba(14,27,48,.92) 45%,
    rgba(28,43,74,.70) 100%
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding-block: 140px 80px;
}

.hero-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-title em {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}

.hero-rating .stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: .05em;
}

/* Hero visual (right side) */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-placeholder-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-placeholder {
  aspect-ratio: 3/4;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-placeholder svg {
  width: 60%;
  opacity: .6;
}

.hero-photo {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  display: block;
}

/* Decorative gold frame accent – hidden when real image is used */
.hero-placeholder-frame {
  display: none;
}

/* --------------------------------------------------------------------------
   8. Stats Bar
   -------------------------------------------------------------------------- */
.stats-bar {
  background: var(--navy);
  padding-block: 1.75rem;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  padding-inline: 2rem;
  text-align: center;
}

.stat-val {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-symbol {
  font-size: .78em;
  font-weight: 600;
  vertical-align: 0.05em;
}

.stat-lbl {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

.stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   9. Services Section
   -------------------------------------------------------------------------- */
.services-section {
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  position: relative;
  transition: transform var(--speed) var(--ease),
              box-shadow var(--speed) var(--ease),
              border-color var(--speed) var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,.3);
}

.service-card--featured {
  background: var(--navy);
}

.service-card--featured h3,
.service-card--featured .service-list li {
  color: var(--white);
}

.service-card--featured .service-list li::before {
  color: var(--gold);
}

.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 20px;
}

.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1.25rem;
}

.service-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.service-icon-shirt {
  transform: scale(0.88);
  transform-origin: center;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.service-list li {
  font-size: .9rem;
  color: var(--gray-dark);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}

.service-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   10. About Section
   -------------------------------------------------------------------------- */
.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Image / placeholder */
.about-visual {
  position: relative;
}

.about-placeholder {
  aspect-ratio: 4/5;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  color: var(--gray);
  font-size: .9rem;
}

.about-placeholder-inner small {
  font-size: .75rem;
  color: var(--gray);
}

.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 96px;
  height: 96px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .1rem;
  box-shadow: var(--shadow-md);
  color: var(--navy-dark);
  text-align: center;
  padding: .5rem;
  overflow: hidden;
}

.about-badge svg {
  flex-shrink: 0;
}

.about-badge strong {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  line-height: 1;
  white-space: nowrap;
}

.about-badge small {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Content */
.about-content .section-title {
  text-align: left;
  margin-bottom: 1.25rem;
}

.about-content .gold-rule {
  margin-left: 0;
  margin-bottom: 1.75rem;
}

.about-text {
  color: var(--gray-dark);
  margin-bottom: 1.25rem;
  font-size: .975rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-block: 2rem;
}

.about-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-bullet {
  color: var(--gold);
  font-size: .9rem;
  flex-shrink: 0;
  margin-top: .2rem;
}

.about-feature strong {
  display: block;
  font-size: .95rem;
  color: var(--navy);
  margin-bottom: .2rem;
}

.about-feature p {
  font-size: .875rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   11. Gallery Section
   -------------------------------------------------------------------------- */
.gallery-section {
  background: var(--navy-dark);
  padding-block: var(--section-py);
}

.gallery-section .section-title,
.gallery-section .eyebrow {
  color: var(--white);
}

.gallery-section .eyebrow {
  color: var(--gold);
}

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

.gal-item {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.gal-item--tall {
  grid-row: span 2;
}

.gal-item--wide {
  grid-column: span 2;
}

.gal-placeholder {
  width: 100%;
  height: 100%;
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--speed) var(--ease);
}

.gal-placeholder:hover {
  background: var(--navy);
}

.gal-placeholder span {
  font-family: var(--font-elegant);
  font-size: .85rem;
  font-style: italic;
  color: rgba(201,168,76,.4);
  letter-spacing: .1em;
}

.gal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform .5s var(--ease);
}

.gal-item:hover .gal-img {
  transform: scale(1.04);
}

/* --------------------------------------------------------------------------
   11b. Lightbox
   -------------------------------------------------------------------------- */
.gal-item {
  cursor: pointer;
}

.gal-item img {
  transition: transform .4s var(--ease), filter .4s var(--ease);
}

.gal-item:hover img {
  transform: scale(1.04);
  filter: brightness(1.1);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox[hidden] { display: none !important; }

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 28, .95);
  cursor: pointer;
}

.lightbox-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
  gap: 1rem;
}

.lightbox-img {
  max-width: 88vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,.7);
  animation: lbFadeIn .25s var(--ease);
}

@keyframes lbFadeIn {
  from { opacity: 0; transform: scale(.96); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox-caption {
  color: rgba(255,255,255,.7);
  font-family: var(--font-elegant);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: .05em;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  color: var(--white);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--speed) var(--ease);
  cursor: pointer;
}

.lightbox-close:hover { background: var(--gold); color: var(--navy-dark); }

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--speed) var(--ease);
  cursor: pointer;
  z-index: 2;
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-prev:hover,
.lightbox-next:hover { background: var(--gold); color: var(--navy-dark); }

/* --------------------------------------------------------------------------
   12. Reviews Section
   -------------------------------------------------------------------------- */
.reviews-section {
  background: var(--cream);
}

.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.reviews-score {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.reviews-stars {
  color: var(--gold);
  font-size: 1.4rem;
  letter-spacing: .1em;
  margin-bottom: .25rem;
}

.reviews-summary p {
  font-size: .85rem;
  color: var(--gray);
  margin: 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}

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

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: .1em;
}

.review-card p {
  font-family: var(--font-elegant);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gray-dark);
  line-height: 1.7;
  flex: 1;
}

.review-card footer {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}

.review-card cite {
  display: block;
  font-style: normal;
  font-size: .875rem;
  font-weight: 700;
  color: var(--navy);
}

.review-card span {
  font-size: .75rem;
  color: var(--gray);
}

/* --------------------------------------------------------------------------
   13. Contact Section
   -------------------------------------------------------------------------- */
.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-light);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--cream);
  border: 1px solid var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

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

.contact-item strong {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .35rem;
}

.contact-item p,
.contact-item a {
  font-size: .95rem;
  color: var(--gray-dark);
  line-height: 1.65;
}

.contact-item a:hover { color: var(--gold); }

/* Opening hours table */
.hours {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.hours-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  font-size: .9rem;
  color: var(--gray-dark);
}

.hours-row dt {
  font-weight: 400;
}

.hours-row .closed {
  color: var(--gray);
  font-style: italic;
}

/* Map */
.contact-map {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-light);
}

.contact-map iframe {
  display: block;
  border: 0;
}

.map-link {
  display: block;
  text-align: center;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--cream);
  padding: .75rem;
  border-top: 1px solid var(--gray-light);
  transition: color var(--speed) var(--ease),
              background var(--speed) var(--ease);
}

.map-link:hover {
  color: var(--gold);
  background: var(--white);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--gray-light);
}

.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: .5rem;
}

.form-note {
  font-size: .875rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

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

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

label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-dark);
}

.req { color: var(--gold); }

input,
select,
textarea {
  width: 100%;
  padding: .75rem 1rem;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--dark);
  outline: none;
  transition: border-color var(--speed) var(--ease),
              box-shadow   var(--speed) var(--ease);
}

input::placeholder,
textarea::placeholder { color: var(--gray); }

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}

input.error,
textarea.error {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192,57,43,.1);
}

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

select { cursor: pointer; }

/* Checkbox */
.form-check-group {
  margin-bottom: 1.25rem;
}

.check-label {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  font-size: .85rem;
  font-weight: 400;
  color: var(--gray-dark);
  line-height: 1.6;
}

.check-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--gold);
  margin-top: .15rem;
  cursor: pointer;
  border-radius: 3px;
}

.check-label a {
  color: var(--gold);
  text-decoration: underline;
  font-weight: 700;
}

.check-label a:hover { color: var(--gold-dark); }

.form-success {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(76,175,80,.1);
  border: 1px solid rgba(76,175,80,.3);
  border-radius: var(--radius);
  color: #2e7d32;
  font-size: .9rem;
  font-weight: 700;
}

/* hidden-Attribut darf nicht von display:flex überschrieben werden */
.form-success[hidden] {
  display: none !important;
}

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.65);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-block: 4rem;
}

.footer-brand .logo {
  margin-bottom: 1.5rem;
}

.footer-brand .logo-name {
  color: var(--white);
}

.footer-claim {
  font-size: .875rem;
  line-height: 1.8;
  color: rgba(255,255,255,.45);
}

.footer-nav h4,
.footer-contact h4 {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.footer-nav a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: color var(--speed) var(--ease);
}

.footer-nav a:hover { color: var(--gold); }

.footer-contact p {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  margin-bottom: .65rem;
  line-height: 1.65;
}

.footer-contact a:hover { color: var(--gold); }

.footer-hours {
  color: rgba(255,255,255,.4) !important;
  font-size: .82rem !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-block: 1.5rem;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}

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

.footer-legal a {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
  transition: color var(--speed) var(--ease);
}

.footer-legal a:hover { color: var(--gold); }

/* --------------------------------------------------------------------------
   15. Back to Top
   -------------------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 46px;
  height: 46px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--speed) var(--ease),
              transform var(--speed) var(--ease),
              background var(--speed) var(--ease);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-light);
}

/* --------------------------------------------------------------------------
   16. Scroll Reveal Animations
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s var(--ease),
              transform .65s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay for grid children */
.services-grid  .service-card.is-visible:nth-child(2),
.reviews-grid   .review-card.is-visible:nth-child(2),
.gallery-grid   .gal-item.is-visible:nth-child(2) { transition-delay: .1s; }

.services-grid  .service-card.is-visible:nth-child(3),
.reviews-grid   .review-card.is-visible:nth-child(3),
.gallery-grid   .gal-item.is-visible:nth-child(3) { transition-delay: .2s; }

.services-grid  .service-card.is-visible:nth-child(4) { transition-delay: .3s; }
.services-grid  .service-card.is-visible:nth-child(5) { transition-delay: .4s; }
.services-grid  .service-card.is-visible:nth-child(6) { transition-delay: .5s; }

/* --------------------------------------------------------------------------
   17. Responsive Styles
   -------------------------------------------------------------------------- */

/* Tablet: max 1024px */
@media (max-width: 1024px) {
  :root { --section-py: 80px; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-title { text-align: center; }

  .hero-subtitle,
  .hero-actions,
  .hero-rating {
    justify-content: center;
  }

  /* Hero Bild bleibt sichtbar, wandert unter den Text */
  .hero-visual {
    display: flex;
    justify-content: center;
    max-width: 320px;
    margin-inline: auto;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-visual {
    max-width: 420px;
    margin-inline: auto;
  }

  .about-content .section-title { text-align: center; }
  .about-content .gold-rule { margin-inline: auto; }
  .about-content .btn { display: block; text-align: center; }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }

  .gal-item--tall  { grid-row: span 1; }
  .gal-item--wide  { grid-column: span 2; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

/* Mobile: max 768px */
@media (max-width: 768px) {
  :root { --section-py: 60px; }

  /* Mobile nav */
  .hamburger { display: flex; }

  .nav-menu {
    position: fixed;
    inset-block: 0;
    inset-inline-end: 0;
    width: min(300px, 85vw);
    background: var(--navy-dark);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: .25rem;
    padding: 100px 1.5rem 2rem;
    transform: translateX(100%);
    transition: transform var(--speed) var(--ease);
    box-shadow: -8px 0 32px rgba(0,0,0,.4);
    z-index: 1050;
    overflow-y: auto;
  }

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

  /* Dunkles Overlay hinter dem Menü */
  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--speed) var(--ease);
  }

  .nav-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    font-size: .9rem;
    padding: .75rem 1rem;
    width: 100%;
    border-radius: var(--radius);
  }

  .nav-link.nav-cta {
    margin-left: 0;
    margin-top: 1rem;
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  /* Stats – 2x2 Grid, sauber ausgerichtet */
  .stat-sep { display: none; }

  .stats-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
  }

  .stat {
    padding: 1.25rem 1rem;
    border: 1px solid rgba(255,255,255,.08);
  }

  .stat-val { font-size: 1.5rem; }
  .stat-lbl { font-size: .65rem; }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Reviews */
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gal-item--wide,
  .gal-item--tall { grid-column: span 1; grid-row: span 1; }

  .gal-placeholder { aspect-ratio: 1; height: auto; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand { grid-column: span 1; }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  /* About badge – Mobil */
  .about-badge {
    bottom: .75rem;
    right: .75rem;
    width: 84px;
    height: 84px;
  }

  .about-badge strong { font-size: 1.1rem; }
  .about-badge small  { font-size: .55rem; letter-spacing: .05em; }

  /* Hero */
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

/* Small mobile: max 480px */
@media (max-width: 480px) {
  .contact-form-wrap {
    padding: 1.5rem 1.25rem;
  }

  .about-badge { display: none; }
}
