/* Jordan Luke Collier — landing page styles */

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

body {
  background: #f4efe6;
  color: #2b2620;
  font-family: 'EB Garamond', Georgia, serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #7a5c3a;
  text-decoration: none;
  border-bottom: 1px solid rgba(122,92,58,0.35);
  transition: border-color .25s ease, color .25s ease;
}
a:hover { color: #4a3620; border-bottom-color: rgba(122,92,58,0.9); }

::selection { background: #e6dccb; }

.eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #a08c6f;
}

/* Top bar */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px clamp(24px, 6vw, 80px);
  max-width: 1200px;
  margin: 0 auto;
}
.wordmark {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 13px;
  color: #3a332a;
}
.nav {
  display: flex;
  gap: 28px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav a { border: none; color: #6b6157; }

/* Hero */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 60px) clamp(24px, 6vw, 80px) clamp(40px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero .eyebrow { margin-bottom: 26px; }
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 1.02;
  margin: 0 0 28px;
  letter-spacing: -0.01em;
}
.hero p {
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.6;
  max-width: 30em;
  margin: 0 0 20px;
  color: #4a4239;
}
.hero p.italic { margin-bottom: 0; font-style: italic; }
.hero-figure { margin: 0; }
.hero-figure img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 30px 70px -30px rgba(43,38,32,0.45);
}

/* Divider */
.rule-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 80px);
}
.rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(43,38,32,0.18), transparent);
}

/* Offerings */
.offerings {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) clamp(24px, 6vw, 80px);
}
.offerings .eyebrow { margin-bottom: 14px; }
.offerings h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(30px, 3.6vw, 48px);
  margin: 0 0 clamp(36px, 5vw, 64px);
  max-width: 14em;
  line-height: 1.1;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 48px);
}
.card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  line-height: 1;
  color: #d8c8ac;
}
.card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 28px;
  margin: 0;
}
.card p {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  color: #4a4239;
}
.card-link {
  margin-top: auto;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
}

/* Quote */
.quote {
  background: #2b2620;
  color: #f4efe6;
}
.quote-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 110px) clamp(24px, 6vw, 80px);
  text-align: center;
}
.quote-line {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.3;
  margin: 0 0 32px;
  color: #f0e8d8;
}
.quote-sub {
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.6;
  color: #c3b8a6;
  max-width: 34em;
}
.quote-sub a { color: #e6dccb; }

/* Footer */
.footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 64px) clamp(24px, 6vw, 80px);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: #3a332a;
}
.footer-contact {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #6b6157;
}
.footer-contact a { border: none; color: #7a5c3a; }

/* Responsive */
@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .hero-figure { order: -1; }
  .topbar { flex-wrap: wrap; gap: 10px 20px; }
  .nav { gap: 20px; }
}
