:root {
  --bg: #252523;
  --ink: #f8f4ea;
  --ink-soft: rgba(248, 244, 234, 0.72);
  --paper: #f5efe3;
  --paper-ink: #242421;
  --muted: #72695f;
  --line: rgba(248, 244, 234, 0.18);
  --accent: #d6a66d;
  --sage: #90b7aa;
  --rose: #c58b8b;
  --fern: #364740;
  --shell: #ede5d8;
  --blush: #efe0dc;
  --header-height: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-sans: "Plus Jakarta Sans", Arial, sans-serif;
  --font-serif-text: "Source Serif 4 Text", Georgia, serif;
  --font-serif-subhead: "Source Serif 4 18pt", "Source Serif 4 Text", Georgia, serif;
  --font-serif-heading: "Source Serif 4 36pt", "Source Serif 4 Text", Georgia, serif;
  --font-serif-display: "Source Serif 4 48pt", "Source Serif 4 36pt", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  letter-spacing: 0;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

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

button {
  color: inherit;
  font: inherit;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(21, 21, 19, 0.74), rgba(21, 21, 19, 0));
  transition: background 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease;
}

.site-header.is-scrolled,
body.nav-open .site-header {
  border-color: var(--line);
  background: rgba(25, 25, 23, 0.88);
  backdrop-filter: blur(18px);
}

.site-nav {
  min-height: var(--header-height);
  width: min(100% - 48px, 1360px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  max-width: min(52vw, 620px);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.05rem, 1vw, 1.2rem);
  font-style: italic;
  line-height: 1.05;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links a,
.nav-dropdown__toggle {
  position: relative;
  color: var(--ink-soft);
  transition: color 180ms ease;
}

.nav-links a::before,
.nav-dropdown__toggle::before,
.text-link::before,
.site-footer a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: currentColor;
  opacity: 0.34;
}

.nav-links a::after,
.nav-dropdown__toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.text-link::after,
.site-footer a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms var(--ease);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-dropdown__toggle:hover,
.nav-dropdown__toggle:focus-visible {
  color: var(--ink);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-dropdown__toggle:hover::after,
.nav-dropdown__toggle:focus-visible::after,
.nav-dropdown.is-open .nav-dropdown__toggle::after,
.text-link:hover::after,
.text-link:focus-visible::after,
.site-footer a:hover::after,
.site-footer a:focus-visible::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  top: 100%;
  left: -18px;
  right: -18px;
  height: 18px;
  pointer-events: none;
}

.nav-dropdown:hover::before,
.nav-dropdown:focus-within::before,
.nav-dropdown.is-open::before {
  pointer-events: auto;
}

.nav-dropdown__toggle {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 14px);
  left: -18px;
  min-width: 238px;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 18px;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(25, 25, 23, 0.96);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 220ms ease, transform 220ms var(--ease);
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown__menu a {
  display: inline-block;
  width: fit-content;
}

.nav-mobile-footer {
  display: none;
}

.nav-mobile-logo {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(248, 244, 234, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
  transform-origin: center;
  transition: transform 220ms ease, opacity 220ms ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.work-grid {
  min-height: 100svh;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #11110f;
}

.work-card {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  outline-offset: -8px;
}

.work-card img {
  width: 100%;
  height: 100%;
  min-height: 100svh;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 900ms var(--ease), filter 900ms var(--ease);
}

.work-card__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.04) 36%, rgba(0, 0, 0, 0.42)),
    color-mix(in srgb, var(--card-accent) 24%, transparent);
  opacity: 0.72;
  transition: opacity 600ms var(--ease), background 600ms var(--ease);
}

.work-card__label {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: min(82%, 360px);
  transform: translate(-50%, -42%);
  color: var(--ink);
  font-size: clamp(1.4rem, 2.9vw, 3.35rem);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 14px 42px rgba(0, 0, 0, 0.42);
  transition: transform 700ms var(--ease), opacity 700ms var(--ease);
}

.work-card:hover img,
.work-card:focus-visible img {
  filter: saturate(1.07) contrast(1.03);
  transform: scale(1.065);
}

.work-card:hover .work-card__shade,
.work-card:focus-visible .work-card__shade {
  opacity: 0.92;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.1) 42%, rgba(0, 0, 0, 0.56)),
    color-mix(in srgb, var(--card-accent) 34%, transparent);
}

.work-card:hover .work-card__label,
.work-card:focus-visible .work-card__label {
  transform: translate(-50%, -50%);
}

.subpage-hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  padding: calc(var(--header-height) + 72px) clamp(24px, 6vw, 92px) clamp(64px, 9vw, 120px);
  background: #11110f;
}

.subpage-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.subpage-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
}

.subpage-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.84), rgba(17, 17, 15, 0.32) 55%, rgba(17, 17, 15, 0.18)),
    linear-gradient(0deg, rgba(17, 17, 15, 0.58), transparent 50%);
}

.subpage-hero__content {
  width: min(900px, 100%);
}

.subpage-hero h1 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(3.4rem, 5vw, 6rem);
  font-weight: 400;
  line-height: 0.9;
  text-wrap: balance;
}

.subpage-hero__content p:not(.eyebrow) {
  width: min(680px, 100%);
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 1.7vw, 1.35rem);
}

.subpage-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 28px;
  margin-top: 34px;
}

.subpage-actions .button-link,
.subpage-actions .text-link {
  margin-top: 0;
}

.subpage-actions .button-link {
  --button-link-color: var(--ink);
  --button-link-hover-color: #11110f;
}

.subpage-intro,
.shooting-types-section {
  padding: clamp(72px, 9vw, 140px) clamp(24px, 5vw, 72px);
  color: var(--paper-ink);
}

.subpage-intro {
  background:
    linear-gradient(135deg, rgba(197, 139, 139, 0.16), transparent 44%),
    var(--shell);
}

.subpage-intro__grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.subpage-intro h2 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2.35rem, 5.5vw, 5.8rem);
  font-weight: 400;
  line-height: 0.98;
}

.subpage-intro__copy p {
  margin: 0;
  color: #514a43;
  font-size: clamp(1.02rem, 1.45vw, 1.24rem);
}

.subpage-intro__copy p + p {
  margin-top: 18px;
}

.shooting-types-section {
  background: var(--paper);
}

.shooting-types__grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.shooting-types__grid article {
  min-height: 300px;
  padding: clamp(26px, 3.4vw, 42px);
  border: 1px solid rgba(36, 36, 33, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
}

.shooting-types__grid span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.shooting-types__grid h3 {
  margin: 28px 0 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.shooting-types__grid p {
  margin: 20px 0 0;
  color: #514a43;
}

.references-section--subpage {
  background: #11110f;
}

.about-section {
  min-height: 74svh;
  display: grid;
  place-items: center;
  padding: clamp(72px, 9vw, 140px) 24px;
  background:
    linear-gradient(135deg, rgba(144, 183, 170, 0.16), transparent 42%),
    var(--paper);
  color: var(--paper-ink);
}

.about-copy {
  width: min(860px, 100%);
  text-align: center;
}

.about-logo {
  width: min(420px, 72vw);
  height: auto;
  margin: 0 auto clamp(28px, 4vw, 48px);
  display: block;
  opacity: 0.86;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.about-copy h1 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2.5rem, 3.5vw, 6.9rem);
  font-weight: 400;
  line-height: 0.96;
}

.about-copy p:not(.eyebrow) {
  width: min(620px, 100%);
  margin: 30px auto 0;
  color: #514a43;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.button-link {
  --button-link-color: currentColor;
  --button-link-hover-color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 36px;
  padding: 0 24px;
  border: 1px solid var(--button-link-color);
  border-radius: 999px;
  background: transparent;
  color: var(--button-link-color);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button-link:hover,
.button-link:focus-visible {
  background: #676767;
  color: #f4efe3;
  transform: translateY(-2px);
}

.section-kicker {
  width: min(980px, 100%);
  margin: 0 auto clamp(34px, 5vw, 58px);
  text-align: center;
}

.section-kicker h2,
.feature-copy h2,
.contact-copy h2,
.promo-link strong {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2.35rem, 3.5vw, 5.9rem);
  font-weight: 400;
  line-height: 0.98;
}

.section-kicker h2 {
  text-wrap: balance;
}

.feature-copy h3,
.about-copy h3,
.about-me-copy h3,
.subpage-intro__copy h3,
.contact-copy h3,
.journal-card-copy h3,
.package-card h3 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  font-weight: 400;
  line-height: 1.08;
  text-wrap: balance;
}

