:root {
  --ink: #050505;
  --ink-soft: #0b0b0b;
  --panel: #11100f;
  --panel-light: #181715;
  --paper: #f0e7d6;
  --paper-dim: #cfc4b1;
  --muted: #9c958a;
  --red: #d9281e;
  --red-deep: #8f100c;
  --line: rgba(240, 231, 214, 0.34);
  --line-soft: rgba(240, 231, 214, 0.12);
  --font-display: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  --font-body: "Inter", Arial, sans-serif;
  --header-height: 82px;
  --shell: min(1440px, calc(100vw - 9vw));
  --hero-shift: 0px;
  --pattern-shift: 0px;
  --hero-dim: 1;
  --hero-overlay: 0;
  --page-pattern-shift: 0px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 88% 4%, rgba(217, 40, 30, 0.08), transparent 25rem),
    var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--red);
  color: white;
}

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

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

button {
  color: inherit;
  font: inherit;
}

img,
svg {
  display: block;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.85rem 1.1rem;
  transform: translateY(-150%);
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: var(--header-height);
  padding: 0 4.5vw;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 5rem);
  border-bottom: 1px solid transparent;
  transition: height 250ms ease, background 250ms ease, border-color 250ms ease, backdrop-filter 250ms ease;
}

.site-header.is-scrolled,
.site-header:focus-within {
  height: 68px;
  background: rgba(5, 5, 5, 0.88);
  border-bottom-color: var(--line-soft);
  backdrop-filter: blur(16px);
}

.brand {
  position: relative;
  display: inline-grid;
  min-width: 50px;
  min-height: 48px;
  place-items: center;
  color: var(--paper);
}

.brand__letters {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
  transform: skewX(-6deg);
}

.brand__slash {
  position: absolute;
  right: -2px;
  bottom: 5px;
  width: 30px;
  height: 7px;
  background: var(--red);
  clip-path: polygon(8% 0, 100% 0, 84% 100%, 0 100%);
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.6rem);
}

.main-nav a {
  position: relative;
  padding: 0.5rem 0;
  color: var(--paper-dim);
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1vw, 1.08rem);
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.15rem;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0) skewX(-18deg);
  transform-origin: left;
  background: var(--red);
  transition: transform 220ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  color: var(--paper);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after {
  transform: scaleX(1) skewX(-18deg);
}

.header-actions,
.language-switcher,
.header-socials {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 0.9rem;
}

.language-switcher {
  gap: 0.35rem;
}

.language-button {
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  filter: grayscale(0.75);
  opacity: 0.68;
  transition: filter 180ms ease, opacity 180ms ease, border-color 180ms ease, background 180ms ease;
}

.language-button:hover,
.language-button:focus-visible,
.language-button.is-active {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  filter: none;
  opacity: 1;
}

.flag-icon {
  font-size: 1.25rem;
  line-height: 1;
}

.header-divider {
  width: 1px;
  height: 22px;
  background: var(--line);
}

.header-socials {
  gap: 0.25rem;
}

.header-socials a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--paper-dim);
  transition: color 180ms ease, transform 180ms ease;
}

.header-socials a:hover,
.header-socials a:focus-visible {
  color: var(--red);
  transform: translateY(-2px);
}

.header-socials svg {
  width: 17px;
  height: 17px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px 8px;
  flex-direction: column;
  justify-content: space-around;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--paper);
  transition: transform 220ms ease, opacity 220ms ease;
}

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

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

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

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  padding: max(calc(var(--header-height) + 3.5rem), 10vh) 4.5vw 4rem;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  align-items: center;
  border-bottom: 2px solid var(--paper-dim);
  background:
    linear-gradient(90deg, #050505 0%, #050505 43%, rgba(5, 5, 5, 0.88) 58%, rgba(5, 5, 5, 0.18) 100%),
    var(--ink);
}

.hero::after {
  position: absolute;
  z-index: 5;
  right: -2%;
  bottom: -2px;
  left: -2%;
  height: 32px;
  content: "";
  border-top: 1px solid rgba(217, 40, 30, 0.45);
  background-color: #141111;
  background-image:
    radial-gradient(circle, rgba(217, 40, 30, 0.62) 1px, transparent 1.35px),
    linear-gradient(170deg, #292120 0%, #100e0e 70%);
  background-size: 7px 7px, 100% 100%;
  clip-path: polygon(0 92%, 76% 42%, 100% 0, 100% 100%, 0 100%);
  opacity: 1;
}

.hero__print-grid {
  position: absolute;
  z-index: -1;
  top: 17%;
  left: -4rem;
  width: 58vw;
  height: 72vh;
  opacity: 0.11;
  background-image:
    radial-gradient(circle, var(--paper-dim) 0 4px, transparent 4.6px),
    radial-gradient(circle, var(--red) 0 2.8px, transparent 3.4px);
  background-position: 0 calc(var(--page-pattern-shift) * -1), 15px calc(var(--page-pattern-shift) * -0.55);
  background-size: 30px 30px, 45px 45px;
  mask-image: radial-gradient(ellipse at center, black, transparent 72%);
  transform: rotate(-20deg);
  will-change: background-position;
}

.hero__copy {
  position: relative;
  z-index: 7;
  width: min(760px, 100%);
  padding-bottom: 1rem;
}

.eyebrow,
.section-kicker,
.micro-label {
  margin: 0;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--paper-dim);
}

