/* ==========================================================================
   Firstmind Custom Tattoo
   Design read: local-business landing page for prospective clients in
   Jacksonville. Dark, cinematic, gallery-forward. Built from the shop's own
   black + apple-green badge identity.
   Dials: DESIGN_VARIANCE 8 / MOTION_INTENSITY 6 / VISUAL_DENSITY 3
   Radius rule (documented, followed everywhere):
     interactive pills + social buttons -> 999px
     media, panels, inputs              -> var(--r) / var(--r-sm)
   ========================================================================== */

:root {
  color-scheme: dark;

  --ink:      #0c0d0e;
  --ink-2:    #121316;
  --ink-3:    #191b1e;

  --fg:       #f3f3f0;
  --fg-2:     rgba(243, 243, 240, .62);
  --fg-3:     rgba(243, 243, 240, .42);

  --green:    #8cc63f;
  --green-hi: #a7dd5d;
  --green-wash: rgba(140, 198, 63, .12);

  --line:     rgba(243, 243, 240, .09);
  --line-2:   rgba(243, 243, 240, .18);

  --r:        14px;
  --r-sm:     10px;

  --shell:    clamp(1.15rem, 5vw, 4.5rem);
  --bay:      clamp(5.5rem, 11vw, 10.5rem);

  --ease:     cubic-bezier(.32, .72, 0, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ink);
  color: var(--fg);
  font-family: "Archivo", ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }

::selection { background: var(--green); color: #0a0b0c; }

:where(a, button, input, textarea, select, [tabindex]):focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; left: var(--shell); top: -100px; z-index: 900;
  background: var(--green); color: #0a0b0c; padding: .7rem 1.15rem;
  border-radius: 999px; font-weight: 600; text-decoration: none;
  transition: top .25s var(--ease);
}
.skip:focus { top: 1rem; }

/* fixed film grain, never attached to a scrolling container */
.grain {
  position: fixed; inset: 0; z-index: 4; pointer-events: none;
  opacity: .028;
  background-image: url("../img/grain.svg");
}

/* ============================ type ======================================= */

.display {
  font-family: "Anton", "Archivo", sans-serif;
  font-weight: 400;
  letter-spacing: .005em;
  line-height: .97;
  text-transform: uppercase;
  margin: 0;
}
h2.display { font-size: clamp(2.15rem, 5.6vw, 4.6rem); }
h3 { font-size: 1.06rem; font-weight: 600; margin: 0; }

p { margin: 0; max-width: 62ch; }
.lede { color: var(--fg-2); font-size: clamp(1rem, 1.35vw, 1.14rem); }
.fine { font-size: .875rem; color: var(--fg-3); }

.eyebrow {
  display: inline-block;
  font-size: .68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .22em;
  color: var(--green);
  margin: 0 0 1.25rem;
}

/* ============================ layout ===================================== */

.bay { padding: var(--bay) var(--shell); }
.wrap { max-width: 1360px; margin-inline: auto; }
.head { max-width: 42ch; margin-bottom: clamp(2.75rem, 5vw, 4.5rem); }
.head p { margin-top: 1.35rem; }

/* ============================ buttons ==================================== */

/* Tinted glass, not solid fills. Label colours are picked to clear WCAG AA
   against the darkest ground the button ever sits on. */
.btn {
  display: inline-flex; align-items: center; gap: .8rem;
  padding: .58rem .58rem .58rem 1.5rem;
  border: 0; border-radius: 999px;
  background: rgba(140, 198, 63, .16);
  color: var(--green-hi);
  box-shadow: inset 0 0 0 1px rgba(140, 198, 63, .45),
              inset 0 1px 0 rgba(255, 255, 255, .10);
  backdrop-filter: blur(14px) saturate(170%);
  -webkit-backdrop-filter: blur(14px) saturate(170%);
  font: inherit; font-weight: 650; font-size: .95rem;
  text-decoration: none; white-space: nowrap; cursor: pointer;
  transition: background .5s var(--ease), transform .35s var(--ease), box-shadow .5s var(--ease);
}
.btn__ico {
  display: grid; place-items: center;
  width: 2.1rem; height: 2.1rem; border-radius: 999px;
  background: rgba(140, 198, 63, .16);
  box-shadow: inset 0 0 0 1px rgba(140, 198, 63, .32);
  font-size: 1rem; flex: none;
  transition: transform .5s var(--ease), background .5s var(--ease);
}
.btn:hover {
  background: rgba(140, 198, 63, .26);
  box-shadow: inset 0 0 0 1px rgba(140, 198, 63, .7), inset 0 1px 0 rgba(255, 255, 255, .14);
}
.btn:hover .btn__ico { transform: translate(3px, -3px); background: rgba(140, 198, 63, .28); }
.btn:active { transform: scale(.975); }

