@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("/assets/fonts/cormorant-garamond-latin-wght-normal.woff2") format("woff2-variations");
}


:root {
  --bg: #FBFAF6;
  --bg-soft: #EEF4EF;
  --text: #343A36;
  --primary: #7FA58A;
  --button: #5F856B;
  --accent: #E6D8A8;
  --line: rgba(52, 58, 54, 0.14);
  --line-strong: rgba(95, 133, 107, 0.28);
  --white: #FFFDF8;
  --radius-image: 28px;
  --radius-card: 24px;
  --shadow-soft: 0 18px 52px rgba(52, 58, 54, 0.07);
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Lato, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  -webkit-user-drag: none;
  user-select: none;
}

a {
  color: inherit;
}

a,
button,
input,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.277rem, 5.18vw, 4.183rem);
  max-width: 17ch;
  text-wrap: balance;
}

h2 {
  font-size: clamp(1.823rem, 3.52vw, 3.024rem);
  max-width: 23ch;
  text-wrap: balance;
}

h3 {
  font-size: 1.285rem;
  line-height: 1.18;
}

p {
  margin: 0;
}

p + p {
  margin-top: 1rem;
}

ul {
  margin: 0;
  padding: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  padding: 0.7rem 1rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid rgba(52, 58, 54, 0.09);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(190px, 16vw, 225px);
  height: auto;
  max-width: 42vw;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 1.8vw, 1.4rem);
}

.site-nav a {
  position: relative;
  color: rgba(52, 58, 54, 0.8);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 2px;
  content: "";
  background: var(--accent);
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 170ms ease, transform 170ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta {
  border-radius: 999px;
  background: var(--button);
  color: var(--white) !important;
  padding: 0.72rem 1.08rem;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--bg-soft);
}

.nav-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 160ms ease;
}

.button,
button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--button);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  line-height: 1.2;
  padding: 0.88rem 1.35rem;
  text-decoration: none;
  transition: background 170ms ease, transform 170ms ease;
}

.button:hover,
button[type="submit"]:hover {
  background: #52775D;
  transform: translateY(-1px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--button);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.28em;
}

.text-link::after {
  content: "→";
  font-size: 1.05em;
}

.hero,
.page-hero,
.section {
  width: min(100% - 36px, 1180px);
  margin-inline: auto;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 720px);
  align-content: center;
  justify-content: start;
  gap: 1.15rem;
  min-height: clamp(720px, calc(100svh - 90px), 780px);
  padding: clamp(64px, 7vw, 108px) max(18px, calc((100vw - 1180px) / 2)) clamp(104px, 10vw, 154px);
}

.hero > :not(.hero-image) {
  position: relative;
  z-index: 2;
}

.hero-copy,
.page-hero-background .page-hero-copy {
  width: min(720px, 100%);
  padding: clamp(1.5rem, 2.8vw, 2.35rem);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 48px rgba(52, 58, 54, 0.08);
}

.hero-copy {
  display: grid;
  gap: 1.15rem;
}

.hero h1 {
  max-width: 22ch;
  font-size: clamp(2.3rem, 4.25vw, 3.9rem);
  line-height: 1.06;
  text-wrap: balance;
}

.hero h1.hero-logo-title {
  max-width: min(560px, 78vw);
  font-size: 0;
  line-height: 1;
}

.hero-logo {
  display: block;
  width: min(540px, 78vw);
  max-width: 100%;
  height: auto;
}

.hero-lead {
  max-width: 670px;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.2rem;
  margin-top: 0.45rem;
}

.eyebrow {
  color: var(--button);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: var(--bg-soft);
  box-shadow: 0 20px 58px rgba(52, 58, 54, 0.1);
}

.image-frame::before {
  display: none;
  position: absolute;
  inset: 14px;
  z-index: 1;
  border: 1px solid rgba(230, 216, 168, 0.7);
  border-radius: calc(var(--radius-image) - 10px);
  content: "";
  pointer-events: none;
}

