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

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --rule: #d0d0d0;
  --muted: #6a6a6a;
  --max-w: 1200px;
  --nav-h: 72px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  font-weight: 300;
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  filter: grayscale(100%);
}

a {
  color: inherit;
  text-decoration: none;
}

/* ─── NAVIGATION ─────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
}

.nav__inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo img {
  height: 36px;
  width: auto;
}

.nav__links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav__links a {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 3px;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--black);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  transform: scaleX(1);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--black);
  transition: transform 0.3s, opacity 0.3s;
}

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  padding: 32px 48px;
  z-index: 99;
}

.nav__mobile.open {
  display: block;
}

.nav__mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nav__mobile a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── PAGE WRAPPER ───────────────────────────────────────── */

.page {
  padding-top: var(--nav-h);
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */

.display {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(48px, 5.5vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.display--medium {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(32px, 3.5vw, 56px);
  line-height: 1.1;
}

.label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.body-text {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: #2a2a2a;
}

.body-text--large {
  font-size: 18px;
  line-height: 1.7;
  max-width: 680px;
}

/* ─── RULES ──────────────────────────────────────────────── */

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

/* ─── HOMEPAGE HERO ──────────────────────────────────────── */

.hero {
  padding: 120px 0 100px;
  border-bottom: 1px solid var(--rule);
}

.hero__eyebrow {
  margin-bottom: 40px;
}

.hero__inner {
  border-left: 1px solid var(--black);
  padding-left: 36px;
  display: inline-block;
}

.hero__headline {
  max-width: 900px;
  margin-bottom: 0;
}

/* ─── HOMEPAGE INTRO ─────────────────────────────────────── */

.intro {
  padding: 56px 0 100px;
  border-bottom: 1px solid var(--rule);
}

.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.intro__body p + p {
  margin-top: 24px;
}

/* ─── SECTION ────────────────────────────────────────────── */

.section {
  padding: 100px 0;
  border-bottom: 1px solid var(--rule);
}

.section:last-of-type {
  border-bottom: none;
}

.section__header {
  margin-bottom: 64px;
}

.section__header .label {
  margin-bottom: 20px;
}

/* ─── PEOPLE GRID ────────────────────────────────────────── */

.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.person {
  background: #f5f5f5;
  overflow: hidden;
}

.person__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}

.person:hover .person__photo {
  transform: scale(1.02);
}

.person__info {
  padding: 28px 32px 36px;
  background: var(--white);
  border-left: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.person__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 4px;
}

.person__title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.person__bio {
  font-size: 13px;
  line-height: 1.75;
  color: #3a3a3a;
  font-weight: 300;
}

/* ─── PEOPLE STANDALONE PAGE ─────────────────────────────── */

.people-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.person-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  padding: 80px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}

.person-row:first-child {
  padding-top: 0;
}

.person-row__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.person-row__content {
  padding-top: 8px;
}

.person-row__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 42px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 8px;
}

.person-row__title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}

.person-row__bio {
  font-size: 15px;
  line-height: 1.8;
  color: #2a2a2a;
  font-weight: 300;
  max-width: 580px;
}

/* ─── ABOUT ──────────────────────────────────────────────── */

.about-hero {
  padding: 120px 0 100px;
  border-bottom: 1px solid var(--rule);
}

.about-blocks {
  padding: 100px 0;
}

.about-block {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  padding: 64px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}

.about-block:first-child {
  padding-top: 0;
}

.about-block:last-child {
  border-bottom: none;
}

.about-block__label {
  padding-top: 6px;
}

.about-block__body p + p {
  margin-top: 20px;
}

/* ─── NEWS ───────────────────────────────────────────────── */

.news-hero {
  padding: 120px 0 80px;
  border-bottom: 1px solid var(--rule);
}

.news-list {
  padding: 80px 0;
}

.news-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 40px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--rule);
  transition: background 0.2s;
}

.news-item:first-child {
  padding-top: 0;
}

.news-item__num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 48px;
  font-weight: 300;
  color: #e0e0e0;
  line-height: 1;
  padding-top: 4px;
}

.news-item__source {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.news-item__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 16px;
}

.news-item__excerpt {
  font-size: 13px;
  line-height: 1.7;
  color: #5a5a5a;
  max-width: 560px;
}

.news-item__link {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--black);
  padding: 10px 20px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  margin-top: 6px;
}

.news-item__link:hover {
  background: var(--black);
  color: var(--white);
}

/* ─── CONTACT ────────────────────────────────────────────── */

.contact-hero {
  padding: 120px 0 100px;
  border-bottom: 1px solid var(--rule);
}

.contact-layout {
  border-bottom: 1px solid var(--rule);
}

.contact-layout .container {
  padding-top: 100px;
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.contact-info__heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 24px;
}

.contact-info__body {
  font-size: 15px;
  line-height: 1.75;
  color: #2a2a2a;
  max-width: 400px;
}

.contact-info__detail {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info__item label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.contact-info__item a,
.contact-info__item p {
  font-size: 15px;
  font-weight: 300;
  color: var(--black);
}

.contact-info__item a:hover {
  text-decoration: underline;
}

/* ─── FORM ───────────────────────────────────────────────── */

.form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.form__input,
.form__textarea {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  border: none;
  border-bottom: 1px solid #c0c0c0;
  padding: 12px 0;
  background: transparent;
  outline: none;
  transition: border-color 0.2s;
  color: var(--black);
  width: 100%;
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--black);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__submit {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 16px 40px;
  cursor: pointer;
  align-self: flex-start;
  transition: opacity 0.2s;
}

.form__submit:hover {
  opacity: 0.75;
}

/* ─── FOOTER ─────────────────────────────────────────────── */

.footer {
  padding: 48px 0;
  border-top: 3px solid var(--black);
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copy {
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.footer__logo img {
  height: 28px;
  width: auto;
  opacity: 0.3;
}

/* ─── UTILITIES ──────────────────────────────────────────── */

.mt-4  { margin-top: 16px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mt-16 { margin-top: 64px; }
.mb-2  { margin-bottom: 8px; }
.mb-4  { margin-bottom: 16px; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */

@media (max-width: 900px) {
  .container { padding: 0 28px; }
  .nav__inner { padding: 0 28px; }
  .footer__inner { padding: 0 28px; }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .hero { padding: 80px 0 72px; }

  .intro__grid { grid-template-columns: 1fr; gap: 40px; }

  .people-grid { grid-template-columns: 1fr; gap: 0; }
  .people-grid .person + .person { border-top: 1px solid var(--rule); }

  .person-row {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 60px 0;
  }
  .person-row__photo { max-width: 240px; }

  .about-block {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .news-item__num { display: none; }

  .contact-layout .container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 600px) {
  .display { font-size: clamp(36px, 9vw, 56px); }
  .display--medium { font-size: clamp(26px, 7vw, 40px); }
  .person-row__name { font-size: 32px; }
  .hero { padding: 60px 0 56px; }
  .section { padding: 72px 0; }
  .about-blocks { padding: 72px 0; }
  .about-block { padding: 48px 0; }
}

/* ─── ABOUT BLOCK COUNTERS ───────────────────────────────── */

.about-blocks {
  counter-reset: about-counter;
}

.about-block {
  counter-increment: about-counter;
}

.about-block__label::before {
  content: "0" counter(about-counter);
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 40px;
  font-weight: 300;
  color: #e0e0e0;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

/* ─── GRAIN TEXTURE ──────────────────────────────────────── */

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}
