/* =========================================================================
   ThreadLine — custom upholstery, Knoxville TN
   Dark warm-charcoal + leather (cognac / saddle / caramel / tan) + brass.
   ========================================================================= */

:root {
  /* Surfaces (warm near-black) */
  --ink-900: #0d0b09;
  --ink-850: #120f0c;
  --ink-800: #171310;
  --ink-700: #1f1a15;
  --ink-600: #272019;
  --ink-500: #332a20;

  /* Leather + brass */
  --leather: #a85f2c;
  --leather-deep: #7e4421;
  --caramel: #c98a4f;
  --tan: #d9b489;
  --brass: #cda04e;
  --brass-bright: #e8c879;

  /* Text */
  --cream: #f4ece0;
  --cream-2: #d9cdba;
  --muted: #9b8d7b;

  /* Lines */
  --line: rgba(232, 200, 121, 0.14);
  --line-strong: rgba(232, 200, 121, 0.32);

  /* Gradients */
  --grad-leather: linear-gradient(135deg, #c98a4f 0%, #a85f2c 45%, #7e4421 100%);
  --grad-brass: linear-gradient(90deg, #e8c879, #cda04e);
  --grad-fade: linear-gradient(180deg, rgba(13, 11, 9, 0) 0%, var(--ink-900) 100%);

  /* Type */
  --font-display: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
  --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Misc */
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.8);
  --shadow-soft: 0 16px 40px -20px rgba(0, 0, 0, 0.7);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1240px;
  --header-h: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--ink-900);
  color: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Subtle film grain over everything */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--leather);
  color: var(--cream);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 11px;
}
::-webkit-scrollbar-track {
  background: var(--ink-850);
}
::-webkit-scrollbar-thumb {
  background: var(--leather-deep);
  border-radius: 10px;
  border: 3px solid var(--ink-850);
}

/* ------------------------------------------------------------- typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--cream);
}

.display {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  font-weight: 600;
}

.display em,
.serif-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  background: var(--grad-brass);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2.section-title {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass-bright);
}
.eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--grad-brass);
}
.eyebrow.center::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--grad-brass);
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--cream-2);
  max-width: 56ch;
}

.muted {
  color: var(--muted);
}

/* --------------------------------------------------------------- layout */
.container {
  width: min(100% - 48px, var(--maxw));
  margin-inline: auto;
}

.section {
  padding: clamp(72px, 11vw, 150px) 0;
  position: relative;
}

.section--tight {
  padding: clamp(56px, 7vw, 90px) 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.section-head .eyebrow {
  margin-bottom: 18px;
}
.section-head p {
  margin-top: 20px;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
  border: 0;
}

/* --------------------------------------------------------------- buttons */
.btn {
  --pad-y: 15px;
  --pad-x: 30px;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    background 0.3s var(--ease), color 0.3s var(--ease);
  white-space: nowrap;
}
.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease);
}
.btn--primary {
  background: var(--grad-leather);
  color: #fff;
  box-shadow: 0 12px 30px -12px rgba(168, 95, 44, 0.8);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -14px rgba(168, 95, 44, 0.9);
}
.btn--primary:hover svg {
  transform: translateX(4px);
}
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  border-color: var(--brass);
  color: var(--brass-bright);
  transform: translateY(-3px);
}
.btn--block {
  width: 100%;
  justify-content: center;
}

