/* ============================================================================
   v32-velluto — Velvet showroom · Milanese fabric house
   Heavy fabric textures · Emerald + dusty rose + brass · Plush, tactile, disciplined
   ============================================================================ */

:root {
  --emerald: #2A5246;
  --emerald-deep: #1F3D34;
  --rose: #B58589;
  --rose-soft: #C9A0A3;
  --brass: #A98641;
  --brass-light: #C9A05A;
  --ivory: #F2EBDA;
  --ivory-warm: #ECE3CC;
  --charcoal: #2C231F;
  --champagne: #D9C896;
  --burgundy: #5D2C32;

  --shadow-drape:
    0 1px 0 rgba(255,255,255,0.4) inset,
    0 -1px 0 rgba(44,35,31,0.06) inset,
    0 6px 14px -8px rgba(44,35,31,0.18),
    0 22px 40px -18px rgba(44,35,31,0.28),
    0 38px 70px -30px rgba(42,82,70,0.22);
  --shadow-drape-deep:
    0 1px 0 rgba(255,255,255,0.4) inset,
    0 8px 18px -10px rgba(44,35,31,0.22),
    0 30px 56px -22px rgba(44,35,31,0.32),
    0 50px 90px -36px rgba(42,82,70,0.30);

  /* Velvet pile texture: dense radial spots at low opacity */
  --velvet-pile:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,0.10) 0 1px, transparent 1.5px),
    radial-gradient(circle at 38% 42%, rgba(0,0,0,0.10) 0 1px, transparent 1.5px),
    radial-gradient(circle at 67% 71%, rgba(255,255,255,0.08) 0 1px, transparent 1.5px),
    radial-gradient(circle at 88% 23%, rgba(0,0,0,0.09) 0 1px, transparent 1.5px),
    radial-gradient(circle at 24% 77%, rgba(255,255,255,0.07) 0 1px, transparent 1.5px),
    radial-gradient(circle at 56% 8%, rgba(0,0,0,0.08) 0 1px, transparent 1.5px),
    radial-gradient(circle at 82% 64%, rgba(255,255,255,0.06) 0 1px, transparent 1.5px),
    radial-gradient(circle at 6% 52%, rgba(0,0,0,0.07) 0 1px, transparent 1.5px);
  --velvet-pile-size: 11px 11px, 13px 13px, 9px 9px, 14px 14px, 10px 10px, 12px 12px, 8px 8px, 11px 11px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Spectral', 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--ivory);
  background-image:
    radial-gradient(ellipse 1200px 600px at 80% -10%, rgba(181,133,137,0.12), transparent 60%),
    radial-gradient(ellipse 900px 500px at 5% 110%, rgba(42,82,70,0.10), transparent 60%);
  padding-bottom: 140px;
  overflow-x: hidden;
}

/* fabric weave on body */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, rgba(44,35,31,0.025) 0 0.5px, transparent 0.5px 2px),
    repeating-linear-gradient(90deg, rgba(44,35,31,0.020) 0 0.5px, transparent 0.5px 2px);
  z-index: 0;
}

main, nav, footer { position: relative; z-index: 1; }

/* ─── Typography ──────────────────────────────────────────────────────── */

h1, h2, h3, h4 {
  font-family: 'DM Serif Display', 'Playfair Display', serif;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--charcoal);
}

h1 { font-size: clamp(48px, 8vw, 104px); line-height: 0.98; letter-spacing: -0.025em; }
h2 { font-size: clamp(32px, 4.6vw, 60px); line-height: 1.06; letter-spacing: -0.015em; }
h3 { font-size: clamp(22px, 2.4vw, 30px); line-height: 1.18; }
h4 { font-size: 18px; line-height: 1.25; }

.script {
  font-family: 'Italianno', cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6em;
  color: var(--rose);
  line-height: 0.9;
  vertical-align: -0.05em;
  letter-spacing: 0.01em;
}

.eyebrow {
  font-family: 'Spectral', serif;
  font-weight: 500;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--brass);
}