.feature-copy h3 + p,
.about-copy h3 + p,
.about-me-copy h3 + p,
.subpage-intro__copy h3 + p,
.contact-copy h3 + p {
  margin-top: 14px;
}

.feature-section {
  min-height: 82svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: stretch;
  align-content: center;
  gap: clamp(32px, 6vw, 92px);
  padding: clamp(72px, 9vw, 140px) 0;
}

.feature-section--image-left,
.feature-section--theme-light {
  background: var(--shell);
  color: var(--paper-ink);
  --button-link-color: var(--paper-ink);
  --button-link-hover-color: var(--shell);
}

.feature-section--image-right,
.feature-section--theme-dark {
  background: #191917;
  color: var(--ink);
  --button-link-color: var(--ink);
  --button-link-hover-color: #191917;
}

.feature-section--image-left.feature-section--theme-dark {
  background: #191917;
  color: var(--ink);
  --button-link-color: var(--ink);
  --button-link-hover-color: #191917;
}

.feature-section--image-right.feature-section--theme-light {
  background: var(--shell);
  color: var(--paper-ink);
  --button-link-color: var(--paper-ink);
  --button-link-hover-color: var(--shell);
}

.feature-section--image-right .feature-media {
  order: 2;
}

.feature-section--image-left .feature-copy {
  padding-right: clamp(24px, 5vw, 72px);
}

.feature-section--image-right .feature-copy {
  justify-self: end;
  padding-left: clamp(24px, 5vw, 72px);
}

.feature-media {
  overflow: hidden;
  align-self: stretch;
  min-height: min(420px, 70svh);
  max-height: min(95svh, 2000px);
  background: rgba(0, 0, 0, 0.12);
}

.feature-media img,
.about-me-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-media img {
  display: block;
  object-fit: cover;
  object-position: center center;
}

.feature-media img {
  transform: scale(1.01);
  transition: transform 900ms var(--ease);
}

.feature-section:hover .feature-media img {
  transform: scale(1.045);
}

.feature-copy {
  width: min(620px, 100%);
  align-self: center;
}

.feature-copy p:not(.eyebrow),
.about-me-copy p,
.contact-copy p {
  color: inherit;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.feature-section--image-left .feature-copy p:not(.eyebrow),
.feature-section--theme-light .feature-copy p:not(.eyebrow),
.about-me-copy p,
.packages-section .section-kicker h2 + p {
  color: #514a43;
}

.feature-section--image-right .feature-copy p:not(.eyebrow),
.feature-section--theme-dark .feature-copy p:not(.eyebrow),
.trust-section .section-kicker,
.references-section .section-kicker,
.contact-copy p {
  color: var(--ink-soft);
}

.feature-section--image-left.feature-section--theme-dark .feature-copy p:not(.eyebrow) {
  color: var(--ink-soft);
}

.feature-section--image-right.feature-section--theme-light .feature-copy p:not(.eyebrow) {
  color: #514a43;
}

.feature-section--theme-light .text-link,
.feature-section--image-left:not(.feature-section--theme-dark) .text-link {
  color: var(--paper-ink);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: inherit;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.72;
}

.text-link {
  display: inline-flex;
  position: relative;
  margin-top: 24px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-copy p:not(.eyebrow) .text-link {
  display: inline;
  margin-top: 0;
  font-size: 0.92em;
  font-weight: 600;
  text-transform: none;
  vertical-align: baseline;
}

.feature-copy p:not(.eyebrow) .text-link::before,
.feature-copy p:not(.eyebrow) .text-link::after {
  bottom: -0.12em;
}

.process-section,
.frames-section,
.contact-cta-section {
  padding: clamp(72px, 9vw, 140px) clamp(24px, 5vw, 72px);
}

.process-section {
  background:
    linear-gradient(135deg, rgba(214, 166, 109, 0.16), transparent 44%),
    var(--paper);
  color: var(--paper-ink);
}

.process-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.process-intro {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.process-intro p {
  margin: 0;
  color: #514a43;
  font-size: clamp(1.05rem, 1.45vw, 1.24rem);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.process-card {
  position: relative;
  min-height: 260px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(36, 36, 33, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.4);
  overflow: visible;
}

.process-card span {
  position: absolute;
  top: clamp(-18px, -1.6vw, -8px);
  left: clamp(-10px, -0.8vw, -4px);
  display: grid;
  place-items: center;
  width: clamp(42px, 4.2vw, 58px);
  aspect-ratio: 1;
  border: 1px solid rgba(36, 36, 33, 0.32);
  border-radius: 50%;
  background: var(--paper);
  color: var(--paper-ink);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1rem, 2.1vw, 2rem);
  font-weight: 400;
  line-height: 1;
}

.process-card h3 {
  margin: clamp(30px, 4vw, 54px) 0 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.process-card p {
  margin: 18px 0 0;
  color: #514a43;
}

.about-me-section,
.packages-section,
.faq-section {
  padding: clamp(72px, 9vw, 140px) clamp(24px, 5vw, 72px);
  background: var(--paper);
  color: var(--paper-ink);
}

.about-me-section {
  background:
    linear-gradient(135deg, rgba(144, 183, 170, 0.22), transparent 44%),
    var(--shell);
}

.about-me-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: end;
}

.about-me-copy {
  align-self: center;
}

.about-me-copy p {
  margin: 0;
}

.about-me-copy p + p {
  margin-top: 18px;
}

.about-me-image {
  min-height: clamp(420px, 62svh, 720px);
  overflow: hidden;
}

.about-facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: rgba(36, 36, 33, 0.14);
}

.about-facts div {
  padding: clamp(22px, 3vw, 36px);
  background: rgba(245, 239, 227, 0.78);
}

.about-facts dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.about-facts dd {
  margin: 0;
}

.trust-section,
.references-section,
.contact-section {
  padding: clamp(72px, 9vw, 140px) clamp(24px, 5vw, 72px);
  background: var(--bg);
  color: var(--ink);
}

.trust-section {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(120deg, rgba(17, 17, 15, 0.82), rgba(17, 17, 15, 0.74)),
    var(--trust-bg, url("uploads/schwarz-weisses-hochzeitsfoto-brautpaars-beim-kuss-361399fb6448-2000.webp")) center center / cover no-repeat,
    var(--bg);
}

.trust-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(17, 17, 15, 0.24);
}

.trust-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.3fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.trust-proof-stack {
  display: grid;
  align-items: start;
  gap: 16px;
}

.trust-proof-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(248, 244, 234, 0.22);
  border-radius: 8px;
  background: rgba(248, 244, 234, 0.08);
  color: var(--ink);
}

