/* 
=====================================
  PARSEVEN MAIN STYLESHEET
  Single source of truth
  Do not add page-level <style> tags
=====================================
*/


/* =========================
   Tokens / Base
========================= */
:root{
  --bg:#0b0c0e;
  --panel:#0f1115;
  --text:#f2f3f5;
  --muted:#b7bcc6;
  --line:#222735;
  --accent:#f2f3f5;
  --soft:#151926;
  --max: 1080px;
  --radius: 18px;
}

*{ box-sizing: border-box; }

html, body{ height: 100%; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 700px at 15% 10%, #15192a 0%, var(--bg) 55%) no-repeat, var(--bg);
  color: var(--text);
  line-height: 1.5;
  letter-spacing: .2px;
}

a{ color: inherit; text-decoration: none; }

/* =========================
   Layout
========================= */
.container{
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* =========================
   Buttons
========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 14px;
  border: 1px solid rgba(242,243,245,.22);
  background: rgba(242,243,245,.50);
  color: var(--text);
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  cursor:pointer;
  white-space:nowrap;
}

.btn:hover{
  transform: translateY(-1px);
  background: rgba(242,243,245,.12);
  border-color: rgba(242,243,245,.10);
}

.btn.primary{
  background: #fff;
  color:#000;
  font-weight:600;
  border-color: transparent;
  border-radius: 10px !important;
}

.btn.primary:hover{
  background:#f5f5f5;
}
/* Notify button (used on product pages) */
button.notify-trigger{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  width: auto;
  max-width: 100%;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #111;
  background: #333;
  color: #fff;
  font: 600 14px/1 system-ui, -apple-system, Segoe UI, sans-serif;
  letter-spacing: 0.2px;
  cursor: pointer;
}

/* =========================
   Navigation
========================= */
header.nav{
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11,12,14,.99);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(34,39,53,.6);
}

header.nav .nav-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: relative; /* dropdown anchor */
}

.brand{
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
  opacity: .95;
  text-decoration: none;
  color: inherit;
}

.brand strong{
  font-size: 13px;
  letter-spacing: .28em;
}

.brand img{
  display: block;
  max-width: 210px; /* single source of truth */
  padding: 10px;
}

.nav-links{
  display: flex;
  gap: 16px;
  align-items: center;
}

.nav-links a{
  font-size: 13px;
  color: var(--muted);
  padding: 10px;
  border-radius: 12px;
}

.nav-links a:hover{
  background: rgba(255,255,255,.06);
  color: var(--text);
}

/* Hamburger */
.nav-toggle{
  display: none;
  margin-left: auto;
  font-size: 26px;
  line-height: 1;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: #fff;
}
@media (max-width: 768px){

  .nav-links{
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
  }

  .nav-links.is-open{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

}





/* =========================
   Hero (image hero used on pages that need it)
========================= */
.hero{
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 4rem;
  background-image:
    linear-gradient(
      to right,
      rgba(0,0,0,0.75) 0%,
      rgba(0,0,0,0.55) 45%,
      rgba(0,0,0,0.15) 65%,
      rgba(0,0,0,0) 100%
    ),
    url("/images/site/hero-image.png");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}

.hero-content{
  max-width: 1200px;
  color: #fff;
}

/* =========================
   Homepage-only layout hero (was .hero in index)
   IMPORTANT: change your homepage section class from "hero" to "home-hero"
========================= */
.home-hero{
  padding: 78px 0 34px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: start;
}

/*=========TOAST===========*/
.toast {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  
  background: #111;
  color: #eaeaea;
  padding: 14px 22px;
  border-radius: 8px;
  
  font-size: 14px;
  letter-spacing: .3px;
  text-align: center;

  opacity: 0;
  pointer-events: none;
  transition: all .35s ease;
  
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.origin{
    letter-spacing: .1em;
    font-weight: 600;
}






/*=========HERO and Section Animation ==========*/
.hero-actions{
  gap: 20px !important;
}

/* Subtle “alive” hero (no gimmicks) */
.hero{
  background-size: 108%;
  background-position: right center;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

/* Respect users who prefer less motion */
@media (prefers-reduced-motion: reduce){
  .hero{ animation: none; background-size: cover; }
}

/* Keep it even subtler on mobile */
@media (max-width: 768px){
  .hero{
    animation-duration: 24s;
    background-size: 112%;
    background-position: center;
  }
}

@keyframes heroDrift{
  0%   { background-size: 106%; background-position: right center; }
  100% { background-size: 110%; background-position: center center; }
}



/*----*/


.kicker{
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin: 0 0 14px;
}
.kicker--scarcity{
    margin-bottom: 0.5rem !important;
}
.kicker--inaugural{
    letter-spacing: 0.30em;
    text-transformation: uppercase;
}
h1{
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 650;
}

.sub{
  color: var(--muted);
  font-size: 16px;
  max-width: 54ch;
  margin: 0 0 26px;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* =========================
   Cards / Sections / Footer (from index)
========================= */
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(34,39,53,.8);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 12px 38px rgba(0,0,0,.26);
}

.drop .card{
    margin:30px 14px 30px 14px;
    padding: 32px 32px;
}
.drop .product{
    margin:30px 14px 30px 14px;
}
.drop .card p{
    margin-top: 8px !important;

}
#fd-cards{
    max-width: 1060px;
    text-align: center;
    margin:auto;
    
}
/* ADDED 2/4/26 ==========*/

/* 1. Target the cards directly using the specific class path */
#approach .drop .card {
  background-color: #121212; /* Ensure this matches your card color */
  transition: all 0.4s ease !important;
  border: 1px solid transparent; 
  /* If they aren't already, make sure they have a relative position for the lift */
  position: relative; 
}

/* 2. The Hover Trigger */
#approach .drop .card:hover {
  background-color: #1a1a1a !important; 
  transform: translateY(-8px) !important; /* A slightly more noticeable lift */
  border: 1px solid #333 !important;
  cursor: pointer;
  z-index: 2; /* Ensures the lifted card stays on top of shadows */
}