a { color: var(--emerald); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; text-decoration-color: rgba(42,82,70,0.35); transition: text-decoration-color 0.3s; }
a:hover { text-decoration-color: var(--emerald); }

/* ─── Layout ──────────────────────────────────────────────────────────── */

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.wrap-tight { max-width: 880px; margin: 0 auto; padding: 0 32px; }

section { padding: 96px 0; }
section.tight { padding: 64px 0; }

/* ─── Nav ─────────────────────────────────────────────────────────────── */

nav.site {
  padding: 22px 32px;
  background: rgba(242,235,218,0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(169,134,65,0.20);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

nav.site .brand {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--emerald);
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 6px;
  letter-spacing: -0.01em;
}
nav.site .brand .amp {
  font-family: 'Italianno', cursive;
  color: var(--rose);
  font-size: 32px;
  line-height: 0.6;
}

nav.site ul {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}
nav.site a {
  font-family: 'Spectral', serif;
  font-size: 14px;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
}
nav.site a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1px;
  background: var(--brass);
  transition: right 0.4s ease;
}
nav.site a:hover::after, nav.site a.active::after { right: 0; }
nav.site a.active { color: var(--emerald); }

@media (max-width: 720px) {
  nav.site { flex-direction: column; align-items: flex-start; gap: 12px; padding: 18px 22px; }
  nav.site ul { gap: 18px; font-size: 13px; }
}

/* ─── Hero ─────────────────────────────────────────────────────────────── */

.hero {
  padding: 80px 32px 96px;
  position: relative;
}

.velvet-panel {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-deep) 60%, #173028 100%);
  border-radius: 4px;
  padding: clamp(56px, 8vw, 120px) clamp(36px, 6vw, 96px);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.05) inset,
    0 0 0 1px rgba(169,134,65,0.30),
    0 0 0 6px var(--ivory),
    0 0 0 7px rgba(169,134,65,0.50),
    0 30px 70px -28px rgba(23,48,40,0.55),
    0 50px 100px -40px rgba(23,48,40,0.45);
}
.velvet-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--velvet-pile);
  background-size: var(--velvet-pile-size);
  opacity: 0.85;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.velvet-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 30% 20%, rgba(255,255,255,0.10), transparent 60%),
    radial-gradient(ellipse 70% 60% at 80% 90%, rgba(0,0,0,0.40), transparent 70%);
  pointer-events: none;
}

.velvet-panel > * { position: relative; z-index: 2; }

.hero .wordmark {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(56px, 11vw, 152px);
  line-height: 0.92;
  color: var(--ivory);
  letter-spacing: -0.025em;
  margin-bottom: 36px;
  animation: drape-in 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero .wordmark .amp {
  font-family: 'Italianno', cursive;
  color: var(--rose);
  font-style: normal;
  letter-spacing: 0;
  font-size: 1.0em;
  line-height: 0.6;
  display: inline-block;
  vertical-align: 0.1em;
}
.hero .wordmark .to {
  font-style: italic;
  color: var(--champagne);
  font-size: 0.78em;
}

.hero .proposition {
  font-family: 'Spectral', serif;
  font-size: clamp(18px, 1.7vw, 22px);
  font-style: italic;
  font-weight: 300;
  color: var(--ivory-warm);
  max-width: 600px;
  margin-bottom: 44px;
  line-height: 1.55;
  animation: drape-in 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.18s both;
}

.hero .meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 44px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne);
  animation: drape-in 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s both;
}
.hero .meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--brass); display: inline-block; }

.cta-row { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; animation: drape-in 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.34s both; }