.trust-proof-card--linked {
  transition: border-color 240ms ease, background 240ms ease, transform 240ms ease;
}

.trust-proof-card--linked:hover,
.trust-proof-card--linked:focus-visible {
  border-color: rgba(214, 166, 109, 0.62);
  background: rgba(248, 244, 234, 0.12);
  transform: translateY(-3px);
}

.trust-proof-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.trust-proof-card .eyebrow,
.package-card__type {
  margin: 0;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-proof-value,
.trust-score strong {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 400;
  line-height: 0.9;
}

.trust-proof-value {
  display: block;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
}

.trust-score {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.trust-score strong {
  font-size: clamp(3.4rem, 6vw, 5.8rem);
}

.trust-score small {
  color: var(--ink-soft);
  font-size: 1rem;
  font-weight: 800;
}

.trust-stars {
  color: var(--accent);
  font-size: 0.95rem;
  letter-spacing: 0;
}

.trustlocal-pill {
  padding: 7px 10px;
  border: 1px solid rgba(214, 166, 109, 0.5);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-proof-card__copy {
  margin: 0;
  color: var(--ink-soft);
}

.trust-proof-card__copy strong {
  color: var(--ink);
  font-weight: 800;
}

.trust-proof-card .text-link {
  justify-self: start;
  margin-top: 2px;
  color: var(--ink);
}

.trust-proof-card--linked:hover .trust-proof-link::after,
.trust-proof-card--linked:focus-visible .trust-proof-link::after {
  transform: scaleX(1);
}

.quote-grid {
  column-count: 2;
  column-gap: 16px;
}

.quote-card,
.package-card {
  border-radius: 8px;
}

.quote-card {
  display: grid;
  align-content: start;
  gap: 22px;
  break-inside: avoid;
  margin: 0 0 16px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(248, 244, 234, 0.16);
  background: rgba(248, 244, 234, 0.08);
}

.quote-card blockquote {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1rem;
  line-height: 1.45;
  overflow-wrap: break-word;
  text-wrap: pretty;
}

.quote-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.promo-banner {
  background: var(--rose);
  color: #201d1a;
}

.promo-link {
  min-height: 360px;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(52px, 8vw, 112px) clamp(24px, 8vw, 120px);
  background:
    linear-gradient(90deg, rgba(245, 239, 227, 0.72), rgba(144, 183, 170, 0.28)),
    var(--blush);
}

.promo-link strong {
  max-width: 980px;
}

.promo-link > span:not(.eyebrow) {
  width: min(620px, 100%);
  color: #514a43;
}

.promo-cta {
  justify-self: start;
}

.promo-banner:hover .promo-banner__media img,
.promo-banner:focus-within .promo-banner__media img {
  transform: scale(1.045);
}

.promo-banner--image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #11110f;
  color: var(--ink);
}

.promo-banner--image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(17, 17, 15, 0.78), rgba(17, 17, 15, 0.16));
  pointer-events: none;
}

.promo-banner__media {
  position: absolute;
  inset: 0;
}

.promo-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 900ms var(--ease);
}

.promo-banner--image .promo-link {
  position: relative;
  z-index: 2;
  min-height: 520px;
  background: transparent;
}

.promo-banner--image .promo-link > span:not(.eyebrow) {
  color: var(--ink-soft);
}

.promo-banner--image .button-link {
  --button-link-color: var(--ink);
  --button-link-hover-color: #201d1a;
}

.promo-banner--image .promo-link:hover .promo-cta,
.promo-banner--image .promo-link:focus-visible .promo-cta {
  background: var(--button-link-color);
  color: var(--button-link-hover-color);
}

.frames-section {
  background:
    linear-gradient(135deg, rgba(214, 166, 109, 0.12), transparent 42%),
    #11110f;
  color: var(--ink);
}

.frames-story {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 56px);
}

.frames-story p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.frames-quote-label {
  margin-bottom: 14px !important;
  color: var(--accent) !important;
  font-size: 0.78rem !important;
  font-style: italic;
  font-weight: 800;
}

.frames-meta {
  width: min(760px, 100%);
  margin: clamp(26px, 4vw, 46px) auto;
  padding-top: 22px;
  border-top: 1px solid rgba(248, 244, 234, 0.16);
  color: var(--ink-soft);
  font-size: 0.82rem;
  text-align: center;
}

