/* ===========================
   CSS Custom Properties
   =========================== */
:root {
  /* Core palette */
  --black:       #0A0A0A;
  --near-black:  #111111;
  --surface:     #181818;
  --surface-2:   #202020;
  --border:      #2A2A2A;
  --border-light:#333333;

  /* NYC red — brick / MTA red */
  --red:         #C0392B;
  --red-dark:    #96281B;
  --red-light:   #E74C3C;
  --red-dim:     rgba(192,57,43,.15);

  /* Yellows — taxi / warning stripe */
  --yellow:      #F5C518;
  --yellow-dim:  rgba(245,197,24,.12);

  /* Text */
  --white:       #FFFFFF;
  --off-white:   #F0EDE8;
  --gray-1:      #AAAAAA;
  --gray-2:      #666666;
  --gray-3:      #333333;

  /* Subway line colors */
  --subway-a:    #0039A6;  /* A/C/E */
  --subway-1:    #EE352E;  /* 1/2/3 */
  --subway-7:    #B933AD;  /* 7     */
  --subway-n:    #FCCC0A;  /* N/Q/R */
  --subway-g:    #6CBE45;  /* G     */

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui:      'DM Sans', sans-serif;
  --font-body:    'Inter', sans-serif;

  --header-h:  68px;
  --radius:    4px;
  --radius-lg: 10px;
  --shadow:    0 4px 24px rgba(0,0,0,.5);
  --shadow-lg: 0 8px 48px rgba(0,0,0,.7);

  --t:      .2s ease;
  --t-slow: .65s cubic-bezier(.16,1,.3,1);
}

/* ===========================
   Reset & Base
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--off-white);
  background: var(--black);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===========================
   Scroll Reveal
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--t-slow), transform var(--t-slow);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===========================
   Layout
   =========================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===========================
   Subway stripe — decorative top bar
   =========================== */
.subway-stripe {
  height: 6px;
  background: linear-gradient(
    to right,
    var(--subway-1)  0%   20%,
    var(--subway-a)  20%  40%,
    var(--subway-n)  40%  60%,
    var(--subway-g)  60%  80%,
    var(--subway-7)  80%  100%
  );
}

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-block;
  position: relative;
  overflow: hidden;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background var(--t), color var(--t), border-color var(--t),
              transform var(--t), box-shadow var(--t);
}
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  transition: left .5s ease;
  pointer-events: none;
}
.btn:hover::after { left: 160%; }
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 2px 16px rgba(192,57,43,.3);
}
.btn-primary:hover {
  background: var(--red-light);
  border-color: var(--red-light);
  box-shadow: 0 6px 28px rgba(192,57,43,.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.btn-outline:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.75);
}

.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 13px;
  letter-spacing: .14em;
}

/* ===========================
   Section Titles
   =========================== */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 300;
  color: var(--white);
  text-align: center;
  letter-spacing: .01em;
  line-height: 1.08;
  margin-bottom: 14px;
}
.section-title--left { text-align: left; }
.section-sub {
  text-align: center;
  color: var(--gray-1);
  margin-bottom: 52px;
  font-size: 16px;
  line-height: 1.65;
}

/* ===========================
   Header
   =========================== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background var(--t), border-color var(--t), backdrop-filter var(--t);
  border-bottom: 1px solid transparent;
}
#header.scrolled {
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
body:not([data-page="home"]) #header {
  background: rgba(10,10,10,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  font-family: var(--font-ui);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--white);
  transition: color var(--t);
  display: flex;
  align-items: center;
  gap: 10px;
}
/* Red dot before logo — like a subway marker */
.logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--subway-a);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
  letter-spacing: 0;
  line-height: 1;
}
.logo:hover { color: var(--yellow); }

/* Desktop: pin nav into the header bar */
#nav {
  position: fixed;
  top: 0; right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  padding-right: 32px;
  z-index: 101;
}
#nav ul { display: flex; gap: 32px; }
#nav a {
  position: relative;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-1);
  transition: color var(--t);
  padding-bottom: 3px;
}
#nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 26px;
  width: 0; height: 1.5px;
  background: var(--red);
  transition: width var(--t);
}
#nav a:hover,
#nav a.active { color: var(--white); }
#nav a:hover::after,
#nav a.active::after { width: calc(100% - 26px); }

.nav-dot {
  display: inline-block;
  width: 20px; height: 20px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  line-height: 20px;
  text-align: center;
  text-transform: none;
  letter-spacing: 0;
  margin-right: 6px;
  vertical-align: middle;
  color: #ffffff !important;
  flex-shrink: 0;
}
.nav-dot--h { background-color: #0039A6 !important; }
.nav-dot--g { background-color: #6CBE45 !important; }
.nav-dot--c { background-color: #0039A6 !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   Hero
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: 68% 52%;
  background-color: var(--near-black);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8,8,8,.95) 0%,
    rgba(8,8,8,.82) 50%,
    rgba(8,8,8,.45) 100%
  );
}

