/* ============================================================
   The Tailored Garage — production stylesheet
   Design tokens and rules translated from the handoff spec.
   Squared corners, no shadows: depth comes from value + hairlines.
   ============================================================ */

:root {
  /* Color */
  --bg:            #0B0B0C;
  --bg-alt:        #0E0E10;
  --card:          #141416;
  --card-2:        #161618;
  --text:          #F2F0EC;
  --text-body:     #B4B0AA;
  --text-2:        #9A9691;
  --text-muted:    #8B8781;
  --accent:        #C69B5E;
  --accent-hover:  #E4C08A;
  --hairline:      rgba(242, 240, 236, .10);
  --hairline-2:    rgba(242, 240, 236, .12);
  --stitch:        rgba(242, 240, 236, .14);
  --stitch-2:      rgba(242, 240, 236, .16);

  /* Type */
  --display: 'Bodoni Moda', Georgia, 'Times New Roman', serif;
  --body:    'Barlow', Helvetica, Arial, sans-serif;
  --cond:    'Barlow Condensed', 'Arial Narrow', sans-serif;
  --mono:    'IBM Plex Mono', ui-monospace, 'SFMono-Regular', monospace;

  /* Layout */
  --maxw: 1560px;
  --pad: clamp(20px, 4vw, 56px);
  --section-y: clamp(80px, 12vw, 160px);

  /* Motion */
  --ease: cubic-bezier(.2, .7, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

::selection { background: var(--accent); color: var(--bg); }

:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: 3px;
}

h1, h2, h3, p, dl, dd, ol, ul, figure, blockquote { margin: 0; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: 16px; top: -60px;
  z-index: 200;
  background: var(--accent);
  color: var(--bg);
  padding: 12px 20px;
  font-family: var(--cond);
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: top .25s ease;
}
.skip-link:focus { top: 16px; color: var(--bg); }

/* ---------- Reusable pieces ---------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--pad);
}

section { scroll-margin-top: 96px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.eyebrow .rule {
  width: 28px; height: 1px;
  background: var(--accent);
  flex: none;
}
.eyebrow .label {
  font-family: var(--cond);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
}

.h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(30px, 4.4vw, 62px);
  line-height: 1.06;
  letter-spacing: -.01em;
  text-wrap: balance;
}

p { text-wrap: pretty; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 19px 34px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .35s ease, transform .35s ease, border-color .35s ease, color .35s ease;
}
.btn-primary { background: var(--accent); color: var(--bg); }
.btn-primary:hover { background: var(--accent-hover); color: var(--bg); transform: translateY(-2px); }
.btn-ghost {
  color: var(--text);
  border-color: rgba(242, 240, 236, .28);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--accent); background: rgba(198, 155, 94, .08); color: var(--text); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  transition: background .5s ease, backdrop-filter .5s ease;
}
.nav.is-solid {
  background: rgba(11, 11, 12, .86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--pad);
  height: clamp(68px, 7vw, 92px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; color: var(--text); }
.brand img { width: 34px; height: 34px; object-fit: contain; flex: none; }
.brand .wordmark { display: flex; flex-direction: column; gap: 3px; }
.brand .wordmark span {
  font-family: var(--cond);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .34em;
  text-transform: uppercase;
  line-height: 1;
}
.brand .wordmark span:last-child { color: var(--text-2); }

.nav-links { display: none; align-items: center; gap: clamp(18px, 2.4vw, 38px); }
.nav-links a.nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #C9C5BF;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color .3s ease, border-color .3s ease;
}
.nav-links a.nav-link:hover { color: var(--text); border-bottom-color: var(--accent); }
.nav-cta {
  font-size: 12px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--bg); background: var(--accent);
  padding: 14px 24px;
  transition: background .3s ease, transform .3s ease;
}
.nav-cta:hover { background: var(--accent-hover); color: var(--bg); transform: translateY(-1px); }

.nav-toggle {
  display: grid;
  place-items: center;
  gap: 5px;
  width: 46px; height: 46px;
  padding: 0;
  background: none;
  border: 1px solid rgba(255, 255, 255, .16);
  color: var(--text);
  cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 1px; background: var(--text); }

.nav-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198, 155, 94, .35), transparent);
}

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}

/* ---------- Mobile drawer ---------- */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--bg);
  padding: 28px clamp(20px, 6vw, 40px);
  display: flex;
  flex-direction: column;
  animation: tg-fade .35s ease;
}
.drawer[hidden] { display: none; }
.drawer-top { display: flex; justify-content: space-between; align-items: center; }
.drawer-top .drawer-label {
  font-family: var(--cond);
  font-size: 14px; letter-spacing: .34em; text-transform: uppercase; color: var(--text-2);
}
.drawer-close {
  width: 46px; height: 46px;
  background: none; border: 1px solid rgba(255, 255, 255, .16);
  color: var(--text); font-size: 18px; cursor: pointer;
}
.drawer-links { margin-top: 52px; display: flex; flex-direction: column; gap: 6px; }
.drawer-links a {
  font-family: var(--display);
  font-size: 34px; color: var(--text);
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, .10);
}
.drawer-cta {
  margin-top: auto; text-align: center;
  font-size: 13px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--bg); background: var(--accent); padding: 20px;
}
.drawer-cta:hover { color: var(--bg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg);
}
.hero-img {
  position: absolute;
  inset: -8%;
  background-color: #151517;
  background-image:
    url('assets/hero.webp'),
    radial-gradient(120% 90% at 70% 15%, rgba(198, 155, 94, .16) 0%, transparent 55%),
    linear-gradient(180deg, #1B1B1E 0%, #0E0E10 60%, #0B0B0C 100%);
  background-size: cover;
  background-position: center 62%;
  background-repeat: no-repeat;
  filter: brightness(.5) contrast(1.05) saturate(.85);
  animation: tg-kenburns 26s ease-out forwards;
  will-change: transform;
}
.hero-scrim-v {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,12,.78) 0%, rgba(11,11,12,.6) 38%, rgba(11,11,12,.95) 100%);
}
.hero-scrim-h {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,11,12,.8) 0%, rgba(11,11,12,.45) 45%, rgba(11,11,12,.1) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(110px, 15vh, 160px) var(--pad) clamp(48px, 7vw, 90px);
}
.hero-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: clamp(20px, 3vw, 32px); }
.hero-eyebrow .rule { width: 34px; height: 1px; background: var(--accent); flex: none; }
.hero-eyebrow .label {
  font-family: var(--cond); font-weight: 500; font-size: 12px;
  letter-spacing: .3em; text-transform: uppercase; color: var(--accent);
}
.hero h1 {
  max-width: 17ch;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(44px, 8.4vw, 132px);
  line-height: .96;
  letter-spacing: -.015em;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-row {
  display: flex; flex-wrap: wrap;
  align-items: flex-end; justify-content: space-between;
  gap: clamp(24px, 4vw, 60px);
  margin-top: clamp(28px, 4vw, 44px);
}
.hero-row p {
  max-width: 46ch;
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.65;
  color: var(--text-body);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.measure-rule {
  margin-top: clamp(34px, 5vw, 58px);
  height: 14px;
  border-top: 1px solid rgba(242, 240, 236, .18);
  background-image: repeating-linear-gradient(90deg, rgba(242,240,236,.22) 0 1px, transparent 1px 24px);
  opacity: .7;
}

/* ============================================================
   PREMISE
   ============================================================ */
.premise { padding: clamp(80px, 12vw, 170px) var(--pad); border-bottom: 1px solid rgba(242,240,236,.08); }
.premise .grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(36px, 6vw, 110px);
  align-items: start;
}
.premise .body { display: flex; flex-direction: column; gap: 26px; padding-top: clamp(0px, 2vw, 18px); }
.premise .body p { font-size: clamp(16px, 1.6vw, 20px); line-height: 1.7; color: var(--text-body); }
.stats {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 22px;
  border-top: 1px dashed var(--stitch-2);
  padding-top: 26px;
}
.stats dt { font-family: var(--display); font-size: clamp(30px, 3.6vw, 46px); line-height: 1; color: var(--text); }
.stats dd { margin-top: 10px; font-family: var(--cond); font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--text-muted); }

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: var(--section-y) var(--pad); background: var(--bg-alt); }
.section-head {
  display: flex; flex-wrap: wrap;
  align-items: flex-end; justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-head .intro { max-width: 38ch; font-size: 16px; line-height: 1.65; color: var(--text-muted); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.service {
  background: var(--bg-alt);
  padding: clamp(28px, 3.4vw, 46px);
  display: flex; flex-direction: column; gap: 18px;
  min-height: 300px;
  transition: background .45s ease;
}
.service:hover { background: var(--card); }
.service-top { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.service-no { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: var(--accent); }
.service-tick {
  flex: 1; height: 1px;
  background-image: repeating-linear-gradient(90deg, rgba(242,240,236,.26) 0 1px, transparent 1px 7px);
}
.service h3 { font-family: var(--display); font-weight: 400; font-size: clamp(23px, 2.3vw, 32px); line-height: 1.15; }
.service p { font-size: 15px; line-height: 1.7; color: var(--text-2); }
.service-tags {
  margin: auto 0 0;
  padding-top: 18px;
  list-style: none;
  border-top: 1px dashed var(--stitch);
  display: flex; flex-wrap: wrap; gap: 8px 16px;
}
.service-tags li { font-family: var(--cond); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-muted); }

/* ============================================================
   PROCESS
   ============================================================ */
.process { padding: var(--section-y) var(--pad); }
.process .head { max-width: 640px; margin-bottom: clamp(44px, 6vw, 80px); }
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.step {
  border-top: 1px solid var(--stitch);
  padding: 32px 26px 42px 0;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
}
.step .diamond {
  position: absolute; top: -4px; left: 0;
  width: 7px; height: 7px; background: var(--accent);
  transform: rotate(45deg);
}
.step-no { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: var(--accent); }
.step h3 { font-family: var(--display); font-weight: 400; font-size: clamp(24px, 2.4vw, 34px); line-height: 1.1; }
.step p { font-size: 15px; line-height: 1.7; color: var(--text-2); }
.step-meta { margin-top: auto; font-family: var(--cond); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted); }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio { padding: var(--section-y) var(--pad); background: var(--bg-alt); border-top: 1px solid rgba(242,240,236,.08); }
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filter {
  font-family: var(--cond);
  font-size: 12px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  padding: 12px 20px;
  cursor: pointer;
  background: transparent;
  color: var(--text-body);
  border: 1px solid rgba(242, 240, 236, .2);
  transition: all .3s ease;
}
.filter[aria-pressed="true"] { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(14px, 1.6vw, 24px);
}
.tile {
  all: unset;
  cursor: pointer;
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--hairline);
  transition: border-color .3s ease;
}
.tile:focus-visible { outline: 1px solid var(--accent); outline-offset: 3px; }
.tile:hover { border-color: rgba(198, 155, 94, .55); }
.tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--card-2);
  transition: transform 1.1s var(--ease);
}
.tile:hover img { transform: scale(1.045); }
.tile-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,12,0) 40%, rgba(11,11,12,.88) 100%);
  pointer-events: none;
}
.tile-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 16px;
  pointer-events: none;
}
.tile-title { font-family: var(--display); font-size: clamp(20px, 1.9vw, 26px); line-height: 1.15; color: var(--text); }
.tile-meta { margin-top: 8px; font-family: var(--cond); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-2); }
.tile-view { font-family: var(--cond); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); white-space: nowrap; }
.tile[hidden] { display: none; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(6, 6, 7, .96);
  display: flex; flex-direction: column;
  padding: clamp(16px, 3vw, 40px);
  animation: tg-fade .3s ease;
}
.lightbox[hidden] { display: none; }
.lightbox-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.lightbox-title { font-family: var(--display); font-size: clamp(22px, 2.6vw, 34px); }
.lightbox-meta { margin-top: 8px; font-family: var(--cond); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-2); }
.lightbox-close {
  width: 48px; height: 48px; flex: none;
  background: none; border: 1px solid rgba(242, 240, 236, .22);
  color: var(--text); font-size: 20px; cursor: pointer;
  transition: border-color .3s ease;
}
.lightbox-close:hover { border-color: var(--accent); }
.lightbox-figure {
  flex: 1; min-height: 220px;
  margin: clamp(16px, 2.4vw, 28px) 0;
  position: relative; overflow: hidden;
  background: var(--card-2);
  border: 1px solid rgba(198, 155, 94, .28);
}
.lightbox-figure img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lightbox-foot {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
  border-top: 1px dashed var(--stitch-2); padding-top: 20px;
}
.lightbox-foot p { max-width: 60ch; font-size: 15px; line-height: 1.7; color: var(--text-2); }
.lightbox-nav { display: flex; gap: 10px; }
.lightbox-btn {
  font-family: var(--cond); font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  background: none; border: 1px solid rgba(242, 240, 236, .22);
  color: var(--text); padding: 14px 22px; cursor: pointer;
  transition: border-color .3s ease;
}
.lightbox-btn:hover { border-color: var(--accent); }

