/* ===================================================================
   Brenton AI — Refined Dark Editorial
   =================================================================== */

:root {
  --bg: #0A0A0C;
  --surface: #111114;
  --ink: #EDE8E1;
  --muted: #8A8A93;
  --subtle: #5A5A63;
  --accent: #C25A3B;
  --rule: rgba(237, 232, 225, 0.08);
  --rule-strong: rgba(237, 232, 225, 0.16);
}

/* ---------- Base ---------- */
html {
  scroll-behavior: smooth;
  background: var(--bg);
}
body {
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-feature-settings: "ss01", "zero", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ---------- Dot grid ---------- */
.dot-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(237, 232, 225, 0.04) 1px, transparent 0);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 85%);
}

/* ---------- Film grain ---------- */
.grain {
  position: fixed;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.75'/%3E%3C/svg%3E");
  animation: grain-shift 8s steps(6) infinite;
}
@keyframes grain-shift {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-5%, -3%); }
  40%  { transform: translate(3%, -5%); }
  60%  { transform: translate(-3%, 3%); }
  80%  { transform: translate(5%, 0%); }
  100% { transform: translate(0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .grain { animation: none; }
}

/* ===================================================================
   Typography utilities
   =================================================================== */

.smallcaps,
.eyebrow,
.nav-link,
.nav-cta,
.meta-strip,
.field-legend,
.field-tag {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-feature-settings: "tnum";
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.75rem;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

.section-title {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 400;
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.section-title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 60, "wght" 400;
  color: var(--ink);
}

/* ===================================================================
   Navigation
   =================================================================== */

#nav {
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}
#nav.scrolled {
  background: rgba(10, 10, 12, 0.7);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  border-bottom: 1px solid var(--rule);
}

.wordmark {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 500;
  font-size: 1.3rem;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-decoration: none;
}
.wordmark em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 60, "wght" 400;
  color: var(--muted);
}

.nav-link {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  transition: color 0.2s ease;
  text-decoration: none;
}
.nav-link:hover { color: var(--ink); }

.nav-cta {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  transition: gap 0.25s ease;
}
.nav-cta:hover { gap: 0.9rem; }
.nav-cta .arrow { transition: transform 0.25s ease; display: inline-block; }
.nav-cta:hover .arrow { transform: translateX(3px); }

/* ===================================================================
   Hero
   =================================================================== */

.hero {
  position: relative;
  overflow: hidden;
}

.hero-wordmark {
  position: absolute;
  bottom: -5vw;
  left: -3vw;
  right: -3vw;
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 500;
  font-style: italic;
  font-size: clamp(8rem, 26vw, 28rem);
  line-height: 0.85;
  letter-spacing: -0.055em;
  color: var(--ink);
  opacity: 0.035;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
  user-select: none;
}

.hero .mx-auto { position: relative; z-index: 1; }

.meta-strip {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  padding: 0.55rem 1rem 0.55rem 0.85rem;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: rgba(237, 232, 225, 0.015);
}
.meta-strip .sep { color: var(--subtle); }

.live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-headline {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 400;
  font-size: clamp(3rem, 9.5vw, 9rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--ink);
  max-width: 14ch;
}
.hero-headline em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 70, "wght" 400;
  color: var(--ink);
}

/* Fade-up reveals for hero elements */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: reveal-up 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.reveal-delay-1 { animation-delay: 0.1s; }
.reveal-delay-2 { animation-delay: 0.3s; }
.reveal-delay-3 { animation-delay: 0.5s; }
.reveal-delay-4 { animation-delay: 0.7s; }
@keyframes reveal-up {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ===================================================================
   Buttons
   =================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.5rem;
  border-radius: 2px;
  font-family: "Geist", system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: -0.005em;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, gap 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.btn .arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}
.btn:hover .arrow { transform: translateX(3px); }

.btn-primary {
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
}
.btn-primary:hover {
  background: transparent;
  color: var(--ink);
  gap: 0.95rem;
}
.btn-primary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--rule-strong);
}
.btn-ghost:hover {
  border-color: var(--ink);
  gap: 0.95rem;
}

/* ===================================================================
   Marquee
   =================================================================== */

.marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 2rem 0;
  background: rgba(237, 232, 225, 0.012);
}
.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}
.marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg), transparent);
}

.marquee-track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 55s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