/* Vertical NYC-style rule on the left */
.hero::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--red) 0%, transparent 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: var(--header-h);
}

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeUp .9s cubic-bezier(.16,1,.3,1) .15s both;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(58px, 9vw, 108px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -.01em;
  margin-bottom: 28px;
  animation: fadeUp .9s cubic-bezier(.16,1,.3,1) .3s both;
}
.hero h1 strong {
  font-weight: 600;
  font-style: italic;
  color: var(--off-white);
}

/* "Made in Queens" badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-dim);
  border: 1px solid rgba(192,57,43,.3);
  border-radius: 2px;
  padding: 6px 14px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 24px;
  animation: fadeUp .9s cubic-bezier(.16,1,.3,1) .45s both;
}

.hero-sub {
  font-size: 17px;
  color: var(--gray-1);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.65;
  animation: fadeUp .9s cubic-bezier(.16,1,.3,1) .55s both;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp .9s cubic-bezier(.16,1,.3,1) .68s both;
}

/* Stat strip inside hero */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,.07);
  background: rgba(10,10,10,.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: fadeUp .9s cubic-bezier(.16,1,.3,1) .85s both;
}
.hero-stats-inner {
  display: flex;
  justify-content: center;
  align-items: stretch;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}
.hero-stat {
  flex: 1;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 16px;
  border-right: 1px solid rgba(255,255,255,.06);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--red-light);
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: -.01em;
}
.hero-stat-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gray-2);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===========================
   Services
   =========================== */
.services {
  padding: 104px 0;
  background: var(--near-black);
  border-top: 1px solid var(--border);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 52px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--surface);
  transition: background var(--t);
  position: relative;
}
.service-card + .service-card { border-left: 1px solid var(--border); }
.service-card:hover { background: var(--surface-2); }
.service-card-link {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 10;
}

.service-img {
  height: 260px;
  background-size: cover;
  background-position: center;
  transition: transform var(--t-slow);
  overflow: hidden;
  position: relative;
}
.service-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,10,10,.8) 100%);
}
.service-card:hover .service-img { transform: scale(1.04); }
.service-img--embroidery {
  background-image: url('../images/embroidery.jpg');
  background-color: #1a1a1a;
}
.service-img--puff {
  background-image: url('../images/puff-embroidery.jpg');
  background-color: #202020;
  background-size: cover;
}
.service-img--screen {
  background-image: url('../images/screen-printing.jpg');
  background-color: #161616;
  background-size: cover;
}

.service-body { padding: 28px 32px 36px; }

/* Subway-dot service tag */
.service-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 14px;
}
.service-tag--e { background: var(--subway-a); color: var(--white); }
.service-tag--p { background: var(--subway-1); color: var(--white); }
.service-tag--s { background: #808183; color: var(--white); }

.service-body h3 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: .01em;
  margin-bottom: 10px;
  line-height: 1.15;
  transition: color var(--t);
}
.service-card:hover .service-body h3 { color: var(--red-light); }
.service-body p { font-size: 14px; color: var(--gray-1); line-height: 1.7; }

/* ===========================
   Gallery Preview (home)
   =========================== */
.gallery-preview {
  padding: 104px 0;
  background: var(--black);
  border-top: 1px solid var(--border);
}
.gallery-preview-cta {
  text-align: center;
  margin-top: 52px;
}

/* ===========================
   Gallery (shared grid)
   =========================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 4 / 3;
  cursor: pointer;
}
.gallery-item-link {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 10;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
  filter: grayscale(15%);
  transform: scale(1);
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: grayscale(0%);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(192,57,43,.65) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }

.gallery-loading,
.gallery-placeholder {
  grid-column: 1 / -1;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--gray-2);
  padding: 60px 0;
}

/* ===========================
   Page Hero (inner pages)
   =========================== */
.page-hero {
  background: var(--near-black);
  padding: calc(var(--header-h) + 72px) 0 80px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
/* NYC subway map background */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url('../images/subway-map.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  filter: grayscale(30%);
}
/* Diagonal red stripe watermark */
.page-hero::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: var(--red);
  opacity: .04;
  border-radius: 50%;
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.5vw, 76px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: .01em;
  margin-bottom: 16px;
  animation: fadeUp .8s cubic-bezier(.16,1,.3,1) .1s both;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.page-hero-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  font-family: var(--font-ui);
  font-size: 22px;
  font-weight: 800;
  flex-shrink: 0;
}
.page-hero p {
  color: var(--gray-1);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.65;
  animation: fadeUp .8s cubic-bezier(.16,1,.3,1) .25s both;
}

/* ===========================
   Gallery Page
   =========================== */
.gallery--page {
  padding: 64px 0 96px;
  background: var(--black);
}
.gallery-category { margin-bottom: 80px; scroll-margin-top: calc(var(--header-h) + 24px); }
.gallery-category:last-child { margin-bottom: 0; }

