/* Dirty Deeds — Luxury Restroom Trailer Rentals
   Navy + gold + ivory | serif display + sans body */

:root {
  --navy: #0b1f3a;
  --navy-mid: #122b4e;
  --navy-deep: #071426;
  --gold: #c9a227;
  --gold-bright: #d4af37;
  --gold-soft: rgba(201, 162, 39, 0.18);
  --ivory: #f7f5f0;
  --ivory-warm: #efece4;
  --charcoal: #2a2a2a;
  --muted: #5a5a5a;
  --white: #ffffff;
  --border: rgba(11, 31, 58, 0.12);
  --shadow-soft: 0 12px 40px rgba(11, 31, 58, 0.08);
  --font-display: "Cormorant Garamond", "Palatino Linotype", Palatino, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 7.5rem;
  --max: 72rem;
  --header-h: 4.25rem;
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--charcoal);
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(201, 162, 39, 0.06), transparent 50%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(18, 43, 78, 0.05), transparent 45%),
    var(--ivory);
  min-height: 100vh;
}

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

a {
  color: var(--navy-mid);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--gold);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 0.75rem;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

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

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  z-index: 1000;
  background: var(--navy);
  color: var(--ivory);
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  font-weight: 500;
}

.skip-link:focus {
  top: var(--space-sm);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.container--narrow {
  width: min(100% - 2rem, 42rem);
}

.section {
  padding: var(--space-xl) 0;
}

.section--tight {
  padding: var(--space-lg) 0;
}

.section--navy {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  color: var(--ivory);
}

.section--navy h2,
.section--navy h3 {
  color: var(--ivory);
}

.section--warm {
  background: var(--ivory-warm);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.lead {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 38rem;
}

.divider {
  width: 3rem;
  height: 2px;
  background: var(--gold);
  border: none;
  margin: var(--space-md) 0;
}

.divider--center {
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(11, 31, 58, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: var(--space-sm);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}

.logo span {
  color: var(--gold);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  transition: transform 0.25s var(--ease), opacity 0.25s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  background: var(--ivory);
  border-bottom: 1px solid var(--border);
  padding: var(--space-md);
  transform: translateY(-120%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s var(--ease), opacity 0.35s, visibility 0.35s;
}

.site-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-nav a {
  display: block;
  padding: 0.65rem 0.5rem;
  text-decoration: none;
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
}

.site-nav a[aria-current="page"] {
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.header-cta {
  display: inline-flex;
  padding: 0.55rem 0.9rem;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.header-phone {
  display: none;
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--gold);
}

@media (min-width: 640px) {
  .header-phone {
    display: inline;
  }
}

@media (min-width: 980px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: none;
    padding: 0;
  }

  .site-nav ul {
    flex-direction: row;
    align-items: center;
    gap: 0.1rem;
  }

  .site-nav a {
    padding: 0.4rem 0.55rem;
    font-size: 0.8125rem;
  }

  .header-cta {
    padding: 0.65rem 1.1rem;
    font-size: 0.875rem;
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s, border-color 0.25s, transform 0.25s;
  white-space: nowrap;
  line-height: 1.2;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold-bright);
  color: var(--navy-deep);
}

.btn--secondary {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(247, 245, 240, 0.55);
}

.btn--secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--ivory);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 0.25em;
  padding-inline: 0.5rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--space-md);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(92vh, 52rem);
  display: flex;
  align-items: flex-end;
  color: var(--ivory);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 20, 38, 0.35) 0%, rgba(7, 20, 38, 0.72) 55%, rgba(7, 20, 38, 0.92) 100%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 50%, #1a3a62 100%);
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 40px,
      rgba(201, 162, 39, 0.03) 40px,
      rgba(201, 162, 39, 0.03) 41px
    );
  pointer-events: none;
}

