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

:root {
  --black:    #000000;
  --offwhite: #F0EEE9;
  --blue:     #2B4FD6;
  --gray:     #6B6B6B;
  --border:   rgba(240,238,233,0.12);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--offwhite);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* ── Custom cursor ── */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--offwhite);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, opacity 0.15s ease;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(240,238,233,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.35s ease, width 0.25s ease, height 0.25s ease;
  transform: translate(-50%, -50%);
}
body:hover .cursor { opacity: 1; }

/* ── Nav ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
  mix-blend-mode: difference;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: var(--offwhite);
  text-decoration: none;
  text-transform: lowercase;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--offwhite);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }

/* ── Hero section ── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0) 40%,
    rgba(0,0,0,0.6) 85%,
    rgba(0,0,0,1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-bottom: 80px;
}
.hero-eyebrow {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 1s ease 0.8s forwards;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(24px, 3.4vw, 38px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  max-width: 640px;
  margin: 0 auto 24px;
  opacity: 0;
  animation: fadeUp 1s ease 1s forwards;
}
.hero-tagline {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(240,238,233,0.5);
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--offwhite);
  opacity: 0;
  animation: fadeUp 1s ease 1.4s forwards;
  cursor: none;
}
.hero-cta .arrow {
  width: 40px;
  height: 1px;
  background: var(--offwhite);
  position: relative;
  transition: width 0.3s ease;
}
.hero-cta .arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 6px; height: 6px;
  border-right: 1px solid var(--offwhite);
  border-top: 1px solid var(--offwhite);
  transform: rotate(45deg);
}
.hero-cta:hover .arrow { width: 60px; }

/* ── Scroll indicator ── */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease 2s forwards;
}
.scroll-indicator span {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(240,238,233,0.4);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(240,238,233,0.2);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  width: 100%;
  height: 100%;
  background: var(--offwhite);
  animation: scrollDown 1.5s ease infinite;
}

/* ── Product section (hero-tier: cinematic detail) ── */
.product-section {
  position: relative;
  background: var(--black);
  padding: 120px 0 160px;
}
.product-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.product-media {
  position: sticky;
  top: 120px;
}
.product-still {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(20%);
}
.product-details { padding-top: 16px; }

.product-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.product-name .light { font-weight: 300; }
.product-name .bold  { font-weight: 600; }

.product-subtitle {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(240,238,233,0.4);
  margin-bottom: 40px;
}

.product-divider {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin-bottom: 40px;
}

.product-description {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(240,238,233,0.75);
  margin-bottom: 48px;
}

.product-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 56px;
}
.fact {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.fact-label {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 6px;
}
.fact-value {
  font-size: 13px;
  font-weight: 300;
  color: var(--offwhite);
}

/* ── Add to cart ── */
.atc-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--offwhite);
}
.price-group {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.price-compare {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--gray);
  text-decoration: line-through;
}
.price-sale {
  color: var(--blue);
}

.size-selector {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.size-btn {
  padding: 12px 20px;
  background: none;
  border: 1px solid var(--border);
  color: rgba(240,238,233,0.6);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.size-btn:hover {
  border-color: rgba(240,238,233,0.5);
  color: var(--offwhite);
}
.size-btn.active {
  border-color: var(--blue);
  background: rgba(43,79,214,0.12);
  color: var(--offwhite);
}

.btn-atc {
  width: 100%;
  padding: 18px 32px;
  background: var(--offwhite);
  color: var(--black);
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: none;
  transition: background 0.2s, color 0.2s;
  position: relative;
  overflow: hidden;
}
.btn-atc:hover { background: var(--blue); color: var(--offwhite); }
.btn-atc.loading { pointer-events: none; opacity: 0.7; }

.btn-secondary {
  width: 100%;
  padding: 17px 32px;
  background: none;
  color: var(--offwhite);
  border: 1px solid var(--border);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: none;
  transition: border-color 0.2s, color 0.2s;
  margin-top: 12px;
}
.btn-secondary:hover { border-color: var(--offwhite); }

.atc-note {
  font-size: 11px;
  color: var(--gray);
  margin-top: 16px;
  letter-spacing: 0.05em;
}

/* ── Ingredients accordion ── */
.accordion {
  border-top: 1px solid var(--border);
  margin-top: 48px;
}
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: none;
  color: var(--offwhite);
}
.accordion-trigger span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
}
.accordion-icon {
  font-size: 18px;
  font-weight: 200;
  transition: transform 0.3s;
  color: rgba(240,238,233,0.4);
}
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion-body p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(240,238,233,0.5);
  padding-bottom: 20px;
}
.accordion-body strong {
  color: var(--offwhite);
  font-weight: 500;
}

