/* ================================================================
   THUS ESSENTIALS — about.css
   Luxury Editorial Design System — Unified Sans-Serif Typography (Inter)
   ================================================================ */

:root {
  /* Editorial Color Palette */
  --es-taupe: #b3a393;
  --es-taupe-dark: #9e8e7e;
  --es-taupe-light: #c8bbb0;
  --es-bg-white: #ffffff;
  --es-bg-warm: #fcfaf7;
  --es-bg-soft: #f5f2ec;
  --es-bg-cream: #eeeae2;
  --es-ink: #111111;
  --es-ink-soft: #2b2621;
  --es-ink-muted: #666059;
  --es-ink-light: #948c82;
  --es-border-subtle: rgba(17, 17, 17, 0.08);
  --es-border-light: rgba(17, 17, 17, 0.12);

  /* Unified Project Sans-Serif Typography */
  --es-font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Transitions & Timing */
  --es-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --es-transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─────────────────────────────────────────────
   GLOBAL RESET FOR ABOUT PAGE
   ───────────────────────────────────────────── */
.about-page {
  background-color: var(--es-bg-white);
  color: var(--es-ink);
  font-family: var(--es-font-sans);
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.about-page * {
  box-sizing: border-box;
  font-family: var(--es-font-sans);
}

.about-page img,
.about-page video {
  display: block;
  max-width: 100%;
}

.about-page a {
  color: inherit;
  text-decoration: none;
}

/* ─────────────────────────────────────────────
   CONTAINERS & EDITORIAL GUTTERS
   ───────────────────────────────────────────── */
.es-container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem);
}

.es-container--full {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.es-container--narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3.5vw, 2.5rem);
}

/* ─────────────────────────────────────────────
   TYPOGRAPHY SYSTEM (UNIFIED SANS-SERIF)
   ───────────────────────────────────────────── */
.es-serif-heading {
  font-family: var(--es-font-sans);
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 0 1.35rem;
  color: var(--es-bg-white);
}

.es-section-title {
  font-family: var(--es-font-sans);
  font-size: clamp(1.35rem, 2.2vw, 1.95rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0;
  color: var(--es-ink);
}

.es-script-heading {
  font-family: var(--es-font-sans);
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: var(--es-ink);
  margin: 0 0 2.5rem;
}

/* ─────────────────────────────────────────────
   HEADER MINIMALIST OVERRIDES
   ───────────────────────────────────────────── */
.about-page .site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: var(--es-bg-white);
  border-bottom: 1px solid var(--es-border-subtle);
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.about-page .header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.1rem clamp(1.25rem, 4vw, 3rem);
  height: 75px;
}

.about-page .logo-img {
  height: 22px;
  width: auto;
}

.about-page .hdr-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--es-ink);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-page .hdr-btn svg {
  width: 20px;
  height: 20px;
}

/* ─────────────────────────────────────────────
   SECTION 1 & 2: DESKTOP 2x2 MOSAIC / MOBILE STACKED HERO
   ───────────────────────────────────────────── */
.es-about-hero {
  width: 100%;
  background: var(--es-bg-white);
  border-bottom: 1px solid var(--es-border-subtle);
}

.es-hero-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: minmax(520px, 68vh) minmax(520px, 68vh);
  width: 100%;
}

