@font-face{
  font-family: "Gotham Pro";
  src: url("assets/fonts/gotham-pro-light.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face{
  font-family: "Gotham Pro";
  src: url("assets/fonts/gotham-pro-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face{
  font-family: "Gotham Pro";
  src: url("assets/fonts/gotham-pro-medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face{
  font-family: "Gotham Pro";
  src: url("assets/fonts/gotham-pro-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face{
  font-family: "Prata";
  src: url("assets/fonts/prata-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root{
  --bg: #080b12;
  --bg-2: #0b1020;
  --bg-wine: #1a0f0d;
  --text: #f2efe7;
  --text-muted: rgba(242, 239, 231, 0.68);
  --accent: #c8a96a;
  --accent-soft: #d8c28f;
  --accent-line: rgba(200, 169, 106, 0.34);
  --panel: rgba(255, 255, 255, 0.052);
  --panel-strong: rgba(255, 255, 255, 0.085);
  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.22);
  --ink: var(--bg);
  --graphite: var(--bg-wine);
  --petrol: var(--bg-wine);
  --petrol-deep: var(--bg);
  --paper: var(--text);
  --porcelain: var(--text);
  --muted: rgba(8, 11, 18, 0.68);
  --line: var(--accent-line);
  --line-light: var(--accent-line);
  --gold: var(--accent);
  --gold-soft: var(--accent-soft);
  --wine-deep: var(--bg);
  --burgundy: var(--bg-wine);
  --blush: var(--accent-soft);
  --copper: var(--accent);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(8, 11, 18, 0.26);
  --radius: 8px;
  --max: 1180px;
  --serif: "Prata", Georgia, "Times New Roman", serif;
  --sans: "Gotham Pro", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --hero-bg-main: #080707;
  --hero-bg-wine: #1c0b0a;
  --hero-bg-wine-deep: #1c0b0a;
  --hero-bg-wine-soft: #2a100d;
  --hero-text-main: #f2efe7;
  --hero-text-muted: rgba(242, 239, 231, 0.72);
  --hero-text-soft: rgba(242, 239, 231, 0.58);
  --hero-accent: #f0b76b;
  --hero-accent-soft: #f6c982;
  --hero-accent-dark: #c8843f;
  --hero-accent-muted: rgba(240, 183, 107, 0.72);
  --wine-section-background:
    radial-gradient(circle at 78% 18%, rgba(240, 173, 91, 0.12), transparent 30%),
    radial-gradient(circle at 20% 86%, rgba(249, 204, 138, 0.06), transparent 30%),
    linear-gradient(120deg, #0f0f11 0%, #2a0f0d 62%, #160807 100%);
  --hero-border: rgba(246, 201, 130, 0.2);
  --hero-border-strong: rgba(246, 201, 130, 0.34);
  --hero-glass: rgba(22, 15, 13, 0.56);
  --hero-glass-soft: rgba(20, 14, 13, 0.42);
  --hero-glass-bg: var(--hero-glass);
  --hero-glass-bg-soft: var(--hero-glass-soft);
  --hero-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --hero-shadow-soft: var(--hero-shadow);
  --hero-shadow-card: 0 18px 54px rgba(0, 0, 0, 0.34);
  --hero-page-pad: clamp(24px, 4vw, 58px);
}

*{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.62;
}

#skills,
#portfolio,
#about,
#experience,
#education,
#contact{
  scroll-margin-top: 0;
}

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

button,
a{
  -webkit-tap-highlight-color: transparent;
}

button{
  font: inherit;
}

img{
  display: block;
  max-width: 100%;
}

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

.section-dark{
  color: var(--porcelain);
  background:
    linear-gradient(115deg, rgba(15, 15, 17, 0.98), rgba(42, 15, 13, 0.94) 58%, rgba(42, 15, 13, 0.86)),
    var(--petrol-deep);
}

.section-light{
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(242, 239, 231, 0.99), rgba(200, 169, 106, 0.14)),
    var(--paper);
}

.button{
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

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

.button-outline-light:hover{
  border-color: rgba(216, 194, 143, 0.72);
  color: var(--gold-soft);
  background: rgba(242, 239, 231, 0.08);
}

.button-outline-light{
  color: var(--porcelain);
  border: 1px solid rgba(216, 194, 143, 0.48);
  background: rgba(242, 239, 231, 0.03);
}

.button-icon{
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.skills,
.education{
  display: grid;
  padding: 92px max(32px, calc((100vw - var(--max)) / 2));
  grid-template-columns: 0.72fr 1fr 1fr;
  gap: 54px;
  align-items: start;
}

.section-heading span{
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-heading h2{
  margin: 0;
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 400;
  line-height: 1.05;
}

.contact p{
  margin: 0 0 22px;
  color: var(--graphite);
  font-size: 16px;
}

.skills-grid,
.education-grid{
  display: grid;
  gap: 18px;
}

.skill-card,
.education-card{
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 132px;
  padding: 20px;
  border: 1px solid rgba(242, 239, 231, 0.78);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 16% 0%, rgba(242, 239, 231, 0.98), transparent 34%),
    radial-gradient(circle at 92% 100%, rgba(42, 15, 13, 0.1), transparent 36%),
    linear-gradient(135deg, rgba(242, 239, 231, 0.76), rgba(216, 194, 143, 0.22)),
    rgba(255, 240, 227, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -18px 34px rgba(44, 15, 18, 0.035),
    0 24px 54px rgba(42, 15, 13, 0.1),
    0 5px 15px rgba(42, 15, 13, 0.05);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
}

.skill-card::before,
.education-card::before{
  position: absolute;
  inset: 1px;
  z-index: -1;
  content: "";
  border-radius: calc(var(--radius) - 1px);
  background:
    linear-gradient(130deg, rgba(242, 239, 231, 0.78), transparent 40%, rgba(42, 15, 13, 0.08)),
    linear-gradient(300deg, transparent 0%, rgba(255, 255, 255, 0.32) 48%, transparent 72%);
  pointer-events: none;
}

.skill-card::after,
.education-card::after{
  position: absolute;
  top: -52px;
  left: -26%;
  z-index: -1;
  width: 150%;
  height: 92px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  opacity: 0.5;
  transform: rotate(-8deg);
  pointer-events: none;
}

.skill-icon,
.education-icon{
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--burgundy);
  border: 1px solid rgba(42, 15, 13, 0.3);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.95), transparent 45%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.18));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 12px 24px rgba(42, 15, 13, 0.1);
  backdrop-filter: blur(12px) saturate(1.25);
  -webkit-backdrop-filter: blur(12px) saturate(1.25);
}

.skill-icon svg,
.education-icon svg{
  width: 20px;
  height: 20px;
}

.skill-card h3,
.education-card h3{
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

.skill-card p,
.education-card p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.experience{
  position: relative;
  overflow: hidden;
  padding: 92px max(32px, calc((100vw - var(--max)) / 2));
}

.experience::before{
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(216, 194, 143, 0.06) 0 1px, transparent 1px 120px),
    linear-gradient(180deg, rgba(216, 194, 143, 0.08), transparent 34%);
  opacity: 0.45;
}

.skills{
  grid-template-columns: 0.62fr 1.38fr;
}

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

.skills-subtitle,
.skills-mobile{
  display: none;
}

.education-grid{
  grid-column: span 2;
  grid-template-columns: repeat(4, 1fr);
}

.education.skills .education-grid{
  grid-column: auto;
}

.site-footer{
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px max(32px, calc((100vw - var(--max)) / 2));
  color: rgba(242, 239, 231, 0.7);
  background: var(--petrol-deep);
  font-size: 13px;
}

.text-reveal{
  opacity: 1;
}

.text-reveal-line{
  display: block;
  overflow: hidden;
}

.text-reveal-line-inner{
  display: inline-block;
  opacity: 0;
  transform: translateY(110%);
  will-change: transform, opacity;
}

.text-reveal.is-gsap-text .text-reveal-line-inner{
  transform: none;
}

.text-reveal.is-text-visible .text-reveal-line-inner{
  animation: textRevealUp var(--text-reveal-duration, 1s) cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--line-index, 0) * 80ms + var(--text-reveal-delay, 0ms));
}

