/*
Theme Name: Naturgeflüster
Theme URI: https://naturgefluester.de
Author: Naturgeflüster
Description: Maßgeschneidertes, reduziertes WordPress-Theme für Naturgeflüster.
Version: 1.1.36
Text Domain: naturgefluester
*/

@font-face {
  font-family: "Alyson Signature";
  src: url("assets/fonts/alyson-signature.otf") format("opentype");
  font-display: swap;
}

:root {
  --black: #050505;
  --soft-black: #0e0e0e;
  --white: #f5f2ec;
  --muted: #aaa7a1;
  --line: rgba(245, 242, 236, 0.18);
  --max: 1440px;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open, body.privacy-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button { color: inherit; font: inherit; }

.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 999;
  padding: .8rem 1rem;
  color: var(--black);
  background: var(--white);
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  padding: 0 var(--gutter);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease;
}
.site-header.is-scrolled {
  background: rgba(5, 5, 5, .92);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}
.brand {
  position: relative;
  z-index: 102;
  display: inline-flex;
  align-items: center;
  width: auto;
  height: 76px;
}
.brand-wordmark-image {
  display: block;
  width: clamp(210px, 22vw, 320px);
  height: auto;
  object-fit: contain;
}

.site-nav { display: flex; gap: clamp(1rem, 1.75vw, 2rem); align-items: center; }
.site-nav a {
  position: relative;
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.45rem;
  height: 1px;
  background: currentColor;
  transition: right .25s ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.menu-toggle { display: none; border: 0; background: transparent; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #111;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
  filter: saturate(1.08) contrast(1.04);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.58) 0%, rgba(0,0,0,.16) 48%, rgba(0,0,0,.02) 100%), linear-gradient(0deg, rgba(0,0,0,.46), transparent 48%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(880px, 85vw);
  min-height: 100svh;
  padding: 9rem var(--gutter) clamp(4rem, 9vh, 7rem);
}
.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 820px;
  margin-bottom: 1.4rem;
  font: 400 clamp(3.2rem, 8vw, 8rem)/.92 var(--serif);
  letter-spacing: -.045em;
}
.hero-lead { max-width: 570px; margin-bottom: 2.2rem; color: #dedbd5; font-size: clamp(1rem, 1.5vw, 1.3rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .85rem 1.4rem;
  border: 1px solid var(--white);
  font-size: .73rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease;
}
.button:hover, .button:focus-visible { color: var(--black); background: var(--white); }
.button--solid { color: var(--black); background: var(--white); }
.button--solid:hover, .button--solid:focus-visible { color: var(--white); background: transparent; }
.scroll-cue {
  position: absolute;
  right: var(--gutter);
  bottom: 2.4rem;
  z-index: 2;
  display: flex;
  gap: .7rem;
  align-items: center;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-cue::after { content: ""; width: 1px; height: 58px; background: var(--white); }

.section { padding: clamp(5rem, 10vw, 10rem) var(--gutter); }
.section-inner { width: min(100%, var(--max)); margin: 0 auto; }
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.5fr);
  gap: clamp(3rem, 8vw, 10rem);
  align-items: start;
}
.intro-grid--single > div { grid-column: 2; }
.intro-portrait {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #151515;
}
.intro-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-kicker { color: var(--muted); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; }
.display-copy {
  max-width: 1050px;
  margin-bottom: 2.5rem;
  font: 400 clamp(2.35rem, 5vw, 5.5rem)/1.03 var(--serif);
  letter-spacing: -.035em;
}
.body-copy { max-width: 660px; color: #c9c6c0; font-size: clamp(1rem, 1.3vw, 1.2rem); }
.signature { margin-top: 2rem; font: 400 2.4rem/1 "Alyson Signature", cursive; }

.services { border-top: 1px solid var(--line); }
.section-head { display: flex; justify-content: space-between; gap: 2rem; align-items: end; margin-bottom: 3rem; }
.section-head h2 { margin: 0; font: 400 clamp(2.5rem, 5vw, 5rem)/1 var(--serif); letter-spacing: -.035em; }
.section-head p { max-width: 410px; margin: 0; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.service-card {
  position: relative;
  min-height: 520px;
  padding: 2rem;
  overflow: hidden;
  border-right: 1px solid var(--line);
  isolation: isolate;
}
.service-card:last-child { border-right: 0; }
.service-card video, .service-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) contrast(1.05);
  transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .4s ease;
}
.service-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(0,0,0,.88), rgba(0,0,0,.06) 70%); }
.service-card:hover video, .service-card:hover img { transform: scale(1.035); filter: saturate(1) contrast(1.03); }
.service-slideshow {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.service-slideshow img {
  opacity: 0;
  animation: wedding-preview 15s infinite;
}
.service-slideshow img:nth-child(2) { animation-delay: 5s; }
.service-slideshow img:nth-child(3) { animation-delay: 10s; }
.service-slideshow--four img { animation-duration: 20s; }
.service-slideshow--four img:nth-child(4) { animation-delay: 15s; }
@keyframes wedding-preview {
  0%, 28% { opacity: 1; transform: scale(1); }
  33%, 100% { opacity: 0; transform: scale(1.045); }
}
.service-number { display: block; color: #d2cec7; font-size: .7rem; letter-spacing: .12em; }
.service-card h3 { position: absolute; left: 2rem; right: 2rem; bottom: 3.6rem; margin: 0; font: 400 clamp(2rem, 3vw, 3.5rem)/1 var(--serif); }
.service-card p { position: absolute; left: 2rem; right: 2rem; bottom: 1.2rem; margin: 0; color: #ddd9d2; font-size: .8rem; letter-spacing: .07em; text-transform: uppercase; }
.service-card--graphic { background: #111; }
.service-card--graphic img { object-fit: contain; padding: 12%; filter: invert(1); transform: scale(1.25); }
.service-card--graphic:hover img { filter: invert(1); transform: scale(1.3); }

.work { border-top: 1px solid var(--line); }
.work-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(1.5rem, 3vw, 3rem); }
.work-main, .work-side { position: relative; overflow: hidden; background: #151515; }
.work-main { min-height: min(75vw, 820px); }
.work-side { min-height: min(65vw, 650px); align-self: end; }
.work video, .work img { width: 100%; height: 100%; object-fit: cover; }
.work video { filter: grayscale(1) contrast(1.06); }
.work-label { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1rem; color: var(--muted); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }

.category-gallery {
  border-top: 1px solid var(--line);
  scroll-margin-top: 78px;
}
.category-gallery:nth-of-type(even) { background: var(--soft-black); }
.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  grid-template-rows: repeat(2, minmax(280px, 1fr));
  gap: clamp(.8rem, 1.5vw, 1.5rem);
}
.gallery-item {
  position: relative;
  height: 360px;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  background: #121212;
}
.gallery-item--large { grid-row: 1 / span 2; height: auto; min-height: 760px; }
.category-gallery--four .gallery-grid { grid-template-rows: repeat(3, minmax(240px, 1fr)); }
.category-gallery--four .gallery-item--large { grid-row: 1 / span 3; min-height: 820px; }
.category-gallery--four .gallery-item:not(.gallery-item--large) { height: 260px; min-height: 260px; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.2,.7,.2,1), filter .4s ease;
}
.gallery-item--portrait-fit img {
  object-fit: contain;
  padding: 0;
  background: #050505;
  transform: scale(1.16);
  transform-origin: center 40%;
}
.gallery-item--portrait-fit:hover img { transform: scale(1.16); }
.category-gallery--four .gallery-item.gallery-item--landscape-complete {
  height: clamp(320px, 27vw, 390px);
  min-height: 320px;
  background: #0b0908;
}
.gallery-item--landscape-complete img {
  object-fit: contain;
  object-position: center;
}
.gallery-item--landscape-complete:hover img { transform: none; }
.gallery-item.gallery-item--portrait-fit figcaption {
  left: 50%;
  right: auto;
  width: max-content;
  max-width: calc(100% - 2rem);
  padding: .55rem .9rem;
  background: rgba(0, 0, 0, .76);
  text-align: center;
  transform: translateX(-50%);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(0deg, rgba(0,0,0,.76), transparent);
  pointer-events: none;
}
.gallery-item:hover img { transform: scale(1.025); filter: saturate(1.08); }
.gallery-item figcaption {
  position: absolute;
  z-index: 1;
  left: 1.4rem;
  bottom: 1.2rem;
  color: var(--white);
  font-size: .72rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.process { border-top: 1px solid var(--line); }
.process-list { margin-top: 4rem; border-top: 1px solid var(--line); }
.process-item { display: grid; grid-template-columns: 80px 1fr 1fr; gap: 2rem; padding: 2rem 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.process-item span { color: var(--muted); font-size: .74rem; }
.process-item h3 { margin: 0; font: 400 clamp(1.8rem, 3vw, 3.2rem)/1 var(--serif); }
.process-item p { max-width: 550px; margin: 0; color: var(--muted); }

.atelier { border-top: 1px solid var(--line); }
.atelier-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 7vw, 8rem); align-items: center; }
.atelier-team-block { display: grid; gap: 1.1rem; }
.atelier-media { position: relative; aspect-ratio: 4/5; overflow: hidden; background: #151515; }
.atelier-media video { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.06); }
.atelier-media img { width: 100%; height: 100%; object-fit: cover; }
.atelier-media--team { aspect-ratio: 16/9; }
.atelier-media--team-graphic { background: #030303; border: 1px solid rgba(255,255,255,.12); }
.atelier-media--team-graphic img { object-fit: contain; padding: clamp(.25rem, .7vw, .6rem); }
.team-graphic-caption { margin: 0; color: #e9e4da; font: 400 clamp(1.05rem, 1.5vw, 1.35rem)/1.45 var(--serif); letter-spacing: .01em; }
.atelier-copy h2 { margin-bottom: 2rem; font: 400 clamp(2.7rem, 5vw, 5.2rem)/.98 var(--serif); letter-spacing: -.035em; }
.atelier-copy p { max-width: 590px; color: #c9c6c0; }
.hours { border-top: 1px solid var(--line); scroll-margin-top: 78px; }
.hours-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(3rem, 9vw, 10rem); align-items: start; }
.hours-intro h2 { margin: 0 0 2rem; font: 400 clamp(3rem, 6vw, 6.2rem)/.95 var(--serif); letter-spacing: -.04em; }
.hours-intro > p:not(.section-kicker) { max-width: 520px; margin-bottom: 2rem; color: #c9c6c0; }
.hours-list { border-top: 1px solid var(--line); }
.hours-row { display: grid; grid-template-columns: 1fr auto; gap: 2rem; padding: 1.5rem 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.hours-row span { font: 400 clamp(1.4rem, 2.4vw, 2.2rem)/1.1 var(--serif); }
.hours-row time { color: #d8d4cd; text-align: right; font-size: .9rem; letter-spacing: .08em; line-height: 1.7; }
.hours-row--closed time { color: var(--muted); }
.hours-note { margin: 1.2rem 0 0; color: var(--muted); font-size: .75rem; }
.contact { border-top: 1px solid var(--line); text-align: center; }
.contact h2 { max-width: 1050px; margin: 0 auto 2.4rem; font: 400 clamp(3.2rem, 7.5vw, 7.8rem)/.92 var(--serif); letter-spacing: -.045em; }
.contact p { max-width: 620px; margin: 0 auto 2rem; color: var(--muted); }
.contact-toggle { border-radius: 0; cursor: pointer; }
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  width: min(100%, 900px);
  margin: 3rem auto 0;
  padding: clamp(1.4rem, 4vw, 3rem);
  border: 1px solid var(--line);
  text-align: left;
}
.contact-form[hidden] { display: none; }
.form-field { display: flex; flex-direction: column; gap: .55rem; }
.form-field--full { grid-column: 1 / -1; }
.form-field label, .form-consent { color: #d9d5ce; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(245,242,236,.42);
  border-radius: 0;
  padding: .85rem 0;
  color: var(--white);
  background: transparent;
  font: inherit;
}
.form-field select { color-scheme: dark; }
.form-field textarea { min-height: 150px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: 0; border-color: var(--white); }
.form-consent { display: flex; gap: .8rem; align-items: flex-start; text-transform: none; letter-spacing: .03em; }
.form-consent input { margin-top: .22rem; accent-color: var(--white); }
.form-consent a { text-decoration: underline; text-underline-offset: .18em; }
.form-status { margin: .4rem 0 0 !important; color: #d8ead6 !important; }
.form-status--error { color: #f0b8b8 !important; }
.form-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.contact-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2rem; margin-top: 3rem; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.social-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: min(100%, 780px); margin: 2.5rem auto 0; border: 1px solid var(--line); }
.social-links a { display: flex; align-items: center; gap: .8rem; padding: 1.4rem 1.7rem; text-align: left; transition: color .25s ease, background .25s ease; }
.social-links a + a { border-left: 1px solid var(--line); }
.social-links a:hover, .social-links a:focus-visible { color: var(--black); background: var(--white); }
.social-links strong { font: 400 1.35rem/1.2 var(--serif); }
.social-icon { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.social-icon-dot { fill: currentColor; stroke: none; }
.social-icon--facebook { fill: currentColor; stroke: none; }
.legal { border-top: 1px solid var(--line); background: var(--soft-black); }
.legal-inner { max-width: 1100px; }
.legal h2 { margin-bottom: 3rem; font: 400 clamp(2.8rem, 5vw, 5rem)/1 var(--serif); letter-spacing: -.035em; }
.legal-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2.5rem, 7vw, 7rem); }
.legal h3 { margin: 0 0 .8rem; font: 400 1.45rem/1.2 var(--serif); }
.legal p { color: #bbb7b0; }
.legal a { text-decoration: underline; text-underline-offset: .18em; }
.legal-note { margin-top: 2.5rem; color: var(--muted); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.legal, .legal--imprint { scroll-margin-top: 78px; }
.legal--imprint { background: var(--black); }
.legal-modal[hidden] { display: none !important; }
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: block;
  overflow-y: auto;
  overflow-x: hidden;
  padding: clamp(1rem, 4vw, 3rem);
  border-top: 0;
  background: rgba(5, 5, 5, .94);
  backdrop-filter: blur(10px);
}
.legal-modal .legal-inner {
  position: relative;
  max-width: 1120px;
  margin: min(5vh, 3rem) auto;
  padding: clamp(2rem, 5vw, 4.5rem);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--soft-black);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .55);
}
.legal-close {
  position: sticky;
  top: 0;
  z-index: 2;
  float: right;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin: -.7rem -.7rem 1rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--white);
  background: rgba(5, 5, 5, .72);
  cursor: pointer;
}
.legal-close::before,
.legal-close::after {
  content: "";
  position: absolute;
  width: 19px;
  height: 1px;
  background: currentColor;
}
.legal-close::before { transform: rotate(45deg); }
.legal-close::after { transform: rotate(-45deg); }
.legal-close:hover,
.legal-close:focus-visible {
  color: var(--black);
  background: var(--white);
}

.site-footer { padding: 3rem var(--gutter); border-top: 1px solid var(--line); }
.footer-inner { display: flex; justify-content: space-between; gap: 2rem; width: min(100%, var(--max)); margin: 0 auto; color: var(--muted); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-social { display: inline-flex; align-items: center; justify-content: center; }
.footer-social .social-icon { width: 19px; height: 19px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .site-header { height: 76px; z-index: 240; }
  .menu-open .site-header { background: transparent; border-color: transparent; backdrop-filter: none; }
  .brand { height: 68px; }
  .brand-wordmark-image { width: 225px; }
  .menu-open .brand { opacity: 0; pointer-events: none; }
  .menu-toggle { position: relative; z-index: 310; display: grid; gap: 6px; width: 42px; padding: 10px 5px; cursor: pointer; }
  .menu-open .menu-toggle {
    position: fixed;
    top: calc(env(safe-area-inset-top, 0px) + 1.1rem);
    right: var(--gutter);
  }
  .menu-toggle span { display: block; height: 1px; background: currentColor; transition: transform .25s ease; }
  .menu-open .menu-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-open .menu-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(.85rem, 3.2vh, 1.35rem);
    overflow-y: auto;
    min-height: 100vh;
    min-height: 100dvh;
    padding: calc(env(safe-area-inset-top, 0px) + 5.2rem) var(--gutter) calc(env(safe-area-inset-bottom, 0px) + 2.5rem);
    text-align: center;
    background: #050505;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
  }
  .menu-open .site-nav { opacity: 1; visibility: visible; pointer-events: auto; }
  .site-nav a {
    max-width: min(86vw, 520px);
    font: 400 clamp(1.55rem, 7.2vw, 2.45rem)/1.02 var(--serif);
    letter-spacing: -.025em;
    text-transform: none;
    overflow-wrap: normal;
  }
  .site-nav a::after { display: none; }
  .intro-grid, .atelier-grid, .hours-grid { grid-template-columns: 1fr; }
  .intro-grid--single > div { grid-column: auto; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 70svh; border-right: 0; border-bottom: 1px solid var(--line); }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .gallery-item, .gallery-item--large { grid-row: auto; height: min(125vw, 700px); min-height: 0; }
  .category-gallery--four .gallery-grid { grid-template-rows: none; }
  .category-gallery--four .gallery-item,
  .category-gallery--four .gallery-item--large { grid-row: auto; height: min(125vw, 700px); min-height: 0; }
  .category-gallery--four .gallery-item.gallery-item--landscape-complete { height: 68vw; min-height: 0; }
  .work-grid { grid-template-columns: 1fr; }
  .work-main, .work-side { min-height: 72svh; }
  .process-item { grid-template-columns: 45px 1fr; }
  .process-item p { grid-column: 2; }
}

@media (max-width: 620px) {
  .hero-image { object-position: 58% center; }
  .hero-content { width: 100%; padding-bottom: 4rem; }
  .hero::after { background: linear-gradient(90deg, rgba(0,0,0,.83), rgba(0,0,0,.18)), linear-gradient(0deg, rgba(0,0,0,.6), transparent 52%); }
  .scroll-cue { display: none; }
  .section-head { align-items: start; flex-direction: column; }
  .contact-form { grid-template-columns: 1fr; }
  .legal-grid { grid-template-columns: 1fr; }
  .legal-modal { padding: .85rem; }
  .legal-modal .legal-inner { padding: 1.35rem; }
  .legal-modal h2 {
    max-width: calc(100vw - 5rem);
    margin-bottom: 2rem;
    font-size: clamp(1.75rem, 7vw, 2.35rem);
    line-height: 1.05;
    overflow-wrap: anywhere;
    hyphens: auto;
  }
  .legal-modal h3 { font-size: clamp(1.2rem, 5.7vw, 1.7rem); }
  .legal-modal p { font-size: .98rem; }
  .legal-close {
    width: 42px;
    height: 42px;
    margin: -.25rem -.25rem .75rem .75rem;
  }
  .service-card { min-height: 62svh; }
  .gallery-item, .gallery-item--large { height: 118vw; min-height: 0; }
  .footer-inner { flex-direction: column; }
  .footer-links { flex-wrap: wrap; }
  .social-links { grid-template-columns: 1fr; }
  .social-links a + a { border-top: 1px solid var(--line); border-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .service-slideshow img { animation: none; opacity: 0; }
  .service-slideshow img:first-child { opacity: 1; }
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
