/* =============================================
   TIRSAN — tirsan.css
   Breakpoints: sm ≥576 · md ≥768 · lg ≥992 · xl ≥1200 · xxl ≥1400
   ============================================= */

/* =============================================
   TOKENS
   ============================================= */

:root {
  color-scheme: light;
  --gutter: clamp(20px, 5vw, 256px);
  --col: clamp(200px, 25vw, 380px);
  --black:  #04030F;
  --accent: #5EEB5B;
  --accdrk: #127F10;
  --mid:    #909AA1;
  --light:  #F6F3F5;
  --white:  #FFFFFF;
  --syne: 'Syne', Arial, sans-serif;
  --mono: 'DM Mono', 'Courier New', monospace;

  --text-xs:   0.554rem;  /*   8.86px */
  --text-sm:   0.739rem;  /*  11.82px */
  --text-md:   0.985rem;  /*  15.75px */
  --text-base: 1.313rem;  /*  21.00px  ← base */
  --text-lg:   1.749rem;  /*  27.99px */
  --text-xl:   2.331rem;  /*  37.30px */
  --text-2xl:  3.108rem;  /*  49.73px */
  --text-3xl:  4.143rem;  /*  66.28px */
  --text-4xl:  5.522rem;  /*  88.35px */
  --text-5xl:  7.361rem;  /* 117.77px */
  --text-6xl:  9.812rem;  /* 156.99px */
  --text-7xl:  13.08rem;  /* 209.27px */
}

/* =============================================
   RESET & BASE
   ============================================= */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
textarea,
select,
button {
  font-family: var(--syne);
  font-size: inherit;
}

body {
  font-family: var(--syne);
  font-size: var(--text-base);
  background: var(--white);
  color: var(--black);
}

h1,
.text-large {
  font-size: clamp(var(--text-3xl), 9vw, var(--text-5xl));
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
}

h2 {
  font-size: clamp(var(--text-2xl), 4.5vw, var(--text-3xl));
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
}

h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.3;
}

p {
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.025rem;
  color: var(--black);
}

::selection {
  background: var(--accent);
  color: var(--white);
}

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

@media (min-width: 1400px) {
  h1,
  .text-large {
    padding-right: 25%;
  }
}

/* =============================================
   PROGRESSIVE ENHANCEMENT
   ============================================= */

.js .cta-inner {
  opacity: 0;
  transition: opacity 0.6s ease 0.2s;
}

.js .cta-inner.loaded {
  opacity: 1;
}

.js .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.js .reveal[data-delay="0.1"]  { transition-delay: 0.1s; }
.js .reveal[data-delay="0.2"]  { transition-delay: 0.2s; }

/* =============================================
   TOP BAR
   ============================================= */

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  background: var(--black);
  color: var(--light);
  font-size: var(--text-md);
}
.topbar-dismissed .topbar {
  display: none;
}

.topbar ~ .nav {
  top: 32px;
}
.topbar-dismissed .topbar ~ .nav {
  top: 0;
}

.topbar-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-53%);
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

/* =============================================
   NAV — mobile first (burger visible, links hidden)
   ============================================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 var(--gutter);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: transform 0.3s;
  background-color: var(--white);
}

.nav.nav--hidden {
  transform: translateY(-100%);
}

.topbar ~ .nav.nav--hidden {
  transform: translateY(calc(-100% - 40px));
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.nav-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.nav-name {
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--black);
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
}

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

.nav-link {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--black);
  opacity: 0.5;
  cursor: pointer;
  display: none;
  text-decoration: none;
  transition: color 0.3s, opacity 0.2s;
}

.nav-link:hover,
.nav-link.active {
  opacity: 1;
}

.nav-cta {
  padding: 8px 24px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 100px;
  opacity: 1;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: color 0.35s, background 0s;
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
}
.nav-cta:hover::before { transform: scaleY(1); transform-origin: top; }
.nav-cta:hover { background: var(--accent); color: var(--black); transition: color 0.35s, background 0s 0.35s; }
.nav-cta.active { background: var(--accent); color: var(--black); opacity: 1; }
.nav--white .nav-link.nav-cta { background: var(--white); color: var(--black); }
.nav--white .nav-link.nav-cta::before { background: var(--accent); }
.nav--white .nav-link.nav-cta:hover { color: var(--black); }

/* Scrolled state — add background */
.nav.nav--scrolled                { background: var(--white); }
.nav.nav--scrolled.nav--white     { background: transparent; }

