/*
  Prototype CSS (v2) — Premium minimal layout aligned to new homepage structure
*/

/* -------------------------
   Base tokens
-------------------------- */
:root{
  --color-primary: #000;
  --color-background: #fff;
  --color-accent: #ff6b6b;

  --text: #0b1220;
  --muted-text: #475569;

  --border: #e5e7eb;
  --card: #f8fafc;
  --card-2: #ffffff;

  --shadow-1: 0 1px 2px rgba(0,0,0,0.04), 0 10px 24px rgba(0,0,0,0.08);
  --shadow-2: 0 4px 8px rgba(0,0,0,0.08), 0 18px 40px rgba(0,0,0,0.12);

  --radius: 18px;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

/* -------------------------
   Reset + base typography
-------------------------- */
*{ box-sizing: border-box; margin: 0; padding: 0; }

html{ scroll-behavior: smooth; }

/* GUARDRAIL: prevent “mystery left shift” from width math / scrollbars */
html, body{
  width: 100%;
  max-width: 100%;
}

body{
  font-family: var(--font-body) !important;
  color: var(--text);
  background: var(--color-background);
  line-height: 1.6;

  /* GUARDRAIL: if something overflows, it won't visually drag the canvas */
  overflow-x: clip; /* better than hidden for modern browsers */
}

a{
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
a:hover{ opacity: 0.82; }

a:focus-visible,
button:focus-visible{
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
}

/* Headings */
h1,h2,h3{
  font-family: var(--font-heading);
  line-height: 1.15;
  letter-spacing: -0.25px;
}
h2{
  font-size: 28px;
  margin-bottom: 10px;
}
h3{
  font-size: 16px;
  margin-bottom: 8px;
}

/* Utility */
.muted{ color: var(--muted-text); }

/* -------------------------
   Layout containers
-------------------------- */
.site-content{
  width: 100%;
  max-width: 100%;
  display: block;
}

/* sections */
.section{
  padding: 40px 0;
}

.section-alt{
  background: var(--card);
}

/* GUARDRAIL: container pattern (forces centering even if other CSS leaks in) */
.section-head,
.hero-grid,
.tiles-4,
.impact-cards,
.services-acc-grid,
.reading-grid,
.cta-box,
.site-header-inner{
  width: 100%;
  max-width: 1120px;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* section heading container */
.section-head{
  max-width: 1120px;
  margin: 0 auto 24px auto;  /* ↓ from 18px */
  padding: 0 20px;
}


.section-subhead{
  max-width: 860px;
  margin-top: 6px;
  color: var(--muted-text);
}

/* Trust section */
.trust-section{
  padding-top: 32px;
  padding-bottom: 48px;
}

.trust-copy,
.trust-logos{
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.trust-copy{
  margin-top: 8px;
}

.trust-box{
  margin: 0;
  padding: 18px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-1);
  color: var(--body-text);
  line-height: 1.6;
}

.trust-logos{
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  align-items: center;
  justify-items: center;
  gap: 24px;
}

.trust-logos img{
  height: 56px;
  width: 100%;
  max-width: 200px;
  object-fit: contain;
}

@media (max-width: 720px){
  .trust-logos{
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }
}

/* -------------------------
   Header (new)
-------------------------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.site-header-inner{
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  /* GUARDRAIL: ensures absolute dropdown nav positions relative to header */
  position: relative;
}

.brand .logo-image{
  height: 34px;
  width: auto;
  display: block;
}

.site-nav{
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a{
  font-weight: 600;
  opacity: 0.92;
  position: relative;
}

.site-nav a:hover{
  opacity: 1;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

/* Hamburger */
.menu-toggle{
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 100;
}
.hamburger{
  display: block;
  width: 25px;
  height: 3px;
  background: var(--color-primary);
  position: relative;
  transition: all 0.3s ease-in-out;
}
.hamburger::before,
.hamburger::after{
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background: var(--color-primary);
  transition: all 0.3s ease-in-out;
}
.hamburger::before{ transform: translateY(-8px); }
.hamburger::after{ transform: translateY(8px); }

/* -------------------------
   CTA button
-------------------------- */
.cta-button{
  display: inline-block;
  background-color: var(--color-primary);
  background-image: linear-gradient(120deg, #000 0%, #333 100%);
  color: var(--color-background) !important;
  padding: 12px 30px;
  border-radius: 10px;
  margin-top: 0;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}
.cta-button:hover,
.cta-button:focus-visible{
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.22);
  opacity: 1;
}
.cta-button.small-btn{
  padding: 8px 14px;
}

/* -------------------------
   Hero
-------------------------- */
.hero{
  padding-top: 54px;
}

.hero-grid{
  padding: 0 20px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 42px;
  align-items: center;
}

.hero-photo{
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-1);
  overflow: hidden;
}
.hero-photo img{
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 981px){
  .hero-photo img{
    max-height: 420px;
  }
}

.eyebrow{
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--muted-text);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hero-title{
  font-size: 32px;
  line-height: 1.12;
  font-weight: 800;
  margin: 0 0 12px 0;
}
.hero-subtitle{
  display: block;
  font-size: 21px;
  font-weight: 600;
  opacity: 0.75;
  margin-top: 8px;
  letter-spacing: -0.15px;
}

.hero-one-liner{
  max-width: 720px;
  color: var(--muted-text);
  line-height: 1.65;
  font-size: 16px;
}

.hero-actions{ margin-top: 18px; }

.hero-personal{
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted-text);
}

.social-icons{ margin-top: 14px; }
.social-icons a{
  font-size: 1.3rem;
  margin-right: 14px;
  display: inline-block;
}

.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* -------------------------
   LinkedIn ticker
-------------------------- */
.ticker{
  padding: 0 0 18px;
}
.ticker-inner{
  background: linear-gradient(90deg, rgba(10,102,194,0.06), rgba(248,250,252,0.9));
  border: 1px solid rgba(10,102,194,0.2);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow-1);
  overflow: hidden;
}
.ticker-track{
  display: flex;
  gap: 18px;
  padding: 14px 18px;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
}
.ticker-item{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted-text);
  white-space: nowrap;
}
.ticker-source{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(10,102,194,0.12);
  color: #0a66c2;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.ticker-heading{
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card-2);
  color: var(--text);
  box-shadow: 0 1px 1px rgba(15,23,42,0.04);
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.ticker-heading:hover{
  border-color: rgba(10,102,194,0.4);
  box-shadow: 0 4px 10px rgba(10,102,194,0.12);
  transform: translateY(-1px);
}
.ticker-heading:focus-visible{
  outline: 3px solid rgba(10,102,194,0.4);
  outline-offset: 2px;
}
.ticker-track:hover{
  animation-play-state: paused;
}

