/* ============================================================
   renai.studio  -- The Atelier of Hoarded Affections
   goblincore x marble-classical x warm-earthy x elastic
   ============================================================ */

:root {
  --terracotta-deep: #a14628;
  --vellum: #f3e9d2;
  --moss-velvet: #5a6b3a;
  --marble-warm: #e8dcc4;
  --ink-sepia: #3d2817;
  --ink-walnut: #5a3a1f;
  --ochre-honey: #c89a4a;
  --rose-bruised: #8b3a3a;
  --lichen-pale: #b8a878;

  --niche-shadow: inset 0 4px 12px rgba(61, 40, 23, 0.18),
                  inset 0 -2px 8px rgba(61, 40, 23, 0.10);
  --niche-glow: 0 0 0 1px rgba(184, 168, 120, 0.30),
                0 8px 24px -8px rgba(61, 40, 23, 0.25);

  --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --ease-hover: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-breath: cubic-bezier(0.45, 0, 0.55, 1);

  --col-width: 720px;

  --font-display: "Cormorant Garamond", "Cormorant", "EB Garamond", serif;
  --font-body: "EB Garamond", "Cormorant Garamond", Georgia, serif;
  --font-hand: "Caveat", "Brush Script MT", cursive;
  --font-numeral: "IM Fell DW Pica", "Cormorant Garamond", serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--vellum);
  color: var(--ink-sepia);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.78;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(circle at 20% 10%, rgba(200, 154, 74, 0.10), transparent 45%),
    radial-gradient(circle at 80% 60%, rgba(90, 107, 58, 0.08), transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(161, 70, 40, 0.07), transparent 55%),
    repeating-linear-gradient(
      37deg,
      rgba(61, 40, 23, 0.018) 0 2px,
      transparent 2px 7px
    ),
    var(--vellum);
  min-height: 100vh;
  position: relative;
}

body::before {
  /* parchment grain */
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 0.36   0 0 0 0 0.30   0 0 0 0 0.20   0 0 0 0.10 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.5;
  z-index: 1;
  mix-blend-mode: multiply;
}

body::after {
  /* outer vignette */
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(61, 40, 23, 0.18) 100%);
  z-index: 2;
}

.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ============================================================
   AISLE (the central column)
   ============================================================ */
.aisle {
  position: relative;
  max-width: var(--col-width);
  margin: 0 auto;
  padding: 0 1.25rem 6rem;
  z-index: 10;
}

/* ============================================================
   MEANDER SPINE (vertical Greek key behind content)
   ============================================================ */
.meander-spine {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 100vh;
  z-index: 3;
  pointer-events: none;
  opacity: 0.85;
}

/* ============================================================
   GOBLIN MARGINALIA
   ============================================================ */
.marginalia {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 4;
}

.drift {
  position: absolute;
  width: 22px;
  height: 22px;
  pointer-events: auto;
  cursor: default;
  will-change: transform;
  filter: drop-shadow(0 1px 2px rgba(61, 40, 23, 0.22));
  opacity: 0.78;
  transition: opacity 0.4s ease;
}

.drift svg { width: 100%; height: 100%; display: block; }

.drift.bouncing {
  animation: spritebounce 0.6s var(--ease-elastic) 1;
}

@keyframes spritebounce {
  0%   { transform: var(--rest-transform) scale(1); }
  35%  { transform: var(--rest-transform) scale(1.18); }
  65%  { transform: var(--rest-transform) scale(0.95); }
  100% { transform: var(--rest-transform) scale(1); }
}

/* ============================================================
   PEDIMENT (hero)
   ============================================================ */
.pediment-block {
  position: relative;
  padding: 7rem 0 5rem;
  text-align: center;
  z-index: 12;
}

.column {
  position: absolute;
  top: 6.4rem;
  width: 36px;
  height: 240px;
  z-index: 1;
}
.column-left  { left: -8px; }
.column-right { right: -8px; }