/* White state — over dark sections */
.nav--white .nav-name    { color: var(--white); }
.nav--white .nav-link    { color: var(--white); }
.nav--white .burger span { background: var(--white); }

.burger {
  display: block;
  position: relative;
  width: 32px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--black);
  transition: transform 0.3s, opacity 0.3s, top 0.3s, bottom 0.3s;
}

.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.burger span:nth-child(3) { bottom: 0; }

.burger.open span:nth-child(1) { top: 50%;    transform: translateY(-50%) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

@media (min-width: 576px) {
  .nav-link { display: block; }
  .burger   { display: none; }
}

/* =============================================
   NAV — OPEN STATE (full-screen overlay)
   ============================================= */

.nav-social {
  display: none;
}

.nav.open {
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  mix-blend-mode: normal;
  background: var(--black);
  padding: 0 var(--gutter) var(--gutter);
}

.nav.open .nav-inner {
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  gap: 0;
}

.nav.open .nav-mark {
  padding-top: 28px;
  margin-bottom: clamp(40px, 10vw, 80px);
}

.nav.open .nav-name {
  color: var(--white);
}

.nav.open .nav-right {
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 64px;
}

.nav.open .burger {
  display: block;
  position: absolute;
  top: var(--gutter);
  right: var(--gutter);
}

.nav.open .nav-link {
  font-size: clamp(var(--text-2xl), 10vw, var(--text-3xl));
  font-weight: 600;
  letter-spacing: -0.05rem;
  line-height: 1.2;
  color: var(--white);
  display: block;
  opacity: 0.3;
}

.nav.open .burger span {
  background: var(--white);
}

.nav.open .nav-link.nav-cta {
  background: none;
  border: none;
  padding: 0;
  color: var(--white);
}
.nav.open .nav-link.nav-cta::before { display: none; }
.nav.open .nav-link.nav-cta.active {
  color: var(--accent);
  background: none;
}

.nav.open .nav-link:hover,
.nav.open .nav-link.active {
  opacity: 1;
}

.nav.open .nav-social {
  display: block;
  position: absolute;
  bottom: var(--gutter);
  left: var(--gutter);
  font-size: clamp(var(--text-base), 5vw, var(--text-2xl));
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
  opacity: 0.25;
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav.open .nav-social:hover {
  opacity: 1;
}

/* =============================================
   CTA — light (default) + dark modifier
   ============================================= */

.cta {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0 var(--gutter);
  min-height: 89vh;
  justify-content: center;
  background: var(--white);
}

.cta-footer {
  min-height: calc(100vh - 79px);
}

.cta-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-top: clamp(var(--text-base), 3vw, var(--text-lg));
}

.cta-desc {
  font-size: var(--text-lg);
  line-height: 1.3;
}

/* Dark scheme */
.bg-dark {
  background: var(--black);
  color: var(--white);
}

.bg-dark .cta-row {
  border-top-color: rgba(255,255,255,0.08);
}

.bg-dark .cta-desc {
  color: var(--white);
}

@media (min-width: 992px) {
  .cta-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
  }

  .cta-desc {
    max-width: 768px;
  }
}

/* =============================================
   BTN SYSTEM
   ============================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  border-radius: 100px;
  background: transparent;
  color: inherit;
  padding: 16px 24px;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: color 0.35s;
}

.btn::before {
  content: '';
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
}

.btn:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.btn:active {
  transform: scale(0.98);
}

/* Sizes */
.btn-lg { font-size: var(--text-base); padding: 20px 36px; }

/* Solid — black */
.btn-black { background: var(--black); color: var(--white); transition: color 0.35s, background 0s; }
.btn-black::before { background: var(--accent); }
.btn-black:hover { background: var(--accent); transition: color 0.35s, background 0s 0.35s; }

/* Solid — white */
.btn-white { background: var(--white); color: var(--black); transition: color 0.35s, background 0s; }
.btn-white::before { background: var(--light); }
.btn-white:hover { background: var(--light); transition: color 0.35s, background 0s 0.35s; }

/* Solid — accent */
.btn-accent { background: var(--accent); color: var(--black); transition: color 0.35s, background 0s; }
.btn-accent::before { background: var(--white); }
.btn-accent:hover { background: var(--white); color: var(--black); transition: color 0.35s, background 0s 0.35s; }


/* =============================================
   BADGE SYSTEM
   ============================================= */

.badge {
  display: inline-block;
  vertical-align: middle;
  font-family: var(--mono);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  position: relative;
  top: -2px;
  padding: 4px 7px;
  border: 1px solid transparent;
}

