body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: var(--black);
}

:root {
  --black: #010101;
  --white: #f8f8f8;
  --text-color: #000;
  --banner-height: 3rem;
  --nav-height: 4.5rem;
}

.hidden {
  display: none !important;
}

/* ─── Accessibility ─── */
.sr-only {
  position: absolute;
  width: 0.0625rem;
  height: 0.0625rem;
  padding: 0;
  margin: -0.0625rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-nav {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 1000;
  padding: 0.5rem 1rem;
  background: var(--white);
  color: var(--black);
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 0.5rem 0.5rem;
  transition: top 0.2s;
}

.skip-nav:focus {
  top: 0;
}

*:focus-visible {
  outline: 0.125rem solid #1ed760;
  outline-offset: 0.125rem;
}

/* Remove focus outline for mouse users */
*:focus:not(:focus-visible) {
  outline: none;
}

/* ─── Nav ─── */
.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.5rem 5%;
  position: relative;
  z-index: 100;
  background: #000;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 900;
  white-space: nowrap;
  line-height: 1;
  color: var(--white);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: flex-end;
}

.nav-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 0.0625rem solid rgba(255, 255, 255, 0.15);
  opacity: 0.8;
  transition: opacity 0.3s ease, border-color 0.3s ease;
}

.nav-social-link:hover {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.4);
}

.nav-social-link img {
  width: 1.125rem;
  height: 1.125rem;
  filter: brightness(0) invert(1);
}

.nav-menu li a {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  color: var(--white);
  text-decoration: none;
}

.nav-menu li a:hover {
  text-decoration: underline;
}

/* ─── Hero Section — New Single ─── */
.hero {
  position: relative;
  width: 100%;
  height: calc(100svh - var(--banner-height) - var(--nav-height));
  min-height: 37.5rem;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
}

.hero-background picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-fade-in 1.8s ease-out forwards;
}

@keyframes hero-fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}

.hero-foreground {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content {
  text-align: center;
  margin-top: 2rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-top: 4rem;
  margin-bottom: 1.25rem;
  line-height: 1;
  white-space: nowrap;
  color: var(--white);
}

.hero-subtitle {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
  margin-top: 1rem;
  color: var(--white);
}

.pre-save-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: #1ed760;
  color: #000;
  padding: 1rem 2rem;
  border-radius: 62.4375rem;
  font-size: 1.5rem;
  font-weight: 700;
  white-space: nowrap;
  position: absolute;
  bottom: 7.5rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.pre-save-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 0.25rem 1.5rem rgba(30, 215, 96, 0.3);
}

.pre-save-btn img {
  width: 2rem;
  height: 2rem;
  display: block;
}

.hero-signature {
  position: absolute;
  bottom: 1rem;
  left: 3.125rem;
  transform: rotate(-7deg);
  opacity: 0.75;
}

.hero-signature img {
  width: 10rem;
  height: 10rem;
  display: block;
}

/* ─── Accolades Banner ─── */
.accolades-banner {
  height: var(--banner-height);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  padding: 0 0;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.08);
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.08);
}

.accolades-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
  animation: accolade-scroll 120s linear infinite;
}

.accolades-track span {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  opacity: 0.85;
}

.accolade-sep {
  opacity: 1;
  font-size: 0.5rem;
  user-select: none;
  color: var(--white);
}

.accolade-sep::before {
  content: "♡";
}

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

.global_padding {
  padding-left: 5%;
  padding-right: 5%;
}

.container-large {
  max-width: 80rem;
}

/* ─── Lessons Section (formerly hero) ─── */
.hero_section {
  margin-top: 0;
  display: flex;
  flex-direction: row;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  background-color: var(--white);
  height: 60vh;
  min-height: 30rem;
}

.content_container {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5vw;
  margin-left: auto;
  margin-right: auto;
}

.section_title {
  color: var(--black);
  font-family: Inter;
  font-size: 4rem;
  margin-bottom: 0rem;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  margin-block-start: 0;
}

.section_text {
  color: var(--black);
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-wrap: balance;
}

.text-size-large {
  font-size: 1.25rem;
}

.bold {
  font-weight: 700;
}

/* ─── Credential Strip ─── */
.credential-strip {
  margin-top: 0.25rem;
  margin-bottom: 0.75rem;
}

