/* ====================================================================
   DHODY & DHODY — Editorial Practice Site
   Palette: cream, ink, terracotta, sage
   Type: Fraunces (display) / Geist (body) / Geist Mono (metadata)
==================================================================== */

:root {
  --cream:        #F4EFE6;
  --cream-deep:   #EBE3D4;
  --paper:        #FAF6EE;
  --ink:          #1A1814;
  --ink-soft:     #2C2823;
  --ink-mute:     #5C5448;
  --terracotta:   #A0492A;
  --terracotta-soft: #C26E4D;
  --sage:         #7D8471;
  --rule:         #1A18141A;
  --rule-strong:  #1A18142E;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Geist', -apple-system, system-ui, sans-serif;
  font-weight: 400;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
  overflow-x: hidden;
}

/* Subtle paper grain via SVG */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.09 0 0 0 0 0.07 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 999;
  mix-blend-mode: multiply; opacity: 0.55;
}

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

/* ---------- TYPOGRAPHY ---------- */

.serif {
  font-family: 'Fraunces', 'Times New Roman', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 50, 'WONK' 0;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.mono {
  font-family: 'Geist Mono', 'SF Mono', Menlo, monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  font-weight: 500;
}

.kicker {
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-mute);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.kicker::before {
  content: ''; width: 28px; height: 1px;
  background: var(--ink-mute);
  display: inline-block;
}

/* ---------- LAYOUT ---------- */

.wrap { width: 100%; max-width: 1480px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .wrap { padding: 0 20px; } }

/* ---------- NAVIGATION ---------- */

.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 32px;
  display: flex; align-items: center; justify-content: space-between;
  background: transparent;
  transition: background 0.4s ease, padding 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(244, 239, 230, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 32px;
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 720px) { .nav, .nav.scrolled { padding: 14px 20px; } }

.brand {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 14, 'WONK' 0;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.brand .amp { font-style: italic; color: var(--terracotta); font-weight: 400; }

.nav-links {
  display: flex; gap: 32px; align-items: center;
}
.nav-links a {
  font-size: 0.86rem; color: var(--ink-soft);
  position: relative; padding: 4px 0;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--terracotta);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: 'Geist Mono', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: all 0.25s ease;
}
.nav-cta:hover { background: var(--ink); color: var(--cream); }

@media (max-width: 900px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ---------- HERO ---------- */

.hero {
  min-height: 100vh;
  padding: 120px 32px 60px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  position: relative;
}
@media (max-width: 720px) { .hero { padding: 100px 20px 40px; } }

.hero-grid {
  max-width: 1480px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.hero-text { position: relative; }

.hero-eyebrow {
  margin-bottom: 32px;
  display: flex; align-items: center; gap: 14px;
  font-family: 'Geist Mono', monospace;
  font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink-mute);
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; background: var(--terracotta); border-radius: 50%;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'WONK' 1;
  font-size: clamp(2.8rem, 7.2vw, 6.8rem);
  font-weight: 350;
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
  color: var(--ink);
}
.hero h1 .italic {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 70, 'WONK' 1;
  color: var(--terracotta);
}
.hero h1 .small {
  font-size: 0.6em;
  display: block;
  letter-spacing: -0.02em;
  margin-top: 4px;
  color: var(--ink-soft);
}

.hero-sub {
  font-size: 1.08rem;
  max-width: 520px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 36px;
}

.hero-meta {
  display: flex; gap: 40px; flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--rule-strong);
}
.hero-meta-item .label {
  font-family: 'Geist Mono', monospace;
  font-size: 0.66rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-mute);
  margin-bottom: 6px;
}
.hero-meta-item .value {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-variation-settings: 'opsz' 24, 'SOFT' 30, 'WONK' 1;
  font-weight: 400;
}

/* Hero image */
.hero-visual {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-radius: 2px;
}
.hero-visual img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
  animation: heroIn 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(170deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0) 35%, rgba(160,73,42,0.08) 100%);
  pointer-events: none;
}
.hero-visual-tag {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(244, 239, 230, 0.92);
  backdrop-filter: blur(8px);
  padding: 10px 14px;
  font-family: 'Geist Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-radius: 2px;
}
@keyframes heroIn {
  from { opacity: 0; transform: scale(1.06); }
  to   { opacity: 1; transform: scale(1); }
}

