/* ==========================================================================
   Joe Knows Shirts — Design System
   Concept: "Thread & Ink" — grounded in embroidery/print-shop materials.
   Ink-charcoal base, fabric-cream card surfaces, gold + bronze thread accents.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  /* Color tokens — deep black + champagne gold, warm ivory surfaces */
  --ink: #0d0d0d;
  --ink-soft: #191612;
  --ink-line: rgba(245, 240, 234, 0.11);
  --canvas: #f5f0ea;
  --canvas-white: #faf6f0;
  --canvas-line: rgba(13, 13, 13, 0.09);
  --gold: #c9a96e;
  --gold-bright: #e2c48c;
  --gold-deep: #a9884f;
  --bronze: #8a6a3f;
  --bronze-bright: #a9885a;
  --text-hi: #f6f2ea;
  --text-mid: #c9bfa9;
  --text-lo: #8f8672;
  --text-ink: #191510;
  --text-ink-mid: #5e5340;
  --text-ink-lo: #786b51;

  /* Type — elegant serif display, clean sans body */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', 'SFMono-Regular', monospace;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Layout */
  --container: 1240px;
  --radius-lg: 1.75rem;
  --radius-md: 1rem;
  --radius-sm: 0.5rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text-hi);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin: 0;
}

p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.eyebrow::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--gold-bright);
}

/* ---------------------------------------------------------------------- */
/* Stitched thread divider — signature motif, animates draw-on-scroll     */
/* ---------------------------------------------------------------------- */
.stitch-divider {
  width: 100%;
  height: 20px;
  margin: 0 auto;
  overflow: visible;
}
.stitch-divider path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 8 7;
}
.stitch-divider.on-canvas path { stroke: var(--bronze); opacity: 0.55; }

/* ---------------------------------------------------------------------- */
/* Navigation — "hang tag" floating pill                                  */
/* ---------------------------------------------------------------------- */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1.1rem 1.5rem;
  background: linear-gradient(to bottom, var(--ink) 55%, transparent);
  pointer-events: none;
}
.nav-wrap > * { pointer-events: auto; }
.nav-pill {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  border-radius: 999px;
  padding: 0.6rem 0.7rem 0.6rem 1.2rem;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.6);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-hi);
  white-space: nowrap;
}
.brand-mark {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: conic-gradient(from 210deg, var(--gold) 0deg, var(--bronze) 160deg, var(--gold) 360deg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--ink);
  font-weight: 700;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 0.88rem;
  color: var(--text-mid);
}
.nav-links a { transition: color 0.4s var(--ease-out); }
.nav-links a:hover { color: var(--gold-bright); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.86rem;
  padding: 0.55rem 0.5rem 0.55rem 1.1rem;
  border-radius: 999px;
  transition: transform 0.5s var(--ease-out), background 0.4s var(--ease-out);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-bright); transform: translateY(-1px); }
.nav-cta .icon-chip {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(21,18,15,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.5s var(--ease-out);
}
.nav-cta:hover .icon-chip { transform: translate(2px, -2px); }
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(246,241,231,0.06);
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: '';
  display: block;
  width: 16px; height: 1.5px;
  background: var(--text-hi);
  position: relative;
  transition: transform 0.5s var(--ease-in-out), opacity 0.3s;
}
.nav-toggle span::before { position: absolute; top: -5px; }
.nav-toggle span::after { position: absolute; top: 5px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: rotate(45deg) translate(3.5px, 3.5px); background: var(--text-hi); }
.nav-toggle.open span::after { transform: rotate(-45deg) translate(3.5px, -3.5px); background: var(--text-hi); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 49;
  background: rgba(21,18,15,0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-hi);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.mobile-menu.open a { opacity: 1; transform: translateY(0); }

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

/* ---------------------------------------------------------------------- */
/* Hero                                                                    */
/* ---------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 4.5rem 0 6rem;
  overflow: hidden;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--ink);
}
.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Legibility scrim — strong enough that hero text reads clearly over any frame of the video */
.hero-video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(13,13,13,0.88) 0%, rgba(13,13,13,0.72) 42%, rgba(13,13,13,0.55) 65%, rgba(13,13,13,0.62) 100%),
    linear-gradient(to top, rgba(13,13,13,0.75) 0%, rgba(13,13,13,0.15) 30%, rgba(13,13,13,0.35) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: -20% -10% auto 40%;
  height: 65%;
  z-index: 1;
  background: radial-gradient(ellipse 55% 100% at 70% 0%, rgba(201,138,61,0.10), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
.hero-copy { max-width: 46ch; }
.hero h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.75rem);
  color: var(--text-hi);
  max-width: 15ch;
  margin: 1.1rem 0 1.4rem;
}
.hero h1 .accent { color: var(--gold-bright); font-style: italic; }
.hero .lede {
  max-width: 50ch;
  color: var(--text-mid);
  font-size: 1.1rem;
  line-height: 1.65;
}
.hero-ctas {
  display: flex;
  gap: 0.9rem;
  justify-content: flex-start;
  margin-top: 2.2rem;
  flex-wrap: wrap;
}