.hero__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(247, 245, 240, 0.35);
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: calc(var(--header-h) + 2rem) 0 var(--space-xl);
  animation: rise 0.9s var(--ease) both;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 600;
  line-height: 0.95;
  margin: 0 0 1.25rem;
  color: var(--ivory);
  letter-spacing: 0.02em;
}

.hero__brand span {
  color: var(--gold);
}

.hero h1 {
  color: var(--ivory);
  font-size: clamp(1.5rem, 3.5vw, 2.15rem);
  font-weight: 500;
  max-width: 28rem;
  margin-bottom: 1rem;
}

.hero .lead {
  color: rgba(247, 245, 240, 0.82);
  max-width: 34rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* —— Page hero (inner pages) —— */
.page-hero {
  background: linear-gradient(155deg, var(--navy-deep), var(--navy-mid));
  color: var(--ivory);
  padding: calc(var(--header-h) + 2.5rem) 0 var(--space-lg);
}

.page-hero h1 {
  color: var(--ivory);
}

.page-hero .lead {
  color: rgba(247, 245, 240, 0.8);
}

/* —— Features —— */
.feature-grid {
  display: grid;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (min-width: 700px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
  }
}

.feature {
  padding-top: var(--space-sm);
  border-top: 2px solid var(--gold);
}

.feature h3 {
  margin-bottom: 0.5rem;
}

.feature p {
  color: var(--muted);
  font-size: 0.98rem;
  margin: 0;
}

/* —— Audience strip —— */
.audience-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  color: var(--navy);
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0 0;
}

.audience-strip li:not(:last-child)::after {
  content: "·";
  margin-left: 1.5rem;
  color: var(--gold);
}

/* —— Why / steps —— */
.split {
  display: grid;
  gap: var(--space-lg);
  align-items: start;
}

@media (min-width: 800px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .split--reverse > :first-child {
    order: 2;
  }
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-list li {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border);
}

.why-list li:first-child {
  border-top: 1px solid var(--border);
}

.why-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.why-list p {
  margin: 0;
  color: var(--muted);
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0 0;
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 750px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }
}

.steps li {
  counter-increment: step;
  position: relative;
  padding-top: 3rem;
}

.steps li::before {
  content: "0" counter(step);
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gold);
  font-weight: 600;
}

.steps h3 {
  margin-bottom: 0.4rem;
}

.steps p {
  color: var(--muted);
  margin: 0;
  font-size: 0.98rem;
}

/* —— Photo placeholders —— */
.photo-ph {
  background:
    linear-gradient(145deg, var(--navy-mid), var(--navy)),
    var(--navy);
  color: rgba(247, 245, 240, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  min-height: 14rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.5;
  border: 1px solid rgba(201, 162, 39, 0.25);
}

.photo-ph--tall {
  min-height: 22rem;
}

.photo-ph--hero-inline {
  min-height: 18rem;
}

/* —— Testimonials —— */
.testimonials {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

@media (min-width: 800px) {
  .testimonials {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial {
  padding: var(--space-md) 0 0;
  border-top: 1px solid var(--border);
}

.testimonial .sample-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.testimonial blockquote {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--navy);
}

.testimonial cite {
  font-style: normal;
  font-size: 0.875rem;
  color: var(--muted);
}

/* —— Service area —— */
.community-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0 0;
  color: var(--muted);
}

.community-list li::before {
  content: "";
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--gold);
  margin-right: 0.55rem;
  vertical-align: middle;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
  margin-top: var(--space-sm);
}

.placeholder-inline {
  display: inline;
  background: var(--gold-soft);
  color: var(--navy);
  padding: 0.1em 0.35em;
  font-style: normal;
  font-size: 0.9em;
  font-weight: 500;
}

/* —— CTA band —— */
.cta-band {
  text-align: center;
  padding: var(--space-xl) 0;
}

.cta-band h2 {
  color: var(--ivory);
  margin-bottom: 0.5rem;
}

.cta-band p {
  color: rgba(247, 245, 240, 0.8);
  margin-bottom: var(--space-md);
}

.cta-band .contact-alt {
  margin-top: var(--space-md);
  font-size: 0.95rem;
  color: rgba(247, 245, 240, 0.7);
}

.cta-band a {
  color: var(--gold);
}

/* —— Coming soon teaser —— */
.teaser {
  display: grid;
  gap: var(--space-md);
  align-items: center;
}

@media (min-width: 750px) {
  .teaser {
    grid-template-columns: 1.2fr 1fr;
  }
}

.teaser-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: var(--space-sm);
}