/* ----------------------------------------------------------------- header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease),
    backdrop-filter 0.4s var(--ease), height 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  height: 66px;
  background: rgba(13, 11, 9, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.22rem;
  letter-spacing: -0.01em;
}
.brand .brand-mark {
  width: 40px;
  height: 40px;
  flex: none;
}
.brand .thread {
  color: var(--cream);
}
.brand .line {
  color: var(--brass-bright);
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav a {
  position: relative;
  padding: 10px 16px;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--cream-2);
  border-radius: 8px;
  transition: color 0.25s var(--ease);
}
.nav a::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 1.5px;
  background: var(--grad-brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav a:hover,
.nav a.active {
  color: var(--cream);
}
.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}
.nav .btn {
  margin-left: 10px;
  --pad-y: 10px;
  --pad-x: 22px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 12px;
  width: 22px;
  height: 2px;
  background: var(--cream);
  transition: 0.3s var(--ease);
}
.nav-toggle span {
  top: 22px;
}
.nav-toggle span::before {
  top: -7px;
}
.nav-toggle span::after {
  top: 7px;
}
body.nav-open .nav-toggle span {
  background: transparent;
}
body.nav-open .nav-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}
body.nav-open .nav-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ------------------------------------------------------------------- hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 85% 10%, rgba(168, 95, 44, 0.28), transparent 55%),
    radial-gradient(90% 80% at 0% 100%, rgba(126, 68, 33, 0.22), transparent 50%),
    var(--ink-900);
}
.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 160px;
  background: var(--grad-fade);
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-copy .eyebrow {
  margin-bottom: 26px;
}
.hero h1 {
  margin-bottom: 26px;
}
.hero .lead {
  margin-bottom: 38px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-meta {
  margin-top: 46px;
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-meta .stat .n {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--brass-bright);
  line-height: 1;
}
.hero-meta .stat .l {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 6px;
}

.hero-gauge {
  justify-self: center;
  width: min(100%, 460px);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-cue .bar {
  width: 1px;
  height: 46px;
  background: linear-gradient(var(--brass), transparent);
  animation: cue 2.2s var(--ease) infinite;
}
@keyframes cue {
  0% { transform: scaleY(0); transform-origin: top; }
  40% { transform: scaleY(1); transform-origin: top; }
  60% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ------------------------------------------------------- gauge animation */
.gauge .needle {
  transform-box: view-box;
  transform-origin: 200px 200px;
  transform: rotate(-130deg);
}
.gauge.run .needle {
  animation: sweep 2.6s var(--ease) 0.3s both;
}
@keyframes sweep {
  0% { transform: rotate(-130deg); }
  55% { transform: rotate(118deg); }
  72% { transform: rotate(96deg); }
  100% { transform: rotate(108deg); }
}
.gauge .tick-hot {
  opacity: 0;
}
.gauge.run .tick-hot {
  animation: hot 2.6s var(--ease) 0.3s both;
}
@keyframes hot {
  0%, 60% { opacity: 0; }
  100% { opacity: 1; }
}

/* --------------------------------------------------------------- marquee */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--ink-850);
  overflow: hidden;
  padding: 22px 0;
}
.marquee__track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee__track {
  animation-play-state: paused;
}
.marquee__track span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--cream-2);
  display: inline-flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
}
.marquee__track span::after {
  content: '✦';
  color: var(--brass);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* --------------------------------------------------------------- services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.service-card {
  position: relative;
  padding: 38px 32px 34px;
  background: linear-gradient(180deg, var(--ink-700), var(--ink-800));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--grad-leather);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card .num {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  color: var(--brass);
}
.service-card .ico {
  width: 46px;
  height: 46px;
  margin: 18px 0 22px;
  color: var(--caramel);
}
.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--muted);
  font-size: 0.98rem;
}

/* ----------------------------------------------------- featured gallery */
.featured-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.featured-strip .ftile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--line);
}
.featured-strip .ftile:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}
.featured-strip .ftile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.featured-strip .ftile:hover img {
  transform: scale(1.06);
}
.featured-strip .ftile figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px 18px 16px;
  background: linear-gradient(transparent, rgba(13, 11, 9, 0.85));
  font-family: var(--font-display);
  font-size: 0.95rem;
}
.featured-strip .ftile figcaption small {
  display: block;
  color: var(--brass-bright);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

/* ------------------------------------------------------------ split/about */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.split.reverse .split-media {
  order: 2;
}
.split-media {
  position: relative;
}
.framed {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--ink-700);
  border: 1px solid var(--line);
}
.framed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.framed::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1.5px dashed rgba(232, 200, 121, 0.45);
  border-radius: calc(var(--radius-lg) - 8px);
  pointer-events: none;
}
.badge-float {
  position: absolute;
  right: -18px;
  bottom: -18px;
  background: var(--grad-leather);
  color: #fff;
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: var(--shadow);
  font-family: var(--font-display);
  line-height: 1.1;
}
.badge-float b {
  font-size: 1.8rem;
  display: block;
}
.badge-float small {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  opacity: 0.85;
}