/* ============================================================
   WHY
   ============================================================ */
.why { padding: var(--section-y) var(--pad); }
.why .grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(36px, 5vw, 80px);
}
.why-media {
  position: relative; overflow: hidden;
  min-height: clamp(320px, 42vw, 600px);
  background: var(--card);
  border: 1px solid var(--hairline);
}
.why-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.why-media .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,12,.18) 0%, rgba(11,11,12,.05) 50%, rgba(11,11,12,.4) 100%);
}
.why h2 { margin-bottom: clamp(28px, 3vw, 42px); }
.reasons { display: flex; flex-direction: column; }
.reason {
  display: grid; grid-template-columns: auto 1fr; gap: 20px;
  padding: 24px 0;
  border-top: 1px dashed var(--stitch);
}
.reason-no { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: var(--accent); padding-top: 6px; }
.reason h3 { margin-bottom: 8px; font-size: 19px; font-weight: 500; letter-spacing: .01em; color: var(--text); }
.reason p { font-size: 15px; line-height: 1.7; color: var(--text-2); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: var(--section-y) var(--pad); background: var(--bg-alt); border-top: 1px solid rgba(242,240,236,.08); }
.testimonials .eyebrow { margin-bottom: clamp(40px, 5vw, 70px); }
.quotes {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(28px, 3.6vw, 56px);
}
.quote {
  display: flex; flex-direction: column; gap: 24px;
  border-top: 1px solid rgba(198, 155, 94, .4);
  padding-top: 28px;
}
.quote blockquote {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(20px, 1.9vw, 26px); line-height: 1.42; color: #E8E5E0;
  text-wrap: pretty;
}
.quote figcaption { margin-top: auto; display: flex; flex-direction: column; gap: 6px; }
.quote .name { font-size: 15px; color: var(--text); }
.quote .who { font-family: var(--cond); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: var(--section-y) var(--pad); }
.faq .grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(36px, 5vw, 90px); align-items: start;
}
.faq-item { border-bottom: 1px solid var(--hairline-2); }
.faq-q {
  all: unset; box-sizing: border-box; width: 100%;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 24px;
  padding: 26px 0;
  font-size: clamp(16px, 1.5vw, 19px); font-weight: 400; color: var(--text);
  cursor: pointer;
  transition: color .3s ease;
}
.faq-q:hover { color: var(--accent); }
.faq-q:focus-visible { outline: 1px solid var(--accent); outline-offset: 3px; }
.faq-sign { font-family: var(--mono); font-size: 15px; color: var(--accent); flex: none; line-height: 1.4; }
.faq-a { overflow: hidden; }
.faq-a p {
  padding: 0 0 28px; max-width: 62ch;
  font-size: 15px; line-height: 1.75; color: var(--text-2);
  animation: tg-fade .35s ease;
}
.faq-a[hidden] { display: none; }