/* ---------------------------------------------------------------------- */
/* Hero swatch panel — photo frame with a floating pricing card overlay   */
/* ---------------------------------------------------------------------- */
.hero-swatch {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-swatch .tag-card {
  width: 100%;
  max-width: 320px;
  transform: rotate(-2deg);
  backdrop-filter: blur(6px);
}
.hero-swatch .tag-card-inner {
  background: rgba(25, 22, 18, 0.82);
  backdrop-filter: blur(10px);
}
.swatch-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.4rem;
}
.swatch-row:not(:first-child) {
  border-top: 1px dashed var(--ink-line);
  padding-top: 0.9rem;
  margin-top: 0.9rem;
}
.swatch-row .label { font-size: 0.92rem; color: var(--text-mid); }
.swatch-row .value { font-family: var(--font-mono); font-size: 0.92rem; color: var(--gold-bright); }
.swatch-badge {
  position: absolute;
  top: -14px; right: 18px;
  z-index: 4;
  background: var(--bronze);
  color: var(--canvas-white);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  transform: rotate(4deg);
  box-shadow: 0 10px 20px -8px rgba(163,64,46,0.6);

}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.55rem;
  border-radius: 999px;
  transition: transform 0.5s var(--ease-out), background 0.4s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(201,138,61,0.45); }
.btn-ghost { background: transparent; border: 1px solid var(--ink-line); color: var(--text-hi); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-2px); }
.btn-on-canvas.btn-ghost { border-color: var(--canvas-line); color: var(--text-ink); }
.btn-on-canvas.btn-ghost:hover { border-color: var(--bronze); color: var(--bronze); }
.btn .icon-chip {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(21,18,15,0.14);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.5s var(--ease-out);
}
.btn-ghost .icon-chip { background: rgba(246,241,231,0.08); }
.btn:hover .icon-chip { transform: translate(2px,-2px); }

.hero-meta {
  display: flex;
  justify-content: flex-start;
  gap: 2.4rem;
  margin-top: 3.2rem;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-lo);
  letter-spacing: 0.02em;
}
.hero-meta span { color: var(--gold-bright); }

/* ---------------------------------------------------------------------- */
/* Sections / spacing                                                     */
/* ---------------------------------------------------------------------- */
.section { padding: 5.5rem 0; }
.section-canvas { background: var(--canvas); color: var(--text-ink); }
.section-ink { background: var(--ink); }
.section-head {
  max-width: 620px;
  margin-bottom: 3rem;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(1.9rem, 3.3vw, 2.75rem);
  margin-top: 0.9rem;
}
.section-ink .section-head h2 { color: var(--text-hi); }
.section-canvas .section-head h2 { color: var(--text-ink); }
.section-head p {
  margin-top: 1rem;
  font-size: 1.05rem;
  line-height: 1.65;
}
.section-ink .section-head p { color: var(--text-mid); }
.section-canvas .section-head p { color: var(--text-ink-mid); }

