
/* ========================================
   FONT FACE DECLARATIONS
======================================== */

@font-face {
  font-family: 'Inter Display';
  src: url('/fonts/InterDisplay-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter Display';
  src: url('/fonts/InterDisplay-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter Display';
  src: url('/fonts/InterDisplay-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* =========================================================
   RESET
========================================================= */

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

html, body {
  height: 100%;
}

/* =========================================================
   BASE — GLOBAL TYPE
========================================================= */

html {
  font-family: 'Inter Display', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  background: #fefefe;
  color: #020202;
}

/* =========================================================
   DESIGN TOKENS — DESKTOP (SINGLE SOURCE)
========================================================= */

:root {
  /* navigation */
  --global-nav-height: 48px;

  /* page */
  --page-max: 1680px;
  --page-pad: clamp(1.5rem, 4vw, 4rem);
  --content-pad: var(--page-pad);

  /* surface */
  --surface-radius: 10px;
  --surface-bg: #fefefe;
  --surface-frame: #d3d3d3;
  --hero-bg: #dddede;

  /* spacing scale */
  --space-xs: 0.75rem;
  --space-sm: 1.25rem;
  --space-md: 2rem;
  --space-lg: 4rem;

  /* section rhythm */
  --section-gap: clamp(2.5rem, 6vw, 4rem);
  --top-gap: clamp(1.25rem, 3vw, 2rem);

  /* hero layout */
  --hero-top-offset: 6rem;
  --hero-pad-bottom: clamp(2rem, 4vw, 3rem);
  --hero-space-after-meta: 5rem;
  --hero-space-after-title: 0.75rem;
  --hero-space-after-tagline: 2.5rem;

  /* base typography tokens */
  --base1-eyebrow-size: 1.05rem;
  --base1-title-size: 3.2rem;
  --base1-subtitle-size: clamp(1.1rem, 2vw, 1.5rem);
  --base1-meta-size: 0.9rem;
  --base1-meta-title-size: 1.05rem;
  --base1-form-title-size: 2rem;

  --footer-text-size: 0.7rem;
  --footer-text-weight: 500;
  --footer-line: 1.4;

  --base1-eyebrow-weight: 700;
  --base1-title-weight: 700;
  --base1-subtitle-weight: 500;
  --base1-meta-weight: 500;
  --base1-meta-title-weight: 700;

  --base1-title-line: 1;
  --base1-subtitle-line: 1.25;
  --base1-meta-line: 1.4;

  --base1-space-after-title: 2.25rem;
  --base1-space-after-subtitle: 1rem;
  --base1-meta-margin-bottom: 0rem;
	
  --hero-subject-x: 80px;    /* LEFT / RIGHT */
  --hero-subject-y: 100px; /* UP / DOWN */
	
  --card-icon-size: 24px;

  --back-to-top-button-size: 3.5rem;
  --back-to-top-icon-size: 2.2rem;
  --back-to-top-padding: 1rem;

  --two-column-grid-columns: minmax(0, 1fr) minmax(0, 1fr);
  --two-column-font-size-left: clamp(0.95rem, 1.8vw, 1.05rem);
  --two-column-font-size-right: clamp(0.85rem, 1.6vw, 0.95rem);
	
}

/* =========================================================
   DESIGN TOKENS — MOBILE OVERRIDES (ONLY TOKENS)
========================================================= */

@media (max-width: 900px) {
  :root {
    --page-pad: 0.6rem;
    --content-pad: 1.125rem;

    --hero-top-offset: 3rem;
    --hero-space-after-meta: 3rem;
    --hero-space-after-title: 0.5rem;
    --hero-space-after-tagline: 1rem;
  }
}

/* =========================================================
   COOKIE BANNER
========================================================= */

.cookie-banner {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  max-width: 320px;
  background: #020202;
  border-radius: var(--surface-radius);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  padding: 1.25rem 1.5rem;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #fff;

  opacity: 0;                     /* start invisible */
  transition: opacity 0.4s ease;  /* smooth fade-in/out */
}

.cookie-banner h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.cookie-banner p {
  font-size: 0.65rem;
  line-height: 1.4;
  opacity: 0.9;
  margin-bottom: 0.75rem;
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.cookie-buttons button {
  flex: 1;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--surface-radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cookie-buttons .btn-reject {
  background: #363636;
  color: #fff;
}

.cookie-buttons .btn-accept {
  background: #fefefe;
  color: #000;
}

.cookie-buttons button:hover {
  opacity: 0.9;
}

@media (max-width: 480px) {
  .cookie-banner {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    max-width: none;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }
}


/***************************
 * BACK TO TOP BUTTON (ICON ONLY)
 ***************************/
#back-to-top {
  --icon-width: 40px;  /* set your icon width */
  --padding: 1rem;     /* distance from screen edges */

  position: fixed;
  bottom: var(--padding);
  right: var(--padding);
  z-index: 999;
  border: none;
  background: none;      /* no background */
  padding: 0;            /* remove default padding */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#back-to-top:active {
  transform: scale(0.92) translateY(2px);
}

/* ICON IMAGE */
#back-to-top img {
  width: var(--icon-width);
  height: auto;       /* maintain aspect ratio */
  opacity: 0.9;       /* adjust transparency if desired */
  transition: opacity 0.2s ease, transform 0.2s ease;
}

#back-to-top:hover img {
  opacity: 1;          /* full visibility on hover */
  transform: scale(1.1); /* optional hover scale */
}

@media (max-width: 480px) {
  #back-to-top img {
    width: 2.5rem;
  }
}

/* =========================================================
   SMOOTH HTML SCROLL
========================================================= */
html {
  scroll-behavior: smooth;
}


/* =========================================================
   GENERIC CTA BUTTON — DROP-IN
========================================================= */

.btn-cta {
  display: inline-block;
  padding: 0.6rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.005em;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #020202;
  border: none;
  border-radius: var(--surface-radius);
  cursor: pointer;
  white-space: nowrap;
  justify-self: start;

  /* modern interaction */
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease;

  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.12),
    0 6px 12px rgba(0, 0, 0, 0.06);

  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

/* hover — barely perceptible, but premium */
.btn-cta:hover,
.btn-cta:focus-visible {
  background-color: #1a1a1a; /* 5–7% lighter */
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.14),
    0 8px 16px rgba(0, 0, 0, 0.08);
}

/* active — tactile but calm */
.btn-cta:active {
  opacity: 0.92;
}

/* =========================================================
   CTA BUTTON — OUTLINE 
========================================================= */

.btn-cta--outline {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 2px solid rgba(255, 255, 255, 0.6);
  box-shadow: none;
}

/* hover — subtle fill, still premium */
.btn-cta--outline:hover,
.btn-cta--outline:focus-visible {
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.18);
}