/* ============================================================
   CONTACT + FORM
   ============================================================ */
.contact {
  position: relative;
  padding: clamp(80px, 12vw, 170px) var(--pad);
  background: var(--bg-alt);
  border-top: 1px solid rgba(242,240,236,.08);
  overflow: hidden;
}
.contact-glow {
  position: absolute; inset: 0;
  background: radial-gradient(70% 60% at 78% 12%, rgba(198,155,94,.12) 0%, transparent 60%);
}
.contact .grid {
  position: relative;
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(40px, 6vw, 100px); align-items: start;
}
.contact h2 {
  margin-bottom: 26px;
  font-family: var(--display); font-weight: 400;
  font-size: clamp(32px, 5vw, 74px); line-height: 1.02; letter-spacing: -.012em; text-wrap: balance;
}
.contact .lead { margin-bottom: 34px; max-width: 44ch; font-size: clamp(16px, 1.5vw, 19px); line-height: 1.7; color: var(--text-body); }
.contact-rows { display: grid; gap: 20px; border-top: 1px dashed var(--stitch-2); padding-top: 28px; }
.contact-rows .row { display: grid; grid-template-columns: 130px 1fr; gap: 16px; align-items: baseline; }
.contact-rows dt { font-family: var(--cond); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted); }
.contact-rows dd { font-size: 16px; color: #D8D4CE; }
.contact-rows dd a { color: #D8D4CE; }
.contact-rows dd a:hover { color: var(--accent); }

.form[hidden] { display: none; }
.form {
  display: grid; gap: 22px;
  border: 1px solid var(--hairline-2);
  background: rgba(11, 11, 12, .5);
  padding: clamp(24px, 3.4vw, 48px);
}
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 22px; }
.field { display: flex; flex-direction: column; gap: 10px; }
.field span {
  font-family: var(--cond); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted);
}
.field input, .field select, .field textarea {
  background: transparent;
  border: 0; border-bottom: 1px solid rgba(242, 240, 236, .2);
  color: var(--text);
  font-family: var(--body); font-size: 16px;
  padding: 10px 0;
}
.field select { background: var(--bg-alt); }
.field select option { background: var(--bg-alt); }
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #6E6A64; }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--accent); outline: none; }
.form-note { font-size: 13px; line-height: 1.6; color: var(--text-muted); }
.form-submit {
  margin-top: 6px; justify-self: start;
  font-size: 12px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--bg); background: var(--accent);
  border: 0; padding: 20px 34px; cursor: pointer;
  transition: background .35s ease;
}
.form-submit:hover { background: var(--accent-hover); }
.form-submit:disabled { opacity: .6; cursor: default; }

