/* =========================================================
   gooo.polo — one-pager styles
   ========================================================= */
:root {
  --bg-0: #0a0a0a;
  --bg-1: #141414;
  --bg-2: #1e1e1e;
  --fg-0: #f0ede8;
  --fg-1: #c8c2b8;
  --fg-2: #8a8278;
  --gold: #c8a96e;
  --gold-bright: #e8c87a;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter", system-ui, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, monospace;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { background: var(--bg-0); color: var(--fg-0); font-family: var(--sans); font-weight: 300; -webkit-font-smoothing: antialiased; }
body { overflow-x: hidden; }

/* selection */
::selection { background: var(--gold); color: #0a0a0a; }

/* grain overlay across whole site */
.global-grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.06;
  mix-blend-mode: overlay;
}

/* ======= NAV ======= */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 56px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg-1);
  transition: background 0.5s, padding 0.5s, border-color 0.5s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,10,0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 16px 56px;
  border-bottom-color: rgba(240,237,232,0.06);
}
.nav .brand {
  font-family: var(--serif);
  font-style: italic; font-weight: 300;
  font-size: 22px;
  color: var(--fg-0);
  text-transform: none; letter-spacing: 0.02em;
}
.nav .brand em { font-style: italic; }
.nav ul { list-style: none; display: flex; gap: 36px; }
.nav a {
  color: var(--fg-1);
  text-decoration: none;
  padding: 4px 0;
  position: relative;
  transition: color 0.4s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s ease;
}
.nav a:hover { color: var(--fg-0); }
.nav a.active { color: var(--gold); }
.nav a.active::after { transform: scaleX(1); }

.nav .burger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav .burger span { width: 22px; height: 1px; background: var(--fg-1); transition: 0.4s; }

/* ======= SIDE RAIL ======= */
.rail {
  position: fixed;
  left: 32px; top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex; flex-direction: column; gap: 22px;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.18em;
  color: var(--fg-2);
}
.rail .item {
  display: flex; align-items: center; gap: 12px;
  cursor: pointer;
  background: none; border: none;
  color: inherit; font: inherit; letter-spacing: inherit;
  padding: 0;
  transition: color 0.4s;
}
.rail .item .num { font-family: var(--serif); font-style: italic; font-size: 13px; letter-spacing: 0; }
.rail .item .dot {
  width: 5px; height: 5px;
  background: rgba(240,237,232,0.18);
  border-radius: 50%;
  transition: all 0.5s;
}
.rail .item .lbl {
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.4s;
}
.rail .item:hover .lbl { opacity: 1; transform: translateX(0); }
.rail .item.active { color: var(--fg-0); }
.rail .item.active .dot { background: var(--gold); transform: scale(1.6); }
.rail .item.active .lbl { opacity: 1; transform: translateX(0); color: var(--gold); }

/* ======= SECTIONS BASE ======= */
section {
  position: relative;
  width: 100%;
}

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--fg-2);
}
.section-eyebrow .num { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--gold); letter-spacing: 0; }
.section-eyebrow .rule { width: 60px; height: 1px; background: linear-gradient(to right, var(--gold), transparent); }

/* ======= HERO ======= */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1.15fr 0.85fr; }
.hero .image-col {
  position: relative;
  overflow: hidden;
  background: var(--bg-1);
}
.hero .image-col img {
  position: absolute; inset: 0;
  width: 100%; height: 110%;
  object-fit: cover;
  filter: brightness(0.62) contrast(1.08) saturate(0.85);
  will-change: transform;
}
.hero .image-col::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to right, transparent 60%, rgba(10,10,10,0.5)),
    linear-gradient(to bottom, transparent 70%, rgba(10,10,10,0.7));
  pointer-events: none;
}
.hero .image-meta {
  position: absolute; bottom: 32px; left: 32px;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.16em;
  color: rgba(240,237,232,0.55);
  text-transform: uppercase;
  z-index: 2;
}
.hero .image-meta .gold { color: var(--gold); }