.hero .image-frame {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero .image-frame::before {
  display: none;
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  filter: saturate(0.92) contrast(0.98) brightness(1.015);
}

.photo-credit {
  position: absolute;
  right: 0.8rem;
  bottom: 0.7rem;
  z-index: 2;
  margin: 0;
  padding: 0.2rem 0.38rem;
  border-radius: 3px;
  background: rgba(251, 250, 246, 0.8);
  color: rgba(52, 58, 54, 0.74);
  font-size: 0.67rem;
  line-height: 1.2;
}

.hero-image {
  aspect-ratio: auto;
}

.hero-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-picture > img {
  display: block;
}


.hero-image img {
  min-height: clamp(720px, calc(100svh - 90px), 780px);
  opacity: 1;
  object-position: 72% 46%;
  transform: scaleX(-1);
  filter: saturate(0.98) contrast(1.02) brightness(0.98);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(54px, 8vw, 110px) 0 clamp(36px, 7vw, 72px);
}

.page-hero-copy {
  display: grid;
  gap: 1.25rem;
}

.page-hero-copy h1 {
  max-width: 16ch;
}

.page-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  font-size: 1.12rem;
}

.page-hero-copy .button {
  width: max-content;
}

.page-hero-image {
  aspect-ratio: 4 / 4.8;
}

.page-hero-background {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(0, 720px);
  justify-content: start;
  min-height: clamp(720px, calc(100svh - 90px), 780px);
  padding: clamp(64px, 7vw, 108px) max(18px, calc((100vw - 1180px) / 2)) clamp(104px, 10vw, 154px);
}

.page-hero-background > :not(.page-hero-image) {
  position: relative;
  z-index: 2;
}

.page-hero-background .page-hero-copy {
  max-width: 720px;
}

.page-hero-background .page-hero-copy h1 {
  max-width: 22ch;
  font-size: clamp(2.3rem, 4.25vw, 3.9rem);
  line-height: 1.06;
  text-wrap: balance;
}

.page-hero-background .page-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 0;
  box-shadow: none;
  aspect-ratio: auto;
}

.page-hero-background .page-hero-image::before {
  display: none;
}

.page-hero-background .page-hero-image img {
  min-height: clamp(720px, calc(100svh - 90px), 780px);
  opacity: 1;
  object-position: 72% 52%;
  filter: saturate(0.98) contrast(1.02) brightness(0.98);
}

.ueber-mich-page-hero .page-hero-image img {
  object-position: 72% 38%;
  transform: scaleX(-1);
}

.image-graded img,
.image-soft-overlay img {
  filter: saturate(0.91) contrast(0.97) brightness(1.02);
}

.image-graded::after,
.image-soft-overlay::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(251, 250, 246, 0.13), rgba(95, 133, 107, 0.14));
  content: "";
  pointer-events: none;
}

.section {
  padding: clamp(64px, 8.6vw, 118px) 0;
}

.section + .section {
  border-top: 1px solid rgba(52, 58, 54, 0.08);
}

.section > :is(.section-head, .narrow, .split, .split-card, .intro-audio-grid, .process-preview) {
  position: relative;
}

.narrow,
.legal-content {
  max-width: 740px;
}

.narrow {
  margin-inline: auto;
}

.text-section h2,
.legal-content h2 {
  margin-top: 3.4rem;
  margin-bottom: 1.1rem;
}

.intro-audio-section {
  width: min(100% - 36px, 1100px);
}

.intro-audio-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: clamp(2rem, 4.5vw, 4.5rem);
  align-items: center;
}

.intro-copy {
  max-width: 710px;
}

.intro-copy h2 {
  margin-top: 0.6rem;
}

.intro-copy .button {
  margin-top: 1.65rem;
}

.intro-audio-panel {
  display: block;
  align-self: center;
  width: 100%;
  padding-bottom: 3.25rem;
}

.audio-welcome {
  position: relative;
  width: min(100%, 480px);
  margin: 0;
  padding: 0;
}

.audio-welcome-image {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  aspect-ratio: 4 / 5;
  background: var(--bg-soft);
  box-shadow: 0 18px 46px rgba(52, 58, 54, 0.1);
}

.audio-welcome-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% center;
  transform: scaleX(-1);
}

.audio-welcome-image .photo-credit {
  top: 0.75rem;
  right: 0.75rem;
  bottom: auto;
}

.audio-player-card {
  position: absolute;
  z-index: 2;
  right: -1rem;
  bottom: -2.5rem;
  width: min(88%, 420px);
  max-width: 420px;
  border: 1px solid rgba(95, 133, 107, 0.13);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(52, 58, 54, 0.06);
  padding: 1.15rem 1rem 0.9rem;
}

.audio-player-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: baseline;
  margin: 0 0 0.65rem;
  color: #343A36;
  font-size: 1rem;
  line-height: 1.25;
}

.audio-player-heading span:first-child {
  font-weight: 750;
}

.audio-player-heading span:last-child {
  color: rgba(52, 58, 54, 0.62);
}

