:root {
  --bg: #0f0f0d;
  --surface: #171613;
  --surface-hover: #1d1b18;

  --text: #f3efe8;
  --muted: #aaa49a;

  --line: rgba(255, 255, 255, 0.09);

  --accent: #c56f43;
  --accent-soft: rgba(197, 111, 67, 0.12);

  --max: 1180px;
}


/* =========================================================
   RESET
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;

  color: var(--text);

  background:
    radial-gradient(
      circle at 78% 8%,
      rgba(197, 111, 67, 0.07),
      transparent 26rem
    ),
    var(--bg);

  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  line-height: 1.6;

  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

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

::selection {
  color: var(--text);
  background: rgba(197, 111, 67, 0.35);
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;

  display: flex;
  align-items: center;
  justify-content: space-between;

  max-width: var(--max);

  margin: 0 auto;
  padding: 22px 28px;

  background: rgba(15, 15, 13, 0.78);

  border-bottom: 1px solid rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(18px);
}

.brand {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand span,
.accent {
  color: var(--accent);
}

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

.nav a {
  color: var(--muted);

  font-size: 0.9rem;

  transition:
    color 0.18s ease,
    border-color 0.18s ease;
}

.nav a:hover {
  color: var(--text);
}

.nav .nav-cv {
  color: var(--text);

  padding-bottom: 3px;

  border-bottom: 1px solid var(--accent);
}

.menu-toggle {
  display: none;

  padding: 8px;

  border: 0;

  background: transparent;

  cursor: pointer;
}

.menu-toggle span {
  display: block;

  width: 23px;
  height: 1px;

  margin: 6px 0;

  background: var(--text);
}


/* =========================================================
   GLOBAL SECTIONS
   ========================================================= */

.section {
  position: relative;

  max-width: var(--max);

  margin: 0 auto;
  padding: 105px 28px;

  border-bottom: 1px solid var(--line);
}

.eyebrow,
.section-index,
.background-label {
  color: var(--accent);

  font-size: 0.74rem;
  font-weight: 700;

  letter-spacing: 0.15em;

  text-transform: uppercase;
}

.section-heading {
  display: flex;

  align-items: end;
  justify-content: space-between;

  gap: 40px;

  margin-bottom: 52px;
}

.section-heading h2,
.section-content h2,
.contact-box h2 {
  margin-bottom: 0;

  font-size: clamp(2rem, 5vw, 3.45rem);

  line-height: 1.03;

  letter-spacing: -0.045em;
}

.section-intro {
  max-width: 760px;

  margin: -18px 0 42px auto;

  color: var(--muted);

  font-size: 1.03rem;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  min-height: 84vh;

  display: grid;

  grid-template-columns: 1.2fr 0.8fr;

  align-items: center;

  gap: 78px;

  padding-top: 82px;
  padding-bottom: 120px;
}

.hero h1 {
  margin: 10px 0 22px;

  font-size: clamp(3.8rem, 8.4vw, 7.2rem);

  line-height: 0.9;

  letter-spacing: -0.065em;
}

.hero h1 span {
  color: var(--accent);

  font-style: italic;

  font-weight: 500;
}

.hero-value {
  max-width: 760px;

  margin-bottom: 18px;

  font-size: clamp(1.65rem, 3vw, 2.7rem);

  font-weight: 620;

  line-height: 1.08;

  letter-spacing: -0.035em;
}

.hero-subtitle {
  margin: 0;

  color: #d7d1c9;

  font-size: 1.02rem;
}

.hero-subtitle span {
  color: var(--accent);
}

.hero-actions,
.contact-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;

  margin-top: 32px;
}

.button {
  min-width: 140px;

  padding: 13px 18px;

  border: 1px solid var(--line);

  font-size: 0.92rem;
  font-weight: 650;

  text-align: center;

  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #17110e;

  background: var(--accent);

  border-color: var(--accent);
}

.button.secondary:hover {
  background: var(--surface);

  border-color: rgba(255, 255, 255, 0.2);
}


/* Availability */

.opportunity-status {
  margin-top: 30px;

  color: var(--muted);
}

.status-line {
  display: flex;

  align-items: center;

  gap: 10px;

  color: var(--text);

  font-size: 0.9rem;
}

.opportunity-status p {
  margin: 7px 0 0 17px;

  font-size: 0.86rem;
}

.status-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--accent);

  box-shadow:
    0 0 0 5px var(--accent-soft);
}


/* Hero photo */

.hero-photo-wrap {
  position: relative;

  width: min(100%, 390px);

  justify-self: end;
}