/* ---------------------------------------------------------------------- */
/* Double-bezel card (fabric-tag)                                         */
/* ---------------------------------------------------------------------- */
.tag-card {
  background: rgba(246,241,231,0.03);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-lg);
  padding: 0.4rem;
  position: relative;
}
.tag-card-inner {
  background: var(--ink-soft);
  border-radius: calc(var(--radius-lg) - 0.4rem);
  padding: 2rem;
  height: 100%;
  box-shadow: inset 0 1px 0 rgba(246,241,231,0.06);
  position: relative;
}
.section-canvas .tag-card { background: rgba(21,18,15,0.03); border-color: var(--canvas-line); }
.section-canvas .tag-card-inner { background: var(--canvas-white); box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 1px 2px rgba(21,18,15,0.04); }

/* punch-hole corner nod to a swing tag */
.tag-card-inner::before {
  content: '';
  position: absolute;
  top: 1.1rem; right: 1.1rem;
  width: 7px; height: 7px;
  border-radius: 50%;
  border: 1.5px solid var(--text-lo);
  opacity: 0.4;
}
.section-canvas .tag-card-inner::before { border-color: var(--text-ink-lo); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .card-grid, .card-grid.cols-2, .card-grid.cols-4 { grid-template-columns: 1fr; } }

.card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(155deg, rgba(201,138,61,0.18), rgba(163,64,46,0.10));
  border: 1px solid var(--ink-line);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.3rem;
}
.section-canvas .card-icon { border-color: var(--canvas-line); }
.card-icon svg { width: 20px; height: 20px; stroke: var(--gold-bright); }
.section-canvas .card-icon svg { stroke: var(--bronze); }

.tag-card h3 { padding: 0 0.6rem; font-size: 1.2rem; margin-top: 0.6rem; }
.tag-card-inner h3 { padding: 0; }
.section-ink .tag-card-inner h3 { color: var(--text-hi); }
.section-canvas .tag-card-inner h3 { color: var(--text-ink); }
.tag-card-inner p { margin-top: 0.7rem; font-size: 0.96rem; line-height: 1.6; }
.section-ink .tag-card-inner p { color: var(--text-mid); }
.section-canvas .tag-card-inner p { color: var(--text-ink-mid); }

.mono-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-lo);
}
.section-canvas .mono-label { color: var(--text-ink-lo); }

/* ---------------------------------------------------------------------- */
/* Price strip                                                            */
/* ---------------------------------------------------------------------- */
.price-strip {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: 1rem;
  font-family: var(--font-mono);
}
.price-strip .num { font-size: 1.7rem; color: var(--gold-bright); font-weight: 500; }
.section-canvas .price-strip .num { color: var(--bronze); }
.price-strip .unit { font-size: 0.78rem; color: var(--text-lo); }
.section-canvas .price-strip .unit { color: var(--text-ink-lo); }

/* ---------------------------------------------------------------------- */
/* Steps (numbered — only used for genuine sequences)                     */
/* ---------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gold-bright);
  border: 1px solid var(--ink-line);
  border-radius: 999px;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}

/* ---------------------------------------------------------------------- */
/* Directory / listing cards                                              */
/* ---------------------------------------------------------------------- */
.listing {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 1.5rem;
  padding: 1.9rem;
  border-radius: var(--radius-md);
  background: var(--canvas-white);
  border: 1px solid var(--canvas-line);
  margin-bottom: 1rem;
}
.listing.featured { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.listing-rank {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-ink-lo);
  padding-top: 0.3rem;
}
.listing h3 { font-size: 1.2rem; color: var(--text-ink); }
.listing .services-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-top: 0.6rem; }
.tag-chip {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(163,64,46,0.08);
  color: var(--bronze);
  border: 1px solid rgba(163,64,46,0.18);
}
.listing p.summary { margin-top: 0.8rem; color: var(--text-ink-mid); font-size: 0.95rem; line-height: 1.6; max-width: 62ch; }
.listing .meta-line { margin-top: 0.7rem; font-size: 0.85rem; color: var(--text-ink-lo); display: flex; gap: 1.2rem; flex-wrap: wrap; }
.listing-cta { align-self: center; }
@media (max-width: 720px) {
  .listing { grid-template-columns: 1fr; }
  .listing-cta { justify-self: start; }
}