.audio-player-controls {
  display: grid;
  grid-template-columns: 34px minmax(120px, 1fr) max-content;
  gap: 0.8rem;
  align-items: center;
}

.audio-player-button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--button);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  line-height: 1;
}

.audio-player-button span {
  transform: translateX(1px);
  font-size: 0.95rem;
}

.audio-player-button.is-playing span {
  transform: none;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.audio-player-progress {
  width: 100%;
  accent-color: #5F856B;
  cursor: pointer;
}

.audio-player-progress::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #5F856B var(--audio-progress, 0%), rgba(95, 133, 107, 0.2) var(--audio-progress, 0%));
}

.audio-player-progress::-webkit-slider-thumb {
  width: 12px;
  height: 12px;
  margin-top: -4px;
}

.audio-player-progress::-moz-range-track {
  height: 4px;
  border-radius: 999px;
  background: rgba(95, 133, 107, 0.2);
}

.audio-player-progress::-moz-range-progress {
  height: 4px;
  border-radius: 999px;
  background: #5F856B;
}

.audio-player-time {
  color: rgba(52, 58, 54, 0.62);
  font-size: 0.9rem;
  white-space: nowrap;
}

.audio-player-button:focus-visible,
.audio-player-progress:focus-visible,
.audio-player-native:focus-visible {
  outline: 3px solid rgba(95, 133, 107, 0.28);
  outline-offset: 4px;
}

.audio-player-card.is-enhanced .audio-player-native {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.audio-player-native {
  width: 100%;
  height: 38px;
  accent-color: var(--button);
}

.legal-content h2 {
  max-width: none;
}

.text-section h2:first-child,
.legal-content h2:first-child {
  margin-top: 0;
}

.legal-list {
  display: grid;
  gap: 0.25rem;
  margin: 0.6rem 0 1rem 1.2rem;
  padding-left: 1.1rem;
  list-style: disc;
}

.text-section .button,
.legal-content .button {
  margin-top: 1.45rem;
}

.section-head {
  display: grid;
  gap: 1rem;
  max-width: 760px;
  margin-bottom: clamp(2.1rem, 4.4vw, 3.8rem);
}

.section-head.centered,
.centered-action {
  text-align: center;
  margin-inline: auto;
}

.section-head p:not(.eyebrow) {
  max-width: 720px;
}

.soft-band {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
  background: var(--bg-soft);
  padding-block: clamp(70px, 9vw, 126px);
}

.soft-band + .section,
.section + .soft-band {
  border-top: 0;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 2.3rem);
}

.value-card {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.45rem;
  border-left: 2px solid var(--accent);
}

.value-card::before {
  position: absolute;
  left: -6px;
  top: 0.15rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  content: "";
}

.value-card h3 {
  max-width: 17ch;
}

.value-card p {
  max-width: 34rem;
  margin-top: 0.85rem;
}

.card,
.step-teaser article {
  border: 1px solid rgba(95, 133, 107, 0.18);
  border-radius: var(--radius-card);
  background: rgba(255, 253, 248, 0.72);
  padding: clamp(1.25rem, 2.4vw, 2rem);
}

.card p,
.fact-grid p,
.step-teaser p {
  margin-top: 0.8rem;
}

.jubilee-details {
  gap: 0;
  border-top: 1px solid rgba(95, 133, 107, 0.28);
  border-bottom: 1px solid rgba(95, 133, 107, 0.28);
}

.jubilee-details .jubilee-detail {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 4vw, 4.25rem);
}

.jubilee-details .jubilee-detail:first-child {
  padding-left: 0;
}

.jubilee-details .jubilee-detail + .jubilee-detail {
  border-left: 1px solid rgba(95, 133, 107, 0.28);
}

.offerings {
  display: grid;
  gap: 0;
  width: min(100% - 36px, 1240px);
  max-width: none;
}

.split-card,
.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: center;
}

.split-card {
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: clamp(2.8rem, 6vw, 5rem) 0;
}

.split-card:first-child {
  border-top: 0;
  padding-top: 0;
}

.split-card > div,
.split > div {
  max-width: 660px;
}

.split-card.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
}

.split-card.reverse .image-frame {
  order: 2;
}

.offerings .split-card {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 1fr);
  gap: clamp(2.2rem, 5vw, 5rem);
}

.offerings .split-card.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 1fr);
}

.offerings .image-frame {
  width: 100%;
  min-height: 0;
  aspect-ratio: 4 / 3;
  align-self: center;
}