/* ── Product grid (card-tier products) ── */
.products-grid-section {
  padding: 100px 0 160px;
  border-top: 1px solid var(--border);
}
.products-grid-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.products-grid-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  margin-bottom: 64px;
  text-align: center;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 48px;
}
.product-card {
  display: flex;
  flex-direction: column;
}
.product-card-media {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 24px;
}
.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.3s ease, transform 0.4s ease;
}
.product-card:hover .product-card-media img {
  filter: grayscale(0%);
  transform: scale(1.03);
}
.product-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
}
.product-card-swatches {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}
.color-swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border);
  padding: 0;
  cursor: none;
  transition: border-color 0.2s, transform 0.2s;
}
.color-swatch:hover {
  border-color: rgba(240,238,233,0.5);
  transform: scale(1.1);
}
.color-swatch.active {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(43,79,214,0.25);
}

.product-card-details-toggle {
  width: 100%;
  background: none;
  border: none;
  border-top: 1px solid var(--border);
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: none;
  color: var(--offwhite);
}
.product-card-details-toggle span:first-child {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.7;
}
.product-card.details-open .product-card-details-toggle .accordion-icon {
  transform: rotate(45deg);
}
.product-card-details-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.product-card-details-body p,
.product-card-details-body li {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(240,238,233,0.5);
  padding-bottom: 4px;
}
.product-card-details-body ul {
  padding-bottom: 16px;
}

/* ── Reviews ── */
.reviews-section {
  padding: 100px 0 160px;
  border-top: 1px solid var(--border);
}
.reviews-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}
.review-card {
  border: 1px solid var(--border);
  padding: 32px 28px;
}
.review-stars {
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}
.review-stars .star {
  color: rgba(240,238,233,0.2);
  font-size: 15px;
}
.review-stars .star.filled {
  color: var(--blue);
}
.review-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
}
.review-quote {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(240,238,233,0.6);
}
.reviews-disclaimer {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray);
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

/* ── Footer ── */
footer {
  padding: 60px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
footer .logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.25em;
}
footer .legal {
  font-size: 10px;
  color: var(--gray);
  letter-spacing: 0.1em;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.footer-links a {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--offwhite);
  text-decoration: none;
  opacity: 0.5;
  cursor: none;
  transition: opacity 0.2s;
}
.footer-links a:hover { opacity: 1; }
.footer-social {
  display: flex;
  gap: 20px;
}
.footer-social a {
  color: var(--offwhite);
  opacity: 0.6;
  display: flex;
  cursor: none;
  transition: opacity 0.2s, color 0.2s;
}
.footer-social a:hover {
  opacity: 1;
  color: var(--blue);
}

