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

body {
  background: #fff;
  color: #111;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

h1, h2, h3, .logo {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 5%;
  background: #fff;
}

.logo {
  font-size: 1.2rem;
}

nav a {
  margin-left: 28px;
  text-decoration: none;
  color: #111;
  font-size: .95rem;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  padding: 50px 5% 90px;
  align-items: center;
  gap: 40px;
}

h1 {
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: .92;
  margin-bottom: 30px;
}

.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #b8842f;
  font-size: .78rem;
  font-weight: bold;
  margin-bottom: 18px;
}

.hero-text {
  font-size: 1.25rem;
  margin: 26px 0;
  max-width: 650px;
}

.buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 26px;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid #b8842f;
}

.gold {
  background: #b8842f;
  color: #fff;
}

.outline {
  color: #b8842f;
  background: transparent;
}

.hero-graphic {
  position: relative;
  height: 420px;
  border-radius: 50%;
}

.circle {
  position: absolute;
  border: 1px solid rgba(0,0,0,.22);
  border-radius: 50%;
}

.one {
  width: 340px;
  height: 340px;
  left: 70px;
  top: 35px;
}

.two {
  width: 250px;
  height: 250px;
  left: 150px;
  top: 85px;
}

.three {
  width: 420px;
  height: 420px;
  left: 10px;
  top: 0;
  border-color: rgba(184,132,47,.35);
}

.dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #b8842f;
  border-radius: 50%;
}

.d1 { left: 70px; top: 205px; }
.d2 { left: 330px; top: 105px; }
.d3 { left: 260px; top: 330px; background:#111; }

.line {
  position: absolute;
  background: rgba(184,132,47,.65);
}

.horizontal {
  height: 1px;
  width: 420px;
  left: 0;
  top: 210px;
}

.vertical {
  width: 1px;
  height: 360px;
  left: 210px;
  top: 30px;
}

.definition {
  display: grid;
  grid-template-columns: 1.3fr .8fr;
  gap: 70px;
  padding: 90px 7%;
  background: #faf8f5;
}

.definition h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.15;
}

.definition p {
  font-size: 1.15rem;
}

.capacities,
.books {
  padding: 90px 5%;
}

.center {
  text-align: center;
}

.capacity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 42px;
}

.capacity-card {
  border: 1px solid #e4e0d8;
  padding: 36px 24px;
  text-align: center;
}

.icon {
  color: #b8842f;
  font-size: 3rem;
  margin-bottom: 16px;
}

.capacity-card h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.book-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  margin-top: 45px;
}

.book-cover {
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 1.1rem;
}

.book-cover.light {
  background: #f3f1ec;
  color: #111;
}

.book-cover.dark {
  background: #111820;
  color: #fff;
}

.book-card h3 {
  font-family: Arial, sans-serif;
  font-weight: bold;
  margin-bottom: 8px;
}

.speaking {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  padding: 85px 7%;
  background: #07111d;
  color: #fff;
}

.speaking h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.15;
}

.gold-text {
  color: #d6a85d;
}

.programs {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.programs span {
  border: 1px solid #d6a85d;
  color: #d6a85d;
  padding: 10px 16px;
  border-radius: 24px;
  font-size: .9rem;
}

.about {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 35px;
  align-items: center;
  padding: 70px 7%;
  background: #faf8f5;
}

.monogram {
  width: 96px;
  height: 96px;
  border: 1px solid #b8842f;
  color: #b8842f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 2rem;
}

footer {
  background: #111;
  color: #ddd;
  padding: 28px 7%;
  font-size: .9rem;
}

@media (max-width: 850px) {
  .site-header {
    flex-direction: column;
    gap: 18px;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  nav a {
    margin-left: 0;
  }

  .hero,
  .definition,
  .speaking,
  .about {
    grid-template-columns: 1fr;
  }

  .hero-graphic {
    height: 300px;
    transform: scale(.75);
    transform-origin: left top;
  }

  .capacity-grid,
  .book-grid {
    grid-template-columns: 1fr;
  }
}
/* Ideas + Article Pages */

.logo a {
  color: #111;
  text-decoration: none;
}

.ideas-hero,
.article-hero {
  padding: 70px 7% 40px;
  background: #fff;
}

.ideas-title,
.article-title {
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: .95;
  max-width: 900px;
}

.ideas-subtitle,
.article-subtitle {
  font-size: 1.35rem;
  max-width: 720px;
  margin-top: 26px;
  color: #333;
}

.article-meta {
  margin-top: 22px;
  color: #777;
}

.featured-essay {
  padding: 70px 7%;
  background: #faf8f5;
}

.essay-card {
  background: #fff;
  border: 1px solid #e4e0d8;
  padding: 48px;
  max-width: 900px;
}

.essay-card h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.1;
}

.essay-card p {
  font-size: 1.2rem;
  margin: 18px 0 30px;
}

.essay-groups {
  padding: 80px 7%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.group {
  border-top: 2px solid #b8842f;
  padding-top: 24px;
}

.group h2 {
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.group ul {
  list-style: none;
}

.group li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.group a {
  color: #111;
  text-decoration: none;
}

.group a:hover {
  color: #b8842f;
}

.article-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 7%;
}

.article-content p {
  font-size: 1.18rem;
  margin-bottom: 24px;
}

.article-content h2 {
  font-size: 2.4rem;
  margin: 60px 0 22px;
}

.opening-quote {
  text-align: center;
  margin: 0px 0 60px;
  padding: 50px 0;
  border-top: 1px solid #d6a85d;
  border-bottom: 1px solid #d6a85d;
}

.opening-quote p {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 22px;
}

.foundations-section {
  padding: 90px 7%;
  background: #faf8f5;
}

.foundation-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.foundation-card {
  background: #fff;
  border: 1px solid #e4e0d8;
  padding: 32px 24px;
}

.foundation-card h3 {
  font-size: 1.7rem;
}

.foundation-card h4 {
  color: #b8842f;
  font-size: 1.05rem;
  margin: 8px 0 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.foundation-question {
  font-family: Georgia, serif;
  font-size: 1.4rem !important;
  color: #111;
  margin-bottom: 18px !important;
}

.pull-quote {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.15;
  text-align: center;
  margin: 70px 0;
  padding: 45px 0;
  border-top: 1px solid #d6a85d;
  border-bottom: 1px solid #d6a85d;
}

.continue-reading {
  padding: 80px 7%;
  background: #fff;
}

.essay-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.essay-link-card {
  border: 1px solid #e4e0d8;
  padding: 30px;
  background: #faf8f5;
}

.essay-link-card h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

@media (max-width: 850px) {
  .essay-groups,
  .foundation-grid,
  .essay-links {
    grid-template-columns: 1fr;
  }

  .essay-card {
    padding: 32px;
  }

  .article-content {
    padding: 30px 7%;
  }
}
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-image-block {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-block img {
    width: 110%;
    max-width: none;
    height: auto;
    display: block;
}

@media (max-width: 900px) {

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-image-block {
        order: -1;
    }
}
.hero-image-block {
    justify-content: flex-end;
    overflow: visible;
}
