/* ── ACCESSIBILITY ── */
.skip-link {
  position: fixed;
  top: -100%;
  left: 1rem;
  padding: 0.6rem 1.2rem;
  background: var(--white);
  color: var(--black);
  font-size: 0.85rem;
  font-family: var(--sans);
  border: 2px solid var(--black);
  border-radius: var(--r-interactive);
  z-index: 999;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 1rem;
}

*:focus {
  outline: none;
}
*:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
#web *:focus-visible,
#graphic *:focus-visible,
#pricing *:focus-visible,
#about *:focus-visible {
  outline-color: var(--black);
}
#contact *:focus-visible,
footer *:focus-visible {
  outline-color: #fff;
}
.hero-side:focus-visible,
#web .web-card:focus-visible,
#graphic .g-item:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── RESET ── */
:root {
  --black: #0a0a0a;
  --off-black: #111;
  --mid: #1c1c1c;
  --white: #f5f4f0;
  --off-white: #e8e7e3;
  --success: rgba(120, 220, 140, 0.9);
  --error: rgba(255, 110, 100, 0.9);
  --display: "Bebas Neue", Impact, sans-serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --r-interactive: 6px;
  --r-tag: 4px;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: var(--white);
  color: var(--black);
  font-family: var(--sans);
  overflow-x: hidden;
  margin: 0;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 2.5rem;
  transition:
    background 0.35s,
    border-color 0.35s,
    padding 0.35s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
  border-color: rgba(255, 255, 255, 0.07);
  padding: 1rem 2.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  height: 32px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  opacity: 0.4;
  transition: opacity 0.2s;
}
.nav-links a:hover {
  opacity: 1;
}
.nav-links li:last-child a {
  opacity: 1;
}

/* ── HERO ── */
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.hero-columns {
  display: flex;
  position: absolute;
  inset: 0;
}
.hero-headline {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding: 2rem;
  pointer-events: none;
}
.hero-headline > * {
  pointer-events: auto;
}
.hero-headline-card {
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 4rem 4.5rem 3.5rem;
  max-width: 700px;
}
.hero-heading {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  color: #fff;
  line-height: 1.05;
  letter-spacing: 0.02em;
  max-width: 700px;
  margin: 0 auto;
}
.hero-sub-headline {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 540px;
  line-height: 1.7;
  margin: 1.25rem auto 0;
}
.hero-em {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.75rem;
}
.hero-ctas .hero-btn {
  opacity: 1;
  transform: none;
}
.hero-btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.6);
}
.hero-btn-outline:hover {
  background: #fff;
  color: var(--black);
  border-color: #fff;
}
.hero-side {
  position: relative;
  overflow: hidden;
  flex: 1;
  transition: flex 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.hero-side.web {
  background: var(--black);
}
.hero-side.graphic {
  background: var(--mid);
}

/* 70/30 split — expanded:shrunk = 7:3 ratio */
.hero-side.expanded {
  flex: 2.333;
}
.hero-side.shrunk {
  flex: 1;
}

.hero-images {
  position: absolute;
  inset: 0;
  opacity: 1;
}
.hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-img.active {
  opacity: 0.3;
}
.hero-side.web .hero-images::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.2) 100%);
}
.hero-side.graphic .hero-images::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(28, 28, 28, 0.85) 0%, rgba(28, 28, 28, 0.2) 100%);
}
.hero-img.web-1 {
  background-image: url("img/projects/web/Portfolio_Restaurant.png");
  background-size: cover;
  background-position: top;
}
.hero-img.web-2 {
  background-image: url("img/projects/web/Portfolio_FureverNV.png");
  background-size: cover;
  background-position: top;
}
.hero-img.web-3 {
  background-image: url("img/projects/web/Portfolio_LinkInBio.png");
  background-size: cover;
  background-position: top;
}
.hero-img.gr-1 {
  background-image: url("img/Logos.svg");
  background-size: cover;
  background-position: center;
}
.hero-img.gr-2 {
  background-image: url("img/Infographics.svg");
  background-size: cover;
  background-position: center;
}
.hero-img.gr-3 {
  background-image: url("img/Promos.svg");
  background-size: cover;
  background-position: center;
}
.hero-img.gr-4 {
  background-image: url("img/Merch.svg");
  background-size: cover;
  background-position: center;
}
.hero-img.gr-5 {
  background-image: url("img/Overlays.svg");
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 3rem;
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  -webkit-mask-image: radial-gradient(ellipse 85% 80% at 50% 50%, black 85%, transparent 100%);
  mask-image: radial-gradient(ellipse 85% 80% at 50% 50%, black 85%, transparent 100%);
  transition:
    background 0.4s ease,
    backdrop-filter 0.4s ease,
    -webkit-backdrop-filter 0.4s ease;
}
.hero-side.expanded .hero-content {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-label {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1.25rem;
  transition: color 0.4s;
}
.hero-side.expanded .hero-label {
  color: rgba(255, 255, 255, 0.65);
}
.hero-big {
  font-family: var(--display);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  color: #fff;
  line-height: 0.95;
  letter-spacing: 0.02em;
  transition:
    transform 0.7s cubic-bezier(0.23, 1, 0.32, 1),
    color 0.4s;
}
.hero-side.shrunk .hero-big {
  color: rgba(255, 255, 255, 0.2);
}
.hero-side.expanded .hero-big {
  transform: scale(1.04);
}
.hero-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0);
  max-width: 240px;
  line-height: 1.7;
  margin: 1.1rem auto 1.75rem;
  opacity: 0;
  transition:
    color 0.4s ease 0.25s,
    opacity 0.4s ease 0.25s;
}
.hero-side.expanded .hero-sub {
  color: rgba(255, 255, 255, 0.6);
  opacity: 1;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: var(--sans);
  border-radius: var(--r-interactive);
  opacity: 0;
  transform: translateY(8px);
  transition:
    background 0.25s,
    color 0.25s,
    border-color 0.25s,
    opacity 0.35s ease 0.35s,
    transform 0.35s ease 0.35s;
}
.hero-side.expanded .hero-btn {
  opacity: 1;
  transform: translateY(0);
}
.hero-btn:hover {
  background: #fff;
  color: var(--black);
  border-color: #fff;
}
.hero-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
  opacity: 1;
}
.hero-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition:
    background 0.3s,
    transform 0.3s;
}
.hero-dot.active {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.3);
}