/* active */
.btn-cta--outline:active {
  opacity: 0.9;
}


/* =========================================================
   GENERIC LINK CLASS
========================================================= */

.link {
  color: #fff;          
  text-decoration: none;
  font-weight: 700;       
  transition: color 0.2s ease, text-decoration-color 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
}

.link:hover,
.link:focus {
  color: #ff4b33;        
  opacity: 1;        
}

.link2 {
  color: #020202;           
  text-decoration: none;
  font-weight: 700;            
  transition: color 0.2s ease, text-decoration-color 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
}

.link2:hover,
.link2:focus {
  color: #ff4b33;       
  opacity: 1;
}


/* =========================================================
  TEXT HIGHLIGHTING
========================================================= */

.text-highlight {
  color: rgba(0, 0, 0, 0.60); 
}

.text-highlight2 {
  color: rgba(255, 255, 255, 0.60); 
}

.text-orange {
  color: #ff4b33; 
}

/* =========================================================
  HIGHLIGHT BEHIND
========================================================= */

.highlight-behind {
  position: relative;
  display: inline-block;
  padding: 0.12em 0.12em;
  /* inner spacing – text looks lifted */
  margin: -0.12em -0.12em;
  /* negative margin cancels the padding visually */
  z-index: 1;
}

.highlight-behind::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffe0db;
  transform: skew(-5deg);
  /* gentle slant – feels modern */
  border-radius: 0em;
  z-index: -1;
}


/* =========================================================
   META STREAK TEXT EFFECT-Fade in/out streak
========================================================= */

.meta-streak {
  position: relative;
  font-weight: var(--base1-meta-title-weight);
  font-size: var(--base1-meta-title-size);
  color: #020202;          /* base text color */
  display: inline-block;
  overflow: hidden;
}

/* Pseudo-element for streak */
.meta-streak::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #ff4b33 80%,
    transparent 100%
  );
  pointer-events: none;
  opacity: 0;               /* start invisible */
}

/* Animate streak with fade in/out */
.meta-streak.animate::before {
  animation: streak-pass 1.8s ease forwards;
  animation-delay: 0.2s;
}

@keyframes streak-pass {
  0% {
    left: -100%;
    opacity: 0;
  }
  25% {
    opacity: 1;    /* fade in quickly as streak enters */
  }
  75% {
    opacity: 1;    /* stay visible while passing through */
  }
  100% {
    left: 100%;
    opacity: 0;    /* fade out as it leaves */
  }
}

/* ========================================
   Pulse Animation
   ======================================== */
@keyframes pulse-gentle {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

.pulse-resume {
  animation: pulse-gentle 2s ease-in-out infinite;
  display: inline-block;
}

/* ========================================
   BLINKING CURSOR EFFECT FOR TYPEWRITER
   ======================================== */
.typewriter {
  white-space: pre-wrap;   /* preserve spaces & allow wrapping */
  font-size: inherit;       /* match parent font */
  font-family: inherit;     /* match parent font */
  line-height: inherit;     /* match parent spacing */
}


/* =========================================================
   GLOBAL NAV
========================================================= */

.global-nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--global-nav-height);
  z-index: 1000;

  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(238, 238, 238, 1);
}

.global-nav-inner {
  max-width: 1200px;
  height: 100%;
  margin-inline: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-inline: clamp(1.5rem, 4vw, 3rem);
}

.global-nav-logo img {
  display: block;
  height: 16px;
}

.global-nav-links {
  display: flex;
  gap: 2rem;
}

.global-nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  color: #111;
}

.global-nav-links a {
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}

.global-nav-links a:hover {
  transform: translateY(-2px);
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  font-weight: 400;
  cursor: pointer;
}

/* =========================================================
   MOBILE MENU 
========================================================= */

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 90vh;            /* full viewport height */
  background: #dddede;
  transform: translateY(-100%); /* hidden by default */
  transition: transform 0.35s ease;
  z-index: 1100;

  display: flex;
  flex-direction: column;
  overflow-y: auto;          /* allow scrolling if content exceeds viewport */
}

.mobile-menu.is-open {
  transform: translateY(0);  /* slide in fully */
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  height: var(--global-nav-height);       /* match main nav */
  padding-inline: clamp(1.5rem, 4vw, 3rem); /* match global nav padding */

  border-bottom: 1px solid rgba(245, 245, 245, 1); /* match global nav border */
  background: #fff;                        /* ensure same background */
  box-sizing: border-box;
}

.mobile-menu-header img {
  height: 16px;
}

.mobile-menu-close {
  font-size: 2rem;   /* slightly smaller if needed */
  font-weight: 400;
  color: #000;
  background: none;
  border: none;
  cursor: pointer;
}

/* Menu Links */
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  gap: 1.5rem;
}

.mobile-menu-inner a {
  color: #000;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 500;
}

/* Menu Footer */
.mobile-menu-footer {
  margin-top: auto;          /* sticks to bottom */
  padding: 1rem 2rem;
  color: #020202;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
}


/* =========================================================
   MOBILE NAV TOGGLE — SHOW ON BREAKPOINT
========================================================= */
@media (max-width: 900px) {
  /* hide the normal nav links */
  .global-nav-links {
    display: none;
  }

  /* show the mobile toggle button */
  .mobile-nav-toggle {
    display: block;
  }

}


