/* ============================================================
   Bubba Irwin Tattoo — bubbairwintattoo.com
   Black & surgical steel: jet-black surfaces, polished steel
   accents, bold elegant typography, maximum clarity
   ============================================================ */

:root {
  --bg: #050506;
  --bg-alt: #0b0c0e;
  --panel: #121418;
  --panel-edge: #262a30;
  --ink: #f2f4f7;
  --ink-dim: #b3b9c2;
  --ink-faint: #7c828c;
  --steel: #c9cfd8;
  --steel-dark: #8f98a3;
  --steel-edge: rgba(201, 207, 216, 0.28);
  --chrome: linear-gradient(180deg, #f5f7fa 0%, #c3cad3 42%, #848d99 58%, #dde2e8 100%);
  --steel-soft: rgba(201, 207, 216, 0.12);
  --font-display: "Cinzel", "Times New Roman", serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
  --nav-h: 76px;
  --radius: 4px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.7);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.02rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* faint brushed-metal grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.03 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: var(--steel); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: #ffffff; }

::selection { background: var(--steel); color: #050506; }

/* chrome-gradient text helper for big headings */
.hero__title, .section__title {
  color: transparent;
  background: var(--chrome);
  -webkit-background-clip: text;
  background-clip: text;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.95rem 2.3rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn--primary {
  background: linear-gradient(180deg, #e8ecf1 0%, #b7bfc9 55%, #98a1ac 100%);
  color: #0b0c0e;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 8px 26px rgba(0, 0, 0, 0.5);
}
.btn--primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #ffffff 0%, #cdd4dc 55%, #a8b1bc 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset, 0 12px 32px rgba(0, 0, 0, 0.6), 0 0 24px rgba(201, 207, 216, 0.18);
  color: #050506;
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--steel-edge);
}
.btn--ghost:hover {
  border-color: var(--steel);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 0 22px rgba(201, 207, 216, 0.12);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(5, 5, 6, 0.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 207, 216, 0.12);
  transition: background 0.3s ease;
}
.nav.is-scrolled { background: rgba(5, 5, 6, 0.96); }

.nav__inner {
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--ink);
}
.nav__brand:hover { color: var(--ink); }
.nav__brand-mark {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border: 1.5px solid var(--steel-dark);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--steel);
  background: linear-gradient(160deg, rgba(201, 207, 216, 0.1), transparent 60%);
}
.nav__brand-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav__brand-text em {
  font-style: normal;
  color: var(--steel-dark);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}
.nav__link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  position: relative;
  padding: 0.35rem 0;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--steel);
  transition: right 0.25s ease;
}
.nav__link:hover, .nav__link.is-active { color: #ffffff; }
.nav__link:hover::after, .nav__link.is-active::after { right: 0; }

.nav__link--cta {
  color: #0b0c0e;
  background: linear-gradient(180deg, #e8ecf1, #a8b1bc);
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius);
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover {
  color: #050506;
  background: linear-gradient(180deg, #ffffff, #c3ccd5);
  box-shadow: 0 0 20px rgba(201, 207, 216, 0.25);
}
.nav__link--cta.is-active { color: #0b0c0e; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  width: 26px; height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   HERO — split: statement left, featured work right
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 3rem) 1.5rem 5rem;
  overflow: hidden;
}
.hero__bg {
  /* flat black with a tiny diagonal BI monogram pattern,
     10px marks running bottom-left to top-right, wide-spaced columns */
  position: absolute;
  inset: 0;
  background-color: var(--bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='84'%3E%3Cg fill='%231a1c21' font-family='Georgia,serif' font-size='10' font-weight='bold' letter-spacing='1'%3E%3Ctext x='14' y='28' transform='rotate(-45 14 28)'%3EBI%3C/text%3E%3Ctext x='56' y='70' transform='rotate(-45 56 70)'%3EBI%3C/text%3E%3C/g%3E%3C/svg%3E");
  background-size: 84px 84px;
}
.hero__bg::after {
  /* fade the monogram field toward the edges so the statement stays dominant */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 75% 65% at 50% 45%, transparent 40%, rgba(5, 5, 6, 0.88) 100%);
}
.hero__inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}
.hero__eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.45em;
  font-size: 0.85rem;
  color: var(--steel-dark);
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
}
.hero__wordmark {
  display: block;
  width: 100%;
  max-width: 680px;
  margin-left: -2%;
  /* fade the artwork's edges into the page black */
  -webkit-mask-image: radial-gradient(ellipse 72% 68% at 50% 50%, #000 48%, transparent 88%);
  mask-image: radial-gradient(ellipse 72% 68% at 50% 50%, #000 48%, transparent 88%);
  filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.8));
}
.hero__title-sub {
  display: block;
  font-size: 0.32em;
  font-weight: 600;
  letter-spacing: 0.6em;
  margin-top: 0.6rem;
  color: var(--ink-dim);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}
