:root {
  --bg: #07100d;
  --bg-deep: #040806;
  --surface: #0d1814;
  --surface-2: #12201a;
  --text: #f3f4ef;
  --muted: #aeb6ae;
  --green: #a3f043;
  --green-dark: #79bf28;
  --line: rgba(255,255,255,.09);
  --radius: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 4.2vw, 3.7rem);
  line-height: .98;
  letter-spacing: -.045em;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

p {
  color: var(--muted);
}

/* =========================
   Header / navigation
========================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 11px max(18px, calc((100vw - var(--max)) / 2));
  background: linear-gradient(to bottom, rgba(4,8,6,.92), rgba(4,8,6,.52), transparent);
  backdrop-filter: blur(4px);
}

.header-brand {
  display: block;
  grid-column: 1;
  justify-self: start;
  cursor: pointer;
  transition: opacity .22s ease, visibility .22s ease;
}

.header-brand img {
  display: block;
  width: 104px;
  filter: brightness(0) invert(1);
}

.site-header.landing-active .header-brand {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.header-nav {
  grid-column: 2;
  justify-self: center;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.header-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: rgba(255,255,255,.82);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.header-nav a:hover,
.header-nav a:focus-visible {
  color: var(--green);
}

.nav-icon {
  display: inline-grid;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  place-items: center;
}

.nav-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

section[id] {
  scroll-margin-top: 8px;
}

/* =========================
   Hero
========================= */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4,8,6,.66), rgba(4,8,6,.16) 52%, rgba(4,8,6,.22)),
    linear-gradient(to top, var(--bg) 0%, rgba(7,16,13,.10) 38%, rgba(7,16,13,.08));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100svh;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 68px 0 40px;
  text-align: center;
}

.hero-logo {
  width: min(690px, 88vw);
  max-height: 36vh;
  filter: brightness(0) invert(1);
}

.hero-kicker {
  margin: -2px 0 0;
  padding: 0;
  border: 0;
  color: #fff;
  font-size: clamp(1rem, 1.55vw, 1.24rem);
  font-weight: 700;
  letter-spacing: .30em;
  text-align: center;
  text-transform: uppercase;
}

.hero-app-link {
  display: inline-flex;
  margin-top: 22px;
  padding: 11px 19px;
  border: 1px solid rgba(163,240,67,.52);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(163,240,67,.19), rgba(163,240,67,.07));
  color: var(--green);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 8px 24px rgba(0,0,0,.18);
  font-size: clamp(.72rem, 1vw, .88rem);
  font-weight: 900;
  letter-spacing: .045em;
  text-decoration: none;
}

.hero-app-link:hover,
.hero-app-link:focus-visible {
  border-color: rgba(163,240,67,.8);
  background: linear-gradient(145deg, rgba(163,240,67,.28), rgba(163,240,67,.12));
  transform: translateY(-1px);
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  color: white;
  font-size: 1.6rem;
  text-decoration: none;
}

/* =========================
   Shared sections
========================= */
.section {
  display: flex;
  width: min(var(--max), calc(100% - 36px));
  min-height: calc(100svh - 68px);
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  padding: 58px 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 20px;
}

/* =========================
   About / Who Am I?
========================= */
.about-split {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 42px;
  align-items: center;
}

.about-image-large {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.about-image-large img {
  display: block;
  width: 100%;
  height: min(68vh, 590px);
  min-height: 430px;
  object-fit: cover;
  object-position: 50% 0% !important;
}

.about-content h1 {
  margin-bottom: 14px;
}

.about-intro {
  color: var(--text);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
}

.about-points {
  display: grid;
  gap: 0;
  margin-top: 18px;
  border-top: 1px solid var(--line);
}

.about-points > div {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 20px;
  align-items: start;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.about-points span {
  color: var(--green);
  font-size: .64rem;
  font-weight: 900;
  line-height: 2.15;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-points p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.34vw, 1.16rem);
  line-height: 1.5;
}

.about-signoff {
  margin-top: 18px;
}

.about-signoff strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
}