/* =========================================================
   PAGE LAYOUT
========================================================= */

.page {
  max-width: var(--page-max);
  margin-inline: auto;
  padding-top: calc(var(--global-nav-height));
  padding-inline: var(--page-pad);
}

/* =========================================================
   HERO — BASELINE (WORKING STAGE)
========================================================= */

.hero {
  position: relative;
  min-height: 900px;              /* DESIGN HEIGHT — adjustable */
  background: #000;
    border-radius: 10px; /* adjust as needed */
  overflow: hidden;
  margin-top: var(--top-gap);
  /*margin-bottom: var(--section-gap);*/
}

/* =========================================================
   HERO — GRID (STRUCTURAL LOCK)
========================================================= */

.hero-grid {
  height: 100%;
  padding-inline: var(--content-pad);

  display: grid;
  grid-template-columns: 1fr auto;
}


/* =========================================================
   HERO — CONTENT (FLOW LAYER)
========================================================= */

.hero-content {
  position: absolute;
  inset: 0;


  display: grid;
  grid-template-rows:
    auto    /* meta */
    auto    /* title */
    auto    /* tagline */
    auto    /* CTA button row */
    1fr     /* spacer */
    auto;   /* footer */

  padding-top: calc(var(--hero-top-offset)); 
  padding-bottom: var(--hero-pad-bottom);
  padding-inline: var(--content-pad);

  z-index: 2;
}

/* =========================================================
   HERO CTA BUTTON
========================================================= */
.hero-cta {
  justify-self: start;   /* aligns left under tagline */
  margin-top: 0rem;     /* space from tagline */
}

.hero .btn-cta {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero .btn-cta.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.hero .btn-cta:hover,
.hero .btn-cta:focus-visible {
  box-shadow:
    0 12px 24px rgba(255, 75, 51, 0.25),
    0 6px 12px rgba(255, 75, 51, 0.15);
}

/* =========================================================
   HERO — MEDIA (LOCKED, TUNABLE)
========================================================= */

.hero-media {
  /* IMAGE SIZE — DESIGN CONTROL */
  width: 672px;
  height: 936px;

  /* GRID ANCHOR */
  align-self: end;        /* bottom lock */
  justify-self: end;     /* right lock */

  /* SAFE POSITION CONTROLS */
  --hero-media-x: 1.5rem;  /* + right / - left */
  --hero-media-y: 9rem;   /* + down  / - up   */

  transform: translate(
    var(--hero-media-x),
    var(--hero-media-y)
  );

  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* =========================================================
   HERO — VIDEO BACKGROUND
========================================================= */
.video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px; /* adjust as needed */
    overflow: hidden;    /* make sure the edges are clipped */
    z-index: 1;       /* behind hero-content */
}

/* =========================================================
   HERO — TYPOGRAPHY
========================================================= */

.hero-meta {
  font-size: var(--base1-meta-size);
  font-weight: var(--base1-meta-weight);
  color: #fff;
  line-height: 1.4;
  max-width: 42ch;
  margin-bottom: var(--hero-space-after-meta);
  opacity: 0.60;
  letter-spacing: 0.005em;
}

.hero-title {
  font-size: clamp(3.25rem, 8vw, 7.25rem);
  font-weight: 700;
  color: #fff;
  line-height: 0.88;
  letter-spacing: -0.02em;
  margin-bottom: var(--hero-space-after-title);
}

/* =========================================================
   HERO — TITLE EFFECT- SLOW GRADIENT SHIFT
========================================================= */
.hero-title {
  background: linear-gradient(90deg, #ff4b33, #ffbb00, #ff4b33);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 12px rgba(0,0,0,0.25),
               0 0 20px rgba(255,70,0,0.4); /* soft orange glow */
  animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 0; }
  50% { background-position: 100% 0; }
  100% { background-position: 0% 0; }
}

.hero-tagline {
  font-size: var(--base1-subtitle-size);
  font-weight: var(--base1-subtitle-weight);
  line-height: var(--base1-subtitle-line);
  margin-bottom: var(--hero-space-after-tagline);
  max-width: 40ch;
  color: #fff;
  opacity: 0.85;
  letter-spacing: 0.005em;
}

.hero-footer {
  font-size: var(--base1-meta-size);
  font-weight: var(--base1-meta-weight);
  line-height: var(--base1-meta-line);

  margin-top: auto;          /* bottom-left anchor */
  margin-left: auto;        /* push to right */
  color: #fff;
  max-width: 30ch;
  opacity: 0.60;
  text-align: right;
  letter-spacing: 0.005em;
}

/* =========================================================
   HERO — PROPORTIONAL DESKTOP FLOW
========================================================= */

/* Large desktop */
@media (max-width: 1480px) {
  .hero {
    min-height: 820px;
  }

  .hero-media {
    width: 611px;
    height: 851px;
    --hero-media-x: 1.75rem;
    --hero-media-y: 9.2rem;
  }
}

/* Medium desktop */
@media (max-width: 1280px) {
  .hero {
    min-height: 750px;
  }

  .hero-media {
    width: 558px;
    height: 776px;
    --hero-media-x: 1.75rem;
    --hero-media-y: 8.5rem;
  }
}

/* Small desktop */
@media (max-width: 1080px) {
	
  .hero {
    min-height: 680px;
  }

  .hero-media {
    width: 511px;
    height: 712px;
    --hero-media-x: 1.14rem;
    --hero-media-y: 6.85rem;
  }
}

/* =========================================================
   HERO-MEDIA MOBILE / TABLET SIZING — REDUCED SHRINKAGE
========================================================= */

/* 880px and below — tablet */
@media (max-width: 880px) {
	

  .hero-media {
    width: clamp(400px, 60vw, 440px); /* bigger min and max to reduce shrink */
    height: auto;                     /* maintain aspect ratio */

    --hero-media-x: 0%;
    --hero-media-y: 0%;
    bottom: -50px;
    right: 0;

    position: absolute;
    transform: translateX(var(--hero-media-x));
  }
}

/* 580px and below — small tablets / large phones */
@media (max-width: 580px) {
  .hero-media {
    width: clamp(360px, 65vw, 420px); /* slightly bigger */
    height: auto;

    --hero-media-x: 0%;
    --hero-media-y: 0%;
    bottom: -30px;
    right: 0;

    position: absolute;
    transform: translateX(var(--hero-media-x));
  }
}

/* 480px and below — small phones */
@media (max-width: 480px) {
  .hero {
    min-height: calc(725px * 0.75); /* reduce hero height by 5% */
  }

  .hero-media {
    width: clamp(320px, 70vw, 400px); /* keep subject prominent */
    height: auto;

    --hero-media-x: 0%;
    --hero-media-y: 0%;
    bottom: 0;
    right: 0;

    position: absolute;
    transform: translateX(var(--hero-media-x));
  }

  /* shrink hero title slightly for mobile */
  .hero-title {
    font-size: calc(clamp(3.25rem, 8vw, 7.25rem) * 0.85);
  }
}


/* =========================================================
   BASE1 — NEUTRAL CONTENT PRIMITIVE (PRODUCTION)
========================================================= */

/* INTERNAL SECTION PADDING */
.base1 .section-inner {
  padding-inline: var(--content-pad);
  padding-top: calc(var(--section-gap) * 2);
  padding-bottom: var(--section-gap);
}

/* =========================================================
   BASE1 — GRID (DESKTOP)
========================================================= */

.base1-grid {
  display: grid;
  grid-template-columns: 300px 1fr; /* left column fixed at 300px */
  gap: 4rem;
  align-items: start;
}

/* =========================================================
   BASE1 — ASIDE (LEFT)
========================================================= */

.base1-aside {
  display: flex;
  flex-direction: column;
  gap: var(--base1-aside-gap);
  max-width: 300px; /* match Base3 */
}

/* eyebrow */
.base1-eyebrow {
  font-size: var(--base1-eyebrow-size);
  font-weight: var(--base1-eyebrow-weight);
  letter-spacing: 0.01em;
  opacity: 0.85;
  margin-bottom: 4.5rem; /* spacing below eyebrow */
}

/* =========================================================
   BASE1 — MEDIA IMAGE FIX
========================================================= */

.base1-aside .base1-media {
  width: 100%;        /* full column width */
  max-width: 300px;   /* constrain desktop media like Base3 */
  margin: 0;
}

.base1-aside .base1-media img,
.base1-aside .base1-media video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--surface-radius);
  object-fit: cover;
}

