@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;0,6..72,600;1,6..72,400&family=Inter:wght@400;500;600&display=swap');

:root {
  --ink: #0c1929;
  --ink-soft: #1e3348;
  --stone: #f7f5f2;
  --stone-dark: #ebe7e1;
  --copper: #b87333;
  --copper-light: #d4956a;
  --muted: #5c6778;
  --line: #d4cfc6;
  --white: #ffffff;
  --max: 1140px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--stone);
  line-height: 1.7;
  font-size: 16px;
  font-weight: 400;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

.shell { width: min(var(--max), 90vw); margin: 0 auto; }

/* Minimal header — no top ribbon */
.site-head {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
}

.head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mark img { width: 36px; height: 36px; }

.mark .wordmark {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.mark .sub {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
  margin-top: 0.1rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding-bottom: 2px;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--copper);
  transition: width 0.25s;
}

.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a.active { color: var(--ink); }

.nav .cta {
  font-size: 0.78rem;
  padding: 0.55rem 1rem;
  background: var(--ink);
  color: var(--white);
  letter-spacing: 0.08em;
}

.nav .cta::after { display: none; }
.nav .cta:hover { background: var(--ink-soft); }

.menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--line);
  padding: 0.4rem 0.65rem;
  font: inherit;
  font-size: 0.8rem;
  cursor: pointer;
}

/* Editorial hero — diagonal split, no full-bleed dark overlay */
.intro {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  min-height: 72vh;
  background: var(--white);
}

.intro-copy {
  padding: 5rem 0 5rem 0;
  padding-right: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.intro-copy .shell { margin-left: max(5vw, calc((100vw - var(--max)) / 2)); margin-right: 0; width: auto; max-width: 480px; }

.intro .rule {
  width: 48px;
  height: 3px;
  background: var(--copper);
  margin-bottom: 1.75rem;
}

.intro h1 {
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.intro .deck {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1rem;
  max-width: 420px;
}

.intro .mail {
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.intro .mail a {
  color: var(--copper);
  font-weight: 600;
  border-bottom: 1px solid var(--copper-light);
}

.intro-visual img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

.actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 0.7rem 1.3rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-fill {
  background: var(--copper);
  color: var(--white);
}

.btn-fill:hover { background: var(--ink); }

.btn-line {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-line:hover { background: var(--ink); color: var(--white); }

/* Credentials strip — inline, not pill boxes */
.creds {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  background: var(--stone);
}

.creds div {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.creds strong {
  display: block;
  font-family: 'Newsreader', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  margin-top: 0.2rem;
}

.block { padding: 5rem 0; }
.block-alt { background: var(--white); }

.lead-block { max-width: 520px; margin-bottom: 3rem; }

.lead-block h2 {
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.lead-block p { color: var(--muted); }

.lead-block.center { text-align: center; margin-left: auto; margin-right: auto; }

/* Bento grid — unlike 3-col cards */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.bento article {
  background: var(--white);
  padding: 1.75rem;
}

.bento article:nth-child(1) { grid-column: span 6; }
.bento article:nth-child(2) { grid-column: span 6; }
.bento article:nth-child(3) { grid-column: span 4; }
.bento article:nth-child(4) { grid-column: span 4; }
.bento article:nth-child(5) { grid-column: span 4; }
.bento article:nth-child(6) { grid-column: span 12; }

.bento h3 {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.bento p { font-size: 0.88rem; color: var(--muted); }

.pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.pair img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.pair h3 {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 1.65rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.pair p { color: var(--muted); margin-bottom: 1rem; }
.pair a { color: var(--copper); font-weight: 600; }

.profile {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

.profile img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(15%);
}

.profile h3 {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.profile .title {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.profile p { color: var(--muted); margin-bottom: 0.85rem; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--white);
}

.contact-info {
  padding: 2.5rem;
  background: var(--ink);
  color: #a8b4c0;
}

.contact-info h2 {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.contact-info p { margin-bottom: 1.5rem; font-size: 0.92rem; }

.contact-info li {
  padding: 0.9rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.contact-info strong {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 0.35rem;
}

.contact-info a { color: var(--white); font-weight: 500; word-break: break-all; }

.form-side { padding: 2.5rem; background: var(--stone); }

.form-side h3 {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.field { margin-bottom: 1.1rem; }

.field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.field input,
.field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 0.65rem 0;
  font: inherit;
  background: transparent;
}

.field textarea { min-height: 100px; resize: vertical; }

.field input:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--copper);
}

.note { font-size: 0.82rem; color: var(--muted); margin-top: 0.75rem; }

.map { margin-top: 1.5rem; }
.map iframe { width: 100%; height: 200px; border: 0; }

.site-foot {
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.foot-grid h4 {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.65rem;
}

.foot-grid p, .foot-grid a { font-size: 0.88rem; color: var(--muted); }
.foot-grid a { color: var(--copper); }

.foot-end {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.foot-end a { color: var(--copper); }

.lead-block a, .profile a { color: var(--copper); font-weight: 600; }

@media (max-width: 960px) {
  .intro { grid-template-columns: 1fr; }
  .intro-copy { border-right: 0; border-bottom: 1px solid var(--line); padding: 3rem 0; }
  .intro-copy .shell { margin: 0 auto; max-width: 90vw; padding-right: 0; }
  .pair, .contact-layout, .foot-grid, .profile { grid-template-columns: 1fr; }
  .bento article { grid-column: span 12 !important; }
}

@media (max-width: 680px) {
  .menu-btn { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    gap: 1rem;
  }
  .nav.open { display: flex; }
  .site-head .shell { position: relative; }
  .creds { flex-direction: column; gap: 1rem; }
}