.hero__tagline {
  margin: 1.8rem 0 2.4rem;
  max-width: 32rem;
  color: var(--ink-dim);
  font-size: 1.12rem;
  line-height: 1.8;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__social {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(201, 207, 216, 0.14);
}
.hero__social a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink-dim);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
.hero__social a:hover { color: #ffffff; }

.hero__feature { justify-self: end; width: 100%; max-width: 420px; }
.hero__frame {
  border: 1px solid var(--steel-edge);
  border-radius: var(--radius);
  padding: 10px;
  background:
    linear-gradient(160deg, rgba(201, 207, 216, 0.10), rgba(201, 207, 216, 0.02) 55%),
    var(--panel);
  box-shadow: var(--shadow);
}
.hero__frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 2px;
}
.hero__frame figcaption {
  padding: 0.8rem 0.4rem 0.3rem;
  text-align: center;
  color: var(--ink-faint);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero__scroll {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
}
.hero__scroll-line {
  display: block;
  width: 1.5px;
  height: 52px;
  background: linear-gradient(var(--steel), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.5; }
}

/* ============================================================
   STYLE MARQUEE
   ============================================================ */
.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(201, 207, 216, 0.18);
  border-bottom: 1px solid rgba(201, 207, 216, 0.18);
  background: #030304;
  padding: 1rem 0;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-dim);
  white-space: nowrap;
}
.marquee__track i {
  font-style: normal;
  color: var(--steel-dark);
  font-size: 0.7rem;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section { padding: 6.5rem 1.5rem; }
.section--alt {
  background: var(--bg-alt);
  border-top: 1px solid rgba(201, 207, 216, 0.07);
  border-bottom: 1px solid rgba(201, 207, 216, 0.07);
}
.section__inner { max-width: 1280px; margin: 0 auto; }
.section__head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 3.2rem;
}
.section__head--left {
  text-align: left;
  margin: 0 0 2rem;
}
.section__eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.4em;
  font-size: 0.8rem;
  color: var(--steel-dark);
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  letter-spacing: 0.03em;
  line-height: 1.08;
  text-transform: uppercase;
}
.section__lede {
  margin-top: 1.1rem;
  color: var(--ink-dim);
  font-size: 1.05rem;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-bottom: 2.6rem;
}
.chip {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-dim);
  background: transparent;
  border: 1px solid var(--steel-edge);
  border-radius: 999px;
  padding: 0.55rem 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.chip:hover { color: #ffffff; border-color: var(--steel); }
.chip.is-active {
  color: #0b0c0e;
  background: linear-gradient(180deg, #e8ecf1, #a8b1bc);
  border-color: var(--steel);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--panel);
  border: 1px solid var(--panel-edge);
  border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.gallery__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 0 1px var(--steel-edge), var(--shadow);
  border-color: var(--steel-dark);
}
.gallery__item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item.is-hidden { display: none; }

.gallery__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.4rem 1.2rem 1rem;
  background: linear-gradient(transparent, rgba(3, 3, 4, 0.94));
  display: flex;
  flex-direction: column;
}
.gallery__caption span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
}
.gallery__caption small {
  color: var(--steel);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
}
.gallery__note {
  text-align: center;
  margin-top: 2.6rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
}

/* ============================================================
   FEATURED REELS
   ============================================================ */
.reels__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1020px;
  margin: 0 auto;
}
.reels__item {
  position: relative;
  aspect-ratio: 9 / 16;
  background: var(--panel);
  border: 1px solid var(--panel-edge);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.reels__item:hover {
  transform: translateY(-4px);
  border-color: var(--steel-dark);
  box-shadow: var(--shadow);
}
.reels__item iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}
.reels__cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ============================================================
   PULL QUOTE
   ============================================================ */