/* =========================================================
   BASE1 — CONTENT (RIGHT)
========================================================= */

.base1-content {
  display: grid;
  gap: var(--base1-content-gap);
  max-width: 75ch;
}

.base1-title {
  font-size: var(--base1-title-size);
  font-weight: var(--base1-title-weight);
  line-height: var(--base1-title-line);
  margin-bottom: var(--base1-space-after-title);
}

.base1-subtitle {
  font-size: var(--base1-subtitle-size);
  font-weight: var(--base1-subtitle-weight);
  line-height: var(--base1-subtitle-line);
  margin-bottom: var(--base1-space-after-subtitle);
  opacity: 0.8;
}

.base1-meta-title {
  font-size: var(--base1-meta-title-size);
  font-weight: var(--base1-meta-title-weight);
  letter-spacing: 0.01em;
  opacity: 0.85;
  margin-top: 4rem;
  margin-bottom: 0.75rem;
}

.base1-meta {
  font-size: var(--base1-meta-size);
  font-weight: var(--base1-meta-weight);
  max-width: 60ch;
  opacity: 0.80;
  line-height: var(--base1-meta-line);
}

.base1-cta {
  margin-top: 1.5rem;   /* spacing below meta text */
  display: inline-block;
  opacity: 1;
  transform: none;       /* remove any hero fade-in transforms */
  order: 5;   /* ensures it comes after meta */
}

/* Mobile — keep order natural */
@media (max-width: 900px) {
  .base1-content {
    display: block;       /* ensures normal flow */
  }
}

/* =========================================================
   MOBILE COLLAPSE
========================================================= */

@media (max-width: 900px) {
  .base1-grid {
    grid-template-columns: 1fr;
    gap: var(--section-gap);
  }

  .base1-aside,
  .base1-content {
    width: 100%;
    max-width: 100%;
    padding-inline: 0;
  }

  .base1-eyebrow {
    order: 1;
    text-align: left;
  }

  .base1-content {
    order: 2;
    display: grid;
    gap: var(--base1-content-gap);
  }

  .base1-cards,
  .base1-aside .base1-media {
    order: 3;
    width: 30%;
    max-width: 100%;
    margin: 0 auto 0 auto;
    display: block;
  }

  .base1-cards img,
  .base1-aside .base1-media img,
  .base1-cards video,
  .base1-aside .base1-media video {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 1rem auto; 
    border-radius: var(--surface-radius);
  }

  .base1-meta-title,
  .base1-meta {
    order: 4;
    width: 100%;
  }
}



/* =========================================================
   BASE2 — CONTENT + CARD STACK PRIMITIVE
========================================================= */

.base2 .section-inner {
  padding-inline: var(--content-pad);
  padding-top: calc(var(--section-gap) * 2);
  padding-bottom: var(--section-gap);
}

/* =========================================================
   BASE2 — GRID
========================================================= */

.base2-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 4rem;
  align-items: start;
}

/* =========================================================
   BASE2 — CONTENT COLUMN
========================================================= */

.base2-content {
  display: grid;
  gap: var(--base1-content-gap);
  max-width: 75ch;
}

/* =========================================================
   BASE2 — TYPOGRAPHY (MATCH BASE1 TOKENS)
========================================================= */

.base2-eyebrow {
  font-size: var(--base1-eyebrow-size);
  font-weight: var(--base1-eyebrow-weight);
  letter-spacing: 0.01em;
  opacity: 0.85;
  margin-bottom: 4.5rem; /* spacing below eyebrow */
}