.hero .text-col {
  position: relative;
  padding: 140px 80px 80px;
  display: flex; flex-direction: column;
  justify-content: center;
}
.hero .text-col .hero-eyebrow { margin-bottom: 36px; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(72px, 9vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.012em;
  color: var(--fg-0);
  margin-bottom: 24px;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--fg-0); }
.hero h1 .accent { color: var(--gold); font-style: italic; }
.hero .role {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--fg-1);
  margin-bottom: 36px;
}
.hero .role .sep { color: var(--gold); margin: 0 10px; }
.hero .lead {
  font-family: var(--serif);
  font-size: 19px; line-height: 1.55;
  color: var(--fg-1);
  max-width: 460px;
  margin-bottom: 48px;
  text-wrap: pretty;
}
.hero .lead em { color: var(--fg-0); font-style: italic; }
.hero .ctas { display: flex; gap: 14px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 28px;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--fg-0);
  text-decoration: none;
  border: 1px solid rgba(240,237,232,0.18);
  background: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
  font-family: var(--sans);
}
.btn::before {
  content: ""; position: absolute; inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform 0.55s cubic-bezier(0.7, 0, 0.3, 1);
  z-index: -1;
}
.btn:hover { color: #0a0a0a; border-color: var(--gold); }
.btn:hover::before { transform: translateY(0); }
.btn .arr { transition: transform 0.4s; }
.btn:hover .arr { transform: translateX(4px); }
.btn.ghost { border-color: rgba(240,237,232,0.1); color: var(--fg-1); }
.btn.ghost:hover { color: var(--fg-0); border-color: rgba(240,237,232,0.3); background: transparent; }
.btn.ghost::before { display: none; }

.hero .scroll-cue {
  position: absolute;
  bottom: 32px; left: 80px;
  display: flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-2);
}
.hero .scroll-cue .line {
  width: 56px; height: 1px;
  background: rgba(200,169,110,0.35);
  position: relative; overflow: hidden;
}
.hero .scroll-cue .line::after {
  content: ""; position: absolute; inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  animation: cueSlide 2.6s ease-in-out infinite;
}
@keyframes cueSlide { 0% { transform: translateX(-101%); } 50% { transform: translateX(0); } 100% { transform: translateX(101%); } }

/* ======= GALLERY ======= */
.gallery {
  height: 100vh;
  position: relative;
  background: var(--bg-0);
  overflow: hidden;
}
.gallery .head {
  position: absolute;
  top: 110px; left: 56px; right: 56px;
  z-index: 12;
  display: flex; align-items: baseline; justify-content: space-between;
}
.gallery .head .right {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  color: var(--fg-2); text-transform: uppercase;
}
.gallery .head .right .gold { color: var(--gold); margin: 0 8px; }

.gallery .stage {
  position: absolute;
  inset: 156px 56px 100px 56px;
  border: 1px solid rgba(240,237,232,0.04);
}
.gallery .photo-track { position: relative; width: 100%; height: 100%; }
.gallery .photo {
  position: absolute; inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.1s cubic-bezier(0.4, 0, 0.2, 1), transform 1.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.gallery .photo.active { opacity: 1; transform: scale(1); pointer-events: auto; }
.gallery .photo-inner { position: absolute; inset: 0; overflow: hidden; }
.gallery .photo-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.78) contrast(1.08) saturate(0.88);
}
.gallery .photo-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.45)),
    linear-gradient(to top, rgba(0,0,0,0.45), transparent 30%);
  pointer-events: none;
}

.gallery .caption {
  position: absolute;
  bottom: 32px; left: 56px;
  z-index: 14;
}
.gallery .caption .ttl {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 28px;
  color: var(--fg-0);
  margin-bottom: 4px;
}
.gallery .caption .sub {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  color: var(--fg-2); text-transform: uppercase;
  display: flex; align-items: center; gap: 14px;
}
.gallery .caption .sub .dot { width: 3px; height: 3px; background: var(--gold); border-radius: 50%; }

