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

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

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --red: #88181a;
  --red-dark: #5c1012;
  --gray: #d4d4d4;
  --gray-light: #f2f2f2;
  --border: 3px solid var(--black);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* Fließtext – einheitlich wie „Wer bin ich?“ */
.body-text,
.about-copy p,
.section-head p,
.card p,
.card li,
.check-item p,
.occasion p,
.contact-note,
.process-list li,
.contact-list li,
.form-row label,
.gallery-hint,
.gallery-empty {
  font-size: 1.05rem;
}

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

a {
  color: var(--red);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a:hover {
  background: var(--black);
  color: var(--white);
  text-decoration: none;
}

.container {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  color: var(--white);
  border-bottom: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  text-decoration: none;
  line-height: 1.2;
}

.logo:hover {
  background: transparent;
  color: var(--white);
}

.logo span {
  display: block;
  font-weight: 400;
  font-size: 0.8rem;
  opacity: 0.65;
  margin-top: 0.15rem;
}

.nav-desktop {
  display: flex;
  gap: 0;
  align-items: stretch;
}

.nav-desktop a {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 0.9rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-desktop a:hover {
  background: var(--red);
  color: var(--white);
}

.nav-cta {
  background: var(--red) !important;
  font-weight: 700 !important;
}

.nav-cta:hover {
  background: var(--white) !important;
  color: var(--black) !important;
}

.menu-toggle {
  display: none;
  border: 2px solid var(--white);
  background: transparent;
  color: var(--white);
  padding: 0.4rem 0.65rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0.5rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  color: var(--white);
  font-weight: 500;
  text-decoration: none;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-nav a:hover {
  color: var(--red);
  background: transparent;
}

/* Hero */

.hero {
  padding: 3rem 0 2.5rem;
  border-bottom: var(--border);
}

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

.kicker {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--red);
  color: var(--white);
  padding: 0.35rem 0.65rem;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero-lead {
  font-size: 1.15rem;
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

.hero-aside {
  font-size: 0.95rem;
  font-weight: 500;
  border-left: 4px solid var(--red);
  padding-left: 1rem;
  margin-bottom: 1.75rem;
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: var(--border);
  cursor: pointer;
  transition: none;
}

.btn:hover {
  transform: none;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-primary:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--black);
}

.btn-secondary:hover {
  background: var(--black);
  color: var(--white);
}

/* CTA band – nach „Warum ich?“, vor Kontakt */

.cta-band {
  background: var(--black);
  color: var(--white);
  border-bottom: var(--border);
  padding: 2rem 0;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-band-text {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}

.cta-band .btn-primary:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.hero-photo {
  position: relative;
}

.photo-frame {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--gray-light);
  border: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    var(--gray-light) 0,
    var(--gray-light) 10px,
    var(--white) 10px,
    var(--white) 20px
  );
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.photo-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-frame:has(img:not([style*="display: none"]))::before {
  display: none;
}

.photo-placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 1.5rem;
}

.photo-initials {
  font-size: clamp(3rem, 12vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--black);
  letter-spacing: -0.04em;
}

.photo-placeholder-label {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.photo-placeholder-hint {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--red);
}

.photo-badge {
  position: absolute;
  left: -3px;
  bottom: -3px;
  background: var(--black);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.5rem 0.75rem;
  border: var(--border);
}

/* Sections */

section {
  padding: 3.5rem 0;
  border-bottom: var(--border);
}

.section-num {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.section-head {
  max-width: 44rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.section-head p {
  max-width: 44rem;
  text-wrap: pretty;
}

.section-head-wide {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.about-copy p + p {
  margin-top: 1rem;
}

.about-copy strong {
  font-weight: 700;
}

.facts {
  border: var(--border);
  background: var(--gray-light);
  padding: 1.25rem;
}

.facts h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--black);
}

.facts dl {
  display: grid;
  gap: 0.75rem;
}

.facts dt {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red);
}

.facts dd {
  font-weight: 500;
  margin-top: 0.1rem;
}

/* Cards */

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: var(--border);
}

.card {
  padding: 1.5rem;
  border-right: var(--border);
  border-bottom: var(--border);
  background: var(--white);
}

.card:nth-child(2n) {
  border-right: none;
}

.card:last-child {
  border-bottom: none;
}

@media (min-width: 901px) {
  .card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    border-right: none;
  }
}