/* ---------------------------------------------------------------------- */
/* FAQ                                                                     */
/* ---------------------------------------------------------------------- */
.faq-item {
  border-top: 1px solid var(--ink-line);
  padding: 1.6rem 0;
}
.section-canvas .faq-item { border-color: var(--canvas-line); }
.faq-item:last-child { border-bottom: 1px solid var(--ink-line); }
.section-canvas .faq-item:last-child { border-bottom-color: var(--canvas-line); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--text-hi);
}
.section-canvas .faq-item summary { color: var(--text-ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .plus { font-family: var(--font-mono); color: var(--gold-bright); transition: transform 0.4s var(--ease-out); flex-shrink: 0; }
.section-canvas .faq-item .plus { color: var(--bronze); }
.faq-item[open] .plus { transform: rotate(45deg); }
.faq-item .answer { margin-top: 0.9rem; color: var(--text-mid); font-size: 0.97rem; line-height: 1.65; max-width: 62ch; }
.section-canvas .faq-item .answer { color: var(--text-ink-mid); }

/* ---------------------------------------------------------------------- */
/* Lead form                                                               */
/* ---------------------------------------------------------------------- */
.lead-card {
  background: var(--canvas-white);
  border: 1px solid var(--canvas-line);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-ink-lo);
  margin-bottom: 0.4rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--canvas);
  border: 1px solid var(--canvas-line);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-ink);
  transition: border-color 0.4s var(--ease-out);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--bronze);
}
.field:not(:last-child) { margin-bottom: 1rem; }
.form-submit {
  width: 100%;
  justify-content: center;
  background: var(--bronze);
  color: var(--canvas-white);
  border: none;
  cursor: pointer;
  margin-top: 0.6rem;
}
.form-submit:hover { background: var(--bronze-bright); }
.form-note { margin-top: 1rem; font-size: 0.82rem; color: var(--text-ink-lo); text-align: center; }
.form-status { margin-top: 0.9rem; font-size: 0.9rem; text-align: center; display: none; }
.form-status.ok { color: #3a7a4c; display: block; }
.form-status.err { color: var(--bronze); display: block; }

/* ---------------------------------------------------------------------- */
/* Breadcrumb                                                              */
/* ---------------------------------------------------------------------- */
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--text-lo);
  padding: 1.6rem 0 0;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.section-canvas .breadcrumb { color: var(--text-ink-lo); }
.breadcrumb a:hover { color: var(--gold-bright); }
.section-canvas .breadcrumb a:hover { color: var(--bronze); }

/* ---------------------------------------------------------------------- */
/* Page hero (secondary pages — smaller than homepage hero)               */
/* ---------------------------------------------------------------------- */
.page-hero { padding: 2.2rem 0 4rem; }
.page-hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  color: var(--text-hi);
  max-width: 26ch;
  margin-top: 0.9rem;
}
.page-hero .lede { max-width: 62ch; color: var(--text-mid); font-size: 1.05rem; margin-top: 1.1rem; line-height: 1.65; }

/* ---------------------------------------------------------------------- */
/* Guide / article                                                        */
/* ---------------------------------------------------------------------- */
.article-meta {
  display: flex;
  gap: 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--text-lo);
  margin-top: 1rem;
}
.article-body { max-width: 700px; margin: 0 auto; color: var(--text-ink); font-size: 1.05rem; line-height: 1.75; }
.article-body h2 { font-size: 1.5rem; margin-top: 2.4rem; margin-bottom: 0.9rem; color: var(--text-ink); }
.article-body p { margin-bottom: 1.2rem; }
.article-body p:first-of-type { font-size: 1.15rem; color: var(--text-ink-mid); }
.article-body strong { color: var(--bronze); font-weight: 600; }

