/* ==========================================================
   The Laines Ceremony – Haupt-Stylesheet
   ========================================================== */

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

:root {
  --navy:       #1a2744;
  --navy-deep:  #0f1a2e;
  --navy-mid:   #223060;
  --gold:       #c9a227;
  --gold-light: #e8c84a;
  --gold-pale:  #f5e099;
  --gold-dark:  #8b6914;
  --gold-dim:   #a07c1a;
  --cream:      #faf7f0;
  --cream-warm: #f5efe3;
  --cream-text: #e8dfc8;
  --white:      #ffffff;
  --text-dark:  #1a2744;
  --text-mid:   #3d4f6b;
  --text-light: #6b7fa0;
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-caps:    'Cormorant SC', Georgia, serif;
  --ff-body:    'Jost', system-ui, sans-serif;
  --easing:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Seiten-Grundlagen – nur innerhalb des Laines-Wrappers */
.laines-page {
  font-family: var(--ff-body);
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* WordPress-eigene Body-Klassen überschreiben */
body.page-template-laines {
  background: var(--cream);
}

/* ── UTILITIES ── */
.laines-page .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.laines-page .gold-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin: 1.25rem 0;
}

.laines-page .gold-line::before,
.laines-page .gold-line::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.laines-page .eyebrow {
  font-family: var(--ff-caps);
  font-size: .75rem;
  letter-spacing: .25em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 400;
}

.laines-page .section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
  font-style: italic;
}

.laines-page .section-title span {
  font-style: normal;
  font-weight: 500;
}

.laines-page .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s var(--easing), transform .8s var(--easing);
}

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

.laines-page .reveal-delay-1 { transition-delay: .15s; }
.laines-page .reveal-delay-2 { transition-delay: .3s; }
.laines-page .reveal-delay-3 { transition-delay: .45s; }
.laines-page .reveal-delay-4 { transition-delay: .6s; }

/* ── NAVIGATION ── */
.laines-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background .4s, padding .4s, box-shadow .4s;
}

.laines-nav.scrolled {
  background: rgba(26, 39, 68, .97);
  padding: .6rem 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, .25);
}

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

.laines-nav .nav-logo {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: .02em;
  text-decoration: none;
  font-weight: 500;
}

.laines-nav .nav-logo span {
  font-style: normal;
  font-family: var(--ff-caps);
  font-size: .7rem;
  letter-spacing: .2em;
  display: block;
  color: var(--gold);
  margin-top: -.1rem;
}

.laines-nav .nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.laines-nav .nav-links li { flex-shrink: 0; }

.laines-nav .nav-links a {
  font-family: var(--ff-caps);
  font-size: .7rem;
  letter-spacing: .2em;
  white-space: nowrap;
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  transition: color .25s;
}

.laines-nav .nav-links a:hover { color: var(--gold-light); }

.laines-nav .nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--ff-caps);
  font-size: .65rem;
  letter-spacing: .2em;
  padding: .5rem 1.25rem;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
}

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

.laines-nav .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .25rem;
  background: none;
  border: none;
}

.laines-nav .hamburger span {
  width: 24px;
  height: 1px;
  background: var(--gold-light);
  transition: all .3s;
  display: block;
}

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

/* Mobile Menu */
.laines-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.laines-mobile-menu.open { display: flex; }

.laines-mobile-menu a {
  font-family: var(--ff-display);
  font-size: 1.75rem;
  font-style: italic;
  color: var(--cream-text);
  text-decoration: none;
  transition: color .2s;
}

.laines-mobile-menu a:hover { color: var(--gold-light); }

/* ── HERO ── */
#laines-hero {
  min-height: 100vh;
  padding-top: clamp(110px, 14vh, 150px);
  padding-bottom: clamp(1.5rem, 4vh, 3rem);
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, #0d1829 0%, #1a2744 35%, #223060 65%, #1a2744 100%);
  z-index: 0;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: lainesFloatUp linear infinite;
}

@keyframes lainesFloatUp {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  20%  { opacity: .6; }
  80%  { opacity: .3; }
  100% { opacity: 0; transform: translateY(-80vh) scale(1.5); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(10, 14, 26, .7) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 1.5rem;
}

.hero-frame {
  border: 1px solid rgba(201, 162, 39, .3);
  padding: clamp(2rem, 5vw, 4rem) clamp(2rem, 6vw, 5rem);
  position: relative;
  display: inline-block;
  max-width: 700px;
  width: 100%;
}

.hero-frame::before,
.hero-frame::after,
.hero-frame .corner-tr,
.hero-frame .corner-bl {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--gold);
  border-style: solid;
}

