:root {
  --ink: #111111;
  --muted: #4a4a4a;
  --brand: #d67f9d;
  --brand-dark: #bd5e82;
  --brand-soft: #faedf2;
  --on-brand: #ffffff;
  --line: #e7a8bf;
  --surface: #ffffff;
  --surface-soft: #fffafc;
  --surface-panel: #ffffff;
  --surface-glass: rgba(255, 255, 255, 0.72);
  --surface-strong-glass: rgba(255, 255, 255, 0.9);
  --page-bg: #ffffff;
  --header-bg: rgba(255, 250, 252, 0.94);
  --footer-text: rgba(17, 17, 17, 0.42);
  --shadow-brand-soft: rgba(214, 127, 157, 0.08);
  --shadow-brand: rgba(214, 127, 157, 0.18);
  --shadow-brand-strong: rgba(214, 127, 157, 0.26);
  --shadow-dark-soft: rgba(17, 17, 17, 0.14);
  --shadow-dark: rgba(0, 0, 0, 0.32);
  --font-body: Lato, Arial, sans-serif;
  --font-display: Lobster, Lato, Arial, sans-serif;
  --title-size: 4rem;
  --subtitle-size: 2rem;
  --section-title-size: 2rem;
  --card-title-size: 1.6rem;
  --copy-size: 1rem;
  --copy-line: 1.48;
  --heading-line: 1.03;
  --page-gutter: 1.5rem;
  --page-hero-top: clamp(3.4rem, 6vw, 4.4rem);
  --page-hero-bottom: 1.5rem;
  --section-space: clamp(2.6rem, 5vw, 3.9rem);
  --section-compact-space: clamp(2rem, 4vw, 3rem);
  --content-end-space: clamp(2rem, 4vw, 3.2rem);
  --section-copy-gap: 1.8rem;
  --card-copy-gap: 0.95rem;
  color-scheme: light;
  font-family: Lato, Arial, sans-serif;
  color: var(--ink);
  background: var(--page-bg);
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #f8eef3;
    --muted: #cdbbc4;
    --brand: #f09abb;
    --brand-dark: #d86c94;
    --brand-soft: rgba(240, 154, 187, 0.16);
    --on-brand: #1a1016;
    --line: rgba(240, 154, 187, 0.46);
    --surface: #181318;
    --surface-soft: #201820;
    --surface-panel: #211922;
    --surface-glass: rgba(33, 25, 34, 0.82);
    --surface-strong-glass: rgba(33, 25, 34, 0.94);
    --page-bg: #121014;
    --header-bg: rgba(18, 16, 20, 0.94);
    --footer-text: rgba(248, 238, 243, 0.48);
    --shadow-brand-soft: rgba(240, 154, 187, 0.1);
    --shadow-brand: rgba(240, 154, 187, 0.18);
    --shadow-brand-strong: rgba(240, 154, 187, 0.28);
    --shadow-dark-soft: rgba(0, 0, 0, 0.34);
    --shadow-dark: rgba(0, 0, 0, 0.58);
    color-scheme: dark;
  }
}

* {
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100vh;
  min-width: 320px;
  background: var(--page-bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(214, 127, 157, 0.22);
  background: var(--header-bg);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.8rem var(--page-gutter);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 3.7rem;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(214, 127, 157, 0.22);
  border-radius: 999px;
  background: var(--surface-glass);
  padding: 0.3rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 10px 24px var(--shadow-brand-soft);
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  background: var(--brand);
  color: var(--on-brand);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid rgba(214, 127, 157, 0.34);
  border-radius: 999px;
  background: var(--surface-glass);
  color: var(--brand);
  cursor: pointer;
  box-shadow: 0 10px 24px var(--shadow-brand-soft);
}

.nav-toggle span {
  grid-area: 1 / 1;
  display: block;
  width: 1.15rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-0.38rem);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(0.38rem);
}

.nav.is-open .nav-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

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

.nav.is-open .nav-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

h1,
h2,
h3,
.subtitle,
.eyebrow {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0.7rem;
  color: var(--brand);
  font-size: var(--title-size);
  line-height: var(--heading-line);
}

h2 {
  margin-bottom: 0.75rem;
  color: var(--brand);
  font-size: var(--section-title-size);
  line-height: var(--heading-line);
  text-align: center;
}