.thankyou {
  border: 1px solid rgba(198, 155, 94, .45);
  background: rgba(198, 155, 94, .06);
  padding: clamp(32px, 4vw, 56px);
  animation: tg-fade .4s ease;
}
.thankyou[hidden] { display: none; }
.thankyou h3 { margin-bottom: 14px; font-family: var(--display); font-weight: 400; font-size: 30px; }
.thankyou p { font-size: 16px; line-height: 1.7; color: var(--text-body); }
.form-error { color: #E0A0A0; font-size: 14px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: clamp(56px, 7vw, 96px) var(--pad) 40px; border-top: 1px solid rgba(242,240,236,.1); }
.footer .grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: clamp(32px, 4vw, 60px);
}
.footer-brand { display: flex; flex-direction: column; gap: 20px; }
.footer-brand .lockup { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 40px; height: 40px; object-fit: contain; }
.footer-brand .name {
  font-family: var(--cond); font-weight: 500; font-size: 14px;
  letter-spacing: .32em; text-transform: uppercase; line-height: 1.5;
}
.footer-brand p { max-width: 32ch; font-size: 14px; line-height: 1.7; color: var(--text-muted); }
.footer-col .col-title {
  font-family: var(--cond); font-size: 12px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: var(--text-2); transition: color .3s ease; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  max-width: var(--maxw); margin: clamp(40px, 5vw, 70px) auto 0;
  padding-top: 24px; border-top: 1px dashed var(--stitch);
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
  font-size: 13px; color: var(--text-muted);
}
.footer-bottom .tag { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; }

/* ============================================================
   MOTION
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }

@keyframes tg-kenburns { from { transform: scale(1.04); } to { transform: scale(1.16); } }
@keyframes tg-fade { from { opacity: 0; } to { opacity: 1; } }

body.no-scroll { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-img { animation: none !important; }
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}
