/* Taconic Brass — first-pass design.
   Mood: warm craftsman, magazine-like.
   Palette: warm black, antique brass, off-white, sparing deep red. */

:root {
  --bg: #0e0d0c;
  --bg-elev: #16141210;
  --ink: #f5efe4;
  --ink-dim: #b8aea0;
  --brass: #c9a94a;
  --brass-bright: #e0c068;
  --red: #7a1f1f;
  --rule: #2a2723;
  --max: 1180px;
  --read: 640px;
  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--brass);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
}
a:hover {
  color: var(--brass-bright);
  border-bottom-color: var(--brass-bright);
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.25rem; font-style: italic; color: var(--brass); }

p { margin: 0 0 1.1em; color: var(--ink); }
p.lead {
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--ink-dim);
  font-style: italic;
}

/* ----- header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 13, 12, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}
.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header__logo {
  flex-shrink: 0;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}
.site-header__logo img {
  height: 56px;
  width: auto;
}
.site-nav {
  display: flex;
  gap: 28px;
  font-family: var(--sans);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.site-nav a {
  color: var(--ink);
  border-bottom: none;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--brass-bright);
}

/* ----- hero ----- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(14,13,12,0.55) 0%, rgba(14,13,12,0.15) 35%, rgba(14,13,12,0.85) 100%);
}
.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 28px 96px;
  width: 100%;
}
.hero h1 {
  max-width: 18ch;
  text-shadow: 0 2px 24px rgba(0,0,0,0.55);
}
.hero__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  color: var(--ink);
  max-width: 38ch;
  text-shadow: 0 2px 18px rgba(0,0,0,0.6);
  margin: 0;
}

/* hero variant for inner pages */
.hero--inner { min-height: 48vh; }

/* ----- generic section ----- */
section {
  padding: 96px 28px;
}
.wrap {
  max-width: var(--max);
  margin: 0 auto;
}
.read {
  max-width: var(--read);
  margin: 0 auto;
}
.read--center { text-align: center; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: var(--brass);
  margin-bottom: 14px;
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--brass);
  margin: 28px auto;
  border: 0;
}

/* alternating section background */
section.alt {
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(201,169,74,0.05), transparent 60%),
    #0a0908;
}

/* ----- meet rob panel ----- */
.meet {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: 56px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}
.meet__photo {
  position: relative;
}
.meet__photo img {
  border-radius: 2px;
  filter: saturate(0.95);
  box-shadow:
    0 1px 0 rgba(201,169,74,0.25),
    0 30px 60px -20px rgba(0,0,0,0.7);
}
.meet__photo::before {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px solid var(--brass);
  border-radius: 2px;
  opacity: 0.35;
  pointer-events: none;
}
.meet h2 { margin-bottom: 18px; }

/* ----- video ----- */
.video {
  max-width: 960px;
  margin: 0 auto;
}
.video__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--rule);
  background: #000;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.8);
}
.video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ----- gallery ----- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}
.gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}
.gallery img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 600ms ease;
}
.gallery figure:hover img {
  transform: scale(1.04);
}

/* ----- service list ----- */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 40px;
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  max-width: var(--read);
  margin-inline: auto;
}
.services li {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink);
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
}
.services li::before {
  content: "—";
  color: var(--brass);
  margin-right: 12px;
}

/* ----- rates ----- */
.rates {
  margin: 36px auto 0;
  max-width: 480px;
  border-top: 1px solid var(--rule);
}
.rates__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 22px 4px;
  border-bottom: 1px solid var(--rule);
}
.rates__row .label {
  font-family: var(--serif);
  font-size: 1.25rem;
}
.rates__row .price {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--brass);
}
.rates__note {
  font-size: 0.85rem;
  color: var(--ink-dim);
  font-style: italic;
}

/* ----- contact block ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: var(--max);
  margin: 0 auto;
  align-items: start;
}
.contact-card {
  border: 1px solid var(--rule);
  padding: 36px;
  background: rgba(255,255,255,0.015);
}
.contact-card h3 {
  margin-bottom: 16px;
}
.phone-img {
  display: block;
  max-width: 360px;
  margin: 8px 0 4px;
  user-select: none;
  pointer-events: none;
}
.hours {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-dim);
  font-size: 1.1rem;
}
.map-link {
  display: block;
  margin-top: 18px;
  position: relative;
  border: 1px solid var(--rule);
  overflow: hidden;
}
.map-link img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(0.85) brightness(0.85);
  transition: filter 200ms ease;
}
.map-link:hover img {
  filter: saturate(1) brightness(1);
}
.map-link__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 18px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--brass);
}

/* ----- contact form ----- */
.form {
  display: grid;
  gap: 18px;
}
.form label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-dim);
  margin-bottom: 6px;
}
.form input,
.form textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
  font: inherit;
  padding: 10px 0;
  outline: none;
  transition: border-color 160ms ease;
}
.form input:focus,
.form textarea:focus {
  border-bottom-color: var(--brass);
}
.form textarea {
  min-height: 120px;
  resize: vertical;
}
.form button {
  justify-self: start;
  background: transparent;
  color: var(--brass);
  border: 1px solid var(--brass);
  padding: 14px 28px;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
}
.form button:hover {
  background: var(--brass);
  color: #0e0d0c;
}

/* ----- footer ----- */
.site-footer {
  border-top: 1px solid var(--rule);
  padding: 56px 28px 40px;
  background: #0a0908;
}
.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.site-footer img.foot-logo {
  height: 38px;
  opacity: 0.85;
}
.site-footer .napbirt {
  height: 112px;
  opacity: 0.75;
  filter: invert(1);
  mix-blend-mode: screen;
}
.site-footer small {
  color: var(--ink-dim);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

/* ----- gallery variants ----- */
.gallery--float img {
  object-fit: contain;
  object-position: center bottom;
}
.gallery--2 {
  grid-template-columns: repeat(2, 1fr);
}
.gallery figcaption {
  font-size: 0.8rem;
  color: var(--ink-dim);
  font-style: italic;
  padding: 10px 0 0;
}

/* ----- feature image (full-width with caption) ----- */
.feature-img {
  max-width: var(--max);
  margin: 0 auto;
}
.feature-img img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  object-position: center 30%;
}
.feature-img figcaption {
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-dim);
  font-style: italic;
  padding: 14px 0 0;
  letter-spacing: 0.04em;
}

/* ----- responsive ----- */
@media (max-width: 800px) {
  .site-header__inner { padding: 14px 20px; }
  .site-header__logo img { height: 38px; }
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(14, 13, 12, 0.97);
    border-bottom: 1px solid var(--rule);
    padding: 8px 20px 16px;
    gap: 0;
  }
  .site-nav.open { display: flex; }
  .site-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--rule);
    font-size: 0.85rem;
  }
  .site-nav a:last-child { border-bottom: none; }
  section { padding: 64px 20px; }
  .meet { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .meet__photo { max-width: 280px; margin: 0 auto; }
  .gallery { grid-template-columns: 1fr; }
  .gallery img { height: 280px; }
  .services { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__inner { padding: 60px 20px 72px; }
}