@keyframes textRevealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {

.skills,
.education{
    grid-template-columns: 1fr;
  }

  .education-grid{
    grid-column: auto;
    grid-template-columns: 1fr 1fr;
  }

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

}

@media (max-width: 720px) {
  body{
    font-size: 15px;
  }

  .button{
    width: 100%;
    min-height: clamp(38px, 5svh, 42px);
    padding: 10px 13px;
    font-size: 13px;
  }

.skills,
.education,
.experience{
    padding: 64px 20px;
  }

  .section-heading h2{
    font-size: 36px;
  }

.skills-grid,
.education-grid{
    grid-template-columns: 1fr;
  }

  .site-footer{
    flex-direction: column;
    padding: 24px 20px;
  }

}

@media (max-width: 380px), (max-height: 700px) and (max-width: 720px) {

  .button-icon{
    width: 15px;
    height: 15px;
  }
}

@media (min-width: 1200px) {
  .skills{
    position: relative;
    overflow: hidden;
    display: grid;
    align-items: center;
    color: #080b12;
    background:
      radial-gradient(circle at 78% 38%, rgba(236, 211, 180, 0.32), transparent 38%),
      radial-gradient(circle at 18% 78%, rgba(223, 195, 160, 0.22), transparent 42%),
      linear-gradient(135deg, #f7f3eb 0%, #f2efe7 46%, #ece4d5 100%);
  }

  .skills::before{
    position: absolute;
    inset: 0;
    content: "";
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.32), transparent 34%, transparent 70%, rgba(255, 255, 255, 0.14)),
      radial-gradient(circle at 52% 12%, rgba(255, 255, 255, 0.45), transparent 30%);
    opacity: 0.72;
    pointer-events: none;
  }

  .skills > *{
    position: relative;
    z-index: 1;
  }

  .skills .section-heading{
    max-width: 430px;
  }

  .skills .section-heading span{
    display: none;
  }

  .skills .section-heading h2{
    margin: 0;
    color: #080b12;
    font-family: var(--serif);
    font-weight: 500;
  }

  .skills .section-heading h2::after{
    display: block;
    width: 58px;
    height: 1px;
    margin-top: clamp(24px, 2vw, 34px);
    content: "";
    background: #c8a96a;
    opacity: 0.72;
  }

  .skills-subtitle{
    display: block;
    margin: clamp(28px, 2.4vw, 42px) 0 0;
    color: rgba(8, 11, 18, 0.66);
    font-weight: 400;
  }

  .skills-grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .skills-mobile{
    display: none;
  }

  .skills .skill-card{
    position: relative;
    display: flex;
    overflow: visible;
    flex-direction: column;
    isolation: auto;
    border: 1px solid rgba(200, 169, 106, 0.22);
    background:
      linear-gradient(155deg, rgba(255, 255, 255, 0.42), rgba(255, 252, 246, 0.2)),
      rgba(255, 252, 246, 0.58);
    box-shadow: 0 22px 70px rgba(91, 62, 34, 0.1);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .skills .skill-card::before,
  .skills .skill-card::after{
    display: none;
  }

  .skills .skill-icon{
    display: grid;
    place-items: center;
    color: #c8a96a;
    border: 1px solid rgba(200, 169, 106, 0.18);
    border-radius: 50%;
    background: rgba(255, 252, 246, 0.74);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.78),
      0 16px 36px rgba(82, 54, 28, 0.1);
  }

  .skills .skill-icon svg{
    stroke: currentColor;
    stroke-width: 1.7;
  }

  .skills .skill-card h3{
    max-width: 100%;
    margin: 0;
    color: #080b12;
    font-family: var(--serif);
    font-weight: 500;
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }

  .skills .skill-card h3::after{
    display: block;
    width: 54px;
    height: 1px;
    content: "";
    background: #c8a96a;
    opacity: 0.7;
  }

  #skills .skill-card h3{
    position: relative;
    height: calc(3.24em + clamp(24px, 2vw, 34px) + 1px);
    padding-bottom: calc(clamp(24px, 2vw, 34px) + 1px);
  }

  #skills .skill-card h3::after{
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .skills .skill-card p{
    max-width: 230px;
    margin: clamp(28px, 2.5vw, 42px) 0 0;
    color: rgba(8, 11, 18, 0.66);
    font-weight: 400;
  }

  .education.skills .education-card h3{
    position: relative;
    display: block;
    height: calc(3.24em + clamp(24px, 2vw, 34px) + 1px);
    padding-bottom: calc(clamp(24px, 2vw, 34px) + 1px);
  }

  .education.skills .education-card h3::after{
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .education.skills .education-card p{
    margin-top: clamp(28px, 2.5vw, 42px);
  }
}

@media (min-width: 1600px) {
  .skills{
    padding: clamp(78px, 5.8vw, 112px) max(48px, calc((100vw - 1680px) / 2));
    grid-template-columns: minmax(300px, 430px) minmax(0, 1fr);
    gap: clamp(40px, 4.5vw, 86px);
  }

  .skills .section-heading h2{
    font-size: clamp(64px, 4.3vw, 86px);
    line-height: 0.96;
    letter-spacing: -0.028em;
  }

  .skills-subtitle{
    font-size: 20px;
    line-height: 1.66;
  }

  .skills-grid{
    gap: clamp(14px, 1.2vw, 24px);
  }

  .skills .skill-card{
    min-height: clamp(430px, 26vw, 520px);
    padding: 82px 34px 46px;
    border-radius: 24px;
  }

  .skills .skill-icon{
    width: clamp(52px, 3.4vw, 68px);
    height: clamp(52px, 3.4vw, 68px);
    margin-bottom: clamp(64px, 5.4vw, 86px);
  }

  .skills .skill-icon svg{
    width: clamp(20px, 1.35vw, 26px);
    height: clamp(20px, 1.35vw, 26px);
  }

  .skills .skill-card h3{
    font-size: clamp(21px, 1.2vw, 22px);
    line-height: 1.18;
    letter-spacing: -0.018em;
  }

  .skills .skill-card p{
    font-size: clamp(14px, 0.9vw, 15.5px);
    line-height: 1.66;
  }

}

@media (min-width: 1440px) and (max-width: 1599px) {
  .skills{
    padding: 76px max(48px, calc((100vw - 1440px) / 2));
    grid-template-columns: clamp(350px, 24vw, 390px) minmax(0, 1fr);
    gap: clamp(50px, 3.65vw, 60px);
  }

  .skills .section-heading h2{
    font-size: clamp(58px, 4.2vw, 76px);
    line-height: 0.96;
    letter-spacing: -0.028em;
  }

  .skills-subtitle{
    font-size: 18px;
    line-height: 1.66;
  }

  .skills-grid{
    gap: 20px;
  }

  .skills .skill-card{
    min-height: 440px;
    padding: 76px 22px 42px;
    border-radius: 22px;
  }

  .skills .skill-icon{
    width: clamp(52px, 3.4vw, 68px);
    height: clamp(52px, 3.4vw, 68px);
    margin-bottom: clamp(64px, 5.4vw, 86px);
  }

  .skills .skill-icon svg{
    width: clamp(20px, 1.35vw, 26px);
    height: clamp(20px, 1.35vw, 26px);
  }

  .skills .skill-card h3{
    font-size: clamp(18px, 1.2vw, 20px);
    line-height: 1.18;
    letter-spacing: -0.018em;
  }

  .skills .skill-card p{
    font-size: 15px;
    line-height: 1.66;
  }

}