.frames-gallery {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.frames-gallery figure,
.frames-hero-image {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
}

.frames-gallery img,
.frames-hero-image img {
  width: 100%;
  height: auto;
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.frames-gallery figure:hover img,
.frames-hero-image:hover img {
  opacity: 0.9;
  transform: scale(1.025);
}

.frames-hero-image {
  width: min(1180px, 100%);
  margin: 16px auto 0;
}

.packages-section {
  background: var(--paper);
}

.package-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.package-card {
  display: grid;
  align-content: start;
  min-height: 380px;
  padding: clamp(26px, 3.4vw, 42px);
  border: 1px solid rgba(36, 36, 33, 0.12);
  background: rgba(255, 255, 255, 0.36);
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease, background 240ms ease;
}

.package-card:hover,
.package-card:focus-within {
  border-color: rgba(36, 36, 33, 0.24);
  box-shadow: 0 24px 70px rgba(17, 17, 15, 0.12);
  transform: translateY(-6px);
}

.package-card--featured {
  background: #242421;
  color: var(--ink);
}

.package-card h3 {
  margin: 18px 0 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.package-card p:not(.package-card__type) {
  margin: 22px 0 0;
  color: #514a43;
}

.package-card--featured p:not(.package-card__type) {
  color: var(--ink-soft);
}

.package-card strong {
  margin-top: 34px;
  font-size: clamp(1.4rem, 2.2vw, 2.1rem);
}

.package-card a {
  --button-link-color: currentColor;
  --button-link-hover-color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--button-link-color);
  border-radius: 999px;
  justify-self: start;
  position: relative;
  margin-top: 26px;
  color: var(--button-link-color);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.package-card:not(.package-card--featured) a {
  --button-link-color: #11110f;
  --button-link-hover-color: var(--paper);
}

.package-card a:hover,
.package-card a:focus-visible {
  background: var(--button-link-color);
  border-color: var(--button-link-color);
  color: var(--button-link-hover-color);
  transform: translateY(-2px);
}

.package-card--featured a:hover,
.package-card--featured a:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: #11110f;
}

.references-section {
  background: #11110f;
}

.references-section > .section-heading {
  width: min(50%, 660px);
  margin-right: auto;
}

.journal-collage-section {
  padding: clamp(52px, 7vw, 104px) clamp(24px, 5vw, 72px);
  background: #11110f;
}

.journal-collage {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.journal-collage img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(100svh, 1600px);
  object-fit: contain;
  background: rgba(255, 255, 255, 0.04);
}

.reference-grid {
  width: min(1320px, 100%);
  margin: 0 auto;
  column-count: var(--gallery-columns, 4);
  column-gap: 10px;
}

.gallery-tile {
  break-inside: avoid;
  margin: 0 0 10px;
  overflow: hidden;
  background: #000;
}

.gallery-tile--wide {
  grid-column: auto;
}

.gallery-tile--tall {
  grid-row: auto;
}

.gallery-tile img {
  width: 100%;
  height: auto;
  transform: scale(1);
  transition: transform 700ms var(--ease), opacity 700ms var(--ease);
}

.gallery-tile:hover img {
  opacity: 0.88;
  transform: scale(1.035);
}

.journal-section {
  padding: clamp(72px, 9vw, 140px) clamp(24px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(144, 183, 170, 0.2), transparent 48%),
    var(--paper);
  color: var(--paper-ink);
}

.odysseys-event-section,
.photo-video-section {
  padding: clamp(72px, 9vw, 140px) clamp(24px, 5vw, 72px);
  background: var(--paper);
  color: var(--paper-ink);
}

.odysseys-event-section {
  background: #151512;
  color: var(--ink);
}

.odysseys-event-card {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
}

.odysseys-event-copy {
  padding: clamp(30px, 5vw, 72px);
  align-self: center;
}

.odysseys-event-copy h2 {
  margin: 0 0 24px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2.4rem, 5.8vw, 5.4rem);
  font-weight: 400;
  line-height: 0.95;
}

.odysseys-event-copy p,
.odysseys-event-copy li {
  color: var(--ink-soft);
}

.odysseys-event-copy ul {
  margin: 26px 0 34px;
  padding-left: 1.1em;
}

.odysseys-event-media {
  min-height: min(76svh, 760px);
  overflow: hidden;
}

.odysseys-event-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-video-section .section-heading {
  width: min(840px, 100%);
  margin: 0 auto clamp(34px, 5vw, 64px);
  text-align: center;
}

.photo-video-grid {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.photo-video-section--2 .photo-video-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.photo-video-section--4 .photo-video-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.photo-video-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: #f7f4ed;
  border: 1px solid rgba(35, 34, 30, 0.12);
}

.photo-video-card > img,
.youtube-consent {
  width: 100%;
  aspect-ratio: 4 / 5;
}

.photo-video-card > img {
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-video-card__body {
  padding: 24px;
}

.photo-video-card__body h3 {
  margin: 0 0 12px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
  font-weight: 400;
}

.photo-video-card__body p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.youtube-consent {
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    linear-gradient(rgba(17, 17, 15, 0.68), rgba(17, 17, 15, 0.68)),
    #25231f;
  color: var(--ink);
  text-align: center;
}

.youtube-consent iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-consent.is-loaded {
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 0;
}

.youtube-consent__fallback {
  display: block;
  padding: 10px 12px;
  background: #151512;
  color: var(--ink);
  font-size: 0.85rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.youtube-consent__copy {
  max-width: 360px;
}

.youtube-consent__copy strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 400;
}

.youtube-consent__copy p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.youtube-consent button {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: transparent;
  color: var(--ink);
  padding: 12px 18px;
  cursor: pointer;
  font: inherit;
  transition: border-color 220ms var(--ease), background 220ms var(--ease);
}

.youtube-consent button:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
}

.journal-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: stretch;
}

.journal-feature,
.journal-card {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
}

.journal-feature a,
.journal-card a {
  min-height: 100%;
  display: grid;
  color: inherit;
}

.journal-feature img,
.journal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 780ms var(--ease), opacity 780ms var(--ease);
}

.journal-feature a:hover img,
.journal-feature a:focus-visible img,
.journal-card a:hover img,
.journal-card a:focus-visible img {
  opacity: 0.9;
  transform: scale(1.045);
}

.journal-feature a {
  grid-template-columns: minmax(0, 1fr);
}

.journal-feature img {
  min-height: clamp(380px, 44vw, 620px);
  max-height: 620px;
}

.journal-card-copy {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: clamp(24px, 3vw, 38px);
}

.journal-card-copy h3 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 3.1rem);
  font-weight: 400;
  line-height: 1.02;
}

.journal-card-copy p:not(.eyebrow) {
  margin: 0;
  color: #514a43;
}

.journal-card-copy .text-link {
  justify-self: start;
  margin-top: 8px;
  color: var(--paper-ink);
}

.journal-random {
  display: grid;
  gap: 16px;
}

.journal-card {
  min-height: 190px;
}

.journal-card a {
  grid-template-columns: minmax(120px, 0.42fr) minmax(0, 0.58fr);
}

.journal-card img {
  min-height: 190px;
}

.journal-card .journal-card-copy {
  padding: clamp(20px, 2.4vw, 28px);
}

.journal-card h3 {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.js .journal-card[data-random-post] {
  display: none;
}

.js .journal-card.is-picked {
  display: block;
}

.journal-footer {
  width: min(1180px, 100%);
  margin: 34px auto 0;
}

.journal-footer .text-link {
  color: var(--paper-ink);
}

.journal-archive-section {
  padding: clamp(72px, 9vw, 140px) clamp(24px, 5vw, 72px);
  background: #11110f;
  color: var(--ink);
}

.journal-archive-section .section-heading {
  width: min(980px, 100%);
  margin: 0 auto clamp(30px, 4vw, 50px);
  text-align: center;
}

.journal-archive-section .section-heading p:not(.eyebrow) {
  width: min(680px, 100%);
  margin: 20px auto 0;
  color: var(--ink-soft);
}

.journal-filter {
  width: min(1180px, 100%);
  margin: 0 auto clamp(28px, 4vw, 44px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.journal-filter button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(248, 244, 234, 0.22);
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.journal-filter button:hover,
.journal-filter button:focus-visible,
.journal-filter button.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: #201d1a;
  outline: none;
}

.journal-archive-grid {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.journal-archive-card {
  min-width: 0;
  background: rgba(248, 244, 234, 0.055);
}

.journal-archive-card[hidden] {
  display: none;
}

.journal-archive-card a {
  display: grid;
  min-height: 100%;
  color: inherit;
}

.journal-archive-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  background: #000;
}

.journal-archive-card__copy {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(20px, 2.6vw, 30px);
}

.journal-archive-card h3 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.5rem, 2.3vw, 2.35rem);
  font-weight: 400;
  line-height: 1.05;
}

.journal-archive-card p:not(.eyebrow) {
  margin: 0;
  color: var(--ink-soft);
}

.faq-section {
  background:
    linear-gradient(135deg, rgba(197, 139, 139, 0.16), transparent 46%),
    var(--shell);
}

.faq-list {
  width: min(920px, 100%);
  margin: 0 auto;
  border-top: 1px solid rgba(36, 36, 33, 0.18);
}

.faq-list details {
  border-bottom: 1px solid rgba(36, 36, 33, 0.18);
  transition: background 260ms ease;
}

.faq-list details:hover,
.faq-list details[open] {
  background: rgba(255, 255, 255, 0.22);
}

.faq-list details.is-animating {
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  padding-left: 30px;  
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--muted);
  font-weight: 400;
  transition: color 220ms ease, transform 320ms var(--ease);
}

.faq-list details[open] summary::after {
  content: "-";
  transform: rotate(180deg);
}

.faq-list p {
  margin: 0;
  max-width: 720px;
  padding: 0 0 26px 60px;
  color: #514a43;
}

.faq-list details p .text-link {
  display: inline;
  margin-top: 0;
  color: inherit;
  font-size: inherit;
  font-weight: 600;
  text-transform: none;
  vertical-align: baseline;
}

.faq-list details p .text-link::before,
.faq-list details p .text-link::after {
  bottom: -0.12em;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: clamp(32px, 7vw, 110px);
  align-items: center;
  background:
    linear-gradient(120deg, rgba(17, 17, 15, 0.9), rgba(54, 71, 64, 0.92)),
    var(--bg);
}