/* ─── Buttons ─────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Spectral', serif;
  font-size: 13px;
  font-style: italic;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 30px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
}

.btn-brass {
  background: var(--ivory);
  color: var(--charcoal);
  border: 1px solid var(--brass);
  box-shadow:
    0 0 0 4px rgba(242,235,218,0.4),
    0 0 0 5px rgba(169,134,65,0.30),
    0 8px 18px -10px rgba(44,35,31,0.30);
}
.btn-brass::before, .btn-brass::after {
  content: '';
  position: absolute;
  width: 8px; height: 8px;
  border: 1px solid var(--brass);
}
.btn-brass::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.btn-brass::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.btn-brass:hover { background: var(--brass); color: var(--ivory); transform: translateY(-2px); }
.btn-brass .arrow { transition: transform 0.3s; font-style: normal; }
.btn-brass:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  color: var(--ivory);
  border-bottom: 1px solid var(--brass);
  padding: 8px 0;
}
.btn-ghost:hover { color: var(--rose); }

/* ─── Velvet card with selvedge + brass corners ─────────────────────── */

.velvet-card {
  background: var(--ivory);
  background-image:
    linear-gradient(0deg, rgba(242,235,218,0.4), rgba(242,235,218,0.4)),
    var(--velvet-pile);
  background-size: 100% 100%, var(--velvet-pile-size);
  padding: 40px 32px 36px;
  position: relative;
  border: 1px solid rgba(169,134,65,0.22);
  border-radius: 2px;
  box-shadow: var(--shadow-drape);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s;
}
.velvet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-drape-deep); }

/* selvedge dashed strip at top */
.velvet-card .selvedge {
  position: absolute;
  top: 8px;
  left: 32px; right: 32px;
  height: 8px;
  background-image:
    repeating-linear-gradient(90deg, var(--brass) 0 4px, transparent 4px 8px),
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(169,134,65,0.4) 3px 4px);
  background-size: 8px 100%, 100% 100%;
  background-repeat: repeat-x, no-repeat;
  opacity: 0.55;
}

/* brass corner ornaments */
.velvet-card .corner {
  position: absolute;
  width: 22px; height: 22px;
  pointer-events: none;
}
.velvet-card .corner svg { width: 100%; height: 100%; display: block; }
.velvet-card .corner.tl { top: 6px; left: 6px; }
.velvet-card .corner.tr { top: 6px; right: 6px; transform: scaleX(-1); }
.velvet-card .corner.bl { bottom: 6px; left: 6px; transform: scaleY(-1); }
.velvet-card .corner.br { bottom: 6px; right: 6px; transform: scale(-1, -1); }

.velvet-card .num {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 84px;
  line-height: 0.8;
  color: var(--rose);
  position: absolute;
  top: 24px;
  right: 32px;
  letter-spacing: -0.04em;
  opacity: 0.85;
}

.velvet-card .cat {
  font-family: 'Spectral', serif;
  font-size: 11px;
  font-style: italic;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 8px;
  margin-bottom: 12px;
}