.about-signoff p {
  margin: 3px 0 0;
  font-size: .76rem;
}

/* =========================
   What I Do
========================= */
.experience-section {
  padding-top: 34px;
  padding-bottom: 34px;
}

.experience-heading {
  margin-bottom: 7px;
}

.experience-heading .eyebrow {
  margin-bottom: 0;
}



/* =========================
   What I Know?
========================= */
.qualification-stage {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 18px;
  align-items: stretch;
}

.qualification-visual {
  position: relative;
  min-height: 520px;
  max-height: 550px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.qualification-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0% !important;

}

.qualification-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,8,6,.88), rgba(4,8,6,.05) 62%);
}

.qualification-visual-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
}

.qualification-visual-copy h2 {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
}

.qualification-visual-copy p {
  max-width: 520px;
  margin: 0;
  font-size: .84rem;
}

.qualification-accordion {
  display: grid;
  align-content: start;
  border-top: 1px solid var(--line);
}

.qualification-accordion details {
  border-bottom: 1px solid var(--line);
}

.qualification-accordion summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 66px;
  padding: 14px 4px;
  cursor: pointer;
  list-style: none;
}

.qualification-accordion summary::-webkit-details-marker {
  display: none;
}

.qualification-accordion summary span {
  color: var(--text);
  font-size: 1rem;
  font-weight: 850;
}

.qualification-accordion summary small {
  color: var(--green);
  font-size: .74rem;
  font-weight: 800;
}

.qualification-accordion summary::after {
  content: "+";
  grid-column: 2;
  grid-row: 1;
  margin-left: 8px;
  color: var(--green);
  font-size: 1rem;
}

.qualification-accordion details[open] summary::after {
  content: "−";
}

.qualification-panel {
  padding: 0 4px 16px;
}

.qualification-panel p {
  margin: 0 0 10px;
  font-size: .78rem;
  line-height: 1.45;
}

.qualification-panel strong {
  color: var(--text);
}

/* =========================
   Media
========================= */
.media-section {
  padding-top: 68px;
  padding-bottom: 40px;
}

.media-heading {
  margin-bottom: 14px;
}

.media-heading h2 {
  max-width: 520px;
  margin-bottom: 0;
}

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

.media-card {
  position: relative;
  height: clamp(150px, 21vh, 220px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: white;
  text-decoration: none;
}

.media-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

.media-card:hover > img {
  transform: scale(1.025);
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,8,6,.82), rgba(4,8,6,.08) 68%);
}

.media-overlay {
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 11px;
  z-index: 2;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 8px;
  align-items: center;
}

.media-overlay img {
  width: 28px;
  height: 28px;
}

.media-overlay strong {
  font-size: .84rem;
}

.media-overlay small {
  color: var(--green);
  font-size: .74rem;
  font-weight: 800;
}

/* =========================
   Connect
========================= */
.contact-section {
  gap: 12px;
  min-height: auto;
  padding-top: 120px;
  padding-bottom: 80px;
}

.contact-panel {
  padding: 34px;
  border: 1px solid rgba(163,240,67,.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 10% 120%, rgba(163,240,67,.1), transparent 37%),
    var(--surface);
}

.contact-panel > div:first-child {
  max-width: 700px;
}






.social-bar {
  display: grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: 8px;
  margin-top: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.social-bar a {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 4px 12px 12px;
  border: 1px solid rgba(163,240,67,.30);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(163,240,67,.08), rgba(255,255,255,.025)),
    var(--surface);
  text-align: center;
  text-decoration: none;
}

.social-bar img {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
}

.social-bar a span {
  display: grid;
  min-width: 0;
  justify-items: center;
}

.social-bar strong {
  color: var(--text);
  font-size: .88rem;
  line-height: .0;
}

.social-bar small {
  margin-top: 6px;
  color: var(--muted);
  font-size: .74rem;
}

.social-bar a:hover,
.social-bar a:focus-visible {
  border-color: rgba(163,240,67,.62);
  background:
    linear-gradient(145deg, rgba(163,240,67,.17), rgba(255,255,255,.04)),
    var(--surface);
}