.contact-copy h2 {
  max-width: 820px;
}

.contact-copy p {
  width: min(620px, 100%);
  margin-top: 24px;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border: 1px solid rgba(248, 244, 234, 0.18);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 800;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.contact-actions a:hover,
.contact-actions a:focus-visible {
  border-color: rgba(248, 244, 234, 0.46);
  background: rgba(248, 244, 234, 0.1);
  transform: translateY(-2px);
}

.contact-actions .contact-primary {
  min-height: 68px;
  border-color: transparent;
  background: #2fb766;
  color: #07180e;
}

.contact-actions .contact-primary:hover,
.contact-actions .contact-primary:focus-visible {
  background: #42d279;
  color: #07180e;
}

.contact-cta-section {
  display: grid;
  gap: clamp(26px, 4vw, 44px);
  justify-items: center;
  /*background:
    linear-gradient(120deg, rgba(25, 25, 23, 0.92), rgba(54, 71, 64, 0.94)),
    var(--bg);*/
  color: var(--ink);
  text-align: center;
}

.contact-cta-copy {
  width: min(900px, 100%);
}

.contact-cta-copy h2 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2.6rem, 3.5vw, 6.2rem);
  font-weight: 400;
  line-height: 0.96;
}

.contact-cta-copy p:not(.eyebrow) {
  width: min(620px, 100%);
  margin: 24px auto 0;
  color: var(--ink-soft);
}

.social-actions {
  width: min(820px, 100%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.social-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(248, 244, 234, 0.2);
  border-radius: 999px;
  background: rgba(248, 244, 234, 0.06);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.social-action span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(248, 244, 234, 0.12);
  color: var(--accent);
  font-size: 0.7rem;
}

.social-action--primary {
  border-color: transparent;
  background: #2fb766;
  color: #07180e;
}

.social-action--primary span {
  background: rgba(7, 24, 14, 0.1);
  color: #07180e;
}

.social-action:hover,
.social-action:focus-visible {
  border-color: rgba(214, 166, 109, 0.58);
  background: rgba(248, 244, 234, 0.12);
  transform: translateY(-2px);
}

.social-action--primary:hover,
.social-action--primary:focus-visible {
  background: #42d279;
  color: #07180e;
}

.review-nudge {
  margin: 0;
  color: var(--ink-soft);
}

.review-nudge a {
  position: relative;
  color: var(--ink);
  font-weight: 800;
}

.review-nudge a::before,
.review-nudge a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: currentColor;
}

.review-nudge a::before {
  opacity: 0.34;
}

.review-nudge a::after {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms var(--ease);
}

.review-nudge a:hover::after,
.review-nudge a:focus-visible::after {
  transform: scaleX(1);
}

.tfp-intro-section,
.tfp-fit-section,
.tfp-form-section {
  padding: clamp(72px, 9vw, 140px) clamp(24px, 5vw, 72px);
}

.tfp-intro-section {
  background: var(--shell);
  color: var(--paper-ink);
}

.tfp-intro-layout {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1.14fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
}

.tfp-intro-copy h2,
.tfp-form-heading h2 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2.5rem, 6.2vw, 6.1rem);
  font-weight: 400;
  line-height: 0.96;
}

.tfp-intro-copy p,
.tfp-form-heading p {
  max-width: 680px;
  color: #514a43;
}

.tfp-facts {
  display: grid;
  gap: 12px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.tfp-facts li {
  padding: 16px 18px;
  border: 1px solid rgba(36, 36, 33, 0.12);
  background: rgba(255, 255, 255, 0.32);
}

.tfp-intro-media {
  display: grid;
  grid-template-columns: 0.76fr 1fr;
  gap: 12px;
  align-items: end;
}

.tfp-intro-media img,
.tfp-choice-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tfp-intro-media img:first-child {
  aspect-ratio: 4 / 5;
}

.tfp-intro-media img:last-child {
  aspect-ratio: 3 / 4;
}

.tfp-fit-section {
  background: #191917;
  color: var(--ink);
}

.tfp-fit-grid {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.tfp-fit-card {
  min-height: 100%;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(248, 244, 234, 0.16);
  background: rgba(248, 244, 234, 0.06);
}

.tfp-fit-card h2 {
  margin: 0 0 16px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 2.45rem);
  font-weight: 400;
}

.tfp-fit-card p,
.tfp-fit-card li {
  color: var(--ink-soft);
}

.tfp-fit-card ul {
  margin: 0;
  padding-left: 1.1em;
}

.tfp-form-section {
  background:
    linear-gradient(135deg, rgba(214, 166, 109, 0.12), transparent 42%),
    var(--paper);
  color: var(--paper-ink);
}

.tfp-form-wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: clamp(30px, 5vw, 64px);
}

.tfp-form {
  display: grid;
  gap: 34px;
}

.tfp-panel {
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(36, 36, 33, 0.12);
  background: rgba(255, 255, 255, 0.42);
}

.tfp-panel h3 {
  margin: 0 0 20px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.7rem, 3.2vw, 3rem);
  font-weight: 400;
}

.tfp-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.tfp-field {
  display: grid;
  gap: 8px;
}

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

.tfp-field label,
.tfp-privacy {
  color: #514a43;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tfp-privacy .text-link {
  color: var(--paper-ink);
}

.tfp-field input,
.tfp-field select,
.tfp-field textarea {
  width: 100%;
  border: 1px solid rgba(36, 36, 33, 0.18);
  border-radius: 0;
  padding: 14px 15px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--paper-ink);
  font: inherit;
}

.tfp-field textarea {
  min-height: 132px;
  resize: vertical;
}

.tfp-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tfp-choice {
  position: relative;
  display: grid;
  min-height: 100%;
  border: 1px solid rgba(36, 36, 33, 0.14);
  background: rgba(255, 255, 255, 0.44);
  cursor: pointer;
}

.tfp-choice input {
  position: absolute;
  inset: 14px auto auto 14px;
  z-index: 2;
  width: 22px;
  height: 22px;
  accent-color: var(--paper-ink);
}

.tfp-choice-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  aspect-ratio: 1.42 / 1;
  overflow: hidden;
}

