@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/montserrat-400.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/montserrat-500.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/montserrat-700.ttf") format("truetype");
}

:root {
  --ink: #1f1714;
  --cream: #f4e6d7;
  --ivory: #fffaf2;
  --warm: #ead8c2;
  --sand: #d7bea0;
  --moss: #324940;
  --sage: #e4e6d2;
  --olive: #8e8d58;
  --clay: #51403e;
  --mauve: #b19ba5;
  --rose: #eadbe1;
  --soft-shadow: 0 28px 84px rgba(80, 53, 39, 0.16);
  --headline: Optima, Candara, "Avenir Next", Avenir, Montserrat, ui-sans-serif, sans-serif;
  --sans: Montserrat, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 6%, rgba(177, 155, 165, 0.34), transparent 30rem),
    radial-gradient(circle at 86% 18%, rgba(142, 141, 88, 0.22), transparent 28rem),
    linear-gradient(180deg, #f5e7d8 0%, #ead6c1 50%, #f3e5d6 100%);
  color: var(--ink);
  font-family: var(--sans);
  text-rendering: geometricPrecision;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
video:focus-visible,
main:focus-visible {
  outline: 3px solid rgba(50, 73, 64, 0.72);
  outline-offset: 5px;
}

::selection {
  background: var(--moss);
  color: var(--cream);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  border-radius: 999px;
  padding: 12px 18px;
  background: var(--moss);
  color: var(--ivory);
  font-size: 0.84rem;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.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;
}

.page-top-anchor {
  display: block;
  width: 0;
  height: 0;
  overflow: hidden;
}

.back-to-top {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 70;
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(81, 64, 62, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.74);
  box-shadow: 0 14px 34px rgba(80, 53, 39, 0.12);
  color: var(--moss);
  font-size: 1.35rem;
  line-height: 1;
  backdrop-filter: blur(14px);
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--moss);
  color: var(--cream);
  transform: translateY(-2px);
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: 0.2;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

.container {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  padding-block: 28px;
  color: rgba(81, 64, 62, 0.82);
  font-size: 0.92rem;
}

.brand {
  font-family: var(--headline);
  font-size: clamp(1.35rem, 2.35vw, 1.85rem);
  font-weight: 400;
  line-height: 1.12;
  color: #211714;
}

.main-nav {
  display: flex;
  gap: clamp(8px, 1.2vw, 16px);
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 9px 13px;
  white-space: nowrap;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  border-color: rgba(81, 64, 62, 0.16);
  background: rgba(255, 250, 242, 0.52);
  box-shadow: 0 10px 28px rgba(80, 53, 39, 0.08);
  color: var(--moss);
  transform: translateY(-1px);
}

.mobile-nav {
  display: none;
}

.section-pad {
  padding-block: clamp(54px, 8vw, 112px);
}

.section-pad-bottom {
  padding-bottom: clamp(72px, 9vw, 128px);
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--moss);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.olive {
  color: var(--olive);
}

.eyebrow.mauve {
  color: var(--mauve);
}

.hero-eyebrow {
  font-size: clamp(0.92rem, 1.4vw, 1.08rem);
  letter-spacing: 0.13em;
  line-height: 1.35;
}

.local-note {
  max-width: 420px;
  margin: -10px 0 24px;
  color: rgba(81, 64, 62, 0.72);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.55;
}

.lead {
  grid-column: 1;
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(58, 43, 39, 0.9);
  font-size: clamp(1.1rem, 1.8vw, 1.32rem);
  line-height: 1.78;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.78fr);
  align-items: start;
  gap: clamp(36px, 5.5vw, 70px);
  padding-top: clamp(18px, 4vw, 44px);
}

.hero-eyebrow,
.local-note,
.hero h1,
.hero-text {
  grid-column: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: clamp(18px, 4vw, 42px) auto auto -5vw;
  width: min(44vw, 520px);
  height: min(44vw, 520px);
  border-radius: 999px;
  background: rgba(234, 219, 225, 0.34);
  filter: blur(26px);
  pointer-events: none;
  z-index: -1;
}