.feature-list {
  list-style: none;
  margin-top: 28px;
  display: grid;
  gap: 14px;
}
.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--cream-2);
}
.feature-list li svg {
  width: 22px;
  height: 22px;
  color: var(--brass);
  flex: none;
  margin-top: 2px;
}

/* ------------------------------------------------------------- process */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 4px;
  counter-reset: step;
}
.step {
  padding: 34px 28px;
  border: 1px solid var(--line);
  position: relative;
}
.step .k {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.6rem;
  color: var(--leather);
  line-height: 1;
}
.step h3 {
  font-size: 1.2rem;
  margin: 14px 0 8px;
}
.step p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ----------------------------------------------------------------- stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stats-row .stat .n {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  background: var(--grad-brass);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stats-row .stat .l {
  color: var(--muted);
  letter-spacing: 0.06em;
  font-size: 0.86rem;
  margin-top: 4px;
}

/* --------------------------------------------------------- testimonial */
.quote {
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
}
.quote blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  line-height: 1.3;
  color: var(--cream);
}
.quote .cite {
  margin-top: 26px;
  color: var(--brass-bright);
  letter-spacing: 0.12em;
  font-size: 0.86rem;
  text-transform: uppercase;
}

/* ------------------------------------------------------------------ CTA */
.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  padding: clamp(44px, 7vw, 80px);
  background: var(--grad-leather);
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 20h40M20 0v40' stroke='%23ffffff' stroke-opacity='0.06' stroke-width='1'/%3E%3C/svg%3E");
}
.cta-band > * {
  position: relative;
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
}
.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 50ch;
  margin: 18px auto 32px;
}
.cta-band .btn--primary {
  background: var(--ink-900);
  box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.6);
}
.cta-band .btn--ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

/* --------------------------------------------------------------- footer */
.site-footer {
  background: var(--ink-850);
  border-top: 1px solid var(--line);
  padding: 70px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.site-footer .brand {
  margin-bottom: 18px;
}
.site-footer p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 34ch;
}
.footer-col h4 {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-bright);
  margin-bottom: 18px;
}
.footer-col a,
.footer-col li {
  display: block;
  color: var(--cream-2);
  font-size: 0.96rem;
  padding: 5px 0;
  transition: color 0.25s var(--ease);
  list-style: none;
}
.footer-col a:hover {
  color: var(--brass-bright);
}
.footer-bottom {
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.85rem;
}
.socials {
  display: flex;
  gap: 12px;
}
.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: 0.3s var(--ease);
}
.socials a:hover {
  border-color: var(--brass);
  color: var(--brass-bright);
  transform: translateY(-3px);
}
.socials svg {
  width: 17px;
  height: 17px;
}

/* ----------------------------------------------------------- page hero */
.page-hero {
  padding: calc(var(--header-h) + 70px) 0 60px;
  background:
    radial-gradient(80% 120% at 90% 0%, rgba(168, 95, 44, 0.22), transparent 55%),
    var(--ink-900);
  position: relative;
}
.page-hero .eyebrow {
  margin-bottom: 20px;
}
.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  max-width: 16ch;
}
.page-hero p {
  margin-top: 22px;
  max-width: 60ch;
}
.crumbs {
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 26px;
  letter-spacing: 0.04em;
}
.crumbs a:hover {
  color: var(--brass-bright);
}

/* --------------------------------------------------------- forms / contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}
.field {
  margin-bottom: 20px;
}
.field label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-2);
  margin-bottom: 9px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 15px 18px;
  background: var(--ink-800);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--cream);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.field textarea {
  min-height: 150px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brass);
  background: var(--ink-700);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.info-card {
  background: linear-gradient(180deg, var(--ink-700), var(--ink-800));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px;
}
.info-row {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.info-row:last-child {
  border-bottom: 0;
}
.info-row svg {
  width: 22px;
  height: 22px;
  color: var(--brass);
  flex: none;
  margin-top: 3px;
}
.info-row .k {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.info-row .v {
  color: var(--cream);
  font-size: 1.05rem;
}
.info-row .v a:hover {
  color: var(--brass-bright);
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 14px;
}

/* --------------------------------------------------------------- 404 */
.center-screen {
  min-height: 80vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-top: var(--header-h);
}

