@charset "UTF-8";
/* ------------------------------
   ROOT VARIABLES
------------------------------ */
:root {
  --bg-color: #e2e2e0; 
  --gutter: 60px;
  /*--content-width: 44%;
  --row-padding-x: 40px;
  --row-padding-y: 60px;
  --image-gap: 20px;
  --caption-spacing: 8px;*/
}

/* =========================================================================
           RESET & FOUNDATION
   ========================================================================= */
*, *:before, *:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}



html {
    scroll-behavior: smooth;
	margin: 0;
	padding: 0;
	width: 100%;
    overflow-x: hidden; 
}


body {
    min-height: 100vh;
    font-family: 'Georgia', serif;
    color: #2b2520;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    /* =========================================================================
       THE MASTER VARIABLES 
       ========================================================================= */
    --paper-base: #DDC5AD;
    --paper-light: #E3CCB5; 
    --paper-dark: #D6BEA5;

    /* THE VARIABLES */
    background-color: var(--paper-base); 
    background-image: 
        /* The exact same monochromatic grain layer we perfected */
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='paper'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' result='noise'/%3E%3CfeColorMatrix type='luminanceToAlpha' result='mono'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.15'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23paper)'/%3E%3C/svg%3E"),
        /* Gradient now dynamically reads your variables */
        linear-gradient(to bottom, var(--paper-light) 0%, var(--paper-dark) 100%);

    background-size: 330px 330px, 100% 100%;
    background-blend-mode: multiply, normal;
    background-attachment: fixed;
}


/* =========================================================================
   THE CATEGORY PAGES OVERRIDES
   ========================================================================= */

/* Design & Technology Page */
body.page-design-tech {
    --paper-base: #D2D6D3;
    --paper-light: #D8DCD9;
    --paper-dark: #CCD0CD;
}

/* Mind, Body, Spirit Page */
body.page-mind-body-spirit {
    --paper-base: #D5D7C7;
    --paper-light: #DBDDD1;
    --paper-dark: #CFD1C1;
}

/* Arts & Culture Page */
body.page-arts-culture {
    --paper-base: #E5D9C9;
    --paper-light: #EBDDCF;
    --paper-dark: #DFD3C3;
}

/* Research & Frameworks Page */
body.page-research-frameworks {
    --paper-base: #D1C7BD;
    --paper-light: #D7CDC3;
    --paper-dark: #CBC1B7;
}


/* ------------------------------
  VERTICAL SIDE BRAND BAR
  ------------------------------ */
.vertical-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 100vh; 
  background-color: #7F55A3;
  display: flex;
  flex-direction: column;
  justify-content:center;  /*vertical centering */
  align-items: center; /* horizontal centering */
  pointer-events: none; /* avoid blocking any interaction */
  z-index: 999; /* stays above background but below overlay nav */
}	

.vertical-text {
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.8px;
  writing-mode: vertical-lr;
  text-orientation: mixed; /* keeps letters upright */
  white-space: nowrap;
  margin: 1rem 0;
  text-align: center;
}

.vertical-text.company-name {
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  font-weight: 400;
  top: 100px;
  transform-origin: left top;
}

.vertical-text.tagline {
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  font-weight: 400;
  top: 40%;
  transform-origin: left center;
}

.vertical-text.date {
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  font-weight: 400;
  bottom: 190px;
  transform-origin: left bottom;
}



/* ------------------------------
   HEADER
   ------------------------------ */
    header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 0; 
    z-index: 1000;
   }



/* ------------------------------
   LOGO
   ------------------------------ */
.logo svg {
    width: 30px;
    height: auto;
	color: black; 
    mix-blend-mode: difference; 
	transition: color 0.3s ease, background-color 0.3s ease;
}

/* save */
.logo-icon {
      position: absolute;
      top: 1.8em;
      left: 2.8em;
      width: 1.8em;
      height: 1.8em;
      z-index: 1001;
    }

.logo a{
	color: black;
	transition: color 0.2s ease;
}

.logo a:hover,
.logo a:focus-visible {
	color: #5D5D5D
}