.eyebrow::before {
  width: 42px;
  height: 3px;
  content: "";
  background: var(--red);
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}

.hero__title {
  max-width: 8ch;
  margin: 2.4rem 0 2rem;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(4.9rem, 7.3vw, 8.7rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.052em;
  line-height: 0.89;
  text-transform: uppercase;
  text-wrap: balance;
  transform: rotate(-10deg) skewX(-2deg);
  transform-origin: 8% 54%;
  -webkit-text-stroke: 0.25px rgba(240, 231, 214, 0.7);
  text-shadow: 0 -1px 0 rgba(240, 231, 214, 0.42), 4px 4px 0 rgba(217, 40, 30, 0.16);
}

.hero__title em {
  position: relative;
  display: inline-block;
  color: var(--paper);
  font-style: inherit;
}

.hero__title em::after {
  position: absolute;
  right: -0.05em;
  bottom: -0.02em;
  left: 0.08em;
  z-index: -1;
  height: 0.18em;
  content: "";
  background: var(--red);
  clip-path: polygon(3% 0, 100% 15%, 96% 100%, 0 76%);
}

.hero__tagline {
  position: relative;
  z-index: 9;
  margin: 1.55rem 0 0;
  color: var(--paper-dim);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.01em;
  transform: rotate(-10deg);
  transform-origin: left center;
}

.hero__intro {
  position: absolute;
  z-index: 5;
  right: clamp(2rem, 4.5vw, 5.5rem);
  bottom: clamp(10rem, 17vh, 12.5rem);
  width: min(540px, 72%);
  margin: 0;
  padding: 1.05rem 1.25rem 1.1rem 1.45rem;
  border-left: 3px solid var(--red);
  background: linear-gradient(105deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.63));
  color: var(--paper-dim);
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 1.35vw, 1.48rem);
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.005em;
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(7px);
  clip-path: polygon(3% 0, 100% 4%, 97% 100%, 0 94%);
}

.hero__actions {
  display: flex;
  margin-top: 1.8rem;
  align-items: center;
  gap: 1.5rem;
}

.comic-button {
  position: relative;
  display: inline-flex;
  min-width: 190px;
  min-height: 58px;
  padding: 0.7rem 1.65rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  overflow: hidden;
  background: var(--red);
  color: white;
  clip-path: polygon(5% 0, 100% 0, 92% 100%, 0 87%);
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.comic-button::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.42) 0.7px, transparent 0.9px);
  background-size: 5px 5px;
  opacity: 0.35;
}

.comic-button span,
.comic-button svg {
  position: relative;
  z-index: 1;
}

.comic-button svg {
  width: 24px;
  height: 24px;
  transition: transform 180ms ease;
}

.comic-button:hover,
.comic-button:focus-visible {
  background: #f03327;
  transform: translateY(-3px) skewX(-2deg);
}

.comic-button:hover svg,
.comic-button:focus-visible svg {
  transform: translateX(4px);
}

.text-link {
  position: relative;
  padding: 0.45rem 0;
  color: var(--paper-dim);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0.28);
  transform-origin: left;
  background: var(--paper-dim);
  transition: transform 180ms ease, background 180ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
  background: var(--red);
}

.hero__stats {
  display: grid;
  width: min(100%, 680px);
  max-width: 680px;
  margin: 2.3rem 0 0;
  padding: 0;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.45fr) minmax(0, 0.75fr);
  gap: 0;
}

.hero__stats div {
  display: grid;
  width: 100%;
  min-width: 0;
  padding: 0 1.1rem;
  grid-template-columns: auto max-content;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-left: 1px solid var(--line);
}

.hero__stats div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero__stats dt {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
}