@keyframes ticker-scroll{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce){
  .ticker-track{
    animation: none;
    flex-wrap: wrap;
    width: 100%;
  }
  .ticker-item{
    white-space: normal;
  }
  .ticker-heading{
    white-space: normal;
    max-width: 100%;
  }
}

@media (max-width: 640px){
  .ticker-track{
    gap: 12px;
    padding: 12px 14px;
  }
  .ticker-item{
    flex-wrap: wrap;
    white-space: normal;
  }
  .ticker-source{
    font-size: 11px;
    padding: 5px 8px;
  }
  .ticker-heading{
    white-space: normal;
    max-width: 100%;
    border-radius: 16px;
    padding: 8px 12px;
  }
}

/* -------------------------
   Principles tiles
-------------------------- */

.tiles-4,
.impact-cards,
.services-acc-grid,
.reading-grid{
  margin: 10px auto 0;  /* ↓ from 18px */
}

.tiles-4{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.tile{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.tile:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}
.tile h3{
  font-size: 15px;
  margin: 0 0 8px 0;
}
.tile p{
  font-size: 14px;
  color: var(--muted-text);
  line-height: 1.55;
}

/* -------------------------
   Impact cards
-------------------------- */

.impact-cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.impact-card{
  background: var(--card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.impact-card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}
.impact-card h3{
  font-size: 15px;
  line-height: 1.35;
  margin: 0 0 10px 0;
}
.impact-card p{ font-size: 14px; }

/* -------------------------
   Services accordion grid
-------------------------- */

.services-acc-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.acc-card{
  background: var(--card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.acc-card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
  border-color: #d1d5db;
}

/* Remove default marker */
.acc-card summary{ list-style: none; }
.acc-card summary::-webkit-details-marker{ display: none; }

.acc-summary{
  cursor: pointer;
  padding: 20px 20px 16px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.acc-title h3{
  margin: 0 0 8px 0;
  font-size: 16px;
  letter-spacing: -0.15px;
}
.acc-title p{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted-text);
  max-width: 620px;
}

.acc-chevron{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition: transform 200ms ease, background 200ms ease;
  margin-top: 2px;
}
.acc-chevron svg{
  width: 22px;
  height: 22px;
  opacity: 0.9;
}
.acc-card[open] .acc-chevron{
  transform: rotate(180deg);
  background: #f3f4f6;
}

.acc-body{ padding: 0 20px 20px 20px; }
.acc-divider{
  height: 1px;
  background: var(--border);
  margin: 10px 0 16px 0;
}

.acc-meta{ display: grid; gap: 14px; }
.acc-row{
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: flex-start;
}

.acc-icon{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  margin-top: 2px;
  border: 1px solid #d1d5db;
  background: #fff;
}

.acc-label{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--muted-text);
  margin-bottom: 6px;
}

.acc-text,
.acc-list li{
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
  opacity: 0.9;
}

.acc-list{ margin: 0; padding-left: 18px; }
.acc-list li{ margin-bottom: 6px; }

/* -------------------------
   Reading cards
-------------------------- */

.reading-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.reading-card{
  display: block;
  background: var(--card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-1);
  color: var(--text);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.reading-card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}

.reading-meta{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--muted-text);
  margin-bottom: 10px;
}
.reading-card h3{
  margin: 0 0 10px 0;
  font-size: 15px;
  line-height: 1.35;
}
.reading-link{
  display: inline-block;
  margin-top: 10px;
  font-weight: 800;
}

/* -------------------------
   CTA section
-------------------------- */
.cta{
  padding-top: 60px;
  padding-bottom: 90px;
}
.cta-box{
  padding: 26px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-1);
}
.cta-box h2{ margin: 0 0 10px 0; }
.cta-box p{
  max-width: 860px;
  margin: 0 0 16px 0;
  color: var(--muted-text);
}