.hero h1,
.about h2,
.topics-intro h2,
.voices h2,
.contact h2 {
  margin: 0;
  font-family: var(--headline);
  font-weight: 400;
  letter-spacing: 0;
}

.hero h1 {
  grid-row: 3;
  max-width: 17ch;
  color: #2b201d;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.06;
}

.hero-text {
  max-width: 620px;
  margin-top: 28px;
  color: rgba(58, 43, 39, 0.92);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
}

.hero-media {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 5;
  justify-self: center;
  width: min(100%, 430px);
  margin-top: 54px;
}

.hero-media::before {
  content: "";
  position: absolute;
  left: -24px;
  top: -24px;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  background: rgba(177, 155, 165, 0.42);
  filter: blur(38px);
}

.video-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 242, 0.5);
  border-radius: 32px;
  background: var(--ink);
  box-shadow:
    0 30px 80px rgba(80, 53, 39, 0.26),
    0 0 0 12px rgba(255, 250, 242, 0.3);
}

.video-shell video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  opacity: 1;
}

.video-gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(23, 19, 17, 0.62), rgba(23, 19, 17, 0.08), transparent);
}

.video-caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(22px, 4vw, 34px);
  color: var(--cream);
  pointer-events: none;
}

.video-caption .eyebrow {
  margin-bottom: 12px;
  color: rgba(251, 247, 239, 0.75);
}

.video-caption p:last-child {
  max-width: 340px;
  margin: 0;
  font-family: var(--headline);
  font-size: clamp(2rem, 3.4vw, 3.55rem);
  font-weight: 400;
  line-height: 1.02;
}

.play-mark {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border: 1px solid rgba(251, 247, 239, 0.42);
  border-radius: 999px;
  background: rgba(251, 247, 239, 0.1);
  backdrop-filter: blur(12px);
}

.play-mark::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--cream);
}

.soft-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(81, 64, 62, 0.3), transparent);
}

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(48px, 8vw, 88px);
  align-items: start;
}

.about.section-pad {
  padding-top: clamp(34px, 5vw, 68px);
}

.portrait-frame {
  position: relative;
  margin: 0;
}

.portrait-image {
  position: relative;
  overflow: hidden;
  border-radius: 999px 999px 28px 28px;
  border: 1px solid rgba(255, 250, 242, 0.58);
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.34), rgba(238, 223, 203, 0.18)),
    var(--warm);
  box-shadow:
    0 30px 80px rgba(80, 53, 39, 0.17),
    0 0 0 14px rgba(255, 250, 242, 0.2);
}

.portrait-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(1.04) contrast(0.98) sepia(0.03);
}

.portrait-image::before {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(255, 250, 242, 0.36);
  border-radius: 999px 999px 28px 28px;
  pointer-events: none;
  z-index: 1;
}

.portrait-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(23, 19, 17, 0.22), transparent 46%),
    linear-gradient(135deg, rgba(238, 223, 203, 0.14), transparent 48%);
  border-radius: 999px 999px 28px 28px;
  pointer-events: none;
}

.portrait-frame figcaption {
  position: relative;
  max-width: 380px;
  margin: clamp(58px, 6vw, 82px) auto 0;
  color: #3f302d;
  font-family: "Bradley Hand", "Apple Chancery", "Segoe Print", "Segoe Script", "Brush Script MT", cursive;
  font-size: clamp(1.65rem, 2.8vw, 2.45rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.08;
  text-align: center;
  transform: rotate(-4deg) skewX(-7deg);
  transform-origin: center;
}

.portrait-frame figcaption::after {
  content: "";
  display: block;
  width: 58%;
  height: 1.5px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: rgba(50, 73, 64, 0.82);
  transform: rotate(-2deg) skewX(-8deg);
}

.about h2,
.topics-intro h2,
.voices h2,
.contact h2 {
  font-size: clamp(2.8rem, 5.8vw, 6.1rem);
  line-height: 1;
}

.text-flow {
  margin-top: 40px;
  color: rgba(81, 64, 62, 0.86);
  font-size: clamp(1.06rem, 1.6vw, 1.22rem);
  line-height: 1.8;
}

.text-flow p {
  margin: 0 0 24px;
}

.topics-band {
  padding-block: clamp(80px, 10vw, 132px);
  background:
    radial-gradient(circle at 16% 8%, rgba(177, 155, 165, 0.34), transparent 28rem),
    radial-gradient(circle at 86% 82%, rgba(142, 141, 88, 0.18), transparent 26rem),
    linear-gradient(135deg, #faefe4 0%, #ecd8c3 44%, #e4e6d2 100%);
  color: var(--ink);
}

.topics-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 7vw, 72px);
}