#signature {
  padding: 100px 0; /* Creates that 'breathing room' */
  text-align: center;
  background-color: #000;
}

.footer-p {
  width: 100px; /* Keep it subtle, not shouting */
  opacity: 0.1; /* This makes it feel like a watermark */
  filter: grayscale(100%);
  transition: opacity 1.2s ease;
}

#signature:hover .footer-p {
  opacity: 0.6; /* A very slow, quiet 'hello' when the user reaches the end */
}
.note{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.note-title{
  font-size:13px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:0 !important;
}

.note p{ margin:0; color:var(--text); }
.note small{ color:var(--muted); }

/*
section{ padding: 46px 0; }
*/
.section-title{
  font-size: 22px;
  margin:0 0 14px;
  letter-spacing: -0.01em;
  font-weight: 620;
}

.section-lead{
  color: var(--muted);
  max-width: 75ch;
  margin: 0 0 18px;
  font-size: 15px;
}

.divider{ border-top: 1px solid rgba(34,39,53,.7); }

.drop{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.product{
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(34,39,53,.85);
  background: rgba(15,17,21,.55);
  min-height: 210px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}

.product:hover{
  transform: translateY(-2px);
  border-color: rgba(242,243,245,.25);
  background: rgba(15,17,21,.72);
}

.product h3{ margin:0 0 10px; font-size:18px; letter-spacing:-.01em; }
.product p{ margin:0 0 18px; color:var(--muted); font-size:14px; max-width: 62ch; }

.product .meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing:.08em;
  text-transform: uppercase;
}

.tagline{
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(34,39,53,.8);
  background: rgba(15,17,21,.35);
  color: var(--muted);
  font-size: 14px;
}

.tagline em{ color:var(--text); font-style: italic; }

.footer{
  padding: 44px 0 60px;
  color: var(--muted);
  font-size: 13px;
  background: #000;
}

.footer-grid{
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  align-items:flex-start;
  border-top:1px solid rgba(34,39,53,.7);
  padding-top: 22px;

}

.footer a{ color:var(--muted); }
.footer a:hover{ color:var(--text); }
.mini{ font-size:12px; opacity:.9; }

#bottom-logo img{
  display:block;
  max-width: 150px;
  padding: 10px;
}

.text-gradient-bg{
  display: inline-block;
  padding: 6px 12px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.65), rgba(0,0,0,0.10));
  border-radius: 6px;
}

/* =========================
   Product pages (detail pages)
========================= */
.product-page{ padding: 0px 0; }