.card-num {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.card ul {
  list-style: none;
  margin-top: 0.75rem;
}

.card li {
  padding: 0.25rem 0 0.25rem 1.65rem;
  position: relative;
}

.card li::before {
  content: '→';
  position: absolute;
  left: 0.15rem;
  font-weight: 700;
  color: var(--red);
}

.card:hover {
  background: var(--black);
  color: var(--white);
}

.card:hover h3,
.card:hover p,
.card:hover li {
  color: var(--white);
}

.card:hover .card-num {
  color: var(--red);
}

.card:hover li::before {
  color: var(--white);
}

.card-link {
  margin-top: 0.85rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.card-link a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.card:hover .card-link a {
  color: var(--white);
}

/* Mentalismus – Disclaimer */

.disclaimer-section {
  background: var(--gray-light);
  padding: 2.5rem 0;
  border-bottom: var(--border);
}

.disclaimer-box {
  border: var(--border);
  background: var(--white);
  padding: 1.75rem 2rem;
}

.disclaimer-box h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--red);
}

.disclaimer-lead {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-box p {
  font-size: 1.05rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.disclaimer-box p:last-child {
  margin-bottom: 0;
}

/* Anlässe – inverted block */

.occasions-section {
  background: var(--red);
  color: var(--white);
  border-bottom-color: var(--black);
}

.occasions-section .section-num {
  color: var(--white);
  opacity: 0.7;
}

.occasions-section .section-head h2,
.occasions-section .section-head p {
  color: var(--white);
}

/* Ein Rahmen wie .disclaimer-box – Kopf + Grid bündig auf Tablet/Mobile */
.occasions-frame {
  border: 3px solid var(--white);
}

.occasions-frame .section-num {
  padding: 1.75rem 2rem 0;
}

.occasions-frame .section-head {
  max-width: none;
  margin-bottom: 0;
  padding: 0 2rem 1.75rem;
}

.occasions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 3px solid var(--white);
}

.occasion {
  padding: 1.75rem 2rem;
  border-right: 3px solid var(--white);
}

.occasion:last-child {
  border-right: none;
}

.occasion h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.occasion p {
  line-height: 1.5;
  opacity: 0.92;
}

/* Credentials & Referenzen */

.refs-section {
  background: var(--gray-light);
}

.refs-subhead {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 3px solid var(--black);
}

.credentials-block {
  margin-bottom: 2.5rem;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: var(--border);
  background: var(--white);
}

@media (min-width: 901px) and (max-width: 1099px) {
  .credentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cred-item:nth-child(3n) {
    border-right: var(--border);
  }

  .cred-item:nth-child(2n) {
    border-right: none;
  }

  .cred-item:nth-child(n+4) {
    border-bottom: var(--border);
  }

  .cred-item:nth-child(n+5) {
    border-bottom: none;
  }
}

.cred-item {
  padding: 1.1rem 1.25rem;
  border-right: var(--border);
  border-bottom: var(--border);
}

.cred-item:nth-child(3n) {
  border-right: none;
}

.cred-item:nth-child(n+4) {
  border-bottom: none;
}

.cred-item dt {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0.35rem;
}

.cred-item dd {
  font-weight: 500;
  line-height: 1.45;
  text-wrap: pretty;
  hyphens: manual;
}

.references-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: var(--border);
  background: var(--white);
}

.ref-group {
  padding: 1.25rem;
  border-right: var(--border);
  border-bottom: var(--border);
}

.ref-group:nth-child(2n) {
  border-right: none;
}

.ref-group:nth-child(n+3) {
  border-bottom: none;
}

.ref-group h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--red);
}

.ref-group ul {
  list-style: none;
}

.ref-group li {
  padding: 0.45rem 0;
  border-top: 1px solid var(--gray);
  line-height: 1.45;
}

.ref-group li:first-child {
  border-top: none;
  padding-top: 0;
}

.ref-group li strong {
  display: block;
  font-weight: 700;
}

.ref-group li span {
  display: block;
  font-size: 0.95rem;
  margin-top: 0.15rem;
}

.ref-group li em {
  display: block;
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.15rem;
  opacity: 0.7;
}

.references-empty {
  margin-top: 1rem;
  padding: 1rem 1.15rem;
  border: 2px dashed var(--black);
  font-size: 1.05rem;
  line-height: 1.5;
  background: var(--white);
}

.references-empty[hidden] {
  display: none;
}