/* Background utilities (reusable beyond badges) */
.bg-white  { background: var(--white);  color: var(--black);  border-color: var(--white); }
.bg-light  { background: var(--light);  color: var(--black);  border-color: var(--light); }
.bg-black  { background: var(--black);  color: var(--white);  border-color: var(--black); }
.bg-accent { background: var(--accent); color: var(--white);  border-color: var(--accent); }

/* =============================================
   GENERIC SECTION (max-width exception for centered content)
   ============================================= */

.s {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 160px) var(--gutter);
}

.s.bg-light {
  max-width: none;
  padding-left: max(var(--gutter), calc((100% - 1400px) / 2 + var(--gutter)));
  padding-right: max(var(--gutter), calc((100% - 1400px) / 2 + var(--gutter)));
}

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

.about-grid {
  display: grid;
  gap: 32px;
}

.about-left-label {
  font-family: var(--mono);
  font-size: var(--text-sm);
  letter-spacing: 0.15em;
  color: var(--mid);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-right p {
  margin-bottom: 20px;
}

.about-right p:last-child {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: clamp(200px, 30vw, 420px) 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: start;
  }
  .about-right {
    padding-top: 39px;
  }
}

.recognition-title {
  font-size: clamp(var(--text-xl), 3vw, var(--text-2xl));
}

.recognition-subtitle {
  font-family: var(--mono);
  font-size: var(--text-md);
  color: var(--mid);
  margin-top: 12px;
}

.recognition-gallery {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.recognition-gallery > a {
  flex: 1;
  min-width: 0;
}

.recognition-gallery > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.recognition-stack {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.recognition-stack a {
  flex: 1;
  min-height: 0;
}

.recognition-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* =============================================
   PILLARS
   ============================================= */

.pillars {
  display: flex;
  flex-wrap: wrap;
}

.pillar {
  flex: 1 1 100%;
  padding: clamp(32px, 4vw, 56px) 56px clamp(32px, 4vw, 56px) 0;
  border-bottom: 1px solid var(--light);
}

.pillar p {
  font-size: var(--text-md);
}

.pillar:last-child {
  border-bottom: none;
}

.pillar-num {
  color: var(--accent);
  font-size: clamp(var(--text-2xl), 5vw, var(--text-4xl));
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 12px;
}

.pillar h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .pillars-section {
    padding-bottom: 0;
  }

  .pillars-section .pillar {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }
}

/* Homepage pillar cards */
#services .pillars {
  gap: clamp(16px, 2vw, 24px);
}

#services .pillar {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(24px, 3vw, 40px);
  border-bottom: none;
  overflow: hidden;
}

#services .pillar img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: auto;
}

.js #services .pillar img.reveal {
  transform: translateY(40px);
}
.js #services .pillar img.reveal.visible {
  transform: translateY(0);
}


@media (min-width: 768px) {
  #services .pillars {
    flex-wrap: nowrap;
  }
  #services .pillar {
    flex: 1 1 0;
  }
}

@media (min-width: 992px) {
  #services {
    max-width: 100%;
  }

  .pillar {
    flex: 1 1 0;
    border-bottom: none;
    border-right: 1px solid var(--light);
    padding-left: clamp(32px, 4vw, 56px);
    padding-right: clamp(32px, 4vw, 56px);
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .pillar:last-child {
    border-right: none;
  }

  #services .pillar {
    /* padding: clamp(24px, 3vw, 40px); */
    padding: 72px 40px 0 0;
    border: none;
  }

  #services .pillar h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: 8px;
  }
}

@media (min-width: 1400px) {
    #services .pillar {
      padding-right: 7%;
      aspect-ratio: 1 / 1;
    }
    #services .pillar p {
      font-size: var(--text-base);
    }
}

/* =============================================
   WORK — full viewport width
   ============================================= */

.work-section {
  padding: 0 var(--gutter);
}

.work-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: clamp(80px, 10vw, 140px) 0 clamp(40px, 5vw, 64px);
  margin-bottom: clamp(32px, 4vw, 56px);
  border-bottom: 1px solid var(--light);
}

.work-all {
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  white-space: nowrap;
  padding-bottom: 4px;
  border-bottom: 1.5px solid var(--black);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}

.work-all:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(160px, auto);
  gap: clamp(8px, 1vw, 16px);
}

.work-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--black);
}

.work-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 40%, transparent 60%);
  transition: opacity 0.4s;
}

.work-item-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-item-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: clamp(16px, 2vw, 28px);
  transition: opacity 0.3s, transform 0.3s;
}