.hero-frame::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.hero-frame::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
.hero-frame .corner-tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; display: none; }
.hero-frame .corner-bl { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; display: none; }

.hero-eyebrow {
  font-family: var(--ff-caps);
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero-eyebrow .eyebrow-big {
  display: inline-block;
  font-size: clamp(1.05rem, 4vw, 1.4rem);
  letter-spacing: .15em;
  margin-bottom: .5rem;
  white-space: nowrap;
}
.hero-eyebrow .eyebrow-region {
  display: inline-block;
  font-size: clamp(.5rem, 2.1vw, .68rem);
  letter-spacing: .08em;
  white-space: nowrap;
}
@media (max-width: 380px) {
  .hero-eyebrow .eyebrow-big    { white-space: normal; }
  .hero-eyebrow .eyebrow-region { white-space: normal; letter-spacing: .06em; }
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-style: italic;
  color: var(--white);
  font-weight: 400;
  line-height: 1;
  margin-bottom: .25rem;
}

.hero-title-sub {
  font-family: var(--ff-caps);
  font-size: clamp(.8rem, 2vw, 1.1rem);
  letter-spacing: .35em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.25rem 0;
}

.hero-divider::before {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 39, .6));
}

.hero-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 162, 39, .6), transparent);
}

.hero-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

.hero-claim {
  font-family: var(--ff-display);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-style: italic;
  color: var(--cream-text);
  font-weight: 300;
  margin-bottom: 2rem;
  letter-spacing: .02em;
}

.laines-page .btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--ff-caps);
  font-size: .7rem;
  letter-spacing: .2em;
  padding: .9rem 2.5rem;
  text-decoration: none;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.laines-page .btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  opacity: 0;
  transition: opacity .3s;
}

.laines-page .btn-primary:hover::after { opacity: .25; }

.laines-page .btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--cream-text);
  font-family: var(--ff-caps);
  font-size: .65rem;
  letter-spacing: .2em;
  padding: .75rem 2rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .3);
  transition: all .3s;
  margin-left: 1rem;
}

.laines-page .btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255, 255, 255, .4);
  font-family: var(--ff-caps);
  font-size: .6rem;
  letter-spacing: .2em;
  cursor: pointer;
  background: none;
  border: none;
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: lainesScrollPulse 2s ease-in-out infinite;
}

@keyframes lainesScrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(.7); }
  50%       { opacity: 1;  transform: scaleY(1); }
}

/* ── ÜBER MICH ── */
#laines-about {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--cream);
}

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

.about-image-wrap { position: relative; }

.about-image {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep));
  position: relative;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #1e2d50, #2a3f70);
}

.about-img-placeholder svg { width: 140px; opacity: .4; }

.about-frame-deco {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 80%;
  height: 80%;
  border: 1px solid rgba(201, 162, 39, .35);
  z-index: -1;
}

.about-frame-deco2 {
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 60px;
  height: 60px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.about-badge {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: var(--navy);
  border: 1px solid rgba(201, 162, 39, .4);
  padding: 1.25rem 1.75rem;
  text-align: center;
}

.about-badge .num {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  color: var(--gold);
  font-style: italic;
  line-height: 1;
}

.about-badge .label {
  font-family: var(--ff-caps);
  font-size: .6rem;
  letter-spacing: .2em;
  color: rgba(255, 255, 255, .6);
  margin-top: .25rem;
}

.about-text .eyebrow  { margin-bottom: 1rem; }
.about-text .section-title { margin-bottom: 1.5rem; }

.about-lead {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.about-body {
  font-size: .9375rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.about-langs {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.lang-tag {
  font-family: var(--ff-caps);
  font-size: .65rem;
  letter-spacing: .2em;
  color: var(--gold-dark);
  border: 1px solid var(--gold);
  padding: .4rem 1rem;
  background: rgba(201, 162, 39, .06);
}

/* ── STORY / TIMELINE ── */
#laines-story {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--navy);
}

#laines-story .eyebrow    { color: var(--gold-pale); }
#laines-story .section-title { color: var(--white); }
#laines-story .section-title em { color: var(--gold-light); font-style: italic; }

.story-intro {
  font-family: var(--ff-display);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-style: italic;
  color: rgba(255, 255, 255, .65);
  max-width: 640px;
  margin: 0 auto 4rem;
  text-align: center;
  line-height: 1.7;
  font-weight: 300;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201, 162, 39, .4) 10%, rgba(201, 162, 39, .4) 90%, transparent);
  transform: translateX(-50%);
}

.tl-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: 3.5rem;
  align-items: center;
}

