/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* END RESET

font-family: 'IBM Plex Sans', sans-serif;
font-family: 'Abril Fatface', cursive;

*/


/**********************
BORDER BOX
***********************/
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  background-color: white;
  font-size: 16px;
}

/**********************
GRID 12 col
***********************/

.center {
  margin: 0 auto;
  text-align: center;
  float: none;
}
.center p {
  text-align: left;
}
.center-text {
  margin: 0 auto;
  text-align: center;
  float: none;
}
.middle {
  margin: 0 auto;
  text-align: center;
}
.right {
  float: right;
}
.left {
  text-align: left;
}
/**********************
Typography Base Style
***********************/

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
a {
  font-family: "IBM Plex Sans", sans-serif;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "IBM Plex Sans", sans-serif;
}

.list-item {
  text-align: left;
  list-style-type: circle;
  list-style-position: inside;
  text-indent: 20px;
}

.container-fluid {
  padding-right: 40px !important;
  padding-left: 40px !important;
}

.display-4 {
  font-size: 2rem !important;
}

.projects-push-down {
  margin-top: 100px;
  margin-bottom: 50px;
}

/**********************
Links
***********************/

.links ul li a {
  color: #058a8e;
}

.links ul li a:hover {
  color: #058a8e;
  font-weight: bold;
  text-decoration: underline;
}

.links ul li {
  padding-top: 5px;
}

.links ul:first-child {
  padding-top: 20px;
}

/**********************
SCROLL
***********************/
#scroll-section {
  display: none;
}

#scroll-section::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 80%;
}

.scroll a {
  position: absolute;
  bottom: -50px;
  left: 50%;
  margin-left: -25px;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #343a40;
  font: "IBM Plex Sans", sans-serif;
  text-decoration: none;
  transition: 0.3s;
}

#scroll-section a {
  background: #ffffff73;
  padding: 40px 7px 20px 7px;
  border-radius: 20px 20px 0px 0px;
}
#scroll-section a span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 15px;
  height: 15px;
  margin-left: -9px;
  border-left: 2px solid #343a40;
  border-bottom: 2px solid #343a40;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: scroll 1.5s infinite;
  animation: scroll 1.5s infinite;
  box-sizing: border-box;
}
#scrolldown:hover a {
  color: #568056;
  text-decoration: none;
}
#scrolldown:hover a span {
  border-left: 2px solid #568056;
  border-bottom: 2px solid #058a8e;
}

.white {
  color: white;
  border-color: white;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
  }
  20% {
    -webkit-transform: rotate(-45deg) translate(-5px, 5px);
  }
  40% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
  }
}
@keyframes scroll {
  0% {
    transform: rotate(-45deg) translate(0, 0);
  }
  20% {
    transform: rotate(-45deg) translate(-5px, 5px);
  }
  40% {
    transform: rotate(-45deg) translate(0, 0);
  }
}

/**********************
NEXT / Last
***********************/
.previous {
  color: black;
  position: fixed;
  bottom: 40px;
  left: -33px;
  transform: rotate(270deg);
  background: rgba(255, 255, 255, 0.5);
  padding: 5px 15px 7px 20px;
  border-radius: 0px 20px 20px 0px;
  z-index: 4;
}
.previous:hover {
  color: #568056;
  text-decoration: none;
}
.next {
  color: black;
  position: fixed;
  bottom: 75px;
  right: -113px;
  transform: rotate(90deg);
  transform-origin: left top 0;
  background: rgba(255, 255, 255, 0.5);
  padding: 5px 20px 7px 15px;
  margin-bottom: 10px;
  border-radius: 20px 0px 0px 20px;
  z-index: 4;
}
.next:hover {
  color: #568056;
  text-decoration: none;
}

/**********************
Professional Hero Introduction
***********************/
.hero-intro {
  padding: 180px 40px 0;
  position: relative;
  min-height: min(calc(100vw * 0.5615), 85vh);
}

.hero-bg-photo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  bottom: 0;
  background: url('images/homepage/research.png') center top / cover no-repeat;
  z-index: 0;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.82) 0%,
    rgba(255, 255, 255, 0.82) 60%,
    rgba(255, 255, 255, 1) 100%
  );
  z-index: 0;
}

.project-grid-overlap {
  position: relative;
  z-index: 2;
  margin-top: calc(75vh - min(100vw * 0.5615, 85vh));
}

.hero-stats-bar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 80px;
  border-top: 1px solid #e0e0e0;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
  padding: 36px 40px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.hero-stat-number {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.8rem;
  color: #888;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: #e0e0e0;
  flex-shrink: 0;
}

.hero-statement {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #4a4a4a;
  margin: 16px 0 0;
  max-width: 600px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeIn 0.6s ease 1s forwards;
}

@media (min-width: 992px) {
  .hero-statement {
    font-size: 1.35rem;
    line-height: 1.9;
  }
}

.hero-content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-text {
  animation: fadeInUp 0.8s ease forwards;
  text-align: left;
}

.hero-intro-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #568056, #058a8e);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeIn 0.6s ease 0.2s forwards;
}

.hero-name {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 15px 0;
  color: #1a1a1a;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-role {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #568056;
  margin: 0 0 20px 0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 0.6s ease 0.6s forwards;
}

.hero-description {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #666;
  line-height: 1.8;
  margin: 0;
  max-width: 600px;
  opacity: 0;
  animation: fadeIn 0.6s ease 0.8s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

/**********************
HomePage Project Photos On Hover
***********************/
.row {
  margin: 0px !important;
}

.row > [class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 30px;
}

.grid-item {
  font-size: 30px;
  text-align: center;
  padding: 0;
}

/* Fade-in animation for scroll */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.project-img {
  font-family: "IBM Plex Sans", sans-serif;
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  color: white;
  font-size: 1.1em;
  padding: 0;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  aspect-ratio: 4 / 3;
}

.project-img * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.project-img:before {
  position: absolute;
  top: auto;
  left: 0px;
  right: 0px;
  bottom: 0;
  height: 0;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.85) 100%
  );
  transition: height 0.4s ease;
  z-index: 1;
  border-radius: 0 0 12px 12px;
  opacity: 0;
}

.project-img img {
  vertical-align: top;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  backface-visibility: hidden;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
  transform: scale(1.1);
}

.project-img figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  pointer-events: none;
}

.project-img figcaption h5,
.project-img figcaption h6 {
  pointer-events: auto;
  cursor: pointer;
}

