:root{
  --cream:#fffaf1;
  --ink:#19110f;
  --maroon:#762133;
  --purple:#7b4ab0;
  --line:#eadfca;
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:Georgia, "Times New Roman", serif;
}

.site-header{
  height:80px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:40px;
  border-bottom:1px solid var(--line);
}

.brand{
    display:flex;
    align-items:center;
    gap:18px;

    text-decoration:none;
    color:var(--maroon);

    font-family:"Libre Caslon Display", serif;

    font-size:2.55rem;
    font-weight:400;
    letter-spacing:-0.02em;
}

.brand img{
  width:82px;
  height:82px;
  object-fit:contain;
  border-radius:50%;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:24px;

    font-family:"EB Garamond", serif;

    font-size:1.15rem;
    font-weight:600;
    letter-spacing:.02em;

    white-space:nowrap;
    text-transform:uppercase;
        padding-top:8px;
    padding-bottom:8px;
    
    
}

.nav-links a{
    color:var(--ink);
    text-decoration:none;
    transition:.2s ease;
}

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

.nav-links a{
  color:var(--ink);
  text-decoration:none;
}

.hero{
  max-width:1360px;
  margin:0 auto;
  padding:72px 64px 72px;
  display:grid;
  grid-template-columns:minmax(0,1fr) 520px;
  gap:80px;
  align-items:center;
}

.eyebrow{
  margin:0 0 22px;
  color:var(--purple);
  text-transform:uppercase;
  letter-spacing:.11em;
  font-size:.9rem;
  font-weight:700;
}

h1{
  margin:0;
  max-width:880px;
  color:var(--maroon);
  font-size:clamp(6rem,9.5vw,9.6rem);
  line-height:.92;
  font-weight:500;
  letter-spacing:-.055em;
}

.lede{
  max-width:760px;
  margin:34px 0 0;
  font-family:Arial, sans-serif;
  font-size:1.35rem;
  line-height:1.55;
}

.actions{
  display:flex;
  gap:14px;
  margin-top:32px;
}

.button{
  padding:15px 24px;
  border:1px solid var(--maroon);
  border-radius:999px;
  color:var(--maroon);
  text-decoration:none;
  font-family:Arial, sans-serif;
  font-weight:700;
}

.primary{
  background:var(--maroon);
  color:#fff;
}

.feature-card{
  width:520px;
  justify-self:center;
}

.magazine-cover{
  width:100%;
  height:auto;
  display:block;
  border-radius:3px;
  box-shadow:0 22px 42px rgba(0,0,0,.18);
}

.minimal-section{
  max-width:1220px;
  margin:0 auto 70px;
  padding:26px 64px;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  gap:24px;
}

.minimal-section h3{
  margin:0 0 8px;
  color:var(--maroon);
  font-size:2rem;
}

.minimal-section p,
.program-links{
  margin:0;
  white-space:nowrap;
  line-height:1.6;
}

.text-link{
  color:var(--maroon);
  font-weight:700;
  text-decoration:none;
  white-space:nowrap;
}

@media(max-width:900px){
  .site-header{
    height:auto;
    padding:18px 22px;
  }

  .nav-links{
    display:none;
  }

.hero{
    max-width:1360px;
    margin:0 auto;
    padding:56px 64px 72px;
    display:grid;
    grid-template-columns:minmax(0,1fr) 520px;
    gap:80px;
    align-items:center;
}
  h1{
    font-size:4.9rem;
  }

  .feature-card{
    width:100%;
    max-width:520px;
    margin-top:42px;
  }

  .minimal-section{
    margin:0 24px 50px;
    padding:26px 0;
    display:block;
  }

  .minimal-section p,
  .program-links{
    white-space:normal;
  }
  
  
  .brand{
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:2.45rem;
  font-weight:600;
  letter-spacing:-.02em;
}

.nav-links{
  font-family:"Cinzel", Georgia, serif;
  font-size:.92rem;
  font-weight:600;
  letter-spacing:.03em;
}

.join-button{
  padding:9px 18px;
  border:1px solid var(--maroon);
  border-radius:999px;
  background:var(--maroon);
  color:var(--cream) !important;
}
}

@media(max-width:700px){

  .site-header{
    padding:14px 18px;
    height:auto;
  }

  .brand{
    font-size:1.8rem;
    gap:12px;
  }

  .brand img{
    width:56px;
    height:56px;
  }

  .nav-links{
    display:none;
  }

  .hero{
    display:block;
    padding:36px 22px 48px;
  }

  h1{
    font-size:clamp(4rem,18vw,5.4rem);
    line-height:.9;
    letter-spacing:-.05em;
  }

  .lede{
    max-width:100%;
    font-size:1.15rem;
    line-height:1.5;
  }

  .actions{
    flex-direction:column;
    align-items:flex-start;
  }

  .feature-card{
    width:100%;
    max-width:360px;
    margin:42px auto 0;
  }

  .magazine-cover{
    width:100%;
    max-width:100%;
  }

  .minimal-section{
    margin:0 22px 44px;
    padding:24px 0;
    display:block;
  }

  .program-links{
    white-space:normal;
  }
}