/* =========================
   Footer
========================= */
.site-footer {
  display: grid;
  justify-items: center;
  gap: 4px;
  padding: 20px 18px 80px;
  color: var(--muted);
  text-align: center;
}

.site-footer img {
  width: 140px;
  margin-bottom: 0px;
  filter: brightness(0) invert(1);
}

.site-footer p {
  margin: 0;
  font-size: .78rem;
}

/* =========================
   Responsive
========================= */
@media (max-width: 900px) {
  .site-header {
    gap: 10px;
  }

  .header-nav {
    gap: clamp(7px, 2.2vw, 15px);
  }

  .header-nav a {
    padding: 7px 15px;
  }

  .header-nav .nav-label {
    display: none;
  }

  .header-nav .nav-icon {
    width: 25px;
    height: 25px;
    flex-basis: 25px;
  }

  .section {
    min-height: auto;
    padding: 54px 0;
  }

  .about-split {
    grid-template-columns: 1fr;
  }

  .about-image-large img {
    height: 420px;
    min-height: 0;
  }

  .social-bar {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  section[id] {
    scroll-margin-top: 6px;
  }

  .site-header {
    gap: 7px;
    padding-inline: 14px;
  }

  .header-brand img {
  display: none;
  }


  .header-nav .nav-icon {
    width: 25px;
    height: 25px;
    flex-basis: 25px;
  }

  .section {
    width: min(100% - 22px, var(--max));
    padding: 48px 0;
  }

  .about-points > div {
    grid-template-columns: 90px 1fr;
    gap: 12px;
  }

  .about-points span {
    font-size: .64rem;
  }

  .about-points p {
    font-size: .98rem;
  }

  .experience-card {
  box-sizing: border-box;
    padding: 15px;
  }

  .media-section {
    padding-top: 58px;
  }

  .media-card {
    height: clamp(125px, 18vh, 180px);
  }

  .media-overlay {
    left: 9px;
    right: 9px;
    bottom: 8px;
    grid-template-columns: 22px 1fr;
    gap: 6px;
  }

  .media-overlay img {
    width: 22px;
    height: 22px;
  }

  .media-overlay small {
    display: none;
  }

  .social-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-bar a {
    min-height: 78px;
  }

  .social-bar img {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .contact-panel {
    padding: 24px 18px;
  }
}

@media (max-width: 500px) {
  .about-points > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .media-grid {
    gap: 6px;
  }

  .media-card {
    height: 132px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}


/* =========================================================
   SOARFLOW v2 visual refinements
   ========================================================= */

/* LANDING:
   Move the whole logo composition higher without changing the video. */
.hero-content {
  justify-content: flex-start;
  padding-top: clamp(15vh, 19vh, 22vh);
}

/* Keep the brand mark large. */
.hero-logo {
  width: min(720px, 90vw);
}

/* Treat Strength • Movement more like a subtitle belonging to the logo,
   rather than a separate block. */
.hero-kicker {
  margin-top: -10px;
  padding: 0;
  color: rgba(255,255,255,.94);
  font-size: clamp(.92rem, 1.4vw, 1.15rem);
  font-weight: 600;
  letter-spacing: .34em;
  line-height: 1;
  text-shadow: 0 1px 14px rgba(0,0,0,.28);
}

/* Retain clear separation between subtitle and app CTA. */
.hero-app-link {
  margin-top: 24px;
}

/* MEDIA:
   Keep the 2x2 layout but make the cards taller. */
.media-card {
  height: clamp(185px, 25vh, 270px);
}

/* CONNECT:
   Centre the icon + text pair as a single visual unit.
   Previously each element was centred independently, which made the pair
   appear shifted to the right. */
.social-bar a {
  display: grid;
  grid-template-columns: auto auto;
  width: 100%;
  align-items: center;
  justify-content: center;
  column-gap: 6px;
}

.social-bar a > img {
  justify-self: end;
}

.social-bar a > span {
  justify-self: start;
  justify-items: start;
  text-align: left;
}

@media (max-width: 700px) {

  .media-card {
    height: clamp(155px, 22vh, 210px);
  }

  .social-bar a {
    column-gap: 5px;
  }
}


/* =========================================================
   SOARFLOW v7 — consolidated landing + connect refinements
   ========================================================= */

/* Strength • Movement: slightly smaller, still widely tracked. */
.hero-kicker {
  margin-top: -14px;
  padding: 0;
  border: 0;
  color: #fff;
  font-size: clamp(.9rem, 1.4vw, 1.2rem);
  font-weight: 650;
  letter-spacing: .68em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  text-shadow: none;
}

/* App CTA: styled like the Connect buttons, but retained as a rounded pill. */
.hero-app-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 62px;
  padding: 12px 22px;
  border: 1px solid rgba(163,240,67,.48);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(163,240,67,.085), rgba(255,255,255,.025)),
    rgba(13,24,20,.58);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    0 8px 24px rgba(0,0,0,.18),
    0 0 18px rgba(163,240,67,.055);
  font-size: clamp(.76rem, 1vw, .9rem);
  font-weight: 850;
  letter-spacing: .04em;
  text-decoration: none;
  transition:
    border-color .18s ease,
    background .18s ease,
    color .18s ease,
    transform .18s ease;
}

.hero-app-link:hover,
.hero-app-link:focus-visible {
  border-color: rgba(163,240,67,.62);
  background:
    linear-gradient(145deg, rgba(163,240,67,.17), rgba(255,255,255,.04)),
    var(--surface);
  color: var(--green);
  transform: translateY(-1px);
}

/* Connect:
   One row on medium/large screens, 3 x 2 only on small screens. */
.social-bar {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .social-bar {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (max-width: 650px) {

  .hero-logo {
    margin-top: 100px;
  }
  
  .hero-kicker {
    margin-top: 0px;
    font-size: .84rem;
    letter-spacing: .52em;
  }

  .hero-app-link {
    margin-top: 50px;
    padding: 10px 17px;
    font-size: .7rem;
  }

  .social-bar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* =========================================================
   SOARFLOW v12 — Connect stack restoration + CTA glow
   ========================================================= */

/* Connect: restore the stacked, centred icon-over-text layout. */
.social-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-align: center;
}

.social-bar a > img {
  margin: 0 auto;
}

.social-bar a > span {
  display: grid;
  justify-items: center;
  margin: 0;
  text-align: center;
}

.social-bar strong,
.social-bar small {
  text-align: center;
}

/* App CTA: keep current transparent/dark character but add a clearer
   green glow in the normal state. Hover treatment remains unchanged. */
.hero-app-link {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 0 0 1px rgba(163,240,67,.05),
    0 0 18px rgba(163,240,67,.16),
    0 8px 28px rgba(163,240,67,.12),
    0 10px 26px rgba(0,0,0,.22);
}

/* v13: tighten Connect icon-to-text spacing */
.social-bar a { gap: 2px; }
@media (max-width: 650px) { .social-bar a { gap: 2px; } }


/* =========================
   What I Do
   Desktop: 3 cards over 3 matching images
   Mobile: 2 columns x 3 rows (card + image)
========================= */
.experience-pairs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto 240px;
  gap: 10px 8px;
  align-items: stretch;
}

.experience-pair {
  display: contents;
}

.experience-pair:nth-child(1) .experience-card,
.experience-pair:nth-child(1) .experience-photo {
  grid-column: 1;
}

.experience-pair:nth-child(2) .experience-card,
.experience-pair:nth-child(2) .experience-photo {
  grid-column: 2;
}

.experience-pair:nth-child(3) .experience-card,
.experience-pair:nth-child(3) .experience-photo {
  grid-column: 3;
}

.experience-card {
  grid-row: 1;
  display: flex;
  height: auto;
  flex-direction: column;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012)),
    var(--surface);
  align-self: stretch;
}