.credential-text {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 0.5);
  margin: 0;
  line-height: 1.4;
}

.credential-name {
  color: var(--black);
  font-weight: 600;
}

.credential-sep {
  margin: 0 0.25rem;
  opacity: 0.3;
}

.form_component {
  margin-top: 0rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
  max-width: 30rem;
}

.form_input {
  display: flex;
  width: 100%;
  padding: 1rem;
  align-items: center;
  gap: 0.625rem;
  align-self: stretch;
  border-radius: 0.75rem;
  border: 0.0625rem solid rgba(0, 0, 0, 0.1);
}

.form_button {
  display: flex;
  border: none;
  padding: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  align-self: stretch;
  border-radius: 0.75rem;
  background: var(--black);
  color: var(--white);
  font-family: Inter;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  transition: background-color 0.2s ease;
  cursor: pointer;
}

.form_button:hover {
  background-color: #232323;
}

/* Image wrapper */
.image-wrapper {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.75rem;
  position: relative;
  transform: rotate(0deg);
}

.section_image {
  position: absolute;
  overflow: hidden;
  top: 3rem;
  left: 0;
  border-radius: 0.75rem;
  object-fit: cover;
  width: 25rem;
  height: 32rem;
  z-index: 1;
}

.section_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.image_signature {
  position: absolute;
  bottom: 0rem;
  right: -2rem;
  width: 10rem;
  height: 10rem;
  transform: rotate(-7deg);
  z-index: 2;
}

.embed_section {
  margin-left: auto;
  margin-right: auto;
  padding-left: 5%;
  padding-right: 5%;
  max-width: 40rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10rem;
  padding-bottom: 6rem;
}

.embed_section iframe {
  border: none;
}

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

#lessons {
  scroll-margin-top: 4rem;
  padding: 3rem 0;
  background-color: var(--black);
}

#lessons .hero_section {
  background-color: var(--black);
}

#lessons .section_title,
#lessons .section_text {
  color: var(--white);
}

#lessons .form_input {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

#lessons .form_input::placeholder {
  color: rgba(248, 248, 248, 0.5);
}

#lessons .form_button {
  background: var(--white);
  color: var(--black);
}

#lessons .form_button:hover {
  background-color: rgba(248, 248, 248, 0.9);
}

.bg_black {
  background-color: var(--black);
}

/* ─── Press Quote ─── */
.press-quote-section {
  padding: 6rem 5%;
}