.base2-title {
  font-size: var(--base1-title-size);
  font-weight: var(--base1-title-weight);
  line-height: var(--base1-title-line);
  margin-bottom: var(--base1-space-after-title);
}

.base2-subtitle {
  font-size: var(--base1-subtitle-size);
  font-weight: var(--base1-subtitle-weight);
  line-height: var(--base1-subtitle-line);
  opacity: 0.8;
  margin-bottom: var(--base1-space-after-subtitle);
}

.base2-meta-title {
  font-size: var(--base1-meta-title-size);
  font-weight: var(--base1-meta-title-weight);
  letter-spacing: 0.01em;
  opacity: 0.85;
  margin-top: 4rem;
  margin-bottom: 0.75rem;
}

.base2-meta {
  font-size: var(--base1-meta-size);
  font-weight: var(--base1-meta-weight);
  max-width: 60ch;
  opacity: 0.80;
  line-height: var(--base1-meta-line);
}

/* =========================================================
   BASE2 — CARD TYPOGRAPHY
========================================================= */

.base2-card-title {
  font-size: var(--base1-meta-title-size);       /* meta title size */
  font-weight: var(--base1-meta-title-weight);   /* match meta weight */
  line-height: 1.4;
  opacity: 0.85; 
  margin-bottom: 0.5rem;                  /* optional spacing below title */
}

.base2-card-text {
  font-size: var(--base1-meta-size);       /* meta size */
  font-weight: var(--base1-meta-weight);   /* match meta weight */
  line-height: 1.4;
  opacity: 0.80;                            /* subtle like meta */
}


/* =========================================================
   BASE2 — CARD STACK
========================================================= */

.base2-cards {
  display: grid;
  gap: 0.75rem;
}

.base2-card {
  background: #dddede;   /* set card background color */
  border-radius: var(--surface-radius);
  padding: 1.25rem;

  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.base2-card-2 {
  background: #dddede;   /* set card background color */
  border-radius: var(--surface-radius);
  padding: 1.25rem;

  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.base2-card-3 {
  background: #dddede;   /* set card background color */
  border-radius: var(--surface-radius);
  padding: 1.25rem;

  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.base2-card-4 {
  background: #dddede;   /* set card background color */
  border-radius: var(--surface-radius);
  padding: 1.25rem;

  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}


/* avatar */
.base2-avatar {
  width: 100px;
  height: 100px;
  border-radius: var(--surface-radius);
  object-fit: cover;
  display: block;
    box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.08),   /* soft, spread-out bottom shadow */
    0 10px 20px rgba(0, 0, 0, 0.05),   /* smaller secondary bottom shadow */
    10px 0 20px rgba(0, 0, 0, 0.03),   /* right side soft shadow */
    -10px 0 20px rgba(0, 0, 0, 0.03);  /* left side soft shadow */
}

/* =========================================================
   BASE2 — CARD ANIMATION
========================================================= */

.base2-card--team {
  opacity: 0;                       /* start hidden */
  transform: translateY(24px);      /* slide up from below */
  transition: 
    opacity 0.6s ease,
    transform 0.6s ease;
  will-change: opacity, transform;
}

.base2-card--team.animate {
  opacity: 1;                       /* visible */
  transform: translateY(0);         /* final position */
}

/* Optional: stagger the cards for a cascading effect */
.base2-card--team:nth-child(1) { transition-delay: 0.05s; }
.base2-card--team:nth-child(2) { transition-delay: 0.15s; }
.base2-card--team:nth-child(3) { transition-delay: 0.25s; }
.base2-card--team:nth-child(4) { transition-delay: 0.35s; }


/* =========================================================
   BASE2 — MOBILE COLLAPSE
========================================================= */

@media (max-width: 900px) {
  .base2-grid {
    grid-template-columns: 1fr;
  }

  .base2-aside,
  .base2-content {
    max-width: 100%;
    width: 100%;
  }
	
  .base2-cards {
    width: 100%;              /* constrain cards width */
    max-width: 100%;        /* match original desktop card width */
    margin: 0 auto 0 auto; /* center horizontally */
  }
}

/* =========================================================
   BASE3 — CONTENT + MEDIA PRIMITIVE
========================================================= */
.base3 .section-inner {
  padding-inline: var(--content-pad);
  padding-top: calc(var(--section-gap) * 2);
  padding-bottom: var(--section-gap);
}

/* =========================================================
   BASE3 — GRID
========================================================= */
.base3-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: start;
}


/* =========================================================
   BASE3 — MEDIA COLUMN
========================================================= */
.base3-col-left {
  width: 100%;
  max-width: 300px;
}

.base3-eyebrow {
  font-size: var(--base1-eyebrow-size);
  font-weight: var(--base1-eyebrow-weight);
  letter-spacing: 0.01em;
  opacity: 0.85;
  margin-bottom: 4.5rem; /* spacing below eyebrow */
}

.base3-media {
  border-radius: 0;
  overflow: visible;
  margin: 0;
  padding: 0;
}

.base3-media img,
.base3-media video {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
  border-radius: var(--surface-radius);
}
/* =========================================================
   BASE3 — CONTENT COLUMN
========================================================= */
.base3-col-right {
  display: grid;
  gap: var(--base1-content-gap);
  max-width: 75ch;
}

.base3-title {
  font-size: var(--base1-title-size);
  font-weight: var(--base1-title-weight);
  line-height: var(--base1-title-line);
  margin-bottom: var(--base1-space-after-title);
}

.base3-subtitle {
  font-size: var(--base1-subtitle-size);
  opacity: 0.8;
}

.base3-meta-title {
  font-size: var(--base1-meta-title-size);
  font-weight: var(--base1-meta-title-weight);
  letter-spacing: 0.01em;
  opacity: 0.85;
  margin-top: 4rem;
  margin-bottom: 0.75rem;
}

.base3-meta {
  font-size: var(--base1-meta-size);
  font-weight: var(--base1-meta-weight);
  max-width: 60ch;
  opacity: 0.80;
  line-height: var(--base1-meta-line);
}

/* =========================================================
   BASE3 — FAQ
========================================================= */
.base3-faq {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.faq-item {
  background: #dddede;
  border-radius: var(--surface-radius);
  padding: 1.25rem;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;

  display: flex;
  justify-content: space-between; /* icon to far right */
  align-items: center;

  padding: 0; /* handled by faq-item */
  font-size: var(--base1-meta-title-size);
  font-weight: var(--base1-meta-title-weight);
  letter-spacing: 0.01em;
  opacity: 0.85;
}

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

.faq-icon::before {
  content: "+";
  flex-shrink: 0;
}

.faq-item[open] .faq-icon::before {
  content: "×";
}

.faq-answer {
  margin-top: 0.75rem;
  font-size: var(--base1-meta-size);
  font-weight: var(--base1-meta-weight);
  opacity: 0.80;
  line-height: var(--base1-meta-line);
}

/* =========================================================
   BASE3 — FAQ ITEM ANIMATION
========================================================= */

.faq-item {
  opacity: 0;                       /* start hidden */
  transform: translateY(24px);      /* slide up from below */
  transition: 
    opacity 0.6s ease,
    transform 0.6s ease;
  will-change: opacity, transform;
}

.faq-item.animate {
  opacity: 1;                       /* visible */
  transform: translateY(0);         /* final position */
}

/* Optional: stagger the FAQ items */
.faq-item:nth-child(1) { transition-delay: 0.05s; }
.faq-item:nth-child(2) { transition-delay: 0.10s; }
.faq-item:nth-child(3) { transition-delay: 0.15s; }
.faq-item:nth-child(4) { transition-delay: 0.20s; }
.faq-item:nth-child(5) { transition-delay: 0.25s; }
.faq-item:nth-child(6) { transition-delay: 0.30s; }



/* =========================================================
   BASE3 — MOBILE COLLAPSE (MAX 900px)
   Single column, exact order: eyebrow → content → image → meta
========================================================= */
@media (max-width: 900px) {

  /* Make grid a single column */
  .base3-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--section-gap); /* same spacing as Base1 */
  }

  /* Columns take full width, remove extra padding */
  .base3-col-left,
  .base3-col-right {
    width: 100%;
    max-width: 100%;
    padding-top: 0; /* remove inherited padding */
  }

  /* Eyebrow stays at top, left-aligned */
  .base3-eyebrow {
    order: 1;
    text-align: left;
  }

  /* Content next (title, subtitle, FAQ) */
  .base3-col-right {
    order: 2;
    display: grid;
    gap: var(--base1-content-gap);
  }

  /* Media (image) below content, centered, scaled 50% */
  .base3-media {
    order: 3;                /* appears after content */
    width: 30%;              /* shrink 50% */
    max-width: 100%;        /* fallback max-width */
    margin: 0 auto 1rem auto; /* center horizontally */
    display: block;
    border-radius: var(--surface-radius);
    padding: 0;              /* remove any inner spacing */
  }

  .base3-media img,
  .base3-media video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--surface-radius);
  }

  /* Meta below image */
  .base3-meta-title,
  .base3-meta {
    order: 4;
    width: 100%;
  }
}