.refs-motto {
  margin-bottom: 1.25rem;
  padding: 0.75rem 1rem;
  border-left: 4px solid var(--red);
  font-size: 1.05rem;
  font-weight: 700;
  background: var(--white);
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  border-right: 2px solid var(--black);
}

.testimonials {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.testimonial {
  border: var(--border);
  background: var(--white);
  padding: 1.25rem 1.5rem;
}

.testimonial p {
  font-size: 1.05rem;
  line-height: 1.55;
  margin-bottom: 0.65rem;
}

.testimonial footer {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--red);
}

/* Galerie */

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 1rem;
  border: var(--border);
}

.gallery-filter {
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.55rem 0.85rem;
  border: none;
  border-right: 2px solid var(--black);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
}

.gallery-filter:last-child {
  border-right: none;
}

.gallery-filter.is-active {
  background: var(--red);
  color: var(--white);
}

.gallery-filter:hover:not(.is-active) {
  background: var(--black);
  color: var(--white);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: var(--border);
}

.gallery-item {
  position: relative;
  border: none;
  padding: 0;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: var(--gray-light);
  border-right: var(--border);
  border-bottom: var(--border);
  overflow: hidden;
}

.gallery-item:nth-child(3n) {
  border-right: none;
}

.gallery-item:nth-child(n+4) {
  border-bottom: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.15s ease;
}

.gallery-item:hover img {
  filter: grayscale(0%);
}

.gallery-item-video .gallery-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  background: rgba(10, 10, 10, 0.45);
  pointer-events: none;
}

.gallery-broken::before {
  content: 'Bild fehlt';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
}

.gallery-empty {
  margin-top: 1rem;
  padding: 1rem;
  border: 2px dashed var(--black);
  font-size: 0.92rem;
  line-height: 1.55;
}

.gallery-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.5rem 0.65rem;
  background: var(--black);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: left;
}

.gallery-placeholder::after {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 1rem;
  text-align: center;
}

.gallery-item.gallery-placeholder:nth-child(1)::after { content: '01.jpg'; }
.gallery-item.gallery-placeholder:nth-child(2)::after { content: '02.jpg'; }
.gallery-item.gallery-placeholder:nth-child(3)::after { content: '03.jpg'; }
.gallery-item.gallery-placeholder:nth-child(4)::after { content: '04.jpg'; }
.gallery-item.gallery-placeholder:nth-child(5)::after { content: '05.jpg'; }
.gallery-item.gallery-placeholder:nth-child(6)::after { content: '06.jpg'; }

.gallery-hint {
  margin-top: 1rem;
  font-size: 0.88rem;
  font-weight: 500;
}

/* Warum – brutal list */

.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: var(--border);
}

.check-item {
  padding: 1.25rem;
  border-right: var(--border);
  border-bottom: var(--border);
  background: var(--white);
}

.check-item:nth-child(2n) {
  border-right: none;
}

.check-item:nth-child(n+3) {
  border-bottom: none;
}

.check-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

/* Contact */

.contact-section {
  background: var(--gray-light);
  border-bottom: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 0;
  border: var(--border);
  background: var(--white);
}

.contact-form {
  padding: 1.75rem;
  border-right: var(--border);
}

.contact-aside {
  padding: 1.75rem;
  background: var(--white);
}

.contact-aside h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--black);
}

.contact-aside h3 + .contact-list {
  margin-bottom: 1.5rem;
}

.form-alert {
  padding: 0.85rem 1rem;
  border: var(--border);
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-alert-error {
  background: var(--white);
  border-color: var(--red);
  color: var(--red);
}

.form-row {
  margin-bottom: 1rem;
}

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

.form-row label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 1rem;
  padding: 0.65rem 0.75rem;
  border: 2px solid var(--black);
  background: var(--white);
  color: var(--black);
  border-radius: 0;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 3px solid var(--red);
  outline-offset: 0;
}

.form-row textarea {
  resize: vertical;
  min-height: 140px;
}

.form-checkbox label {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
}

.form-checkbox input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--red);
}

.form-checkbox a {
  font-weight: 700;
}

/* Honeypot – unsichtbar für Menschen */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: var(--border);
  background: var(--white);
}

.contact-box > div {
  padding: 1.75rem;
}

.contact-box > div:first-child {
  border-right: var(--border);
}

.contact-box h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.contact-list {
  list-style: none;
  margin-top: 1rem;
}