.marquee-item {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 60, "wght" 300;
  font-size: 1.55rem;
  font-style: italic;
  color: var(--muted);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
  letter-spacing: -0.01em;
}
.marquee-item::after {
  content: "✦";
  font-style: normal;
  color: var(--accent);
  font-size: 0.75rem;
  font-family: "Geist Mono", monospace;
  opacity: 0.7;
}

/* ===================================================================
   Services — editorial numbered list
   =================================================================== */

.services-list {
  border-top: 1px solid var(--rule);
}

.service-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2.5rem;
  padding: 2.5rem 0 2.5rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: padding 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
}
.service-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(194, 90, 59, 0.05), transparent 35%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.service-row:hover {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.service-row:hover::before { opacity: 1; }
.service-row:hover .service-name { color: var(--ink); }
.service-row:hover .service-arrow {
  transform: translateX(8px);
  color: var(--accent);
}

.service-num {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 0.8rem;
  color: var(--subtle);
  letter-spacing: 0.06em;
  font-feature-settings: "tnum";
  min-width: 2.25rem;
  padding-top: 0.4rem;
}

.service-content {
  display: grid;
  grid-template-columns: minmax(0, 20rem) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: baseline;
}
@media (max-width: 768px) {
  .service-content {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .service-row { gap: 1.5rem; }
}

.service-name {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 400;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  transition: color 0.3s ease;
}

.service-desc {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 34rem;
}

.service-arrow {
  color: var(--subtle);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.3s ease;
  flex-shrink: 0;
  align-self: center;
}

/* ===================================================================
   Pullquote
   =================================================================== */

.pullquote {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 50, "wght" 300;
  font-size: clamp(1.75rem, 4.5vw, 3.25rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
  padding: 4rem 2rem 4rem 2rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  max-width: 40rem;
  margin: 0 auto;
}
.pullquote em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 70, "wght" 300;
  color: var(--accent);
}
.pullquote::before {
  content: "“";
  position: absolute;
  top: 1.5rem;
  left: -0.5rem;
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.35;
  font-style: normal;
  font-family: "Fraunces", Georgia, serif;
  line-height: 1;
}
@media (max-width: 768px) {
  .pullquote { padding: 2.5rem 1rem; }
  .pullquote::before { left: -0.25rem; top: 0.75rem; font-size: 3.5rem; }
}

/* ===================================================================
   Philosophy — manifesto + tenets
   =================================================================== */

.manifesto {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 300;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.manifesto p + p { margin-top: 1.1em; }
.manifesto em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 60, "wght" 300;
  color: var(--accent);
}

.tenets {
  border-top: 1px solid var(--rule);
}
.tenet {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 2rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
@media (max-width: 768px) {
  .tenet { grid-template-columns: 3rem 1fr; gap: 1rem; }
}

.tenet-num {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  color: var(--subtle);
  letter-spacing: 0.16em;
}

.tenet-title {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 400;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 0.55rem;
}

.tenet-copy {
  color: var(--muted);
  line-height: 1.55;
  max-width: 38rem;
  font-size: 1rem;
}

/* ===================================================================
   Contact
   =================================================================== */

.contact-form-editorial {
  max-width: 42rem;
}

.field-row {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
  transition: border-color 0.3s ease;
}
.field-row:focus-within {
  border-bottom-color: var(--accent);
}
@media (max-width: 768px) {
  .field-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1.25rem 0;
  }
}

.field-legend {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding-top: 0.65rem;
}
.field-legend .num {
  color: var(--accent);
  font-weight: 500;
}
.field-legend em {
  font-style: normal;
  color: var(--subtle);
  text-transform: lowercase;
  letter-spacing: 0;
}

.field-editorial {
  width: 100%;
  padding: 0.5rem 0;
  background: transparent;
  border: none;
  outline: none;
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 300;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  line-height: 1.35;
  letter-spacing: -0.015em;
}
.field-editorial::placeholder {
  color: var(--subtle);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 60, "wght" 300;
}
.field-editorial:focus {
  color: var(--ink);
}
textarea.field-editorial {
  resize: vertical;
  min-height: 5rem;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

/* Select dropdowns — strip native chrome, add a chevron */
.field-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 2rem;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238A8A93' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.25rem center;
  background-size: 14px 14px;
}
.field-select:invalid {
  color: var(--subtle);
  font-style: italic;
}
.field-select option {
  background: var(--surface);
  color: var(--ink);
  font-family: "Geist", system-ui, sans-serif;
  font-style: normal;
  font-size: 1rem;
}
.field-select option[disabled] {
  color: var(--subtle);
}

/* Submit — editorial text-link style */
.submit-editorial {
  margin-top: 3rem;
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0;
  background: none;
  border: none;
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 60, "wght" 400;
  font-style: italic;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: gap 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.3s ease;
}
.submit-editorial:hover {
  gap: 1.75rem;
  color: var(--accent);
}
.submit-editorial:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}
.submit-editorial .submit-line {
  width: 2.5rem;
  height: 1px;
  background: currentColor;
  transition: width 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: inline-block;
}
.submit-editorial:hover .submit-line { width: 3.5rem; }
.submit-editorial[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

/* Legacy spinner — kept because script.js toggles it */
.btn-spinner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid rgba(237, 232, 225, 0.3);
  border-top-color: var(--ink);
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Contact sidebar */
.field-tag {
  font-size: 0.7rem;
  color: var(--subtle);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.4rem;
}
.contact-line {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 400;
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: color 0.25s ease;
  display: inline-block;
}
.contact-line:hover { color: var(--accent); }
.contact-line-muted { color: var(--muted); }
.contact-line-muted:hover { color: var(--muted); }

/* Success state */
.success-mark {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  display: grid;
  place-items: center;
  color: var(--accent);
}
.success-mark svg { width: 28px; height: 28px; }

/* ===================================================================
   Footer masthead
   =================================================================== */

.masthead {
  margin-top: 8rem;
  border-top: 1px solid var(--rule);
  padding: 4rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}

.masthead-giant {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 400;
  font-size: clamp(4.5rem, 19vw, 22rem);
  line-height: 0.82;
  letter-spacing: -0.055em;
  color: var(--ink);
  margin-bottom: 4rem;
  user-select: none;
  white-space: nowrap;
  overflow: hidden;
}
.masthead-giant em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 70, "wght" 400;
  color: var(--accent);
}

.masthead-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--rule);
}
@media (max-width: 768px) {
  .masthead-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }
}