.tl-item:nth-child(odd) .tl-content  { grid-column: 1; grid-row: 1; text-align: right; padding-right: 2.5rem; }
.tl-item:nth-child(odd) .tl-center   { grid-column: 2; grid-row: 1; }
.tl-item:nth-child(odd) .tl-empty    { grid-column: 3; grid-row: 1; }
.tl-item:nth-child(even) .tl-empty   { grid-column: 1; grid-row: 1; }
.tl-item:nth-child(even) .tl-center  { grid-column: 2; grid-row: 1; }
.tl-item:nth-child(even) .tl-content { grid-column: 3; grid-row: 1; text-align: left; padding-left: 2.5rem; }

.tl-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}

.tl-dot {
  width: 14px;
  height: 14px;
  background: var(--gold);
  border: 2px solid var(--navy);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, .3);
  flex-shrink: 0;
}

.tl-num {
  font-family: var(--ff-caps);
  font-size: .6rem;
  letter-spacing: .15em;
  color: var(--gold);
  opacity: .7;
}

.tl-content {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(201, 162, 39, .15);
  padding: 1.5rem;
  transition: background .3s, border-color .3s;
}

.tl-content:hover {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(201, 162, 39, .35);
}

.tl-content h3 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: .6rem;
  font-weight: 400;
}

.tl-content p {
  font-size: .875rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.75;
  font-weight: 300;
}

/* ── WHY / CARDS ── */
#laines-why {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--cream-warm);
}

.why-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}

.laines-card {
  background: var(--white);
  border: 1px solid rgba(201, 162, 39, .2);
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}

.laines-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  opacity: 0;
  transition: opacity .3s;
}

.laines-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(26, 39, 68, .1);
  border-color: rgba(201, 162, 39, .45);
}

.laines-card:hover::before { opacity: 1; }

.card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.card-icon svg { width: 100%; height: 100%; }

.laines-card h3 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--navy);
  margin-bottom: .75rem;
  font-weight: 400;
}

.laines-card p {
  font-size: .875rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ── GALLERY ── */
#laines-gallery {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--navy-deep);
}

#laines-gallery .section-title { color: var(--white); }

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

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

.g-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.g-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 39, 68, .35);
  transition: opacity .4s;
  opacity: 0;
  pointer-events: none;
}

.g-item:hover::after { opacity: 1; }

.g-item .g-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: opacity .4s;
}

.g-item:hover .g-overlay { opacity: 1; }

.g-overlay span {
  color: var(--gold);
  font-family: var(--ff-caps);
  font-size: .65rem;
  letter-spacing: .2em;
  border: 1px solid var(--gold);
  padding: .5rem 1.25rem;
  backdrop-filter: blur(4px);
}

.g-item:nth-child(1) { grid-column: 1/7;  grid-row: 1; }
.g-item:nth-child(2) { grid-column: 7/10; grid-row: 1; }
.g-item:nth-child(3) { grid-column: 10/13;grid-row: 1; }
.g-item:nth-child(4) { grid-column: 1/5;  grid-row: 2; }
.g-item:nth-child(5) { grid-column: 5/9;  grid-row: 2; }
.g-item:nth-child(6) { grid-column: 9/13; grid-row: 2; }

.g-placeholder {
  width: 100%;
  background: linear-gradient(135deg, #1e2d50, #2a3f70);
  display: flex;
  align-items: center;
  justify-content: center;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.g-item:nth-child(1) .g-placeholder { aspect-ratio: 16/10; }
.g-item:nth-child(2) .g-placeholder,
.g-item:nth-child(3) .g-placeholder { aspect-ratio: 3/4; }
.g-item:nth-child(4) .g-placeholder,
.g-item:nth-child(5) .g-placeholder,
.g-item:nth-child(6) .g-placeholder { aspect-ratio: 4/3; }

.g-placeholder svg { width: 50px; opacity: .25; }

.gallery-hint {
  text-align: center;
  margin-top: 2rem;
  font-size: .8rem;
  color: rgba(255, 255, 255, .3);
  font-family: var(--ff-caps);
  letter-spacing: .15em;
}

/* ── TESTIMONIALS ── */
#laines-testimonials {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--cream);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.slider-wrap {
  position: relative;
  overflow: hidden;
  max-width: 820px;
  margin: 0 auto;
}

.slider-track {
  display: flex;
  transition: transform .6s var(--easing);
}

.slide { min-width: 100%; padding: 0 .5rem; }

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(201, 162, 39, .2);
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--ff-display);
  font-size: 8rem;
  color: rgba(201, 162, 39, .12);
  position: absolute;
  top: -.5rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial-text {
  font-family: var(--ff-display);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-caps);
  font-size: .75rem;
  color: var(--gold);
  border: 1px solid rgba(201, 162, 39, .3);
  flex-shrink: 0;
}