/* -------------------------
   Footer
-------------------------- */
.tj-footer-area{
  padding: 30px 20px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.footer-nav a{
  margin: 0 10px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.copyright{
  margin-top: 15px;
  font-size: 0.8rem;
  opacity: 0.7;
}

/* -------------------------
   Back to top
-------------------------- */
.back-to-top{
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--color-primary);
  color: var(--color-background);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  box-shadow: var(--shadow-1);
  z-index: 1000;
}
.back-to-top.is-visible{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover{
  transform: translateY(-2px);
}

/* -------------------------
   Lightbox
-------------------------- */
body.lightbox-open{ overflow: hidden; }

.portfolio-lightbox{
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.75);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9999;
  padding: 24px;
}
.portfolio-lightbox.is-open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.portfolio-lightbox-image{
  max-width: min(960px, 90vw);
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  background: #fff;
  object-fit: contain;
}
.portfolio-lightbox-close{
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  color: #111;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-lightbox-close:hover{ background: #fff; }

/* -------------------------
   Responsive
-------------------------- */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; gap: 20px; }
  .tiles-4{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .impact-cards{ grid-template-columns: 1fr; }
  .services-acc-grid{ grid-template-columns: 1fr; gap: 16px; }
  .reading-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 992px){
  .menu-toggle{ display: block; }

  .site-nav{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--color-background);
    border-top: 1px solid var(--border);
    box-shadow: 0 10px 24px rgba(0,0,0,0.10);
    flex-direction: column;
    padding: 14px 0;
    text-align: center;
    z-index: 1001;
  }
  .site-nav.active{ display: flex; }
  .site-nav a{ padding: 10px 0; }
}