.split-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-50%);
  z-index: 4;
  transition:
    opacity 0.5s,
    left 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.hero.web-active .split-line {
  left: 70%;
  opacity: 0.1;
}
.hero.graphic-active .split-line {
  left: 30%;
  opacity: 0.1;
}
.hero-bottom {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  pointer-events: none;
  transition: opacity 0.3s;
}
.hero.web-active .hero-bottom,
.hero.graphic-active .hero-bottom {
  opacity: 0;
}
.hero-bottom p {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
  margin: 0.6rem auto 0;
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  animation: drop 2s ease infinite;
}
@keyframes drop {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}

/* ── SECTIONS ── */
section {
  padding: 6rem 2.5rem;
}
.section-wrap {
  max-width: 1000px;
  margin: 0 auto;
}
.section-kicker {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.section-heading {
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin-bottom: 2.5rem;
}
.section-intro {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 2.5rem;
}
#web .section-intro {
  color: rgba(255, 255, 255, 0.55);
}
#graphic .section-intro {
  color: rgba(0, 0, 0, 0.55);
}

/* ── WEB SECTION ── */
#web {
  background: var(--black);
}
#web .section-kicker {
  color: rgba(255, 255, 255, 0.3);
}
#web .section-heading {
  color: var(--white);
}
.web-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.07);
  gap: 1px;
}
.web-card {
  background: var(--off-black);
  cursor: pointer;
  overflow: hidden;
  transition: background 0.3s;
  position: relative;
}
.web-card:hover {
  background: #181818;
}
.web-card-thumb {
  aspect-ratio: 16/9;
  display: flex;
  align-items: start;
  justify-content: center;
  background: #0d0d0d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}
.web-card-thumb img {
  width: 100%;
}
.web-card:nth-child(1) .web-card-thumb {
  background: linear-gradient(135deg, #7c3aed, #db2777);
}
.web-card:nth-child(2) .web-card-thumb {
  background: linear-gradient(135deg, #0ea5e9, #10b981);
}
.web-card:nth-child(3) .web-card-thumb {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}
.thumb-placeholder {
  font-family: var(--display);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.1em;
}
.thumb-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  background: rgba(0, 0, 0, 0.35);
}
.web-card:hover .thumb-zoom {
  opacity: 1;
}
.zoom-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zoom-icon svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.web-card-body {
  padding: 1.25rem 1.25rem 1.5rem;
}
.card-type {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.25rem 0.6rem;
  border-radius: var(--r-tag);
  margin-bottom: 0.6rem;
}
.card-title {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
  line-height: 1;
}
.card-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.32);
  line-height: 1.65;
}
.web-card-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.web-card:hover .web-card-bar {
  transform: scaleX(1);
}