.work-item-type {
  font-family: var(--mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.work-item-title {
  font-size: var(--text-md);
  font-weight: 700;
  line-height: 1.35;
  color: var(--white);
}

/* Mobile work grid spans */
.wi-1 { grid-column: 1 / -1; grid-row: span 2; min-height: 260px; }
.wi-2 { min-height: 200px; }
.wi-3 { min-height: 200px; }
.wi-4 { grid-row: span 2;  min-height: 260px; }
.wi-5 { grid-row: span 2;  min-height: 260px; }
.wi-6 { grid-column: 1 / -1; min-height: 200px; }

@media (min-width: 576px) {
  .work-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0;
  }
}

@media (min-width: 992px) {
  .work-item::after { opacity: 0; }
  .work-item:hover::after { opacity: 1; }

  .work-item-info {
    opacity: 0;
    transform: translateY(8px);
  }

  .work-item:hover .work-item-info {
    opacity: 1;
    transform: none;
  }

  .work-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(100px, auto);
  }

  .wi-1 { grid-column: 1 / 8;  grid-row: span 4; min-height: 400px; }
  .wi-2 { grid-column: 8 / 13; grid-row: span 2; min-height: 220px; }
  .wi-3 { grid-column: 8 / 13; grid-row: span 2; min-height: 220px; }
  .wi-4 { grid-column: 1 / 5;  grid-row: span 3; min-height: 320px; }
  .wi-5 { grid-column: 5 / 13; grid-row: span 3; min-height: 320px; }
  .wi-6 { grid-column: 1 / 13; grid-row: span 2; min-height: 240px; }
}


/* =============================================
   WORK FILTERS
   ============================================= */

.work-filters {
  position: absolute;
  bottom: 112px;
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  gap: 32px;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.work-filters::-webkit-scrollbar {
  display: none;
}

.work-filter {
  font-weight: 500;
  font-size: var(--text-base);
  letter-spacing: -0.025rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--mid);
  transition: color 0.2s;
}

.work-filter:hover {
  color: var(--black);
}

.work-filter.active {
  color: var(--black);
}

.portfolio-item.hidden {
  display: none;
}

/* =============================================
   PORTFOLIO GRID — work.html
   ============================================= */

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 0 12px 12px;
}

.portfolio-item {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 64px;
  gap: 24px;
}

.portfolio-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 3;
  border-radius: 12px;
  flex-shrink: 0;
}

.portfolio-thumb img,
.portfolio-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.portfolio-item:hover .portfolio-thumb img,
.portfolio-item:hover .portfolio-thumb video {
  transform: scale(1.03);
}

.portfolio-scroll .portfolio-thumb img {
  height: auto;
  object-fit: initial;
  transition: transform 0s;
}

.portfolio-scroll:hover .portfolio-thumb img {
  transform: none;
}

.portfolio-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 20%;
}