.author-name {
  font-family: var(--ff-caps);
  font-size: .75rem;
  letter-spacing: .15em;
  color: var(--navy);
  font-weight: 500;
}

.author-event {
  font-size: .8rem;
  color: var(--text-light);
  margin-top: .2rem;
}

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

.slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.slider-btn {
  background: transparent;
  border: 1px solid rgba(201, 162, 39, .4);
  color: var(--gold);
  width: 44px;
  height: 44px;
  cursor: pointer;
  transition: all .25s;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.slider-dots { display: flex; gap: .5rem; }

.dot {
  width: 6px;
  height: 6px;
  background: rgba(201, 162, 39, .25);
  cursor: pointer;
  transition: all .3s;
  border-radius: 0;
}

.dot.active {
  background: var(--gold);
  width: 20px;
}

/* ── FAQ ── */
#laines-faq {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--navy);
}

#laines-faq .section-title { color: var(--white); }
#laines-faq .eyebrow       { color: var(--gold-pale); }

.faq-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item { border-bottom: 1px solid rgba(201, 162, 39, .2); overflow: hidden; }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  cursor: pointer;
  gap: 1rem;
}

.faq-q-text {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255, 255, 255, .9);
  font-weight: 400;
  line-height: 1.4;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(201, 162, 39, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform .3s, background .3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--navy);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--easing);
}

.faq-answer-inner {
  padding-bottom: 1.5rem;
  font-size: .9rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.85;
  font-weight: 300;
}

/* ── KONTAKT ── */
#laines-contact {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--cream-warm);
}

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

.contact-info .eyebrow       { margin-bottom: 1rem; }
.contact-info .section-title { margin-bottom: 1.5rem; }

.contact-lead {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 300;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.contact-item-icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg { width: 18px; height: 18px; color: var(--gold); }

.contact-item-label {
  font-family: var(--ff-caps);
  font-size: .65rem;
  letter-spacing: .2em;
  color: var(--gold-dark);
  margin-bottom: .2rem;
}

.contact-item-value {
  font-size: .9375rem;
  color: var(--text-dark);
  font-weight: 400;
}

.contact-item-value a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color .2s;
}

.contact-item-value a:hover { color: var(--navy-mid); }

/* Kontaktformular */
.form-wrap {
  background: var(--white);
  border: 1px solid rgba(201, 162, 39, .2);
  padding: clamp(2rem, 4vw, 3rem);
}

.form-title {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 1.75rem;
  font-weight: 400;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-family: var(--ff-caps);
  font-size: .65rem;
  letter-spacing: .18em;
  color: var(--gold-dark);
}

.form-field input,
.form-field select,
.form-field textarea {
  border: 1px solid rgba(201, 162, 39, .25);
  background: transparent;
  padding: .75rem 1rem;
  font-family: var(--ff-body);
  font-size: .9rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color .25s;
  width: 100%;
  resize: vertical;
  border-radius: 0;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--gold); }

.form-field textarea  { min-height: 110px; }
.form-field select    { -webkit-appearance: none; cursor: pointer; }

.form-submit { margin-top: 1.25rem; }

.form-note {
  font-size: .8rem;
  color: var(--text-light);
  margin-top: 1rem;
  line-height: 1.5;
}

/* ── FOOTER ── */
.laines-footer {
  background: var(--navy-deep);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(201, 162, 39, .15);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-text {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--gold-light);
  font-weight: 500;
}

.footer-brand .logo-sub {
  font-family: var(--ff-caps);
  font-size: .65rem;
  letter-spacing: .25em;
  color: var(--gold);
  margin-top: -.1rem;
  display: block;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: .85rem;
  color: rgba(255, 255, 255, .45);
  line-height: 1.75;
  font-weight: 300;
}