/* Category title with subway dot */
.gallery-category-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: .01em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.gallery-category-title .subway-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}
.subway-dot--e { background: var(--subway-a); color: var(--white); }
.subway-dot--p { background: var(--subway-1); color: var(--white); }
.subway-dot--s { background: #808183; color: var(--white); }

.gallery-category-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ===========================
   Contact
   =========================== */
.contact {
  padding: 104px 0;
  background: var(--near-black);
  border-top: 1px solid var(--border);
}
.contact-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 72px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: .01em;
  margin-bottom: 16px;
  line-height: 1.1;
}
.contact-info p { color: var(--gray-1); font-size: 15px; line-height: 1.7; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--off-white);
  line-height: 1.55;
}
.contact-details svg { width: 18px; height: 18px; fill: var(--red); flex-shrink: 0; margin-top: 3px; }

.map-wrap {
  margin-top: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  line-height: 0;
}
.map-wrap iframe { display: block; }

.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  background: transparent;
  color: var(--gray-1);
  border: 1.5px solid var(--border-light);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--radius);
  transition: background var(--t), border-color var(--t), color var(--t), transform var(--t);
  width: 100%;
  justify-content: center;
  cursor: pointer;
}
.btn-directions:hover {
  background: var(--red-dim);
  border-color: var(--red);
  color: var(--red-light);
  transform: translateY(-1px);
}
.btn-directions svg { width: 17px; height: 17px; fill: currentColor; flex-shrink: 0; }

/* Form */
.form-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 40px;
}
form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }

label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-2);
  letter-spacing: .1em;
  text-transform: uppercase;
}
label span { color: var(--red); }

input, select, textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
  background: var(--surface-2);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
  width: 100%;
}
input::placeholder, textarea::placeholder { color: var(--gray-2); }
input:focus, select:focus, textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-dim);
}
textarea { resize: vertical; }
select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
select option { background: var(--surface-2); }

[data-fs-success], [data-fs-error] {
  font-size: 14px;
  font-family: var(--font-ui);
  padding: 12px 16px;
  border-radius: var(--radius);
}
[data-fs-success]:not([style*="display"]) { display: none; }
.fs-success {
  background: rgba(39,174,96,.08);
  border: 1px solid rgba(111,207,151,.25);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  margin-bottom: 24px;
}
.fs-success-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(111,207,151,.15);
  border: 2px solid #6fcf97;
  color: #6fcf97;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.fs-success-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}
.fs-success-body {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--gray-1);
  line-height: 1.6;
}
.fs-error-msg {
  background: rgba(192,57,43,.08);
  border: 1px solid rgba(224,112,112,.25);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  margin-bottom: 24px;
}
.fs-error-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(224,112,112,.15);
  border: 2px solid #e07070;
  color: #e07070;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.fs-error-msg a { color: #e07070; text-decoration: underline; }
.fs-field-error {
  display: block;
  font-size: 11px;
  font-family: var(--font-ui);
  color: var(--red-light);
  margin-top: 4px;
  min-height: 16px;
}
input[aria-invalid="true"], select[aria-invalid="true"], textarea[aria-invalid="true"] {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-dim);
}
.btn-submit:disabled { opacity: .45; cursor: not-allowed; transform: none; }

/* ===========================
   Footer
   =========================== */
.footer {
  background: var(--black);
  padding: 56px 0 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  padding-bottom: 40px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--white);
}
.footer-tagline {
  font-size: 12px;
  color: var(--gray-2);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: -14px;
}
.footer-nav { display: flex; gap: 32px; }
.footer-nav a {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-2);
  transition: color var(--t);
}
.footer-nav a:hover { color: var(--white); }
.footer-instagram { display: flex; align-items: center; gap: 5px; }
.footer-copy { font-size: 12px; color: var(--gray-3); }
/* Subway stripe at footer bottom */
.footer .subway-stripe { margin-top: 8px; }

/* ===========================
   Responsive
   =========================== */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card + .service-card { border-left: none; border-top: 1px solid var(--border); }
  .gallery-grid  { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-stats-inner { justify-content: flex-start; overflow-x: auto; }
}
@media (max-width: 680px) {
  .nav-toggle { display: flex; }
  #header.nav-open {
    background: rgba(10,10,10,.97) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom-color: transparent !important;
  }
  #nav {
    position: fixed;
    top: var(--header-h); right: 0; bottom: 0; left: 0;
    height: auto;
    padding-right: 0;
    background: rgba(10,10,10,.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.16,1,.3,1);
    z-index: 200;
    padding-top: 20px;
  }
  #nav.open { transform: translateX(0); }
  #nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding: 0 28px;
  }
  #nav ul li { border-bottom: 1px solid var(--border); }
  #nav ul li:first-child { border-top: 1px solid var(--border); }
  #nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: .04em;
    color: var(--white) !important;
    padding: 20px 4px;
    width: 100%;
  }
  #nav a::after { display: none; }
  #nav .nav-dot {
    width: 28px;
    height: 28px;
    font-size: 13px;
    line-height: 28px;
    letter-spacing: 0 !important;
    text-transform: none !important;
    flex-shrink: 0;
    margin-right: 0;
  }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: 1fr 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .form-card     { padding: 24px 18px; }
  .hero-buttons  { flex-direction: column; align-items: flex-start; }
  .hero::before  { display: none; }
  .hero-stats    { display: none; }
}
@media (max-width: 420px) {
  .hero h1 { font-size: 44px; }
  .gallery-grid { grid-template-columns: 1fr; }
}