.es-hero-quadrant {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

/* Taupe Editorial Text Quadrants */
.es-quadrant--text {
  background-color: var(--es-taupe);
  color: var(--es-bg-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(2.5rem, 5vw, 4.5rem);
}

.es-quadrant--about-text {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.es-quadrant--media-top,
.es-quadrant--video {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  background: var(--es-bg-soft);
  overflow: hidden;
}

.es-quadrant--media-bottom,
.es-quadrant--image {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  background: var(--es-bg-soft);
  overflow: hidden;
}

.es-quadrant--mission-text {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.es-hero-narrative {
  max-width: 440px;
  margin: 0 auto;
  font-size: clamp(0.92rem, 1.05vw, 1.02rem);
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.94);
}

.es-hero-narrative p {
  margin: 0;
}

.es-hero-narrative p + p {
  margin-top: 0.85rem;
}

.es-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.es-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--es-ease);
}

.es-quadrant--media-top:hover .es-hero-img,
.es-quadrant--media-bottom:hover .es-hero-img,
.es-quadrant--image:hover .es-hero-img {
  transform: scale(1.03);
}

/* Mobile & Tablet Stacked Behavior */
@media (max-width: 991px) {
  .es-hero-mosaic {
    display: flex;
    flex-direction: column;
  }

  .es-quadrant--about-text {
    order: 1;
    min-height: 380px;
    padding: 3.5rem 1.5rem;
  }

  .es-quadrant--media-top,
  .es-quadrant--video {
    order: 2;
    height: 480px;
  }

  .es-quadrant--mission-text {
    order: 3;
    min-height: 380px;
    padding: 3.5rem 1.5rem;
  }

  .es-quadrant--media-bottom,
  .es-quadrant--image {
    order: 4;
    height: 480px;
  }
}

@media (max-width: 480px) {
  .es-quadrant--about-text,
  .es-quadrant--mission-text {
    min-height: 320px;
    padding: 3rem 1.25rem;
  }

  .es-quadrant--media-top,
  .es-quadrant--media-bottom,
  .es-quadrant--video,
  .es-quadrant--image {
    height: 380px;
  }
}

/* ─────────────────────────────────────────────
   SECTION 3: OUR VALUES (CAROUSEL / 4-COL GRID)
   ───────────────────────────────────────────── */
.es-section-values {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background: var(--es-bg-white);
  border-bottom: 1px solid var(--es-border-subtle);
  position: relative;
}

.es-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

/* Circular Arrow Carousel Controls */
.es-carousel-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.es-ctrl-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--es-border-light);
  background: var(--es-bg-white);
  color: var(--es-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--es-transition);
  padding: 0;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.es-ctrl-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.es-ctrl-btn:hover:not(:disabled) {
  background: var(--es-ink);
  color: var(--es-bg-white);
  border-color: var(--es-ink);
}

.es-ctrl-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  border-color: var(--es-border-subtle);
}

/* Carousel Viewport & Track */
.es-carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  margin: 0;
  padding: 0;
  cursor: grab;
}

.es-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.es-carousel-viewport:active {
  cursor: grabbing;
}

.es-values-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
  min-width: 100%;
}

.es-value-item {
  display: flex;
  flex-direction: column;
}

.es-value-img-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--es-bg-soft);
  margin-bottom: 1.35rem;
}

.es-value-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--es-ease);
}

.es-value-item:hover .es-value-img {
  transform: scale(1.04);
}

.es-value-title {
  font-family: var(--es-font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--es-ink);
  margin: 0 0 0.6rem;
}

.es-value-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--es-ink-muted);
  margin: 0;
  font-weight: 300;
}

/* Mobile Values Carousel */
@media (max-width: 1023px) {
  .es-values-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.25rem;
    padding-right: 2rem;
  }

  .es-value-item {
    flex: 0 0 280px;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .es-value-item {
    flex: 0 0 80vw;
    max-width: 80vw;
  }
}

/* ─────────────────────────────────────────────
   SECTION 4: OUR TIMELINE (CAROUSEL / 4-COL GRID)
   ───────────────────────────────────────────── */
.es-section-timeline {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background: var(--es-bg-warm);
  border-bottom: 1px solid var(--es-border-subtle);
  position: relative;
}

.es-timeline-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
  min-width: 100%;
}

.es-timeline-item {
  display: flex;
  flex-direction: column;
}

.es-timeline-img-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
  background: var(--es-bg-soft);
  margin-bottom: 1.35rem;
}

.es-timeline-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--es-ease);
}

.es-timeline-item:hover .es-timeline-img {
  transform: scale(1.04);
}

/* Exact White Rectangular Date Badge */
.es-date-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--es-bg-white);
  color: var(--es-ink);
  font-family: var(--es-font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 0; /* Strictly Rectangular */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  pointer-events: none;
}

.es-timeline-title {
  font-family: var(--es-font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--es-ink);
  margin: 0 0 0.5rem;
}

.es-timeline-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--es-ink-muted);
  margin: 0;
  font-weight: 300;
}

/* Mobile Timeline Carousel */
@media (max-width: 1023px) {
  .es-timeline-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.25rem;
    padding-right: 2rem;
  }

  .es-timeline-item {
    flex: 0 0 280px;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .es-timeline-item {
    flex: 0 0 80vw;
    max-width: 80vw;
  }
}