.gallery .counter {
  position: absolute;
  bottom: 32px; right: 56px;
  z-index: 14;
  display: flex; align-items: baseline; gap: 14px;
  font-family: var(--mono); font-size: 11px;
  color: var(--fg-2);
  letter-spacing: 0.18em;
}
.gallery .counter .now { font-family: var(--serif); font-style: italic; font-size: 28px; color: var(--gold); letter-spacing: 0; }
.gallery .counter .sep { width: 24px; height: 1px; background: var(--fg-2); }

.gallery .arrows {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 14;
}
.gallery .arrows.left { left: 80px; }
.gallery .arrows.right { right: 80px; }
.gallery .arrow {
  width: 56px; height: 56px;
  border: 1px solid rgba(240,237,232,0.18);
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(8px);
  color: var(--fg-1);
  font-family: var(--serif); font-size: 22px;
  cursor: pointer;
  transition: all 0.4s;
}
.gallery .arrow:hover { border-color: var(--gold); color: var(--gold); }

.gallery .thumbs {
  position: absolute;
  bottom: 22px; left: 50%; transform: translateX(-50%);
  z-index: 14;
  display: flex; gap: 14px;
}
.gallery .thumb {
  width: 24px; height: 1px;
  background: rgba(240,237,232,0.18);
  cursor: pointer;
  transition: all 0.5s;
  border: none; padding: 0;
}
.gallery .thumb.active { background: var(--gold); width: 60px; }
.gallery .thumb:hover { background: var(--fg-1); }

.gallery .progress {
  position: absolute;
  top: 90px; left: 56px; right: 56px;
  z-index: 13;
  display: flex; gap: 6px; height: 1px;
}
.gallery .progress .seg { flex: 1; background: rgba(240,237,232,0.1); position: relative; overflow: hidden; }
.gallery .progress .seg .fill { position: absolute; inset: 0 auto 0 0; width: 0%; background: var(--gold); transition: width 0.1s linear; }
.gallery .progress .seg.done .fill { width: 100%; }

.gallery[data-mode="story"] .arrows,
.gallery[data-mode="story"] .thumbs { display: none; }
.gallery[data-mode="gallery"] .progress { display: none; }

.gallery .mode-tag {
  position: absolute;
  top: 116px; left: 56px;
  z-index: 13;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.28em;
  color: var(--fg-2); text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
}
.gallery .mode-tag .dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ======= SHOWREEL ======= */
.showreel {
  position: relative;
  padding: 140px 80px 100px;
  background: var(--bg-0);
}
.showreel .head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 56px; }
.showreel h2 {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(48px, 6vw, 88px); line-height: 0.95; letter-spacing: -0.005em;
  color: var(--fg-0);
}
.showreel h2 .accent { color: var(--gold); }
.showreel .meta-strip { display: flex; gap: 32px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; color: var(--fg-2); text-transform: uppercase; }
.showreel .meta-strip .v { color: var(--fg-1); }