.hero__stats dd {
  max-width: 12ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1.35;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero__visual {
  position: absolute;
  z-index: 2;
  top: 0;
  right: -1.5vw;
  bottom: 0;
  width: 57vw;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__pattern {
  position: absolute;
  z-index: 0;
  top: 5%;
  right: -1%;
  width: 96%;
  height: 92%;
  object-fit: contain;
  object-position: center;
  opacity: 0.82;
  mix-blend-mode: screen;
  filter: brightness(0.76) contrast(1.24) saturate(0.9);
  transform: translate3d(0, calc(var(--pattern-shift) * -1), 0) scale(1.04) rotate(0.7deg);
  transform-origin: 52% 52%;
  will-change: transform;
}

.hero__portrait {
  position: absolute;
  z-index: 1;
  right: clamp(-6rem, -2vw, -1rem);
  bottom: clamp(-10rem, -11vh, -5rem);
  width: min(59vw, 990px);
  height: min(119vh, 1120px);
  object-fit: contain;
  object-position: center bottom;
  transform: translate3d(0, calc(var(--hero-shift) * -1), 0);
  transform-origin: 50% 70%;
  filter: brightness(var(--hero-dim)) saturate(0.92) contrast(1.04);
  will-change: transform, filter;
}

.hero__shade {
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: var(--hero-overlay);
  background: rgba(2, 2, 2, 0.82);
  will-change: opacity;
}

.hero__visual::before {
  position: absolute;
  z-index: 3;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, var(--ink) 0%, transparent 24%),
    linear-gradient(0deg, var(--ink) 0%, transparent 20%);
  pointer-events: none;
}

.hero__visual figcaption {
  position: absolute;
  z-index: 4;
  right: 4.5vw;
  bottom: 3.6rem;
  display: flex;
  padding: 0.7rem 1rem 0.6rem 1.4rem;
  flex-direction: column;
  border-left: 3px solid var(--red);
  background: rgba(5, 5, 5, 0.68);
  backdrop-filter: blur(8px);
  clip-path: polygon(5% 0, 100% 0, 94% 100%, 0 100%);
}

.hero__visual figcaption strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__visual figcaption span {
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  z-index: 8;
  bottom: 2.8rem;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateX(-50%) rotate(90deg);
  transform-origin: center;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 44px;
  height: 1px;
  overflow: hidden;
  background: rgba(240, 231, 214, 0.26);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  content: "";
  transform: translateX(-100%);
  background: var(--red);
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: translateX(-100%); }
  50%, 100% { transform: translateX(100%); }
}

.section-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  background: var(--ink);
}

.section-panel::after {
  position: absolute;
  z-index: -1;
  inset: -25%;
  content: "";
  pointer-events: none;
  opacity: 0.08;
  background-image:
    radial-gradient(circle, var(--paper) 0 4.5px, transparent 5.2px),
    radial-gradient(circle, var(--red) 0 3.2px, transparent 3.9px);
  background-position: 0 calc(var(--page-pattern-shift) * -1), 17px calc(var(--page-pattern-shift) * -0.55);
  background-size: 33px 33px, 49px 49px;
  mask-image: linear-gradient(90deg, transparent, black 70%, transparent);
  transform: rotate(-20deg);
  will-change: background-position;
}

.section-shell {
  position: relative;
  width: var(--shell);
  margin: 0 auto;
  padding: clamp(1.4rem, 2.4vw, 2.4rem) 0 clamp(5.5rem, 9vw, 9rem);
}

.section-heading {
  position: relative;
  z-index: 4;
}

.section-heading--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.section-heading h2 {
  position: relative;
  display: inline-block;
  margin: 0.25rem 0 0;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 7.4rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.9;
  text-transform: uppercase;
}

.section-heading h2::after {
  position: absolute;
  right: -1.5rem;
  bottom: 0.03em;
  width: 0.6rem;
  height: 0.6rem;
  content: "";
  background: var(--red);
  clip-path: polygon(0 20%, 100% 0, 72% 100%, 5% 83%);
}

.section-heading__note {
  max-width: 380px;
  margin: 0 0 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.contact {
  min-height: 590px;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0 48%, rgba(5, 5, 5, 0.77) 68%, rgba(5, 5, 5, 0.52)),
    radial-gradient(circle at 78% 45%, rgba(217, 40, 30, 0.13), transparent 28%),
    #080808;
}

.contact::before {
  position: absolute;
  top: 0;
  right: 4vw;
  width: 42%;
  height: 7px;
  content: "";
  background: var(--red);
  clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
}

.contact__layout {
  display: grid;
  min-height: 590px;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
}

.contact__content {
  position: relative;
  z-index: 4;
  display: grid;
  gap: 1.2rem;
}

.comic-panel {
  position: relative;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 45%),
    var(--panel);
  clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
}

.location-card {
  display: grid;
  min-height: 160px;
  padding: 2rem 2.4rem;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.4rem;
}

.location-card__icon {
  display: grid;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  place-items: center;
  background: var(--red);
  clip-path: polygon(9% 0, 100% 7%, 91% 100%, 0 88%);
}

.location-card__icon svg {
  width: 30px;
  height: 30px;
}

.location-card h3 {
  margin: 0.2rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3vw, 3.4rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.location-card p:last-child {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.location-card__site {
  display: inline-flex;
  margin-top: 0.8rem;
  align-items: center;
  gap: 0.55rem;
  color: var(--paper-dim);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.location-card__site svg {
  width: 18px;
  height: 18px;
  color: var(--red);
  transition: transform 180ms ease;
}

.location-card__site:hover,
.location-card__site:focus-visible {
  color: white;
}

.location-card__site:hover svg,
.location-card__site:focus-visible svg {
  transform: translateX(4px);
}

.location-card__logo {
  display: grid;
  width: 190px;
  min-height: 88px;
  padding: 0.9rem;
  place-items: center;
  border-left: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.25);
  transition: background 180ms ease, transform 180ms ease;
}

.location-card__logo:hover,
.location-card__logo:focus-visible {
  background: rgba(217, 40, 30, 0.12);
  transform: translateY(-2px);
}

.location-card__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.contact__social-block {
  display: grid;
  padding: 1.7rem 2.3rem;
  grid-template-columns: minmax(220px, 1fr) auto;
  align-items: center;
  gap: 2rem;
  border-left: 2px solid var(--red);
  border-top: 1px solid rgba(240, 231, 214, 0.18);
  border-right: 1px solid rgba(240, 231, 214, 0.12);
  border-bottom: 1px solid rgba(240, 231, 214, 0.12);
  background: rgba(5, 5, 5, 0.86);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(10px);
}

.contact__social-block > p {
  max-width: 530px;
  margin: 0;
  color: var(--paper);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.65;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.social-links {
  display: flex;
  gap: 0.55rem;
}

.social-links a {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.66);
  color: var(--paper-dim);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: var(--red);
  background: var(--red);
  color: white;
  transform: translateY(-3px);
}

.social-links svg {
  width: 22px;
  height: 22px;
}

.social-links span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.church-art {
  position: absolute;
  z-index: 0;
  right: -2vw;
  bottom: 0;
  width: min(62vw, 980px);
  opacity: 0.43;
}

.church-art svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 35px rgba(217, 40, 30, 0.18));
}