.quote {
  background:
    radial-gradient(ellipse 55% 70% at 50% 50%, rgba(201, 207, 216, 0.05), transparent 75%),
    #030304;
  border-top: 1px solid rgba(201, 207, 216, 0.08);
  border-bottom: 1px solid rgba(201, 207, 216, 0.08);
  padding: 5.5rem 1.5rem;
}
.quote__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.quote blockquote p {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.5;
  color: var(--ink);
}
.quote blockquote cite {
  display: block;
  margin-top: 1.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-style: normal;
  font-size: 0.9rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--steel-dark);
}

/* ============================================================
   BIO
   ============================================================ */
.bio {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 4rem;
  align-items: start;
}
.bio__portrait { position: sticky; top: calc(var(--nav-h) + 2rem); }
.bio__frame {
  border: 1px solid var(--steel-edge);
  border-radius: var(--radius);
  padding: 10px;
  background:
    linear-gradient(160deg, rgba(201, 207, 216, 0.10), rgba(201, 207, 216, 0.02) 55%),
    var(--panel);
  box-shadow: var(--shadow);
}
.bio__frame img {
  width: 100%;
  border-radius: 2px;
  filter: grayscale(1) contrast(1.06);
}
.bio__frame figcaption {
  padding: 0.8rem 0.4rem 0.3rem;
  text-align: center;
  color: var(--ink-faint);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.bio__text p { margin-bottom: 1.35rem; color: var(--ink-dim); font-size: 1.05rem; }
.bio__text p em {
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
}
.bio__stats {
  list-style: none;
  display: flex;
  gap: 2.8rem;
  margin-top: 2.2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 207, 216, 0.14);
  flex-wrap: wrap;
}
.bio__stats li { display: flex; flex-direction: column; }
.bio__stats strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.6rem;
  color: transparent;
  background: var(--chrome);
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1;
}
.bio__stats span {
  color: var(--ink-faint);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 0.45rem;
}

/* ============================================================
   FIND & FOLLOW
   ============================================================ */
.connect__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}
.connect__card {
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--panel-edge);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.connect__card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--steel), transparent 75%);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.connect__card:hover {
  transform: translateY(-5px);
  border-color: var(--steel-dark);
  box-shadow: var(--shadow);
  color: var(--ink);
}
.connect__card:hover::before { opacity: 1; }
.connect__icon {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  border: 1px solid var(--steel-edge);
  border-radius: var(--radius);
  color: var(--steel);
  margin-bottom: 1.2rem;
  background: linear-gradient(160deg, rgba(201, 207, 216, 0.08), transparent 60%);
}
.connect__card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.connect__card p {
  color: var(--ink-dim);
  font-size: 0.93rem;
  flex: 1;
  margin-bottom: 1.3rem;
}
.connect__link {
  color: var(--steel);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}