.portfolio-client {
  font-family: var(--mono);
  font-size: var(--text-sm);
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.portfolio-client-redacted {
  display: block;
  width: 88px;
  height: 15px;
  background: var(--mid);
  border-radius: 2px;
}

.portfolio-item .portfolio-title {
  font-size: var(--text-base);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin: 0 0 8px;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.portfolio-tag {
  font-size: var(--text-md);
  color: var(--mid);
  border: 1px solid var(--mid);
  border-radius: 999px;
  padding: 2px 10px;
}

/* Locked portfolio items */
.portfolio-item.locked .portfolio-thumb {
  background-color: var(--black);
}
.portfolio-item.locked img,
.portfolio-item.locked video {
  filter: blur(20px) saturate(0.5);
  transform: scale(1.1);
  transition: filter 0.6s ease, transform 0.6s ease;
}
.portfolio-item.locked:hover img,
.portfolio-item.locked:hover video {
  transform: scale(1.1);
}
.portfolio-item.unlocked img,
.portfolio-item.unlocked video {
  filter: none;
}
.lock-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: opacity 0.6s ease;
}
.portfolio-item.unlocked .lock-overlay {
  opacity: 0;
  pointer-events: none;
}
.lock-form {
  display: flex;
  border-radius: 100px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  border: 1px solid var(--accent);
  overflow: hidden;
  transition: border-color 0.2s;
}
.lock-form:focus-within { border-color: var(--accent); }
.lock-form.pw-error { border-color: #e74c3c; }
.lock-form .lock-input {
  padding: 10px 16px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: var(--text-md);
  outline: none;
  width: 130px;
}
.lock-form .lock-input::placeholder { color: var(--mid); }
.lock-form .btn {
  border-radius: 0;
  font-size: var(--text-md);
}

/* Password gate (experience page) */
.pw-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--white);
  padding: var(--gutter);
}
.pw-gate.unlocked { display: none; }
.pw-gate h2 {
  font-size: clamp(var(--text-lg), 3vw, var(--text-2xl));
  margin-bottom: 8px;
  color: var(--white);
}
.pw-gate p {
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
}
.pw-form {
  display: flex;
  width: 100%;
  max-width: 400px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.pw-form:focus-within { border-color: var(--accent); }
.pw-form.pw-error { border-color: #e74c3c; }
.pw-input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  background: transparent;
  color: var(--white);
  outline: none;
}
.pw-input::placeholder { color: var(--mid); }
.pw-form .btn {
  border-radius: 0;
  border-left: 1px solid rgba(255,255,255,0.15);
}

@media (min-width: 576px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1600px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =============================================
   SHOWCASE — full-bleed project display
   ============================================= */

.showcase {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.showcase-track {
  display: flex;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}

.showcase-track::-webkit-scrollbar {
  display: none;
}

.showcase-slide {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  scroll-snap-align: start;
  overflow: hidden;
  position: relative;
}
.showcase-bg-img {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;
}

/* Showcase — thumbnail slide (non-device) */
.showcase-thumb {
  position: relative;
  z-index: 1;
  width: 75vw;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: clamp(8px, 1.5vw, 12px);
  box-shadow:
    0 25px 60px -12px rgba(0,0,0,0.5),
    0 12px 24px -8px rgba(0,0,0,0.25);
}
.showcase-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 992px) {
  .showcase-thumb {
    width: min(calc(100vw - var(--gutter) * 2), 1100px);
    transform: scale(0.7);
  }
}

.showcase-title {
  position: absolute;
  bottom: 64px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--white);
  border-radius: 32px;
  padding: 8px 16px;
  color: var(--black);
  z-index: 2;
  white-space: nowrap;
}

.showcase-nav {
  position: absolute;
  bottom: clamp(24px, 4vw, 48px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 2;
}

.showcase-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.showcase-dot.active {
  background: rgba(255,255,255,0.9);
  transform: scale(1.4);
}

.showcase-dot:hover {
  background: rgba(255,255,255,0.6);
}

.showcase-devices {
  position: relative;
  z-index: 1;
}

.showcase-slide > .project-info {
  display: none;
}

@media (min-width: 992px) {
  .showcase-devices {
    transform: scale(0.7);
  }
  .showcase-title {
    bottom: 104px;
  }  
}

@media (min-width: 1440px) {
  .showcase-slide > .project-info {
    display: block;
    position: absolute;
    right: clamp(40px, 5vw, 80px);
    z-index: 1;
    max-width: 280px;
  }
  .showcase-title {
    bottom: 112px;
  }  
}

/* =============================================
   SHOWCASE SCROLL ROWS — homepage
   ============================================= */

.home-page .showcase {
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 0 12px;
  overflow: hidden;
}

.scroll-row {
  overflow: hidden;
  width: 100%;
}

.scroll-track {
  display: flex;
  gap: 12px;
  width: max-content;
  will-change: transform;
}

.scroll-row--left .scroll-track {
  animation: scroll-left 70s linear infinite;
}

.scroll-row--right .scroll-track {
  animation: scroll-right 70s linear infinite;
}

.scroll-row--left:nth-child(3) .scroll-track {
  animation-duration: 90s;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes scroll-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.scroll-thumb {
  flex-shrink: 0;
  width: clamp(300px, 30vw, 500px);
  aspect-ratio: 5 / 3;
  border-radius: 8px;
  overflow: hidden;
}

.scroll-thumb img,
.scroll-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================= */

.device {
  overflow: hidden;
  position: relative;
}

.device img,
.device video {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  transform: translateY(0);
  will-change: transform;
  user-select: none;
  -webkit-user-drag: none;
}
.device-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.device-overlay {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: cover;
  pointer-events: none;
  z-index: 1;
}

/* --- Mobile: phone 60vw, laptop 10:16 fallback --- */
.device-laptop {
  width: 75vw;
  height: calc(75vw * 16 / 10);
  border-radius: clamp(21px, 3.2vw, 40px);
  box-shadow:
    0 25px 60px -12px rgba(0,0,0,0.5),
    0 12px 24px -8px rgba(0,0,0,0.25);
}
.device-video {
  height: calc(75vw * 10 / 16);
}

.device-laptop img {
  width: auto !important;
  height: auto !important;
  min-height: calc(75vw * 16 / 10 - 16px);
}

.device-phone {
  width: 60vw;
  aspect-ratio: 1 / 2;
  border-radius: clamp(21px, 2.2vw, 32px);
  box-shadow:
    0 20px 50px -10px rgba(0,0,0,0.5),
    0 8px 20px -6px rgba(0,0,0,0.25);
  z-index: 1;
  position: static;
  transform: none;
  height: auto;
  border-bottom: 48px solid var(--black);
}

/* When phone exists, hide laptop on mobile */
.device-laptop:has(~ .device-phone) {
  display: none;
}

/* --- Portrait tablet: phone 40vw, laptop landscape --- */
@media (min-width: 768px) {
  .device-phone {
    width: 40vw;
  }

  .device-laptop {
    width: 90vw;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .device-laptop img {
    width: 100% !important;
    height: auto !important;
    min-height: 0;
  }

  .device-video {
    height: auto;
    aspect-ratio: 16 / 10;
  }
}

/* --- Landscape tablet & desktop: laptop 16:10, phone hidden --- */
@media (min-width: 992px) {
  .device-laptop {
    width: min(calc(100vw - var(--gutter) * 2), 1100px);
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .device-video {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .device-laptop img {
    width: 100% !important;
    height: auto !important;
    min-height: 0;
  }

  .device-laptop:has(~ .device-phone) {
    display: block;
  }

  .device-phone {
    display: none;
  }
}

/* =============================================
   SHOWCASE: SCREENS + IMAC LAYOUT
   ============================================= */

.showcase-screens {
  --sg: clamp(12px, 2vw, 28px);
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  padding: 0 var(--gutter);
  height: 100%;
  overflow: hidden;
  gap: var(--sg);
  box-sizing: border-box;
}

.screen-shot {
  flex: 0 0 auto;
  width: clamp(140px, 22vw, 340px);
  overflow: hidden;
  border-radius: clamp(6px, 0.6vw, 8px);
  box-shadow:
    0 25px 60px -12px rgba(0,0,0,0.5),
    0 12px 24px -8px rgba(0,0,0,0.25);
}

.screen-shot img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  will-change: transform;
}

.showcase-screens .screen-shot:nth-child(1) img {
  margin-top: 200px;
}

.showcase-screens .screen-shot:nth-child(2) img {
  margin-bottom: 100px;
}

.screen-imac {
  flex: 0 0 auto;
  margin-left: var(--sg); /* combined with gap = 2× gap vs screenshots */
  align-self: center;
  width: clamp(280px, 38vw, 600px);
}

.screen-imac img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

@media (max-width: 991px) {
  .showcase-screens {
    justify-content: center;
    align-items: center;
    gap: 0;
  }
  .screen-shot {
    display: none;
  }
  .screen-imac {
    margin-left: 0;
    width: min(85vw, 480px);
    align-self: auto;
  }
}

/* =============================================
   QUOTE
   ============================================= */

/* Testimonials — horizontal scrollable cards */
.testimonials-section {
  padding: clamp(80px, 12vw, 80px) var(--gutter);
  background: var(--light);
}

.testimonials-intro {
  /* max-width: 960px; */
  margin-bottom: clamp(40px, 6vw, 80px);
}
.testimonials-right {
  min-width: 0;
}
@media (min-width: 992px) {
  .testimonials-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(40px, 5vw, 80px);
  }
  .testimonials-intro {
    flex: 0 0 40%;
    max-width: 40%;
    margin: -120px 5% 0 0;
  }
  .testimonials-right {
    flex: 1;
    min-width: 0;
  }
}

.testimonials-intro .pretitle {
  font-family: 'DM Mono', monospace;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid);
  margin-bottom: 16px;
}
.testimonials-intro h2 {
  margin-bottom: 16px;
}
.testimonials-subtitle {
  font-size: var(--text-base);
  line-height: 1.5;
}
.testimonials-nav {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  margin-top: 24px;
}
.testimonials-nav .btn {
  width: 61px;
  height: 61px;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-track {
  cursor: grab;
  display: flex;
  gap: clamp(16px, 2vw, 24px);
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonials-track.is-dragging { cursor: grabbing; user-select: none; }
.testimonials-track .testimonial-card {
  flex: 0 0 85%;
  max-width: 85%;
  opacity: 0.5;
  transition: opacity 0.35s;
}
.testimonials-track .testimonial-card.active {
  opacity: 1;
}
.testimonial-card--spacer {
  background: transparent !important;
  border: none !important;
  pointer-events: none;
  opacity: 0 !important;
}

.testimonial-card {
  aspect-ratio: 3 / 4;
  padding: clamp(24px, 3vw, 40px);
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}


.quote-logo {
  position: absolute;
  bottom: clamp(24px, 3vw, 40px);
  right: clamp(24px, 3vw, 40px);
  max-width: 128px;
  height: auto;
  opacity: 0.15;
  filter: grayscale(1) brightness(0.6);
}

@media (min-width: 768px) {
  .testimonials-track .testimonial-card {
    flex: 0 0 60%;
    max-width: 60%;
  }
}
@media (min-width: 992px) {
  .testimonials-track .testimonial-card {
    flex: 0 0 85%;
    max-width: 85%;
  }
}
@media (min-width: 1600px) {
  .testimonials-track .testimonial-card {
    flex: 0 0 55%;
    max-width: 55%;
  }
}

.quote-text {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(var(--text-md), 2vw, var(--text-base));
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.02em;
  line-height: 1.4;
  margin-bottom: 24px;
}

.quote-footer {
  margin-top: auto;
}

.quote-author {
  font-size: var(--text-md);
  font-weight: 600;
}

.quote-role {
  font-size: var(--text-md);
  color: var(--mid);
  margin-top: 4px;
}


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

.footer {
  display: flex;
   flex-direction: row;
    justify-content: space-between;
    align-items: center;
  gap: 20px;
  background: var(--black);
  padding: 32px var(--gutter);
  font-size: var(--text-base);
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-copy {  
  color: rgba(255,255,255,0.7);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-link {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--white);
}

@media (min-width: 992px) {
  .footer {
    gap: 0;
  }

  .footer-links {
    gap: 24px;
  }
}

/* =============================================
   DISCIPLINES — About page
   ============================================= */

.discipline-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--light);
}

.discipline-item {
  padding: clamp(24px, 3.5vw, 48px) 0;
  border-bottom: 1px solid var(--light);
}

.discipline-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: left;
  font-family: inherit;
}

.discipline-name {
  font-size: clamp(var(--text-base), 2.5vw, var(--text-lg));
  font-weight: 600;
  letter-spacing: -0.05rem;
  line-height: 1.1;
  color: var(--black);
}

.discipline-icon {
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-left: 16px;
}

.discipline-icon::before,
.discipline-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--black);
  transition: transform 0.3s;
}

.discipline-icon::before {
  width: 16px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.discipline-icon::after {
  width: 1.5px;
  height: 16px;
  transform: translate(-50%, -50%);
}

.discipline-item.open .discipline-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.discipline-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease;
  margin-top: 0;
}

.discipline-item.open .discipline-body {
  max-height: 400px;
  margin-top: 10px;
}

.discipline-desc {
  font-size: var(--text-md);
  color: var(--mid);
  max-width: 680px;
  padding-right: 16px;
}

@media (min-width: 992px) {
  .discipline-desc {
    font-size: var(--text-base);
    padding-right: 0;
  }
}


/* Process steps */
.process-steps {
  display: grid;
  gap: clamp(40px, 6vw, 80px);
}

.process-step-num {
  font-family: var(--mono);
  font-size: var(--text-sm);
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}

.process-step h3 {
  font-size: clamp(var(--text-base), 2.5vw, var(--text-lg));
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* =============================================
   CONTACT — Contact page
   ============================================= */

.contact-block {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vw, 56px);
}

.contact-email {
  overflow: hidden;
  font-size: clamp(var(--text-lg), 3.5vw, var(--text-3xl));
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  display: inline-block;
  color: var(--black);
  text-decoration: none;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--black);
  transition: color 0.2s, border-color 0.2s;
}