.press-quote-container {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.press-quote {
  margin: 0;
  padding: 0;
}

.press-quote-text {
  font-size: 2.5rem;
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  margin: 0 0 1rem;
}

.press-quote-source {
  font-size: 0.8125rem;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(248, 248, 248, 0.5);
}

/* ─── Footer ─── */
.footer_component {
  position: relative;
  padding: 0;
  background-color: var(--black);
}

/* Easter egg section */
.easter-egg {
  background-color: var(--black);
  text-align: center;
  padding: 5rem 0 4rem;
}

.footer-border {
  height: 0.0625rem;
  background: rgba(255, 255, 255, 0.1);
}

/* Top row: contact + nav columns */
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 3.5rem 5% 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-contact-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.footer-contact-link {
  font-size: 0.875rem;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: color 0.2s ease;
}

.footer-contact-link:hover {
  color: rgba(248, 248, 248, 0.7);
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

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

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 0.0625rem solid rgba(255, 255, 255, 0.15);
  opacity: 0.8;
  transition: opacity 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.footer-social-link:hover {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-0.125rem);
}

.footer-social-link img {
  width: 1rem;
  height: 1rem;
  filter: brightness(0) invert(1);
}

/* Nav columns */
.footer-nav {
  display: flex;
  gap: 4rem;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-col a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav-col a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/* Large brand name */
.footer-brand {
  padding: 1rem 5% 2.5rem;
  max-width: 80rem;
  margin: 0 auto;
}

.footer-emoji {
  font-size: 1rem;
  color: rgba(248, 248, 248, 0.15);
  margin: 0;
  letter-spacing: 0.05em;
  transition: color 0.4s ease, transform 0.4s ease;
  cursor: default;
}

.footer-emoji:hover {
  color: rgba(248, 248, 248, 0.5);
  animation: wiggle 0.6s ease;
  cursor: pointer;
}

@keyframes wiggle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  20% { transform: translateY(-0.25rem) rotate(-3deg) scale(1.1); }
  40% { transform: translateY(-0.125rem) rotate(3deg) scale(1.1); }
  60% { transform: translateY(-0.25rem) rotate(-2deg) scale(1.05); }
  80% { transform: translateY(-0.125rem) rotate(2deg); }
}

.footer-brand-name {
  font-size: 11.5vw;
  font-weight: 900;
  margin: 0;
  line-height: 1;
  letter-spacing: -0.03em;
  white-space: nowrap;
  background: linear-gradient(to bottom, transparent 10%, rgba(248, 248, 248, 0.25) 50%, var(--white) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Divider */
.footer-divider {
  height: 0.0625rem;
  background: rgba(255, 255, 255, 0.12);
  margin: 0 5%;
  max-width: calc(80rem - 10%);
}


/* Bottom bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  max-width: 80rem;
  margin: 0 auto;
}

.footer-copyright {
  font-size: 0.8125rem;
  color: rgba(248, 248, 248, 0.5);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  font-size: 0.8125rem;
  color: rgba(248, 248, 248, 0.5);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--white);
}

.success-container {
  max-width: 37.5rem;
  padding: 3rem 2rem;
  border-radius: 1rem;
}

.success-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.success-message {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  opacity: 0.9;
}

.success-link {
  display: flex;
  border: none;
  padding: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
  margin-top: 2rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  align-self: stretch;
  border-radius: 0.75rem;
  background: #f8f8f8;
  color: #010101;
  font-family: Inter;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  transition: background-color 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.success-link:hover {
  background-color: #c9c9c9;
  color: #010101;
}


/* ─── Shop Page ─── */
.shop-header {
  text-align: center;
  padding: 4rem 5% 2rem;
  background: var(--black);
}

.shop-title {
  font-size: 4rem;
  font-weight: 900;
  color: var(--white);
  margin: 0;
  line-height: 1;
}

.shop-subtitle {
  font-size: 1.125rem;
  font-weight: 400;
  color: rgba(248, 248, 248, 0.5);
  margin: 0.75rem 0 0;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 2rem 5% 6rem;
  max-width: 80rem;
  margin: 0 auto;
  background: var(--black);
}

.product-card {
  display: block;
  text-decoration: none;
  border-radius: 0.75rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 0.0625rem solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.product-card:hover {
  transform: translateY(-0.25rem);
  border-color: rgba(255, 255, 255, 0.2);
}

.product-image-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.04);
}

.product-info {
  padding: 1rem;
}

.product-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.product-pricing {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-price {
  font-size: 1rem;
  font-weight: 700;
  color: #1ed760;
}

.product-compare {
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(248, 248, 248, 0.35);
  text-decoration: line-through;
}

@media (max-width: 59.375rem) {
  .shop-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .shop-title {
    font-size: 3rem;
  }
}

@media (max-width: 43.75rem) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 1.5rem 5% 4rem;
  }

  .shop-header {
    padding: 3rem 5% 1.5rem;
  }

  .shop-title {
    font-size: 2rem;
  }

  .shop-subtitle {
    font-size: 0.875rem;
  }

  .product-info {
    padding: 0.75rem;
  }

  .product-name {
    font-size: 0.8125rem;
  }

  .product-price {
    font-size: 0.875rem;
  }
}

/* ─── Entrance Animations (disabled for sections below hero) ─── */
.animate-on-scroll {
  opacity: 1;
  transform: none;
}

/* ─── Parallax ─── */
.hero-bg-image.parallax {
  will-change: transform;
  transform: scale(1.1);
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-bg-image {
    animation: none;
  }
  .hero-bg-image.parallax {
    will-change: auto;
    transform: none;
  }
}

/* ─── Responsive: Tablet ─── */
@media (max-width: 59.375rem) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
    padding: 0 1.25rem;
  }

  .pre-save-btn {
    font-size: 1.25rem;
    padding: 0.875rem 1.75rem;
  }

  .hero_section {
    flex-direction: column;
    height: auto;
  }

  .hero_section {
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
  }

  #lessons .hero_section {
    background-color: var(--black);
  }

  .content_container {
    width: 40rem;
    padding: 0rem;
    margin-left: auto;
    margin-right: auto;
  }

  .section_title {
    margin-top: 2.5rem;
  }

  .form_component {
    margin-top: 0rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
    width: 100%;
    max-width: none;
  }

  .form_input {
    display: flex;
    width: auto;
    padding: 1rem;
    align-items: center;
    gap: 0.625rem;
    align-self: stretch;
    border-radius: 0.75rem;
    border: 0.0625rem solid rgba(0, 0, 0, 0.1);
  }

  .image-wrapper {
    width: auto;
    margin-left: auto;
    margin-right: auto;
    padding: 5vw;
    border-radius: 0.75rem;
    position: relative;
    transform: rotate(0deg);
    overflow: hidden;
  }

  .section_image {
    top: 0rem;
    left: 0rem;
    position: relative;
    width: 100%;
    height: auto;
  }

  .image-wrapper {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .press-quote-text {
    font-size: 2rem;
  }
}