.church-art__glow {
  fill: none;
  stroke: var(--paper-dim);
  stroke-width: 3;
  stroke-linecap: square;
  stroke-linejoin: miter;
  vector-effect: non-scaling-stroke;
}

.church-art__label {
  position: absolute;
  right: 12%;
  bottom: 10%;
  color: rgba(240, 231, 214, 0.22);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 6rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.packages {
  background:
    linear-gradient(180deg, #090909, #050505),
    var(--ink);
}

.package-grid {
  display: grid;
  margin-top: 3.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.package-card {
  display: flex;
  min-height: 580px;
  padding: clamp(2rem, 3vw, 3.2rem);
  flex-direction: column;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.package-card::after {
  position: absolute;
  right: -18%;
  bottom: -18%;
  width: 75%;
  aspect-ratio: 1;
  content: "";
  opacity: 0.08;
  background-image: radial-gradient(circle, var(--paper) 1px, transparent 1.3px);
  background-size: 7px 7px;
  border-radius: 50%;
}

.package-card:hover {
  z-index: 2;
  border-color: rgba(240, 231, 214, 0.68);
  background: var(--panel-light);
  transform: translateY(-8px);
}

.package-card--featured {
  border: 2px solid var(--red);
  background:
    linear-gradient(145deg, rgba(217, 40, 30, 0.15), transparent 45%),
    #141211;
  transform: translateY(-0.75rem);
}

.package-card--featured:hover {
  border-color: #f43c30;
  transform: translateY(-1.15rem);
}

.package-card__badge {
  position: absolute;
  top: 0;
  right: 8%;
  padding: 0.45rem 1.1rem;
  background: var(--red);
  color: white;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.package-card__number {
  position: absolute;
  top: 1.5rem;
  right: 1.8rem;
  color: rgba(240, 231, 214, 0.06);
  font-family: var(--font-display);
  font-size: 6.2rem;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
}

.package-card__eyebrow {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.package-card h3 {
  position: relative;
  z-index: 1;
  margin: 0.25rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 5vw, 5.4rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.94;
  text-transform: uppercase;
}

.package-card__frequency {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  margin: 1.2rem 0 0;
  padding: 0.45rem 0.7rem;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  clip-path: polygon(3% 0, 100% 0, 94% 100%, 0 87%);
}

.package-card__description {
  position: relative;
  z-index: 1;
  min-height: 4.9rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.package-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  margin: 1.25rem 0 2rem;
  padding: 0;
  gap: 0.75rem;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--paper-dim);
  font-size: 0.8rem;
  line-height: 1.45;
}

.package-card li::before {
  position: absolute;
  top: 0.45rem;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--red);
  clip-path: polygon(0 30%, 100% 0, 72% 100%, 12% 76%);
}

.package-card__price {
  position: relative;
  z-index: 1;
  margin: auto 0 0;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.package-card__price strong {
  margin-right: 0.3rem;
  color: var(--paper);
  font-size: 2.2rem;
  font-weight: 900;
}

.package-card__cta {
  position: relative;
  z-index: 1;
  display: flex;
  margin-top: 1.2rem;
  padding-top: 1rem;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line-soft);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-card__cta svg {
  width: 22px;
  height: 22px;
  color: var(--red);
  transition: transform 180ms ease;
}

.package-card__cta:hover svg,
.package-card__cta:focus-visible svg {
  transform: translateX(5px);
}

.swipe-hint {
  display: none;
  margin-top: 1rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.swipe-hint span:first-child {
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.videos {
  background:
    radial-gradient(circle at 20% 55%, rgba(217, 40, 30, 0.08), transparent 29%),
    #080808;
}

.videos .section-shell {
  padding-top: clamp(1.25rem, 2vw, 2rem);
  padding-bottom: clamp(4.7rem, 7vw, 7rem);
}

.video-showcase {
  margin-top: 3.5rem;
}

.video-stage {
  position: relative;
  height: clamp(360px, 43vw, 580px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0a0a0a;
  clip-path: polygon(1.4% 0, 100% 0, 98.4% 100%, 0 97%);
}

.video-stage > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
  filter: grayscale(0.72) brightness(0.44) contrast(1.18);
  transform: scale(1.04);
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 400ms ease, object-position 500ms ease;
}

.video-stage:hover > img {
  filter: grayscale(0.48) brightness(0.52) contrast(1.18);
  transform: scale(1.075);
}

.video-stage__texture {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92), transparent 62%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.74), transparent 45%),
    radial-gradient(circle at 86% 18%, rgba(217, 40, 30, 0.43), transparent 24%);
}

.video-stage__texture::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 53%;
  height: 54%;
  content: "";
  opacity: 0.26;
  background-image: radial-gradient(circle, var(--paper) 0.8px, transparent 1px);
  background-size: 6px 6px;
  mask-image: radial-gradient(ellipse at bottom right, black, transparent 72%);
}

.video-stage__copy {
  position: absolute;
  z-index: 2;
  bottom: 11%;
  left: 6%;
  max-width: 530px;
}

.video-stage__copy span {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.video-stage__copy h3 {
  margin: 0.55rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5.5vw, 6.4rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.88;
  text-transform: uppercase;
}

.play-button {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 67%;
  display: grid;
  width: clamp(74px, 8vw, 110px);
  aspect-ratio: 1;
  padding: 0;
  place-items: center;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: rgba(217, 40, 30, 0.88);
  color: white;
  cursor: pointer;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 13px rgba(217, 40, 30, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.play-button:hover,
.play-button:focus-visible {
  background: #f23b30;
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 0 19px rgba(217, 40, 30, 0.14);
}

.play-button svg {
  width: 44%;
  height: 44%;
}

.video-carousel {
  display: grid;
  margin-top: 1rem;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 0.65rem;
}

.carousel-arrow,
.testimonial-controls button {
  display: grid;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--paper);
  place-items: center;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.carousel-arrow {
  width: 56px;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible,
.testimonial-controls button:hover,
.testimonial-controls button:focus-visible {
  border-color: var(--red);
  background: var(--red);
  color: white;
}

.carousel-arrow svg,
.testimonial-controls svg {
  width: 24px;
  height: 24px;
}

.carousel-arrow--prev svg,
.testimonial-controls button:first-child svg {
  transform: rotate(180deg);
}

.video-thumbs {
  display: grid;
  overflow-x: auto;
  grid-auto-columns: minmax(200px, 1fr);
  grid-auto-flow: column;
  gap: 0.65rem;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.video-thumbs::-webkit-scrollbar,
.testimonial-track::-webkit-scrollbar,
.package-grid::-webkit-scrollbar {
  display: none;
}

.video-thumb {
  position: relative;
  height: 138px;
  min-height: 138px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--panel);
  color: var(--paper);
  cursor: pointer;
  scroll-snap-align: start;
  text-align: left;
  transition: border-color 180ms ease;
}

.video-thumb::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(5, 5, 5, 0.95), transparent 72%);
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 26%;
  filter: grayscale(1) brightness(0.45);
  transition: filter 180ms ease, transform 280ms ease;
}

.video-thumb:nth-child(2) img { object-position: 44% 34%; }
.video-thumb:nth-child(3) img { object-position: 56% 42%; }
.video-thumb:nth-child(4) img { object-position: 50% 18%; }

.video-thumb span,
.video-thumb strong {
  position: absolute;
  z-index: 2;
  bottom: 0.65rem;
  font-family: var(--font-display);
  font-style: italic;
  text-transform: uppercase;
}

.video-thumb span {
  left: 0.75rem;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
}

.video-thumb strong {
  left: 2.2rem;
  font-size: 0.84rem;
  letter-spacing: 0.05em;
}

.video-thumb:hover,
.video-thumb:focus-visible,
.video-thumb.is-active {
  border-color: var(--red);
}

.video-thumb:hover img,
.video-thumb:focus-visible img,
.video-thumb.is-active img {
  filter: grayscale(0.55) brightness(0.58);
  transform: scale(1.05);
}

.testimonials {
  background:
    linear-gradient(178deg, transparent 0 12%, rgba(240, 231, 214, 0.025) 12.1% 86%, transparent 86.1%),
    #060606;
}

.testimonial-controls {
  display: flex;
  margin-bottom: 0.5rem;
  gap: 0.5rem;
}

.testimonial-controls button {
  width: 50px;
  height: 50px;
  padding: 0;
}

.testimonial-track {
  display: grid;
  margin-top: 3.5rem;
  overflow-x: auto;
  grid-auto-columns: minmax(330px, 1fr);
  grid-auto-flow: column;
  gap: 1rem;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.testimonial-card {
  position: relative;
  display: flex;
  min-height: 330px;
  padding: 2rem;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(240, 231, 214, 0.055), transparent 45%),
    var(--panel);
  clip-path: polygon(3% 0, 100% 0, 96% 100%, 0 97%);
  scroll-snap-align: start;
}

.testimonial-card::before {
  position: absolute;
  top: -2rem;
  right: 1rem;
  content: "“";
  color: rgba(217, 40, 30, 0.18);
  font-family: Georgia, serif;
  font-size: 12rem;
  line-height: 1;
}

.testimonial-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar {
  display: grid;
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 2px solid var(--paper-dim);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 900;
  box-shadow: inset 0 0 0 5px rgba(5, 5, 5, 0.3);
}

.avatar--1 { background: radial-gradient(circle at 35% 25%, #ad8d78, #33261e 67%); }
.avatar--2 { background: radial-gradient(circle at 35% 25%, #b98d6c, #4a2522 67%); }
.avatar--3 { background: radial-gradient(circle at 35% 25%, #967760, #272a2c 67%); }
.avatar--4 { background: radial-gradient(circle at 35% 25%, #c6a17f, #4b3430 67%); }

.testimonial-card__top strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.testimonial-card__top span {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.testimonial-card blockquote {
  position: relative;
  z-index: 1;
  margin: 2rem 0 1.5rem;
  color: var(--paper-dim);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.35;
}

.stars {
  position: relative;
  z-index: 1;
  margin-top: auto;
  color: var(--red);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
}

.site-footer {
  position: relative;
  display: flex;
  min-height: 180px;
  padding: 2rem 4.5vw;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  background: #030303;
}

.site-footer::before {
  position: absolute;
  top: 0;
  left: 4.5vw;
  width: 32%;
  height: 5px;
  content: "";
  background: var(--red);
  clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%);
}

.site-footer__mark {
  position: absolute;
  right: 16%;
  bottom: -0.45em;
  color: rgba(240, 231, 214, 0.025);
  font-family: var(--font-display);
  font-size: 13rem;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
}

.site-footer p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.back-to-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--paper-dim);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  color: var(--red);
  transform: rotate(-90deg);
  transition: transform 180ms ease;
}

.back-to-top:hover svg,
.back-to-top:focus-visible svg {
  transform: rotate(-90deg) translateX(4px);
}

.toast {
  position: fixed;
  z-index: 200;
  right: 1rem;
  bottom: 1rem;
  max-width: min(420px, calc(100vw - 2rem));
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--red);
  background: var(--paper);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
  transition: opacity 200ms ease, transform 200ms ease;
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.45);
}

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

.js .reveal-up,
.js .reveal-section,
.js .reveal-card {
  opacity: 0;
}

.js .reveal-up {
  transform: translateY(28px) skewX(-1deg);
}

.js .hero__title.reveal-up {
  transform: translateY(28px) rotate(-10deg) skewX(-3deg);
}

.js .hero__tagline.reveal-up {
  transform: translateY(28px) rotate(-10deg) skewX(-1deg);
}

.js .reveal-section {
  transform: translateY(48px);
  clip-path: inset(0 0 100% 0);
}

.js .reveal-card {
  transform: translateY(36px);
}

.reveal-up.is-visible,
.reveal-section.is-visible,
.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0) skewX(0);
  clip-path: inset(0 0 0 0);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1), clip-path 850ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero__title.reveal-up.is-visible {
  transform: translateY(0) rotate(-10deg) skewX(-2deg);
}

.hero__tagline.reveal-up.is-visible {
  transform: translateY(0) rotate(-10deg);
}

.reveal-up:nth-child(2) { transition-delay: 80ms; }
.reveal-up:nth-child(3) { transition-delay: 160ms; }
.reveal-up:nth-child(4) { transition-delay: 240ms; }
.reveal-up:nth-child(5) { transition-delay: 320ms; }
.reveal-up:nth-child(6) { transition-delay: 400ms; }
.reveal-card:nth-child(2) { transition-delay: 100ms; }
.reveal-card:nth-child(3) { transition-delay: 200ms; }
.reveal-card:nth-child(4) { transition-delay: 300ms; }

:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 4px;
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 3rem, 1080px);
  }

  .site-header {
    gap: 1.5rem;
  }

  .main-nav {
    gap: 1.15rem;
  }

  .header-socials {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  }

  .hero__title {
    font-size: clamp(4.5rem, 8vw, 7rem);
  }

  .hero__visual {
    right: -8vw;
    width: 64vw;
  }

  .hero__portrait {
    right: -2rem;
    width: min(72vw, 910px);
  }

  .hero__visual figcaption {
    display: none;
  }

  .contact__layout {
    grid-template-columns: 0.65fr 1.35fr;
  }

  .package-card {
    padding: 2rem;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 72px;
    --shell: min(100% - 2.5rem, 760px);
  }

  .site-header,
  .site-header.is-scrolled {
    height: var(--header-height);
    padding: 0 1.25rem;
    grid-template-columns: auto 1fr;
  }

  .header-actions {
    justify-self: end;
  }

  .header-divider {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    z-index: -1;
    inset: 0;
    display: flex;
    padding: calc(var(--header-height) + 3rem) 1.5rem 3rem;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    visibility: hidden;
    border-top: 1px solid rgba(240, 231, 214, 0.18);
    background:
      linear-gradient(145deg, transparent 0 57%, rgba(217, 40, 30, 0.13) 57.2% 58%, transparent 58.2%),
      radial-gradient(circle at 83% 25%, rgba(217, 40, 30, 0.24), transparent 24rem),
      #050505;
    box-shadow: inset 0 12px 34px rgba(0, 0, 0, 0.9), 0 30px 80px rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(24px);
    opacity: 0;
    transform: translateY(-1.5rem);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
  }

  .main-nav::before {
    position: absolute;
    inset: 20% -8% 8% 47%;
    content: "";
    opacity: 0.12;
    background-image: radial-gradient(circle, var(--paper) 1px, transparent 1.2px);
    background-size: 7px 7px;
    transform: rotate(-8deg);
  }

  .main-nav::after {
    position: absolute;
    right: 0;
    bottom: 8%;
    width: 76%;
    height: 7px;
    content: "";
    background: var(--red);
    clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
  }

  .menu-open .main-nav {
    z-index: 49;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .menu-open .site-header,
  .menu-open .site-header.is-scrolled,
  .menu-open .site-header:focus-within {
    background: transparent;
    border-bottom-color: transparent;
    backdrop-filter: none;
  }

  .menu-open .brand,
  .menu-open .header-actions {
    z-index: 51;
  }

  .main-nav a {
    width: 100%;
    padding: 0.42rem 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: clamp(2.7rem, 9vw, 4.2rem);
    font-style: italic;
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1.1;
  }

  .main-nav a::after {
    right: auto;
    bottom: 0;
    width: 25%;
  }

  .hero {
    display: block;
    min-height: max(880px, 100svh);
    padding: calc(var(--header-height) + 2.5rem) 1.25rem 4.5rem;
    background: linear-gradient(90deg, rgba(5, 5, 5, 0.97), rgba(5, 5, 5, 0.2));
  }

  .hero__copy {
    width: min(660px, 100%);
  }

  .hero__visual {
    right: -12vw;
    width: 77vw;
    opacity: 0.82;
  }

  .hero__visual::before {
    background:
      linear-gradient(90deg, var(--ink) 0%, transparent 38%),
      linear-gradient(0deg, var(--ink) 0%, transparent 27%);
  }

  .hero__portrait {
    right: -5vw;
    bottom: -9vh;
    width: 86vw;
    height: 104vh;
  }

  .scroll-cue {
    display: none;
  }

  .contact__layout {
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 3rem;
  }

  .contact__content {
    max-width: 700px;
  }

  .church-art {
    right: -18%;
    width: 92vw;
    opacity: 0.26;
  }

  .package-grid {
    width: calc(100% + 1.25rem);
    margin-top: 2.5rem;
    padding-right: 1.25rem;
    overflow-x: auto;
    grid-auto-columns: minmax(310px, 72vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }

  .package-card {
    min-height: 560px;
    scroll-snap-align: start;
  }

  .package-card--featured {
    transform: none;
  }

  .package-card--featured:hover {
    transform: translateY(-5px);
  }

  .swipe-hint {
    display: flex;
  }

  .video-stage {
    height: 440px;
  }

  .play-button {
    top: 43%;
    left: 72%;
  }

  .testimonial-track {
    grid-auto-columns: minmax(310px, 72vw);
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100% - 2rem);
  }

  .language-button {
    width: 31px;
    height: 31px;
  }

  .brand__letters {
    font-size: 1.72rem;
  }

  .hero {
    min-height: max(930px, 100svh);
    padding: 0 1rem 3rem;
  }

  .hero::after {
    height: 20px;
  }

  .hero__print-grid {
    top: 8%;
    left: -16vw;
    width: 104vw;
    height: 70vh;
  }

  .hero__pattern {
    top: 2%;
    right: -5%;
    width: 110%;
    height: 96%;
    opacity: 0.68;
    filter: brightness(0.72) contrast(1.24) saturate(0.88);
  }

  .hero__visual {
    top: 2rem;
    right: 0;
    bottom: auto;
    width: 100%;
    height: 61vh;
    min-height: 520px;
    opacity: 0.9;
  }

  .hero__portrait {
    right: -17vw;
    bottom: -8.5rem;
    width: 104vw;
    height: 78vh;
    min-height: 650px;
  }

  .hero__visual::before {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.4), transparent 52%),
      linear-gradient(0deg, var(--ink) 2%, transparent 40%);
  }

  .hero__copy {
    position: relative;
    display: flex;
    padding-top: max(60vh, 555px);
    flex-direction: column;
  }

  .eyebrow {
    position: absolute;
    z-index: 8;
    top: calc(var(--header-height) + 0.7rem);
    left: 0.15rem;
    font-size: 0.72rem;
  }

  .hero__title {
    position: relative;
    top: auto;
    left: auto;
    max-width: 8ch;
    margin: 0;
    font-size: clamp(2.75rem, 13vw, 3.7rem);
    line-height: 0.9;
    transform-origin: 12% 45%;
  }

  .hero__tagline {
    position: relative;
    top: auto;
    left: auto;
    width: min(16rem, 70vw);
    margin: 0.35rem 0 0;
    font-size: 1.08rem;
  }

  .hero__headline {
    position: absolute;
    z-index: 8;
    top: calc(var(--header-height) + 3.3rem);
    left: 0.15rem;
    width: min(20rem, 82vw);
  }

  .hero__intro {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    width: auto;
    padding: 0.85rem 1rem 0.9rem 1.2rem;
    font-size: 1rem;
    line-height: 1.38;
  }

  .hero__actions {
    margin-top: 1.25rem;
    align-items: stretch;
  }

  .comic-button {
    min-width: 175px;
    min-height: 54px;
  }

  .text-link {
    display: none;
  }

  .hero__stats {
    display: grid;
    width: 100%;
    max-width: none;
    margin-top: 1.5rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero__stats div {
    display: flex;
    width: 100%;
    min-height: 58px;
    padding: 0 0.65rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    text-align: center;
  }

  .hero__stats div:first-child {
    padding-left: 0.65rem;
  }

  .hero__stats dt {
    font-size: 1.55rem;
  }

  .hero__stats dd {
    max-width: 10ch;
    margin-top: 0.25rem;
    font-size: 0.58rem;
    text-align: center;
    white-space: normal;
  }

  .section-shell {
    padding: 1.25rem 0 5rem;
  }

  .section-heading--row {
    display: block;
  }

  .section-heading h2 {
    font-size: clamp(3.5rem, 17vw, 5rem);
  }

  .section-heading__note {
    margin-top: 1rem;
  }

  .contact {
    min-height: 620px;
  }

  .contact__layout {
    min-height: 620px;
    gap: 2.4rem;
  }

  .location-card {
    min-height: 145px;
    padding: 1.5rem;
    grid-template-columns: auto minmax(0, 1fr);
  }

  .location-card__icon {
    width: 52px;
    height: 52px;
  }

  .location-card h3 {
    font-size: 2.3rem;
  }

  .location-card__logo {
    width: 100%;
    min-height: 78px;
    padding: 0.75rem 0;
    grid-column: 1 / -1;
    border-top: 1px solid var(--line-soft);
    border-left: 0;
  }

  .location-card__logo img {
    width: min(190px, 70%);
  }

  .contact__social-block {
    padding: 1.4rem;
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .social-links a {
    width: 48px;
    height: 48px;
  }

  .church-art {
    right: -32%;
    bottom: 2%;
    width: 146vw;
    opacity: 0.23;
  }

  .church-art__label {
    right: 20%;
    font-size: 3.7rem;
  }

  .package-grid {
    width: calc(100% + 1rem);
    grid-auto-columns: minmax(280px, 86vw);
  }

  .package-card {
    min-height: 545px;
    padding: 1.75rem;
  }

  .package-card h3 {
    font-size: 3.8rem;
  }

  .video-showcase {
    margin-top: 2.2rem;
  }

  .video-stage {
    height: 390px;
    clip-path: polygon(2% 0, 100% 0, 97% 100%, 0 98%);
  }

  .video-stage > img {
    object-position: 48% 20%;
  }

  .video-stage__texture {
    background:
      linear-gradient(0deg, rgba(5, 5, 5, 0.92), transparent 68%),
      radial-gradient(circle at 80% 20%, rgba(217, 40, 30, 0.34), transparent 30%);
  }

  .video-stage__copy {
    right: 1.4rem;
    bottom: 2.4rem;
    left: 1.4rem;
  }

  .video-stage__copy h3 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .play-button {
    top: 42%;
    left: 50%;
    width: 76px;
  }

  .video-carousel {
    grid-template-columns: minmax(0, 1fr);
  }

  .carousel-arrow {
    display: none;
  }

  .video-thumbs {
    width: calc(100% + 1rem);
    grid-auto-columns: 70vw;
  }

  .video-thumb {
    height: 124px;
    min-height: 124px;
  }

  .testimonial-controls {
    margin-top: 1.2rem;
  }

  .testimonial-track {
    margin-top: 2rem;
    grid-auto-columns: 84vw;
  }

  .testimonial-card {
    min-height: 315px;
    padding: 1.6rem;
  }

  .site-footer {
    min-height: 220px;
    padding: 3.5rem 1rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .site-footer p {
    display: grid;
    gap: 0.25rem;
  }

  .site-footer__mark {
    right: -3%;
    font-size: 10rem;
  }
}

@media (max-height: 760px) and (min-width: 961px) {
  .hero {
    padding-top: calc(var(--header-height) + 1.3rem);
    padding-bottom: 2.2rem;
  }

  .hero__title {
    font-size: clamp(4.4rem, 6.4vw, 6.8rem);
  }

  .hero__intro {
    line-height: 1.52;
  }

  .hero__actions {
    margin-top: 1.15rem;
  }

  .hero__stats {
    margin-top: 1.45rem;
  }

  .hero__portrait {
    bottom: -14vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero__portrait {
    transform: none !important;
    filter: brightness(0.88);
  }

  .hero__pattern {
    transform: scale(1.04) rotate(0.7deg) !important;
  }

  .js .reveal-up,
  .js .reveal-section,
  .js .reveal-card {
    opacity: 1;
    transform: none;
    clip-path: none;
  }
}