.product-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.product-image img{
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

.product-info h1{
  font-size: clamp(32px, 4vw, 44px);
  margin: 0 0 16px;
}

.product-description{
  color: var(--muted);
  font-size: 16px;
  max-width: 50ch;
  margin-bottom: 24px;
}

.product-details{
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.product-details li{
  padding: 6px 0;
  font-size: 14px;
  color: var(--muted);
}

.product-note{
  font-style: italic;
  margin-bottom: 28px;
}

.product-hat{
  background-image: url("/images/products/core-black/Hat-item-BG.png");
  background-size: cover;
  background-position: right center;
}

.product-mark{
  background-image: url("/images/products/mark-i/gallery-1.png");
  background-size: cover;
  background-position: right center;
}
.product-buy{
    margin-bottom: 60px;
}

/* =========================
   Slider (scoped so it doesn't break ALL buttons)
========================= */
.slider{
  max-width: 900px;
  margin: 40px auto;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #111;
}

.slider .track{
  display: flex;
  transition: transform .35s ease;
}

.slider .slide{ min-width: 100%; }

.slider .slide img{
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

/* ONLY slider controls, not global buttons */
.slider button{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255,255,255,.85);
  font-size: 22px;
}

.slider .prev{ left: 12px; }
.slider .next{ right: 12px; }

/* =========================
   Responsive
========================= */
@media (max-width: 900px){
  .product-grid{ grid-template-columns: 1fr; }
  .hero-grid{ grid-template-columns: 1fr; }
  .drop{ grid-template-columns: 1fr; }
}

@media (max-width: 768px){
  .container{ padding: 0 10px; }

  /* image hero */
  .hero{
    background-position: center;
    padding: 3rem 1.5rem;
  }

  /* nav */
  header.nav .nav-inner{
    flex-wrap: nowrap;
  }

  .nav-toggle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links{ display: none; }

  .nav-links.is-open{
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 14px 0;
    width: 100%;
    background: #000;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
  }

  .brand img{
    max-height: 45px;
    width: auto;
    padding: 10px 6px;
  }

  .text-gradient-bg{
    background: linear-gradient(to bottom, rgba(0,0,0,0.80), rgba(0,0,0,0.35));
  }
}
@media (max-width: 768px){

  /* Closed state (still rendered, but invisible) */
  header.nav .nav-links{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #000;
    z-index: 999;

    display: flex;                 /* keep display flex so it can animate */
    flex-direction: column;
    gap: 14px;
    padding: 14px 0;

    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    visibility: hidden;

    transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
  }
    
  /* Open state */
  header.nav .nav-links.is-open{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;

    transition: opacity .7s ease, transform .7s ease;
  }
  
  @media (max-width: 768px){
  .slider .slide img{
    height: clamp(220px, 60vw, 360px);
    object-fit: contain;
    background: #111;
  }
}

}
/*Founder Site Section /////////////////////////////*/
.founders-gateway {
    text-align: center;
}

.founders-gateway-inner {
    max-width: 700px;
    margin: 0 auto;
}
.founders-gateway h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.founders-gateway p {
    max-width: 550px;
    margin: 0 auto 1.5rem;
}

.founders-gateway-inner {
  max-width: 720px;
  margin: 0 auto;
}

.founders-gateway .eyebrow {
  margin-bottom: 18px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.founders-gateway h1 {
  margin: 0 0 22px;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
}

.founders-copy {
  margin: 0 auto 34px;
  max-width: 520px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
}

.founders-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom:24px;
}

.founders-btn:hover {
  background: rgba(255,255,255,0.82);
}

/*Full Site Section //////////////////////////////////*/
.collection-strip {
  padding: 90px 40px 100px;
  background: #050606;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.collection-strip-inner {
  max-width: 1500px;
  margin: 0 auto;
}

.collection-heading {
  margin-bottom: 34px;
}

.collection-heading .eyebrow {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.collection-heading h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 42px);
  color: #fff;
  letter-spacing: -0.03em;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.collection-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 28px;
  background: #0e0f0f;
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  text-decoration: none;
  min-height: 560px;
  margin:10px 5px;
}

.collection-image {
  width: 100%;
  aspect-ratio: 8 / 5;
  background: #151515;
  overflow: hidden;
}

.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.collection-content {
  flex: 1;
  padding: 28px 28px 30px;
  display: flex;
  flex-direction: column;
}

.collection-kicker {
  margin: 0 0 16px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.collection-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  color: #fff;
}

.collection-card p {
  margin: 0;
  max-width: 320px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.68);
}