.hero-photo {
  display: block;

  width: 100%;

  aspect-ratio: 4 / 5;

  object-fit: cover;

  object-position: 50% 18%;

  border: 1px solid var(--line);

  filter:
    saturate(0.88)
    contrast(1.02);
}

.photo-accent {
  position: absolute;

  top: 22px;
  right: -12px;

  width: 1px;
  height: 42%;

  background: var(--accent);
}


/* Scroll indicator */

.scroll-cue {
  position: absolute;

  left: 28px;
  bottom: 34px;

  color: var(--muted);

  font-size: 0.78rem;

  letter-spacing: 0.04em;
}

.scroll-cue span {
  display: inline-block;

  margin-left: 6px;

  color: var(--accent);

  animation:
    cue 1.8s ease-in-out infinite;
}

@keyframes cue {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(4px);
  }

}


/* =========================================================
   01 / ABOUT
   ========================================================= */

.split-section {
  display: grid;

  grid-template-columns:
    0.33fr 1fr;

  gap: 70px;
}

.section-content .lead {
  color: #dad4cc;

  font-size: 1.17rem;
}

.section-content p:not(.lead) {
  max-width: 780px;

  color: var(--muted);
}


/* =========================================================
   02 / EXPERIENCE
   ========================================================= */

.company-block {
  padding-top: 38px;

  border-top: 1px solid var(--line);
}

.company-block + .company-block {
  margin-top: 54px;
}

.company-heading {
  display: flex;

  align-items: flex-start;
  justify-content: space-between;

  gap: 30px;
}

.company {
  margin-bottom: 6px;

  color: var(--accent);

  font-size: 0.86rem;

  font-weight: 650;
}

.company-heading h3 {
  margin: 0;

  font-size: 1.62rem;
}

.company-dates {
  color: var(--muted);

  font-size: 0.86rem;

  white-space: nowrap;
}


/* Promotion badge */

.badge {
  display: inline-block;

  vertical-align: middle;

  margin-left: 8px;

  padding: 4px 7px;

  color: var(--accent);

  background:
    var(--accent-soft);

  border:
    1px solid
    rgba(197, 111, 67, 0.45);

  font-size: 0.58rem;

  font-weight: 800;

  letter-spacing: 0.11em;

  text-transform: uppercase;
}


/* Roles */

.role-stack {
  margin-top: 28px;

  border-top:
    1px solid var(--line);
}

.role {
  display: grid;

  grid-template-columns:
    0.36fr 1fr;

  gap: 38px;

  padding: 26px 0;

  border-bottom:
    1px solid var(--line);
}

.role-meta {
  display: flex;

  flex-direction: column;

  gap: 5px;
}

.role-meta strong {
  font-size: 0.95rem;
}

.role-meta span,
.role p,
.company-summary {
  color: var(--muted);
}

.role-meta span {
  font-size: 0.82rem;
}

.role p {
  margin: 0;
}

.role-secondary {
  opacity: 0.9;
}

.company-summary {
  max-width: 850px;

  margin: 24px 0 0;

  font-size: 1rem;
}


/* =========================================================
   03 / WHY ME
   ========================================================= */

#why-me {
  position: relative;
}


/* Subtle copper glow */

#why-me::before {
  content: "";

  position: absolute;

  top: 0;
  right: 8%;

  width: 260px;
  height: 260px;

  background:
    radial-gradient(
      circle,
      rgba(197, 111, 67, 0.08),
      transparent 68%
    );

  pointer-events: none;
}


/* Intro */

#why-me .section-intro {
  max-width: 680px;

  margin:
    -14px
    0
    50px
    auto;

  color: var(--muted);

  font-size: 1.08rem;

  line-height: 1.75;
}


/* Cards grid */

.value-grid {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  border-top:
    1px solid var(--line);

  border-left:
    1px solid var(--line);
}


/* Individual Why Me card */

.value-card {
  position: relative;

  overflow: hidden;

  min-height: 320px;

  padding: 38px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.018),
      rgba(255, 255, 255, 0.005)
    );

  border-right:
    1px solid var(--line);

  border-bottom:
    1px solid var(--line);

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}


/* Giant decorative background number */

.value-card::before {
  content:
    attr(data-number);

  position: absolute;

  right: 24px;
  bottom: -35px;

  color:
    rgba(255, 255, 255, 0.025);

  font-size: 9rem;

  font-weight: 800;

  line-height: 1;

  pointer-events: none;
}


/* Copper line on hover */

.value-card::after {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 0;
  height: 2px;

  background: var(--accent);

  transition:
    width 0.3s ease;
}