.masthead-col h4 {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--subtle);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.masthead-col ul { list-style: none; padding: 0; margin: 0; }
.masthead-col ul li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 2;
}
.masthead-col ul li a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.masthead-col ul li a:hover { color: var(--ink); }

.masthead-base {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--subtle);
}
.masthead-base .studio-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.masthead-base .studio-link:hover { color: var(--ink); }

/* ===================================================================
   Drop cap (manifesto)
   =================================================================== */

.manifesto p:first-of-type::first-letter {
  float: left;
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 400;
  font-style: italic;
  font-size: 5.2em;
  line-height: 0.82;
  margin: 0.08em 0.12em -0.05em -0.04em;
  color: var(--accent);
}

/* ===================================================================
   Handwritten signature
   =================================================================== */

.signature {
  font-family: "Caveat", "Fraunces", cursive;
  font-size: 2.25rem;
  color: var(--muted);
  margin-top: 2.5rem;
  letter-spacing: 0.01em;
  font-weight: 500;
  display: inline-block;
  line-height: 1;
}
.signature::before {
  content: "— ";
  font-family: "Fraunces", Georgia, serif;
  font-style: normal;
  font-weight: 300;
  font-size: 0.9em;
  color: var(--subtle);
  margin-right: 0.2em;
  vertical-align: 0.08em;
}
.signature-caption {
  display: block;
  margin-top: 0.4rem;
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--subtle);
}

/* ===================================================================
   Field notes — dated journal entries
   =================================================================== */

.notes-list {
  border-top: 1px solid var(--rule);
}
.note {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 2.5rem;
  padding: 2.75rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
@media (max-width: 768px) {
  .note {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding: 2.25rem 0;
  }
}

.note-date {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  color: var(--subtle);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-top: 0.6rem;
  font-feature-settings: "tnum";
}

.note-title {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 400;
  font-style: italic;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 1rem;
  max-width: 36rem;
}
/* Showcase Fraunces variable axes: each note varies SOFT/wght/ital */
.note:nth-child(2) .note-title {
  font-style: normal;
  font-variation-settings: "opsz" 144, "SOFT" 0, "wght" 500;
  letter-spacing: -0.03em;
}
.note:nth-child(3) .note-title {
  font-variation-settings: "opsz" 144, "SOFT" 50, "wght" 300;
}

.note-body {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 42rem;
}
.note-body em {
  font-style: italic;
  color: var(--ink);
}