.btn--ghost {
  background: rgba(243, 243, 240, .06);
  color: var(--fg);
  box-shadow: inset 0 0 0 1px rgba(243, 243, 240, .18),
              inset 0 1px 0 rgba(255, 255, 255, .08);
}
.btn--ghost .btn__ico { background: rgba(243, 243, 240, .10); box-shadow: inset 0 0 0 1px rgba(243, 243, 240, .14); }
.btn--ghost:hover {
  background: rgba(243, 243, 240, .12);
  box-shadow: inset 0 0 0 1px rgba(243, 243, 240, .3), inset 0 1px 0 rgba(255, 255, 255, .1);
}
.btn--ghost:hover .btn__ico { background: rgba(243, 243, 240, .18); }

.cta-row { display: flex; flex-wrap: wrap; gap: .85rem; }

/* ============================ nav ======================================== */

.nav {
  position: fixed; z-index: 60; inset: 0 0 auto;
  display: flex; justify-content: center;
  padding: 1.1rem var(--shell);
  pointer-events: none;
}
.nav__pill {
  pointer-events: auto;
  display: flex; align-items: center;
  height: 78px; padding: 0 .7rem 0 1.5rem;
  border-radius: 999px;
  background: rgba(20, 23, 26, .28);
  box-shadow: inset 0 0 0 1px rgba(243, 243, 240, .13),
              inset 0 1px 0 rgba(243, 243, 240, .10);
  backdrop-filter: blur(26px) saturate(180%);
  -webkit-backdrop-filter: blur(26px) saturate(180%);
  transition: background .6s var(--ease), box-shadow .6s var(--ease);
}
body.is-scrolled .nav__pill {
  background: rgba(20, 23, 26, .55);
  box-shadow: inset 0 0 0 1px rgba(243, 243, 240, .18),
              inset 0 1px 0 rgba(243, 243, 240, .12);
}

/* The logo is sized by height, not width, so it always keeps the same air
   above and below inside the pill whatever the artwork's aspect ratio is. */
.brand { display: flex; align-items: center; text-decoration: none; flex: none; }
.brand img { height: 44px; width: auto; }

/* hairline that separates the identity from the navigation */
.nav__rule {
  width: 1px; align-self: stretch; margin: 1.5rem 1.6rem;
  background: var(--line-2); flex: none;
}

.nav__links { display: flex; align-items: center; gap: clamp(.9rem, 1.8vw, 1.75rem); }
.nav__links a {
  text-decoration: none; font-size: .875rem; font-weight: 500;
  color: var(--fg-2); white-space: nowrap;
  position: relative; padding: .3rem 0;
  transition: color .35s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--green);
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.nav__links a:hover { color: var(--fg); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav .btn { margin-left: clamp(1rem, 2.5vw, 2rem); padding: .5rem .5rem .5rem 1.25rem; font-size: .875rem; }
.nav .btn__ico { width: 1.95rem; height: 1.95rem; font-size: .9rem; }

.burger {
  display: none; width: 42px; height: 42px; flex: none;
  border: 0; border-radius: 999px; background: rgba(243, 243, 240, .09);
  cursor: pointer; position: relative;
}
.burger i {
  position: absolute; left: 50%; width: 17px; height: 1.5px;
  background: var(--fg); border-radius: 2px;
  transition: transform .55s var(--ease), opacity .3s var(--ease);
}
.burger i:nth-child(1) { transform: translate(-50%, -5px); }
.burger i:nth-child(2) { transform: translate(-50%, 0); }
.burger i:nth-child(3) { transform: translate(-50%, 5px); }
body.menu-open .burger i:nth-child(1) { transform: translate(-50%, 0) rotate(45deg); }
body.menu-open .burger i:nth-child(2) { opacity: 0; }
body.menu-open .burger i:nth-child(3) { transform: translate(-50%, 0) rotate(-45deg); }

.sheet {
  position: fixed; inset: 0; z-index: 55;
  display: grid; align-content: center; gap: .2rem;
  padding: 6rem var(--shell) var(--shell);
  background: rgba(9, 10, 11, .92);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  opacity: 0; visibility: hidden;
  transition: opacity .5s var(--ease), visibility .5s var(--ease);
}
body.menu-open .sheet { opacity: 1; visibility: visible; }
.sheet a {
  font-family: "Anton", sans-serif; font-size: clamp(2rem, 9vw, 3.6rem);
  text-transform: uppercase; text-decoration: none; line-height: 1.18;
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out), color .3s var(--ease);
}
.sheet a:hover { color: var(--green); }
body.menu-open .sheet a { opacity: 1; transform: none; }
body.menu-open .sheet a:nth-child(1) { transition-delay: .06s; }
body.menu-open .sheet a:nth-child(2) { transition-delay: .12s; }
body.menu-open .sheet a:nth-child(3) { transition-delay: .18s; }
body.menu-open .sheet a:nth-child(4) { transition-delay: .24s; }
body.menu-open .sheet a:nth-child(5) { transition-delay: .30s; }