.contact-list li {
  padding: 0.3rem 0;
  font-weight: 500;
}

.contact-list strong {
  font-weight: 700;
}

.process-list {
  margin: 0;
  padding-left: 1.25rem;
}

.process-list li {
  padding: 0.3rem 0;
  font-weight: 500;
}

.process-list li::marker {
  font-weight: 700;
  color: var(--red);
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox[hidden] {
  display: none;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox-figure {
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  margin: 0;
}

.lightbox-img {
  max-width: 100%;
  max-height: calc(88vh - 3rem);
  margin: 0 auto;
  border: 3px solid var(--white);
}

.lightbox-img[hidden] {
  display: none;
}

.lightbox-video-wrap {
  width: min(960px, 92vw);
  aspect-ratio: 16 / 9;
  background: var(--black);
  border: 3px solid var(--white);
}

.lightbox-video-wrap[hidden] {
  display: none;
}

.lightbox-video-wrap iframe,
.lightbox-video-wrap video {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.lightbox-caption {
  margin-top: 0.75rem;
  text-align: left;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: 2px solid var(--white);
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-weight: 700;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--red);
  border-color: var(--red);
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.5rem;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  font-size: 1.75rem;
  line-height: 1;
}

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

/* Footer */

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 1.25rem 0;
  font-size: 0.88rem;
  font-weight: 500;
}

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

.footer-inner a {
  color: var(--white);
  text-decoration: underline;
}

.footer-inner a:hover {
  background: var(--red);
  color: var(--white);
}

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

/* Legal pages */

.legal-page {
  padding: 3rem 0 4rem;
  border-bottom: var(--border);
}

.legal-page h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.legal-intro {
  margin-bottom: 2rem;
  font-weight: 500;
}

.legal-page section {
  padding: 0;
  border-bottom: none;
  margin-bottom: 2rem;
  max-width: 42rem;
}

.legal-page h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--black);
}

.legal-page p,
.legal-page li {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.legal-page ul {
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
}

.legal-page code {
  font-size: 0.88em;
  background: var(--gray-light);
  padding: 0.1rem 0.35rem;
  border: 1px solid var(--gray);
}

.legal-back {
  margin-top: 2.5rem;
  font-weight: 600;
}

.legal-back a {
  text-decoration: none;
  border: 2px solid var(--black);
  padding: 0.5rem 0.85rem;
  display: inline-block;
}

.legal-back a:hover {
  background: var(--black);
  color: var(--white);
}

/* Cookie banner */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--black);
  color: var(--white);
  border-top: 3px solid var(--red);
  padding: 1rem 0;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.cookie-banner p {
  font-size: 0.9rem;
  max-width: 52rem;
  margin: 0;
  line-height: 1.5;
}

.cookie-banner a {
  color: var(--white);
}

.cookie-banner a:hover {
  background: var(--red);
  color: var(--white);
}

.cookie-accept {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-accept {
    width: 100%;
  }
}

/* Responsive */

@media (max-width: 1100px) {
  .occasions-grid {
    grid-template-columns: 1fr;
  }

  .occasion {
    border-right: none;
    border-bottom: 3px solid var(--white);
  }

  .occasion:last-child {
    border-bottom: none;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .contact-layout,
  .contact-box,
  .cards,
  .checklist,
  .gallery,
  .occasions-grid,
  .credentials-grid,
  .references-groups {
    grid-template-columns: 1fr;
  }

  .cred-item,
  .ref-group {
    border-right: none !important;
    border-bottom: var(--border) !important;
  }

  .cred-item:last-child,
  .ref-group:last-child {
    border-bottom: none !important;
  }

  .contact-form {
    border-right: none;
    border-bottom: var(--border);
  }

  .form-row-half {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    order: -1;
  }

  .cta-band-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cta-band .btn-primary {
    width: 100%;
  }

  .card,
  .check-item,
  .gallery-item {
    border-right: none !important;
    border-bottom: var(--border) !important;
  }

  .card:last-child,
  .check-item:last-child,
  .gallery-item:last-child {
    border-bottom: none !important;
  }

  .occasion {
    border-right: none;
    border-bottom: 3px solid var(--white);
  }

  .contact-box > div:first-child {
    border-right: none;
    border-bottom: var(--border);
  }

  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }
}

@media (max-width: 600px) {
  .occasions-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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