.column .shaft {
  width: 100%;
  height: calc(100% - 28px);
  margin-top: 14px;
  background:
    repeating-linear-gradient(
      to right,
      rgba(168, 168, 120, 0.55) 0 1px,
      transparent 1px 5px,
      rgba(168, 168, 120, 0.25) 5px 6px,
      transparent 6px 10px
    ),
    linear-gradient(to right,
      #c8b88a 0%, #e8dcc4 22%, #f3e9d2 50%, #e8dcc4 78%, #c8b88a 100%);
  border-radius: 3px;
  box-shadow:
    inset 0 0 3px rgba(61, 40, 23, 0.25),
    0 0 0 1px rgba(168, 168, 120, 0.4);
}
.column .capital,
.column .base {
  width: 130%;
  margin-left: -15%;
  height: 14px;
  background: linear-gradient(to bottom, #e8dcc4, #c8b88a);
  border-radius: 2px;
  box-shadow: 0 1px 0 rgba(61, 40, 23, 0.3);
  position: relative;
}
.column .capital { position: relative; height: 16px; }
.column .capital .volute {
  position: absolute;
  top: -2px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--ink-walnut);
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--marble-warm) 30%, transparent 30%);
}
.column .capital .volute-l { left: 0; }
.column .capital .volute-r { right: 0; }

.pediment {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(560px, 90vw);
  height: 100px;
  z-index: 2;
  pointer-events: none;
}

.pediment .triangle {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, #f3e9d2 0%, #e8dcc4 50%, #c8b88a 100%);
  clip-path: polygon(0 100%, 50% 6px, 100% 100%);
  box-shadow:
    inset 0 -3px 6px rgba(61, 40, 23, 0.15);
  animation: pediment-inhale 6s var(--ease-breath) infinite alternate;
}

@keyframes pediment-inhale {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-4px); }
}

.pediment .keystone {
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 28px;
  background: linear-gradient(to bottom, #e8dcc4, #b8a878);
  clip-path: polygon(20% 0, 80% 0, 100% 100%, 0 100%);
  box-shadow: inset 0 -2px 3px rgba(61, 40, 23, 0.3);
}

.moss-sprig {
  position: absolute;
  bottom: 8px;
  left: 8px;
  width: 60px;
  height: 40px;
  transform-origin: bottom left;
  animation: moss-sway 5s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes moss-sway {
  0%   { transform: rotate(-3deg); }
  100% { transform: rotate(4deg); }
}

.nameplate {
  position: relative;
  z-index: 3;
  padding-top: 120px;
}

.overline {
  font-family: var(--font-numeral);
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  color: var(--ink-walnut);
  opacity: 0.7;
  margin: 0 0 1rem;
}

.studio-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  letter-spacing: -0.01em;
  margin: 0 0 0.4rem;
  color: var(--ink-sepia);
  line-height: 1;
  text-shadow:
    1px 1px 0 rgba(255, 255, 255, 0.4),
    -1px -1px 1px rgba(61, 40, 23, 0.6),
    0 0 12px rgba(200, 154, 74, 0.15);
  position: relative;
  display: inline-block;
}

.studio-name::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 60px;
  height: 1px;
  background: var(--ochre-honey);
  transform: translateX(-50%);
  opacity: 0.7;
}

.subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--terracotta-deep);
  margin: 1.4rem 0 0.6rem;
}

.kicker {
  font-family: var(--font-hand);
  color: var(--ink-walnut);
  font-size: 1.25rem;
  transform: rotate(-1.2deg);
  display: inline-block;
  margin: 0;
}

/* ============================================================
   NICHE
   ============================================================ */
.niche {
  position: relative;
  margin: 5rem 0;
  padding: 3.4rem 2.6rem 3.4rem;
  background:
    linear-gradient(180deg, rgba(243, 233, 210, 0.55), rgba(232, 220, 196, 0.15)),
    var(--marble-warm);
  box-shadow: var(--niche-shadow), var(--niche-glow);
  border-radius: 8px 8px 4px 4px;
  z-index: 11;
  isolation: isolate;
}