@media (max-width: 900px) {
  .nav__links, .nav .btn, .nav__rule { display: none; }
  .burger { display: block; }
  .nav__pill { width: 100%; justify-content: space-between; height: 70px; padding: 0 .6rem 0 1.15rem; }
  .brand img { height: 38px; }
}

/* ============================ hero ======================================= */

.hero {
  position: relative; isolation: isolate;
  min-height: 100dvh;
  display: grid; align-items: center;
  padding: 8rem var(--shell) clamp(3.5rem, 7vw, 6rem);
  overflow: hidden;
  background: #08090a;
}

/* drifting flash field */
.hero__field {
  position: absolute; inset: -14%; z-index: -2;
  background: url("../img/gen/flash-green.webp") 0 0 / 560px 560px repeat;
  opacity: .34;
  animation: field 90s linear infinite;
}
@keyframes field { to { background-position: 620px 620px; } }

.hero__veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(74% 64% at 26% 48%, rgba(8, 9, 10, .82), rgba(8, 9, 10, .5) 46%, rgba(8, 9, 10, .88) 82%),
    linear-gradient(to bottom, rgba(8, 9, 10, .38) 0%, rgba(8, 9, 10, 0) 22%),
    linear-gradient(to top, var(--ink) 1%, rgba(8, 9, 10, 0) 34%);
}

.hero__inner { position: relative; width: 100%; max-width: 1360px; margin-inline: auto; }

.hero__kicker {
  font-size: .74rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .22em;
  color: var(--fg-2);
  margin: 0 0 clamp(1.25rem, 2.5vw, 2rem);
  opacity: 0; animation: lift .9s var(--ease-out) .1s forwards;
}
@media (max-width: 560px) { .hero__kicker { font-size: .66rem; letter-spacing: .14em; } }

/* the wordmark: flash art multiplied onto bone, clipped inside the letters */
.hero__word {
  margin: 0;
  font-family: "Anton", sans-serif; font-weight: 400;
  font-size: clamp(3.6rem, 15.5vw, 15rem);
  line-height: .82; letter-spacing: -.008em; text-transform: uppercase;
  overflow: hidden; padding-bottom: .04em;
}
/* Traditional flash art multiplied onto bone and clipped inside the letters.
   Shared by the hero wordmark and the footer lockup so both read as one logo. */