.showreel .frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg-1);
  overflow: hidden;
  border: 1px solid rgba(240,237,232,0.06);
  margin-bottom: 32px;
  cursor: pointer;
}
.showreel .frame::before, .showreel .frame::after {
  content: ""; position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--gold);
  z-index: 5;
}
.showreel .frame::before { top: 14px; left: 14px; border-right: none; border-bottom: none; }
.showreel .frame::after { bottom: 14px; right: 14px; border-left: none; border-top: none; }
.showreel .frame img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.62) contrast(1.1) saturate(0.9);
  transition: transform 1.4s cubic-bezier(0.3, 0, 0.2, 1), filter 0.6s;
}
.showreel .frame:hover img { transform: scale(1.04); filter: brightness(0.72) saturate(0.95); }
.showreel .frame .overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.5));
  z-index: 3;
}
.showreel .play {
  width: 90px; height: 90px;
  border: 1px solid rgba(240,237,232,0.4);
  border-radius: 50%;
  background: rgba(10,10,10,0.4);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: all 0.5s;
}
.showreel .frame:hover .play {
  border-color: var(--gold);
  background: rgba(200,169,110,0.15);
  transform: scale(1.06);
}
.showreel .play .tri {
  width: 0; height: 0;
  border-left: 18px solid var(--fg-0);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 5px;
}
.showreel .frame:hover .play .tri { border-left-color: var(--gold-bright); }
.showreel .play-label {
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--fg-1);
}
.showreel .frame .info {
  position: absolute;
  bottom: 28px; left: 32px; right: 32px;
  z-index: 4;
  display: flex; align-items: flex-end; justify-content: space-between;
}
.showreel .frame .info .ttl {
  font-family: var(--serif); font-style: italic; font-size: 26px; color: var(--fg-0);
}
.showreel .frame .info .right {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; color: var(--fg-1); text-transform: uppercase;
  text-align: right;
}
.showreel .frame .timecode {
  position: absolute; top: 24px; right: 24px;
  z-index: 4;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  color: var(--gold); background: rgba(0,0,0,0.4); padding: 6px 10px;
  border: 1px solid rgba(200,169,110,0.3);
}

.thumbs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.thumbs-grid .t-card { cursor: pointer; }
.thumbs-grid .t-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-1);
  margin-bottom: 14px;
}
.thumbs-grid .t-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.6) contrast(1.1) saturate(0.85);
  transition: all 1.2s cubic-bezier(0.3, 0, 0.2, 1);
}
.thumbs-grid .t-card:hover .t-img img { transform: scale(1.04); filter: brightness(0.78) saturate(0.95); }
.thumbs-grid .t-img .badge {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.16em;
  color: var(--gold); background: rgba(0,0,0,0.55); padding: 4px 8px;
  border: 1px solid rgba(200,169,110,0.35);
  text-transform: uppercase;
}
.thumbs-grid .t-img .duration {
  position: absolute; bottom: 12px; right: 12px;
  font-family: var(--mono); font-size: 9px; color: var(--fg-1);
  background: rgba(0,0,0,0.55); padding: 4px 8px;
}
.thumbs-grid .t-meta {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 20px;
}
.thumbs-grid .t-meta .ttl {
  font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--fg-0);
  transition: color 0.4s;
}
.thumbs-grid .t-card:hover .t-meta .ttl { color: var(--gold-bright); }
.thumbs-grid .t-meta .sub {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.18em; color: var(--fg-2);
  text-transform: uppercase;
}

/* ======= ABOUT ======= */
.about {
  position: relative;
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  min-height: 100vh;
  background: var(--bg-0);
  border-top: 1px solid rgba(240,237,232,0.05);
  border-bottom: 1px solid rgba(240,237,232,0.05);
}
.about .portrait {
  position: relative;
  background: var(--bg-1);
  overflow: hidden;
}
.about .portrait img {
  position: absolute; inset: 0;
  width: 100%; height: 110%;
  object-fit: cover;
  filter: grayscale(0.85) brightness(0.7) contrast(1.15);
  will-change: transform;
}
.about .portrait::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to right, transparent 70%, rgba(10,10,10,0.5)),
    linear-gradient(to bottom, transparent 60%, rgba(10,10,10,0.6));
  pointer-events: none;
}
.about .portrait-meta {
  position: absolute; bottom: 28px; left: 28px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  color: rgba(240,237,232,0.55); text-transform: uppercase;
  z-index: 2;
}
.about .portrait-meta .gold { color: var(--gold); }