@media (min-width: 1200px) and (max-width: 1439px) {
  .skills{
    padding: 70px max(36px, calc((100vw - 1280px) / 2));
    grid-template-columns: clamp(350px, 25.5vw, 370px) minmax(0, 1fr);
    gap: clamp(42px, 3.2vw, 50px);
  }

  .skills .section-heading h2{
    font-size: clamp(56px, 4.1vw, 60px);
    line-height: 0.96;
    letter-spacing: -0.028em;
  }

  .skills-subtitle{
    font-size: 17px;
    line-height: 1.66;
  }

  .skills-grid{
    gap: clamp(14px, 1.1vw, 18px);
  }

  .skills .skill-card{
    min-height: 390px;
    padding: 66px 17px 34px;
    border-radius: 20px;
  }

  .skills .skill-icon{
    width: clamp(52px, 3.4vw, 68px);
    height: clamp(52px, 3.4vw, 68px);
    margin-bottom: clamp(64px, 5.4vw, 86px);
  }

  .skills .skill-icon svg{
    width: clamp(20px, 1.35vw, 26px);
    height: clamp(20px, 1.35vw, 26px);
    stroke-width: 1.6;
  }

  .skills .skill-card h3{
    font-size: 18px;
    line-height: 1.18;
    letter-spacing: -0.018em;
  }

  .skills .skill-card p{
    font-size: 14px;
    line-height: 1.66;
  }

}