.tfp-choice-copy {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.tfp-choice strong {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.tfp-choice small {
  color: #514a43;
  line-height: 1.5;
}

.tfp-choice:has(input:checked) {
  border-color: rgba(36, 36, 33, 0.54);
  box-shadow: inset 0 0 0 2px rgba(36, 36, 33, 0.24);
}

.tfp-actions {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.tfp-submit {
  min-height: 56px;
  border: 1px solid var(--paper-ink);
  border-radius: 999px;
  padding: 0 28px;
  background: var(--paper-ink);
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

.tfp-message-card {
  width: min(780px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(30px, 6vw, 70px);
  border: 1px solid rgba(248, 244, 234, 0.16);
  background: rgba(248, 244, 234, 0.08);
}

.tfp-message-card h1 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2.8rem, 8vw, 7.4rem);
  font-weight: 400;
  line-height: 0.94;
}

.awesome-hero .subpage-hero__media img {
  object-position: 50% 42%;
}

.awesome-invite-section,
.awesome-process-section,
.awesome-gallery-section,
.awesome-details-section {
  padding: clamp(72px, 9vw, 140px) clamp(24px, 5vw, 72px);
}

.awesome-invite-section,
.awesome-details-section {
  background: var(--shell);
  color: var(--paper-ink);
}

.awesome-invite-grid {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
}

.awesome-invite-copy h2,
.awesome-process-section h2,
.awesome-gallery-section h2,
.awesome-contact h2 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2.4rem, 6.2vw, 6.2rem);
  font-weight: 400;
  line-height: 0.96;
}

.awesome-invite-copy p,
.awesome-process-section .section-heading p,
.awesome-gallery-section .section-heading p,
.awesome-details-grid p,
.awesome-note {
  color: #514a43;
}

.awesome-offer-card {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: grid;
  gap: 18px;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(36, 36, 33, 0.14);
  background:
    linear-gradient(135deg, rgba(214, 166, 109, 0.22), transparent 58%),
    rgba(255, 255, 255, 0.44);
}

.awesome-offer-card__label {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(36, 36, 33, 0.18);
  color: #514a43;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.awesome-offer-card h3 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4.1rem);
  font-weight: 400;
  line-height: 0.98;
}

.awesome-offer-card p {
  margin: 0;
  color: #514a43;
}

.awesome-process-section,
.awesome-gallery-section {
  background: var(--paper);
  color: var(--paper-ink);
}

.section-heading--narrow {
  width: min(760px, 100%);
}

.awesome-section-lead {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.awesome-section-lead .section-heading {
  width: 100%;
}

.awesome-lead-media {
  margin: 0;
  overflow: hidden;
  background: #151513;
}

.awesome-lead-media img {
  display: block;
  width: 100%;
  height: min(72svh, 760px);
  min-height: 420px;
  object-fit: cover;
  object-position: center center;
}

.awesome-steps {
  width: min(1280px, 100%);
  margin: clamp(34px, 6vw, 72px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(36, 36, 33, 0.14);
  border-left: 1px solid rgba(36, 36, 33, 0.14);
}

.awesome-steps article {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 300px;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid rgba(36, 36, 33, 0.14);
  border-bottom: 1px solid rgba(36, 36, 33, 0.14);
  background: rgba(255, 255, 255, 0.22);
}

.awesome-steps span {
  color: rgba(36, 36, 33, 0.42);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.awesome-steps h3,
.awesome-details-grid h3 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.5rem, 2.3vw, 2.4rem);
  font-weight: 400;
}

.awesome-steps p {
  margin: 0;
  color: #514a43;
}

.awesome-split {
  padding-top: clamp(72px, 9vw, 140px);
  padding-bottom: clamp(72px, 9vw, 140px);
}

.awesome-gallery {
  width: min(1380px, 100%);
  margin: clamp(34px, 6vw, 72px) auto 0;
  column-count: 4;
  column-gap: 12px;
}

.awesome-gallery__item {
  display: block;
  margin: 0 0 12px;
  break-inside: avoid;
  overflow: hidden;
  background: #111;
}

.awesome-gallery__item img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.001);
}

.awesome-details-grid {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.awesome-details-grid article {
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(36, 36, 33, 0.14);
  background: rgba(255, 255, 255, 0.36);
}

.awesome-note {
  width: min(920px, 100%);
  margin: clamp(24px, 4vw, 42px) auto 0;
  font-size: 0.9rem;
}

.awesome-contact {
  border-top: 1px solid rgba(248, 244, 234, 0.12);
}

.awesome-contact .contact-actions a {
  color: var(--ink);
}

.preise-hero .subpage-hero__media img {
  object-position: center center;
}

.preise-intro-section,
.preise-packages-section,
.preise-gutschein-section,
.preise-faq-section,
.preise-wedding-section {
  padding: clamp(72px, 9vw, 140px) clamp(24px, 5vw, 72px);
}

.preise-intro-section,
.preise-packages-section,
.preise-faq-section {
  background: var(--paper);
  color: var(--paper-ink);
}

.preise-intro-section {
  background:
    linear-gradient(135deg, rgba(144, 183, 170, 0.18), transparent 42%),
    var(--shell);
}

.preise-intro-grid {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

.preise-intro-grid h2,
.preise-packages-section h2,
.preise-faq-section h2 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 6rem);
  font-weight: 400;
  line-height: 0.96;
}

.preise-intro-grid p,
.preise-packages-section .section-heading p {
  color: #514a43;
}

.preise-info-card {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(36, 36, 33, 0.13);
  background: rgba(255, 255, 255, 0.42);
}

.preise-info-card h3 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.7rem, 2.7vw, 2.8rem);
  font-weight: 400;
}

.preise-info-card p {
  margin: 0;
}

.price-package-grid {
  width: min(1360px, 100%);
  margin: clamp(34px, 6vw, 76px) auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.price-package-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(36, 36, 33, 0.12);
  background: rgba(255, 255, 255, 0.36);
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease, background 240ms ease;
}

.price-card:hover,
.price-card:focus-within {
  border-color: rgba(36, 36, 33, 0.24);
  box-shadow: 0 26px 76px rgba(17, 17, 15, 0.14);
  transform: translateY(-7px);
}

.price-card--featured-price {
  background:
    linear-gradient(135deg, rgba(214, 166, 109, 0.14), transparent 48%),
    #242421;
  color: var(--ink);
}

.price-card__image {
  position: relative;
  display: grid;
  width: 100%;
  height: clamp(260px, 24vw, 420px);
  overflow: hidden;
  background: #151513;
}

.price-card__image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
}

.price-card__body {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(24px, 3.2vw, 42px);
}

.price-card__type {
  margin: 0;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.45rem, 1.8vw, 1.8rem);
  font-weight: 400;
  line-height: 1.04;
}

.price-card p:not(.price-card__type) {
  margin: 0;
  color: #514a43;
}

.price-card--featured-price p:not(.price-card__type) {
  color: var(--ink-soft);
}

.price-card__prices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.price-card__prices span {
  display: grid;
  min-width: min(100%, 160px);
  gap: 4px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #514a43;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-card__prices strong {
  color: var(--paper-ink);
  font-size: clamp(1.65rem, 2vw, 1.8rem);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.price-card--featured-price .price-card__prices span {
  border: 0;
  background: transparent;
  color: var(--ink-soft);
}

.price-card--featured-price .price-card__prices strong {
  color: var(--ink);
}

.price-card .text-link,
.price-card .button-link {
  --button-link-color: #11110f;
  --button-link-hover-color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 6px;
  padding: 0 24px;
  border: 1px solid var(--button-link-color);
  border-radius: 999px;
  justify-self: start;
  color: var(--button-link-color);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.price-card--featured-price .text-link,
.price-card--featured-price .button-link {
  --button-link-color: var(--ink);
  --button-link-hover-color: #11110f;
  color: var(--button-link-color);
}

.price-card .text-link:hover,
.price-card .text-link:focus-visible,
.price-card .button-link:hover,
.price-card .button-link:focus-visible {
  background: var(--button-link-color);
  border-color: var(--button-link-color);
  color: var(--button-link-hover-color);
  transform: translateY(-2px);
}

.price-card--featured-price .text-link:hover,
.price-card--featured-price .text-link:focus-visible,
.price-card--featured-price .button-link:hover,
.price-card--featured-price .button-link:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: #11110f;
}

.preise-faq-section .faq-list {
  margin-top: clamp(30px, 5vw, 58px);
}

.preise-gutschein-section .feature-media,
.preise-wedding-section .feature-media {
  min-height: min(72svh, 760px);
}

.site-footer {
  padding: 0 clamp(24px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  background:
    linear-gradient(135deg, rgba(214, 166, 109, 0.08), transparent 34%),
    #141412;
}

.site-footer__top {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 7vw, 110px);
  padding: clamp(56px, 8vw, 112px) 0;
}

.site-footer__brand {
  display: grid;
  align-content: start;
  justify-items: start;
}

.footer-brand {
  position: relative;
  color: var(--ink);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2.6rem, 4.8vw, 5.2rem);
  font-weight: 400;
  line-height: 0.92;
}