.about .text-col {
  position: relative;
  padding: 140px 80px 100px 64px;
  display: flex; flex-direction: column; justify-content: center;
}
.about h2 {
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(44px, 5vw, 64px); line-height: 0.95;
  color: var(--fg-0);
  letter-spacing: -0.005em;
  margin: 28px 0 24px;
}
.about .bio {
  font-family: var(--serif); font-weight: 300;
  font-size: 19px; line-height: 1.55;
  color: var(--fg-1);
  max-width: 560px;
  text-wrap: pretty;
}
.about .bio p + p { margin-top: 14px; }
.about .bio em { color: var(--fg-0); font-style: italic; }
.about .bio .accent { color: var(--gold-bright); font-style: italic; }
.about .pullquote {
  display: block;
  margin-top: 24px;
  padding-left: 22px;
  border-left: 1px solid var(--gold);
  font-family: var(--serif); font-style: italic;
  color: var(--fg-0);
  font-size: 22px; line-height: 1.4;
  max-width: 560px;
}

/* ======= CONTACT ======= */
.contact {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: var(--bg-0);
}
.contact .col-left {
  padding: 140px 56px 80px 80px;
  display: flex; flex-direction: column;
}
.contact .col-right {
  padding: 140px 80px 80px 64px;
  border-left: 1px solid rgba(240,237,232,0.05);
}
.contact h2 {
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(48px, 6vw, 76px); line-height: 0.95;
  color: var(--fg-0);
  margin: 28px 0 22px;
}
.contact .lead {
  font-family: var(--serif); font-size: 19px; line-height: 1.55;
  color: var(--fg-1); max-width: 460px; margin-bottom: 32px;
}
.contact .mail {
  font-family: var(--serif); font-style: italic; font-size: 24px;
  color: var(--gold-bright); text-decoration: none;
  border-bottom: 1px solid rgba(200,169,110,0.4);
  padding-bottom: 6px;
  align-self: flex-start;
  transition: all 0.4s;
}
.contact .mail:hover { border-bottom-color: var(--gold-bright); color: var(--gold-bright); }

.socials { margin-top: auto; padding-top: 32px; }
.socials .label { font-family: var(--mono); font-size: 9px; letter-spacing: 0.28em; color: var(--fg-2); text-transform: uppercase; margin-bottom: 16px; }
.socials .list { display: flex; flex-direction: column; }
.socials .item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid rgba(138,130,120,0.14);
  text-decoration: none;
  color: var(--fg-1);
  transition: all 0.4s;
}
.socials .item:last-child { border-bottom: 1px solid rgba(138,130,120,0.14); }
.socials .item .left { display: flex; align-items: baseline; gap: 16px; }
.socials .item .num { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--fg-2); transition: color 0.4s; }
.socials .item .name { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--fg-0); }
.socials .item .handle { font-family: var(--mono); font-size: 9px; letter-spacing: 0.22em; color: var(--fg-2); text-transform: uppercase; }
.socials .item .arrow { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--fg-2); transition: all 0.4s; }
.socials .item:hover .num { color: var(--gold); }
.socials .item:hover .name { color: var(--gold-bright); }
.socials .item:hover .arrow { color: var(--gold); transform: translateX(6px); }

.form-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin: 28px 0 28px;
}
.form-head .ttl { font-family: var(--serif); font-style: italic; font-size: 32px; color: var(--fg-0); }
.form-head .meta { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; color: var(--fg-2); text-transform: uppercase; }

.form { display: flex; flex-direction: column; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.28em;
  color: var(--fg-2); text-transform: uppercase;
  display: flex; align-items: center; gap: 12px;
}
.field label .num { color: var(--gold); font-family: var(--serif); font-style: italic; font-size: 12px; letter-spacing: 0; }
.field input, .field textarea {
  background: transparent; border: none;
  border-bottom: 1px solid rgba(138,130,120,0.25);
  color: var(--fg-0);
  font-family: var(--serif); font-weight: 300;
  font-size: 18px; padding: 8px 0;
  outline: none;
  transition: border-color 0.4s;
  resize: none;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(138,130,120,0.55); font-style: italic; }