.teaser-form input[type="email"] {
  flex: 1 1 14rem;
  min-width: 0;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
}

/* —— Gallery —— */
.gallery-grid {
  display: grid;
  gap: var(--space-sm);
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid .photo-ph:first-child {
    grid-column: span 2;
    min-height: 24rem;
  }
}

/* —— Specs —— */
.spec-block {
  background: var(--ivory-warm);
  border-left: 3px solid var(--gold);
  padding: var(--space-md);
  margin: var(--space-lg) 0;
}

.spec-block dl {
  display: grid;
  gap: 0.75rem 1.5rem;
  margin: 0;
}

@media (min-width: 600px) {
  .spec-block dl {
    grid-template-columns: auto 1fr;
  }
}

.spec-block dt {
  font-weight: 600;
  color: var(--navy);
}

.spec-block dd {
  margin: 0;
  color: var(--muted);
}

@media (min-width: 600px) {
  .spec-block dd {
    padding-left: 0;
  }
}

.prose h2 {
  margin-top: var(--space-lg);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin-top: var(--space-md);
}

/* —— FAQ —— */
.faq-list {
  max-width: 44rem;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 1.15rem 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}

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

.faq-item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item .faq-body {
  padding: 0 0 1.25rem;
  color: var(--muted);
}

/* —— Forms —— */
.form {
  display: grid;
  gap: var(--space-sm);
  max-width: 36rem;
}

.form-row {
  display: grid;
  gap: var(--space-sm);
}

@media (min-width: 600px) {
  .form-row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.form .req {
  color: var(--gold);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  border-radius: var(--radius);
}

.form textarea {
  min-height: 8rem;
  resize: vertical;
}

.form .hint {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.35rem;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
  padding: var(--space-sm);
  background: var(--gold-soft);
  border-left: 3px solid var(--gold);
  margin-bottom: var(--space-md);
}

.form-feedback {
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.form-feedback.is-error {
  color: #7a1f1f;
  background: #f8e8e8;
  border-left-color: #b33;
}

.form-feedback.is-success {
  color: #1a4a32;
  background: #e7f4ec;
  border-left-color: #2f7a52;
}

.form-feedback.is-info {
  color: var(--navy);
  background: var(--gold-soft);
  border-left-color: var(--gold);
}

.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cf-turnstile {
  margin: 0.75rem 0 1rem;
}

.form[data-submitting="true"] button[type="submit"] {
  opacity: 0.7;
  pointer-events: none;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 400;
  cursor: pointer;
}

.checkbox-group input {
  width: auto;
}

/* —— Footer —— */
.site-footer {
  background: var(--navy-deep);
  color: rgba(247, 245, 240, 0.75);
  padding: var(--space-xl) 0 var(--space-lg);
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.site-footer h3 {
  color: var(--ivory);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.site-footer a {
  color: rgba(247, 245, 240, 0.85);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold);
}

.site-footer .logo {
  color: var(--ivory);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-bottom {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(247, 245, 240, 0.12);
  font-size: 0.85rem;
  color: rgba(247, 245, 240, 0.5);
}

.footer-bottom p {
  margin: 0.25rem 0;
}

/* —— Utility —— */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.section-head {
  max-width: 38rem;
  margin-bottom: var(--space-md);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head--center .lead {
  margin-inline: auto;
}

.addon-list {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
}

.addon-list li {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border);
}

.addon-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