/* =========================================================
   BASE4 — CONTENT + CARD STACK PRIMITIVE
========================================================= */

.base4 .section-inner {
  padding-inline: var(--content-pad);
  padding-top: calc(var(--section-gap) * 2);
  padding-bottom: var(--section-gap);
}

/* =========================================================
   BASE4 — GRID
========================================================= */

.base4-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 4rem;
  align-items: start;
}

/* =========================================================
   BASE4 — CONTENT COLUMN
========================================================= */

.base4-content {
  display: grid;
  gap: var(--base1-content-gap);
  max-width: 75ch;
}

/* =========================================================
   BASE4 — TYPOGRAPHY 
========================================================= */

.base4-eyebrow {
  font-size: var(--base1-eyebrow-size);
  font-weight: var(--base1-eyebrow-weight);
  letter-spacing: 0.01em;
  opacity: 0.85;
  margin-bottom: 4.5rem; /* spacing below eyebrow */
}

.base4-title {
  font-size: var(--base1-title-size);
  font-weight: var(--base1-title-weight);
  line-height: var(--base1-title-line);
  margin-bottom: var(--base1-space-after-title);
}

.base4-subtitle {
  font-size: var(--base1-subtitle-size);
  font-weight: var(--base1-subtitle-weight);
  line-height: var(--base1-subtitle-line);
  opacity: 0.8;
  margin-bottom: var(--base1-space-after-subtitle);
}

.base4-meta-title {
  font-size: var(--base1-meta-title-size);
  font-weight: var(--base1-meta-title-weight);
  letter-spacing: 0.01em;
  opacity: 0.85;
  margin-top: 4rem;
  margin-bottom: 0.75rem;
}

.base4-meta {
  font-size: var(--base1-meta-size);
  font-weight: var(--base1-meta-weight);
  max-width: 60ch;
  opacity: 0.80;
  line-height: var(--base1-meta-line);
}

/* =========================================================
   BASE4 — CARD TYPOGRAPHY
========================================================= */

.base4-card-title {
  font-size: var(--base1-meta-title-size);       /* meta title size */
  font-weight: var(--base1-meta-weight);   /* match meta weight */
  line-height: 1.4;
  opacity: 0.85;  
  margin-bottom: 0.5rem;                  /* optional spacing below title */
}

.base4-card-text {
  font-size: var(--base1-meta-size);       /* meta size */
  font-weight: var(--base1-meta-weight);   /* match meta weight */
  line-height: 1.4;
  opacity: 0.80;                            /* subtle like meta */
}


/* =========================================================
   BASE4 — CARD STACK
========================================================= */

.base4-cards {
  display: grid;
  gap: 0.75rem;
  
}

.base4-card {
  background: #dddede;   /* set card background color */
  border-radius: var(--surface-radius);
  padding: 1.25rem;

  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  
}