.topics-intro > p {
  max-width: 720px;
  margin: 0;
  color: rgba(81, 64, 62, 0.78);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.75;
}

.topic-grid,
.ceremony-grid {
  display: grid;
  margin-top: clamp(48px, 7vw, 72px);
  border-top: 1px solid rgba(251, 247, 239, 0.18);
}

.topic-grid {
  grid-template-columns: repeat(5, 1fr);
}

.ceremony-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  border-top: 0;
}

.topic-grid article,
.ceremony-grid article {
  min-height: 310px;
  padding: 24px;
  border-right: 1px solid rgba(81, 64, 62, 0.14);
}

.ceremony-grid article {
  border: 1px solid rgba(81, 64, 62, 0.1);
  border-radius: 28px;
  background: rgba(255, 250, 242, 0.7);
  box-shadow: 0 24px 70px rgba(80, 53, 39, 0.1);
}

.ceremony-grid article:nth-child(1) {
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.78), rgba(234, 219, 225, 0.34));
}

.ceremony-grid article:nth-child(2) {
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.78), rgba(228, 230, 210, 0.44));
}

.ceremony-grid article:nth-child(3) {
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.78), rgba(238, 223, 203, 0.5));
}

.topic-grid article:last-child,
.ceremony-grid article:last-child {
  border-right: 0;
}

.topic-grid span,
.ceremony-grid span {
  display: block;
  margin-bottom: 34px;
  color: rgba(142, 141, 88, 0.28);
  font-family: var(--headline);
  font-size: 3.4rem;
  transition: color 200ms ease;
}

.ceremony-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0 0 26px;
  border-radius: 22px;
  object-fit: cover;
  opacity: 0.98;
  filter: saturate(1.02) contrast(0.98) sepia(0.03);
  box-shadow: 0 18px 42px rgba(80, 53, 39, 0.14);
}

.ceremony-image--trauung {
  object-position: center 54%;
}

.ceremony-image--kinderwillkommen {
  object-position: center 48%;
}

.ceremony-image--trauer {
  object-position: center 56%;
}

.topic-grid article:hover span,
.ceremony-grid article:hover span {
  color: var(--olive);
}

.topic-grid h3,
.ceremony-grid h3 {
  margin: 0;
  font-family: var(--headline);
  font-size: 2rem;
  font-weight: 400;
}

.ceremony-grid h4 {
  margin: 26px 0 0;
  color: var(--moss);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
}

.topic-grid p,
.ceremony-grid p {
  margin: 12px 0 0;
  color: rgba(81, 64, 62, 0.78);
  font-size: 0.95rem;
  line-height: 1.75;
}

.statement {
  padding-block: clamp(82px, 11vw, 140px);
}

.statement blockquote {
  max-width: 1050px;
  margin: 0 auto;
  color: #4a3734;
  font-family: var(--headline);
  font-size: clamp(3rem, 7vw, 7.5rem);
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

.voices {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(44px, 8vw, 88px);
}

.voice-list {
  border-top: 1px solid rgba(81, 64, 62, 0.24);
}

.voice-list figure {
  margin: 0;
  padding-block: 36px;
  border-bottom: 1px solid rgba(81, 64, 62, 0.24);
}

.voice-list blockquote {
  margin: 0;
  color: var(--ink);
  font-family: var(--headline);
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  line-height: 1.08;
}

.voice-list figcaption {
  margin-top: 18px;
  color: rgba(81, 64, 62, 0.7);
  font-size: 0.92rem;
}

.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 7vw, 76px);
  align-items: end;
  overflow: hidden;
  border-radius: 32px;
  padding: clamp(56px, 8vw, 84px) clamp(28px, 7vw, 72px);
  background:
    radial-gradient(circle at 92% 10%, rgba(177, 155, 165, 0.32), transparent 16rem),
    linear-gradient(135deg, #3b544a 0%, #51403e 100%);
  color: var(--cream);
  box-shadow: 0 28px 80px rgba(80, 53, 39, 0.18);
}