.footer-col h4 {
  font-family: var(--ff-caps);
  font-size: .7rem;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.footer-col ul a {
  font-size: .85rem;
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  transition: color .2s;
}

.footer-col ul a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: .78rem;
  color: rgba(255, 255, 255, .3);
  font-weight: 300;
}

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

.footer-legal a {
  font-size: .78rem;
  color: rgba(255, 255, 255, .3);
  text-decoration: none;
  transition: color .2s;
}

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

.footer-langs { display: flex; gap: .5rem; }

.footer-langs span {
  font-family: var(--ff-caps);
  font-size: .6rem;
  letter-spacing: .15em;
  color: rgba(255, 255, 255, .3);
  padding: .25rem .5rem;
  border: 1px solid rgba(255, 255, 255, .1);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap { order: -1; }
  .about-badge { left: 1rem; bottom: 1rem; }

  .timeline::before { left: 28px; }
  .tl-item { grid-template-columns: 56px 1fr; }
  .tl-item:nth-child(odd)  .tl-content,
  .tl-item:nth-child(even) .tl-content { grid-column: 2; grid-row: 1; text-align: left !important; padding-left: 1.5rem !important; padding-right: 0 !important; }
  .tl-item:nth-child(odd)  .tl-center,
  .tl-item:nth-child(even) .tl-center  { grid-column: 1; grid-row: 1; }
  .tl-item:nth-child(odd)  .tl-empty,
  .tl-item:nth-child(even) .tl-empty   { display: none; }

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

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }

  .gallery-grid { grid-template-columns: repeat(6, 1fr); }
  .g-item:nth-child(1) { grid-column: 1/7; grid-row: 1; }
  .g-item:nth-child(2) { grid-column: 1/4; grid-row: 2; }
  .g-item:nth-child(3) { grid-column: 4/7; grid-row: 2; }
  .g-item:nth-child(4) { grid-column: 1/3; grid-row: 3; }
  .g-item:nth-child(5) { grid-column: 3/5; grid-row: 3; }
  .g-item:nth-child(6) { grid-column: 5/7; grid-row: 3; }
  .g-item:nth-child(2) .g-placeholder,
  .g-item:nth-child(3) .g-placeholder { aspect-ratio: 4/3; }
}

@media (max-width: 640px) {
  .laines-nav .nav-links,
  .laines-nav .nav-cta   { display: none; }
  .laines-nav .hamburger { display: flex; }

  .hero-frame      { padding: 1.75rem 1.25rem; }
  .laines-page .btn-secondary { display: none; }
  .about-badge     { display: none; }

  .hero-frame .corner-tr,
  .hero-frame .corner-bl { display: block; }

  .footer-inner    { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom   { flex-direction: column; text-align: center; }
  .laines-form-grid { grid-template-columns: 1fr; }

  .gallery-grid    { display: flex; flex-direction: column; gap: 8px; }
  .g-item .g-placeholder { aspect-ratio: var(--mobile-aspect, 4/3); width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .laines-page .reveal { opacity: 1; transform: none; }
}


/* ══════════════════════════════════════════════════════
   MOBILE: KEIN HORIZONTALES SCROLLEN / KEIN "SPIELRAUM"
   ══════════════════════════════════════════════════════ */
html {
  overflow-x: hidden;
  max-width: 100%;
}
body.laines-page {
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
}

/* ══════════════════════════════════════════════════════
   NAV-ACTIONS: Instagram-Icon + Sprachumschalter
   ══════════════════════════════════════════════════════ */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: rgba(255, 255, 255, .8);
  transition: color .25s, transform .25s;
  flex-shrink: 0;
}
.nav-social:hover {
  color: var(--gold-light);
  transform: scale(1.08);
}
.nav-social svg { width: 20px; height: 20px; }

/* Sprachumschalter – Flaggen-Buttons */
.lang-switch {
  display: flex;
  align-items: center;
  gap: .35rem;
  border-left: 1px solid rgba(201, 162, 39, .25);
  padding-left: 1rem;
}
.lang-btn {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  font-size: 1.15rem;
  line-height: 1;
  padding: .3rem .35rem;
  opacity: .55;
  transition: opacity .25s, border-color .25s, transform .2s;
}
.lang-btn:hover { opacity: .9; transform: translateY(-1px); }
.lang-btn.active {
  opacity: 1;
  border-color: rgba(201, 162, 39, .5);
  background: rgba(201, 162, 39, .08);
}

/* Mobile Menu Variante der Actions */
.mobile-menu-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: .5rem;
}
.mobile-menu-actions .nav-social { color: rgba(255,255,255,.7); width: 40px; height: 40px; }
.mobile-menu-actions .nav-social svg { width: 24px; height: 24px; }
.mobile-menu-actions .lang-switch { border-left: none; padding-left: 0; gap: .6rem; }
.mobile-menu-actions .lang-btn { font-size: 1.6rem; padding: .4rem .5rem; }

