*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --tan: #dec582;
  --black: #0a0a0a;
  --terracotta: #c97b5a;
  --tan-muted: rgba(232, 217, 168, 0.55);
  --tan-faint: rgba(232, 217, 168, 0.2);
  --border: 2px solid #e8d9a8;
}

html {
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--tan);
  font-family: 'Playfair Display', Georgia, serif;
  min-height: 100vh;
}

/* ── Navigation ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 64px;
  border-bottom: var(--border);
}

nav .logo {
  height: 44px;
  width: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

nav ul a {
  color: var(--tan);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  transition: opacity 0.2s;
}

nav ul a:hover {
  opacity: 0.5;
}

/* ── Hero ── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 64px 100px;
  border-bottom: var(--border);
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--tan-muted);
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  max-width: 820px;
  margin-bottom: 32px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
}

.hero p {
  font-size: 19px;
  font-style: italic;
  font-weight: 400;
  max-width: 500px;
  line-height: 1.65;
  color: var(--tan-muted);
  margin-bottom: 56px;
}

.btn {
  display: inline-block;
  border: 2px solid var(--tan);
  color: var(--tan);
  padding: 16px 48px;
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  background: var(--tan);
  color: var(--black);
}

/* ── About ── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: var(--border);
}

.about-left {
  padding: 80px 64px;
  display: flex;
  border-right: var(--border);
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

.about-left p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--tan);
  font-weight: 400;
}

.about-left p + p {
  border-top: 1px solid var(--tan-faint);
  padding-top: 32px;
}


.about-right {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-right h2 {
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
}

.about-right a {
  color: var(--terracotta);
}

.about-right h2 em {
  font-style: italic;
  font-weight: 400;
}

.faq-tag {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--tan-muted);
  margin-bottom: 10px;
}

/* ── Directory (Members/Projects use these classes) ── */
.directory {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 64px;
  gap: 80px;
  border-bottom: var(--border);
}

.directory-block {
  width: 75%;
  max-width: 960px;
}

.directory-block-header {
  margin-bottom: 16px;
}

.directory-block-header h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.1;
  margin-top: 8px;
}

.directory-block-header h2 em {
  font-style: italic;
  font-weight: 400;
}

.directory-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border: var(--border);
}

.directory-card {
  padding: 32px 36px;
  border: 1px solid var(--tan-faint);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-icon {
  font-size: 18px;
  color: var(--tan-muted);
  line-height: 1;
}

.directory-card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.directory-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--tan-muted);
  font-weight: 400;
  flex-grow: 1;
}

.directory-card a {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  text-decoration: none;
  transition: opacity 0.2s;
}

.directory-card a:hover {
  opacity: 0.6;
}

/* ── Footer ── */
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 64px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--tan-muted);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  nav {
    padding: 20px 24px;
    flex-direction: column;
    gap: 20px;
  }

  nav ul {
    gap: 24px;
  }

  .hero {
    padding: 72px 24px 64px;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .about-left {
    padding: 56px 24px;
    border-right: none;
    border-bottom: var(--border);
  }

  .about-right {
    padding: 56px 24px;
  }

  footer {
    padding: 20px 24px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .directory {
    padding: 56px 24px;
    gap: 56px;
  }

  .directory-block {
    width: 100%;
  }

  .directory-grid {
    grid-template-columns: 1fr;
  }
}