/* ─── Responsive: Mobile ─── */
@media (max-width: 43.75rem) {
  :root {
    --nav-height: 3.5rem;
  }
  .nav {
    padding: 1rem 5%;
  }

  .nav-logo {
    font-size: 1.125rem;
  }

  .nav-menu {
    gap: 1rem;
  }

  .nav-menu li a {
    font-size: 0.875rem;
  }

  .nav-social {
    display: none;
  }

  .nav-social-link {
    width: 1.75rem;
    height: 1.75rem;
  }

  .nav-social-link img {
    width: 0.75rem;
    height: 0.75rem;
  }

  .footer-social-mobile {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .hero {
    min-height: 31.25rem;
  }

  .hero-content {
    margin-top: 2.5rem;
  }

  .hero-title {
    font-size: 2rem;
    white-space: normal;
    text-wrap: balance;
    padding: 0 1rem;
  }

  .hero-subtitle {
    font-size: 0.875rem;
    padding: 0 1.25rem;
    line-height: 1.4;
  }

  .pre-save-btn {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    gap: 0.75rem;
    bottom: 5rem;
  }

  .pre-save-btn img {
    width: 1.5rem;
    height: 1.5rem;
  }

  .hero-signature {
    left: 1rem;
    bottom: 0.5rem;
  }

  .hero-signature img {
    width: 6.25rem;
    height: 6.25rem;
  }

  .content_container {
    width: auto;
    padding: 0rem;
    margin-left: 0vw;
    margin-right: 0vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .image-wrapper {
    width: auto;
    margin: 0rem;
    padding: 0rem;
    border-radius: 0rem;
    background-color: var(--black);
  }

  .embed_section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .section_image {
    border-radius: 0rem;
  }

  .section_title {
    font-size: 2rem;
  }

  .section_text {
    font-size: 0.875rem;
  }

  .form_component {
    margin-bottom: 2rem;
  }

  .form_input {
    font-size: 0.875rem;
    padding: 0.75rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .form_button {
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
  }

  .footer-top {
    flex-direction: column;
    gap: 2rem;
    padding: 2.5rem 5% 1.5rem;
  }

  .footer-nav {
    gap: 3rem;
  }

  .footer-brand {
    padding: 0.5rem 5% 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 1.25rem 5%;
  }

  .footer-legal {
    gap: 1.5rem;
  }

  .credential-strip {
    text-align: center;
  }

  .credential-text {
    font-size: 0.75rem;
  }

  .press-quote-section {
    padding: 4rem 5%;
  }

  .press-quote-text {
    font-size: 1.75rem;
  }

}

/* ─── About page ─── */
.about-page {
  min-height: 60vh;
  padding: 3rem 5% 4rem;
}

.about-content {
  max-width: 40rem;
  margin: 0 auto;
  color: var(--white);
  line-height: 1.65;
}

.about-title {
  font-size: 1.75rem;
  font-weight: 900;
  margin: 0 0 1.5rem;
  color: var(--white);
}

.about-content p {
  margin: 0 0 1rem;
  font-size: 1rem;
  opacity: 0.9;
}

.about-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: opacity 0.2s ease;
}

.about-link:hover {
  opacity: 0.85;
}