.base4-cards {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  transition: grid-template-columns 0.5s ease, gap 0.5s ease;
}

.base4-card {
  background: #dddede;   /* set card background color */
  border-radius: var(--surface-radius);
  padding: 1.25rem;

  display: flex;
  flex-direction: column;
  gap: 0.75rem;

  transition: padding 0.5s ease, gap 0.5s ease, transform 0.3s ease;
}

/* =========================================================
   BASE4 — CARD ANIMATION
========================================================= */

.base4-card {
  opacity: 0;                       /* start hidden */
  transform: translateY(24px);      /* slide up from below */
  transition: 
    opacity 0.6s ease,
    transform 0.6s ease;
  will-change: opacity, transform;
}

.base4-card.animate {
  opacity: 1;                       /* visible */
  transform: translateY(0);         /* final position */
}

/* Optional: stagger the cards for a cascading effect */
.base4-card:nth-child(1) { transition-delay: 0.05s; }
.base4-card:nth-child(2) { transition-delay: 0.15s; }
.base4-card:nth-child(3) { transition-delay: 0.25s; }
.base4-card:nth-child(4) { transition-delay: 0.35s; }


.base4-card-1 {
  background: #dddede;   /* set card background color */
  border-radius: var(--surface-radius);
  padding: 1.25rem;

  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.base4-card-2 {
  background: #dddede;   /* set card background color */
  border-radius: var(--surface-radius);
  padding: 1.25rem;

  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.base4-card-3 {
  background: #dddede;   /* set card background color */
  border-radius: var(--surface-radius);
  padding: 1.25rem;

  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.base4-card-4 {
  background: #dddede;   /* set card background color */
  border-radius: var(--surface-radius);
  padding: 1.25rem;

  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* avatar */
.base4-avatar {
  width: 100px;
  height: 100px;
  border-radius: var(--surface-radius);
  object-fit: cover;
  display: block;
}


/* =========================================================
   BASE4 — CARD ICON ONLY
   Standalone icon with pixel-size control
========================================================= */
.card-icon {
  display: inline-block;                  /* keeps it on the same line */
  width: var(--card-icon-size, 24px);     /* control size */
  height: var(--card-icon-size, 24px);
  margin-right: 0.75rem;                   /* spacing between icon and text */
  background-size: contain;               /* scale image to fit */
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;                 /* aligns with text baseline */
}

/* =========================================================
   BASE4 — MOBILE COLLAPSE
========================================================= */

@media (max-width: 900px) {
  .base4-grid {
    grid-template-columns: 1fr;
  }

  .base4-aside,
  .base4-content {
    max-width: 100%;
    width: 100%;
  }
	
  .base4-cards {
    width: 100%;        
    max-width: 100%;        
    margin: 0 auto 1rem auto; 
  }

    .base4-cards {
    grid-template-columns: 1fr; /* stack cards vertically */
    gap: 0.5rem; /* optional smaller gap for mobile */
  }

  .base4-card {
    padding: 1rem;
    /* optional: subtle hover lift effect */
    transform: translateY(0); 
  }

}


/* =========================================================
   BASE5 — CONTACT SECTION (ELASTIC, SYSTEM-CORRECT)
========================================================= */
.base5 {
  background: #020202;
  color: #fff;
  position: relative;
  border-radius: var(--surface-radius) var(--surface-radius) 0 0;
}

.base5 .section-inner {
  padding-inline: var(--content-pad);
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

#contact {
  height: 5rem; 
}

@media  (max-width: 900px)  {
  #contact {
    height: 5rem; /* tablet */
  }
}

@media  (max-width: 480px)  {
  #contact {
    height: 5rem; /* desktop */
  }
}

/* =========================================================
   BASE5 — GRID (ELASTIC)
========================================================= */
.base5-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(0, 2fr);
  gap: clamp(3rem, 6vw, 8rem);
  align-items: start;
}

/* =========================================================
   BASE5 — LEFT COLUMN (META TEXT)
========================================================= */
.base5-col-left {
  width: 100%;
  max-width: none;
}

.base5-meta-title {
  font-size: var(--base1-meta-title-size);
  font-weight: var(--base1-meta-title-weight);
  letter-spacing: 0.01em;
  opacity: 1;
  margin-top: 0rem;
  margin-bottom: 0.80rem;
}

.base5-meta {
  font-size: var(--base1-meta-size);
  font-weight: var(--base1-meta-weight);
  max-width: 60ch;
  opacity: 0.75;
  line-height: var(--base1-meta-line);
}

/* Meta block wrapper */
.base5-meta-block {
  padding: 2rem 0; /* vertical spacing between blocks */
  border-top: 1px solid rgba(255, 255, 255, 0.2); /* thin dividing line */
}

/* Remove top border on the first block */
.base5-meta-block:first-child {
  border-top: none;
  padding: 0 0 2rem 0;
}


/* =========================================================
   BASE5 — RIGHT COLUMN (TITLE + FORM)
========================================================= */
.base5-col-right {
  display: grid;
  gap: var(--base1-content-gap);
  width: 100%;
  max-width: none;
}

/* Title */
.base5-title {
  font-size: var(--base1-title-size);
  font-weight: var(--base1-title-weight);
  line-height: var(--base1-title-line);
  color: #fff;
  margin-bottom: var(--base1-space-after-title);
}

/* Title */
.base5-form-title {
  font-size: var(--base1-subtitle-size);
  font-weight: var(--base1-title-weight);
  line-height: var(--base1-title-line);
  color: #020202;
  margin-bottom: var(--base1-space-after-title);
}


/* =========================================================
   BASE5 — FORM
========================================================= */
.base5-form-wrapper {
  background: #fefefe;
  padding: 2rem;
  border-radius: var(--surface-radius);
  width: 100%;
  max-width: 56ch;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Form layout */
.base5-form {
  display: grid;
  gap: 1rem;
}

/* Prevent intrinsic sizing issues */
.base5-form * {
  min-width: 0;
}

.base5-form input,
.base5-form textarea,
.base5-form button {
  width: 100%;
  background: #dddede;
  color: #020202;
  border: 1px solid #d3d3d3;
  border-radius: var(--surface-radius);
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

.base5-form textarea {
  resize: vertical;
  min-height: 120px;
}

.base5-form button {
  background: #020202;
  color: #fff;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.base5-form button:hover {
  opacity: 0.9;
}

.base5-form .form-disclaimer {
  font-size: 0.80rem;
  opacity: 0.8;
  margin-top: 0.5rem;
  color: #020202;
}


/* =========================================================
  CONTACT FORM ON SUBMIT TEXT
========================================================= */
.success-text {
  font-size: var(--base1-subtitle-size);
  font-weight: var(--base1-title-weight);
  line-height: var(--base1-title-line);
  color: #020202;
  margin-bottom: var(--base1-space-after-title);
}

/* =========================================================
   BASE5 — MOBILE COLLAPSE
========================================================= */
@media (max-width: 900px) {
  .base5-grid {
    grid-template-columns: 1fr;
    gap: var(--section-gap);
  }

  .base5-form-wrapper {
    max-width: 100%;
  }
}

/* =========================================================
   BASE6 — CONTACT / PRIVACY SECTION (SINGLE COLUMN)
========================================================= */
.base6 {
    background: #fff;       /* white background */
    color: #020202;         /* dark text */
    position: relative;
}

.base6 .section-inner {
    max-width: 90ch;        /* constrain text width for readability */
    margin: 0 auto;         /* center content */
    padding-inline: var(--content-pad);
    padding-top: var(--section-gap);
    padding-bottom: var(--section-gap);
    display: flex;
    flex-direction: column;
    gap: var(--base1-content-gap);
    text-align: left;
}

/* =========================================================
   BASE6 — META BLOCKS
========================================================= */
.base6-meta-block {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.base6-meta-block:first-child {
    border-top: none;
}

.base6-meta-title {
  font-size: var(--base1-meta-title-size);
  font-weight: var(--base1-meta-title-weight);
  letter-spacing: 0.01em;
  opacity: 0.85;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.base6-meta {
  font-size: var(--base1-meta-size);
  font-weight: var(--base1-meta-weight);
  max-width: 75ch;
  opacity: 0.80;
  line-height: var(--base1-meta-line);
}

/* =========================================================
   BASE6 — SECTION TITLE
========================================================= */
.base6-title {
    font-size: var(--base1-title-size);
    font-weight: var(--base1-title-weight);
    line-height: var(--base1-title-line);
    margin-bottom: var(--base1-space-after-title);
}

/* =========================================================
   BASE6 — LISTS
========================================================= */
.base6-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.base6-list li {
  font-size: var(--base1-meta-size);
  font-weight: var(--base1-meta-weight);
    line-height: 1.4;
    opacity: 0.75;
    position: relative;
    padding-left: 1.1rem;
}

.base6-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    opacity: 0.75;
}

/* =========================================================
   MOBILE COLLAPSE (single column already)
========================================================= */
@media (max-width: 900px) {
    .base6 .section-inner {
        padding-inline: calc(var(--content-pad) / 2);
    }
}

/***************************
 * TWO-COLUMN LIST
 ***************************/
.two-column-list {
  margin-top: 3rem;
  margin-bottom: 3rem;
  width: 100%;
}

.two-column-list__item {
  display: grid;
  grid-template-columns: var(--two-column-grid-columns);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(1.4rem, 3.5vw, 1.8rem) 0;
  border-bottom: 1px solid #eeeeee;
}

.two-column-list__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.two-column-list__left {
  font-weight: 700;
  font-size: var(--two-column-font-size-left);
  line-height: 1.3;
  color: #020202;
}

.two-column-list__right {
  font-size: var(--two-column-font-size-right);
  line-height: 1.4;
  opacity: 0.80;
   font-weight: 400;
}

.two-column-list__right ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  text-align: right;
}

.two-column-list__left--with-icon {
  display: flex;
  align-items: center;
  gap: 0rem;
}

.two-column-list__icon {
  width: 0.8em;
  height: 0.8em;
  flex-shrink: 0;
  opacity: 0.85;
}

/* Base transition for smooth resizing */
.two-column-list__item {
  display: grid;
  grid-template-columns: var(--two-column-grid-columns);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(1.4rem, 3.5vw, 1.8rem) 0;
  border-bottom: 1px solid #eeeeee;

  transition: 
    grid-template-columns 0.5s ease, 
    gap 0.5s ease, 
    padding 0.5s ease;
}

/***************************
 * TWO-COLUMN SCROLL ANIMATION
 ***************************/
.two-column-list__item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.two-column-list__item.animate {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 1280px) {
  .two-column-list__item {
    grid-template-columns: 1fr; /* stack columns */
    gap: 1rem;
    padding: 1.5rem 0; /* optional, smaller padding for mobile */
  }

  .two-column-list__right {
    text-align: left;
    margin-top: 0.5rem;
    transition: margin 0.5s ease; /* smooth spacing change */
  }

  .two-column-list__right ul {
    text-align: left;
  }
}

/* =========================================================
   FOOTER — SIMPLE LEFT/RIGHT
========================================================= */
.footer {
  background-color: #020202;
  color: rgba(255, 255, 255, 0.4); 
  font-size: var(--footer-text-size);
  font-weight: var(--footer-text-weight);
  line-height: var(--footer-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: var(--content-pad); /* horizontal padding */
  padding-block-start: 0;             /* keep top flush */
  padding-block-end: 1rem;            /* bottom padding — adjust as needed */
  margin: 0;
}

.footer-right {
  display: flex;
  gap: 1rem; /* spacing between links */
}

.footer a {
  color: rgba(255, 255, 255, 0.4); 
  font-weight: var(--footer-text-weight);
  transition: color 0.2s ease, opacity 0.2s ease;
  text-decoration: none;
}

.footer a:hover,
.footer a:focus {
  color: #ff4b33;
  opacity: 1;
}