.value-card:hover {
  transform:
    translateY(-4px);

  background:
    linear-gradient(
      145deg,
      rgba(197, 111, 67, 0.06),
      rgba(255, 255, 255, 0.015)
    );

  border-color:
    rgba(197, 111, 67, 0.25);
}

.value-card:hover::after {
  width: 100%;
}


/* Small number circle */

.value-number {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 36px;
  height: 36px;

  color: var(--accent);

  border:
    1px solid
    rgba(197, 111, 67, 0.35);

  border-radius: 50%;

  font-size: 0.7rem;

  font-weight: 700;
}


/* Card heading */

.value-card h3 {
  position: relative;

  z-index: 1;

  margin:
    52px
    0
    16px;

  color: var(--text);

  font-size: 1.5rem;

  font-weight: 620;

  letter-spacing: -0.025em;
}


/* Card body */

.value-card p {
  position: relative;

  z-index: 1;

  max-width: 510px;

  margin: 0;

  color: var(--muted);

  font-size: 0.97rem;

  line-height: 1.75;
}


/* Slight variation between cards */

.value-card:nth-child(1),
.value-card:nth-child(3) {
  background:
    linear-gradient(
      145deg,
      rgba(197, 111, 67, 0.035),
      rgba(255, 255, 255, 0.008)
    );
}


/* Values strip */

.values-strip {
  display: grid;

  grid-template-columns:
    0.28fr
    1fr;

  gap: 34px;

  align-items: center;

  margin-top: 28px;

  padding:
    24px
    28px;

  border:
    1px solid var(--line);

  background:
    rgba(255, 255, 255, 0.01);
}

.values-label {
  color: var(--accent);

  font-size: 0.72rem;

  font-weight: 700;

  letter-spacing: 0.15em;

  text-transform: uppercase;
}

.values-list {
  display: flex;

  flex-wrap: wrap;

  gap:
    10px
    18px;

  color: #d9d4cc;

  font-size: 0.93rem;
}

.values-list span {
  position: relative;

  padding-right: 18px;
}

.values-list span:not(:last-child)::after {
  content: "·";

  position: absolute;

  right: 0;

  color: var(--accent);
}


/* =========================================================
   04 / EXPERTISE
   ========================================================= */

.expertise-grid {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  border-top:
    1px solid var(--line);

  border-left:
    1px solid var(--line);
}

.card {
  min-height: 245px;

  padding: 32px;

  background:
    rgba(255, 255, 255, 0.01);

  border-right:
    1px solid var(--line);

  border-bottom:
    1px solid var(--line);

  transition:
    background 0.18s ease,
    transform 0.18s ease;
}

.card:hover {
  transform:
    translateY(-2px);

  background:
    var(--surface-hover);
}

.card-number {
  color: var(--accent);

  font-size: 0.72rem;
}

.card h3 {
  margin:
    42px
    0
    12px;

  font-size: 1.42rem;
}

.card p {
  max-width: 470px;

  margin-bottom: 0;

  color: var(--muted);
}


/* =========================================================
   05 / SELECTED RESPONSIBILITIES
   ========================================================= */

.responsibility-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  border-top:
    1px solid var(--line);
}

.responsibility {
  min-height: 190px;

  padding:
    28px
    24px;

  border-right:
    1px solid var(--line);

  border-bottom:
    1px solid var(--line);
}

.responsibility:last-child {
  border-right: 0;
}

.responsibility h3 {
  margin-bottom: 14px;

  font-size: 1.08rem;
}

.responsibility p {
  margin: 0;

  color: var(--muted);

  font-size: 0.92rem;
}


/* =========================================================
   06 / TECHNOLOGY
   ========================================================= */

.tech-grid {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  border-top:
    1px solid var(--line);
}

.tech-group {
  padding: 32px 0;

  border-bottom:
    1px solid var(--line);
}

.tech-group:nth-child(odd) {
  padding-right: 32px;

  border-right:
    1px solid var(--line);
}

.tech-group:nth-child(even) {
  padding-left: 32px;
}

.tech-group span {
  color: var(--accent);

  font-size: 0.7rem;

  font-weight: 700;

  letter-spacing: 0.13em;

  text-transform: uppercase;
}

.tech-group p {
  margin: 11px 0 0;

  font-size: 1.08rem;
}


/* =========================================================
   07 / WHY SWITZERLAND
   ========================================================= */

.switzerland-section {
  position: relative;

  overflow: hidden;

  padding-top: 125px;
  padding-bottom: 125px;

  background:
    radial-gradient(
      circle at 85% 30%,
      rgba(197, 111, 67, 0.07),
      transparent 32rem
    );
}


/* Decorative Swiss cross */