/* Hero entrance reveal — only active when JS has marked the body ready */
.reveal { opacity: 1; transform: none; }
.js-ready .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.js-ready .reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.35s; }
.reveal.d4 { transition-delay: 0.5s; }
.reveal.d5 { transition-delay: 0.65s; }

/* ---------- SECTION CHROME ---------- */

section { padding: 120px 0; position: relative; }
@media (max-width: 720px) { section { padding: 80px 0; } }

.section-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  margin-bottom: 72px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule-strong);
}
@media (max-width: 820px) {
  .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 48px; }
}

.section-head .label {
  font-family: 'Geist Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-top: 12px;
}
.section-head h2 {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 40, 'WONK' 1;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.04;
  max-width: 920px;
}
.section-head h2 .italic {
  font-style: italic;
  color: var(--terracotta);
  font-variation-settings: 'opsz' 144, 'SOFT' 80, 'WONK' 1;
}

/* ---------- INTRO STATEMENT ---------- */

.statement {
  padding: 100px 0 80px;
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.statement-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
}
@media (max-width: 720px) {
  .statement-inner { grid-template-columns: 1fr; gap: 20px; padding: 0 20px; }
}
.statement-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  font-size: 3.4rem;
  color: var(--terracotta);
  font-weight: 400;
  line-height: 1;
}
.statement-text {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'WONK' 1;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  line-height: 1.32;
  font-weight: 350;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.statement-text em {
  font-style: italic;
  color: var(--terracotta);
  font-variation-settings: 'opsz' 144, 'SOFT' 80, 'WONK' 1;
}

/* ---------- PRACTICE / ABOUT ---------- */

.practice-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
}
@media (max-width: 820px) {
  .practice-body { grid-template-columns: 1fr; gap: 32px; }
}
.practice-aside {
  border-top: 1px solid var(--rule-strong);
  padding-top: 16px;
}
.practice-aside .role {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--terracotta);
  margin-bottom: 4px;
}
.practice-aside .name {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 24, 'SOFT' 40, 'WONK' 1;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.practice-aside .quals {
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  line-height: 1.6;
}
.practice-prose {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 760px;
}
.practice-prose p + p { margin-top: 1.2em; }
.practice-prose strong { color: var(--ink); font-weight: 500; }

.practice-stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 720px) {
  .practice-stats { grid-template-columns: repeat(2, 1fr); }
}
.stat {
  padding-top: 18px;
  border-top: 1px solid var(--rule-strong);
}
.stat .n {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'WONK' 1;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.stat .n .accent { color: var(--terracotta); font-style: italic; }
.stat .desc {
  font-family: 'Geist Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  line-height: 1.6;
}

/* ---------- PROJECTS ---------- */

.project {
  padding: 110px 0;
  border-top: 1px solid var(--rule);
}
.project:first-of-type { border-top: none; padding-top: 60px; }

.project-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
@media (max-width: 820px) {
  .project-head { grid-template-columns: 1fr; gap: 24px; }
}
.project-head .num {
  font-family: 'Geist Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.project-head h3 {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 40, 'WONK' 1;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.project-head h3 .italic {
  font-style: italic;
  color: var(--terracotta);
  font-variation-settings: 'opsz' 144, 'SOFT' 80, 'WONK' 1;
}

.project-meta {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  margin-bottom: 56px;
}
@media (max-width: 820px) {
  .project-meta { grid-template-columns: 1fr; gap: 24px; }
}
.project-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}
.spec-row {
  padding: 8px 0;
  border-bottom: 1px solid var(--rule);
  display: flex; justify-content: space-between; gap: 12px;
  font-size: 0.86rem;
}
.spec-row .k {
  font-family: 'Geist Mono', monospace;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.spec-row .v { color: var(--ink); font-weight: 500; text-align: right; }

.project-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 720px;
}

/* Project Gallery — magazine-style mosaic */
.gallery {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(12, 1fr);
}
.g-img {
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  background: var(--cream-deep);
}
.g-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.g-img:hover img { transform: scale(1.04); }
.g-img::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(160, 73, 42, 0);
  transition: background 0.3s ease;
  pointer-events: none;
}
.g-img:hover::after { background: rgba(160, 73, 42, 0.08); }