/* ── GRAPHIC SECTION ── */
#graphic {
  background: var(--white);
}
#graphic .section-kicker {
  color: rgba(0, 0, 0, 0.35);
}
#graphic .section-heading {
  color: var(--black);
}
.graphic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 4px;
}
.g-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.g-item.span2 {
  grid-column: span 2;
}
.g-item.tall {
  grid-row: span 2;
}
.g-item.sbcoop {
  background-image: url("img/projects/graphics/Thumbnail_Coop.png");
  background-color: #ffffff;
  background-size: 55%;
}
.g-item.nessus {
  background-image: url("img/projects/graphics/Thumbnail_Nessus.png");
  background-color: #ffffff;
  background-size: 60%;
}
.g-item.furevernv {
  background-image: url("img/projects/graphics/Thumbnail_FureverNV.png");
  background-color: #ffffff;
  background-size: 35%;
}
.g-item.gabe-shirey {
  background-image: url("img/projects/graphics/Thumbnail_GabeShirey.png");
  background-color: #ffffff;
  background-size: 65%;
}
.g-item.snow-queen {
  background-image: url("img/projects/graphics/Thumbnail_SnowQueen.svg");
  background-color: #ffffff;
  background-size: 85%;
}
.g-item.bunker-bites {
  background-image: url("img/projects/graphics/Thumbnail_BunkerBites.svg");
  background-color: #ffffff;
  background-size: 85%;
}
.g-item.seibaa {
  background-image: url("img/projects/graphics/Thumbnail_Seibaa.svg");
  background-color: #ffffff;
  background-size: 85%;
}
.svg .g-placeholder {
  font-family: var(--display);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.1em;
}
.g-hover {
  position: absolute;
  inset: 0;
  background: rgba(245, 244, 240, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  padding: 1rem;
}
.g-item:hover .g-hover {
  opacity: 1;
}
.g-hover-title {
  font-family: var(--display);
  font-size: 1.3rem;
  color: var(--black);
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}
.g-hover-tag {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.07);
  padding: 0.2rem 0.55rem;
  border-radius: var(--r-tag);
}