.switzerland-section::before {
  content: "";

  position: absolute;

  right: 40px;
  top: 90px;

  width: 150px;
  height: 150px;

  opacity: 0.035;

  background:

    linear-gradient(
      to right,
      transparent 36%,
      var(--text) 36%,
      var(--text) 64%,
      transparent 64%
    ),

    linear-gradient(
      to bottom,
      transparent 36%,
      var(--text) 36%,
      var(--text) 64%,
      transparent 64%
    );

  pointer-events: none;
}


/* Main Why Switzerland panel */

.switzerland-layout {
  position: relative;

  display: grid;

  grid-template-columns:
    0.78fr
    1.22fr;

  gap: 90px;

  margin-top: 15px;

  padding: 54px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.025),
      rgba(255, 255, 255, 0.008)
    );

  border:
    1px solid var(--line);
}


/* Copper detail on top */

.switzerland-layout::before {
  content: "";

  position: absolute;

  top: -1px;
  left: -1px;

  width: 95px;
  height: 2px;

  background:
    var(--accent);
}


/* Left column */

.switzerland-statement {
  position: relative;
}

.switzerland-kicker {
  max-width: 390px;

  margin-bottom: 0;

  color: #ddd7cf;

  font-size: 1.3rem;

  font-weight: 500;

  line-height: 1.45;

  letter-spacing: -0.02em;
}


/* Big statement */

.switzerland-statement blockquote {
  position: relative;

  margin:
    64px
    0
    0;

  padding: 0;

  color: var(--text);

  border: 0;

  font-size:
    clamp(
      2rem,
      3.4vw,
      3rem
    );

  font-weight: 600;

  line-height: 1.08;

  letter-spacing: -0.045em;
}


/* Copper line above quote */

.switzerland-statement blockquote::before {
  content: "";

  display: block;

  width: 42px;
  height: 2px;

  margin-bottom: 24px;

  background:
    var(--accent);
}


/* Right column */

.switzerland-copy {
  padding-left: 50px;

  border-left:
    1px solid var(--line);
}

.switzerland-copy p {
  max-width: 700px;

  margin-bottom: 26px;

  color: var(--muted);

  font-size: 1.02rem;

  line-height: 1.85;
}


/* Slight emphasis on first paragraph */

.switzerland-copy p:first-child {
  color: #d3cec6;
}


/* Editorial first letter */

.switzerland-copy p:first-child::first-letter {
  color: var(--accent);

  font-size: 3rem;

  font-weight: 650;

  line-height: 0.8;
}

.switzerland-copy p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   08 / BACKGROUND
   ========================================================= */

.background-grid {
  display: grid;

  grid-template-columns:
    0.9fr
    1.25fr
    0.65fr;

  gap: 42px;
}

.background-column {
  padding-top: 24px;

  border-top:
    1px solid var(--line);
}

.background-label {
  margin-bottom: 22px;
}

.compact-item {
  display: flex;

  flex-direction: column;

  gap: 3px;

  padding: 14px 0;

  border-bottom:
    1px solid var(--line);
}

.compact-item span {
  color: var(--muted);

  font-size: 0.85rem;
}


/* =========================================================
   09 / OUTSIDE CYBERSECURITY
   ========================================================= */

#outside-cybersecurity {
  position: relative;
}

.hobbies-intro {
  max-width: 650px;
}

.hobbies-grid {
  display: grid;

  grid-template-columns:
    repeat(5, 1fr);

  border-top:
    1px solid var(--line);

  border-left:
    1px solid var(--line);
}