.flashtype > span {
  display: block;
  background-image: url("../img/gen/flash-ink.webp"), linear-gradient(#f0ece1, #f0ece1);
  background-size: var(--flash-tile, 220px) auto, auto;
  background-repeat: repeat, no-repeat;
  background-blend-mode: multiply, normal;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero__word { --flash-tile: clamp(200px, 19vw, 330px); }
.hero__word > span {
  transform: translateY(104%);
  animation: rise 1.25s var(--ease-out) .18s forwards, ink 70s linear infinite .18s;
}
@keyframes rise { to { transform: none; } }
@keyframes ink { to { background-position: 300px 300px, 0 0; } }

/* if the browser cannot clip a background to text, ship solid bone type */
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .flashtype > span { background: none; color: #f0ece1; -webkit-text-fill-color: #f0ece1; }
  .hero__word > span { animation: rise 1.25s var(--ease-out) .18s forwards; }
}

.hero .lede, .hero .cta-row { opacity: 0; animation: lift .95s var(--ease-out) .5s forwards; }
.hero .lede { margin-top: clamp(1.25rem, 2.4vw, 2rem); }
.hero .cta-row { animation-delay: .62s; margin-top: 2rem; }
@keyframes lift { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

/* scroll-linked settle where supported, with no scroll listeners anywhere */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .hero__inner {
      animation: park linear both;
      animation-timeline: view();
      animation-range: exit -10% exit 90%;
    }
    @keyframes park { to { opacity: .2; transform: translateY(-3.5rem); } }
  }
}

/* ============================ marquee ==================================== */

/* A quiet capability band. It sits between the hero and the studio section and
   should not compete with the Anton display type on either side, so it is set in
   the body face, small and widely tracked, with the rule doing the structure. */
.strip {
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(243, 243, 240, .022), transparent);
  overflow: hidden; padding: 1.15rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.strip__track { display: flex; width: max-content; animation: slide 58s linear infinite; }
.strip ul { display: flex; align-items: center; gap: 3.2rem; margin: 0; padding: 0 1.6rem; list-style: none; }
.strip li {
  display: flex; align-items: center; gap: 3.2rem;
  font-family: "Archivo", sans-serif; font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(.72rem, .9vw, .84rem); letter-spacing: .28em;
  color: var(--fg-3); white-space: nowrap;
  transition: color .5s var(--ease);
}
.strip:hover li { color: var(--fg-2); }
.strip li::after {
  content: ""; width: 4px; height: 4px; flex: none; border-radius: 999px;
  background: var(--green); opacity: .8;
}
@keyframes slide { to { transform: translateX(-50%); } }

/* ============================ studio ===================================== */

.studio { display: grid; gap: clamp(2.5rem, 5vw, 5rem); grid-template-columns: 1fr; }
@media (min-width: 900px) { .studio { grid-template-columns: 1.02fr .98fr; align-items: center; } }

.studio__frames { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(.75rem, 1.6vw, 1.25rem); }
.studio__frames figure { margin: 0; border-radius: var(--r); overflow: hidden; background: var(--ink-3); aspect-ratio: 3 / 4; }
.studio__frames img { width: 100%; height: 100%; object-fit: cover; }
.studio__frames figure:last-child { align-self: end; margin-bottom: clamp(1.5rem, 5vw, 3.5rem); }

.facts { display: grid; gap: 1.7rem; margin: 2.75rem 0 0; grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 32rem; }
.facts > div { display: grid; gap: .25rem; }
.facts dt { font-size: .72rem; text-transform: uppercase; letter-spacing: .18em; color: var(--fg-3); }
.facts dd { margin: 0; font-family: "Anton", sans-serif; font-size: 1.85rem; line-height: 1.05; }
.facts dd small { display: block; font-family: "Archivo", sans-serif; font-size: .82rem; color: var(--fg-2); margin-top: .5rem; line-height: 1.5; }

/* ============================ gallery ==================================== */

.gallery { columns: 3; column-gap: clamp(.8rem, 1.5vw, 1.35rem); }
@media (max-width: 1000px) { .gallery { columns: 2; } }
@media (max-width: 600px)  { .gallery { columns: 1; } }

.tile {
  break-inside: avoid; display: block; width: 100%; padding: 0; border: 0;
  margin: 0 0 clamp(.8rem, 1.5vw, 1.35rem);
  background: var(--ink-3); border-radius: var(--r);
  overflow: hidden; cursor: zoom-in; position: relative;
  box-shadow: inset 0 0 0 1px var(--line);
  transition: box-shadow .6s var(--ease);
}
.tile img { width: 100%; filter: saturate(.94) contrast(1.02); transition: transform 1.1s var(--ease), filter .6s var(--ease); }
.tile figcaption {
  position: absolute; inset: auto 0 0; padding: 3.5rem .95rem .95rem;
  font-size: .8rem; color: var(--fg); text-align: left;
  background: linear-gradient(to top, rgba(8, 9, 10, .9), transparent);
  opacity: 0; transform: translateY(8px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.tile:hover img, .tile:focus-visible img { transform: scale(1.045); filter: none; }
.tile:hover, .tile:focus-visible { box-shadow: inset 0 0 0 1px rgba(140, 198, 63, .55); }
.tile:hover figcaption, .tile:focus-visible figcaption { opacity: 1; transform: none; }

.gallery__more { display: flex; justify-content: center; margin-top: clamp(2.5rem, 4vw, 3.5rem); }

/* lightbox */
.lbox {
  position: fixed; inset: 0; z-index: 80;
  display: grid; grid-template-rows: auto 1fr auto; gap: 1rem;
  padding: 1rem var(--shell) 1.6rem;
  background: rgba(7, 8, 9, .96);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s var(--ease);
}
.lbox[data-open="true"] { opacity: 1; visibility: visible; }
.lbox__bar { display: flex; justify-content: flex-end; }
.lbox__stage { display: grid; place-items: center; min-height: 0; }
.lbox__stage img { max-width: 100%; max-height: 100%; border-radius: var(--r); object-fit: contain; }
.lbox__foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.lbox__foot p { font-size: .9rem; }
.icon-btn {
  display: grid; place-items: center; width: 2.6rem; height: 2.6rem;
  border: 0; border-radius: 999px; cursor: pointer; font-size: 1.15rem;
  background: rgba(243, 243, 240, .1); color: var(--fg);
  transition: background .35s var(--ease), transform .35s var(--ease);
}
.icon-btn:hover { background: rgba(243, 243, 240, .18); }
.icon-btn:active { transform: scale(.94); }
.lbox__nav { display: flex; gap: .55rem; }

/* ============================ artists ==================================== */

.roster { display: grid; border-top: 1px solid var(--line); }
.artist {
  display: grid; gap: .55rem 2rem; align-items: baseline;
  grid-template-columns: 1fr; padding: clamp(1.6rem, 3vw, 2.4rem) 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: padding-left .6s var(--ease);
}
@media (min-width: 820px) {
  .artist { grid-template-columns: minmax(0, 16rem) minmax(0, 1fr) auto; align-items: center; }
  .artist:hover { padding-left: 1.1rem; }
}
.artist__name { font-family: "Anton", sans-serif; font-size: clamp(1.5rem, 3vw, 2.3rem); text-transform: uppercase; line-height: 1; transition: color .4s var(--ease); }
.artist:hover .artist__name { color: var(--green); }
.artist__note { color: var(--fg-2); font-size: .95rem; max-width: 48ch; }
.artist__at { display: inline-flex; align-items: center; gap: .5rem; color: var(--fg-3); font-size: .88rem; transition: color .4s var(--ease); }
.artist:hover .artist__at { color: var(--green); }

/* ============================ process (bento) ============================ */

.bento { display: grid; gap: clamp(.8rem, 1.5vw, 1.25rem); grid-template-columns: 1fr; }
@media (min-width: 820px) {
  .bento { grid-template-columns: repeat(6, 1fr); grid-auto-rows: minmax(16rem, auto); }
  .cell--a { grid-column: span 4; }
  .cell--b { grid-column: span 2; }
  .cell--c { grid-column: span 2; }
  .cell--d { grid-column: span 4; }
}
.cell {
  position: relative; overflow: hidden; border-radius: var(--r);
  padding: clamp(1.5rem, 2.6vw, 2.2rem);
  display: flex; flex-direction: column; justify-content: flex-end; gap: .7rem;
  min-height: 16rem;
  box-shadow: inset 0 0 0 1px var(--line);
  background: var(--ink-2);
}
.cell--tint { background: linear-gradient(150deg, var(--green-wash), rgba(140, 198, 63, .02) 62%), var(--ink-2); }
.cell--photo img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.5) saturate(.85);
  transition: transform 1.2s var(--ease), filter .8s var(--ease);
}
.cell--photo:hover img { transform: scale(1.05); filter: brightness(.6) saturate(.95); }
.cell--photo > *:not(img) { position: relative; }
.cell h3 { font-family: "Anton", sans-serif; font-size: 1.45rem; text-transform: uppercase; letter-spacing: .03em; font-weight: 400; }
.cell p { font-size: .93rem; color: var(--fg-2); max-width: 36ch; }
.cell--photo p { color: rgba(243, 243, 240, .82); }

/* ============================ aftercare ================================== */

.care { display: grid; gap: clamp(1.75rem, 3.5vw, 3rem); grid-template-columns: 1fr; }
@media (min-width: 820px) { .care { grid-template-columns: repeat(3, 1fr); } }
.care > section { display: grid; gap: .9rem; align-content: start; padding-top: 1.5rem; border-top: 1px solid var(--line-2); }
.care h3 { font-family: "Anton", sans-serif; font-weight: 400; font-size: 1.3rem; text-transform: uppercase; }
.care ul { margin: 0; padding: 0; list-style: none; display: grid; gap: .7rem; }
.care li { color: var(--fg-2); font-size: .95rem; padding-left: 1.35rem; position: relative; }
.care li::before { content: ""; position: absolute; left: 0; top: .58em; width: 6px; height: 6px; background: var(--green); transform: rotate(45deg); }

/* ============================ booking ==================================== */

.book { display: grid; gap: clamp(2.5rem, 5vw, 4.5rem); grid-template-columns: 1fr; }
@media (min-width: 950px) { .book { grid-template-columns: 1.05fr .95fr; } }

.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .45rem; }
.field label { font-size: .78rem; text-transform: uppercase; letter-spacing: .15em; color: var(--fg-2); }
.field input, .field textarea, .field select {
  font: inherit; font-size: .96rem; color: var(--fg);
  background: var(--ink-2); border: 1px solid var(--line-2);
  border-radius: var(--r-sm); padding: .8rem .95rem; width: 100%;
  transition: border-color .35s var(--ease), background .35s var(--ease);
}
.field textarea { min-height: 8.5rem; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(243, 243, 240, .46); }
.field input:hover, .field textarea:hover, .field select:hover { border-color: rgba(243, 243, 240, .3); }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--green); background: var(--ink-3); outline: none; }
.field .help { font-size: .8rem; color: var(--fg-3); }
.field .err { font-size: .8rem; color: #ff9c88; }
.field[data-invalid="true"] input, .field[data-invalid="true"] textarea, .field[data-invalid="true"] select { border-color: #ff9c88; }
.pair { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 620px) { .pair { grid-template-columns: 1fr 1fr; } }

.form__state { display: none; gap: .7rem; align-items: center; font-size: .92rem; color: var(--fg-2); }
.form[data-state="sending"] .form__state[data-for="sending"],
.form[data-state="sent"]    .form__state[data-for="sent"],
.form[data-state="error"]   .form__state[data-for="error"] { display: flex; }
.form[data-state="sending"] button[type="submit"] { opacity: .55; pointer-events: none; }
.spin { width: 1rem; height: 1rem; border-radius: 999px; border: 2px solid var(--line-2); border-top-color: var(--green); animation: spin .8s linear infinite; flex: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.contact { display: grid; gap: 1.6rem; align-content: start; }
.contact__block { display: grid; gap: .3rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.contact__block span { font-size: .72rem; text-transform: uppercase; letter-spacing: .18em; color: var(--fg-3); }
.contact__block a, .contact__block p { font-size: 1.05rem; text-decoration: none; color: var(--fg); }
.contact__block a:hover { color: var(--green); }
.socials { display: flex; gap: .55rem; margin-top: .4rem; }
.socials a { display: grid; place-items: center; width: 2.7rem; height: 2.7rem; border-radius: 999px; box-shadow: inset 0 0 0 1px var(--line-2); font-size: 1.15rem; text-decoration: none; transition: background .4s var(--ease), color .4s var(--ease); }
.socials a:hover { background: rgba(140, 198, 63, .22); color: var(--green-hi); box-shadow: inset 0 0 0 1px rgba(140, 198, 63, .55); }

/* ============================ footer ===================================== */

.foot { padding: clamp(3rem, 6vw, 5rem) var(--shell) 2.5rem; border-top: 1px solid var(--line); background: var(--ink-2); }
.foot__top { display: flex; flex-wrap: wrap; gap: 2.5rem; justify-content: space-between; align-items: flex-end; }
.foot__lockup { display: grid; gap: .55rem; justify-items: start; }
.foot__word { width: min(100%, 22rem); height: auto; }
.foot__lockup > span { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--fg-3); }


.foot__bot { display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.foot__bot p, .foot__bot a { font-size: .82rem; color: var(--fg-3); text-decoration: none; }
.foot__bot a:hover { color: var(--fg); }

/* ============================ scroll reveal ============================== */

.rise { opacity: 0; transform: translateY(34px); filter: blur(6px); }
.rise.in {
  opacity: 1; transform: none; filter: blur(0);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out), filter .9s var(--ease-out);
}
.rise.in.d1 { transition-delay: .08s; }
.rise.in.d2 { transition-delay: .16s; }
.rise.in.d3 { transition-delay: .24s; }

/* ============================ reduced motion ============================= */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .hero__field, .hero__veil, .hero__inner { animation: none; transform: none; opacity: 1; }
  .hero__field { opacity: .16; }
  .hero__word > span { transform: none; animation: none; }
  .hero__kicker, .hero .lede, .hero .cta-row { opacity: 1; }
  .strip__track { animation: none; }
  .rise { opacity: 1; transform: none; filter: none; }
}