.velvet-card .name {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  line-height: 1.12;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.velvet-card .blurb {
  font-size: 15px;
  line-height: 1.55;
  color: var(--charcoal);
  opacity: 0.82;
  margin-bottom: 18px;
}

.velvet-card .price {
  font-family: 'Spectral', serif;
  font-size: 13px;
  font-style: italic;
  letter-spacing: 0.10em;
  color: var(--emerald);
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(169,134,65,0.25);
}
.velvet-card .price strong { font-style: normal; font-weight: 500; color: var(--burgundy); }

.velvet-card .visual {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-deep));
  border-radius: 2px;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(169,134,65,0.35),
    0 0 0 5px var(--ivory),
    0 0 0 6px rgba(169,134,65,0.25);
}
.velvet-card .visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--velvet-pile);
  background-size: var(--velvet-pile-size);
  opacity: 0.7;
  mix-blend-mode: overlay;
}
.velvet-card .visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.18), transparent 55%),
    radial-gradient(ellipse at 75% 80%, rgba(0,0,0,0.30), transparent 60%);
}
.velvet-card .visual .glyph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: 'Italianno', cursive;
  color: var(--champagne);
  font-size: 68px;
  z-index: 2;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.velvet-card .visual.rose { background: linear-gradient(135deg, var(--rose), #97676b); }
.velvet-card .visual.burgundy { background: linear-gradient(135deg, var(--burgundy), #3e1e22); }
.velvet-card .visual.brass { background: linear-gradient(135deg, var(--brass), #7e6230); }
.velvet-card .visual.charcoal { background: linear-gradient(135deg, var(--charcoal), #1a1411); }

/* ─── Grids ───────────────────────────────────────────────────────────── */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 980px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; gap: 24px; }
}

/* drape-in stagger */
.drape > * { animation: drape-in 1s cubic-bezier(0.2, 0.8, 0.2, 1) both; }
.drape > *:nth-child(1) { animation-delay: 0.05s; }
.drape > *:nth-child(2) { animation-delay: 0.13s; }
.drape > *:nth-child(3) { animation-delay: 0.21s; }
.drape > *:nth-child(4) { animation-delay: 0.29s; }
.drape > *:nth-child(5) { animation-delay: 0.37s; }
.drape > *:nth-child(6) { animation-delay: 0.45s; }
.drape > *:nth-child(7) { animation-delay: 0.53s; }
.drape > *:nth-child(8) { animation-delay: 0.61s; }
.drape > *:nth-child(9) { animation-delay: 0.69s; }
.drape > *:nth-child(10) { animation-delay: 0.77s; }
.drape > *:nth-child(n+11) { animation-delay: 0.85s; }

@keyframes drape-in {
  0% { opacity: 0; transform: translateY(28px) skewY(1.5deg); }
  60% { opacity: 0.9; }
  100% { opacity: 1; transform: translateY(0) skewY(0); }
}

/* ─── What we make / chips as fabric swatches ────────────────────────── */

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head .right { font-size: 17px; line-height: 1.65; opacity: 0.8; }
@media (max-width: 820px) { .section-head { grid-template-columns: 1fr; gap: 24px; } }

.swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
}

.swatch {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.swatch .fabric {
  width: 78px;
  height: 78px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(169,134,65,0.35),
    0 0 0 4px var(--ivory),
    0 0 0 5px rgba(169,134,65,0.30),
    0 12px 22px -10px rgba(44,35,31,0.30);
  background: var(--emerald);
}
.swatch .fabric::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--velvet-pile);
  background-size: var(--velvet-pile-size);
  mix-blend-mode: overlay;
  opacity: 0.85;
}
.swatch .fabric::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.16), transparent 55%),
    radial-gradient(ellipse at 75% 80%, rgba(0,0,0,0.25), transparent 60%);
}
.swatch .fabric.f-rose { background: var(--rose); }
.swatch .fabric.f-burgundy { background: var(--burgundy); }
.swatch .fabric.f-brass { background: var(--brass); }
.swatch .fabric.f-champagne { background: var(--champagne); }
.swatch .fabric.f-charcoal { background: var(--charcoal); }
.swatch .fabric.f-emerald-deep { background: var(--emerald-deep); }
.swatch .fabric.f-rose-soft { background: var(--rose-soft); }

.swatch .label {
  font-family: 'Spectral', serif;
  font-size: 12px;
  font-style: italic;
  letter-spacing: 0.10em;
  color: var(--charcoal);
  opacity: 0.8;
}

/* filter chips */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 56px;
}
.filters .chip {
  font-family: 'Spectral', serif;
  font-size: 12px;
  font-style: italic;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 18px;
  background: var(--ivory);
  border: 1px solid rgba(169,134,65,0.35);
  color: var(--charcoal);
  cursor: default;
  border-radius: 999px;
  transition: all 0.3s;
}
.filters .chip.active { background: var(--emerald); color: var(--ivory); border-color: var(--emerald); }
.filters .chip:hover:not(.active) { background: rgba(169,134,65,0.14); }

/* ─── Testimonial ─────────────────────────────────────────────────────── */