.contact-panel::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(238, 223, 203, 0.2);
  filter: blur(44px);
}

.contact-panel > * {
  position: relative;
  z-index: 1;
}

.contact-panel .eyebrow {
  color: rgba(251, 247, 239, 0.65);
}

.contact-copy {
  color: rgba(251, 247, 239, 0.76);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.75;
}

.contact-copy p {
  margin: 0;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.contact-actions .button {
  margin-top: 0;
}

.button {
  display: inline-flex;
  margin-top: 30px;
  border: 1px solid rgba(251, 247, 239, 0.42);
  border-radius: 999px;
  padding: 16px 28px;
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button:hover {
  background: var(--cream);
  color: var(--moss);
  transform: translateY(-2px);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  border: 1px solid rgba(251, 247, 239, 0.32);
  border-radius: 999px;
  padding: 12px 18px;
  color: rgba(251, 247, 239, 0.86);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.social-link:hover,
.social-link:focus-visible {
  background: rgba(251, 247, 239, 0.14);
  color: var(--cream);
  transform: translateY(-2px);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-block: 32px;
  color: rgba(81, 64, 62, 0.78);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-nav a {
  text-decoration: underline;
  text-decoration-color: rgba(81, 64, 62, 0.24);
  text-underline-offset: 4px;
  transition:
    color 180ms ease,
    text-decoration-color 180ms ease;
}

.footer-nav a:hover {
  color: var(--moss);
  text-decoration-color: currentColor;
}

.cookie-note {
  position: fixed;
  right: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 32px);
  z-index: 80;
  width: min(520px, calc(100% - 32px));
  border: 1px solid rgba(81, 64, 62, 0.14);
  border-radius: 26px;
  padding: 22px;
  background: rgba(255, 250, 242, 0.92);
  box-shadow: 0 24px 80px rgba(80, 53, 39, 0.18);
  backdrop-filter: blur(18px);
  color: var(--clay);
  animation: cookie-rise 420ms ease both;
}

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

.cookie-note.is-hiding {
  animation: cookie-leave 220ms ease both;
}

.cookie-kicker {
  margin: 0 0 6px;
  color: var(--olive);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cookie-note h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--headline);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.cookie-note p:not(.cookie-kicker) {
  margin: 14px 0 0;
  font-size: 0.94rem;
  line-height: 1.68;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.cookie-actions a {
  color: var(--moss);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(50, 73, 64, 0.28);
  text-underline-offset: 4px;
}

.cookie-actions button {
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  background: var(--moss);
  color: var(--cream);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.cookie-actions button:hover {
  background: var(--clay);
  transform: translateY(-1px);
}

.cookie-actions button:focus-visible,
.cookie-actions a:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 4px;
}

.legal-page {
  max-width: 920px;
  padding-block: clamp(56px, 9vw, 112px);
}

.legal-page h1 {
  max-width: 15ch;
  margin: 0 0 clamp(44px, 7vw, 72px);
  font-family: var(--headline);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 1;
}

.legal-section {
  padding-block: clamp(36px, 6vw, 64px);
  border-top: 1px solid rgba(81, 64, 62, 0.2);
  color: var(--clay);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-section h2,
.legal-section h3 {
  color: var(--ink);
  font-family: var(--headline);
  font-weight: 400;
}

.legal-section h2 {
  margin: 0 0 28px;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.96;
}

.legal-section h3 {
  margin: 34px 0 10px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.legal-section p,
.legal-section address {
  margin: 0 0 18px;
}

.legal-section address {
  font-style: normal;
}

.legal-section a {
  color: var(--moss);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-note {
  display: inline-block;
  border: 1px solid rgba(81, 64, 62, 0.2);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(251, 247, 239, 0.58);
  font-size: 0.9rem;
}

.reveal {
  animation: rise 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.delay-1 {
  animation-delay: 180ms;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cookie-rise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes cookie-leave {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  to {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
}

@media (max-width: 980px) {
  .about,
  .topics-intro,
  .voices,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(250px, 0.8fr);
    gap: clamp(22px, 4vw, 36px);
  }

  .video-caption {
    display: none;
  }

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

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

  .topic-grid article,
  .ceremony-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(251, 247, 239, 0.18);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .back-to-top {
    display: grid;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-block: 14px 10px;
  }

  .brand {
    display: none;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: grid;
    width: 100%;
    gap: 8px;
  }

  .mobile-nav-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .mobile-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    color: rgba(49, 38, 34, 0.88);
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    transition:
      border-color 180ms ease,
      color 180ms ease,
      transform 180ms ease;
  }

  .mobile-nav-row--meta a {
    min-height: 34px;
    padding: 6px 2px;
    color: rgba(81, 64, 62, 0.72);
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    text-decoration: underline;
    text-decoration-color: rgba(81, 64, 62, 0.2);
    text-underline-offset: 5px;
  }

  .mobile-nav-row--meta a + a::before {
    content: "·";
    margin-right: 8px;
    color: rgba(81, 64, 62, 0.42);
    text-decoration: none;
  }

  .mobile-nav-row--ceremonies {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .mobile-nav-row--ceremonies a {
    min-width: 0;
    min-height: 38px;
    border: 0;
    border-bottom: 1px solid rgba(81, 64, 62, 0.2);
    border-radius: 0;
    padding: 8px 2px 7px;
    background: transparent;
    box-shadow: none;
    color: rgba(81, 64, 62, 0.82);
    font-size: clamp(0.68rem, 3vw, 0.76rem);
    letter-spacing: 0.02em;
  }

  .mobile-nav a:hover,
  .mobile-nav a:focus-visible {
    color: var(--moss);
    transform: none;
  }

  .mobile-nav-row--ceremonies a:hover,
  .mobile-nav-row--ceremonies a:focus-visible {
    border-bottom-color: var(--moss);
  }

  .hero {
    gap: 16px;
    padding-top: 10px;
  }

  .hero h1 {
    order: 3;
    font-size: clamp(2.65rem, 9vw, 4.1rem);
    line-height: 1.08;
  }

  .hero-eyebrow {
    order: 1;
    margin: 0 0 0;
    font-size: clamp(0.82rem, 3.6vw, 0.98rem);
    letter-spacing: 0.11em;
  }

  .local-note {
    display: block;
    order: 2;
    max-width: 100%;
    margin: -4px 0 2px;
    color: rgba(81, 64, 62, 0.74);
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .video-shell {
    border-radius: 24px;
  }

  .hero-media {
    order: 4;
    width: 100%;
    margin-top: 0;
  }

  .lead {
    order: 5;
    margin-top: 8px;
  }

  .hero-text {
    order: 6;
  }

  .video-caption {
    align-items: flex-start;
  }

  .play-mark {
    display: none;
  }

  .portrait-frame,
  .portrait-frame img {
    min-height: 460px;
  }

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

  .statement blockquote {
    text-align: left;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-note {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    padding: 14px;
    border-radius: 22px;
  }

  .cookie-kicker {
    margin-bottom: 4px;
    font-size: 0.64rem;
    letter-spacing: 0.1em;
  }

  .cookie-note h2 {
    font-size: 1.55rem;
    line-height: 1.02;
  }

  .cookie-note p:not(.cookie-kicker) {
    margin-top: 8px;
    font-size: 0.78rem;
    line-height: 1.48;
  }

  .cookie-actions {
    gap: 10px;
    margin-top: 12px;
  }

  .cookie-actions button {
    padding: 10px 15px;
  }
}

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

  .hero::before {
    inset: 0 auto auto 0;
    width: 80%;
  }

  .hero-eyebrow,
  .local-note,
  .hero h1,
  .hero-media,
  .lead,
  .hero-text {
    grid-column: 1;
  }

  .hero h1 {
    grid-row: auto;
  }

  .hero-media {
    grid-row: auto;
    width: min(100%, 420px);
    margin-top: 0;
    margin-bottom: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