.niche::before {
  /* Roman numeral plaque */
  content: attr(data-numeral);
  position: absolute;
  top: 1rem;
  left: 1.4rem;
  font-family: var(--font-numeral);
  font-size: 1.6rem;
  color: var(--terracotta-deep);
  font-style: italic;
  letter-spacing: 0.08em;
  filter: url(#ink-bleed);
}

.niche::after {
  /* wax seal */
  content: attr(data-seal);
  position: absolute;
  top: 1rem;
  right: 1.4rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #c34634, #8b3a3a 60%, #5a2424 100%);
  color: var(--vellum);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
  box-shadow:
    inset 0 -2px 4px rgba(0, 0, 0, 0.35),
    inset 0 2px 3px rgba(255, 255, 255, 0.18),
    0 2px 5px rgba(61, 40, 23, 0.4);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  border: 1px dashed rgba(243, 233, 210, 0.35);
  transform: rotate(-8deg);
}

/* Marble vein texture overlay */
.niche > :first-child { position: relative; z-index: 2; }
.niche > * { position: relative; z-index: 2; }

.niche {
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='600' height='600'><path d='M40 0 Q120 100 80 220 Q40 350 140 480 Q260 580 200 600' stroke='%23b8a878' stroke-width='0.8' fill='none' opacity='0.35'/><path d='M300 0 Q260 120 340 280 Q420 420 380 600' stroke='%23b8a878' stroke-width='0.6' fill='none' opacity='0.30'/><path d='M520 0 Q460 140 540 300 Q600 480 480 600' stroke='%23b8a878' stroke-width='0.5' fill='none' opacity='0.25'/><path d='M0 180 Q140 220 280 200 Q420 180 600 240' stroke='%23b8a878' stroke-width='0.4' fill='none' opacity='0.22'/><path d='M150 320 L170 340 L160 360 L180 380' stroke='%233d2817' stroke-width='0.5' fill='none' opacity='0.5' stroke-dasharray='3 2'/><path d='M460 80 L470 95 L455 110' stroke='%233d2817' stroke-width='0.4' fill='none' opacity='0.5'/></svg>"),
    linear-gradient(180deg, rgba(243, 233, 210, 0.55), rgba(232, 220, 196, 0.15)),
    var(--marble-warm);
  background-size: cover, 100% 100%, 100% 100%;
}

.niche-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.6rem, 3.2vw, 2.15rem);
  line-height: 1.2;
  margin: 0.4rem 0 0.3rem;
  color: var(--ink-sepia);
  text-align: center;
  letter-spacing: 0.005em;
}

.niche-sub {
  font-family: var(--font-numeral);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--ink-walnut);
  opacity: 0.78;
  text-align: center;
  margin: 0 0 1.6rem;
  letter-spacing: 0.04em;
}

.niche-body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.78;
  margin: 1.4rem 0;
  color: var(--ink-sepia);
  text-align: justify;
  hyphens: auto;
}

.niche-body em { color: var(--terracotta-deep); }

/* Artifact (SVG centerpiece) */
.artifact {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.6rem auto;
  position: relative;
}

.artifact svg {
  width: clamp(140px, 30vw, 200px);
  height: auto;
  filter: drop-shadow(0 6px 12px rgba(61, 40, 23, 0.22));
  animation: artifact-float 5s var(--ease-elastic) infinite alternate;
}

.plate { width: clamp(220px, 50vw, 280px) !important; }

@keyframes artifact-float {
  0%   { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-8px) rotate(0.6deg); }
}

/* Annotations (goblin's handwritten notes) */
.annotation {
  font-family: var(--font-hand);
  color: var(--ink-walnut);
  font-size: 1.05rem;
  position: absolute;
  max-width: 220px;
  line-height: 1.25;
  opacity: 0;
  transform: translateY(10px) rotate(var(--rot, -1.5deg));
  transition: opacity 0.7s ease, transform 0.9s var(--ease-elastic);
}

.annotation.visible {
  opacity: 0.85;
  transform: translateY(0) rotate(var(--rot, -1.5deg));
}

.annot-tl { top: -28px; left: 1.5rem;  --rot: -2.2deg; }
.annot-tr { top: -28px; right: 1.5rem; --rot:  1.8deg; text-align: right; }
.annot-bl { bottom: -28px; left: 1.5rem; --rot: 1.5deg; }
.annot-br { bottom: -28px; right: 1.5rem; --rot: -1.6deg; text-align: right; }

/* Ledger */
.ledger {
  list-style: none;
  margin: 1.8rem auto 0;
  padding: 1.4rem 1.6rem;
  max-width: 460px;
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0 28px,
      rgba(168, 168, 120, 0.25) 28px 29px
    ),
    rgba(243, 233, 210, 0.55);
  border: 1px solid rgba(168, 168, 120, 0.45);
  border-radius: 3px;
  box-shadow: inset 0 0 18px rgba(168, 134, 78, 0.12);
  transform: rotate(-0.4deg);
}

.ledger li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.18rem 0;
  font-size: 0.97rem;
}