.quote-block {
  background: linear-gradient(180deg, rgba(181,133,137,0.10), rgba(217,200,150,0.08));
  border-left: 2px solid var(--brass);
  padding: 56px clamp(28px, 6vw, 84px);
  position: relative;
  margin: 64px 0;
  box-shadow: var(--shadow-drape);
}
.quote-block::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 24px;
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 160px;
  line-height: 1;
  color: var(--rose);
  opacity: 0.40;
}
.quote-block .body {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.32;
  color: var(--charcoal);
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.quote-block .attr {
  font-family: 'Spectral', serif;
  font-size: 13px;
  font-style: italic;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
}

/* ─── Footer ──────────────────────────────────────────────────────────── */

footer.site {
  padding: 84px 32px 64px;
  border-top: 1px solid rgba(169,134,65,0.22);
  color: var(--charcoal);
  margin-top: 64px;
  background: linear-gradient(180deg, transparent, rgba(217,200,150,0.18));
}
footer.site .row {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
footer.site h4 {
  font-family: 'Spectral', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 14px;
}
footer.site .mark {
  font-family: 'DM Serif Display', serif;
  font-size: 38px;
  line-height: 0.9;
  color: var(--emerald);
  margin-bottom: 12px;
}
footer.site .mark .amp { font-family: 'Italianno', cursive; color: var(--rose); font-size: 1.1em; }
footer.site ul { list-style: none; }
footer.site ul li { margin-bottom: 6px; font-size: 14px; }
footer.site .micro { font-size: 12px; opacity: 0.7; margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(169,134,65,0.20); letter-spacing: 0.06em; }
@media (max-width: 720px) { footer.site .row { grid-template-columns: 1fr; gap: 24px; } }

/* ─── Forms ───────────────────────────────────────────────────────────── */

form.studio {
  display: grid;
  gap: 32px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: 'Spectral', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
}
.field input, .field select, .field textarea {
  font-family: 'Spectral', serif;
  font-size: 17px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--brass);
  padding: 10px 2px 14px;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.3s, padding 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-bottom-color: var(--emerald);
  border-bottom-width: 2px;
  padding-bottom: 13px;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(44,35,31,0.40); font-style: italic; }
.field textarea { resize: vertical; min-height: 140px; line-height: 1.55; }
.field-half { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 620px) { .field-half { grid-template-columns: 1fr; gap: 24px; } }

.field input[type="file"] {
  padding-top: 16px;
  font-style: italic;
  font-size: 14px;
  color: rgba(44,35,31,0.65);
}

/* ─── Process stages ──────────────────────────────────────────────────── */

.stages { display: grid; gap: 28px; }
.stage {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 32px;
  padding: 36px 36px 36px 32px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-deep));
  color: var(--ivory);
  position: relative;
  border-radius: 2px;
  box-shadow:
    0 0 0 1px rgba(169,134,65,0.30),
    0 0 0 5px var(--ivory),
    0 0 0 6px rgba(169,134,65,0.25),
    var(--shadow-drape);
  overflow: hidden;
}
.stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--velvet-pile);
  background-size: var(--velvet-pile-size);
  opacity: 0.85;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.stage > * { position: relative; z-index: 2; }