.contact-email:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-meta-item {
  font-size: var(--text-md);
  line-height: 1.6;
  color: var(--mid);
}

.contact-meta-item a {
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--black);
  transition: color 0.2s, border-color 0.2s;
}

.contact-meta-item a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* =============================================
   WORK PAGE — mobile first
   ============================================= */

.work-page {
  position: relative;
  z-index: 1;
  height: 100vh;
  overflow-y: scroll;
  overscroll-behavior: none;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.work-page::-webkit-scrollbar {
  display: none;
}

/* Home page — scroll container */
.home-page {
  height: 100vh;
  overflow-y: scroll;
  overscroll-behavior: none;
  scroll-snap-type: y proximity;
  scrollbar-width: none;
}
.home-page::-webkit-scrollbar { display: none; }
.home-page > section {
  scroll-snap-align: start;
}

.project {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  background: var(--bg);
}

/* Section background image (HTML img, not CSS background) */
.project-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.7;
  z-index: 1;
}

/* Brand color overlay at 85% opacity */
.project-overlay {
  position: absolute;
  inset: 0;
  background: var(--bg);
  z-index: 0;
}

/* Mobile: info at top-left, logo centered in remaining space below */
.project-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  padding: calc(var(--gutter) * 5) var(--gutter) var(--gutter);
  will-change: transform;
}