/* ── PRICING SECTION ── */
#pricing {
  background: var(--off-white);
}
#pricing .section-kicker {
  color: rgba(0, 0, 0, 0.35);
}
#pricing .section-heading {
  color: var(--black);
  margin-bottom: 0.75rem;
}
.section-sub {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.45);
  line-height: 1.7;
  margin-bottom: 3rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(8, auto);
  gap: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.plan {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 8;
  padding: 2.25rem 2rem 2rem;
  background: var(--white);
  position: relative;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.plan:last-child {
  border-right: none;
}
.plan.featured {
  background: var(--black);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  margin: -1px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.plan-badge {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: var(--r-tag);
  margin-bottom: 1.5rem;
  align-self: start;
}
.plan:not(.featured) .plan-badge {
  background: rgba(0, 0, 0, 0.06);
  color: rgba(0, 0, 0, 0.45);
}
.plan.featured .plan-badge {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
}
.plan-header {
  margin-top: 1rem;
}
.plan-name {
  font-family: var(--display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.plan:not(.featured) .plan-name {
  color: var(--black);
}
.plan.featured .plan-name {
  color: var(--white);
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.35rem;
}
.price-amount {
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 4rem);
  letter-spacing: 0.02em;
  line-height: 1;
}
.plan:not(.featured) .price-amount {
  color: var(--black);
}
.plan.featured .price-amount {
  color: var(--white);
}
.price-period {
  font-size: 0.8rem;
  padding-bottom: 0.2rem;
}
.plan:not(.featured) .price-period {
  color: rgba(0, 0, 0, 0.35);
}
.plan.featured .price-period {
  color: rgba(255, 255, 255, 0.35);
}
.plan-tagline {
  font-size: 0.82rem;
  line-height: 1.65;
  padding-bottom: 1.75rem;
  margin-bottom: 1.75rem;
}
.plan:not(.featured) .plan-tagline {
  color: rgba(0, 0, 0, 0.45);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.plan.featured .plan-tagline {
  color: rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.features-label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  margin-top: 0.25rem;
}
.plan:not(.featured) .features-label {
  color: rgba(0, 0, 0, 0.3);
}
.plan.featured .features-label {
  color: rgba(255, 255, 255, 0.25);
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0;
  margin: 0;
}
.plan-features-meta {
  margin-bottom: 0;
}
.plan-features-included {
  margin-bottom: 2rem;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  line-height: 1.5;
}
.plan:not(.featured) .plan-features li {
  color: rgba(0, 0, 0, 0.55);
}
.plan.featured .plan-features li {
  color: rgba(255, 255, 255, 0.5);
}
.plan:not(.featured) .plan-features li strong {
  color: var(--black);
  font-weight: 500;
}
.plan.featured .plan-features li strong {
  color: var(--white);
  font-weight: 500;
}
.feature-divider {
  height: 1px;
  margin: 1.25rem 0;
}
.plan:not(.featured) .feature-divider {
  background: rgba(0, 0, 0, 0.06);
}
.plan.featured .feature-divider {
  background: rgba(255, 255, 255, 0.07);
}
.check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.check svg {
  width: 14px;
  height: 14px;
}
.plan:not(.featured) .check svg {
  stroke: rgba(0, 0, 0, 0.35);
}
.plan.featured .check svg {
  stroke: rgba(255, 255, 255, 0.45);
}
.plan-features li.excluded {
  opacity: 0.3;
}
.x {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.x svg {
  width: 12px;
  height: 12px;
}
.plan:not(.featured) .x svg {
  stroke: rgba(0, 0, 0, 0.4);
}
.plan.featured .x svg {
  stroke: rgba(255, 255, 255, 0.4);
}
.plan-cta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-self: end;
}
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--sans);
  border-radius: var(--r-interactive);
  cursor: pointer;
  border: none;
  transition:
    opacity 0.2s,
    transform 0.2s;
  text-decoration: none;
}
.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}
.plan:not(.featured) .btn-primary {
  background: var(--black);
  color: var(--white);
}
.plan.featured .btn-primary {
  background: var(--white);
  color: var(--black);
}
.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--sans);
  border-radius: var(--r-interactive);
  cursor: pointer;
  background: transparent;
  transition:
    background 0.2s,
    color 0.2s;
  text-decoration: none;
}
.plan:not(.featured) .btn-secondary {
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: rgba(0, 0, 0, 0.45);
}
.plan:not(.featured) .btn-secondary:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--black);
}
.plan.featured .btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.4);
}
.plan.featured .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}
.pause-note {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.3);
  letter-spacing: 0.04em;
}
.pricing-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.risk-reversal {
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.6);
  text-align: center;
  max-width: 40ch;
  margin-bottom: 0.5rem;
}
.pricing-call-btn {
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 0.65rem 1.25rem;
}
.pricing-call-btn:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--black);
}

/* ── ABOUT SECTION ── */
#about {
  background: var(--off-white);
}
#about .section-kicker {
  color: rgba(0, 0, 0, 0.35);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.about-photo {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.about-photo img {
  max-width: 100%;
}

.about-copy .section-heading {
  margin-bottom: 1.25rem;
  color: var(--black);
}
.about-copy .section-heading em {
  font-style: italic;
}
.about-body {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.85;
  margin-bottom: 1rem;
}
.about-body strong {
  color: var(--black);
  font-weight: 500;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.5rem;
}
.chip {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.38rem 0.85rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.45);
  border-radius: var(--r-interactive);
  transition:
    border-color 0.2s,
    color 0.2s;
}
.chip:hover {
  border-color: var(--black);
  color: var(--black);
}