h3 {
  margin-bottom: 0.65rem;
  color: var(--brand);
  font-size: var(--card-title-size);
  line-height: 1.08;
}

p,
li {
  line-height: var(--copy-line);
}

.site-main {
  flex: 1;
}

.hero {
  max-width: 1160px;
  margin: 0 auto;
  padding: var(--page-hero-top) var(--page-gutter) var(--section-compact-space);
  text-align: center;
}

.hero-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 6vw, 4rem);
  margin-bottom: 3.2rem;
}

.hero-logo {
  text-align: center;
}

.hero-logo-mark {
  display: block;
  width: 10rem;
  height: auto;
}

.subtitle {
  max-width: 980px;
  margin: 0 auto 0.8rem;
  color: var(--brand);
  font-size: var(--subtitle-size);
  line-height: 1.12;
  text-align: center;
}

.lead {
  max-width: 980px;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: auto;
  margin-left: auto;
  color: var(--ink);
  font-size: var(--copy-size);
  font-weight: 700;
  line-height: var(--copy-line);
  text-align: center;
}

.lead + .lead {
  margin-top: 0.75rem;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(10rem, max-content));
  justify-content: center;
  gap: 1rem;
  max-width: 760px;
  margin: 3rem auto 3rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  min-width: 10.5rem;
  padding: 0.75rem 1.35rem;
  border: 1.5px solid var(--brand);
  border-radius: 999px;
  background: var(--brand);
  color: var(--on-brand);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 10px 22px var(--shadow-brand);
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.button.secondary {
  background: var(--surface-panel);
  color: var(--brand-dark);
  box-shadow: none;
}

.button svg {
  width: 1rem;
  height: 1rem;
  margin-right: 0.45rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button:hover,
.button:focus-visible {
  border-color: var(--brand-dark);
  background: var(--brand-dark);
  color: var(--on-brand);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px var(--shadow-brand-strong);
}

.section {
  padding: var(--section-space) var(--page-gutter);
  background: var(--page-bg);
}

.section.compact-top {
  padding-top: var(--section-compact-space);
  padding-bottom: var(--section-compact-space);
}

.site-main > .section:last-child {
  padding-bottom: var(--content-end-space);
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-heading {
  margin: 0 auto var(--section-copy-gap);
  text-align: center;
}

.section.compact-top .section-heading {
  margin-bottom: 1.2rem;
}

.section-heading h2 {
  margin-bottom: 0.5rem;
}

.section.compact-top .section-heading h2 {
  margin-bottom: 0.45rem;
}

.section-heading .lead {
  max-width: 1020px;
}

.hero-gallery,
.venue-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.55rem, 2.2vw, 2rem);
}

.hero-gallery {
  width: 100%;
  gap: clamp(0.35rem, 1vw, 0.8rem);
  margin: 0 auto;
}

.hero-gallery-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 3;
}

.hero-gallery img,
.venue-gallery img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.hero-gallery img {
  aspect-ratio: 2 / 3;
  border-radius: 0;
}

.hero-gallery-frame img {
  height: 100%;
}

.hero-gallery-frame img.is-outgoing,
.hero-gallery-frame img.is-incoming {
  position: absolute;
  inset: 0;
  transition: transform 620ms ease;
}

.hero-gallery-frame img.is-incoming {
  transform: translateX(100%);
}

.hero-gallery-frame.is-animating img.is-outgoing {
  transform: translateX(-100%);
}

.hero-gallery-frame.is-animating img.is-incoming {
  transform: translateX(0);
}

.hero-gallery img,
.carousel-track img {
  cursor: zoom-in;
}