.project-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  color: var(--white);
}

.project-name {
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
}

.project-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.meta-label {
  font-family: var(--mono);
  font-size: var(--text-xs);
  letter-spacing: 0.13em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}

.meta-value {
  font-size: var(--text-md);
  font-weight: 500;
  line-height: 1.3;
  color: rgba(255,255,255,0.75);
}

.meta-value strong {
  font-weight: 700;
  letter-spacing: -0.05em;
}

.meta-link {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  transition: color 0.2s, border-color 0.2s;
}

.meta-link:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}

/* flex: 1 fills remaining vertical space; logo centers within it */
.project-visual {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 40vw width on mobile — square and horizontal logos appear the same size */
.project-logo {
  display: block;
  width: 40vw;
  height: auto;
  max-height: 40vw;
  object-fit: contain;
  opacity: 0.9;
}

.project-logo-filter {
  filter: brightness(0) invert(1);
}

.project-cta-wrap {
  position: relative;
  z-index: 2;
  display: none;
  justify-content: center;
  padding-bottom: clamp(24px, 14vw, 64px);
}

/* Dot navigation */
.project-dots {
  position: fixed;
  top: 50%;
  right: 16px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateY(-50%);
  transition: opacity 0.3s;
}

.project-dots.dots-hidden {
  opacity: 0;
  pointer-events: none;
}

/* Hero inside work-page scroll container */
.work-hero {
  flex-shrink: 0;
  scroll-snap-align: start;
}

.dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  text-decoration: none;
  padding: 2px;
  margin: -8px;
  box-sizing: content-box;
  transition: background 0.3s, transform 0.3s;
}