.stage:nth-child(2n) { background: linear-gradient(135deg, var(--burgundy), #3e1e22); }
.stage:nth-child(3n) { background: linear-gradient(135deg, var(--rose), #97676b); }
.stage:nth-child(4n) { background: linear-gradient(135deg, var(--brass), #7e6230); }

.stage .num {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 84px;
  line-height: 0.8;
  color: var(--champagne);
  letter-spacing: -0.04em;
  align-self: start;
}
.stage h3 {
  color: var(--ivory);
  font-size: 28px;
  margin-bottom: 10px;
}
.stage p {
  font-family: 'Spectral', serif;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(242,235,218,0.90);
  font-style: italic;
}
.stage .timing {
  font-family: 'Spectral', serif;
  font-size: 12px;
  font-style: italic;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne);
  align-self: start;
  white-space: nowrap;
  padding-top: 8px;
}
@media (max-width: 720px) {
  .stage { grid-template-columns: 64px 1fr; gap: 18px; padding: 28px 24px; }
  .stage .num { font-size: 60px; }
  .stage .timing { grid-column: 1 / -1; padding-top: 0; }
}

/* ─── About bits ──────────────────────────────────────────────────────── */

.portrait-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--rose), #97676b);
  box-shadow:
    0 0 0 1px rgba(169,134,65,0.35),
    0 0 0 8px var(--ivory),
    0 0 0 9px rgba(169,134,65,0.40),
    0 0 0 14px rgba(217,200,150,0.40),
    var(--shadow-drape-deep);
  overflow: hidden;
  border-radius: 2px;
}
.portrait-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--velvet-pile);
  background-size: var(--velvet-pile-size);
  opacity: 0.85;
  mix-blend-mode: overlay;
}
.portrait-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 35% 30%, rgba(255,255,255,0.18), transparent 55%),
    radial-gradient(ellipse at 70% 85%, rgba(0,0,0,0.32), transparent 65%);
}
.portrait-frame .label {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Italianno', cursive;
  font-size: 56px;
  line-height: 0.9;
  color: var(--ivory);
  z-index: 3;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.bio { font-size: 17px; line-height: 1.75; }
.bio p { margin-bottom: 18px; }
.bio p::first-letter {
  font-family: 'DM Serif Display', serif;
  font-size: 3.6em;
  float: left;
  line-height: 0.85;
  margin: 6px 12px 0 0;
  color: var(--rose);
  font-style: italic;
}
.bio p + p::first-letter {
  font-size: 1em; float: none; line-height: inherit; margin: 0; color: inherit; font-style: inherit; font-family: inherit;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

.step {
  background: var(--ivory);
  border: 1px solid rgba(169,134,65,0.25);
  padding: 36px 28px 32px;
  position: relative;
  box-shadow: var(--shadow-drape);
  border-radius: 2px;
}
.step .selvedge {
  position: absolute;
  top: 8px;
  left: 28px; right: 28px;
  height: 6px;
  background-image: repeating-linear-gradient(90deg, var(--brass) 0 4px, transparent 4px 8px);
  opacity: 0.55;
}
.step .num {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 96px;
  line-height: 0.8;
  color: var(--rose);
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  margin-top: 18px;
}
.step h4 { font-family: 'DM Serif Display', serif; font-size: 22px; margin-bottom: 8px; }
.step p { font-size: 15px; line-height: 1.55; opacity: 0.82; }

/* ─── FAQ ─────────────────────────────────────────────────────────────── */

.faq {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(169,134,65,0.30);
}
.faq details {
  padding: 32px 0;
  border-bottom: 1px solid rgba(169,134,65,0.30);
}
.faq summary {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.22;
  color: var(--charcoal);
  cursor: pointer;
  list-style: none;
  display: grid;
  grid-template-columns: 60px 1fr 28px;
  gap: 24px;
  align-items: baseline;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .num {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 36px;
  color: var(--rose);
  letter-spacing: -0.03em;
}
.faq summary .toggle {
  font-family: 'Italianno', cursive;
  font-size: 32px;
  color: var(--brass);
  line-height: 1;
  transition: transform 0.4s;
  text-align: right;
}
.faq details[open] summary .toggle { transform: rotate(45deg); }
.faq .answer {
  font-family: 'Spectral', serif;
  font-size: 16px;
  line-height: 1.70;
  color: var(--charcoal);
  opacity: 0.85;
  padding-top: 18px;
  padding-left: 84px;
  padding-right: 50px;
  max-width: 760px;
}
.faq .answer p + p { margin-top: 12px; }
@media (max-width: 720px) {
  .faq summary { grid-template-columns: 38px 1fr 24px; gap: 14px; }
  .faq summary .num { font-size: 26px; }
  .faq .answer { padding-left: 52px; padding-right: 0; }
}

/* ─── Design system bits ──────────────────────────────────────────────── */

.swatch-card {
  background: var(--ivory);
  padding: 20px;
  border: 1px solid rgba(169,134,65,0.25);
  box-shadow: var(--shadow-drape);
  border-radius: 2px;
}
.swatch-card .swatch-block {
  height: 120px;
  margin-bottom: 14px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.swatch-card .swatch-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--velvet-pile);
  background-size: var(--velvet-pile-size);
  opacity: 0.6;
  mix-blend-mode: overlay;
}
.swatch-card .name { font-family: 'DM Serif Display', serif; font-size: 18px; }
.swatch-card .hex { font-family: 'Spectral', serif; font-size: 12px; font-style: italic; letter-spacing: 0.14em; color: var(--brass); text-transform: uppercase; }
.swatch-card .role { font-size: 13px; opacity: 0.75; margin-top: 6px; line-height: 1.4; }

.type-row {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: end;
  padding: 32px 0;
  border-bottom: 1px solid rgba(169,134,65,0.30);
}
.type-row .specs {
  font-family: 'Spectral', serif;
  font-size: 12px;
  font-style: italic;
  letter-spacing: 0.10em;
  color: var(--brass);
  line-height: 1.7;
}
@media (max-width: 720px) { .type-row { grid-template-columns: 1fr; gap: 12px; } }

.tone-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.tone-list h4 { font-family: 'DM Serif Display', serif; font-size: 22px; margin-bottom: 10px; color: var(--emerald); }
.tone-list .yes h4 { color: var(--emerald); }
.tone-list .no h4 { color: var(--burgundy); }
.tone-list ul { list-style: none; }
.tone-list li { padding: 6px 0; font-size: 15px; line-height: 1.6; opacity: 0.85; }
.tone-list li::before { content: '— '; color: var(--brass); }
@media (max-width: 720px) { .tone-list { grid-template-columns: 1fr; } }

.svg-demo {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  padding: 24px;
  background: var(--ivory);
  border: 1px solid rgba(169,134,65,0.25);
  box-shadow: var(--shadow-drape);
  border-radius: 2px;
  align-items: center;
}
.svg-demo .demo-tile {
  width: 100%;
  height: 200px;
  background: var(--emerald);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(169,134,65,0.40);
  border-radius: 2px;
}
.svg-demo .demo-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--velvet-pile);
  background-size: var(--velvet-pile-size);
  opacity: 0.85;
  mix-blend-mode: overlay;
}
@media (max-width: 720px) { .svg-demo { grid-template-columns: 1fr; } }