/* ------------------------------ */
/* HAMBURGER MENU */
/* ------------------------------ */
.hamburger {
  position: fixed;      
  top: 40px;
  right: 40px;
  width: 40px;
  height: 27px;     /* keep at 27px for a balanced X */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001; 
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: black; /* important - use black light pgs */
  margin-bottom: 6px;
  border-radius: 2px;
  mix-blend-mode: difference;
  transition: 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(12px);    
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-12px);   
}


/* overrides  */
.theme-dark .logo svg {
    color: white;
}

.theme-dark .hamburger span {
    background-color: white;
}

.theme-light .logo svg {
    color: #000;
}

.theme-light .hamburger span {
    background-color: #000;
}



/* --------------------------- */
/* NAVIGATION                  */
/* --------------------------- */

.nav-overlay.active ~ .hamburger span,
.hamburger.active span {
	background-color: #fff;
	mix-blend-mode: normal;
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	inset: 0;
    background: rgba(20,20,20,0.92);
	z-index: 1000;           
	
    align-items: center; 
    justify-content: center; 
	
	color: #fff; 
    backdrop-filter: blur(4px);
	
	/*display: flex; */ /* turned off due to flashing  */
	display: none; 
	
    opacity: 0; 
    visibility: hidden; /* keep this on or doesn't work */
	pointer-events: none; 
	transition: opacity 0.3s ease, visibility 0.3s ease; 
}

.nav-overlay.active {
  display: flex; 
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
  pointer-events: auto;
}

/* Main nav list */
.nav-overlay ul {
  list-style: none; 
  padding: 0;
  margin: 0;
  text-align: left; 
}

.nav-overlay ul > li {
  margin: 20px 0;
}

.nav-overlay ul li a {
font-family: "neue-haas-grotesk-display", sans-serif;  /* main catagories */
  text-decoration: none;
  color: #fff;
  font-size: 4.8rem;  /* larger size for main catagories */
  font-weight: 200;
  transition: color 0.2s ease;
}

.nav-overlay ul > li > a:hover {
  color: #d5ae7b;
}

/* Sub-navigation (secondary links) */
.nav-overlay ul li ul {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}

.nav-overlay ul li ul li {
  margin: 6px 0;
}

.nav-overlay ul li ul li a {
font-family: "neue-haas-grotesk-display", sans-serif;   /* sub catagories */
font-weight: 300;
  font-size: 2.1rem; 
  letter-spacing: 0.02em;
  color: #CBC4BD;  
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-overlay ul li ul li a:hover {
  color: #ffffff;
}



/* ------------------------------ */
/* MAIN SECTION                   */
/* ------------------------------ */

		
/* =========================================================================
   BASE MAGAZINE STRUCTURAL DEFAULTS (Mobile First)
========================================================================= */
.magazine-container {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 3rem 20px; 
}

main.article-columns {
  width: 100%;
  padding: 0;
}

.article-columns {
  display: grid;
  grid-template-columns: 1fr; /* 1 Column on mobile viewports */
  gap: 3rem 2.5rem;
}


/* =========================================================================
   HEADER STYLING
========================================================================= */
.magazine-header {
  border-bottom: 1.5px solid #2b2520;
  padding-bottom: 1.5rem;
  margin-bottom: 30px;
}

.magazine-header h3 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.11rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #7a6e63;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.magazine-header h2 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #7a6e63;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.magazine-header h1 {
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -1px;
  color: #1a1613;
}

/* =========================================================================
   ARTICLE CARDS
========================================================================= */
.magazine-post {
  display: flex;
  flex-direction: column;
}

.magazine-post .category {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #8c7e70;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.magazine-post h3 {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 0.75rem;
  letter-spacing: -0.2px;
}

.magazine-post h3 a {
  color: #2b2520;
  text-decoration: none;
  transition: color 0.2s ease;
}

.magazine-post h3 a:hover {
  color: #70655a;
}

.magazine-post p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #574e46;
}