.venue-gallery {
  gap: 0.8rem;
  margin-top: 1.1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.venue-gallery img {
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  border-radius: 0;
  object-position: center;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 2.1rem auto 0;
}

.benefit-card {
  position: relative;
  min-height: 12rem;
  border: 1.5px solid var(--line);
  border-radius: 15px;
  background: linear-gradient(180deg, var(--surface-panel) 0%, var(--brand-soft) 100%);
  padding: 1.25rem 1rem 1.15rem;
  text-align: center;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.benefit-card:hover {
  border-color: var(--brand);
  box-shadow: 0 14px 28px var(--shadow-brand);
  transform: translateY(-2px);
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  margin-bottom: 0.8rem;
  border-radius: 999px;
  background: var(--brand);
  color: var(--on-brand);
  box-shadow: 0 9px 18px var(--shadow-brand);
}

.benefit-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.benefit-card h3 {
  margin-bottom: 0.55rem;
  color: var(--brand);
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.16;
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
}

.grid {
  display: grid;
  gap: 2.9rem;
}

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

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

.process-grid,
.partner-benefits {
  display: grid;
}

.process-grid {
  position: relative;
  justify-content: center;
  gap: 2.2rem;
  grid-template-columns: minmax(0, 34rem);
  align-items: stretch;
  counter-reset: process-step;
  padding-top: 1.6rem;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 1.6rem;
  bottom: 1.1rem;
  left: 50%;
  width: 2px;
  background: var(--line);
  transform: translateX(-50%);
}

.card,
.step-card,
.venue-card,
.cta-panel {
  border: 1.5px solid var(--line);
  border-radius: 15px;
  background: var(--surface-panel);
}

.card,
.step-card {
  padding: 1.5rem 1.15rem;
  text-align: center;
}

.card p,
.step-card p,
.venue-card p,
.policy-content p,
.policy-content li {
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: var(--copy-line);
}

.step-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
  padding: 3rem 1.55rem 1.85rem;
  overflow: visible;
  box-shadow: 0 10px 26px var(--shadow-brand-soft);
  transition: border-color 160ms ease, transform 160ms ease;
}

.process-grid .step-card {
  border-color: var(--brand);
}

.step-card p {
  margin-bottom: 0;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.step-card:hover {
  border-color: var(--brand-dark);
  transform: translateY(-2px);
}

.step-card h3 {
  margin-bottom: var(--card-copy-gap);
}

.card h3 {
  margin-bottom: var(--card-copy-gap);
}

.venue-card h2 {
  margin-bottom: 0.85rem;
}

.step-number,
.tick {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--brand);
  color: var(--on-brand);
  font-weight: 900;
}

.process-grid .step-number {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  margin: 0;
  border: 4px solid var(--page-bg);
  box-shadow: 0 0 0 1.5px var(--brand);
  transform: translate(-50%, -50%);
}

.tick {
  width: auto;
  height: auto;
  margin-bottom: 0.55rem;
  background: transparent;
  color: var(--brand);
  font-size: 1.7rem;
}

.cta-panel {
  max-width: 540px;
  margin: 4rem auto 0;
  padding: 1.8rem 1.5rem;
  text-align: center;
}

.partner-cta {
  width: 100%;
  max-width: none;
  margin-top: 1.25rem;
  padding: 1.6rem;
}

.partner-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.55rem;
}

.benefit-chip {
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 1rem 0.8rem;
  background: var(--surface-panel);
}

.benefit-chip h3 {
  margin-bottom: 0;
  color: var(--brand);
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.18;
}

.benefit-chip .tick {
  margin-bottom: 0.35rem;
}

.cta-panel .lead {
  font-size: 0.98rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 1.4rem 0;
}

.cta-panel .button {
  min-width: 7.5rem;
  border-radius: 999px;
  color: var(--on-brand);
}

.cta-panel .button.secondary {
  background: var(--surface-panel);
  color: var(--brand);
}

.contact-line {
  margin-bottom: 0.2rem;
  color: var(--brand);
  font-weight: 900;
}

.small-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.page-hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: var(--page-hero-top) var(--page-gutter) var(--page-hero-bottom);
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 0.95rem;
  color: var(--brand);
  font-size: var(--subtitle-size);
  line-height: 1.12;
}

.page-hero .lead {
  max-width: 900px;
}

.page-hero .lead + .lead {
  max-width: 980px;
  margin-top: 0.95rem;
}

.eyebrow {
  margin-bottom: 0.45rem;
  color: var(--brand);
  font-size: var(--title-size);
  line-height: var(--heading-line);
  text-align: center;
}

.venue-list {
  display: grid;
  gap: 2rem;
}

.venues-section {
  padding-top: var(--section-compact-space);
}

.venue-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  padding: 1.8rem;
}

.venue-card-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.venue-card h2 {
  margin-bottom: 0;
  text-align: left;
}

.venue-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.venue-location {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--brand);
  font-size: 0.86rem;
  font-weight: 900;
  white-space: nowrap;
}