.collection-card span {
  margin-top: auto;
  padding-top: 38px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.collection-card:hover {
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-2px);
  transition: all 0.25s ease;
}

.collection-card:hover img {
  transform: scale(1.03);
  transition: transform 0.4s ease;
}

@media (max-width: 1000px) {
  .collection-grid {
    grid-template-columns: 1fr;
  }

  .collection-strip {
    padding: 70px 22px 80px;
  }

  .collection-card {
    min-height: auto;
  }

  .collection-image {
    aspect-ratio: 16 / 10;
  }
}

/* PRODUCT PAGE STYLING ///////////////*/
.product-page {
  background: #050606;
  color: #fff;

}
.product-kicker {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
}
.product-callout {
    margin: 2rem 0;
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 500;
    line-height: 1.5;
    color: #ffffff;
}
.product-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 100px;
  align-items: center;
}

.product-media {
  width: 100%;
}

.product-info {
  padding-top: 18px;
  max-width: 520px;
}
.product-details p::before {
    content: "— ";
    color: rgba(255,255,255,.35);
}

@media (max-width: 900px) {
  .product-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-info {
    max-width: none;
  }
}
/*==========Product Story======*/
.product-story {
  width: 100%;
    background:#050505;
    color:#f3f3f3;
    padding-top: 0 !important;
}

.story-full {
  position: relative;
  width: 100%;
  min-height: 720px;
  overflow: hidden;
}

.story-full img,
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Full-width cinematic sections */
.story-full img {
  position: absolute;
  inset: 0;
}

.story-overlay {
  position: relative;
  z-index: 2;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 8vw;
  color: #fff;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.55),
    rgba(0,0,0,.05)
  );
}

.story-overlay h2,
.story-center-text h2 {
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.04em;
  margin: 0 0 14px;
}

.story-overlay p {
  font-size: 18px;
  letter-spacing: 0.05em;
  margin: 0;
  text-shadow: 0 1px 3px rgba(0,0,0,.35);
}

/* Alternating editorial rows */
.story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}

.story-row.reverse .story-image {
  order: 2;
}

.story-row.reverse .story-copy {
  order: 1;
}

.story-image {
  min-height: 680px;
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vw;
  max-width: 640px;
}

.story-copy span {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: #777;
}

.story-copy h2 {
  font-size: clamp(38px, 5vw, 76px);
  font-weight: 400;
  letter-spacing: -0.05em;
  margin: 0 0 28px;
}

.story-copy p {
  font-size: 18px;
  line-height: 1.7;
  color:#b7b7b7;
  margin: 0;
}

/* Minimal statement section */
.story-full.minimal {
  min-height: 540px;
}
.story-full.minimal img {
  filter: brightness(.45);
}
.story-intro img {
  filter: brightness(.75);
}
.story-center-text {
  position: relative;
  z-index: 2;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 8vw;
  color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
  .story-row,
  .story-row.reverse {
    grid-template-columns: 1fr;
  }

  .story-row.reverse .story-image,
  .story-row.reverse .story-copy {
    order: initial;
  }

  .story-image,
  .story-row {
    min-height: auto;
  }

  .story-image {
    height: 430px;
  }

  .story-copy {
    padding: 70px 28px;
  }

  .story-full,
  .story-overlay {
    min-height: 720px;
  }

  .story-overlay {
    padding: 60px 28px;
  }
}

/*.............HOME PAGE APPROACH BLOCK............*/
.home-approach-teaser {
  background: #080808;
  color: #fff;
  padding: 110px 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.home-approach-inner {
  width: min(100% - 48px, 980px);
  margin: 0 auto;
}

.home-approach-kicker {
    display: inline-block;
    font-size: 11px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);;
    margin-bottom: 28px;
}

.home-approach-teaser h2 {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.045em;
  margin: 0 0 32px;
}

.home-approach-teaser p {
  max-width: 680px;
  font-size: 20px;
  line-height: 1.55;
  margin: 0 0 36px;
}

.home-approach-link {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding-top: 15px;
}

.home-approach-link:hover {
  opacity: .7;
}
.home-approach-principles{
    display:flex;
    gap:24px;
    flex-wrap:wrap;
    margin:42px 0 52px;
}

.home-approach-principles span{
    font-size:15px;
    opacity:.55;
}