.experience-card h3 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -.025em;
}

.experience-card > p {
  margin-bottom: 7px;
  font-size: .88rem;
  line-height: 1.42;
}

.experience-detail {
  color: rgba(174,182,174,.82);
  font-size: .82rem !important;
  line-height: 1.42;
}

.experience-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  padding-top: 12px;
}

.experience-main-link {
  padding: 6px 10px;
  border: 1px solid rgba(163,240,67,.18);
  border-radius: 999px;
  color: var(--green);
  font-size: .74rem;
  font-weight: 800;
  text-decoration: none;
}

.experience-main-link:hover {
  background: var(--green);
  color: var(--bg);
}

.experience-social-link {
  display: grid;
  width: 29px;
  height: 29px;
  padding: 0 !important;
  place-items: center;
  border: 1px solid rgba(163,240,67,.18);
  border-radius: 50%;
  transition:
    background .18s ease,
    border-color .18s ease,
    transform .18s ease;
  background: transparent;
  color: var(--green);
}

.experience-social-link img {
  width: 18px;
  height: 18px;
  transition: filter .18s ease;
  filter: brightness(0) saturate(100%) invert(87%) sepia(91%) saturate(1196%) hue-rotate(32deg) brightness(105%) contrast(101%);
}

.experience-social-link:hover,
.experience-social-link:focus-visible {
  border-color: var(--green);
  background: var(--green);
  transform: translateY(-1px);
}