/* ---------------------------------------------------------------------- */
/* Footer                                                                  */
/* ---------------------------------------------------------------------- */
.site-footer { background: var(--ink); border-top: 1px solid var(--ink-line); padding: 4rem 0 2.5rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-col h4 { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-lo); margin-bottom: 1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { color: var(--text-mid); font-size: 0.9rem; transition: color 0.4s var(--ease-out); }
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--ink-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-lo);
}
.footer-disclosure { max-width: 640px; font-size: 0.8rem; color: var(--text-lo); line-height: 1.6; margin-top: 1.2rem; }

.credit-bar {
  margin-top: 2.4rem;
  padding-top: 2.2rem;
  border-top: 1px solid var(--ink-line);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  text-align: center;
}
.credit-bar .credit-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-lo);
}
.credit-bar a.credit-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--gold-bright);
  transition: color 0.4s var(--ease-out), letter-spacing 0.4s var(--ease-out);
}
.credit-bar a.credit-link:hover { color: var(--gold); letter-spacing: 0.01em; }
.credit-bar a.credit-link .credit-mark {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.62rem;
  color: var(--gold-bright);
  flex-shrink: 0;
}
@media (max-width: 560px) {
  .credit-bar { flex-direction: column; gap: 0.5rem; }
}

/* ---------------------------------------------------------------------- */
/* City / service pill grid (index-style link lists)                      */
/* ---------------------------------------------------------------------- */
.pill-grid { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.pill-link {
  font-size: 0.88rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--ink-line);
  color: var(--text-mid);
  transition: border-color 0.4s var(--ease-out), color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.pill-link:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-2px); }
.section-canvas .pill-link { border-color: var(--canvas-line); color: var(--text-ink-mid); }
.section-canvas .pill-link:hover { border-color: var(--bronze); color: var(--bronze); }

/* ---------------------------------------------------------------------- */
/* Photography — service photo cards + hero photo frame                   */
/* ---------------------------------------------------------------------- */
.photo-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ink-soft);
}
.photo-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.photo-card:hover img { transform: scale(1.06); }
.photo-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.88) 0%, rgba(13,13,13,0.35) 45%, rgba(13,13,13,0) 70%);
  pointer-events: none;
}
.photo-card .photo-card-label {
  position: absolute; left: 1.1rem; right: 1.1rem; bottom: 1rem;
  z-index: 2;
  color: var(--text-hi);
}
.photo-card .photo-card-label h3 { font-size: 1.05rem; color: var(--text-hi); margin: 0; }
.photo-card .photo-card-label .price-strip { margin-top: 0.35rem; }
.photo-card .photo-card-label .price-strip .num { font-size: 1.05rem; }

.page-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 21 / 8;
  margin-top: 1.5rem;
  border: 1px solid var(--ink-line);
}
.page-banner img { width: 100%; height: 100%; object-fit: cover; }
.page-banner::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(13,13,13,0.75) 15%, rgba(13,13,13,0.05) 65%);
}
@media (max-width: 640px) { .page-banner { aspect-ratio: 4 / 3; } }

.thumb-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--ink-line);
}
.thumb-frame img { width: 100%; height: 100%; object-fit: cover; }

.combo-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  align-items: flex-start;
}
@media (max-width: 780px) {
  .combo-hero-grid { grid-template-columns: 1fr; }
}
.reveal { opacity: 0; transform: translateY(28px); }

/* ---------------------------------------------------------------------- */
/* Homepage intro — elegant wordmark reveal, GSAP-driven with CSS failsafe */
/* ---------------------------------------------------------------------- */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  /* Hard failsafe: disappears on its own even if JS/GSAP never loads */
  animation: intro-failsafe 0.01s linear 4.2s forwards;
}
@keyframes intro-failsafe {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}
.intro-mark {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0;
}
.intro-word {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.1rem, 6.4vw, 3.8rem);
  color: var(--gold-bright);
  margin: 0;
  letter-spacing: 0.01em;
}
.intro-line { width: 130px; height: 4px; overflow: visible; }
.intro-line path { fill: none; stroke: var(--gold); stroke-width: 1; }
body.intro-active { overflow: hidden; }
@media (prefers-reduced-motion: reduce) {
  .intro-overlay { display: none; }
}
.text-center { text-align: center; }
.mt-3 { margin-top: 3rem; }