/* === Links styling (global) === */
a:link,
a:visited {
  color: black;
  text-decoration: none;
}
a:hover,
a:active {
  color: #777;
  text-decoration: none;
}



/* ==========================
   FADE-IN ON SCROLL 
   ========================== */

.fade-in {
  opacity: 0.5;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out,
              transform 0.8s ease-out;
  will-change: opacity, transform;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}



/* ------------------------------ */
/* FOOTER - desktop */ 
/* ------------------------------ */

footer {
	font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    width: 100%;
	display: block;
    background-color: #111;
    color: #5B5B5B;
	padding: 60px 20px 30px 40px; 
	box-sizing: border-box; 
}

/* ----------------------------PILLARS (Integrated with existing fade-in script) */
.footer-pillars {
  display:flex;
  justify-content: flex-start; /* Aligns items to top left */
  flex-wrap: wrap;
  column-gap: 60px; /*Large gap between pillars */
  row-gap: 30px; /* Gap if they wrap to a second line */
  margin-bottom: 50px; 
  max-width: 1400px; /* Prevents stretching too far on a giant monitor */
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  font-weight: 500;
  color: #414141;
	
  /* Animation Initial state */
    opacity: 0;
	transform: translateY(20px);
	transition: opacity 1.2s ease-out, transform 1.2s ease-out;
	will-change: opacity, transform;
}

.footer-pillars span {
	transition: color 0.4s ease, transform 0.4s ease;
	cursor: default;
}

.footer-pillars span:hover {
	color: #888; 
	transform: translateY(-2px); 
}


/* Matches exisiting JavaScript class */
.footer-pillars.visible {
	opacity: 0.6s; 
	transform: translateY(0);
}


.footer-divider {
  border: 0;
  border-top: 1px solid #333;
  margin: 0 0 20px 0; 
  width: 100%;
}

/*  FOOTER copyright left, links right */
.footer-bottom {
  display: flex;
  justify-content: space-between; /* copyright left, links right */
  align-items: flex-end;  /* anchors them to the bottom of this row */
}

/* copyright */
.footer-left {
  font-size: 11px;
	color: #888;
}

/* footer text - right side */
.footer-right {
    text-align: right;
	justify-content:center;
}

/* footer links */
.footer-right a {
    margin-left: 20px;
	display:inline; 
	font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    font-size:  21px;
    font-weight: 400;
    color: #414141;
    text-decoration: none;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
	text-transform: uppercase;
	transition: opacity 0.3s ease; 
}

/* footer links-hover state */
.footer-right a:hover {
    color: #999;
	opacity: 0.5; 
}

.footer-right a:first-child {
	margin-left: 0;
}

.footer-right a:last-child {
	margin-right: 0;
}

.footer-right a + a::before {   
	content: "/";
	color: #414141;
	margin-left: 0.1rem;
	margin-right: 0.3rem;
}


/* Style for the active page link */
.footer-right a.current {
    color: #6c604f; /* Warm, muted gold */
    pointer-events: none; /* Prevents clicking the current page */
    cursor: default;
    opacity: 1; /* Ensures it stays bright and doesn't use the 0.5 hover opacity */
}

/* Optional: separator (/) to stay the dark gray color so the gold stands out more */
.footer-right a.current + a::before,
.footer-right a + a.current::before {
    color: #414141; 
}