/* Project 1 layout: hero + mosaic */
.g-1a { grid-column: span 8; aspect-ratio: 16/9; }
.g-1b { grid-column: span 4; aspect-ratio: 4/5; }
.g-1c { grid-column: span 4; aspect-ratio: 4/5; }
.g-1d { grid-column: span 8; aspect-ratio: 16/9; }
.g-1e { grid-column: span 6; aspect-ratio: 4/3; }
.g-1f { grid-column: span 6; aspect-ratio: 4/3; }
.g-1g { grid-column: span 12; aspect-ratio: 21/9; }

/* Project 2 layout */
.g-2a { grid-column: span 12; aspect-ratio: 21/9; }
.g-2b { grid-column: span 6; aspect-ratio: 4/3; }
.g-2c { grid-column: span 6; aspect-ratio: 4/3; }
.g-2d { grid-column: span 4; aspect-ratio: 4/5; }
.g-2e { grid-column: span 8; aspect-ratio: 16/9; }

@media (max-width: 820px) {
  .g-1a, .g-1b, .g-1c, .g-1d, .g-1e, .g-1f, .g-1g,
  .g-2a, .g-2b, .g-2c, .g-2d, .g-2e {
    grid-column: span 12;
    aspect-ratio: 16/10;
  }
}

.project-link {
  margin-top: 36px;
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Geist Mono', monospace;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 6px 0;
  transition: gap 0.25s ease, color 0.25s ease;
}
.project-link:hover { gap: 18px; color: var(--terracotta); border-bottom-color: var(--terracotta); }
.project-link svg { width: 14px; height: 14px; }

/* ---------- SERVICES ---------- */

.services-section { background: var(--paper); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule-strong);
}
@media (max-width: 820px) { .services-grid { grid-template-columns: 1fr; } }

.service {
  padding: 36px 28px 36px 0;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.services-grid > .service:nth-child(3n) { border-right: none; }
@media (max-width: 820px) {
  .service { border-right: none; padding: 32px 0; }
}
.service .num {
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--terracotta);
  margin-bottom: 16px;
}
.service h4 {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 24, 'SOFT' 40, 'WONK' 1;
  font-size: 1.55rem;
  font-weight: 450;
  letter-spacing: -0.018em;
  margin-bottom: 14px;
  line-height: 1.15;
}
.service h4 .italic { font-style: italic; color: var(--terracotta); }
.service p {
  font-size: 0.96rem;
  line-height: 1.62;
  color: var(--ink-soft);
}

/* ---------- CREDENTIALS ---------- */

.creds-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.cred {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 40px;
  padding: 32px 0;
  border-top: 1px solid var(--rule-strong);
  align-items: baseline;
  transition: padding-left 0.3s ease;
}
.cred:last-child { border-bottom: 1px solid var(--rule-strong); }
.cred:hover { padding-left: 12px; }
.cred .n {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 80, 'WONK' 1;
  font-size: 1.8rem;
  color: var(--terracotta);
  font-weight: 400;
}
.cred .body {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 24, 'SOFT' 30, 'WONK' 1;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 1.25;
}
.cred .body .sub {
  display: block;
  font-family: 'Geist', sans-serif;
  font-size: 0.92rem;
  color: var(--ink-mute);
  margin-top: 6px;
  font-weight: 400;
  letter-spacing: 0;
}
.cred .ref {
  font-family: 'Geist Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  text-transform: uppercase;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .cred { grid-template-columns: 50px 1fr; gap: 20px; padding: 24px 0; }
  .cred .ref { grid-column: 2; margin-top: 6px; }
  .cred .body { font-size: 1.15rem; }
}

/* ---------- CONTACT ---------- */

.contact-section {
  background: var(--ink);
  color: var(--cream);
  border: none;
}
.contact-section .kicker { color: rgba(244, 239, 230, 0.6); }
.contact-section .kicker::before { background: rgba(244, 239, 230, 0.4); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; gap: 50px; } }

.contact-lead {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'WONK' 1;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 350;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  color: var(--cream);
}
.contact-lead .italic {
  font-style: italic;
  color: var(--terracotta-soft);
  font-variation-settings: 'opsz' 144, 'SOFT' 90, 'WONK' 1;
}