.offerings .image-frame img {
  min-height: 100%;
  object-position: center;
}

.offerings .split-card.reverse .image-frame img {
  object-position: 68% center;
}

.offerings .split-card:not(.reverse) .image-frame img {
  object-position: 44% center;
}

.about-teaser {
  width: min(100% - 36px, 1240px);
  max-width: none;
}

.about-teaser .split {
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.08fr);
  gap: clamp(2.2rem, 5.6vw, 5.8rem);
}

.about-teaser .image-frame {
  width: 100%;
  aspect-ratio: 16 / 10.6;
}

.about-teaser .image-frame img {
  min-height: 100%;
}

.portrait-split {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
}

.portrait-split-left {
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
}

.portrait-photo {
  justify-self: center;
  width: min(100%, 380px);
  aspect-ratio: 3 / 4.25;
}

.portrait-photo img {
  min-height: 100%;
  object-position: center;
}

.feature-photo {
  width: min(100%, 480px);
}

.wide-photo {
  justify-self: center;
  width: min(100%, 660px);
  aspect-ratio: 16 / 10;
}

.wide-photo img {
  min-height: 100%;
  object-position: center;
}

.highlight-copy {
  border-left: 2px solid var(--accent);
  color: var(--text);
  font-size: clamp(1.06rem, 1.6vw, 1.22rem);
  font-weight: 750;
  line-height: 1.55;
  padding: 0.15rem 0 0.15rem 1.15rem;
}

.split-card h2,
.split h2 {
  margin: 0.55rem 0 1rem;
}

.freie-trauung-intro .portrait-split-left {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
}

.freie-trauung-intro .feature-photo {
  justify-self: start;
  width: min(100%, 460px);
}

.freie-trauung-intro .split h2.section-break-heading {
  margin-top: clamp(3rem, 5vw, 4.4rem);
}

.freie-trauung-match .portrait-split {
  grid-template-columns: minmax(0, 0.86fr) minmax(430px, 0.94fr);
  gap: clamp(2rem, 4.8vw, 5rem);
}

.freie-trauung-match .wide-photo {
  justify-self: stretch;
  width: 100%;
  max-width: none;
  aspect-ratio: 4 / 5;
  min-height: 540px;
}

.freie-trauung-match .wide-photo img {
  object-position: 43% center;
}

@media (min-width: 861px) {
  .sticky-side-photo {
    position: sticky;
    top: clamp(88px, 8vw, 112px);
    align-self: start;
    max-height: calc(100svh - 128px);
  }
}