.venue-location svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.venue-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 0.95rem;
}

.venue-date {
  margin-bottom: 1.05rem;
}

.venue-copy {
  max-width: 42rem;
}

.venue-copy p {
  margin-bottom: 0.85rem;
}

.venue-carousel {
  min-width: 0;
}

.carousel-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--brand);
}

.carousel-track {
  display: flex;
  transition: transform 620ms ease;
  will-change: transform;
}

.carousel-track img {
  display: block;
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--brand);
}

.carousel-controls {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  display: grid;
  grid-template-columns: 2.25rem 1fr 2.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  pointer-events: none;
}

.carousel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1.5px solid var(--brand);
  border-radius: 999px;
  background: var(--surface-strong-glass);
  color: var(--brand-dark);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 8px 18px var(--shadow-dark-soft);
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  background: var(--brand);
  color: var(--on-brand);
  transform: translateY(-1px);
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  justify-self: center;
  border-radius: 999px;
  background: var(--surface-glass);
  padding: 0.42rem 0.55rem;
  box-shadow: 0 8px 18px var(--shadow-dark-soft);
}

.carousel-dots span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--line);
  transition: background 160ms ease, transform 160ms ease;
}

.carousel-dots span.is-active {
  background: var(--brand);
  transform: scale(1.25);
}

.lightbox-open {
  overflow: hidden;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 4rem 1.25rem 1.25rem;
  background: rgba(17, 17, 17, 0.82);
}

.image-lightbox[hidden] {
  display: none;
}

.lightbox-image {
  display: block;
  max-width: min(100%, 1100px);
  max-height: calc(100vh - 6rem);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: var(--surface-panel);
  object-fit: contain;
  box-shadow: 0 24px 60px var(--shadow-dark);
}

.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  min-height: 2.5rem;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: var(--surface-strong-glass);
  color: var(--brand-dark);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 900;
  padding: 0.65rem 1rem;
  cursor: pointer;
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: var(--surface-strong-glass);
  color: var(--brand-dark);
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 30px var(--shadow-dark);
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--brand-soft);
  padding: 0.4rem 0.65rem;
  color: var(--brand-dark);
  font-size: 0.8rem;
  font-weight: 900;
}

.feature-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.feature-list li {
  margin-bottom: 0.45rem;
  color: var(--ink);
  font-weight: 700;
}

.policy-layout {
  display: grid;
  grid-template-columns: 15.5rem minmax(0, 1fr);
  gap: clamp(1.6rem, 4vw, 3rem);
  max-width: 1120px;
  margin: 0 auto;
  padding: var(--section-compact-space) var(--page-gutter) var(--content-end-space);
}

.policy-nav {
  position: sticky;
  top: 5.5rem;
  align-self: start;
  border: 1.5px solid var(--line);
  border-radius: 15px;
  background: var(--surface-panel);
  padding: 0.9rem;
  box-shadow: 0 10px 26px var(--shadow-brand-soft);
}