.contact-channels { margin-top: 32px; }
.channel {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid rgba(244, 239, 230, 0.18);
  align-items: baseline;
}
.channel:last-child { border-bottom: 1px solid rgba(244, 239, 230, 0.18); }
.channel .label {
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.55);
}
.channel .value {
  font-size: 1.02rem;
  color: var(--cream);
  font-weight: 400;
}
.channel a { color: var(--cream); position: relative; padding-bottom: 2px; }
.channel a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--terracotta-soft);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.channel a:hover::after { transform: scaleX(1); }

.hours-card {
  background: rgba(244, 239, 230, 0.05);
  border: 1px solid rgba(244, 239, 230, 0.12);
  padding: 32px 28px;
  border-radius: 2px;
}
.hours-card h4 {
  font-family: 'Geist Mono', monospace;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.7);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.hours-card h4::before {
  content: ''; width: 24px; height: 1px;
  background: var(--terracotta-soft);
}
.hours-block { margin-bottom: 24px; }
.hours-block:last-child { margin-bottom: 0; }
.hours-block .season {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-variation-settings: 'opsz' 24, 'SOFT' 100, 'WONK' 1;
  font-size: 1.15rem;
  color: var(--terracotta-soft);
  margin-bottom: 8px;
}
.hours-block .times {
  font-size: 0.96rem;
  color: var(--cream);
  line-height: 1.7;
}
.hours-block .times .slot {
  display: block;
}
.hours-divider {
  height: 1px; background: rgba(244, 239, 230, 0.12);
  margin: 24px 0;
}
.site-visit {
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.65);
  padding-top: 8px;
}
.site-visit strong { color: var(--terracotta-soft); font-weight: 500; }

/* ---------- FOOTER ---------- */

.footer {
  background: var(--ink);
  color: rgba(244, 239, 230, 0.7);
  padding: 60px 32px 28px;
  border-top: 1px solid rgba(244, 239, 230, 0.12);
}
@media (max-width: 720px) { .footer { padding: 40px 20px 24px; } }
.footer-inner {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.15);
}
@media (max-width: 720px) { .footer-inner { grid-template-columns: 1fr; gap: 28px; } }

.footer-brand {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'WONK' 1;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--cream);
}
.footer-brand .amp { font-style: italic; color: var(--terracotta-soft); }
.footer-tag {
  margin-top: 12px;
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.5);
}

.footer-social {
  display: flex; flex-direction: column; gap: 14px;
  align-items: flex-end;
}
@media (max-width: 720px) { .footer-social { align-items: flex-start; } }

.social-row {
  display: flex; gap: 12px;
}
.social-link {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(244, 239, 230, 0.2);
  border-radius: 50%;
  color: rgba(244, 239, 230, 0.75);
  transition: all 0.25s ease;
}
.social-link:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--cream);
  transform: translateY(-2px);
}
.social-link svg { width: 18px; height: 18px; }

.footer-bot {
  max-width: 1480px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-family: 'Geist Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.45);
}

/* ---------- LIGHTBOX ---------- */

.lightbox {
  position: fixed; inset: 0;
  background: rgba(26, 24, 20, 0.94);
  display: flex; align-items: center; justify-content: center;
  z-index: 200;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
  padding: 40px;
  backdrop-filter: blur(8px);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid rgba(244, 239, 230, 0.3);
  color: var(--cream);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
}
.lightbox-close:hover { background: var(--terracotta); border-color: var(--terracotta); }

/* ====================================================================
   ADDITIONS: Logo placements, Vision/Mission, Founder's Note, Tagline
==================================================================== */

/* ---------- LOGO IN NAV ---------- */
.brand-row { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 36px; width: auto; display: block; transition: transform 0.3s ease; }
.nav.scrolled .brand-logo { height: 30px; }
.brand-row:hover .brand-logo { transform: rotate(-3deg); }
@media (max-width: 540px) {
  .brand-logo { height: 30px; }
  .brand .wordmark { display: none; }
}

/* ---------- BELIEFS (VISION & MISSION) ---------- */
.beliefs {
  background: var(--ink);
  color: var(--cream);
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 720px) { .beliefs { padding: 90px 0; } }