/* ============================================================
   TABLET RESPONSIVE ENGINE (600px to 1023px)
============================================================ */
@media (min-width: 600px) and (max-width: 1023px) { 
  .vertical-bar { width: 16px; }
  .vertical-text { font-size: 8px; }
  .hamburger { top: 20px; right: 20px; width: 32px; height: 24px; }
  .nav-overlay a { font-size: 28px; }

  .magazine-container {
    max-width: 768px; 
    padding: 8rem 120px; 
  }
	

.magazine-header {
    margin-bottom: 80px !important; /* space below line*/
    border-bottom: 1px solid #2b2520 !important;
    padding-bottom: 1.5rem !important;
    }
	
.magazine-header h2 {
  font-size: 0.6rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}
		
.magazine-header h1 {
  font-size: 2.8rem;
  line-height: 1.05;
  letter-spacing: -1px;
}
	
.magazine-header h3 {
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
	
	
	
	
  .article-columns {
    grid-template-columns: 1fr 1fr; /* Clean 2 columns */
  }
  
  .footer-bottom { 
	  flex-direction: column; 
	  align-items: flex-start; 
	  gap: 15px; 
	}
	
  .footer-pillars { 
	  flex-direction: column; 
	  font-size: 11px; 
	  padding-right: 90px; 
	} 
	
  .footer-left { 
	  font-size: 10px; 
	}
	
  .footer-right { 
	  text-align: left; 
	  display: flex; 
	  flex-wrap: wrap; 
	  gap: 15px; 
	  padding-left: 20px; 
	}  
	
  .footer-right a { 
	  font-size: 14px; 
	  margin-left: 0; 
	} 
}


/* ============================================================
   HIGH-END ASYMMETRIC DESKTOP VIEW (1024px and up)
============================================================ */
@media (min-width: 1024px) {
  .magazine-container {
    display: grid !important;
    max-width: 100% !important;
    margin: 0 !important;
    grid-template-columns: 50% 40% 10% !important;
    padding: 12rem 0 6rem 0 !important; 
    box-sizing: border-box !important;
  }

  /* 1. Target the class directly as a pure grid child */
  .magazine-header {
    grid-column: 2 / 3 !important; /* Locks it into the 40% track */
    display: block !important;    
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 40px !important;
    border-bottom: 1.5px solid #2b2520 !important;
    padding-bottom: 1.5rem !important;
  }

  /* 2. Direct, clean heading overrides */
  .magazine-header h1,
  .magazine-header h2,
  .magazine-header h3 {
    display: block !important;
    width: 100% !important;
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* 3. Main content columns */
  .article-columns {
    grid-column: 2 / 3 !important; /* Perfectly mirrors the layout above */
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem 2.5rem !important;
    width: 100% !important;
  }

  .footer-pillars {
    column-gap: 30px; 
    font-size: 0.67rem;
  }
}

/* ============================================================
   SMALL MOBILE / EXTRA-NARROW BREAKPOINTS (Up to 480px)
============================================================ */
@media (max-width: 480px) {
	.logo-icon {
    top: 1em;
    left: 1.4em;
    width: 1.8em;
  }
	
	.magazine-container {
		padding: 8rem 80px;
	}
	
	.magazine-header {
    margin-bottom: 80px !important; /* space below line*/
    border-bottom: 1px solid #2b2520 !important;
    padding-bottom: 1.5rem !important;
    }
	
.magazine-header h2 {
  font-size: 0.6rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}
		
.magazine-header h1 {
  font-size: 2.52rem;
  line-height: 1.05;
  letter-spacing: -1px;
}
	
.magazine-header h3 {
  font-size: 0.79rem;
  letter-spacing: 2px;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}



/* ---------- ADJUSTMENTS FOR NAV + VERTICAL BAR ------------------- */
	
.vertical-bar {
    width: 14px;
  }

  .vertical-text {
    font-size: 7px;
  }

  .hamburger {
    top: 16px;
    right: 16px;
    width: 28px;
    height: 20px;
  }

  .nav-overlay a {
    font-size: 22px;
  }	
	
.nav-overlay ul li a {
font-family: "neue-haas-grotesk-display", sans-serif;  /* main catagories */
  text-decoration: none;
  color: #fff;
  font-size: 22px;  /* larger size for main catagories */
  font-weight: 400;
  transition: color 0.2s ease;
 }		

	
	
/* -------------------  FOOTER ONLY adjustments)  ------------------- */		
	
	 .footer-bar {
     font-size: 10px;
     }
	
	
	.footer-pillars {
		flex-direction: column; /* Pillars now stack vertically */
		row-gap: 15px;
		margin-bottom: 40px;
		padding-right: 60px;
	}
	.footer-pillars span {
		font-size: 0.7rem; 
		gap: 10px;
	}
   }