.site-footer__brand p {
  margin: 0;
  width: min(520px, 100%);
  color: var(--ink);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.6rem, 2.4vw, 1rem);
  line-height: 1.2;
}

.site-footer__brand .footer-note {
  margin-top: 24px;
  color: var(--ink-soft);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin-top: 32px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: #2fb766;
  color: #07180e !important;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.footer-cta:hover,
.footer-cta:focus-visible {
  background: #42d279;
  box-shadow: 0 18px 44px rgba(47, 183, 102, 0.22);
  transform: translateY(-2px);
}

.footer-brand::before,
.footer-brand::after,
.footer-cta::before,
.footer-cta::after {
  display: none;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 54px);
}

.footer-nav h2 {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-nav ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer .footer-nav a,
.site-footer address {
  color: var(--ink-soft);
}

.footer-nav a {
  position: relative;
  font-weight: 700;
}

.site-footer .footer-nav a:hover,
.site-footer .footer-nav a:focus-visible {
  color: var(--ink);
}

.site-footer address {
  margin: 0 0 18px;
  font-style: normal;
  line-height: 1.7;
}

.site-footer__bottom {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(248, 244, 234, 0.12);
  color: rgba(248, 244, 234, 0.58);
}

.site-footer__bottom small {
  max-width: 760px;
  line-height: 1.6;
}

.site-footer a {
  position: relative;
  color: var(--ink);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .feature-section,
  .subpage-intro__grid,
  .about-me-layout,
  .trust-layout,
  .journal-layout,
  .process-layout,
  .frames-story,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .process-intro {
    position: static;
  }

  .feature-section--image-right .feature-media {
    order: 0;
  }

  .feature-copy {
    width: min(760px, 100%);
  }

  .feature-section {
    padding: clamp(72px, 9vw, 140px) clamp(24px, 5vw, 72px);
  }

  .feature-section--image-left .feature-copy,
  .feature-section--image-right .feature-copy {
    justify-self: stretch;
    padding-right: 0;
    padding-left: 0;
  }

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

  .shooting-types__grid {
    grid-template-columns: 1fr;
  }

  .quote-card,
  .package-card {
    min-height: auto;
  }

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

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

  .about-facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .process-steps,
  .frames-gallery {
    grid-template-columns: 1fr;
  }

  .quote-grid {
    column-count: 1;
  }

  .social-actions {
    display: grid;
  }

  .social-action {
    justify-content: center;
  }
}

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

@media (max-width: 900px) {
  :root {
    --header-height: 74px;
  }

  html.nav-open,
  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .site-header {
    border-color: transparent;
    background: transparent;
    backdrop-filter: none;
  }

  .site-nav {
    width: min(100% - 32px, 1360px);
  }

  .brand {
    max-width: calc(100% - 68px);
    position: relative;
    z-index: 3;
    transition: opacity 260ms ease, transform 260ms var(--ease);
  }

  body.nav-open .brand {
    opacity: 0;
    transform: translateY(-8px);
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 3;
    flex: 0 0 auto;
    border-color: rgba(248, 244, 234, 0.34);
    background: rgba(248, 244, 234, 0.1);
    backdrop-filter: blur(14px);
    transition: border-color 220ms ease, background 220ms ease;
  }

  .nav-toggle:hover,
  .nav-toggle:focus-visible {
    border-color: rgba(248, 244, 234, 0.62);
    background: rgba(248, 244, 234, 0.16);
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 3.4svh, 34px);
    min-height: 100svh;
    padding: calc(var(--header-height) + 10px) 28px clamp(148px, 28svh, 260px);
    border: 0;
    border-radius: 0;
    background:
      radial-gradient(circle at 18% 12%, rgba(214, 166, 109, 0.16), transparent 34%),
      linear-gradient(145deg, rgba(37, 37, 35, 0.98), rgba(36, 33, 29, 0.98) 54%, rgba(54, 71, 64, 0.98));
    box-shadow: none;
    opacity: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    pointer-events: none;
    transform: translateY(-10px);
    visibility: hidden;
    transition: opacity 320ms ease, transform 440ms var(--ease), visibility 0s linear 320ms;
  }

  .nav-links::before {
    content: "";
    position: fixed;
    inset: auto 0 0;
    height: 28svh;
    pointer-events: none;
    background: linear-gradient(180deg, transparent, rgba(37, 37, 35, 0.96));
  }

  .nav-links > li {
    width: min(520px, 100%);
    order: 1;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 360ms ease, transform 520ms var(--ease);
  }

  .nav-links > li:nth-child(1) { transition-delay: 40ms; }
  .nav-links > li:nth-child(2) { transition-delay: 80ms; }
  .nav-links > li:nth-child(3) { transition-delay: 120ms; }
  .nav-links > li:nth-child(4) { transition-delay: 160ms; }
  .nav-links > li:nth-child(5) { transition-delay: 200ms; }
  .nav-links > li:nth-child(6) { transition-delay: 240ms; }
  .nav-links > li:nth-child(7) { transition-delay: 280ms; }
  .nav-links > li:nth-child(8) { transition-delay: 320ms; }
  .nav-links > li:nth-child(9) { transition-delay: 360ms; }
  .nav-links > li:nth-child(10) { transition-delay: 400ms; }
  .nav-links > li:nth-child(11) { transition-delay: 440ms; }
  .nav-links > li:nth-child(12) { transition-delay: 480ms; }
  .nav-links > li:nth-child(13) { transition-delay: 520ms; }

  body.nav-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition-delay: 0s;
  }

  body.nav-open .nav-links > li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links a {
    display: inline-flex;
    width: fit-content;
    padding: 0;
    color: var(--ink);
    font-family: var(--font-serif-display);
    font-size: clamp(1.8rem, 8vw, 3.85rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: 0;
    text-transform: none;
  }

  .nav-mobile-logo {
    display: flex;
    order: 0;
    justify-content: center;
    margin-bottom: clamp(18px, 4svh, 42px);
    pointer-events: none;
  }

  .nav-mobile-logo img {
    width: min(52vw, 220px);
    max-height: 84px;
    object-fit: contain;
    opacity: 0.76;
    filter: brightness(1.55) contrast(0.9);
  }

  .nav-links a::before,
  .nav-links a::after,
  .nav-dropdown__toggle::before,
  .nav-dropdown__toggle::after {
    bottom: -0.16em;
  }

  .nav-dropdown::before {
    display: none;
  }

  .nav-dropdown {
    display: grid;
    order: 2;
    gap: 14px;
    margin-top: clamp(24px, 5.4svh, 58px);
    margin-bottom: clamp(22px, 4.4svh, 48px);
    padding-top: clamp(24px, 4.4svh, 46px);
    border-top: 1px solid rgba(248, 244, 234, 0.18);
  }

  .nav-dropdown__toggle {
    justify-self: center;
    padding: 0;
    color: rgba(248, 244, 234, 0.48);
    pointer-events: none;
    font-family: "Plus Jakarta Sans", Arial, sans-serif;
    font-size: 0.68rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-align: center;
    text-transform: uppercase;
  }

  .nav-dropdown__toggle::before,
  .nav-dropdown__toggle::after {
    content: none;
  }

  .nav-dropdown__menu {
    position: static;
    max-height: none;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: stretch;
    gap: 8px 16px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    overflow: visible;
    transform: none;
    pointer-events: auto;
    transition: none;
  }

  .nav-dropdown:hover .nav-dropdown__menu,
  .nav-dropdown:focus-within .nav-dropdown__menu,
  .nav-dropdown.is-open .nav-dropdown__menu {
    max-height: none;
    margin-top: 0;
    opacity: 1;
    transform: none;
  }

  .nav-dropdown__menu a {
    display: flex;
    width: 100%;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    padding: 9px 0;
    border-bottom: 1px solid rgba(248, 244, 234, 0.18);
    color: rgba(248, 244, 234, 0.78);
    font-family: "Plus Jakarta Sans", Arial, sans-serif;
    font-size: clamp(0.72rem, 2.7vw, 0.86rem);
    font-style: normal;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
  }

  .nav-dropdown__menu a::before,
  .nav-dropdown__menu a::after {
    content: none;
  }

  .nav-dropdown__menu a:hover,
  .nav-dropdown__menu a:focus-visible {
    color: var(--ink);
    border-color: rgba(214, 166, 109, 0.58);
  }

  .nav-mobile-footer {
    position: fixed;
    left: max(18px, env(safe-area-inset-left));
    right: max(18px, env(safe-area-inset-right));
    bottom: 20px;
    z-index: 2;
    display: grid;
    justify-items: center;
    gap: 13px;
    width: auto;
    max-width: calc(100vw - 36px);
    min-width: 0;
    margin: 0 auto;
    overflow: hidden;
    color: rgba(248, 244, 234, 0.72);
    text-align: center;
    text-transform: none;
  }

  .nav-links > .nav-mobile-footer {
    width: auto;
    max-width: calc(100vw - 36px);
  }

  .nav-mobile-footer span {
    max-width: 100%;
    color: rgba(248, 244, 234, 0.78);
    font-family: var(--font-serif-display);
    font-size: clamp(1.55rem, 6.8vw, 2.35rem);
    font-weight: 300;
    line-height: 1.02;
    text-transform: none;
  }

  .nav-mobile-footer div {
    display: flex;
    width: 100%;
    min-width: 0;
    justify-content: center;
    gap: 10px 14px;
    flex-wrap: wrap;
  }

  .nav-mobile-footer a {
    font-family: "Plus Jakarta Sans", Arial, sans-serif;
    font-size: clamp(0.68rem, 2.6vw, 0.78rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow-wrap: normal;
  }

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

  .work-card,
  .work-card img {
    min-height: 72svh;
  }

  .feature-section,
  .subpage-intro,
  .process-section,
  .about-me-section,
  .trust-section,
  .shooting-types-section,
  .frames-section,
  .packages-section,
  .references-section,
  .journal-section,
  .journal-archive-section,
  .odysseys-event-section,
  .photo-video-section,
  .faq-section,
  .contact-cta-section,
  .contact-section {
    padding: clamp(58px, 14vw, 88px) 20px;
  }

  .feature-media,
  .about-me-image {
    height: min(78svh, 560px);
    min-height: min(78svh, 560px);
  }

  .subpage-hero {
    min-height: 88svh;
    padding: calc(var(--header-height) + 56px) 20px 64px;
  }

  .section-kicker {
    text-align: left;
  }

  .promo-link {
    min-height: 320px;
    padding: 52px 20px;
  }

  .promo-cta {
    width: fit-content;
  }

  .reference-grid {
    column-count: var(--gallery-columns-tablet, 2);
    column-gap: 8px;
  }

  .odysseys-event-card,
  .tfp-intro-layout,
  .tfp-fit-grid,
  .awesome-invite-grid,
  .awesome-section-lead,
  .awesome-steps,
  .awesome-details-grid,
  .preise-intro-grid,
  .price-package-grid,
  .photo-video-grid,
  .photo-video-section--2 .photo-video-grid,
  .photo-video-section--4 .photo-video-grid {
    grid-template-columns: 1fr;
  }

  .awesome-offer-card {
    position: static;
  }

  .awesome-steps {
    border-top: 0;
  }

  .awesome-steps article {
    min-height: 0;
  }

  .awesome-lead-media img {
    height: min(72svh, 560px);
    min-height: 320px;
  }

  .price-card__image {
    height: min(72vw, 420px);
  }

  .awesome-gallery {
    column-count: 2;
    column-gap: 8px;
  }

  .tfp-choice-grid,
  .tfp-field-grid {
    grid-template-columns: 1fr;
  }

  .tfp-field--full {
    grid-column: auto;
  }

  .odysseys-event-media {
    min-height: min(78svh, 560px);
    order: -1;
  }

  .journal-archive-grid {
    grid-template-columns: 1fr;
  }

  .references-section > .section-heading {
    width: 100%;
  }

  .gallery-tile {
    margin-bottom: 8px;
  }

  .contact-actions a {
    justify-content: center;
  }

  .site-footer {
    padding-inline: 20px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    padding: clamp(50px, 12vw, 82px) 0;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .site-footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand {
    max-width: calc(100% - 58px);
  }

  .work-card,
  .work-card img {
    min-height: 62svh;
  }

  .subpage-actions {
    display: grid;
    justify-items: start;
    gap: 22px;
  }

  .reference-grid {
    column-count: 1;
  }

  .awesome-gallery {
    column-count: 1;
  }

  .journal-random {
    grid-template-columns: 1fr;
  }

  .journal-card a {
    grid-template-columns: minmax(104px, 0.38fr) minmax(0, 0.62fr);
  }

  .journal-card img {
    min-height: 170px;
  }
}

@media (max-width: 420px) {
  .nav-dropdown__menu {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .nav-dropdown__menu a {
    min-height: 34px;
  }
}

.brand,
.footer-brand,
.nav-mobile-more-title,
.nav-mobile-more-links a {
  font-family: var(--font-serif-subhead);
}

.subpage-hero h1,
.about-copy h1,
.tfp-message-card h1 {
  font-family: var(--font-serif-display);
}

.section-kicker h2,
.section-heading h2,
.feature-copy h2,
.contact-copy h2,
.subpage-intro h2,
.odysseys-event-copy h2,
.contact-cta-copy h2,
.tfp-intro-copy h2,
.tfp-form-heading h2,
.tfp-fit-card h2,
.awesome-invite-copy h2,
.awesome-process-section h2,
.awesome-gallery-section h2,
.awesome-contact h2,
.preise-intro-grid h2,
.preise-packages-section h2,
.preise-faq-section h2 {
  font-family: var(--font-serif-heading);
}

.feature-copy h3,
.about-copy h3,
.about-me-copy h3,
.subpage-intro__copy h3,
.contact-copy h3,
.journal-card-copy h3,
.journal-card h3,
.journal-archive-card h3,
.package-card h3,
.price-card h3,
.process-card h3,
.photo-video-card__body h3,
.tfp-panel h3,
.awesome-offer-card h3,
.awesome-steps h3,
.awesome-details-grid h3,
.preise-info-card h3 {
  font-family: var(--font-serif-subhead);
}