.experience-social-link:hover img,
.experience-social-link:focus-visible img {
  filter: brightness(0);
}

.experience-photo {
  grid-row: 2;
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: 50% 0% !important;
  border-radius: var(--radius);
}

/* Keep live text readable without changing the visual hierarchy. */
@media (max-width: 900px) {
  .experience-pairs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, auto);
    gap: 10px;
  }

  .experience-pair {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
    gap: 8px;
    min-width: 0;
  }

  .experience-pair:nth-child(n) {
    grid-column: 1 / -1;
  }

  .experience-pair:nth-child(n) .experience-card,
  .experience-pair:nth-child(n) .experience-photo {
    grid-column: auto;
    grid-row: auto;
  }

  .experience-card {
    min-width: 0;
    padding: 15px;
  }

  .experience-card h3 {
    font-size: clamp(1.45rem, 5vw, 2rem);
  }

  .experience-card > p {
    font-size: .82rem;
  }

  .experience-detail {
    font-size: .78rem !important;
  }

  .experience-main-link {
    font-size: .72rem;
  }

  .experience-photo {
    height: 250px;
    min-height: 0;
    align-self: center;
  }
}

@media (max-width: 560px) {
  .experience-pair {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
    gap: 7px;
  }

  .experience-card {
    padding: 13px;
  }

  .experience-card h3 {
    font-size: 1.4rem;
  }

  .experience-card > p {
    font-size: .78rem;
  }

  .experience-detail {
    font-size: .74rem !important;
  }

  .experience-main-link {
    padding: 5px 8px;
    font-size: .68rem;
  }

  .experience-photo {
    height: 230px;
    min-height: 230px;
    max-height: 230px;
  }

}


/* What I Do Instagram button hover */
.experience-social-link:hover,
.experience-social-link:focus-visible {
  border-color: var(--green);
  background: var(--green);
  transform: translateY(-1px);
}

.experience-social-link:hover img,
.experience-social-link:focus-visible img {
  filter: brightness(0) saturate(100%);
}


#qualifications .qualifications-image img,
  #qualifications .qualification-image img,
  #qualifications .section-image img,
  #qualifications .image-card img,
  #qualifications .feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }







/* =========================
   What I Know? responsive
   Desktop above 900px. One mobile layout at 900px and below.
========================= */
@media (max-width: 900px) {
  #qualifications.qualifications-section {
    width: min(100% - 22px, var(--max));
    min-height: auto;
    padding: 48px 0;
  }

  #qualifications .qualification-stage {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  #qualifications .qualification-visual {
    width: 100%;
    height: 380px;
    min-height: 300px;
    max-height: 300px;
    overflow: hidden;
  }

  #qualifications .qualification-visual > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 0% !important;
  }

  #qualifications .qualification-accordion {
    width: 100%;
  }
}