@media (max-width: 560px){
  .section + .section{
    padding-top: 20px;
  }
}


  .hero-title{ font-size: 26px; }
  .hero-subtitle{ font-size: 18px; }
  .tiles-4{ grid-template-columns: 1fr; }
  .back-to-top{ right: 16px; bottom: 16px; }
}


@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *,*::before,*::after{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Featured thinking CTA alignment */
.reading-actions{
  max-width: 1120px;
  margin: 16px auto 0;
  padding: 0 20px;
  display: flex;
  justify-content: center; /* premium look */
}

/* -------------------------
   Contact section (premium)
-------------------------- */

.contact{
  padding: 40px 0 52px;
}

/* Header */
.contact-header{
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
  padding: 0 20px;
}

.contact-eyebrow{
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.contact-header h2{
  font-size: 42px;
  margin-bottom: 12px;
}

.contact-header p{
  font-size: 17px;
  color: var(--muted-text);
}

/* Grid */
.contact-grid{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

/* Left column */
.contact-info h3{
  margin-bottom: 20px;
}

.contact-card{
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--card-2);
  margin-bottom: 16px;
}

.contact-card small{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted-text);
}

.contact-card p{
  margin: 2px 0 0;
  font-weight: 600;
}

.contact-icon{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff4ea;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Note */
.contact-note{
  margin-top: 24px;
  padding: 20px;
  border-radius: 14px;
  background: #fff9f2;
  border: 1px solid #fde6cf;
  font-size: 15px;
  color: #6b4e2e;
  line-height: 1.6;
}

/* Right column: form */
.contact-form-card{
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow-1);
}

.form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field{
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-field label{
  font-weight: 600;
  font-size: 14px;
}

.form-field input,
.form-field textarea{
  padding: 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 15px;
}

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

/* Submit button */
.contact-submit{
  width: 100%;
  margin-top: 10px;
  padding: 16px;
  border-radius: 12px;
  border: none;

  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.3px;

  background-color: var(--color-primary);
  background-image: linear-gradient(120deg, #000 0%, #333 100%);
  color: var(--color-background);

  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.contact-submit:hover,
.contact-submit:focus-visible{
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.22);
  opacity: 1;
}

/* Mobile */
@media (max-width: 900px){
  .contact-grid{
    grid-template-columns: 1fr;
  }
  .form-row{
    grid-template-columns: 1fr;
  }
  .contact-header h2{
    font-size: 34px;
  }
}

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

@media (max-width: 980px){
  .hero-photo{
    max-width: 280px;
    margin: 0 auto;
  }
}

@media (max-width: 560px){
  .hero-photo{
    max-width: 240px;
  }
}
@media (max-width: 560px){
  .hero{
    padding-top: 36px;
  }
}

/* LinkedIn icon */
.contact-icon.linkedin{
  background: #0a66c2;
  color: #fff;
}

/* LinkedIn link behaviour */
.linkedin-link{
  color: #0a66c2;
  font-weight: 600;
}

.linkedin-link:hover{
  text-decoration: underline;
}
/* Email icon – match site CTA */
.contact-icon.email i{
  background: #fff4ea;
  color: #fff;
  font-size: 18px;
}


/* Email link */
.email-link{
  color: var(--text);
  font-weight: 600;
}

.email-link:hover{
  text-decoration: underline;
}

.contact-label{
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--muted-text);
  margin-bottom: 4px;
}

.section + .section{
  padding-top: 28px;   /* overrides default 48px when stacked */
}
