:root {
  --ink: #101010;
  --paper: #f4f2ed;
  --white: #ffffff;
  --red: #ef3f34;
  --line: #cdc9c1;
  --muted: #68655f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

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

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

img {
  max-width: 100%;
  height: auto;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-180%);
}

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

.error-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 2rem;
  text-align: center;
}

.error-page h1 {
  margin: 0 0 1rem;
  font-size: clamp(5rem, 20vw, 13rem);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.error-page h1 em {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.error-page p {
  max-width: 520px;
  margin: 0 auto 2rem;
  color: var(--muted);
  line-height: 1.7;
}

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

.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: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 88px;
  padding: 0 4.2vw;
  background: var(--paper);
  border-bottom: 1px solid var(--ink);
}

.brand {
  width: max-content;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.brand-dot {
  color: var(--red);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a,
.language-switch a,
footer a,
.text-link {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.language-switch a:hover,
footer a:hover,
.text-link:hover {
  color: var(--red);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.6rem;
}

.language-switch {
  display: flex;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.language-switch a:not(.is-active) {
  color: #8e8a83;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  min-height: 58px;
  padding: 0 1.4rem;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 46px;
  padding: 0 1.15rem;
}

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

.button-dark:hover {
  background: var(--red);
}

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

.button-red:hover {
  background: #d92e25;
}

.button-outline {
  border-color: var(--ink);
}

.button-outline:hover {
  background: var(--ink);
  color: var(--white);
}

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

.button-light:hover {
  background: var(--paper);
}

.hero {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  min-height: calc(100svh - 88px);
  border-bottom: 1px solid var(--ink);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vh, 7rem) 4.2vw 2.5rem;
  border-right: 1px solid var(--ink);
}

.eyebrow {
  margin: 0 0 1.65rem;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.contact-section h2 {
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.072em;
  line-height: 0.94;
}

.hero h1 {
  max-width: 960px;
  font-size: clamp(3.3rem, 6.4vw, 7.15rem);
}

.hero h1 em,
.contact-section h2 em {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-lead {
  max-width: 580px;
  margin: 2rem 0 0;
  color: #4c4944;
  font-size: clamp(1rem, 1.4vw, 1.28rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.2rem;
}

.text-link {
  display: inline-flex;
  gap: 0.7rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--ink);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: auto 0 0;
  padding: 2.2rem 0 0;
  border-top: 1px solid var(--line);
}

.hero-facts div {
  display: grid;
  gap: 0.5rem;
  padding-right: 1rem;
}

.hero-facts dt {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 800;
}

.hero-facts dd {
  max-width: 150px;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 670px;
  overflow: hidden;
  background: #dedbd4;
}

.red-orbit {
  position: absolute;
  width: clamp(360px, 38vw, 640px);
  aspect-ratio: 1;
  border: clamp(42px, 5vw, 76px) solid var(--red);
  border-radius: 50%;
  animation: orbit-in 900ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.booth-image {
  position: relative;
  z-index: 2;
  width: min(70%, 510px);
  max-height: 82%;
  object-fit: contain;
  filter: drop-shadow(0 26px 20px rgb(16 16 16 / 0.2));
  animation: booth-in 900ms 140ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.price-ticket {
  position: absolute;
  z-index: 3;
  top: 7%;
  right: 6%;
  display: flex;
  flex-direction: column;
  width: 128px;
  min-height: 104px;
  justify-content: center;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--ink);
  transform: rotate(4deg);
}

.price-ticket span {
  margin-bottom: 0.25rem;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-ticket strong {
  font-size: 1.05rem;
}

.booth-caption {
  position: absolute;
  z-index: 3;
  bottom: 3.5%;
  left: 5%;
  display: grid;
  gap: 0.2rem;
  margin: 0;
  padding-left: 0.75rem;
  border-left: 3px solid var(--red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booth-caption span {
  color: #66625c;
  font-size: 0.6rem;
  font-weight: 700;
}

.signal-strip {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  min-height: 66px;
  padding: 0.5rem 4.2vw;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.signal-strip i {
  color: var(--red);
  font-size: 0.55rem;
  font-style: normal;
}

.section {
  padding: clamp(5.5rem, 10vw, 10rem) 4.2vw;
}

.section-index {
  margin-bottom: clamp(4rem, 8vw, 8rem);
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-index-light {
  border-color: #393939;
  color: #aaa7a1;
}

.intro-section {
  background: var(--white);
}

.intro-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  column-gap: 4vw;
}

.intro-content .eyebrow {
  padding-top: 0.6rem;
}

.intro-content h2 {
  grid-column: 2;
  font-size: clamp(2.9rem, 5.5vw, 6rem);
}

.intro-content h2 span {
  color: #a6a29b;
}

.section-lead {
  grid-column: 2;
  max-width: 630px;
  margin: 2.2rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(4rem, 8vw, 8rem);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.steps-grid article {
  min-height: 310px;
  padding: 1.5rem 2rem 2rem 0;
}

.steps-grid article + article {
  padding-left: 2rem;
  border-left: 1px solid var(--line);
}

.step-number {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 800;
}

.steps-grid h3 {
  margin: 7rem 0 1rem;
  font-size: 1.65rem;
  letter-spacing: -0.04em;
}

.steps-grid p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.occasions-section {
  background: var(--ink);
  color: var(--white);
}

.eyebrow-light {
  color: #aaa7a1;
}

.occasion-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  column-gap: 4vw;
  align-items: start;
}

.occasion-heading h2 {
  max-width: 900px;
  font-size: clamp(3rem, 5.6vw, 6rem);
}

.occasion-grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr 0.88fr;
  margin-top: clamp(4rem, 7vw, 7rem);
}

.occasion-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  padding: 1.6rem;
}

.occasion-card > span {
  font-size: 0.67rem;
  font-weight: 800;
}

.occasion-card p {
  margin: 0 0 0.7rem;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.occasion-card h3 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.06em;
}

.occasion-card a {
  align-self: flex-end;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid currentColor;
  font-size: 1.2rem;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.occasion-card a:hover {
  background: var(--white);
  color: var(--ink);
  transform: rotate(8deg);
}

.occasion-card-light {
  background: var(--paper);
  color: var(--ink);
}

.occasion-card-red {
  background: var(--red);
}

.occasion-card-outline {
  border: 1px solid #4b4b4b;
}

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

.pricing-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 4vw;
  align-items: end;
}

.pricing-heading h2,
.faq-section h2 {
  font-size: clamp(3rem, 5.5vw, 6rem);
}

.pricing-heading > p {
  max-width: 420px;
  margin: 0 0 0.5rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(4rem, 7vw, 7rem);
  border: 1px solid var(--ink);
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 650px;
  padding: 2rem;
  background: var(--white);
}

.price-card + .price-card {
  border-left: 1px solid var(--ink);
}

.price-card.is-featured {
  background: var(--ink);
  color: var(--white);
}

.popular-label {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.62rem 0.85rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.is-featured .price-eyebrow,
.is-featured .price-description {
  color: #aaa7a1;
}

.price-card h3 {
  margin: 1.1rem 0 3.5rem;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.055em;
}

.price {
  display: flex;
  align-items: flex-start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.is-featured .price {
  border-color: #454545;
}

.price span {
  padding-top: 0.5rem;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price strong {
  margin-left: auto;
  font-size: clamp(3.4rem, 4.6vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.price small {
  padding-top: 0.15rem;
  font-weight: 750;
}

.price-description {
  min-height: 88px;
  margin: 1.5rem 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.65;
}

.price-card ul {
  display: grid;
  gap: 0.95rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.price-card li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-size: 0.78rem;
  line-height: 1.45;
}

.check {
  color: var(--red);
  font-weight: 900;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.is-featured .button-red {
  border-color: var(--red);
}

.pricing-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.69rem;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 9vw;
  background: var(--white);
}

.faq-section .section-index {
  margin-bottom: 4rem;
}

.faq-section h2 {
  max-width: 560px;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--ink);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 1rem;
  align-items: center;
  min-height: 92px;
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  font-weight: 650;
}

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

.faq-list summary span {
  color: var(--red);
  font-size: 0.67rem;
  font-weight: 800;
}

.faq-list summary i {
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 300;
  transition: transform 180ms ease;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 620px;
  margin: -0.5rem 0 0;
  padding: 0 2rem 2rem 54px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.contact-section {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 6vw;
  align-items: end;
  padding: clamp(5.5rem, 10vw, 9rem) 4.2vw;
  background: var(--red);
  color: var(--white);
}

.contact-section .eyebrow-light {
  color: #ffd8d4;
}

.contact-section h2 {
  font-size: clamp(3.2rem, 6vw, 6.6rem);
}

.contact-section h2 em {
  color: var(--ink);
}

.contact-actions {
  display: grid;
  gap: 1.4rem;
}

.contact-actions .button {
  width: 100%;
}

.contact-actions p {
  display: grid;
  gap: 0.25rem;
  margin: 0;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-actions p span {
  color: #ffd8d4;
  font-size: 0.62rem;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 150px;
  padding: 1.5rem 4.2vw;
  background: var(--ink);
  color: var(--white);
}

.brand-footer {
  font-size: 1.35rem;
}

footer > p {
  margin: 0;
  color: #8d8d8d;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.3rem;
  color: #8d8d8d;
  font-size: 0.64rem;
}

.footer-partners {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 2rem;
  padding-top: 1.1rem;
  border-top: 1px solid #2e2e2e;
  color: #8d8d8d;
  font-size: 0.64rem;
  line-height: 1.5;
}

.footer-partners a {
  color: #c9c9c9;
}

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

.coverage-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 2rem 6vw;
  align-items: end;
}

.coverage-copy .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.coverage-copy h2 {
  max-width: 900px;
  font-size: clamp(2.8rem, 5.5vw, 6.2rem);
}

.coverage-copy .section-lead {
  margin: 0;
}

.coverage-copy .text-link {
  grid-column: 2;
  width: max-content;
}

.coverage-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(3rem, 7vw, 7rem);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.coverage-list span {
  min-height: 96px;
  display: flex;
  align-items: center;
  padding: 1.5rem;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  font-weight: 700;
}

.seo-page {
  min-height: 100svh;
  background: var(--paper);
}

.seo-hero {
  padding: clamp(4rem, 8vw, 8rem) 4.2vw;
  border-bottom: 1px solid var(--ink);
}

.seo-hero h1 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(3.1rem, 7vw, 7.8rem);
  font-weight: 500;
  letter-spacing: -0.072em;
  line-height: 0.94;
}

.seo-hero h1 em {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.seo-hero .section-lead {
  max-width: 760px;
  margin-top: 2rem;
}

.seo-content {
  display: grid;
  grid-template-columns: minmax(200px, 0.35fr) minmax(0, 1fr);
  gap: 3rem 8vw;
  padding: clamp(4rem, 8vw, 8rem) 4.2vw;
}

.seo-content h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(2.1rem, 4vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.seo-content p,
.seo-content li {
  color: #4c4944;
  font-size: 1rem;
  line-height: 1.75;
}

.seo-content section + section {
  margin-top: 4rem;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2.5rem;
  background: var(--ink);
  border: 1px solid var(--ink);
}

.region-grid article {
  padding: clamp(1.5rem, 3vw, 2.7rem);
  background: var(--paper);
}

.region-grid h3 {
  margin: 0 0 0.8rem;
  font-size: 1.4rem;
}

.region-grid p {
  margin: 0;
  font-size: 0.92rem;
}

.legal-list {
  padding: 0;
  list-style: none;
}

.legal-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

@keyframes booth-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes orbit-in {
  from {
    opacity: 0;
    transform: scale(0.82) rotate(-8deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr 0.9fr;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 6.8vw, 5.8rem);
  }

  .hero-facts {
    display: none;
  }

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

  .price-card {
    min-height: auto;
  }

  .price-card + .price-card {
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .price-description {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 72px;
    padding: 0 1rem;
  }

  .header-actions {
    gap: 0.9rem;
  }

  .language-switch {
    display: none;
  }

  .button-small {
    min-height: 40px;
    padding: 0 0.85rem;
    font-size: 0.66rem;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .hero-copy {
    min-height: 610px;
    padding: 4.8rem 1rem 2.4rem;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .hero h1 {
    font-size: clamp(3.25rem, 16vw, 5rem);
    line-height: 0.91;
  }

  .hero-lead {
    margin-top: 1.6rem;
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-visual {
    min-height: 620px;
  }

  .red-orbit {
    width: 410px;
    border-width: 48px;
  }

  .booth-image {
    width: min(78%, 420px);
    max-height: 80%;
  }

  .price-ticket {
    top: 4%;
    right: 1rem;
    width: 112px;
    min-height: 88px;
  }

  .signal-strip {
    justify-content: flex-start;
    gap: 1.7rem;
    padding: 0 1rem;
  }

  .section {
    padding: 5.5rem 1rem;
  }

  .section-index {
    margin-bottom: 3.5rem;
  }

  .intro-content,
  .occasion-heading,
  .pricing-heading,
  .faq-section,
  .contact-section {
    display: block;
  }

  .intro-content h2,
  .section-lead {
    grid-column: auto;
  }

  .intro-content h2,
  .occasion-heading h2,
  .pricing-heading h2,
  .faq-section h2 {
    font-size: clamp(2.75rem, 13vw, 4.5rem);
  }

  .steps-grid {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .steps-grid article {
    min-height: 230px;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--ink);
  }

  .steps-grid article + article {
    padding-left: 0;
    border-left: 0;
  }

  .steps-grid h3 {
    margin-top: 4rem;
  }

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

  .occasion-card {
    min-height: 300px;
  }

  .pricing-heading > p {
    margin-top: 1.5rem;
  }

  .pricing-grid {
    margin-top: 3.5rem;
  }

  .price-card {
    padding: 1.5rem;
  }

  .faq-list {
    margin-top: 3.5rem;
  }

  .faq-list summary {
    grid-template-columns: 28px 1fr auto;
    min-height: 84px;
    font-size: 0.9rem;
  }

  .faq-list details p {
    padding-left: 44px;
  }

  .contact-section {
    padding: 5.5rem 1rem;
  }

  .contact-section h2 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .contact-actions {
    margin-top: 3rem;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: start;
    padding: 2.5rem 1rem;
  }

  .footer-links,
  .footer-partners {
    justify-content: flex-start;
  }

  .footer-partners {
    grid-column: 1;
  }

  .coverage-copy,
  .seo-content {
    grid-template-columns: 1fr;
  }

  .coverage-copy .eyebrow,
  .coverage-copy .text-link {
    grid-column: 1;
  }

  .coverage-list {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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