.beliefs::before {
  /* faint terracotta corner accent */
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(160, 73, 42, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.beliefs .section-head .label { color: rgba(244, 239, 230, 0.55); }
.beliefs .section-head { border-bottom-color: rgba(244, 239, 230, 0.18); }
.beliefs .section-head h2 { color: var(--cream); }
.beliefs .section-head h2 .italic { color: var(--terracotta-soft); }

.beliefs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .beliefs-grid { grid-template-columns: 1fr; gap: 60px; }
}

.belief-block .belief-label {
  font-family: 'Geist Mono', monospace;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--terracotta-soft);
  margin-bottom: 24px;
  display: inline-flex; align-items: center; gap: 14px;
}
.belief-block .belief-label::before {
  content: ''; width: 28px; height: 1px; background: var(--terracotta-soft);
}

.belief-block .belief-headline {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'WONK' 1;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.012em;
  color: var(--cream);
  margin-bottom: 24px;
}
.belief-block .belief-headline em {
  font-style: italic;
  color: var(--terracotta-soft);
  font-variation-settings: 'opsz' 144, 'SOFT' 80, 'WONK' 1;
}

.belief-block .belief-body {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(244, 239, 230, 0.78);
}
.belief-block .belief-body p + p { margin-top: 1em; }

/* ---------- FOUNDER'S NOTE ---------- */
.founders-note { padding: 130px 0; }
@media (max-width: 720px) { .founders-note { padding: 80px 0; } }

.note-card {
  max-width: 880px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--rule-strong);
  padding: 64px 72px;
  position: relative;
  border-radius: 2px;
  box-shadow: 0 1px 0 var(--rule), 0 30px 60px -30px rgba(26, 24, 20, 0.12);
}
@media (max-width: 720px) {
  .note-card { padding: 40px 28px; }
}

.note-card::before {
  /* quote mark decoration */
  content: '"';
  position: absolute;
  top: -8px; left: 32px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 7rem;
  color: var(--terracotta);
  line-height: 1;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
}

.note-label {
  font-family: 'Geist Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 28px;
  margin-top: 16px;
}

.note-body {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'WONK' 1;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-weight: 350;
}
.note-body em {
  font-style: italic;
  color: var(--terracotta);
  font-variation-settings: 'opsz' 144, 'SOFT' 80, 'WONK' 1;
}

.note-signature {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--rule-strong);
  display: flex; flex-direction: column; gap: 4px;
}
.note-signature .sig-name {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-variation-settings: 'opsz' 24, 'SOFT' 80, 'WONK' 1;
  font-size: 1.3rem;
  color: var(--terracotta);
}
.note-signature .sig-role {
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ---------- TAGLINE BANNER (between Credentials and Contact) ---------- */
.tagline-banner {
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
@media (max-width: 720px) { .tagline-banner { padding: 70px 0; } }

.tagline-text {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'WONK' 1;
  font-size: clamp(1.6rem, 4.4vw, 3.4rem);
  font-weight: 350;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}
.tagline-text .italic {
  font-style: italic;
  color: var(--terracotta);
  font-variation-settings: 'opsz' 144, 'SOFT' 90, 'WONK' 1;
}
.tagline-text .divider {
  display: inline-block;
  margin: 0 0.4em;
  color: var(--terracotta);
  font-style: italic;
}

.tagline-eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.tagline-eyebrow::before,
.tagline-eyebrow::after {
  content: ''; width: 32px; height: 1px; background: var(--terracotta);
  display: inline-block;
}

/* ---------- FOOTER LOGO ---------- */
.footer-brand-row { display: flex; align-items: center; gap: 20px; margin-bottom: 12px; }
.footer-logo { height: 64px; width: auto; display: block; }
@media (max-width: 720px) { .footer-logo { height: 52px; } }

.footer-tagline {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 24, 'SOFT' 30, 'WONK' 1;
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(244, 239, 230, 0.85);
  margin-top: 10px;
  line-height: 1.4;
  letter-spacing: -0.005em;
}
.footer-tagline em {
  font-style: italic;
  font-variation-settings: 'opsz' 24, 'SOFT' 90, 'WONK' 1;
  color: var(--terracotta-soft);
}