/* ─────────────────────────────────────────────
   SECTION 5: "made with you in mind" & 3-IMG LIFESTYLE GRID
   ───────────────────────────────────────────── */
.es-section-lifestyle {
  padding: clamp(4rem, 7vw, 7rem) 0 clamp(3rem, 5vw, 5rem);
  background: var(--es-bg-white);
  border-bottom: 1px solid var(--es-border-subtle);
}

.es-lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
  margin-top: 1.5rem;
}

.es-lifestyle-item {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--es-bg-soft);
}

.es-lifestyle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--es-ease);
}

.es-lifestyle-item:hover .es-lifestyle-img {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .es-lifestyle-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .es-lifestyle-item {
    aspect-ratio: 16 / 10;
  }
}

/* ─────────────────────────────────────────────
   SECTION 6: THREE BRAND CATEGORIES
   ───────────────────────────────────────────── */
.es-section-categories {
  padding: clamp(3rem, 5vw, 5rem) 0 clamp(4rem, 7vw, 7rem);
  background: var(--es-bg-white);
  border-bottom: 1px solid var(--es-border-subtle);
}

.es-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.es-category-item {
  display: flex;
  flex-direction: column;
}

.es-category-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--es-bg-soft);
  margin-bottom: 1.5rem;
}

.es-category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--es-ease);
}

.es-category-item:hover .es-category-img {
  transform: scale(1.04);
}

.es-category-heading {
  font-family: var(--es-font-sans);
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--es-ink);
  margin: 0 0 0.85rem;
}

.es-category-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--es-ink-muted);
  margin: 0 0 1.5rem;
  font-weight: 300;
  flex-grow: 1;
}

/* Editorial Text Link with Strong Underline */
.es-editorial-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--es-font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--es-ink);
  text-decoration: none;
  position: relative;
  width: fit-content;
  padding-bottom: 4px;
}

.es-editorial-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background-color: var(--es-ink);
  transition: transform 0.3s var(--es-ease), opacity 0.3s ease;
  transform-origin: left;
}

.es-editorial-link:hover::after {
  transform: scaleX(0.7);
  opacity: 0.7;
}

@media (max-width: 860px) {
  .es-categories-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .es-category-img-wrap {
    aspect-ratio: 16 / 10;
  }
}

/* ─────────────────────────────────────────────
   SECTION 7: BENEFITS STRIP
   ───────────────────────────────────────────── */
.es-section-benefits {
  background: var(--es-bg-warm);
  padding: clamp(2.5rem, 4vw, 3.5rem) 0;
  border-bottom: 1px solid var(--es-border-subtle);
}

.es-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.es-benefit-col {
  padding: 0 1rem;
  border-right: 1px solid var(--es-border-subtle);
}

.es-benefit-col:last-child {
  border-right: none;
}

.es-benefit-title {
  font-family: var(--es-font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--es-ink);
  margin: 0 0 0.35rem;
}

.es-benefit-desc {
  font-size: 0.82rem;
  color: var(--es-ink-muted);
  margin: 0;
  font-weight: 300;
}

@media (max-width: 768px) {
  .es-benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .es-benefit-col {
    border-right: none;
    border-bottom: 1px solid var(--es-border-subtle);
    padding-bottom: 1.5rem;
  }

  .es-benefit-col:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* ─────────────────────────────────────────────
   SECTION 8: PAYMENT METHODS PANEL
   ───────────────────────────────────────────── */
.es-section-payment {
  padding: clamp(3.5rem, 5vw, 5rem) 0;
  background: var(--es-bg-soft);
  border-bottom: 1px solid var(--es-border-subtle);
}

.es-payment-card {
  background: var(--es-bg-white);
  padding: clamp(2rem, 3.5vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  border: 1px solid var(--es-border-subtle);
}

.es-payment-title {
  font-family: var(--es-font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--es-ink);
  margin: 0 0 1.5rem;
}

.es-payment-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 1.75rem;
}

.es-payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.es-payment-badge:hover {
  opacity: 1;
}

.es-payment-badge svg {
  height: 24px;
  width: auto;
}

.es-payment-pill {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border: 1px solid var(--es-border-light);
  background: var(--es-bg-warm);
  color: var(--es-ink-soft);
  text-transform: uppercase;
}

/* ─────────────────────────────────────────────
   SECTION 9: FOOTER OVERRIDES
   ───────────────────────────────────────────── */
.about-page .site-footer {
  background: var(--es-bg-white);
  color: var(--es-ink);
  border-top: 1px solid var(--es-border-subtle);
  padding: clamp(3.5rem, 5vw, 5rem) 0 2rem;
}

.about-page .site-footer__newsletter {
  padding-bottom: 3.5rem;
  margin-bottom: 3.5rem;
  border-bottom: 1px solid var(--es-border-subtle);
}

.about-page .site-footer__nl-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
}