.policy-nav a {
  display: block;
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.policy-nav a:hover {
  background: var(--brand-soft);
  color: var(--brand);
}

.policy-nav a.is-active {
  background: var(--brand);
  color: var(--on-brand);
}

.policy-content {
  min-width: 0;
  border: 1.5px solid var(--line);
  border-radius: 15px;
  background: var(--surface-panel);
  padding: clamp(1.25rem, 3vw, 2.1rem);
  box-shadow: 0 10px 26px var(--shadow-brand-soft);
}

.policy-content a {
  color: var(--brand-dark);
  font-weight: 900;
  text-underline-offset: 0.18em;
}

.policy-content section {
  border-top: 1px solid var(--line);
  padding-top: clamp(1.45rem, 3vw, 2rem);
  margin-top: clamp(1.45rem, 3vw, 2rem);
  scroll-margin-top: 6.5rem;
}

.policy-content section:first-child {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}

.policy-content section:target {
  border-color: var(--brand);
}

.policy-content h2,
.policy-content h3 {
  text-align: left;
}

.policy-content h2 {
  margin-bottom: 0.65rem;
  font-size: var(--section-title-size);
}

.policy-content h3 {
  margin-top: 1.35rem;
  margin-bottom: 0.45rem;
  font-family: var(--font-body);
  font-size: 1.03rem;
  font-weight: 900;
  line-height: 1.22;
}

.policy-content p {
  margin-bottom: 0.85rem;
}

.policy-content p:last-child,
.policy-content li:last-child {
  margin-bottom: 0;
}

.policy-content ul {
  display: grid;
  gap: 0.55rem;
  margin: 0.9rem 0 1rem;
  padding-left: 1.25rem;
}

.policy-content li::marker {
  color: var(--brand);
}

.site-footer {
  border-top: 1px solid rgba(214, 127, 157, 0.16);
  padding: 1.35rem var(--page-gutter) 1.2rem;
  background: var(--page-bg);
  color: var(--footer-text);
  text-align: center;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
}

.company-details {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
}

.footer-links {
  display: none;
}

@media (min-width: 1000px) {
  .benefit-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .process-grid {
    gap: 1.2rem;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    padding-top: 1.8rem;
  }

  .process-grid::before {
    display: none;
  }

  .process-grid .step-card {
    padding-right: 1.1rem;
    padding-left: 1.1rem;
  }
}

@media (max-width: 999px) {
  .benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1180px) {
  .partner-benefits {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  :root {
    --title-size: 3rem;
    --subtitle-size: 1.75rem;
    --section-title-size: 1.75rem;
    --card-title-size: 1.45rem;
    --page-gutter: 1rem;
    --page-hero-top: 2.7rem;
    --page-hero-bottom: 1.2rem;
    --section-space: 2.6rem;
    --section-compact-space: 2.35rem;
    --content-end-space: 2rem;
  }

  .grid,
  .grid.two,
  .grid.four,
  .partner-benefits,
  .venue-card,
  .venue-card-reverse,
  .policy-layout {
    grid-template-columns: 1fr;
  }

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

  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 9.5rem));
    gap: 0.75rem;
    margin-top: 2.5rem;
  }

  .hero-actions .button {
    min-width: 0;
    min-height: 3rem;
    padding-right: 0.85rem;
    padding-left: 0.85rem;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
  }

  .venue-card {
    gap: 1.35rem;
  }

  .venue-content {
    order: 1;
  }

  .venue-carousel {
    order: 2;
    width: min(100%, 21rem);
    margin: 0 auto;
  }

  .venue-title-row {
    align-items: baseline;
    flex-direction: row;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .hero-logo-mark {
    width: 8rem;
  }

  .policy-nav {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.25rem;
  }

  .policy-content {
    padding: 1.25rem;
  }
}

@media (max-width: 600px) {
  .nav {
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 0.85rem 1rem;
  }

  .nav-toggle {
    display: grid;
    margin-left: auto;
  }

  .nav-links {
    max-height: 0;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    justify-content: center;
    margin-top: 0;
    border-radius: 16px;
    border-color: transparent;
    padding: 0 0.25rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.35rem);
    font-size: 0.84rem;
    scrollbar-width: none;
  }

  .nav.is-ready .nav-links {
    transition: max-height 220ms ease, margin-top 220ms ease, padding 220ms ease, border-color 220ms ease, opacity 180ms ease, transform 220ms ease;
  }

  .nav.is-open .nav-links {
    max-height: 4rem;
    margin-top: 0.8rem;
    border-color: rgba(214, 127, 157, 0.22);
    padding: 0.25rem;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    min-height: 2.1rem;
    padding: 0.5rem 0.7rem;
  }

  .policy-layout {
    gap: 1rem;
    padding-top: 1.6rem;
  }

  .policy-nav {
    grid-template-columns: 1fr;
  }

  .hero-title {
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
  }

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

  .benefit-card {
    min-height: 0;
    padding: 1.1rem 0.95rem;
  }

  .benefit-icon {
    width: 2.55rem;
    height: 2.55rem;
    margin-bottom: 0.65rem;
  }

  .benefit-card h3 {
    margin-bottom: 0.45rem;
  }

  .lightbox-nav {
    top: auto;
    bottom: 1rem;
    transform: none;
  }

  .lightbox-prev {
    left: 1rem;
  }

  .lightbox-next {
    right: 1rem;
  }
}

@media (max-width: 560px) {
  :root {
    --title-size: 2.55rem;
    --subtitle-size: 1.55rem;
    --section-title-size: 1.55rem;
    --card-title-size: 1.35rem;
  }

  .hero-logo-mark {
    width: 7.5rem;
  }
}