/* Footer-Social */
.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: 1.25rem;
}
.footer-social .nav-social {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 162, 39, .3);
  border-radius: 50%;
}
.footer-social .nav-social:hover { border-color: var(--gold); }

/* ══════════════════════════════════════════════════════
   FOTO-CREDIT UNTER DEM PORTRAIT
   ══════════════════════════════════════════════════════ */
.photo-credit {
  font-family: var(--ff-caps);
  font-size: .92rem;
  letter-spacing: .08em;
  color: var(--text-light);
  text-align: right;
  margin-top: .6rem;
  opacity: .9;
}
.photo-credit a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.photo-credit a:hover,
.photo-credit a:focus-visible {
  color: var(--gold-dark);
  border-color: var(--gold);
}

@media (max-width: 640px) {
  .nav-actions { gap: .5rem; }
  .lang-switch { padding-left: .5rem; }
  .lang-btn { font-size: 1rem; padding: .25rem; }
}


/* ══════════════════════════════════════════════════════
   INSTAGRAM-BUTTON INNERHALB DER KONTAKTDATEN
   ══════════════════════════════════════════════════════ */
.instagram-inline-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .9375rem;
  color: var(--text-dark);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.instagram-inline-btn:hover {
  color: var(--gold-dark);
  border-color: var(--gold);
}


/* ══════════════════════════════════════════════════════
   BEWERTUNGS-EINSENDEFORMULAR
   ══════════════════════════════════════════════════════ */
.review-form-wrap {
  max-width: 600px;
  margin: 4rem auto 0;
  text-align: center;
}

.review-toggle-btn {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  font-family: var(--ff-caps);
  font-size: .7rem;
  letter-spacing: .2em;
  padding: .9rem 2.25rem;
  border: 1.5px solid var(--navy);
  cursor: pointer;
  transition: background .3s, color .3s, transform .2s, box-shadow .3s;
}
.review-toggle-btn:hover,
.review-toggle-btn:focus-visible {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 39, 68, .25);
}

.review-form {
  margin-top: 2rem;
  background: var(--white);
  border: 1px solid rgba(201, 162, 39, .2);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  text-align: left;
}

/* Sterne-Auswahl (reine CSS-Lösung über umgekehrte Radio-Reihenfolge) */
.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: .15rem;
  margin-top: .35rem;
}
.star-rating input { position: absolute; opacity: 0; pointer-events: none; }
.star-rating label {
  font-size: 2rem;
  line-height: 1;
  color: #d8d8d8;
  cursor: pointer;
  transition: color .15s;
}
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
  color: var(--gold);
}
.star-rating input:focus-visible + label {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}


/* ══════════════════════════════════════════════════════
   BARRIEREFREIHEITS-UMSCHALTER (♿-Icon, wie ein Lichtschalter)
   ══════════════════════════════════════════════════════ */
.a11y-divider {
  display: flex;
  align-items: center;
  border-left: 1px solid rgba(201, 162, 39, .25);
  padding-left: 1rem;
}
.a11y-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 3px;
  padding: 0;
  cursor: pointer;
  color: rgba(255, 255, 255, .8);
  opacity: .8;
  transition: opacity .25s, color .25s, transform .2s, background .2s, border-color .25s;
}
.a11y-toggle-btn svg { width: 19px; height: 19px; }
.a11y-toggle-btn:hover { opacity: 1; color: var(--gold-light); transform: scale(1.08); }
.a11y-toggle-btn[aria-pressed="true"] {
  opacity: 1;
  color: var(--gold-light);
  border-color: rgba(201, 162, 39, .5);
  background: rgba(201, 162, 39, .12);
}
.a11y-toggle-btn--mobile { width: 40px; height: 40px; }
.a11y-toggle-btn--mobile svg { width: 24px; height: 24px; }