.about-page .site-footer__nl-text h4 {
  font-family: var(--es-font-sans);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0 0 0.5rem;
}

.about-page .site-footer__nl-text p {
  color: var(--es-ink-muted);
  font-size: 0.92rem;
  margin: 0;
}

.about-page .site-footer__nl-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-page .site-footer__nl-row {
  display: flex;
  gap: 0.5rem;
  width: 100%;
}

.about-page .site-footer__nl-input {
  flex: 1;
  padding: 13px 18px;
  border: 1px solid var(--es-border-light);
  background: var(--es-bg-warm);
  font-size: 0.88rem;
  font-family: var(--es-font-sans);
  color: var(--es-ink);
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.about-page .site-footer__nl-input:focus {
  border-color: var(--es-ink);
  background: var(--es-bg-white);
}

.about-page .site-footer__nl-btn {
  padding: 13px 26px;
  background: var(--es-ink);
  color: var(--es-bg-white);
  border: none;
  font-family: var(--es-font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--es-transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.about-page .site-footer__nl-btn:hover:not(:disabled) {
  background: var(--es-taupe-dark);
}

.about-page .site-footer__nl-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.about-page .site-footer__nl-msg {
  font-size: 0.84rem;
  line-height: 1.5;
  margin: 0;
  transition: all 0.3s ease;
}

.about-page .site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 2.25rem;
  margin-bottom: 3.5rem;
}

.about-page .site-footer__brand-col img {
  height: 22px;
  margin-bottom: 1.25rem;
}

.about-page .site-footer__brand-col p {
  color: var(--es-ink-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.about-page .footer-nav__title {
  font-family: var(--es-font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--es-ink);
  margin: 0 0 1.25rem;
}

.about-page .footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-page .footer-nav li {
  margin-bottom: 0.65rem;
}

.about-page .footer-nav a {
  color: var(--es-ink-muted);
  font-size: 0.86rem;
  transition: color 0.2s ease;
}

.about-page .footer-nav a:hover {
  color: var(--es-ink);
}

/* ─────────────────────────────────────────────
   REFINED SOCIAL MEDIA ICONS LAYOUT
   ───────────────────────────────────────────── */
.about-page .footer-social-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.about-page .footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--es-ink-muted);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 400;
  transition: color 0.25s ease, transform 0.25s var(--es-ease);
}

.about-page .footer-social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--es-bg-warm);
  border: 1px solid var(--es-border-subtle);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--es-ink);
  transition: background 0.25s var(--es-ease), color 0.25s var(--es-ease), border-color 0.25s var(--es-ease), transform 0.25s var(--es-ease);
  flex-shrink: 0;
}

.about-page .footer-social-icon svg {
  width: 15px;
  height: 15px;
}

.about-page .footer-social-name {
  transition: transform 0.25s var(--es-ease);
}

.about-page .footer-social-link:hover {
  color: var(--es-ink);
  transform: translateX(3px);
}

.about-page .footer-social-link:hover .footer-social-icon {
  background: var(--es-ink);
  color: var(--es-bg-white);
  border-color: var(--es-ink);
  transform: scale(1.06);
}

.about-page .site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--es-border-subtle);
  font-size: 0.76rem;
  color: var(--es-ink-light);
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .about-page .site-footer__nl-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-page .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .about-page .site-footer__bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

/* ─────────────────────────────────────────────
   SUBTLE SCROLL REVEALS
   ───────────────────────────────────────────── */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--es-ease), transform 0.8s var(--es-ease);
}

.reveal-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