/* ── CONTACT SECTION ── */
#contact {
  background: var(--black);
}
#contact .section-kicker {
  color: rgba(255, 255, 255, 0.25);
}
#contact .section-heading {
  color: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-side p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.8;
  margin-bottom: 0.25rem;
}
.contact-fit {
  margin: 1.5rem 0;
}
.contact-fit-heading {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.75rem;
}
.contact-fit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-fit-list li {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.5;
  padding-left: 1.25rem;
  position: relative;
}
.contact-fit-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.2);
}
.contact-stat {
  margin-bottom: 1rem;
}
.stat-num {
  font-family: var(--display);
  font-size: 2.5rem;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-top: 0.1rem;
}
.contact-band {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
  min-width: 0;
}
#contact form {
  width: 100%;
}
.field label {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}
.field input,
.field textarea,
.field select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem 1rem;
  color: var(--white);
  font-size: 0.9rem;
  font-family: var(--sans);
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
  width: 100%;
  border-radius: var(--r-interactive);
  box-sizing: border-box;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.15);
}
.field select {
  appearance: none;
  cursor: pointer;
}
.field select option {
  background: #1a1a1a;
}
.field textarea {
  resize: vertical;
  min-height: 110px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.submit-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: var(--white);
  color: var(--black);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  border-radius: var(--r-interactive);
  transition:
    background 0.2s,
    transform 0.2s;
}
.submit-btn:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}
.or-link {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 1px;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.or-link:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ── FORM STATUS ── */
.form-status {
  font-size: 0.8rem;
  margin-top: 0.85rem;
  min-height: 1.2em;
  transition: opacity 0.2s;
}
.form-status--success {
  color: var(--success);
}
.form-status--error {
  color: var(--error);
}

/* ── FOOTER ── */
footer {
  background: #060606;
  padding: 1.75rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo-img {
  height: 24px;
  opacity: 0.4;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--white);
}
.footer-copy {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.15);
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.65s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0);
  align-items: center;
  justify-content: center;
  padding: 2rem;
  transition: background 0.3s;
}
.lightbox.open {
  display: flex;
  background: rgba(0, 0, 0, 0.92);
}
.lightbox-inner {
  position: relative;
  max-width: min(900px, 100%);
  width: 100%;
  max-height: calc(100vh - 4rem);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: scale(0.95) translateY(12px);
  transition:
    opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}
.lightbox.open .lightbox-inner {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.lightbox-img {
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  background: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lightbox-img img {
  max-width: 100%;
  max-height: calc(100vh - 10rem);
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.15s ease;
}
.lightbox-img .lb-placeholder {
  font-family: var(--display);
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.08);
  letter-spacing: 0.1em;
  padding: 4rem 2rem;
}
.lightbox-meta {
  padding: 1.25rem 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.lightbox-title {
  font-family: var(--display);
  font-size: 1.75rem;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 0;
}
.lightbox-tag {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.35rem;
}
.lightbox-close {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  transition:
    border-color 0.2s,
    background 0.2s;
  margin-top: 0.2rem;
}
.lightbox-close:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}
.lightbox-close svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
}

/* ── NAV TOGGLE (hamburger) ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  z-index: 101;
}
.nav-toggle .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition:
    transform 0.25s,
    opacity 0.25s;
}
/* X state */
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

iframe {
  border: 1px solid var(--off-white);
  border-radius: 1rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: fit-content;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    z-index: 99;
    margin-top: 64px;
    padding-left: 0;
  }
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  .nav-links li a {
    display: block;
    width: 100%;
    padding: 1rem 0rem;
    background: rgba(10, 10, 10, 1);

    font-size: 1rem;
    letter-spacing: 0.12em;
    opacity: 0.7;
    transition:
      background 0.2s,
      opacity 0.2s;
  }
  .nav-links li a:hover,
  .nav-links li a:focus {
    background: rgba(255, 255, 255, 0.09);
    opacity: 1;
  }

  .nav-links.open {
    display: flex;
  }
  /* .nav-links a {
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    opacity: 0.6;
    padding: 1rem 0;
  }
  .nav-links a:hover {
    opacity: 1;
  } */
  .hero-headline {
    padding: 2rem 1.5rem;
  }
  .hero-heading {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }
  .hero-sub-headline {
    font-size: 0.85rem;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  .hero-images,
  .hero-dots {
    display: none;
  }
  .split-line {
    opacity: 0 !important;
  }
}
@media (max-width: 720px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    border: none;
    gap: 1px;
  }
  .plan {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .plan.featured {
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
}
@media (max-width: 680px) {
  section {
    padding: 6rem 1rem;
  }
  footer {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .graphic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .nav-links a {
    font-size: 0.7rem;
  }
}