/* ══════════════════════════════════════════════════════
   BARRIEREFREIER MODUS: Hoher Kontrast + größere Schrift
   
   Nutzt bewusst dieselben Design-Variablen wie der Rest der
   Website (siehe :root oben) – dadurch wirkt sich die
   Umschaltung automatisch auf alle Bereiche aus, ohne dass
   für jede Sektion einzeln Regeln geschrieben werden müssen.
   ══════════════════════════════════════════════════════ */
html.laines-a11y-mode {
  --text-mid:   #16223c;   /* statt blass-blaugrau: fast Schwarz-Navy */
  --text-light: #26344f;   /* statt hellem Grau-Blau: deutlich dunkler */
  --gold-dark:  #6b5210;   /* dunkleres Gold für bessere Textlesbarkeit */
  --cream-text: #ffffff;   /* reines Weiß auf Navy-Hintergründen */
  font-size: 118%;
}
html.laines-a11y-mode .laines-page {
  color: var(--text-mid);
}

/* Die Navigationsleiste bleibt bewusst in ihrer ursprünglichen, kompakten
   Größe – sonst würden "Über mich" & Co. umbrechen und die Leiste würde
   "verrutschen". Der restliche Seiteninhalt (Überschriften, Texte, Buttons
   in den Abschnitten) profitiert weiterhin ganz normal von der größeren
   Schrift. Die Werte gleichen exakt die 118%-Skalierung wieder aus. */
html.laines-a11y-mode #laines-nav .nav-links a { font-size: calc(.7rem / 1.18); }
html.laines-a11y-mode #laines-nav .nav-cta     { font-size: calc(.65rem / 1.18); }
html.laines-a11y-mode #laines-nav .nav-logo-img { height: calc(52px / 1.18); }

/* ══════════════════════════════════════════════════════
   VORLESE-FUNKTION (erscheint nur im barrierefreien Modus)
   ══════════════════════════════════════════════════════ */
.a11y-speak-btn {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 998;
  align-items: center;
  gap: .5rem;
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50px;
  padding: .8rem 1.4rem;
  font-family: var(--ff-caps);
  font-size: .7rem;
  letter-spacing: .12em;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0,0,0,.3);
  transition: transform .2s, box-shadow .2s;
}
.a11y-speak-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
}
html.laines-a11y-mode .a11y-speak-btn {
  display: inline-flex;
}
.a11y-speak-btn.speaking {
  background: var(--gold-dark);
  border-color: var(--white);
}

@media (max-width: 640px) {
  .a11y-speak-btn {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    justify-content: center;
  }
}


/* ══════════════════════════════════════════════════════
   GALERIE: ECHTE FOTOS MIT KLICK-VERGRÖSSERUNG (LIGHTBOX)
   ══════════════════════════════════════════════════════ */
.g-placeholder--photo {
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
}

.g-zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.8);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(26, 39, 68, .75);
  border: 1px solid rgba(201, 162, 39, .6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  opacity: 0;
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
.g-zoom-icon svg { width: 20px; height: 20px; }
.g-item:hover .g-zoom-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.g-photo-credit {
  position: absolute;
  bottom: .5rem;
  right: .6rem;
  font-family: var(--ff-caps);
  font-size: .85rem;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .95);
  background: rgba(15, 26, 46, .6);
  padding: .25rem .6rem;
  border-radius: 2px;
  z-index: 2;
  text-decoration: none;
  transition: background .2s, color .2s;
}
a.g-photo-credit:hover,
a.g-photo-credit:focus-visible {
  background: rgba(201, 162, 39, .85);
  color: var(--navy);
}

/* Lightbox */
.laines-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 14, 26, .93);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 5vw, 3rem);
}
.laines-lightbox[hidden] { display: none; }

.laines-lightbox-figure {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}
.laines-lightbox-figure img {
  max-width: 90vw;
  max-height: 78vh;
  width: auto;
  height: auto;
  display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}
.laines-lightbox-figure figcaption {
  font-family: var(--ff-caps);
  font-size: .82rem;
  letter-spacing: .1em;
  color: var(--gold-pale);
  text-align: center;
}

.laines-lightbox-close {
  position: absolute;
  top: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, .5);
  background: rgba(26, 39, 68, .6);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
}
.laines-lightbox-close:hover {
  background: rgba(201, 162, 39, .3);
  transform: scale(1.06);
}