.connect__card:hover .connect__link { color: #ffffff; }

/* ============================================================
   CONTACT / FORM
   ============================================================ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact__intro p { color: var(--ink-dim); margin-bottom: 1.3rem; font-size: 1.05rem; }
.contact__points {
  list-style: none;
  margin: 0 0 1.5rem;
}
.contact__points li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.75rem;
  color: var(--ink-dim);
  font-size: 0.98rem;
}
.contact__points li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--steel);
}
.contact__direct { font-size: 0.98rem; }
.contact__direct a { font-weight: 600; }

.form {
  background: var(--panel);
  border: 1px solid var(--panel-edge);
  border-radius: var(--radius);
  padding: 2.4rem 2.2rem;
  box-shadow: var(--shadow);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form__field { margin-bottom: 1.35rem; }
.form__field label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.form__field label span { color: var(--steel); }
.form__field label small {
  color: var(--ink-faint);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.form__field input,
.form__field select,
.form__field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--panel-edge);
  border-radius: var(--radius);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.8rem 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form__field input::placeholder,
.form__field textarea::placeholder { color: var(--ink-faint); }
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--steel);
  box-shadow: 0 0 0 3px var(--steel-soft);
}
.form__field select { appearance: auto; }
.form__field select:invalid { color: var(--ink-faint); }
.form__field textarea { resize: vertical; min-height: 130px; }
.form__field input[type="file"] {
  padding: 0.6rem;
  cursor: pointer;
}
.form__field input[type="file"]::file-selector-button {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  background: transparent;
  color: var(--steel);
  border: 1px solid var(--steel-dark);
  border-radius: var(--radius);
  padding: 0.5rem 1.1rem;
  margin-right: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.form__field input[type="file"]::file-selector-button:hover {
  background: var(--steel);
  color: #0b0c0e;
}
.form__hint {
  font-size: 0.82rem;
  color: var(--ink-faint);
  margin-top: 0.45rem;
}
.form__submit {
  width: 100%;
  margin-top: 0.4rem;
  font-size: 1.05rem;
}
.form__note {
  margin-top: 1.1rem;
  font-size: 0.84rem;
  color: var(--ink-faint);
  text-align: center;
}
.form__note strong { color: var(--ink-dim); font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #030304;
  border-top: 1px solid rgba(201, 207, 216, 0.1);
  padding: 4rem 1.5rem 0;
}
.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer__brand .nav__brand-mark { margin-bottom: 1rem; }
.footer__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer__name em { font-style: normal; color: var(--steel-dark); }
.footer__tag { color: var(--ink-faint); font-size: 0.92rem; margin-top: 0.4rem; }

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer__nav a {
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-size: 0.92rem;
}
.footer__nav a:hover { color: #ffffff; }

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink-dim);
  font-size: 0.95rem;
  font-weight: 500;
}
.footer__social a:hover { color: #ffffff; }
.footer__social svg { flex-shrink: 0; color: var(--steel-dark); }

.footer__legal {
  border-top: 1px solid rgba(201, 207, 216, 0.08);
  padding: 1.4rem 0;
  text-align: center;
}
.footer__legal p {
  color: var(--ink-faint);
  font-size: 0.82rem;
  max-width: 1280px;
  margin: 0 auto;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(3, 3, 4, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 4.5rem;
}
.lightbox[hidden] { display: none; }
.lightbox__figure {
  max-width: min(90vw, 760px);
  max-height: 88vh;
  text-align: center;
}
.lightbox__figure img {
  max-height: 68vh;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  border: 1px solid var(--steel-edge);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.lightbox__figure figcaption { margin-top: 1.1rem; }
.lightbox__figure figcaption span {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  font-size: 1.1rem;
  display: block;
}
.lightbox__figure figcaption p {
  margin: 0.5rem auto 0;
  max-width: 36rem;
  color: var(--ink-dim);
  font-size: 0.95rem;
  line-height: 1.65;
}
.lightbox__close,
.lightbox__arrow {
  position: absolute;
  background: none;
  border: none;
  color: var(--ink-dim);
  cursor: pointer;
  font-size: 2.6rem;
  line-height: 1;
  padding: 0.5rem 0.9rem;
  transition: color 0.2s ease;
  z-index: 2;
}
.lightbox__close:hover,
.lightbox__arrow:hover { color: #ffffff; }
.lightbox__close { top: 1.2rem; right: 1.5rem; }
.lightbox__arrow { top: 50%; transform: translateY(-50%); font-size: 3.4rem; }
.lightbox__arrow--prev { left: 0.8rem; }
.lightbox__arrow--next { right: 0.8rem; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll-line { animation: none; }
  .marquee__track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero__wordmark { margin: 0 auto; }
  .hero__tagline { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__social { justify-content: center; }
  .hero__feature { justify-self: center; max-width: 380px; }
  .connect__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .bio { grid-template-columns: 1fr; gap: 2.5rem; }
  .bio__portrait { position: static; max-width: 420px; margin: 0 auto; }
  .contact { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .reels__grid { grid-template-columns: repeat(2, 1fr); }
  .reels__item:last-child { grid-column: span 2; max-width: 480px; justify-self: center; width: 100%; }
}

@media (max-width: 720px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(3, 3, 4, 0.98);
    border-bottom: 1px solid rgba(201, 207, 216, 0.12);
    padding: 0.5rem 0 1rem;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .nav__links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav__link {
    padding: 1rem 1.8rem;
    font-size: 1.05rem;
  }
  .nav__link::after { display: none; }
  .nav__link--cta {
    margin: 0.6rem 1.8rem 0;
    text-align: center;
  }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item img { aspect-ratio: auto; }
  .form { padding: 1.8rem 1.4rem; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .section { padding: 4.5rem 1.25rem; }
  .marquee__track span { font-size: 0.95rem; }
  .quote { padding: 4rem 1.25rem; }
  .connect__grid { grid-template-columns: 1fr; }
  .reels__grid { grid-template-columns: 1fr; max-width: 420px; }
  .reels__item:last-child { grid-column: auto; }
  .lightbox { padding: 2.5rem 0.5rem; }
  .lightbox__arrow--prev { left: 0.1rem; }
  .lightbox__arrow--next { right: 0.1rem; }
}