.ledger-key {
  font-family: var(--font-numeral);
  font-style: italic;
  color: var(--ink-walnut);
  letter-spacing: 0.06em;
  text-transform: lowercase;
}
.ledger-key::after {
  content: " . . . . . . . . . . . . . . . . . . . .";
  color: rgba(168, 168, 120, 0.55);
  margin-left: 0.4rem;
  letter-spacing: 0.05em;
}
.ledger-val {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--ink-sepia);
  text-align: right;
  flex-shrink: 0;
}

/* Blockquote (quill) */
.quill {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--terracotta-deep);
  text-align: center;
  margin: 2.4rem 1rem;
  padding: 1rem 2rem;
  border-top: 1px solid rgba(184, 168, 120, 0.5);
  border-bottom: 1px solid rgba(184, 168, 120, 0.5);
  position: relative;
}

.quill::before, .quill::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 6px; height: 6px;
  background: var(--ochre-honey);
  border-radius: 50%;
  transform: translateX(-50%);
}
.quill::before { top: -4px; }
.quill::after  { bottom: -4px; }

.quill .cite {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--ink-walnut);
  font-family: var(--font-hand);
}

/* ============================================================
   SERVICES (niche IV)
   ============================================================ */
.niche-services .service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-top: 1.6rem;
}

.service {
  position: relative;
  padding: 1.4rem 1.2rem 1.2rem;
  background:
    linear-gradient(180deg, rgba(243, 233, 210, 0.7), rgba(232, 220, 196, 0.3));
  border: 1px solid rgba(168, 168, 120, 0.45);
  border-radius: 4px 4px 2px 2px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5),
              inset 0 -2px 4px rgba(61, 40, 23, 0.08);
  text-align: center;
  transition: transform 0.5s var(--ease-hover), box-shadow 0.5s ease;
}

.service:hover {
  transform: translateY(-3px) rotate(-0.4deg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -2px 4px rgba(61, 40, 23, 0.08),
    0 8px 18px -8px rgba(61, 40, 23, 0.35);
}

.service-glyph {
  display: inline-block;
  width: 36px;
  height: 36px;
  margin-bottom: 0.4rem;
  filter: drop-shadow(0 1px 2px rgba(61, 40, 23, 0.2));
  transition: transform 0.6s var(--ease-elastic);
}

.service:hover .service-glyph {
  transform: rotate(-12deg) scale(1.12);
}

.service h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.18rem;
  margin: 0.3rem 0 0.5rem;
  color: var(--ink-sepia);
}

.service p {
  font-size: 0.97rem;
  line-height: 1.55;
  margin: 0;
  color: var(--ink-walnut);
}

/* ============================================================
   CABINET FOOTER
   ============================================================ */
.cabinet {
  position: relative;
  margin: 6rem -2rem 2rem;
  padding: 0;
  z-index: 11;
}

.drawer {
  position: relative;
  padding: 0;
}

.drawer-front {
  position: relative;
  padding: 3rem 3.4rem 3.6rem;
  border-radius: 4px 4px 14px 14px;
  background:
    /* wood grain */
    repeating-linear-gradient(
      88deg,
      rgba(0, 0, 0, 0.05) 0 2px,
      transparent 2px 14px,
      rgba(243, 233, 210, 0.08) 14px 16px,
      transparent 16px 32px
    ),
    repeating-linear-gradient(
      91deg,
      rgba(0, 0, 0, 0.03) 0 6px,
      transparent 6px 22px
    ),
    linear-gradient(180deg, #8a3a22 0%, var(--terracotta-deep) 35%, #6b2c1a 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -2px 8px rgba(0, 0, 0, 0.4),
    inset 0 8px 18px rgba(0, 0, 0, 0.2),
    0 12px 24px -8px rgba(61, 40, 23, 0.5);
  color: var(--vellum);
}

.brass-pull {
  position: absolute;
  top: 1.4rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%,
      #f5d97a 0%,
      #c89a4a 35%,
      #8b6620 75%,
      #5a3a1f 100%);
  box-shadow:
    inset 0 -2px 4px rgba(0, 0, 0, 0.4),
    inset 0 2px 2px rgba(255, 255, 255, 0.3),
    0 2px 5px rgba(0, 0, 0, 0.5);
}
.brass-pull::after {
  content: "";
  position: absolute;
  top: 6px; left: 7px;
  width: 6px; height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  filter: blur(0.5px);
}
.brass-pull-l { left: 2.2rem; }
.brass-pull-r { right: 2.2rem; }

.drawer-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: 2rem;
  text-align: center;
  margin: 0 0 0.3rem;
  color: var(--vellum);
  letter-spacing: 0.01em;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.45);
}