@media (min-width: 861px) and (max-width: 1060px) {
  .offerings .split-card,
  .offerings .split-card.reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .about-teaser .split {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .process-preview {
    grid-template-columns: minmax(0, 0.76fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .ueber-mich-credentials-section .portrait-split-left {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .freie-trauung-intro .portrait-split-left {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .freie-trauung-intro .feature-photo {
    width: 100%;
  }

  .freie-trauung-match .portrait-split {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .freie-trauung-match .wide-photo {
    min-height: 0;
  }
}

.ueber-mich-emotion-section,
.ueber-mich-credentials-section {
  width: min(100% - 36px, 1240px);
  max-width: none;
}

.ueber-mich-emotion-section .portrait-split {
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.12fr);
  gap: clamp(2.2rem, 5.4vw, 5.6rem);
}

.ueber-mich-emotion-section .wide-photo {
  justify-self: stretch;
  width: 100%;
  max-width: none;
  aspect-ratio: 16 / 10;
}

.ueber-mich-credentials-section .portrait-split-left {
  grid-template-columns: minmax(500px, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(2.2rem, 5.4vw, 5.6rem);
}

.ueber-mich-credentials-section .wide-photo {
  justify-self: stretch;
  width: 100%;
  max-width: none;
  aspect-ratio: 16 / 10;
}

.ueber-mich-credentials-section .wide-photo img {
  object-position: 24% center;
  transform: scale(1.08);
  transform-origin: left center;
}

.wide-section-heading {
  max-width: 24ch;
}

.section-break-heading,
.split h2.section-break-heading {
  margin-top: clamp(4.3rem, 7vw, 6.4rem);
}

.spaced-heading {
  margin-top: clamp(2.4rem, 5vw, 4.2rem);
}

.jubilee-location {
  margin-bottom: clamp(2.8rem, 6vw, 4.5rem);
}

.about-match {
  margin-top: 1.6rem;
}

.about-match h3 {
  max-width: none;
  font-size: 30px;
  margin-bottom: 1.1rem;
}

.about-match .check-list {
  margin: 0.75rem 0;
}

.about-final-cta {
  display: grid;
  justify-items: center;
  gap: 1rem;
  margin-top: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}

.about-final-cta p {
  max-width: 620px;
}

.split-card .text-link,
.split .text-link {
  margin-top: 1.2rem;
}

.process-preview {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1fr);
  gap: clamp(2rem, 4.6vw, 4.6rem);
  align-items: start;
  max-width: none;
}

.process-preview .image-frame {
  position: sticky;
  top: 112px;
  width: 100%;
  max-height: 70vh;
  aspect-ratio: 3 / 4;
  align-self: start;
}

.process-preview .image-frame img {
  min-height: 100%;
  object-position: center;
}

.process-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 690px;
}

.process-list article {
  position: relative;
  display: block;
  min-width: 0;
  padding: 0.15rem 0 clamp(2.4rem, 7vw, 4.8rem) 1.55rem;
  border-left: 1px solid rgba(95, 133, 107, 0.26);
}

.process-list article::before {
  position: absolute;
  left: -6px;
  top: 0.42rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(127, 165, 138, 0.12);
  content: "";
}

.process-list article::after {
  display: none;
}

.process-list article:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.process-list h3 {
  font-size: clamp(1.201rem, 2.153vw, 1.78rem);
  max-width: 22ch;
}

.process-list .process-title-single-line {
  max-width: none;
  white-space: nowrap;
}

.process-list p {
  max-width: 660px;
  margin-top: 0.55rem;
}

.step-teaser {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.step-teaser h3 {
  font-size: 0.894rem;
}

.centered-action {
  margin-top: 2rem;
}

.process-action {
  margin-top: clamp(3.5rem, 7vw, 5.5rem);
}

.centered-action h2 {
  margin-inline: auto;
}

.final-cta {
  text-align: center;
}

.final-cta .narrow {
  display: grid;
  justify-items: center;
  gap: 1rem;
}

.final-cta h2 {
  max-width: 760px;
}

.final-cta p:not(.eyebrow) {
  max-width: 690px;
}

.faq-teaser .narrow {
  display: grid;
  gap: 1.35rem;
  max-width: 860px;
}

.faq-teaser-list {
  width: 100%;
  margin-top: 0.3rem;
}

.faq-teaser .text-link {
  margin-top: 0.45rem;
}

.check-list {
  display: grid;
  gap: 0.7rem;
  list-style: none;
  margin: 1.1rem 0;
}

.check-list li {
  position: relative;
  padding-left: 1.55rem;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  content: "";
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
  max-width: 860px;
  margin-inline: auto;
}

.timeline::before {
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 14px;
  width: 1px;
  background: var(--line-strong);
  content: "";
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 1.4rem;
  padding: 0 0 clamp(2rem, 5vw, 3.6rem);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: relative;
  z-index: 1;
  width: 29px;
  height: 29px;
  border: 7px solid var(--bg);
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 1px var(--line-strong);
}

.timeline-item h2 {
  max-width: 720px;
  font-size: clamp(1.408rem, 2.484vw, 2.111rem);
}

.timeline-item p {
  max-width: 720px;
  margin-top: 0.75rem;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.4rem) clamp(2rem, 5vw, 4rem);
}

.fact-grid article {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.45rem;
  border-left: 2px solid var(--accent);
}

.fact-grid article::before {
  position: absolute;
  left: -6px;
  top: 0.42rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(127, 165, 138, 0.12);
  content: "";
}

.fact-grid h3 {
  font-size: 20px;
}

.fact-grid p {
  max-width: 34rem;
}

.faq-page .section-head {
  margin-inline: auto;
  text-align: center;
}

.faq-page h1 {
  max-width: 760px;
  font-size: clamp(1.904rem, 4.968vw, 3.767rem);
}

.accordion {
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  padding: 1.25rem 0;
  color: var(--text);
  font-weight: 850;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--button);
  content: "+";
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  max-width: 720px;
  padding: 0 0 1.35rem;
}

.contact-section {
  max-width: none;
  width: 100%;
  padding-inline: max(18px, calc((100vw - 960px) / 2));
  background: var(--bg-soft);
}

.contact-section .section-head {
  margin-inline: auto;
  text-align: center;
}

.contact-section h2 {
  max-width: 760px;
  margin-inline: auto;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.05rem;
  max-width: 960px;
  margin: 0 auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.contact-form label {
  display: block;
  color: rgba(52, 58, 54, 0.82);
  font-size: 0.95rem;
  font-weight: 850;
}

.required-mark {
  display: inline;
  margin-left: 0.08em;
  color: var(--primary);
}

.contact-form .full,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(52, 58, 54, 0.17);
  border-radius: 14px;
  background: var(--bg);
  color: var(--text);
  font: inherit;
  padding: 0.9rem 1rem;
}

.contact-form label:not(.privacy-check) > input,
.contact-form label:not(.privacy-check) > textarea {
  display: block;
  margin-top: 0.45rem;
}

.contact-form textarea {
  min-height: 170px;
  resize: vertical;
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: rgba(95, 133, 107, 0.5);
}

.contact-region-note {
  max-width: 850px;
  margin: 0.65rem auto 0;
  border-left: 3px solid var(--accent);
  color: rgba(52, 58, 54, 0.78);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.7;
  padding: 0.15rem 0 0.15rem 1.15rem;
}

.contact-profile-link {
  margin: 0.1rem auto 0;
  text-align: center;
}

.contact-profile-link .text-link {
  font-weight: 800;
}

.privacy-check {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 0.75rem !important;
  font-weight: 600 !important;
  line-height: 1.45;
}

.privacy-check input {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.15rem;
  accent-color: var(--button);
}

.privacy-check a {
  color: var(--button);
  font-weight: 850;
}

.bot-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.section.region-section {
  width: 100%;
  max-width: none;
  background: #f4f0e5;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
}

.region-section-head {
  max-width: 760px;
  margin: 0 auto clamp(2.3rem, 4vw, 3.5rem);
  text-align: center;
}

.region-section-head h2 {
  max-width: none;
  margin: 0.45rem auto 1rem;
}

.region-section-head > p:last-child {
  color: rgba(52, 58, 54, 0.76);
}

.region-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.75rem);
  width: min(100%, 1180px);
  margin-inline: auto;
}

.region-flip-card {
  position: relative;
  min-width: 0;
  cursor: pointer;
  outline: none;
  perspective: 1400px;
}

.region-flip-card:focus-visible {
  border-radius: var(--radius-card);
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}

.region-flip-card-inner {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.region-flip-card:hover .region-flip-card-inner,
.region-flip-card.is-flipped .region-flip-card-inner {
  transform: rotateY(180deg);
}

.region-card-face {
  position: relative;
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(95, 133, 107, 0.2);
  border-radius: var(--radius-card);
  box-shadow: 0 18px 48px rgba(52, 58, 54, 0.08);
  padding: clamp(1.35rem, 2.5vw, 2rem);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.region-card-front {
  gap: 1.5rem;
  background: var(--white);
  text-align: center;
}

.region-card-front h3 {
  max-width: 18ch;
  font-size: clamp(1.8rem, 2.6vw, 2.45rem);
  text-wrap: balance;
}

.region-card-back {
  align-items: flex-start;
  justify-content: flex-start;
  background: var(--button);
  color: var(--white);
  transform: rotateY(180deg);
}

.region-card-back h3 {
  margin: 0.6rem 0 1.15rem;
  color: var(--white);
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.region-card-back p:last-child {
  font-size: 0.98rem;
  line-height: 1.65;
}

.region-card-name {
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.region-flip-hint {
  color: rgba(52, 58, 54, 0.62);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.03em;
}

.region-section-cta {
  max-width: 780px;
  margin: clamp(2.8rem, 5vw, 4.2rem) auto 0;
  text-align: center;
}

.region-section-cta p {
  color: rgba(52, 58, 54, 0.8);
}

.region-section-cta .button {
  margin-top: 1.5rem;
}

.legal-content {
  margin-inline: auto;
}

.legal-content h1 {
  max-width: 820px;
  margin-top: 0.45rem;
}

.legal-content section {
  margin-top: 2.8rem;
}

.legal-content h2 {
  font-size: clamp(1.325rem, 2.484vw, 1.78rem);
}

.cookie-banner {
  position: fixed;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
  width: min(calc(100vw - 28px), 520px);
  border: 1px solid rgba(95, 133, 107, 0.26);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 18px 60px rgba(52, 58, 54, 0.16);
  padding: 1rem;
  backdrop-filter: blur(16px);
}

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

.cookie-title {
  margin-bottom: 0.25rem;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.15;
}

.cookie-banner p:not(.cookie-title) {
  max-width: 540px;
  font-size: 0.92rem;
  line-height: 1.48;
}

.cookie-banner a {
  color: var(--button);
  font-weight: 850;
  text-decoration-color: var(--accent);
  text-underline-offset: 0.22em;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.6rem;
}

.cookie-button,
.cookie-settings {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.2;
  padding: 0.72rem 1rem;
}

.cookie-button {
  background: var(--button);
  color: var(--white);
}

.cookie-button.secondary,
.cookie-settings {
  border: 1px solid rgba(95, 133, 107, 0.28);
  background: var(--bg-soft);
  color: var(--button);
}

.cookie-settings {
  position: fixed;
  left: clamp(14px, 3vw, 24px);
  bottom: clamp(14px, 3vw, 24px);
  z-index: 79;
  box-shadow: 0 10px 30px rgba(52, 58, 54, 0.08);
}

.site-footer {
  background: var(--text);
  color: rgba(251, 250, 246, 0.86);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  width: min(100% - 36px, 1180px);
  margin: 0 auto;
  padding: clamp(0.9rem, 2.2vw, 1.25rem) 0;
}

.footer-inner p {
  color: var(--white);
  font-weight: 750;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
}

.footer-legal {
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-end;
}

.footer-inner a {
  color: rgba(251, 250, 246, 0.82);
  text-decoration-color: rgba(230, 216, 168, 0.6);
  text-underline-offset: 0.24em;
}

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

.footer-social {
  display: inline-grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border: 1px solid rgba(230, 216, 168, 0.42);
  border-radius: 999px;
  text-decoration: none;
}

.footer-social svg {
  width: 1.12rem;
  height: 1.12rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.footer-social:hover {
  border-color: rgba(230, 216, 168, 0.9);
  background: rgba(251, 250, 246, 0.08);
}

@media (min-width: 861px) {
  .hero-copy,
  .page-hero-background .page-hero-copy {
    left: -18px;
    top: clamp(48px, 7vh, 76px);
  }
}

@media (min-width: 1180px) {
  .hero-copy,
  .page-hero-background .page-hero-copy {
    left: clamp(-110px, -6vw, -72px);
    top: clamp(70px, 9vh, 110px);
  }
}

@media (max-width: 1060px) {
  .value-grid,
  .card-grid.three,
  .step-teaser,
  .fact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav {
    gap: 0.75rem;
  }
}

@media (max-width: 860px) {
  .hero-picture {
    height: auto;
  }

  .region-card-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .process-list .process-title-single-line {
    white-space: normal;
  }

  body {
    font-size: 16px;
  }

  .site-header {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 70px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line-strong);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    padding: 0.75rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    display: block;
    border-radius: 16px;
    padding: 0.9rem 1rem;
    font-size: 1.04rem;
  }

  .site-nav a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 0.2rem;
    text-align: center;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 0;
    padding: 0 14px 28px;
  }

  .hero .image-frame {
    position: relative;
    inset: auto;
    width: calc(100% + 28px);
    margin-inline: -14px;
    aspect-ratio: auto;
  }

  .hero-copy {
    z-index: 2;
    margin-top: -24px;
  }

  .hero .photo-credit {
    bottom: 2rem;
  }

  .hero-image img {
    height: auto;
    min-height: 0;
    object-position: center;
  }

  .page-hero,
  .split-card,
  .split-card.reverse,
  .split,
  .intro-audio-grid,
  .process-preview {
    grid-template-columns: 1fr;
  }

  .page-hero-background {
    min-height: 0;
    align-items: start;
    align-content: start;
    gap: 0;
    padding: 0 14px 28px;
  }

  .page-hero-background .page-hero-image {
    position: relative;
    inset: auto;
    width: calc(100% + 28px);
    margin-inline: -14px;
    aspect-ratio: auto;
  }

  .page-hero-background .page-hero-copy {
    z-index: 2;
    margin-top: -24px;
  }

  .page-hero-background .photo-credit {
    bottom: 2rem;
  }

  .page-hero-background .page-hero-image img {
    height: auto;
    min-height: 0;
    object-position: center;
  }

  .hero-copy,
  .page-hero-background .page-hero-copy {
    padding: clamp(1.2rem, 5vw, 1.6rem);
    background: rgba(255, 255, 255, 0.9);
  }

  .offerings .split-card,
  .offerings .split-card.reverse,
  .about-teaser .split,
  .process-preview {
    grid-template-columns: 1fr;
  }

  .offerings .image-frame,
  .about-teaser .image-frame {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .freie-trauung-intro .portrait-split-left,
  .freie-trauung-match .portrait-split,
  .ueber-mich-emotion-section .portrait-split,
  .ueber-mich-credentials-section .portrait-split-left {
    grid-template-columns: 1fr;
  }

  .jubilee-details .jubilee-detail,
  .jubilee-details .jubilee-detail:first-child {
    padding: 2rem 0;
  }

  .jubilee-details .jubilee-detail + .jubilee-detail {
    border-top: 1px solid rgba(95, 133, 107, 0.28);
    border-left: 0;
  }

  .freie-trauung-match .wide-photo {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .ueber-mich-emotion-section .wide-photo,
  .ueber-mich-credentials-section .wide-photo {
    aspect-ratio: 16 / 10;
  }

  .process-preview .image-frame {
    position: relative;
    top: auto;
    max-height: none;
    aspect-ratio: 3 / 4;
  }

  .split-card.reverse .image-frame {
    order: 0;
  }

  .page-hero-copy h1,
  .page-hero-copy p:not(.eyebrow) {
    max-width: 720px;
  }

  .intro-audio-panel {
    padding-bottom: 3rem;
  }

  .intro-audio-panel .audio-welcome {
    max-width: 520px;
  }

  .card-grid.two {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .region-card-face {
    padding: 1.4rem;
  }

  .region-card-back h3 {
    font-size: 1.65rem;
  }

  .region-card-back p:last-child {
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .contact-region-note {
    padding-left: 0.9rem;
  }

  .brand-logo {
    width: min(180px, 52vw);
    height: auto;
    max-width: none;
  }

  .page-hero,
  .section {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding-inline: 14px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 7vw, 2.45rem);
    text-wrap: pretty;
  }

  .page-hero-background {
    padding-inline: 14px;
  }

  .page-hero-background .page-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2rem, 7vw, 2.45rem);
    line-height: 1.06;
    text-wrap: pretty;
  }

  h1 {
    font-size: clamp(1.989rem, 9.936vw, 2.899rem);
  }

  h2 {
    font-size: clamp(1.74rem, 7.452vw, 2.444rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  button[type="submit"] {
    width: 100%;
  }

  .audio-welcome {
    width: 100%;
    margin-top: 0.65rem;
  }

  .audio-welcome-image {
    border-radius: 22px;
    aspect-ratio: 4 / 5;
  }

  .audio-player-card {
    right: -0.25rem;
    bottom: -2.2rem;
    width: 92%;
    padding: 0.8rem 0.85rem;
  }

  .audio-player-controls {
    grid-template-columns: 32px minmax(88px, 1fr) max-content;
    gap: 0.55rem;
  }

  .audio-player-button {
    width: 32px;
    height: 32px;
  }

  .audio-player-heading {
    font-size: 0.94rem;
  }

  .audio-player-time {
    font-size: 0.78rem;
  }

  .card-grid.three,
  .value-grid,
  .step-teaser,
  .fact-grid {
    grid-template-columns: 1fr;
  }

  .soft-band,
  .contact-section {
    padding-inline: 14px;
  }

  .contact-form {
    border-radius: 24px;
  }

  .timeline-item {
    gap: 0.7rem;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-button {
    flex: 1 1 100%;
  }
}

@media (prefers-reduced-motion: no-preference) {
  html.js .reveal,
  html.js .reveal-left,
  html.js .reveal-right,
  html.js .reveal-fade {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
    transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1), transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
  }

  html.js .reveal-left {
    transform: translate3d(-28px, 0, 0);
  }

  html.js .reveal-right {
    transform: translate3d(28px, 0, 0);
  }

  html.js .reveal-fade {
    transform: none;
  }

  html.js .reveal-delay-1 {
    transition-delay: 100ms;
  }

  html.js .reveal-delay-2 {
    transition-delay: 180ms;
  }

  html.js .reveal-delay-3 {
    transition-delay: 260ms;
  }

  html.js .reveal.is-revealed,
  html.js .reveal-left.is-revealed,
  html.js .reveal-right.is-revealed,
  html.js .reveal-fade.is-revealed {
    opacity: 1;
    transform: none;
    will-change: auto;
  }
}

@media (hover: none) {
  .region-flip-card:hover:not(.is-flipped) .region-flip-card-inner {
    transform: none;
  }
}

@media (max-width: 760px) and (prefers-reduced-motion: no-preference) {
  html.js .reveal-left,
  html.js .reveal-right {
    transform: translate3d(0, 22px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .region-flip-card-inner {
    transition: none;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-fade {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