/* ------------------------------------------------------------- reveal fx */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
[data-reveal][data-delay='1'] { transition-delay: 0.08s; }
[data-reveal][data-delay='2'] { transition-delay: 0.16s; }
[data-reveal][data-delay='3'] { transition-delay: 0.24s; }
[data-reveal][data-delay='4'] { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------- gallery */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.chip {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: var(--ink-800);
  color: var(--cream-2);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s var(--ease);
}
.chip:hover {
  border-color: var(--brass);
  color: var(--cream);
}
.chip.active {
  background: var(--grad-leather);
  border-color: transparent;
  color: #fff;
}
.chip .count {
  opacity: 0.6;
  font-size: 0.78em;
  margin-left: 4px;
}

/* Masonry via CSS grid + JS-assigned row spans (keeps curated order). */
.masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 8px;
  gap: 18px;
}
.tile {
  position: relative;
  grid-row-end: span 30;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-700);
  border: 1px solid var(--line);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px) scale(0.99);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease),
    border-color 0.3s var(--ease);
}
.tile.in {
  opacity: 1;
  transform: none;
}
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.tile:hover {
  border-color: var(--line-strong);
}
.tile:hover img {
  transform: scale(1.07);
}
.tile .tile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background: linear-gradient(transparent 40%, rgba(13, 11, 9, 0.88));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.tile:hover .tile-overlay {
  opacity: 1;
}
.tile .tile-overlay small {
  color: var(--brass-bright);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.tile .tile-overlay h3 {
  font-size: 1.1rem;
  margin-top: 4px;
}
.tile .play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(13, 11, 9, 0.5);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  transition: 0.3s var(--ease);
}
.tile:hover .play {
  background: var(--leather);
  border-color: transparent;
  transform: scale(1.08);
}
.tile .play svg {
  width: 22px;
  height: 22px;
  color: #fff;
  margin-left: 3px;
}
.gallery-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--muted);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  place-items: center;
  padding: 30px;
  background: rgba(8, 7, 6, 0.92);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.lightbox.open {
  display: grid;
  opacity: 1;
}
.lightbox__stage {
  max-width: min(1100px, 92vw);
  max-height: 82vh;
  transform: scale(0.97);
  transition: transform 0.35s var(--ease);
}
.lightbox.open .lightbox__stage {
  transform: scale(1);
}
.lightbox__stage img,
.lightbox__stage video {
  max-width: 100%;
  max-height: 72vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-inline: auto;
}
.lightbox__cap {
  text-align: center;
  margin-top: 18px;
}
.lightbox__cap small {
  color: var(--brass-bright);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.74rem;
}
.lightbox__cap h3 {
  font-size: 1.3rem;
  margin: 6px 0 4px;
}
.lightbox__cap p {
  color: var(--cream-2);
  font-size: 0.95rem;
}
.lb-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(13, 11, 9, 0.6);
  color: var(--cream);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: 0.3s var(--ease);
}
.lb-btn:hover {
  background: var(--leather);
  border-color: transparent;
}
.lb-btn svg { width: 22px; height: 22px; }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(13, 11, 9, 0.6);
  color: var(--cream);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: 0.3s var(--ease);
}
.lb-close:hover {
  background: var(--leather);
  border-color: transparent;
  transform: rotate(90deg);
}
.lb-close svg { width: 20px; height: 20px; }

@media (max-width: 860px) {
  .masonry { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .lb-btn { width: 44px; height: 44px; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
}
@media (max-width: 520px) {
  .masonry { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------- responsive */
@media (max-width: 980px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  .hero-copy .eyebrow,
  .hero-actions,
  .hero-meta {
    justify-content: center;
  }
  .hero-gauge {
    order: -1;
    width: min(72%, 340px);
  }
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .split.reverse .split-media {
    order: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .featured-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-strip .ftile:first-child {
    grid-row: auto;
    aspect-ratio: 3 / 4;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }
}

@media (max-width: 720px) {
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(80vw, 320px);
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 4px;
    padding: 90px 26px 40px;
    background: var(--ink-850);
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
  }
  body.nav-open .nav {
    transform: none;
  }
  .nav a {
    font-size: 1.1rem;
    padding: 14px 16px;
  }
  .nav a::after { display: none; }
  .nav .btn {
    margin: 14px 0 0;
    justify-content: center;
  }
  .nav-toggle {
    display: block;
    z-index: 1001;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