.project-img h5,
.project-img h6 {
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-img h5 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.3;
  font-family: "IBM Plex Sans", sans-serif;
}

.project-img h6 {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  font-family: "IBM Plex Sans", sans-serif;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-tag {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.project-img a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
}

.project-img a:hover {
  border-bottom: 0px;
}

.project-img:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.project-img:hover img {
  transform: scale(1.15);
}

.project-img:hover:before,
.project-img.hover:before {
  height: 50%;
  opacity: 1;
  transition: height 0.4s ease, opacity 0.3s ease;
  z-index: 1;
}

.project-img:hover h5,
.project-img.hover h5,
.project-img:hover h6,
.project-img.hover h6 {
  transform: translateY(0);
  opacity: 1;
}

.project-img:hover h5,
.project-img.hover h5 {
  transition-delay: 0.1s;
}

.project-img:hover h6,
.project-img.hover h6 {
  transition-delay: 0.15s;
}

.insta-post-mt {
  position: relative;
  top: 100px;
}

.viewer {
  width: 100%;
  height: 100%;
}


/****************
PROJECT PAGES - Professional Template
*****************/

/* Project Page Base */
.project-page {
  font-size: 16px;
  line-height: 1.7;
}

/* Project Header */
.project-header {
  text-align: center;
  padding: 40px 20px 60px;
  max-width: 900px;
  margin: 0 auto;
}

.project-title {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 15px 0;
  letter-spacing: -0.01em;
}

.project-company {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #568056;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 25px 0;
}

.project-company a {
  color: #1a1a1a;
  text-decoration: underline;
  text-decoration-color: #ccc;
  text-underline-offset: 3px;
  transition: all 0.3s ease;
}

.project-company a:hover {
  color: #568056;
  text-decoration-color: #568056;
}

.project-intro {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #666;
  line-height: 1.8;
  margin: 0;
}

/* Info Cards Grid */
.info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 60px;
}

@media (min-width: 1400px) {
  .info-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Variant for pages with only 3 info cards, so they don't leave an empty slot */
.info-cards-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.info-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.info-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.info-card h4 {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #999;
  margin: 0 0 15px 0;
}

/* Same eyebrow style as the info-card labels (My Role, Timeline, etc.), for use outside a card.
   Scoped with a parent class so it beats .section-content p's font-size/color. */
.section-content .eyebrow-label {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #999;
  text-align: center;
  margin: 40px 0 8px 0;
}

.info-card p {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 5px 0;
  line-height: 1.4;
}

.tool-icon-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
}

.tool-icon-row img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Design Toolkit — a full row of larger tool icons with labels beneath */
.toolkit-title {
  text-align: center;
}

.toolkit-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 10px;
}

.toolkit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.toolkit-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  margin-bottom: 16px;
}

.toolkit-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  /* icons are single-color black SVGs; invert to white so they read on a colored tile */
  filter: brightness(0) invert(1);
}

.toolkit-item h5 {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px 0;
}

.toolkit-item p {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 0.85rem;
  color: #777;
  margin: 0;
}

@media (max-width: 900px) {
  .toolkit-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
  }
}

@media (max-width: 480px) {
  .toolkit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.info-card .info-detail {
  font-size: 0.9rem;
  font-weight: 400;
  color: #666;
  margin: 0;
}

/* Section Content */
.section-content {
  margin-bottom: 40px;
}

.section-content h3 {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 25px 0;
  letter-spacing: -0.01em;
}

.section-content p {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

.section-content a {
  color: #1a1a1a;
  text-decoration: underline;
  text-decoration-color: #ccc;
  text-underline-offset: 3px;
  transition: all 0.3s ease;
}

.section-content a:hover {
  color: #568056;
  text-decoration-color: #568056;
}

/* Callout Box */
.callout-box {
  background: #f8f9fa;
  border-left: 5px solid #568056;
  padding: 30px;
  border-radius: 0 8px 8px 0;
  margin: 30px 0;
}

.callout-box h5 {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 15px 0;
}

.callout-box p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

.callout-box a {
  color: #1a1a1a;
  text-decoration: underline;
  text-decoration-color: #ccc;
  text-underline-offset: 3px;
  transition: all 0.3s ease;
}

.callout-box a:hover {
  color: #568056;
  text-decoration-color: #568056;
}

.callout-box ul,
.leadership-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.callout-box ul li,
.leadership-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.callout-box ul li:last-child,
.leadership-list li:last-child {
  margin-bottom: 0;
}

.callout-box ul li:before,
.leadership-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #568056;
  font-weight: 700;
  font-size: 1.1rem;
}

/* Stat Highlight */
.stat-highlight {
  background: #f8f9fa;
  border-left: 5px solid #568056;
  padding: 40px;
  border-radius: 0 8px 8px 0;
  margin: 30px 0;
  display: flex;
  align-items: center;
  gap: 40px;
}

.stat-number {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: #568056;
  line-height: 1;
  flex-shrink: 0;
}

.stat-label {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.5;
}

/* Two Column Callout */
.two-column-callout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.callout-item {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 0 0 8px 8px;
  border-top: 5px solid #568056;
}

.callout-item h5 {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 15px 0;
}

.callout-item p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 12px;
}

.callout-item a {
  color: #1a1a1a;
  text-decoration: underline;
  text-decoration-color: #ccc;
  text-underline-offset: 3px;
  transition: all 0.3s ease;
}

.callout-item a:hover {
  color: #568056;
  text-decoration-color: #568056;
}

/* Four cards in a row, e.g. RVA's Overview responsibilities */
.overview-callout-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.overview-callout-grid .callout-item,
.motional-page .overview-callout-grid .callout-item {
  padding: 20px;
  border-top: none;
}

.overview-callout-grid .callout-item h5 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.overview-callout-grid .callout-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .overview-callout-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .overview-callout-grid {
    grid-template-columns: 1fr;
  }
}

.achievement {
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  font-size: 0.9rem;
}

/* Process Grid */