.field input:focus, .field textarea:focus { border-bottom-color: var(--gold); }
.field textarea { min-height: 80px; }

.submit-row { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; }
.submit-meta { font-family: var(--mono); font-size: 9px; letter-spacing: 0.18em; color: var(--fg-2); text-transform: uppercase; }
.submit-meta .dot { color: var(--gold); animation: pulse 2.4s ease-in-out infinite; }

/* ======= FOOTER ======= */
.foot {
  background: #050505;
  padding: 56px 80px 32px;
  border-top: 1px solid rgba(240,237,232,0.06);
}
.foot .row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(240,237,232,0.05);
  margin-bottom: 22px;
}
.foot .brand-big {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 44px;
  color: var(--fg-0);
}
.foot .nav-mini { display: flex; gap: 28px; }
.foot .nav-mini a { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; color: var(--fg-2); text-transform: uppercase; text-decoration: none; transition: color 0.3s; }
.foot .nav-mini a:hover { color: var(--gold); }
.foot .micro {
  display: flex; align-items: baseline; justify-content: space-between;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  color: var(--fg-2); text-transform: uppercase;
}
.foot .micro .gold { color: var(--gold); }

/* ======= RESPONSIVE ======= */
@media (max-width: 1100px) {
  .nav { padding: 18px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav ul { display: none; }
  .nav .burger { display: flex; }
  .rail { display: none; }

  .hero { grid-template-columns: 1fr; min-height: 100vh; }
  .hero .image-col { height: 45vh; min-height: 320px; }
  .hero .text-col { padding: 56px 28px 80px; min-height: 55vh; }
  .hero h1 { font-size: clamp(56px, 14vw, 88px); }
  .hero .lead { font-size: 17px; max-width: 100%; }
  .hero .role { font-size: 18px; }
  .hero .scroll-cue { display: none; }
  .hero .image-meta { left: 22px; bottom: 22px; }

  .gallery { height: auto; min-height: 90vh; }
  .gallery .head { left: 22px; right: 22px; top: 90px; }
  .gallery .head .right { display: none; }
  .gallery .stage { inset: 130px 22px 90px 22px; }
  .gallery .caption { left: 22px; bottom: 60px; }
  .gallery .caption .ttl { font-size: 22px; }
  .gallery .counter { right: 22px; bottom: 60px; left: auto; }
  .gallery .arrows { display: none; }
  .gallery .progress { left: 22px; right: 22px; }
  .gallery .mode-tag { display: none; }
  .gallery .thumbs { bottom: 22px; }

  .showreel { padding: 90px 22px 70px; }
  .showreel .head { flex-direction: column; align-items: flex-start; gap: 22px; margin-bottom: 36px; }
  .showreel .meta-strip { gap: 18px; }
  .showreel .frame .info { flex-direction: column; gap: 10px; align-items: flex-start; }
  .showreel .frame .info .ttl { font-size: 20px; }
  .thumbs-grid { grid-template-columns: 1fr; gap: 18px; }
  .showreel .frame .timecode { top: 14px; right: 14px; }

  .about { grid-template-columns: 1fr; }
  .about .portrait { height: 50vh; }
  .about .text-col { padding: 56px 24px 80px; }

  .contact { grid-template-columns: 1fr; }
  .contact .col-left { padding: 90px 24px 32px; }
  .contact .col-right { padding: 24px 24px 80px; border-left: none; border-top: 1px solid rgba(240,237,232,0.05); }

  .foot { padding: 40px 24px 28px; }
  .foot .row { flex-direction: column; gap: 18px; align-items: flex-start; }
  .foot .brand-big { font-size: 32px; }
  .foot .nav-mini { flex-wrap: wrap; gap: 18px; }
  .foot .micro { flex-direction: column; gap: 8px; align-items: flex-start; }
}