.dot.active {
  background: rgba(255,255,255,0.9);
  transform: scale(1.6);
}

.dot:hover {
  background: rgba(255,255,255,0.6);
}

/* Light-background project sections — invert text to dark */
.project--light .project-name    { color: var(--black); }
.project--light .meta-label      { color: rgba(0,0,0,0.45); }
.project--light .meta-value      { color: rgba(0,0,0,0.7); }
.project--light .meta-link       { color: rgba(0,0,0,0.7); border-bottom-color: rgba(0,0,0,0.25); }
.project--light .meta-link:hover { color: var(--black); border-bottom-color: rgba(0,0,0,0.6); }


/* Work page nav — transparent over coloured sections */
.work-body .nav.open {
  background: var(--black);
}

@media (min-width: 768px) {
  .project-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: clamp(40px, 6vw, 120px);
    padding: calc(var(--gutter) * 2) var(--gutter);
  }

  .project-info {
    flex: 1;
    max-width: 480px;
    gap: clamp(24px, 4vw, 48px);
  }

  .meta-label   { font-size: var(--text-xs); }
  .meta-value   { font-size: var(--text-md); }
  .project-meta { gap: clamp(16px, 2.5vw, 28px); }

  .project-visual {
    flex: 1;
    width: auto;
  }

  .project-logo {
    width: auto;
    height: auto;
    max-width: clamp(180px, 28vw, 380px);
    max-height: clamp(100px, 18vw, 220px);
  }

  .project-dots {
    right: var(--gutter);
  }

  .project-cta-wrap {
    position: absolute;
    bottom: clamp(32px, 5vw, 56px);
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 0;
  }
}

/* =============================================
   TEXT SIZE
   ============================================= */

.text-base   { font-size: var(--text-base); }
.text-md   { font-size: var(--text-md); }

/* =============================================
   TEXT COLOR
   ============================================= */

.text-accent {
  color: var(--accent);
}

.text-light {
  color: var(--light);
}

.text-white {
  color: var(--white);
}

/* =============================================
   FONT WEIGHT
   ============================================= */

.text-400 {
  font-weight: 400;
}

/* =============================================
   SPACING UTILITIES
   ============================================= */

.p-0  { padding: 0 !important; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

/* =============================================
   SIZE UTILITIES
   ============================================= */

.w-100 { min-width: 100%; }