:root {
  --plum:      #8B2252;
  --plum-soft: #a94a74;
  --plum-deep: #5e1538;
  --cream:     #fbf7f2;
  --cream-2:   #f4ede3;
  --ink:       #2a1f24;
  --ink-soft:  #6b5a61;
  --line:      #ead9cf;
  --accent:    #d98a4f;
  --ok:        #5a8a4a;
  --radius:    14px;
  --shadow:    0 1px 2px rgba(94, 21, 56, 0.04), 0 8px 24px rgba(94, 21, 56, 0.06);
  --maxw:      1100px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--plum-deep);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); line-height: 1.05; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); line-height: 1.15; }
h3 { font-size: 1.35rem; line-height: 1.3; }

h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--plum);
}

a { color: var(--plum); text-decoration: none; }
a:hover { color: var(--plum-deep); }

/* ---------- Focus styles ---------- */
:focus-visible {
  outline: 2px solid var(--plum);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--plum);
  color: var(--cream);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  z-index: 100;
  font-weight: 600;
  font-size: 0.9rem;
}
.skip-link:focus {
  top: 1rem;
  color: var(--cream);
}

/* ---------- Nav ---------- */
.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--plum-deep);
  letter-spacing: -0.01em;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.nav-links a {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a:hover { color: var(--plum); }

.nav-cta {
  background: var(--plum);
  color: var(--cream) !important;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  transition: background 0.15s ease;
}

.nav-cta:hover { background: var(--plum-deep); color: var(--cream) !important; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
  overflow: hidden;
}

.hero-inner { position: relative; z-index: 2; max-width: 780px; }

.eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 1.25rem;
}

.hero h1 { margin-bottom: 1.75rem; }

.lede {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 2.25rem;
}

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

.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.97rem;
  transition: all 0.15s ease;
  border: 1.5px solid transparent;
}

.btn-primary {
  background: var(--plum);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--plum-deep);
  color: var(--cream);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--plum-deep);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--plum);
  color: var(--plum);
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(217, 138, 79, 0.18), transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* ---------- Sections ---------- */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.section-alt {
  max-width: none;
  background: var(--cream-2);
  padding-left: 0;
  padding-right: 0;
}

.section-alt > * {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-head {
  max-width: 700px;
  margin-bottom: 3rem;
}

.section-head h2 { margin-bottom: 1rem; }

.section-lede {
  font-size: 1.1rem;
  color: var(--ink-soft);
}

/* ---------- Channels ---------- */
.channels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.channel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.2s ease;
  box-shadow: var(--shadow);
}

.channel:hover {
  transform: translateY(-2px);
  border-color: var(--plum-soft);
  box-shadow: 0 1px 2px rgba(94, 21, 56, 0.06), 0 14px 32px rgba(94, 21, 56, 0.09);
}

.channel-wide { grid-column: 1 / -1; }

.channel-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.channel h3 { margin-bottom: 0.75rem; }

.channel p {
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
}

.channel p:last-child { margin-bottom: 0; }

.channel-meta {
  font-size: 0.9rem;
  color: var(--plum);
  font-style: italic;
}

/* ---------- Work ---------- */
.work {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.work-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  color: var(--ink);
  transition: all 0.2s ease;
  box-shadow: var(--shadow);
}

.work-card:hover {
  transform: translateY(-2px);
  border-color: var(--plum-soft);
  color: var(--ink);
}

.work-card h3 { margin-bottom: 0.75rem; }

.work-card p {
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
  font-size: 0.97rem;
}

.work-link {
  color: var(--plum);
  font-weight: 600;
  font-size: 0.92rem;
}

.work-card-muted {
  background: transparent;
  border-style: dashed;
  box-shadow: none;
}
.work-card-muted:hover { transform: none; }

/* ---------- About ---------- */
.about { max-width: 760px; }

.about-text h2 { margin-bottom: 1.5rem; }

.about-text p {
  color: var(--ink-soft);
  font-size: 1.08rem;
  margin-bottom: 1.25rem;
}

.about-text strong { color: var(--ink); font-weight: 600; }

.inline-link {
  border-bottom: 1.5px solid var(--plum-soft);
  padding-bottom: 1px;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0;
  margin-top: 2rem;
}

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark-sm {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--plum-deep);
}

.footer-meta {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .channel, .work-card, .btn-primary { transition: none; }
  .channel:hover, .work-card:hover, .btn-primary:hover { transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav { padding: 1.25rem; flex-wrap: wrap; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    padding-top: 1rem;
    order: 3;
  }
  .nav-links.nav-open { display: flex; }
  .nav-links a { font-size: 1.05rem; }
  .hero { padding: 2.5rem 1.25rem 4rem; }
  .section { padding: 3.5rem 1.25rem; }
  .channels { grid-template-columns: 1fr; }
  .channel-wide { grid-column: auto; }
  .footer-inner { flex-direction: column; gap: 0.75rem; text-align: center; }
}