@media (min-width: 1200px) and (hover: hover) and (pointer: fine) {
  .skills .skill-card{
    transition:
      transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 520ms cubic-bezier(0.16, 1, 0.3, 1),
      border-color 520ms cubic-bezier(0.16, 1, 0.3, 1),
      background 520ms cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
  }

  .skills .skill-icon{
    transition:
      color 520ms cubic-bezier(0.16, 1, 0.3, 1),
      transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .skills .skill-card:hover{
    transform: translateY(-8px) scale(1.014);
    border-color: rgba(200, 169, 106, 0.46);
    background: rgba(255, 252, 246, 0.76);
    box-shadow: 0 34px 90px rgba(91, 62, 34, 0.16);
  }

  .skills .skill-card:hover .skill-icon{
    color: #b77d3f;
    transform: translateY(-2px);
  }
}

@media (min-width: 761px) and (max-width: 1199px) {
  .skills{
    position: relative;
    display: block;
    overflow: hidden;
    min-height: auto;
    padding: clamp(54px, 6svh, 72px) 0;
    color: #080b12;
    background:
      radial-gradient(circle at 78% 38%, rgba(236, 211, 180, 0.32), transparent 38%),
      radial-gradient(circle at 18% 78%, rgba(223, 195, 160, 0.22), transparent 42%),
      linear-gradient(135deg, #f7f3eb 0%, #f2efe7 46%, #ece4d5 100%);
  }

  .skills::before{
    position: absolute;
    inset: 0;
    content: "";
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.32), transparent 34%, transparent 70%, rgba(255, 255, 255, 0.14)),
      radial-gradient(circle at 52% 12%, rgba(255, 255, 255, 0.45), transparent 30%);
    opacity: 0.72;
    pointer-events: none;
  }

  .skills > *{
    position: relative;
    z-index: 1;
  }

  .skills .section-heading{
    width: min(calc(100% - 72px), 920px);
    max-width: none;
    margin: 0 auto;
  }

  .skills .section-heading span,
  .skills .section-heading h2::after,
  .skills-grid{
    display: none;
  }

  .skills .section-heading h2{
    margin: 0;
    color: #080b12;
    font-family: var(--serif);
    font-size: clamp(46px, 5.4vw, 60px);
    font-weight: 400;
    line-height: 0.96;
    letter-spacing: -0.024em;
  }

  .skills-subtitle{
    display: block;
    margin: clamp(18px, 2vw, 24px) 0 0;
    color: rgba(8, 11, 18, 0.66);
    font-size: clamp(17px, 1.65vw, 19px);
    font-weight: 400;
    line-height: 1.52;
  }

  .skills-mobile{
    position: relative;
    display: block;
    width: min(calc(100% - 72px), 920px);
    margin: clamp(32px, 4.2svh, 44px) auto 0;
  }

  .skills-accordion{
    position: relative;
    display: grid;
    gap: clamp(8px, 1vw, 11px);
    overflow-anchor: none;
  }

  .skills-accordion__item{
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(55, 24, 18, 0.12);
    border-radius: 14px;
    background: rgba(255, 252, 246, 0.48);
    box-shadow: 0 8px 28px rgba(91, 62, 34, 0.05);
    transition:
      background 300ms ease,
      border-color 300ms ease,
      box-shadow 300ms ease;
  }

  .skills-accordion__item::before{
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 0;
    width: 2px;
    content: "";
    border-radius: 0 999px 999px 0;
    background: transparent;
    transition: background 300ms ease;
  }

  .skills-accordion__item.is-open{
    border-color: rgba(200, 169, 106, 0.24);
    background: rgba(255, 252, 246, 0.72);
    box-shadow: 0 12px 36px rgba(91, 62, 34, 0.07);
  }

  .skills-accordion__item.is-open::before{
    background: rgba(200, 169, 106, 0.86);
  }

  .skills-accordion__header{
    display: grid;
    min-height: clamp(62px, 7svh, 70px);
    width: 100%;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: clamp(17px, 2vw, 20px) clamp(20px, 2.5vw, 24px);
    color: #080b12;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
  }

  .skills-accordion__title{
    min-width: 0;
    color: #080b12;
    font-family: var(--serif);
    font-size: clamp(19px, 1.85vw, 21px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.014em;
    text-align: left;
    hyphens: none;
  }

  .skills-accordion__control{
    position: relative;
    width: 18px;
    height: 18px;
    color: rgba(55, 24, 18, 0.72);
    font-size: 0;
  }

  .skills-accordion__control::before,
  .skills-accordion__control::after{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 1px;
    content: "";
    border-radius: 999px;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: transform 280ms ease, opacity 240ms ease, color 280ms ease;
  }

  .skills-accordion__control::after{
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .skills-accordion__item.is-open .skills-accordion__control{
    color: #c8a96a;
  }

  .skills-accordion__item.is-open .skills-accordion__control::after{
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .skills-accordion__body-wrap{
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transform: translateY(5px);
    transition:
      grid-template-rows 460ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 300ms ease,
      transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .skills-accordion__body-inner{
    min-height: 0;
    overflow: hidden;
  }

  .skills-accordion__item.is-open .skills-accordion__body-wrap{
    grid-template-rows: 1fr;
    opacity: 1;
    transform: translateY(0);
  }

  .skills-accordion__body{
    margin: 0;
    padding: 0 clamp(20px, 2.5vw, 24px) clamp(18px, 2.2vw, 22px);
    color: rgba(47, 39, 34, 0.8);
    font-size: clamp(15px, 1.45vw, 16.5px);
    font-weight: 400;
    line-height: 1.56;
  }

  .education-mobile-list{
    display: grid;
    overflow: hidden;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid rgba(55, 24, 18, 0.12);
    border-radius: 14px;
    background: rgba(255, 252, 246, 0.4);
  }

  .education-mobile-list__item{
    min-width: 0;
    padding: clamp(20px, 2.5vw, 26px);
  }

  .education-mobile-list__item:nth-child(even){
    border-left: 1px solid rgba(55, 24, 18, 0.1);
  }

  .education-mobile-list__item:nth-child(n + 3){
    border-top: 1px solid rgba(55, 24, 18, 0.1);
  }

  .education-mobile-list__title{
    margin: 0;
    color: #151413;
    font-family: var(--serif);
    font-size: clamp(18px, 1.8vw, 21px);
    font-weight: 400;
    line-height: 1.25;
  }

  .education-mobile-list__text{
    margin: 9px 0 0;
    color: rgba(47, 39, 34, 0.78);
    font-family: var(--sans);
    font-size: clamp(14.5px, 1.4vw, 16px);
    font-weight: 400;
    line-height: 1.55;
  }
}

@media (max-width: 760px) {
  .skills{
    display: block;
    min-height: auto;
    padding: clamp(52px, 7svh, 64px) 0 clamp(32px, 5svh, 48px);
    background:
      radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.72), transparent 34%),
      radial-gradient(circle at 70% 14%, rgba(236, 211, 180, 0.38), transparent 42%),
      radial-gradient(circle at 86% 78%, rgba(200, 169, 106, 0.12), transparent 34%),
      linear-gradient(135deg, #fbf6ee 0%, #f7f3eb 48%, #ece4d5 100%);
  }

  .skills .section-heading{
    width: min(calc(100% - 40px), 680px);
    max-width: none;
    margin: 0 auto;
  }

  .skills .section-heading span{
    display: none;
  }

  .skills .section-heading h2{
    margin: 0;
    color: #151413;
    font-family: var(--serif);
    font-size: clamp(36px, 10.1vw, 42px);
    font-weight: 400;
    line-height: 0.96;
    letter-spacing: -0.024em;
  }

  .skills-subtitle{
    display: block;
    max-width: 390px;
    margin: 16px 0 0;
    color: rgba(70, 55, 46, 0.72);
    font-family: var(--sans);
    font-size: clamp(14px, 3.7vw, 16px);
    font-weight: 400;
    line-height: 1.45;
  }

  .skills-grid{
    display: none;
  }

  .skills-mobile{
    position: relative;
    display: block;
    width: min(calc(100% - 40px), 680px);
    margin: clamp(24px, 3.8svh, 34px) auto 0;
  }

  .skills-accordion{
    position: relative;
    display: grid;
    min-width: 0;
    gap: 8px;
    overflow-anchor: none;
  }

  .skills-accordion__item{
    position: relative;
    overflow: hidden;
    min-height: auto;
    border: 1px solid rgba(55, 24, 18, 0.12);
    border-radius: 15px;
    background: rgba(255, 252, 246, 0.48);
    box-shadow: 0 6px 20px rgba(91, 62, 34, 0.045);
    transition:
      background 300ms ease,
      border-color 300ms ease,
      box-shadow 300ms ease;
  }

  .skills-accordion__item::before{
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: 0;
    width: 2px;
    content: "";
    border-radius: 0 999px 999px 0;
    background: transparent;
    transition: background 300ms ease;
  }

  .skills-accordion__item.is-open{
    border-color: rgba(200, 169, 106, 0.24);
    background: rgba(255, 252, 246, 0.72);
    box-shadow: 0 10px 28px rgba(91, 62, 34, 0.07);
  }

  .skills-accordion__item.is-open::before{
    background: rgba(200, 169, 106, 0.86);
  }

  .skills-accordion__header{
    position: relative;
    z-index: 2;
    display: grid;
    width: 100%;
    min-height: clamp(60px, 7.4svh, 66px);
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: clamp(16px, 4.2vw, 18px) clamp(18px, 4.7vw, 20px);
    color: inherit;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
  }

  .skills-accordion__title{
    display: block;
    min-width: 0;
    color: #151413;
    font-family: var(--serif);
    font-size: clamp(19.5px, 4.9vw, 21px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.014em;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }

  .skills-accordion__control{
    position: relative;
    display: block;
    width: 18px;
    height: 18px;
    color: rgba(55, 24, 18, 0.72);
    font-size: 0;
    line-height: 1;
  }

  .skills-accordion__control::before,
  .skills-accordion__control::after{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 1px;
    content: "";
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: transform 260ms ease, opacity 260ms ease;
  }

  .skills-accordion__control::after{
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .skills-accordion__item.is-open .skills-accordion__control{
    color: #c8a96a;
  }

  .skills-accordion__item.is-open .skills-accordion__control::after{
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
  }

  .skills-accordion__body-wrap{
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-rows: 0fr;
    transition:
      grid-template-rows 460ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 300ms ease,
      transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0;
    transform: translateY(5px);
  }

  .skills-accordion__body-inner{
    min-height: 0;
    overflow: hidden;
  }

  .skills-accordion__item.is-open .skills-accordion__body-wrap{
    grid-template-rows: 1fr;
    opacity: 1;
    transform: translateY(0);
  }

  .skills-accordion__body{
    margin: 0;
    padding: 2px clamp(18px, 4.7vw, 20px) clamp(18px, 4.6vw, 20px);
    color: rgba(47, 39, 34, 0.74);
    font-family: var(--sans);
    font-size: clamp(14.5px, 3.55vw, 15.2px);
    font-weight: 400;
    line-height: 1.55;
  }

  .education-mobile-list{
    border-top: 1px solid rgba(55, 24, 18, 0.14);
  }

  .education-mobile-list__item{
    min-width: 0;
    padding: 17px 2px 18px;
    border-bottom: 1px solid rgba(55, 24, 18, 0.14);
  }

  .education-mobile-list__title{
    margin: 0;
    color: #151413;
    font-family: var(--serif);
    font-size: clamp(17px, 4.4vw, 19px);
    font-weight: 400;
    line-height: 1.25;
  }

  .education-mobile-list__text{
    margin: 7px 0 0;
    color: rgba(47, 39, 34, 0.8);
    font-family: var(--sans);
    font-size: clamp(14px, 3.65vw, 15.5px);
    font-weight: 400;
    line-height: 1.55;
  }
}

@media (max-width: 389px) {
  .skills .section-heading,
  .skills-mobile{
    width: min(calc(100% - 32px), 360px);
  }

  .skills .section-heading h2{
    font-size: clamp(34px, 10.2vw, 39px);
    line-height: 0.96;
  }

  .skills-subtitle{
    font-size: clamp(13.5px, 3.8vw, 14.5px);
    line-height: 1.45;
  }

  .skills-accordion__header{
    min-height: 58px;
    padding: 15px 16px;
  }

  .skills-accordion__title{
    font-size: clamp(18px, 4.9vw, 19px);
    line-height: 1.2;
  }

  .skills-accordion__body{
    padding-right: 16px;
    padding-bottom: 17px;
    padding-left: 16px;
    font-size: 14px;
    line-height: 1.55;
  }

  .education-mobile-list__title{
    font-size: clamp(16.5px, 4.6vw, 18px);
  }

  .education-mobile-list__text{
    font-size: 14px;
  }
}

.skills-accordion__header:focus-visible{
  outline: 2px solid rgba(200, 169, 106, 0.8);
  outline-offset: -3px;
}



.career-root{
  position: relative;
  z-index: 2;
  --accent: #6F9FA3;
  --accent-soft: #A9C4C2;
  --accent-line: rgba(111, 159, 163, 0.34);
}

.career-head{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: end;
  margin-bottom: 30px;
}

.career-label{
  display: block;
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.career-title{
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 7vw, 88px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.028em;
}

.career-lead{
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.68;
}

.career-download{
  min-width: 212px;
  color: var(--text-main);
  border: 1px solid rgba(169, 196, 194, 0.42);
  background:
    linear-gradient(135deg, rgba(242, 239, 231, 0.08), rgba(169, 196, 194, 0.08)),
    rgba(12, 14, 15, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 44px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
}

.career-download:hover,
.career-download:focus-visible{
  color: var(--text-main);
  border-color: rgba(169, 196, 194, 0.68);
  background:
    linear-gradient(135deg, rgba(242, 239, 231, 0.12), rgba(169, 196, 194, 0.12)),
    rgba(12, 14, 15, 0.34);
}

.career-entry-card,
.career-card{
  border: 1px solid rgba(200, 169, 106, 0.28);
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 0%, rgba(200, 169, 106, 0.12), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(62, 30, 26, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 22px 64px rgba(15, 5, 5, 0.22);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
}

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

.career-path-desktop{
  position: relative;
  display: grid;
  gap: 18px;
}

.career-path-desktop::before{
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: min(220px, 22vw);
  width: 1px;
  content: "";
  background: linear-gradient(180deg, transparent, var(--accent-line), transparent);
}

.career-entry{
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, 220px) 34px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.career-date{
  padding-top: 22px;
  color: rgba(242, 239, 231, 0.62);
  font-size: 13px;
  line-height: 1.4;
}

.career-dot{
  position: relative;
  z-index: 2;
  display: grid;
  width: 22px;
  height: 22px;
  margin-top: 19px;
  place-items: center;
  border-radius: 50%;
  background: rgba(111, 159, 163, 0.22);
}

.career-dot::before{
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: var(--accent-soft);
}

.career-entry-card{
  padding: 26px;
}

.career-entry h3,
.career-company{
  margin: 0;
  color: #F2EFE7;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.08;
}

.career-role{
  margin: 8px 0 0;
  color: var(--accent-soft);
  font-size: 14px;
  line-height: 1.45;
}

.career-focus{
  margin: 14px 0 0;
  color: rgba(242, 239, 231, 0.82);
  font-size: 15px;
  line-height: 1.58;
}

.career-points{
  margin: 18px 0 0;
  padding-left: 18px;
  color: rgba(242, 239, 231, 0.72);
  font-size: 14.5px;
  line-height: 1.58;
}

.career-points li + li{
  margin-top: 8px;
}

.career-path-mobile{
  display: none;
}

@media (max-width: 1199px) {
  .career-head{
    grid-template-columns: 1fr;
    align-items: start;
  }

  .career-download{
    width: max-content;
  }

  .career-entry{
    grid-template-columns: minmax(132px, 180px) 30px minmax(0, 1fr);
    gap: 14px;
  }

  .career-path-desktop::before{
    left: min(180px, 22vw);
  }
}

@media (max-width: 760px) {
  #skills,
  #portfolio,
  #about,
  #experience,
  #education,
  #contact{
    scroll-margin-top: 0;
  }

  .career-head{
    margin-bottom: 24px;
  }

  .career-title{
    font-size: clamp(48px, 13.6vw, 64px);
    line-height: 0.95;
    letter-spacing: -0.028em;
  }

  .career-lead{
    font-size: 17px;
    line-height: 1.66;
  }

  .career-download{
    width: 100%;
  }

  .career-block + .career-block{
    margin-top: 38px;
  }

  .career-path-desktop{
    display: none;
  }

  .career-path-mobile{
    display: block;
    overflow-anchor: none;
  }

  .career-card{
    overflow: hidden;
    padding: 0;
    scroll-margin-top: 24px;
    transition:
      border-color 320ms ease,
      background 320ms ease,
      box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .career-card + .career-card{
    margin-top: 14px;
  }

  .career-card__header{
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1fr) 38px;
    gap: 14px;
    align-items: center;
    padding: 20px;
    color: inherit;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
  }

  .career-card-content{
    display: grid;
    min-width: 0;
    gap: 7px;
  }

  .career-card .career-date{
    padding: 0;
    font-size: 12.5px;
  }

  .career-company{
    display: block;
    font-size: 24px;
    line-height: 1.08;
  }

  .career-card .career-role{
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
  }

  .career-card .career-focus{
    margin: 0;
    font-size: 14.5px;
    line-height: 1.58;
  }

  .toggle-button{
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: var(--gold-soft);
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(242, 239, 231, 0.06);
    transition:
      border-color 180ms ease,
      background 180ms ease,
      box-shadow 180ms ease;
  }

  .toggle-button::before{
    content: "+";
    font-size: 22px;
    line-height: 1;
    transform: translateY(-1px);
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .career-card.is-open{
    border-color: rgba(216, 194, 143, 0.9);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.24),
      0 24px 54px rgba(15, 15, 17, 0.28),
      0 0 0 1px rgba(216, 194, 143, 0.18);
  }

  .career-card.is-open .toggle-button{
    border-color: rgba(216, 194, 143, 0.9);
    background: rgba(200, 169, 106, 0.12);
    box-shadow: 0 0 0 4px rgba(200, 169, 106, 0.08);
  }

  .career-card.is-open .toggle-button::before{
    transform: translateY(-1px) rotate(45deg);
  }

  .career-card__body-wrap{
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transform: translateY(6px);
    transition:
      grid-template-rows 500ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 320ms ease,
      transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .career-card__body-inner{
    min-height: 0;
    overflow: hidden;
  }

  .career-card.is-open .career-card__body-wrap{
    grid-template-rows: 1fr;
    opacity: 1;
    transform: translateY(0);
  }

  .career-card__body-inner > .career-points{
    margin: 0;
    padding: 0 20px 20px 38px;
    font-size: 14.5px;
    line-height: 1.58;
  }
}

@media (max-width: 370px) {
  .experience{
    padding-inline: 16px;
  }

  .career-company{
    font-size: 22.5px;
  }

  .career-card__header{
    padding: 16px;
  }
}

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

  *,
*::before,
*::after{
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal{
    opacity: 1;
    transform: none;
  }

  .text-reveal-line-inner{
    opacity: 1;
    transform: none;
    animation: none !important;
  }

}


.contact-section,
.contact-section *{
  box-sizing: border-box;
}

.contact-section{
  width: 100%;
  padding: 56px 0;
  overflow-x: clip;
  color: #f6f0e8;
  background: var(--wine-section-background);
}

.contact-shell{
  width: min(1360px, calc(100% - 80px));
  min-height: 286px;
  margin: 0 auto;
  padding: 40px 56px;
  display: grid;
  grid-template-columns: 370px 1px minmax(0, 1fr);
  column-gap: 44px;
  align-items: center;
  border: 1px solid rgba(215, 156, 74, 0.34);
  border-radius: 16px;
  background:
    radial-gradient(circle at 8% 0%, rgba(200, 169, 106, 0.07), transparent 32%),
    linear-gradient(120deg, rgba(15, 15, 17, 0.68), rgba(42, 15, 13, 0.52) 58%, rgba(22, 8, 7, 0.62));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 24px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
}

.contact-copy{
  width: 370px;
  min-width: 0;
}

.contact-eyebrow{
  margin: 0;
  color: #f2c36d;
  font-family: "Gotham Pro", "Gotham", Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
}

.contact-title{
  margin: 29px 0 0;
  color: #f6f0e8;
  font-family: "Prata", Georgia, serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: 0;
}

.contact-text{
  width: 355px;
  margin: 18px 0 0;
  color: rgba(246, 240, 232, 0.78);
  font-family: "Gotham Pro", "Gotham", Inter, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.48;
}

.contact-divider{
  display: block;
  width: 1px;
  height: 112px;
  background: linear-gradient(to bottom, transparent, rgba(215, 156, 74, 0.38), transparent);
}

.contact-actions{
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 28px;
  align-items: center;
  min-width: 0;
}

.contact-section .contact-card{
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 22px;
  column-gap: 20px;
  align-items: center;
  min-width: 0;
  min-height: 0;
  height: 76px;
  padding: 0 24px;
  color: #f6f0e8;
  text-decoration: none;
  background: rgba(8, 8, 8, 0.38);
  border: 1px solid rgba(215, 156, 74, 0.42);
  border-radius: 10px;
  outline: none;
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms cubic-bezier(0.22, 1, 0.36, 1),
    background 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-section .contact-icon{
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #f2c36d;
  border: 1px solid rgba(242, 195, 109, 0.72);
  border-radius: 999px;
}

.contact-section .contact-icon svg{
  display: block;
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.contact-card-label{
  min-width: 0;
  overflow: hidden;
  color: #f6f0e8;
  font-family: "Gotham Pro", "Gotham", Inter, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-arrow{
  justify-self: end;
  color: #f2c36d;
  font-size: 28px;
  line-height: 1;
  transform: translateX(0);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (pointer: fine) {
  .contact-section .contact-card:hover{
    transform: translateY(-1px);
    border-color: rgba(242, 195, 109, 0.74);
    background: rgba(20, 16, 12, 0.68);
  }

  .contact-section .contact-card:hover .contact-arrow{
    transform: translateX(4px);
  }
}

.contact-section .contact-card:active{
  transform: translateY(0);
  border-color: rgba(242, 195, 109, 0.86);
}

.contact-section .contact-card:focus-visible{
  outline: 2px solid rgba(242, 195, 109, 0.9);
  outline-offset: 4px;
}

@media (max-width: 1439px) and (min-width: 1100px) {
  .contact-section{
    padding: 44px 0;
  }

  .contact-shell{
    width: calc(100% - 48px);
    min-height: 216px;
    max-height: 236px;
    padding: 36px;
    grid-template-columns: 270px 1px minmax(0, 1fr);
    column-gap: 34px;
    border-radius: 14px;
  }

  .contact-copy{
    width: 270px;
  }

  .contact-eyebrow{
    font-size: 11px;
  }

  .contact-title{
    margin-top: 24px;
    font-size: 34px;
    line-height: 1.05;
  }

  .contact-text{
    width: 260px;
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.55;
  }

  .contact-divider{
    height: 86px;
  }

  .contact-actions{
    grid-template-columns: repeat(3, minmax(138px, 1fr));
    gap: 12px;
  }

  .contact-section .contact-card{
    grid-template-columns: 34px minmax(0, 1fr) 18px;
    column-gap: 12px;
    height: 62px;
    padding: 0 14px;
  }

  .contact-section .contact-icon{
    width: 34px;
    height: 34px;
  }

  .contact-section .contact-icon svg{
    width: 20px;
    height: 20px;
  }

  .contact-card-label{
    font-size: 13px;
  }

  .contact-arrow{
    font-size: 22px;
  }
}

@media (max-width: 1099px) and (min-width: 900px) {
  .contact-section{
    padding: 40px 0;
  }

  .contact-shell{
    width: calc(100% - 40px);
    min-height: 216px;
    max-height: 236px;
    padding: 34px;
    grid-template-columns: 270px 1px minmax(0, 1fr);
    column-gap: 28px;
    border-radius: 14px;
  }

  .contact-copy{
    width: 270px;
  }

  .contact-eyebrow{
    font-size: 11px;
  }

  .contact-title{
    margin-top: 24px;
    font-size: 34px;
    line-height: 1.05;
  }

  .contact-text{
    width: 250px;
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.45;
  }

  .contact-divider{
    height: 86px;
  }

  .contact-actions{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .contact-section .contact-card{
    grid-template-columns: 34px minmax(0, 1fr) 18px;
    column-gap: 12px;
    height: 62px;
    padding: 0 14px;
  }

  .contact-card--linkedin{
    grid-column: 1 / -1;
  }

  .contact-section .contact-icon{
    width: 34px;
    height: 34px;
  }

  .contact-section .contact-icon svg{
    width: 20px;
    height: 20px;
  }

  .contact-card-label{
    font-size: 13px;
  }

  .contact-arrow{
    font-size: 22px;
  }
}

@media (max-width: 899px) and (min-width: 700px) {
  .contact-section{
    padding: 40px 0;
  }

  .contact-shell{
    width: calc(100% - 64px);
    min-height: auto;
    max-height: none;
    padding: 38px 38px 44px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 14px;
  }

  .contact-copy{
    width: min(560px, 100%);
  }

  .contact-eyebrow{
    font-size: 12px;
  }

  .contact-title{
    margin-top: 26px;
    font-size: 40px;
    line-height: 1.05;
  }

  .contact-text{
    width: min(540px, 100%);
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.55;
  }

  .contact-divider{
    display: none;
  }

  .contact-actions{
    width: min(560px, 100%);
    max-width: 560px;
    margin-top: 34px;
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    gap: 14px;
  }

  .contact-section .contact-card{
    width: 100%;
    grid-template-columns: 40px minmax(0, 1fr) 22px;
    column-gap: 16px;
    height: 70px;
    padding: 0 20px;
  }

  .contact-section .contact-icon{
    width: 40px;
    height: 40px;
  }

  .contact-section .contact-icon svg{
    width: 23px;
    height: 23px;
  }

  .contact-card-label{
    font-size: 15px;
  }

  .contact-arrow{
    font-size: 26px;
  }
}

@media (max-width: 790px) and (min-width: 700px) {
  .contact-shell{
    width: calc(100% - 56px);
    min-height: auto;
    max-height: none;
    padding: 36px 36px 42px;
  }

  .contact-copy{
    width: min(520px, 100%);
  }

  .contact-actions{
    width: min(520px, 100%);
    max-width: 520px;
  }

  .contact-section .contact-card{
    height: 68px;
  }
}

@media (max-width: 699px) {
  .contact-section{
    padding: 32px 0;
    background: var(--wine-section-background);
  }

  .contact-shell{
    width: calc(100% - 40px);
    min-height: auto;
    padding: 26px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 12px;
  }

  .contact-copy{
    width: 100%;
  }

  .contact-eyebrow{
    font-size: 10px;
  }

  .contact-title{
    margin-top: 19px;
    font-size: 30px;
    line-height: 1.06;
  }

  .contact-text{
    width: 100%;
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.52;
  }

  .contact-divider{
    display: none;
  }

  .contact-actions{
    width: 100%;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .contact-section .contact-card{
    width: 100%;
    grid-template-columns: 34px minmax(0, 1fr) 20px;
    column-gap: 14px;
    height: 62px;
    padding: 0 16px;
  }

  .contact-section .contact-icon{
    width: 34px;
    height: 34px;
  }

  .contact-section .contact-icon svg{
    width: 20px;
    height: 20px;
  }

  .contact-card-label{
    font-size: 13px;
  }

  .contact-arrow{
    font-size: 23px;
  }
}

@media (min-width: 401px) and (max-width: 699px) {
  .contact-shell{
    padding: 28px 22px;
  }

  .contact-title{
    font-size: 32px;
    line-height: 1.05;
  }

  .contact-section .contact-card{
    height: 64px;
  }
}

@media (max-width: 360px) {
  .contact-section{
    padding: 28px 0;
  }

  .contact-shell{
    width: calc(100% - 32px);
    padding: 24px 18px;
  }

  .contact-title{
    font-size: 28px;
  }

  .contact-text{
    font-size: 12.5px;
  }

  .contact-section .contact-card{
    grid-template-columns: 32px minmax(0, 1fr) 18px;
    column-gap: 12px;
    height: 60px;
    padding: 0 14px;
  }

  .contact-section .contact-icon{
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 320px) {
  .contact-shell{
    width: calc(100% - 28px);
    padding: 22px 16px;
  }

  .contact-title{
    font-size: 26px;
    line-height: 1.07;
  }

  .contact-text{
    font-size: 12px;
    line-height: 1.5;
  }

  .contact-section .contact-card{
    height: 58px;
  }

  .contact-section .contact-icon{
    width: 30px;
    height: 30px;
  }

  .contact-arrow{
    font-size: 20px;
  }
}

.contact-card--whatsapp .contact-icon svg{
  width: 22px;
  height: 22px;
  fill: none;
  shape-rendering: geometricPrecision;
}

@media (prefers-reduced-motion: reduce) {
  .contact-section .contact-card,
  .contact-arrow{
    transition: none;
  }
}


.brand-os-stage,
.brand-os-stage *{
  box-sizing: border-box;
}

.brand-os-stage{
  --bg: #050505;
  --text: #f5efe6;
  --muted: rgba(245, 239, 230, 0.62);
  --muted-soft: rgba(245, 239, 230, 0.42);
  --gold: #f3b65f;
  --gold-soft: rgba(243, 182, 95, 0.48);
  --gold-line: rgba(243, 182, 95, 0.34);
  position: relative;
  min-height: 620vh;
  padding: 0 32px;
  isolation: isolate;
  overflow-x: clip;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 34%, rgba(150, 88, 31, 0.15), transparent 34%),
    radial-gradient(circle at 92% 20%, rgba(123, 55, 27, 0.16), transparent 28%),
    linear-gradient(180deg, #050505 0%, #090706 50%, #050505 100%);
  font-family: var(--sans);
}

.brand-os-stage::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92) 0%, transparent 24%, transparent 74%, rgba(5, 5, 5, 0.86) 100%),
    radial-gradient(circle at 50% 45%, rgba(243, 182, 95, 0.095), transparent 34%);
  pointer-events: none;
}

.stage-frame{
  position: sticky;
  top: 0;
  min-height: 100vh;
  max-width: 1520px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 88px 0 64px;
}

.stage-frame::after{
  content: "";
  position: absolute;
  left: 40%;
  top: 50%;
  z-index: 1;
  width: min(520px, 34vw);
  height: 260px;
  transform: translateY(-50%);
  opacity: calc(var(--right-alpha) * var(--stage-exit-alpha));
  background: radial-gradient(ellipse at center, rgba(243, 182, 95, 0.055), transparent 68%);
  filter: blur(26px);
  pointer-events: none;
}

.screen-orbits{
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  opacity: calc(var(--core-alpha) * var(--stage-exit-alpha));
  pointer-events: none;
  transition: opacity 120ms linear;
}

.screen-orbit{
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(243, 182, 95, 0.12);
  border-radius: 50%;
  opacity: var(--opacity);
  transform: translate(-50%, -50%) rotate(var(--rotate));
  mask-image: radial-gradient(ellipse at center, black 0%, black 38%, rgba(0, 0, 0, 0.56) 58%, transparent 84%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, black 38%, rgba(0, 0, 0, 0.56) 58%, transparent 84%);
}

.screen-orbit.so1{
  --rotate: -13deg;
  --opacity: 0.38;
  width: min(1100px, 84vw);
  height: min(590px, 48vw);
}

.screen-orbit.so2{
  --rotate: 25deg;
  --opacity: 0.22;
  width: min(1340px, 98vw);
  height: min(760px, 62vw);
}

.screen-orbit.so3{
  --rotate: -39deg;
  --opacity: 0.13;
  width: min(1540px, 112vw);
  height: min(900px, 72vw);
}

.left-copy{
  position: relative;
  z-index: 4;
  align-self: flex-start;
  width: clamp(420px, 34vw, 540px);
  padding-top: clamp(0px, 2vh, 22px);
  opacity: var(--left-alpha);
  transform: translateY(calc(-18px + (1 - var(--left-alpha)) * 38px));
  transition: opacity 90ms linear, transform 90ms linear;
}

.brand-os-stage .eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.brand-os-stage .eyebrow::after{
  content: "";
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.left-title{
  max-width: 520px;
  margin: 0;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(34px, 3vw, 46px);
  font-weight: 400;
  line-height: 0.99;
  letter-spacing: -0.045em;
}

.left-title .gold,
.core-main .gold-inline{
  color: var(--gold);
}

.intro-lead{
  max-width: 500px;
  margin: 28px 0 0;
  color: rgba(245, 239, 230, 0.62);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.62;
  letter-spacing: -0.018em;
}

.left-rule{
  position: relative;
  width: 170px;
  height: 1px;
  margin: 36px 0 0;
  opacity: 0.9;
  background: linear-gradient(90deg, var(--gold), rgba(243, 182, 95, 0.25), transparent);
}

.left-rule::after{
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 22px rgba(243, 182, 95, 0.8);
}

.intro-scroll-hint{
  position: absolute;
  left: 50%;
  bottom: clamp(28px, 5vh, 54px);
  z-index: 8;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(245, 239, 230, 0.38);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: calc(var(--left-alpha) * var(--intro-hint-alpha));
  transform: translateX(-50%) translateY(calc(10px - var(--intro-hint-alpha) * 10px));
  transition: opacity 120ms linear, transform 120ms linear;
  pointer-events: none;
}

.intro-scroll-hint span{
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(243, 182, 95, 0.62);
  animation: brandOsHintPulse 1.8s ease-in-out infinite;
}

.intro-scroll-hint em{
  font-style: normal;
  white-space: nowrap;
}

.core-zone{
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: clamp(540px, 46vw, 690px);
  opacity: calc(var(--core-alpha) * var(--stage-exit-alpha));
  transform:
    translate(calc(-50% - var(--core-shift-x)), calc(-50% + var(--stage-exit-y)))
    scale(calc(0.92 + var(--core-alpha) * 0.08));
  pointer-events: none;
  transition: opacity 90ms linear, transform 90ms linear;
}

.core-wrap{
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  pointer-events: auto;
}

.orbit{
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(243, 182, 95, 0.2);
  border-radius: 50%;
  animation: brandOsOrbitRotate 36s linear infinite;
  box-shadow: none;
}

.orbit.o1{
  border-color: rgba(243, 182, 95, 0.3);
  transform: rotate(-14deg) scaleX(1.14) scaleY(0.74);
  animation-duration: 36s;
}

.orbit.o2{
  inset: 13%;
  border-color: rgba(243, 182, 95, 0.18);
  transform: rotate(22deg) scaleX(1.22) scaleY(0.7);
  animation-duration: 52s;
  animation-direction: reverse;
}

.orbit.o3{
  inset: 22%;
  border-color: rgba(243, 182, 95, 0.1);
  transform: rotate(-38deg) scaleX(1.32) scaleY(0.62);
  animation-duration: 70s;
}

.orbit::before,
.orbit::after{
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ffd188;
  box-shadow: 0 0 14px rgba(243, 182, 95, 0.95), 0 0 36px rgba(243, 182, 95, 0.42);
  animation: brandOsDotPulse 2.8s ease-in-out infinite;
}

.orbit::before{
  top: 8%;
  left: 74%;
}

.orbit::after{
  bottom: 13%;
  left: 17%;
  animation-delay: 0.75s;
}

.core{
  position: relative;
  width: 64%;
  min-width: 320px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(243, 182, 95, 0.1) 0%, rgba(243, 182, 95, 0.035) 36%, rgba(5, 5, 5, 0.16) 58%, rgba(5, 5, 5, 0) 76%);
  box-shadow: 0 0 90px rgba(243, 182, 95, 0.1);
  text-align: center;
  transition: transform 520ms ease, box-shadow 520ms ease;
}

.core::before{
  content: "";
  position: absolute;
  inset: 3%;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(243, 182, 95, 0.1), rgba(243, 182, 95, 0.035) 36%, transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}

.core::after{
  content: "";
  position: absolute;
  inset: -18%;
  z-index: -2;
  border-radius: 999px;
  opacity: 0.62;
  background: radial-gradient(circle, rgba(243, 182, 95, 0.07), transparent 64%);
  filter: blur(26px);
  pointer-events: none;
}

.core.is-active{
  transform: scale(1.012);
  box-shadow: 0 0 112px rgba(243, 182, 95, 0.14);
}

.core-label{
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.core-main{
  max-width: 430px;
  margin: 0 auto;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(21px, 1.52vw, 26px);
  line-height: 1.28;
  letter-spacing: -0.03em;
}

.core-main span{
  display: block;
}

.right-reveal{
  position: relative;
  z-index: 4;
  width: clamp(500px, 37vw, 620px);
  min-height: 390px;
  margin-top: clamp(42px, 7vh, 86px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: calc(var(--right-alpha) * var(--stage-exit-alpha));
  transform: translateY(calc(30px - var(--right-alpha) * 30px + var(--stage-exit-y)));
  transition: opacity 90ms linear, transform 90ms linear;
}

.system-kicker{
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.step-dots{
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 40px;
  padding-left: 2px;
}

.step-dots::before{
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 50%;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, rgba(243, 182, 95, 0.4), rgba(243, 182, 95, 0.12), transparent);
  transform: translateY(-50%);
}

.step-dot{
  position: relative;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(243, 182, 95, 0.22);
  border-radius: 999px;
  opacity: 0.52;
  color: transparent;
  background: rgba(5, 5, 5, 0.8);
  box-shadow: 0 0 0 0 rgba(243, 182, 95, 0);
  transform: scale(0.78);
  transition:
    width 420ms cubic-bezier(0.22, 1, 0.36, 1),
    height 420ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 420ms ease,
    background 420ms ease,
    box-shadow 420ms ease,
    opacity 420ms ease,
    color 420ms ease;
}

.step-dot span{
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(1px);
  transition: opacity 300ms ease;
}

.step-dot::after{
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(243, 182, 95, 0);
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.66);
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 420ms ease,
    opacity 420ms ease;
}

.step-dot.is-active{
  width: 44px;
  height: 30px;
  border-color: rgba(243, 182, 95, 0.78);
  opacity: 1;
  color: var(--gold);
  background:
    radial-gradient(circle at 50% 50%, rgba(243, 182, 95, 0.22), rgba(243, 182, 95, 0.075) 58%, rgba(5, 5, 5, 0.86) 100%);
  box-shadow:
    0 0 28px rgba(243, 182, 95, 0.5),
    0 12px 34px rgba(0, 0, 0, 0.24);
  transform: scale(1);
}

.step-dot.is-active span{
  opacity: 1;
}

.step-dot.is-active::after{
  border-color: rgba(243, 182, 95, 0.34);
  opacity: 1;
  transform: scale(1);
}

.reveal-card{
  position: relative;
  min-height: 178px;
  border: 0;
  background: transparent;
  transition: opacity 360ms ease, transform 360ms ease;
}

.reveal-card.is-changing{
  opacity: 0.22;
  transform: translateY(8px);
}

.reveal-num{
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
}

.reveal-title{
  max-width: 560px;
  margin: 0 0 26px;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(42px, 3.35vw, 62px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.reveal-body{
  max-width: 560px;
  margin: 0;
  color: rgba(245, 239, 230, 0.76);
  font-size: clamp(18px, 1.12vw, 21px);
  line-height: 1.64;
  letter-spacing: -0.012em;
}

.mobile-steps{
  display: none;
}

@keyframes brandOsHintPulse {
  0%,
  100%{
    opacity: 0.38;
    transform: scale(0.75);
  }

  50%{
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes brandOsOrbitRotate {
  to{
    rotate: 360deg;
  }
}

@keyframes brandOsDotPulse {
  0%,
  100%{
    opacity: 0.45;
    transform: scale(0.72);
  }

  50%{
    opacity: 1;
    transform: scale(1.18);
  }
}

@media (max-width: 1180px) {
  .brand-os-stage{
    min-height: auto;
    padding: 68px 24px 84px;
  }

  .stage-frame{
    position: relative;
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 0;
  }

  .stage-frame::after{
    display: none;
  }

  .screen-orbits{
    display: none;
  }

  .left-copy{
    width: 100%;
    max-width: 720px;
    padding-top: 0;
    opacity: 1 !important;
    transform: none !important;
  }

  .brand-os-stage .eyebrow{
    margin-bottom: 29px;
  }

  .left-title{
    max-width: 680px;
    font-size: clamp(40px, 5.6vw, 56px);
    line-height: 0.98;
  }

  .intro-lead{
    max-width: 680px;
    margin-top: 26px;
    font-size: 16px;
    line-height: 1.62;
  }

  .left-rule{
    width: 150px;
    margin-top: 34px;
  }

  .intro-scroll-hint{
    display: none;
  }

  .core-zone{
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    opacity: 1 !important;
    transform: none !important;
  }

  .core-wrap{
    width: min(500px, 82vw);
    margin: 0 auto;
  }

  .core{
    width: 66%;
    min-width: 280px;
  }

  .right-reveal{
    width: 100%;
    min-height: auto;
    margin-top: 0;
    opacity: 1 !important;
    transform: none !important;
  }

  .reveal-title{
    font-size: clamp(36px, 4.8vw, 48px);
    line-height: 0.98;
  }

  .reveal-body{
    max-width: 680px;
    font-size: 16px;
    line-height: 1.62;
  }

  .step-dots,
  .reveal-card{
    display: none;
  }

  .system-kicker{
    margin-bottom: 24px;
  }

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

  .mobile-step{
    display: grid;
    grid-template-rows: auto auto 1fr;
    min-height: 180px;
    padding: 20px 20px 22px;
    border: 1px solid rgba(243, 182, 95, 0.16);
    border-radius: 24px;
    background:
      radial-gradient(circle at 16% 16%, rgba(243, 182, 95, 0.09), transparent 34%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  }

  .mobile-step-num{
    margin-bottom: 14px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.16em;
  }

  .mobile-step h3{
    min-height: 52px;
    display: flex;
    align-items: flex-start;
    margin: 0 0 12px;
    color: var(--text);
    font-family: var(--serif);
    font-size: clamp(24px, 3vw, 28px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.038em;
  }

  .mobile-step p{
    margin: 0;
    color: rgba(245, 239, 230, 0.72);
    font-size: clamp(14px, 1.55vw, 15.5px);
    line-height: 1.52;
    letter-spacing: -0.01em;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .mobile-steps{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  .mobile-step{
    min-height: 214px;
    padding: 20px 18px 22px;
  }

  .mobile-step h3{
    min-height: 50px;
    font-size: 22px;
  }

  .mobile-step p{
    font-size: 14px;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .mobile-steps{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .mobile-step{
    min-height: 174px;
  }

  .mobile-step h3{
    font-size: 24px;
  }

  .mobile-step p{
    font-size: 14.5px;
  }
}

@media (max-width: 640px) {
  .brand-os-stage{
    padding: 58px 16px 82px;
  }

  .stage-frame{
    gap: 42px;
  }

  .brand-os-stage .eyebrow{
    margin-bottom: 24px;
    font-size: 11px;
  }

  .left-title{
    max-width: 100%;
    font-size: 38px;
    line-height: 1.04;
  }

  .intro-lead{
    max-width: 100%;
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.58;
  }

  .left-rule{
    width: 118px;
    margin-top: 28px;
  }

  .core-wrap{
    width: min(350px, 92vw);
  }

  .core{
    width: 70%;
    min-width: 240px;
  }

  .core-main{
    max-width: 270px;
    font-size: 19px;
    line-height: 1.28;
  }

  .core-label{
    margin-bottom: 12px;
    font-size: 10px;
  }

  .system-kicker{
    margin-bottom: 20px;
    font-size: 12px;
  }

  .mobile-steps{
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mobile-step{
    min-height: 0;
    padding: 18px 18px 19px;
    border-radius: 20px;
  }

  .mobile-step-num{
    margin-bottom: 12px;
    font-size: 10.5px;
  }

  .mobile-step h3{
    min-height: 0;
    margin-bottom: 7px;
    font-size: clamp(21px, 5.5vw, 24px);
    line-height: 1.06;
    letter-spacing: -0.032em;
  }

  .mobile-step p{
    font-size: clamp(14px, 3.65vw, 15px);
    line-height: 1.48;
  }
}

/* Desktop/tablet refinement for the “Моя суть” supporting cards. */
@media (min-width: 1181px) {
  .reveal-title{
    max-width: 540px;
    margin-bottom: 20px;
    font-size: clamp(34px, 2.55vw, 48px);
    line-height: 1.02;
    letter-spacing: -0.038em;
  }

  .reveal-body{
    max-width: 540px;
    color: rgba(245, 239, 230, 0.68);
    font-size: clamp(15px, 0.96vw, 17px);
    font-weight: 400;
    line-height: 1.58;
  }
}

@media (min-width: 641px) and (max-width: 1180px) {
  .mobile-step h3{
    min-height: 42px;
    margin-bottom: 10px;
    font-size: clamp(20px, 2.35vw, 24px);
    line-height: 1.02;
  }

  .mobile-step p{
    color: rgba(245, 239, 230, 0.68);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.48;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-os-stage,
  .brand-os-stage *,
  .brand-os-stage *::before,
  .brand-os-stage *::after{
    animation: none !important;
    transition: none !important;
  }
}


.experience{
  position: relative;
  overflow: hidden;
  isolation: isolate;
  margin-top: -26vh;
  padding-top: clamp(210px, 31vh, 300px);
  border-top: 0;
  background:
    radial-gradient(circle at 82% 42%, rgba(42, 15, 13, 0.88) 0%, rgba(42, 15, 13, 0.62) 28%, rgba(42, 15, 13, 0.26) 56%, transparent 76%),
    radial-gradient(circle at 58% 42%, rgba(143, 175, 193, 0.065) 0%, rgba(143, 175, 193, 0.026) 24%, transparent 52%),
    linear-gradient(115deg, #080b12 0%, #080b12 44%, #0b1020 100%);
}

.experience::before{
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 0;
  height: 40vh;
  background:
    linear-gradient(
      180deg,
      rgba(5, 6, 10, 1) 0%,
      rgba(8, 11, 18, 0.82) 24%,
      rgba(8, 11, 18, 0.46) 48%,
      rgba(8, 11, 18, 0.16) 72%,
      rgba(8, 11, 18, 0) 100%
    );
  pointer-events: none;
}

.experience .career-root{
  position: relative;
  z-index: 2;
}

@media (max-width: 1180px) {
  .experience{
    margin-top: 0;
    padding-top: 86px;
  }
}

@media (max-width: 720px) {
  .experience{
    padding-top: 86px;
  }
}
