@import "tailwindcss";
@import "tw-animate-css";
@import "../vendor/shadcn-tailwind-4.13.0.css";

:root {
  --paper: #f3efe8;
  --ink: #1c1720;
  --plum: #4b173d;
  --plum-dark: #25101f;
  --ruby: #b62f54;
  --coral: #e47a65;
  --lime: #d9ef73;
  --lavender: #d8c6df;
  --line: rgba(28, 23, 32, 0.18);
  --sans: Arial, Helvetica, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky; z-index: 50; top: 0; display: grid;
  grid-template-columns: 1fr auto 1fr; align-items: center; gap: 32px;
  min-height: 76px; padding: 0 4.5vw; border-bottom: 1px solid var(--line);
  background: rgba(243, 239, 232, 0.91); backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 12px; width: max-content; }
.brand span { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; background: var(--plum); color: white; font-family: var(--serif); font-size: 15px; }
.brand strong { font-size: 14px; letter-spacing: -0.01em; }
.site-header nav { display: flex; gap: 28px; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.site-header nav a, .text-link, .header-contact { position: relative; }
.site-header nav a::after, .text-link::after { position: absolute; right: 0; bottom: -6px; left: 0; height: 1px; background: currentColor; content: ""; transform: scaleX(0); transform-origin: right; transition: transform 180ms ease; }
.site-header nav a:hover::after, .text-link:hover::after { transform: scaleX(1); transform-origin: left; }
.header-contact { justify-self: end; padding: 11px 17px; border: 1px solid var(--ink); border-radius: 999px; font-size: 12px; font-weight: 700; transition: background 180ms ease, color 180ms ease; }
.header-contact:hover { background: var(--ink); color: var(--paper); }

.hero { position: relative; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr); align-items: center; gap: clamp(44px, 7vw, 110px); min-height: calc(100vh - 76px); overflow: hidden; padding: 8vh 7vw 9vh; }
.hero::before { position: absolute; top: 4%; left: 48%; width: 420px; height: 420px; border: 1px solid rgba(75, 23, 61, 0.17); border-radius: 50%; content: ""; }
.eyebrow, .section-kicker { margin: 0 0 25px; color: var(--ruby); font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.hero h1 { max-width: 860px; margin: 0; font-family: var(--serif); font-size: clamp(58px, 7.7vw, 122px); font-weight: 400; letter-spacing: -0.065em; line-height: 0.82; }
.hero h1 span { display: block; color: var(--plum); font-style: italic; }
.hero-intro { max-width: 650px; margin: 38px 0 0; color: #564d55; font-size: clamp(17px, 1.35vw, 21px); line-height: 1.58; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.primary-button { display: inline-flex; align-items: center; gap: 24px; padding: 16px 22px; border-radius: 999px; background: var(--plum); color: white; font-size: 13px; font-weight: 700; transition: transform 180ms ease, background 180ms ease; }
.primary-button:hover { background: var(--ruby); transform: translateY(-2px); }
.text-link { font-size: 13px; font-weight: 700; }
.portrait-wrap { position: relative; z-index: 1; width: min(100%, 560px); justify-self: center; }
.portrait-frame { position: relative; overflow: hidden; aspect-ratio: 0.83; border-radius: 45% 45% 8px 8px; background: var(--lavender); box-shadow: 26px 28px 0 var(--plum); }
.portrait-frame::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(35, 16, 31, 0.18)); content: ""; }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.portrait-note { position: absolute; z-index: 3; display: flex; flex-direction: column; padding: 14px 18px; border: 1px solid rgba(255, 255, 255, 0.55); background: rgba(243, 239, 232, 0.93); box-shadow: 0 12px 30px rgba(37, 16, 31, 0.12); font-size: 12px; font-weight: 700; line-height: 1.35; backdrop-filter: blur(12px); }
.portrait-note span { color: var(--plum); font-family: var(--serif); font-size: 34px; font-style: italic; font-weight: 400; }
.portrait-note small { margin-top: 3px; color: #736972; font-size: 9px; letter-spacing: 0.06em; text-transform: uppercase; }
.portrait-note--top { top: 12%; left: -56px; }
.portrait-note--bottom { right: -36px; bottom: 9%; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #ebe4da; }
.stats div { display: flex; min-height: 160px; flex-direction: column; justify-content: center; padding: 30px 4.5vw; border-right: 1px solid var(--line); }
.stats div:last-child { border-right: 0; }
.stats strong { color: var(--plum); font-family: var(--serif); font-size: clamp(44px, 4.8vw, 76px); font-style: italic; font-weight: 400; line-height: 0.9; }
.stats span { margin-top: 14px; color: #6d636b; font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }

.manifesto { display: grid; grid-template-columns: 1fr 3fr; gap: 5vw; padding: clamp(90px, 12vw, 180px) 8vw; }
.manifesto blockquote { max-width: 1100px; margin: 0; font-family: var(--serif); font-size: clamp(38px, 5vw, 78px); letter-spacing: -0.045em; line-height: 1.08; }
.section-heading { display: grid; grid-template-columns: 1fr 3fr; gap: 5vw; margin-bottom: 64px; }
.section-heading h2 { max-width: 940px; margin: 0; font-family: var(--serif); font-size: clamp(44px, 5.7vw, 84px); font-weight: 400; letter-spacing: -0.05em; line-height: 0.98; }
.section-heading--light h2, .section-heading--light .section-kicker { color: var(--paper); }
.expertise, .timeline, .press, .education { padding: clamp(90px, 10vw, 150px) 7vw; }

.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.expertise-grid article { min-height: 340px; padding: 30px 34px 38px 0; border-right: 1px solid var(--line); }
.expertise-grid article + article { padding-left: 34px; }
.expertise-grid article:last-child { border-right: 0; }
.expertise-index { color: var(--ruby); font-family: var(--serif); font-style: italic; }
.expertise-grid h3 { max-width: 300px; margin: 84px 0 22px; font-family: var(--serif); font-size: clamp(34px, 3.2vw, 50px); font-weight: 400; letter-spacing: -0.04em; line-height: 1; }
.expertise-grid p { max-width: 390px; margin: 0; color: #655b63; font-size: 15px; line-height: 1.75; }

.impact, .voices { padding: clamp(90px, 10vw, 150px) 7vw; background: var(--plum-dark); color: var(--paper); }
.case { display: grid; grid-template-columns: 0.75fr 1.5fr 1fr; gap: 5vw; padding: 46px 0; border-top: 1px solid rgba(243, 239, 232, 0.2); }
.case:last-child { border-bottom: 1px solid rgba(243, 239, 232, 0.2); }
.case-meta span { color: var(--coral); font-family: var(--serif); font-size: 28px; font-style: italic; }
.case-meta p { margin: 26px 0 5px; font-size: 13px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.case-meta small { color: #aa9ca6; }
.case-body h3 { max-width: 650px; margin: 0 0 22px; font-family: var(--serif); font-size: clamp(32px, 3.5vw, 54px); font-weight: 400; letter-spacing: -0.04em; line-height: 1.04; }
.case-body > p, .case-highlight { margin: 0; color: #c5b9c1; font-size: 14px; line-height: 1.75; }
.case-metrics { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.case-metrics span { padding: 8px 12px; border: 1px solid rgba(217, 239, 115, 0.35); border-radius: 999px; color: var(--lime); font-size: 10px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; }
.case-highlight { padding-left: 22px; border-left: 2px solid var(--coral); }

.timeline-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding-top: 44px; }
.timeline-line { position: absolute; top: 15px; right: 0; left: 0; height: 1px; background: var(--line); }
.timeline-grid article { position: relative; padding-right: 24px; }
.timeline-grid article::before { position: absolute; top: -34px; left: 0; width: 12px; height: 12px; border: 4px solid var(--paper); border-radius: 50%; background: var(--ruby); box-shadow: 0 0 0 1px var(--ruby); content: ""; }
.timeline-grid time { color: var(--ruby); font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.timeline-grid h3 { margin: 20px 0 12px; font-family: var(--serif); font-size: 27px; font-weight: 400; }
.timeline-grid p { color: #6b6169; font-size: 14px; line-height: 1.65; }

.voices { background: var(--plum); }
.voices-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(243, 239, 232, 0.24); border-left: 1px solid rgba(243, 239, 232, 0.24); }
.voices figure { display: flex; min-height: 320px; flex-direction: column; justify-content: space-between; margin: 0; padding: 34px; border-right: 1px solid rgba(243, 239, 232, 0.24); border-bottom: 1px solid rgba(243, 239, 232, 0.24); }
.voices blockquote { margin: 0; font-family: var(--serif); font-size: clamp(24px, 2.2vw, 34px); letter-spacing: -0.03em; line-height: 1.18; }
.voices figcaption { display: flex; flex-direction: column; gap: 7px; padding-top: 30px; }
.voices figcaption strong { color: var(--lime); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.voices figcaption span { max-width: 320px; color: #cbbdc7; font-size: 11px; line-height: 1.5; }
.voices-link { display: inline-block; margin-top: 34px; border-bottom: 1px solid rgba(243, 239, 232, 0.6); color: var(--paper); font-size: 12px; font-weight: 700; line-height: 2; }

.press-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.press-card { position: relative; display: flex; min-height: 520px; overflow: hidden; flex-direction: column; border: 1px solid var(--line); background: #e9e1d7; transition: transform 220ms ease, box-shadow 220ms ease; }
.press-card:hover { z-index: 2; box-shadow: 0 24px 50px rgba(37, 16, 31, 0.15); transform: translateY(-6px); }
.press-card--1, .press-card--4 { grid-column: span 7; }
.press-card--2, .press-card--3 { grid-column: span 5; }
.press-card--3 { justify-content: space-between; background: var(--lime); }
.press-image { height: 280px; overflow: hidden; background: #cfc3ca; }
.press-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(0.78) contrast(1.02); transition: transform 500ms ease; }
.press-card:hover .press-image img { transform: scale(1.035); }
.press-card--4 .press-image img { object-position: center 30%; }
.press-card > blockquote { max-width: 560px; margin: 0; padding: 44px 36px 10px; color: var(--plum); font-family: var(--serif); font-size: clamp(34px, 3.6vw, 58px); font-style: italic; letter-spacing: -0.04em; line-height: 1.02; }
.press-content { position: relative; display: flex; flex: 1; flex-direction: column; padding: 28px 30px 32px; }
.press-content > p { margin: 0 0 18px; color: var(--ruby); font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.press-content > p span { margin-left: 8px; color: #7b7078; }
.press-content h3 { max-width: 650px; margin: 0 0 14px; padding-right: 40px; font-family: var(--serif); font-size: clamp(28px, 2.7vw, 42px); font-weight: 400; letter-spacing: -0.035em; line-height: 1.04; }
.press-description { max-width: 650px; color: #665c64; font-size: 13px; line-height: 1.65; }
.press-arrow { position: absolute; top: 26px; right: 28px; font-size: 22px; }

.education { border-top: 1px solid var(--line); }
.education-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.education-grid > div { min-height: 220px; padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.education-grid span { color: var(--ruby); font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.education-grid h3 { max-width: 560px; margin: 48px 0 12px; font-family: var(--serif); font-size: clamp(27px, 2.7vw, 40px); font-weight: 400; letter-spacing: -0.035em; line-height: 1.05; }
.education-grid p { margin: 0; color: #756a72; font-size: 13px; }
.languages { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.languages span { padding: 10px 15px; border: 1px solid var(--line); border-radius: 999px; font-size: 10px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; }

.contact { padding: 100px 7vw 34px; background: var(--lime); color: var(--plum-dark); }
.contact .section-kicker { color: var(--plum); }
.contact h2 { max-width: 1200px; margin: 0; font-family: var(--serif); font-size: clamp(54px, 8vw, 126px); font-weight: 400; letter-spacing: -0.065em; line-height: 0.9; }
.contact-links { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 58px; }
.contact-links a { padding: 14px 19px; border: 1px solid var(--plum-dark); border-radius: 999px; font-size: 12px; font-weight: 800; transition: background 180ms ease, color 180ms ease; }
.contact-links a:hover { background: var(--plum-dark); color: var(--lime); }
.footer-meta { display: flex; justify-content: space-between; margin-top: 110px; padding-top: 24px; border-top: 1px solid rgba(37, 16, 31, 0.35); font-size: 10px; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr 0.8fr; gap: 50px; padding-right: 6vw; padding-left: 6vw; }
  .portrait-note--top { left: -28px; }
  .portrait-note--bottom { right: -20px; }
  .case { grid-template-columns: 0.65fr 1.35fr; }
  .case-highlight { grid-column: 2; }
  .voices-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .site-header { min-height: 66px; padding: 0 20px; }
  .brand strong { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 70px 24px 90px; }
  .hero::before { display: none; }
  .hero h1 { font-size: clamp(54px, 16vw, 78px); }
  .hero-intro { margin-top: 30px; font-size: 17px; }
  .portrait-wrap { width: calc(100% - 26px); margin-top: 26px; }
  .portrait-frame { box-shadow: 14px 16px 0 var(--plum); }
  .portrait-note--top { top: 7%; left: -12px; }
  .portrait-note--bottom { right: -10px; bottom: 5%; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats div { min-height: 130px; padding: 24px; border-bottom: 1px solid var(--line); }
  .stats div:nth-child(2) { border-right: 0; }
  .manifesto, .section-heading { grid-template-columns: 1fr; gap: 15px; }
  .manifesto, .expertise, .impact, .timeline, .voices, .press, .education { padding: 82px 24px; }
  .manifesto blockquote { font-size: 42px; }
  .section-heading { margin-bottom: 42px; }
  .section-heading h2 { font-size: 46px; }
  .expertise-grid, .voices-grid, .education-grid { grid-template-columns: 1fr; }
  .expertise-grid article, .expertise-grid article + article { min-height: auto; padding: 28px 0 40px; border-right: 0; border-bottom: 1px solid var(--line); }
  .expertise-grid h3 { margin-top: 50px; }
  .case { grid-template-columns: 1fr; gap: 30px; padding: 40px 0; }
  .case-highlight { grid-column: auto; }
  .timeline-grid { grid-template-columns: 1fr; gap: 42px; padding: 0 0 0 26px; }
  .timeline-line { top: 0; right: auto; bottom: 0; left: 5px; width: 1px; height: auto; }
  .timeline-grid article::before { top: 3px; left: -26px; }
  .voices figure { min-height: 280px; padding: 28px; }
  .press-grid { grid-template-columns: 1fr; }
  .press-card--1, .press-card--2, .press-card--3, .press-card--4 { grid-column: auto; }
  .press-card { min-height: 480px; }
  .press-card > blockquote { font-size: 40px; }
  .education-grid > div { min-height: 190px; padding: 28px; }
  .education-grid h3 { margin-top: 40px; }
  .contact { padding: 78px 24px 28px; }
  .contact h2 { font-size: 58px; }
  .contact-links { flex-direction: column; align-items: flex-start; }
  .footer-meta { gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