.hobby-card {
  min-height: 210px;

  padding:
    28px
    24px;

  background:
    rgba(255, 255, 255, 0.008);

  border-right:
    1px solid var(--line);

  border-bottom:
    1px solid var(--line);

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.hobby-card:hover {
  transform:
    translateY(-3px);

  background:
    linear-gradient(
      145deg,
      rgba(197, 111, 67, 0.045),
      rgba(255, 255, 255, 0.01)
    );
}

.hobby-index {
  color: var(--accent);

  font-size: 0.7rem;

  font-weight: 700;
}

.hobby-card h3 {
  margin:
    44px
    0
    12px;

  font-size: 1.18rem;

  line-height: 1.2;
}

.hobby-card p {
  margin: 0;

  color: var(--muted);

  font-size: 0.86rem;

  line-height: 1.65;
}


/* References */

.references-line {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 24px;

  margin-top: 28px;

  padding:
    22px
    0;

  border-top:
    1px solid var(--line);

  color: var(--muted);

  font-size: 0.9rem;
}

.references-label {
  color: var(--accent);

  font-size: 0.72rem;

  font-weight: 700;

  letter-spacing: 0.15em;

  text-transform: uppercase;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-section {
  padding-top: 125px;

  padding-bottom: 125px;
}

.contact-box {
  max-width: 900px;
}

.contact-box p {
  max-width: 720px;

  color: var(--muted);

  font-size: 1.05rem;
}

.contact-actions a {
  margin-right: 25px;

  padding: 10px 0;

  border-bottom:
    1px solid var(--accent);

  font-weight: 650;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  display: flex;

  justify-content: space-between;

  gap: 20px;

  max-width: var(--max);

  margin: 0 auto;

  padding: 28px;

  color: var(--muted);

  font-size: 0.8rem;
}


/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */

.reveal {
  opacity: 0;

  transform:
    translateY(12px);

  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;

  transform: none;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1080px) {

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

}


@media (max-width: 920px) {

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

  .responsibility:nth-child(2) {
    border-right: 0;
  }

  .switzerland-layout {
    gap: 42px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 820px) {

  /* Header */

  .site-header {
    padding: 20px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;

    top: 69px;

    left: 20px;
    right: 20px;

    display: none;

    flex-direction: column;

    align-items: stretch;

    gap: 0;

    padding: 10px;

    background: #171613;

    border:
      1px solid var(--line);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 13px 10px;

    border-bottom:
      1px solid var(--line);
  }

  .nav a:last-child {
    border-bottom: 0;
  }


  /* Sections */

  .section {
    padding:
      80px
      20px;
  }

  .section-heading {
    flex-direction: column;

    align-items: start;

    gap: 16px;
  }

  .section-intro {
    margin:
      -12px
      0
      34px;
  }


  /* Hero */

  .hero {
    min-height: auto;

    grid-template-columns: 1fr;

    gap: 42px;

    padding-top: 64px;

    padding-bottom: 110px;
  }

  .hero h1 {
    font-size:
      clamp(
        3.8rem,
        21vw,
        5.6rem
      );
  }

  .hero-photo-wrap {
    width:
      min(
        80%,
        350px
      );

    justify-self: start;
  }


  /* About */

  .split-section {
    grid-template-columns: 1fr;

    gap: 28px;
  }


  /* Experience */

  .role {
    grid-template-columns: 1fr;

    gap: 12px;
  }

  .company-heading {
    flex-direction: column;

    gap: 10px;
  }

  .company-dates {
    white-space: normal;
  }


  /* Why Me */

  .value-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: auto;

    padding:
      30px
      26px
      34px;
  }

  .value-card h3 {
    margin-top: 38px;
  }

  .value-card::before {
    font-size: 7rem;
  }

  .values-strip {
    grid-template-columns: 1fr;

    gap: 16px;
  }

  .values-list {
    gap:
      8px
      14px;
  }


  /* Expertise */

  .expertise-grid {
    grid-template-columns: 1fr;
  }


  /* Responsibilities */

  .responsibility-grid {
    grid-template-columns: 1fr;
  }

  .responsibility,
  .responsibility:nth-child(2) {
    border-right: 0;
  }


  /* Technology */

  .tech-grid {
    grid-template-columns: 1fr;
  }

  .tech-group,
  .tech-group:nth-child(odd),
  .tech-group:nth-child(even) {
    padding: 26px 0;

    border-right: 0;
  }


  /* Why Switzerland */

  .switzerland-section {
    padding-top: 90px;

    padding-bottom: 90px;
  }

  .switzerland-section::before {
    width: 100px;
    height: 100px;

    top: 60px;
    right: -15px;
  }

  .switzerland-layout {
    grid-template-columns: 1fr;

    gap: 44px;

    padding:
      34px
      26px;
  }

  .switzerland-statement blockquote {
    margin-top: 36px;
  }

  .switzerland-copy {
    padding-left: 0;

    padding-top: 38px;

    border-left: 0;

    border-top:
      1px solid var(--line);
  }


  /* Background */

  .background-grid {
    grid-template-columns: 1fr;
  }


  /* Outside Cybersecurity */

  .hobbies-grid {
    grid-template-columns: 1fr;
  }

  .hobby-card {
    min-height: auto;

    padding:
      26px
      22px
      30px;
  }

  .hobby-card h3 {
    margin-top: 32px;
  }

  .references-line {
    flex-direction: column;

    align-items: flex-start;

    gap: 8px;
  }


  /* Scroll indicator */

  .scroll-cue {
    left: 20px;

    bottom: 30px;
  }


  /* Footer */

  .site-footer {
    flex-direction: column;

    padding:
      24px
      20px;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;

    transform: none;

    transition: none;
  }

  .scroll-cue span {
    animation: none;
  }

}