.drawer-sub {
  font-family: var(--font-hand);
  text-align: center;
  margin: 0 0 1.8rem;
  font-size: 1.18rem;
  color: var(--marble-warm);
  opacity: 0.92;
}

/* form */
.curator-form {
  display: grid;
  gap: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}

.field { display: block; }
.field-label {
  display: block;
  font-family: var(--font-numeral);
  font-style: italic;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  color: var(--marble-warm);
  margin-bottom: 0.3rem;
  text-transform: lowercase;
}

.field input, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(243, 233, 210, 0.45);
  background: rgba(243, 233, 210, 0.92);
  color: var(--ink-sepia);
  border-radius: 3px;
  outline: none;
  resize: vertical;
  transition: background 0.4s ease, transform 0.4s var(--ease-hover);
  font-style: italic;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-walnut);
  opacity: 0.55;
  font-style: italic;
}

.field input:focus,
.field textarea:focus {
  background: var(--vellum);
  transform: translateY(-1px);
}

/* acorn submit */
.acorn-button {
  margin: 0.5rem auto 0;
  padding: 0.6rem 1.8rem 0.6rem 0.6rem;
  background: transparent;
  border: 1px solid rgba(243, 233, 210, 0.4);
  border-radius: 28px;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--vellum);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition:
    transform 0.5s var(--ease-hover),
    background 0.4s ease,
    box-shadow 0.5s ease;
  width: max-content;
  justify-self: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.acorn-svg {
  width: 38px; height: 38px;
  transition: transform 0.6s var(--ease-elastic);
}

.acorn-button:hover {
  background: rgba(243, 233, 210, 0.12);
  box-shadow: 0 0 0 4px rgba(200, 154, 74, 0.16);
  transform: translateY(-2px);
}
.acorn-button:hover .acorn-svg { transform: rotate(8deg) scale(1.08); }
.acorn-button:active { transform: translateY(0) scale(0.97); }

.form-note {
  text-align: center;
  font-family: var(--font-hand);
  font-size: 1.2rem;
  color: var(--ochre-honey);
  min-height: 1.2em;
  margin: 0.4rem 0 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.form-note.show { opacity: 1; }

.drawer-shadow {
  height: 14px;
  margin: 0 1.4rem;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35), transparent);
  border-radius: 0 0 14px 14px;
  filter: blur(2px);
}

.colophon {
  text-align: center;
  margin-top: 2.6rem;
  font-family: var(--font-numeral);
  font-style: italic;
  color: var(--ink-walnut);
  opacity: 0.7;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
}
.colophon .dot { color: var(--terracotta-deep); margin: 0 0.4rem; }
.colophon .tiny { font-size: 0.78rem; margin-top: 0.4rem; opacity: 0.8; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 780px) {
  .aisle { padding: 0 1rem 4rem; }
  .niche { padding: 3rem 1.4rem; margin: 3.6rem 0; }
  .niche::after { width: 44px; height: 44px; font-size: 0.7rem; }
  .niche-services .service-grid { grid-template-columns: 1fr; }
  .annot-tl, .annot-tr, .annot-bl, .annot-br { max-width: 180px; font-size: 0.95rem; }
  .annot-tl, .annot-bl { left: 0.6rem; }
  .annot-tr, .annot-br { right: 0.6rem; }
  .column { display: none; }
  .pediment { width: 90vw; }
  .nameplate { padding-top: 105px; }
  .meander-spine { opacity: 0.35; }
  .drift { width: 18px; height: 18px; }
  .cabinet { margin: 4rem 0 1rem; }
  .drawer-front { padding: 2.4rem 1.4rem 2.8rem; }
  .brass-pull-l { left: 1rem; }
  .brass-pull-r { right: 1rem; }
}

@media (max-width: 460px) {
  .nameplate { padding-top: 90px; }
  .studio-name { font-size: 2.2rem; }
  .subtitle { font-size: 1.2rem; }
  .quill { font-size: 1.15rem; padding: 0.8rem 1rem; }
  .ledger { padding: 1rem 1rem; transform: rotate(0); }
  .annot-tl, .annot-tr, .annot-bl, .annot-br { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
}