/* ── Nav icon links (Account / Cart) ── */
.nav-icon-link {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--offwhite);
  opacity: 0.75;
  cursor: none;
  transition: opacity 0.2s;
}
.nav-icon-link:hover { opacity: 1; }
.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--blue);
  color: var(--offwhite);
  font-size: 9px;
  font-weight: 600;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ── Cart drawer ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 250;
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 420px;
  max-width: 90vw;
  background: var(--black);
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 300;
  display: flex;
  flex-direction: column;
}
.cart-drawer.open {
  transform: translateX(0);
}
.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.cart-drawer-close {
  background: none;
  border: none;
  color: var(--offwhite);
  font-size: 22px;
  line-height: 1;
  cursor: none;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.cart-drawer-close:hover { opacity: 1; }
.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 8px 32px;
}
.cart-empty {
  font-size: 13px;
  color: var(--gray);
  text-align: center;
  padding: 60px 0;
}
.cart-line-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.cart-line-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  background: var(--offwhite);
  flex-shrink: 0;
}
.cart-line-info {
  flex: 1;
  min-width: 0;
}
.cart-line-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 4px;
}
.cart-line-variant {
  font-size: 11px;
  color: var(--gray);
  margin-bottom: 10px;
}
.cart-line-qty {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-line-qty button {
  width: 22px;
  height: 22px;
  border: 1px solid var(--border);
  background: none;
  color: var(--offwhite);
  cursor: none;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}
.cart-line-qty button:hover { border-color: rgba(240,238,233,0.5); }
.cart-line-qty span {
  font-size: 12px;
  min-width: 16px;
  text-align: center;
}
.cart-line-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}
.cart-line-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
}
.cart-line-remove {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: none;
  transition: color 0.2s;
}
.cart-line-remove:hover { color: var(--offwhite); }
.cart-drawer-footer {
  padding: 24px 32px 32px;
  border-top: 1px solid var(--border);
}
.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cart-subtotal-row span:last-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--offwhite);
}
#cart-checkout-btn:disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* ── Cart notification ── */
.cart-toast {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: var(--offwhite);
  color: var(--black);
  padding: 16px 24px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 200;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.cart-toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollDown {
  0%   { top: -100%; }
  100% { top: 100%; }
}

/* ── About page ── */
.about-hero {
  max-width: 700px;
  margin: 0 auto;
  padding: 180px 48px 100px;
  text-align: center;
}
.about-logo {
  width: 110px;
  margin: 0 auto 40px;
  display: block;
}
.about-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.about-definition {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(240,238,233,0.6);
  margin-bottom: 40px;
}
.about-definition em {
  font-style: italic;
  color: var(--gray);
}
.about-tagline {
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--blue);
}
.about-block {
  max-width: 640px;
  margin: 0 auto;
  padding: 60px 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.about-block h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  margin-bottom: 24px;
}
.about-block p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(240,238,233,0.7);
  margin-bottom: 20px;
}
.about-block p:last-child { margin-bottom: 0; }
.about-accordions {
  max-width: 640px;
  margin: 0 auto;
  padding: 60px 48px 140px;
}

/* ── Legal / policy pages ── */
.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 160px 48px 140px;
}
.legal-page h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  text-align: center;
  margin-bottom: 60px;
}
.legal-page h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--offwhite);
  margin: 48px 0 16px;
}
.legal-page h2:first-of-type { margin-top: 0; }
.legal-page p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(240,238,233,0.7);
  margin-bottom: 16px;
}
.legal-page ul {
  margin: 0 0 16px 20px;
  padding: 0;
}
.legal-page li {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(240,238,233,0.7);
  margin-bottom: 8px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  nav { padding: 24px; }
  .nav-links { display: none; }
  .hero-content { padding-bottom: 60px; padding-left: 24px; padding-right: 24px; }
  .product-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 24px;
  }
  .product-media { position: static; }
  .product-section { padding: 80px 0 100px; }
  .scroll-indicator { display: none; }
  .products-grid-inner { padding: 0 24px; }
  .about-hero { padding: 140px 24px 60px; }
  .about-block { padding: 40px 24px; }
  .about-accordions { padding: 40px 24px 100px; }
  .legal-page { padding: 140px 24px 100px; }
  footer { padding: 40px 24px; gap: 24px; }
  .footer-main { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { gap: 10px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