/* Responsive Adjustments */
@media (max-width: 768px) {
  .project-title {
    font-size: 2rem;
  }
  
  .project-company {
    font-size: 1rem;
  }
  
  .project-intro {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .info-cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .section-content h3 {
    font-size: 1.6rem;
  }
  
  .section-content p {
    font-size: 1rem;
  }
  
  .callout-box {
    padding: 20px;
  }
  
  .stat-highlight {
    flex-direction: column;
    text-align: center;
    padding: 30px;
    gap: 20px;
  }

  .stat-number {
    font-size: 3.5rem;
  }
  
  .two-column-callout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .process-number {
    font-size: 2rem;
  }
}

/* Motional Brand Color Overrides */
.motional-page .hero-intro-line {
  background: linear-gradient(90deg, #5B49F3, #058a8e);
}

.motional-page .hero-role {
  color: #5B49F3;
}

.motional-page .info-card h4 {
  color: #999;
}

.motional-page .project-company {
  color: #5B49F3;
}

.motional-page .project-company a {
  color: #1a1a1a;
  text-decoration: underline;
  text-decoration-color: #ccc;
  text-underline-offset: 3px;
  transition: all 0.3s ease;
}

.motional-page .project-company a:hover {
  color: #5B49F3;
  text-decoration-color: #5B49F3;
}

.motional-page .callout-box {
  border-left: 5px solid #5B49F3;
}

.motional-page .callout-box ul li:before,
.motional-page .leadership-list li:before {
  color: #5B49F3;
}

.motional-page .stat-highlight {
  border-left: 5px solid #5B49F3;
}

.motional-page .stat-number {
  color: #5B49F3;
}

.motional-page .callout-item {
  border-top: 5px solid #5B49F3;
}

/* RVA page: no purple top border on any callout cards */
.rva-page .callout-item {
  border-top: none;
}

/* RVA page: no purple side border on the other card styles either */
.rva-page .callout-box,
.rva-page .stat-highlight {
  border-left: none;
}

/* RVA page: plain bullets instead of checkmarks */
.rva-page .callout-box ul li:before,
.rva-page .leadership-list li:before {
  content: none;
}

.rva-page .callout-box ul,
.rva-page .leadership-list {
  list-style: disc;
  padding-left: 20px;
}

.rva-page .callout-box ul li,
.rva-page .leadership-list li {
  padding-left: 6px;
}

/* RVA page: no purple first-letter accent on achievement lines */
.motional-page.rva-page .achievement::first-letter {
  color: inherit;
}

.motional-page .achievement {
  color: #1a1a1a;
  position: relative;
}

.motional-page .achievement::first-letter {
  color: #5B49F3;
}

.motional-page .method-tag i {
  color: #1a1a1a;
}

.motional-page .links-section a:hover {
  color: #5B49F3;
  text-decoration-color: #5B49F3;
}

.motional-page .section-content a:hover {
  color: #5B49F3;
  text-decoration-color: #5B49F3;
}

.motional-page .callout-box a:hover {
  color: #5B49F3;
  text-decoration-color: #5B49F3;
}

.motional-page .callout-item a:hover {
  color: #5B49F3;
  text-decoration-color: #5B49F3;
}

/* Project Details Section */
.project-details {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 50px 40px;
  margin-top: 60px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.details-column {
  width: 100%;
}

.details-column h4 {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1a1a1a;
  margin: 0 0 25px 0;
}

/* Detail Items (label-value pairs) */
.detail-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-label {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.detail-value {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  text-align: right;
}

/* Skills Tags in Details */
.skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.method-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(86, 128, 86, 0.08);
  border: 1px solid rgba(86, 128, 86, 0.2);
  border-radius: 8px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1a1a1a;
  transition: all 0.25s ease;
}

.method-tag:hover {
  background: rgba(86, 128, 86, 0.12);
  border-color: rgba(86, 128, 86, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(86, 128, 86, 0.15);
}

.method-tag img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.method-tag i {
  width: 18px;
  height: 18px;
  font-size: 16px;
  color: #1a1a1a;
  flex-shrink: 0;
  margin-right: 0 !important;
}

/* Responsive */
@media (max-width: 768px) {
  .project-details {
    padding: 30px 25px;
  }
  
  .details-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .detail-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  
  .detail-value {
    text-align: left;
  }
  
  .skills-tags {
    gap: 8px;
  }
  
  .method-tag {
    font-size: 0.85rem;
    padding: 6px 12px;
  }
}

/* Project Closing */
.project-closing {
  margin-top: 60px;
  padding: 40px;
  background: #f8f9fa;
  border-radius: 12px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.project-closing h3 {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 20px 0;
}

.project-closing p {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

.links-section {
  text-align: left;
  width: 100%;
}

.links-section h5 {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 15px 0;
}

.links-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
  text-align: left;
}

.links-section li {
  margin-bottom: 10px;
}

.links-section a {
  color: #1a1a1a;
  text-decoration: underline;
  text-decoration-color: #ccc;
  text-underline-offset: 3px;
  transition: all 0.3s ease;
  font-weight: 400;
}

.links-section a:hover {
  color: #568056;
  text-decoration-color: #568056;
}

/****************
PROJECT pages
*****************/

.outline {
  border-top: .5px solid black; 
}

.outline2 {
  border-top: .5px solid black; 
  border-right: .5px solid black; 
}

.outline3 {
  border: .5px solid black; 
}

.fullscreen-vid {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.fullscreen-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

img {
  width: 100%;
}

section img {
  margin-bottom: 6%;
}

section img:last-child {
  margin-bottom: 0;
}

.box-shadow {
  -webkit-box-shadow: 4px 4px 12px -2px rgba(30, 30, 30, 0.2);
  -moz-box-shadow: 4px 4px 12px -2px rgba(30, 30, 30, 0.2);
  box-shadow: 4px 4px 12px -2px rgba(30, 30, 30, 0.2);
  border-radius: 12px;
  overflow: hidden;
}
.box-shadow2 {
  -webkit-box-shadow: 1px 1px 12px 2px rgba(30, 30, 30, 0.1);
  -moz-box-shadow: 1px 1px 12px 2px rgba(30, 30, 30, 0.1);
  box-shadow: 1px 1px 12px 2px rgba(30, 30, 30, 0.1);
}

.light-blue-bkg {
  background: #4a64a50a;
}

.project_images {
  max-width: 100%;
  margin-bottom: 10%;
}

iframe {
  padding-top: 3%;
  max-width: 100%;
  max-height: 100%;
}

.hidden {
  display: none;
}

.feedImgPadding {
  padding-bottom: 30px;
}

.imageJumpFix {
  margin-bottom: -10px;
}

/****************
about page - EDITORIAL STYLE WITH GREEN BLOBS
*****************/

.about-page-wrapper {
  background: #ffffff;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 60px,
    rgba(200, 200, 200, 0.03) 60px,
    rgba(200, 200, 200, 0.03) 66px
  );
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Organic growth shapes animation - KEEP THESE */
@keyframes organic-move {
  0%, 100% { 
    transform: translate(0, 0) rotate(0deg);
    border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
  }
  33% { 
    transform: translate(30px, -40px) rotate(120deg);
    border-radius: 50% 40% 60% 50% / 40% 50% 50% 60%;
  }
  66% { 
    transform: translate(-20px, 30px) rotate(240deg);
    border-radius: 40% 60% 50% 50% / 55% 40% 60% 45%;
  }
}

/* Hero Section - Editorial Style */
.about-hero-section {
  padding: 120px 0 80px;
  position: relative;
  border-bottom: 1px solid #e8e8e8;
  overflow: hidden;
  z-index: 1;
}

/* Green blob elements - KEEP */
.about-hero-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: #6b7d47;
  border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
  opacity: 0.08;
  animation: organic-move 25s ease-in-out infinite;
  z-index: 1;
}

.about-hero-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: #8b9a6b;
  border-radius: 50% 40% 60% 50% / 40% 50% 50% 60%;
  opacity: 0.06;
  animation: organic-move 20s ease-in-out infinite reverse;
  z-index: 1;
}

.about-hero-content-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 50px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 2;
  width: 100%;
  box-sizing: border-box;
}

.about-highlights-grid,
.about-timeline-section > div,
.section-header-new,
.work-card-new,
.community-cards-grid,
.learning-card,
.interests-content,
.future-content-placeholder,
.contact-card {
  position: relative;
  z-index: 2;
}

/* Fix for 900px breakpoint where content hits edges */
@media (max-width: 1000px) {
  .about-hero-content-new {
    padding: 0 20px;
  }
  
  .section-header-new,
  .work-card-new,
  .community-cards-grid,
  .learning-card,
  .interests-content,
  .future-content-placeholder,
  .contact-card,
  .about-highlights-grid {
    padding: 0 20px;
  }
  
}

/* Ensure padding is applied above 768px but below 1000px */
@media (min-width: 769px) and (max-width: 1000px) {
  .section-header-new,
  .work-card-new,
  .community-cards-grid,
  .learning-card,
  .interests-content,
  .future-content-placeholder,
  .contact-card,
  .about-highlights-grid {
    padding: 0 20px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .about-hero-content-new,
  .section-header-new,
  .work-card-new,
  .community-cards-grid,
  .learning-card,
  .interests-content,
  .future-content-placeholder,
  .contact-card,
  .about-highlights-grid {
    padding: 0 15px;
  }
  
}


@media (min-width: 992px) {
  .about-hero-content-new {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 80px;
  }
}

.about-profile-wrapper {
  flex-shrink: 0;
}

.about-profile-circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: #ffffff;
  padding: 0;
  display: inline-block;
  border: 1px solid #e8e8e8;
  position: relative;
}

/* Small green blob near profile */
.about-profile-circle::before {
  content: '';
  position: absolute;
  top: -15px;
  right: -15px;
  width: 60px;
  height: 60px;
  background: #6b7d47;
  border-radius: 50% 40% 60% 50% / 40% 50% 50% 60%;
  opacity: 0.4;
  animation: organic-move 15s ease-in-out infinite;
  z-index: -1;
}

@media (min-width: 768px) {
  .about-profile-circle {
    width: 320px;
    height: 320px;
  }
}

@media (min-width: 992px) {
  .about-profile-circle {
    width: 380px;
    height: 380px;
  }
}

.about-profile-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-hero-text {
  flex: 1;
}

.about-hero-title {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 10px 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

@media (min-width: 992px) {
  .about-hero-title {
    font-size: 3.25rem;
    margin-bottom: 14px;
  }
}

.about-hero-role {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: #568056;
  margin: 0 0 24px 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (min-width: 992px) {
  .about-hero-role {
    font-size: 1.55rem;
    margin-bottom: 30px;
  }
}

.about-hero-subtitle {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #4a4a4a;
  line-height: 1.8;
  margin: 0 0 30px 0;
  max-width: 650px;
}

@media (min-width: 992px) {
  .about-hero-subtitle {
    font-size: 1.35rem;
    line-height: 1.9;
  }
}

.about-location-new {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 0.95rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.about-location-new i {
  color: #888;
  font-size: 1rem;
}

/* Center location on small screens */
@media (max-width: 991.98px) {
  .about-location-new {
    justify-content: center;
  }
}

/* Highlights Section - Editorial Style */
.about-highlights-section {
  padding: 100px 0;
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Green blob - KEEP */
.about-highlights-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: 10%;
  width: 200px;
  height: 200px;
  background: #6b7d47;
  border-radius: 40% 60% 50% 50% / 55% 40% 60% 45%;
  opacity: 0.05;
  animation: organic-move 30s ease-in-out infinite;
  z-index: 1;
}

.about-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 80px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
  padding: 0;
}

@media (max-width: 1000px) {
  .about-highlights-grid {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .about-highlights-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.highlight-card-new {
  background: transparent;
  border: none;
  padding: 0;
  transition: none;
  position: relative;
}

.highlight-card-new::before {
  display: none;
}

.highlight-card-new:hover {
  transform: none;
  box-shadow: none;
}

.highlight-card-new h3 {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #999;
  margin: 0 0 15px 0;
}

.highlight-card-new .highlight-title {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

@media (min-width: 992px) {
  .highlight-card-new .highlight-title {
    font-size: 1.75rem;
  }
}

.highlight-card-new .highlight-detail {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #666;
  margin: 0;
  line-height: 1.7;
}
/* Timeline Image - Editorial Style */
.about-timeline-section,
.about-community-image-section,
.about-meetups-image-section,
.about-interests-image-section {
  padding: 100px 0;
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.about-timeline-section > div,
.about-community-image-section > div,
.about-meetups-image-section > div,
.about-interests-image-section > div {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  width: 100%;
}

/* Override padding on smaller screens to match content */
@media (max-width: 1000px) {
  .about-timeline-section > div,
  .about-community-image-section > div,
  .about-meetups-image-section > div,
  .about-interests-image-section > div {
    max-width: 900px !important;
    padding: 0 20px !important;
  }
}

@media (max-width: 480px) {
  .about-timeline-section > div,
  .about-community-image-section > div,
  .about-meetups-image-section > div,
  .about-interests-image-section > div {
    max-width: 900px !important;
    padding: 0 15px !important;
  }
}

/* Green blobs removed from timeline section */

.timeline-img-new {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

/* Mobile images - hidden on desktop */
.timeline-img-mobile {
  display: none;
}

/* Mobile Logo Carousel - hidden on desktop */
.logo-carousel-mobile {
  display: none;
}

/* Desktop timeline image - hidden on mobile */
@media (max-width: 768px) {
  .timeline-img-desktop {
    display: none;
  }
  
  .timeline-img-mobile {
    display: block;
  }
  
  /* Remove padding from timeline section div on mobile for carousel */
  .about-timeline-section > div {
    padding: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
  }
  
  /* Show logo carousel on mobile */
  .logo-carousel-mobile {
    display: block;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    position: relative;
    padding: 40px 0;
  }
  
  .logo-carousel-track {
    display: flex;
    animation: logo-carousel-scroll 25s linear infinite;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    padding-left: 0;
    will-change: transform;
    min-height: 90px;
  }
  
  .logo-carousel-item {
    flex-shrink: 0;
    width: 140px;
    height: auto;
    max-height: 90px;
    object-fit: contain;
    display: block;
    vertical-align: middle;
    margin: 0;
  }
}

@keyframes logo-carousel-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    /* Move exactly the width of 5 logos + 4 gaps */
    /* Calculation: (140px × 5) + (12px × 4) = 700px + 48px = 748px */
    transform: translateX(-748px);
  }
}

/* Work Sections - Editorial Style */
.about-work-section,
.about-experience-section {
  padding: 120px 0;
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Green blobs - KEEP */
.about-work-section::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 5%;
  width: 120px;
  height: 120px;
  background: #6b7d47;
  border-radius: 50% 40% 60% 50% / 40% 50% 50% 60%;
  opacity: 0.05;
  animation: organic-move 30s ease-in-out infinite;
  z-index: 1;
}

.about-experience-section::after {
  content: '';
  position: absolute;
  bottom: 15%;
  left: 8%;
  width: 100px;
  height: 100px;
  background: #8b9a6b;
  border-radius: 40% 60% 50% 50% / 55% 40% 60% 45%;
  opacity: 0.05;
  animation: organic-move 25s ease-in-out infinite reverse;
  z-index: 1;
}

.section-header-new {
  margin-bottom: 80px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 1000px) {
  .section-header-new {
    padding: 0 20px;
  }
  
  /* Ensure content divs align with section headers */
  .community-cards-grid,
  .learning-card,
  .interests-content {
    padding: 0 20px;
  }
}

.section-title-new {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

@media (min-width: 992px) {
  .section-title-new {
    font-size: 3.5rem;
  }
}

.section-title-line {
  display: none;
}

.work-card-new {
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 120px;
  box-shadow: none;
  overflow: visible;
  position: relative;
  transition: none;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 1000px) {
  .work-card-new {
    padding: 0 20px;
  }
}

.work-card-new:last-child {
  margin-bottom: 0;
}

.work-card-new:hover {
  transform: none;
  box-shadow: none;
}

.work-card-accent {
  display: none;
}

.work-card-accent-purple {
  display: none;
}

.work-card-accent-orange {
  display: none;
}

.work-card-content {
  padding: 0;
}

.work-card-header-new {
  display: block;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8e8e8;
}

.work-card-header-new h3 {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 10px 0;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

@media (min-width: 992px) {
  .work-card-header-new h3 {
    font-size: 2rem;
  }
}

.work-company-new {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}

.work-company-new a {
  color: #1a1a1a;
  text-decoration: underline;
  text-decoration-color: #ccc;
  text-underline-offset: 3px;
  transition: all 0.3s ease;
  font-weight: inherit;
}

.work-company-new a:hover {
  color: #568056;
  text-decoration-color: #568056;
}

.work-date {
  display: block;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: #666;
  margin-top: 8px;
}

.work-company-purple {
  color: #888;
}

.work-company-orange {
  color: #888;
}

.work-description-new {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4a4a4a;
  margin: 0 0 30px 0;
}

@media (min-width: 992px) {
  .work-description-new {
    font-size: 1.05rem;
    line-height: 1.8;
  }
}

.work-project-block {
  margin-top: 28px;
}

.work-projects-subheader {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1a1a1a;
  margin: 24px 0 4px 0;
}

.work-project-block:first-child {
  margin-top: 20px;
}

.work-project-title {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 10px 0;
  line-height: 1.35;
}

.work-project-block .work-description-new {
  margin-bottom: 0;
}

.work-industries {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 25px 0;
}

.industry-tag {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(86, 128, 86, 0.1);
  border: 1px solid rgba(86, 128, 86, 0.25);
  border-radius: 6px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: #568056;
  transition: all 0.2s ease;
}

.industry-tag:hover {
  background: rgba(86, 128, 86, 0.15);
  border-color: rgba(86, 128, 86, 0.4);
  transform: translateY(-1px);
}

/* Desktop: Always show all content */
.work-description-expandable {
  display: block;
}

/* Mobile: Hide expandable content by default */
@media (max-width: 768px) {
  .work-description-expandable {
    display: none;
  }

  .work-description-expandable.expanded {
    display: block;
  }
}

/* Desktop: Hide toggle button */
.work-expand-toggle,
.work-expand-toggle-collapsed {
  display: none;
}

/* Mobile: Show toggle button as inline link-style button */
@media (max-width: 768px) {
  .work-expand-toggle {
    display: inline-block;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a1a1a;
    background: none;
    border: none;
    padding: 0;
    margin: 30px 0 0 0;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-color: #ccc;
    text-underline-offset: 3px;
    transition: all 0.3s ease;
  }

  .work-expand-toggle:hover {
    color: #568056;
    text-decoration-color: #568056;
  }

  /* Style the collapsed button (Show more) */
  .work-expand-toggle-collapsed {
    display: inline-block;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a1a1a;
    background: none;
    border: none;
    padding: 0;
    margin: 0 0 30px 0;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-color: #ccc;
    text-underline-offset: 3px;
    transition: all 0.3s ease;
  }

  .work-expand-toggle-collapsed:hover {
    color: #568056;
    text-decoration-color: #568056;
  }

  /* Hide the "Show less" button when content is collapsed */
  .work-description-expandable:not(.expanded) .work-expand-toggle {
    display: none;
  }

  /* Show the collapsed button when content is not expanded */
  .work-description-expandable:not(.expanded) ~ .work-expand-toggle-collapsed {
    display: inline-block;
  }

  /* Hide the collapsed button when content is expanded */
  .work-description-expandable.expanded ~ .work-expand-toggle-collapsed {
    display: none;
  }
}

.work-focus-new {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 0.95rem;
  color: #888;
  margin: 0;
  padding: 20px 0 0 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.work-focus-new strong {
  color: #1a1a1a;
  font-weight: 600;
}

/* Community Section - Editorial Style */
.about-community-section {
  padding: 120px 0;
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Green blob - KEEP */
.about-community-section::after {
  content: '';
  position: absolute;
  top: 30%;
  right: 8%;
  width: 100px;
  height: 100px;
  background: #6b7d47;
  border-radius: 50% 40% 60% 50% / 40% 50% 50% 60%;
  opacity: 0.05;
  animation: organic-move 25s ease-in-out infinite;
  z-index: 1;
}

.community-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 100px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
  padding: 0;
}

@media (max-width: 1000px) {
  .community-cards-grid {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .community-cards-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

.community-card {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  transition: none;
  border-top: none;
}

.community-card:hover {
  transform: none;
  box-shadow: none;
}

.community-card-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
  opacity: 1;
}

.community-card h4 {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
}

.community-card p {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4a4a4a;
  margin: 0;
}

@media (min-width: 992px) {
  .community-card p {
    font-size: 1.05rem;
    line-height: 1.8;
  }
}

.community-card a {
  color: #1a1a1a;
  text-decoration: underline;
  text-decoration-color: #ccc;
  text-underline-offset: 3px;
  transition: all 0.3s ease;
  font-weight: 400;
}

.community-card a:hover {
  color: #568056;
  text-decoration-color: #568056;
}

/* Learning Section - Editorial Style */
.about-learning-section {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Green blob - KEEP */
.about-learning-section::after {
  content: '';
  position: absolute;
  top: 30%;
  right: 8%;
  width: 80px;
  height: 80px;
  background: #6b7d47;
  border-radius: 50% 40% 60% 50% / 40% 50% 50% 60%;
  opacity: 0.05;
  animation: organic-move 25s ease-in-out infinite;
  z-index: 1;
}

.learning-card {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 1000px) {
  .learning-card {
    padding: 0 20px;
  }
}

.learning-list-new {
  list-style: none;
  padding: 0;
  margin: 0;
}

.learning-list-new li {
  display: flex;
  gap: 25px;
  padding: 30px 0;
  border-bottom: 1px solid #e8e8e8;
  align-items: flex-start;
}

.learning-list-new li:last-child {
  border-bottom: none;
}

.learning-bullet {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 4px;
  opacity: 1;
}

.learning-content {
  flex: 1;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4a4a4a;
}

@media (min-width: 992px) {
  .learning-content {
    font-size: 1.05rem;
    line-height: 1.8;
  }
}

.learning-content strong {
  color: #1a1a1a;
  font-weight: 600;
  font-family: "IBM Plex Sans", sans-serif;
}

.learning-content a {
  color: #1a1a1a;
  text-decoration: underline;
  text-decoration-color: #ccc;
  text-underline-offset: 3px;
  transition: all 0.3s ease;
  pointer-events: auto;
  position: relative;
  z-index: 1;
}

.learning-content a:hover {
  color: #568056;
  text-decoration-color: #568056;
}

/* Interests Section - Editorial Style */
.about-interests-section {
  padding: 120px 0;
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Green blob - KEEP */
.about-interests-section::after {
  content: '';
  position: absolute;
  bottom: 20%;
  left: 10%;
  width: 90px;
  height: 90px;
  background: #8b9a6b;
  border-radius: 40% 60% 50% 50% / 55% 40% 60% 45%;
  opacity: 0.05;
  animation: organic-move 30s ease-in-out infinite reverse;
  z-index: 1;
}

.interests-content {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 1000px) {
  .interests-content {
    padding: 0 20px;
  }
}

.interests-content p {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4a4a4a;
  margin: 0 0 40px 0;
}

@media (min-width: 992px) {
  .interests-content p {
    font-size: 1.05rem;
    line-height: 1.8;
  }
}

/* Future Content Section - Editorial Style */
.about-future-section {
  padding: 120px 0;
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Green blob - KEEP */
.about-future-section::after {
  content: '';
  position: absolute;
  top: 30%;
  left: 8%;
  width: 80px;
  height: 80px;
  background: #6b7d47;
  border-radius: 50% 40% 60% 50% / 40% 50% 50% 60%;
  opacity: 0.05;
  animation: organic-move 25s ease-in-out infinite;
  z-index: 1;
}

.future-content-placeholder {
  background: transparent;
  border: 1px dashed #ccc;
  padding: 60px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.future-placeholder-text {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #999;
  margin: 0;
  font-weight: 400;
  font-style: italic;
}

/* Contact Section - Editorial Style */
.about-contact-section {
  padding: 120px 0 150px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Green blobs - KEEP */
.about-contact-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: #6b7d47;
  border-radius: 50% 40% 60% 50% / 40% 50% 50% 60%;
  opacity: 0.06;
  animation: organic-move 25s ease-in-out infinite;
  z-index: 1;
}

.about-contact-section::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: #8b9a6b;
  border-radius: 40% 60% 50% 50% / 55% 40% 60% 45%;
  opacity: 0.05;
  animation: organic-move 20s ease-in-out infinite reverse;
  z-index: 1;
}

.contact-card {
  background: transparent;
  border: none;
  padding: 0;
  text-align: center;
  box-shadow: none;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-title {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 25px 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

@media (min-width: 992px) {
  .contact-title {
    font-size: 3rem;
  }
}

.contact-text {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4a4a4a;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  .contact-text {
    font-size: 1.05rem;
    line-height: 1.8;
  }
}

/* Responsive adjustments - Editorial Style */
@media (max-width: 768px) {
  .about-hero-section {
    padding: 80px 0 60px;
  }

  .about-highlights-section,
  .about-work-section,
  .about-experience-section,
  .about-community-section,
  .about-learning-section,
  .about-interests-section,
  .about-contact-section {
    padding: 80px 0;
  }

  .about-timeline-section,
  .about-community-image-section,
  .about-meetups-image-section,
  .about-interests-image-section {
    padding: 60px 0;
  }
  
  .section-header-new,
  .work-card-new,
  .community-cards-grid,
  .learning-card,
  .interests-content,
  .future-content-placeholder,
  .contact-card,
  .about-highlights-grid {
    padding: 0 20px;
  }

  .about-hero-title {
    font-size: 2.5rem;
  }

  .section-title-new {
    font-size: 2.25rem;
  }

  .section-header-new {
    margin-bottom: 50px;
  }

  .work-card-new {
    margin-bottom: 120px;
  }

  .work-card-header-new h3 {
    font-size: 1.75rem;
  }

  .community-cards-grid {
    gap: 50px;
  }

  .about-highlights-grid {
    gap: 40px;
  }
}

/**********************
Creative Feed 
***********************/

#disappear {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #c1c1c1;
  text-align: center;
  font-size: 10pt;
}

/*****************************************************************************************
******************************************************************************************
MEDIA QUERIES
******************************************************************************************
******************************************************************************************/

@media screen and (min-width: 1750px) {

  

  .container-fluid {
    max-width: 1750px;
    padding-right: 30px;
    padding-left: 30px;
  }

  .footer-width {
    max-width: 100%;
  }
}

@media (min-width: 992px) {

  

  #scroll-section {
    display: block;
  }

  .fullscreen-vid {
    height: 100vh;
  }
  .fullscreen-img {
    height: 100vh;
  }

  .display-4 {
    font-size: 3.5rem !important;
  }

  .projects-push-down {
    margin-top: 250px;
    margin-bottom: 250px;
  }

  .hero-intro {
    padding: 280px 40px 180px;
  }

  .hero-name {
    font-size: 5.5rem;
  }

  .hero-role {
    font-size: 1.7rem;
  }

  .hero-description {
    font-size: 1.3rem;
    max-width: 700px;
  }

  .project-intro {
    font-size: 1.3rem;
  }
}

@media screen and (min-width: 573px) {
  .col {
    max-width: auto;
  }

  .footer-width {
    max-width: 100%;
  }
}


/****************
Hiding and showing the creative feed with / without videos at 768px breakpoint
*****************/

@media (min-width: 768px) {
  .novideofeed {
    display: none;
  }
}

@media (max-width: 768px) {
  .videofeed {
    display: none;
  }

  .hero-intro {
    padding: 150px 20px 80px;
  }

  .hero-intro-line {
    width: 50px;
    height: 2px;
    margin-bottom: 30px;
  }

  .hero-name {
    font-size: 2.8rem;
  }

  .hero-role {
    font-size: 1.2rem;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.6;
  }

  .project-img figcaption {
    padding: 20px;
  }

  .project-img h5 {
    font-size: 1.2rem;
    margin-bottom: 6px;
  }

  .project-img h6 {
    font-size: 0.85rem;
    line-height: 1.4;
    gap: 6px;
  }

  .skill-tag {
    font-size: 0.75rem;
    padding: 5px 10px;
  }
}

/****************
Iphone X
*****************/

@media only screen and (min-device-width: 375px) and (min-device-height: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
  .hamburgernav {
    text-align: left;
  }

  .container-fluid {
    padding: 0px !important;
  }

  .project-img {
    padding-top: 0px;
  }
}

/* end of all wooooo */

/****************
About V2
*****************/
.about-v2 {
  padding-top: 80px;
  background: #ffffff;
}

.v2-hero {
  padding: 40px 20px 20px;
}
.v2-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: center;
}
.v2-hero-portrait {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.v2-hero-location {
  margin-top: 12px;
  color: #666;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.v2-title {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 3rem;
  margin: 0 0 10px 0;
  color: #1a1a1a;
}
.v2-subtitle {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.15rem;
  color: #444;
  margin: 0 0 16px 0;
  line-height: 1.7;
  max-width: 720px;
}
.v2-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.v2-tags span {
  background: #f4f6f8;
  border: 1px solid #e6e9ee;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.9rem;
  color: #333;
}

.v2-tiles {
  max-width: 1200px;
  margin: 10px auto 40px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.v2-tile {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.v2-tile small {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #999;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  font-size: 0.75rem;
}
.v2-tile h3 {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 700;
  color: #1a1a1a;
  font-size: 1.25rem;
  margin: 0 0 6px 0;
}
.v2-tile p {
  color: #666;
  margin: 0;
  font-size: 0.98rem;
}

.v2-bio {
  padding: 30px 20px 10px;
}
.v2-bio-inner {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  position: relative;
}
.v2-col h2 {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 10px 0;
}
.v2-col p {
  color: #444;
  margin: 0;
  line-height: 1.7;
  font-size: 1rem;
}
.v2-quote {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 24px;
  margin: 0;
  padding-top: 16px;
  color: #5B49F3;
  font-weight: 600;
  border-top: 3px solid #f0f0f0;
}

.v2-media {
  max-width: 1200px;
  margin: 24px auto;
  padding: 0 20px;
}
.v2-media-img {
  width: 100%;
  height: auto;
  display: block;
}

.v2-work {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}
.v2-section-title {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 16px 0;
}
.v2-stripe {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-top: 1px solid #eee;
}
.v2-stripe:first-of-type {
  border-top: 2px solid #e6e6e6;
}
.v2-stripe-role {
  font-weight: 700;
  color: #1a1a1a;
}
.v2-stripe-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.v2-pill {
  border: 1px solid #e6e6e6;
  background: #ffffff;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.85rem;
  color: #333;
}
.v2-pill-green {
  border-color: #cfe1d0;
  color: #2e5532;
  background: #f4fbf4;
}
.v2-pill-purple {
  border-color: #d6d0fb;
  color: #3a2fb0;
  background: #f7f6fe;
}
.v2-pill-orange {
  border-color: #ffd4cc;
  color: #b54833;
  background: #fff6f3;
}

.v2-beyond {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}
.v2-beyond-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.v2-card {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 24px;
}
.v2-card h3 {
  margin: 0 0 10px 0;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
}
.v2-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
/* (removed overriding rule that forced no top borders on hobby items) */
.hobby-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
  row-gap: 0;
}

@media (max-width: 480px) {
  .hobby-list {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
}
.hobby-intro {
  padding-bottom: 30px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4a4a4a;
}

@media (min-width: 992px) {
  .hobby-intro {
    font-size: 1.05rem;
    line-height: 1.8;
  }
}

.hobby-list li {
  border-top: none;
  padding: 25px 0;
  border-bottom: 1px solid #e8e8e8;
  font-size: 1.1rem;
  line-height: 1.9;
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: "IBM Plex Sans", sans-serif;
  color: #4a4a4a;
}

/* Ensure first row items (first two) never have top borders */
.hobby-list li:nth-child(-n+2) {
  border-top: none !important;
}

/* Remove bottom border from items in the last row when using 2 columns */
.hobby-list li:nth-last-child(-n+2) {
  border-bottom: none;
}

/* For single column, only remove from last item */
@media (max-width: 480px) {
  .hobby-list li:nth-last-child(-n+2) {
    border-bottom: 1px solid #e8e8e8;
  }
  .hobby-list li:last-child {
    border-bottom: none;
  }
}

@media (min-width: 992px) {
  .hobby-list li {
    font-size: 1.15rem;
    line-height: 2;
  }
}
.hobby-emoji {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
  opacity: 1;
}
.hobby-text {
  display: inline-block;
}
@media (min-width: 992px) {
  .hobby-list {
    column-gap: 50px;
    row-gap: 0;
  }
  /* Use top borders on desktop to avoid column-wrap artifacts */
  .hobby-list li {
    border-bottom: none;
    border-top: 1px solid #e8e8e8;
    padding: 25px 0;
  }
  /* No top border on the first row (first two items) */
  .hobby-list li:nth-child(-n+2) {
    border-top: none;
  }
}
.v2-list li {
  padding: 10px 0;
  border-top: 1px solid #f0f0f0;
  color: #444;
  line-height: 1.6;
}
.v2-list li:first-child {
  border-top: none;
}
.v2-list a {
  color: #568056;
  text-decoration: none;
}
.v2-list a:hover {
  text-decoration: underline;
}

.v2-contact {
  padding: 40px 20px 100px;
}
.v2-contact-card {
  max-width: 760px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 32px;
  text-align: center;
}
.v2-contact-card h2 {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #1a1a1a;
}
.v2-contact-card p {
  margin: 0;
  color: #666;
  line-height: 1.7;
}

@media (max-width: 992px) {
  .v2-hero-inner {
    grid-template-columns: 1fr;
  }
  .v2-hero-portrait {
    width: 160px;
    height: 160px;
  }
  .v2-title {
    font-size: 2.4rem;
  }
  .v2-tiles {
    grid-template-columns: 1fr 1fr;
  }
  .v2-bio-inner {
    grid-template-columns: 1fr;
    padding-bottom: 56px;
  }
  .v2-beyond-grid {
    grid-template-columns: 1fr;
  }
}
/* ── Recent Projects Toggle ── */
.work-projects-toggle {
  background: none;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 0 0 2px 0;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1a1a1a;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 24px 0 0;
  text-decoration: none;
  outline: none;
  transition: all 0.3s ease;
}

.work-projects-toggle:focus {
  outline: none;
}

.work-projects-toggle:focus-visible {
  outline: 2px solid #6b7d47;
  outline-offset: 2px;
}

.work-projects-toggle:hover {
  color: #568056;
  border-bottom-color: #568056;
}

.projects-toggle-arrow {
  font-style: normal;
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}

.work-projects-expandable {
  margin-top: 20px;
}

/* ── Project rows under each job (resume-style home) ── */
.work-projects-list {
  margin-top: 36px;
}

.work-project-row {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-top: 28px;
  color: inherit;
  text-decoration: none;
}

a.work-project-row:hover,
a.work-project-row:focus {
  color: inherit;
  text-decoration: none;
}

.work-project-thumb {
  flex: 0 0 260px;
  border-radius: 8px;
  overflow: hidden;
  background: #f0f0ee;
  aspect-ratio: 16 / 10;
}

.work-project-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

a.work-project-row:hover .work-project-thumb img {
  transform: scale(1.04);
}

.work-project-info {
  flex: 1;
  min-width: 0;
}

.work-project-info .work-project-title {
  transition: color 0.2s ease;
}

.work-project-info .work-description-new {
  margin-bottom: 10px;
}

a.work-project-row:hover .work-project-title {
  color: #568056;
}

.work-project-link {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1a1a1a;
  border-bottom: 1px solid #ccc;
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

a.work-project-row:hover .work-project-link {
  color: #568056;
  border-bottom-color: #568056;
}

@media (max-width: 640px) {
  .work-project-row {
    flex-direction: column;
    gap: 14px;
    margin-top: 48px;
  }

  .work-project-thumb {
    flex: none;
    width: 100%;
  }
}

/* Company name as the card heading, job title beneath */
.work-card-header-new h3 .work-company-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.work-card-header-new h3 .work-company-link:hover {
  color: #568056;
}

.work-title-line {
  color: #444;
}

.work-projects-list + .work-focus-new {
  margin-top: 40px;
}

/* Photo between the Experience heading and the first job.
   Same width rules as the timeline / Life images (max 1400px, 40px side padding). */
.experience-image {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto 120px;
  padding: 0 40px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.experience-image img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 1000px) {
  .experience-image {
    max-width: 900px;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .experience-image {
    padding: 0 15px;
  }
}

/* ── Show only the first two companies until "Show More Experience" is clicked ── */
.work-more-experience {
  display: none;
  outline: none;
}

.work-more-experience-cta {
  display: flex;
  justify-content: center;
  margin-top: -60px; /* pulls the button up under the last visible company */
}

.work-more-experience-btn {
  background: none;
  border: 1px solid #1a1a1a;
  border-radius: 40px;
  padding: 14px 32px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a1a;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.work-more-experience-btn:hover {
  color: #568056;
  border-color: #568056;
}

.work-more-experience-btn:focus {
  outline: none;
}

.work-more-experience-btn:focus-visible {
  outline: 2px solid #6b7d47;
  outline-offset: 2px;
}

.about-work-section.show-all-experience .work-more-experience {
  display: block;
}

/* expanded: the same button sits below the last company and collapses the list */
.about-work-section.show-all-experience .work-more-experience-cta {
  margin-top: 60px;
}

/* ── Floating section navigation (FAB) ──
   A large green "next" button; a small "back" button appears once you've scrolled.
   Hidden for now (getting in the way) — remove this rule to bring it back. */
.section-fab {
  display: none !important;
}

.section-fab {
  position: fixed;
  right: 20px;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 10px;
}

.fab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
              opacity 0.2s ease, transform 0.2s ease;
}

.fab-btn:focus-visible {
  outline: 2px solid #6b7d47;
  outline-offset: 3px;
}

.fab-btn:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.fab-down {
  width: 56px;
  height: 56px;
  border: none;
  background: #6b7d47;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.fab-down:hover {
  background: #568056;
  transform: translateY(2px);
}

.fab-up {
  width: 40px;
  height: 40px;
  background: #fff;
  color: #1a1a1a;
  border: 1px solid #1a1a1a;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.fab-up:hover {
  color: #568056;
  border-color: #568056;
}

/* at the very top there's nothing to go back to, so the small button tucks away */
.section-fab.at-top .fab-up {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

@media (max-width: 768px) {
  .section-fab {
    right: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fab-btn {
    transition: none;
  }
}