/* ─── Inquire reassurance ─────────────────────────────────────────────── */

.reassurance {
  margin: 32px 0 48px;
  padding: 28px 32px;
  background: rgba(217,200,150,0.22);
  border-left: 2px solid var(--brass);
  font-family: 'Spectral', serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  border-radius: 2px;
}
.reassurance strong { font-style: normal; font-weight: 500; color: var(--emerald); }

/* ─── Misc ────────────────────────────────────────────────────────────── */

.divider {
  width: 100%;
  text-align: center;
  margin: 48px 0;
  font-family: 'Italianno', cursive;
  font-size: 36px;
  color: var(--brass);
  opacity: 0.65;
  line-height: 0.9;
}

.muted { opacity: 0.7; }

.lead {
  font-size: 19px;
  line-height: 1.7;
  font-style: italic;
  font-family: 'Spectral', serif;
  color: var(--charcoal);
  max-width: 720px;
}

.page-head {
  padding: 64px 0 36px;
}
.page-head h1 { margin: 14px 0 16px; }
.page-head .lead { max-width: 680px; }

/* small detail flourish */
.flourish {
  display: block;
  font-family: 'Italianno', cursive;
  font-size: 64px;
  color: var(--rose);
  text-align: center;
  margin: 32px 0 8px;
  line-height: 0.8;
  opacity: 0.85;
}

/* ─── Tablescape (about page columns) ─────────────────────────────────── */

.about-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; gap: 32px; } }
