:root{
  --bg: #f7f5f1;
  --surface: #fbfaf7;
  --surface-strong: #f1ece4;
  --card: #fffdf9;
  --text: #1f2730;
  --muted: #5e6872;
  --line: #ddd6cb;
  --accent: #6d4c41;
  --accent-dark: #55382f;
  --navy: #22313b;
  --shadow: 0 16px 40px rgba(31, 39, 48, 0.08);
}

*{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', Arial, sans-serif;
  line-height: 1.7;
}

img{
  max-width: 100%;
  display: block;
}

a{
  color: var(--accent);
  text-decoration: none;
}

a:hover{
  text-decoration: underline;
}

.site-nav{
  background: rgba(251, 250, 247, 0.92);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.nav-inner{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  height: 150px;
}

.logo-image-link{
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-image-link:hover{
  text-decoration: none;
}

.nav-logo-image{
  height: 130px;
  width: auto;
  display: block;
}

.nav-links{
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a{
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}

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

main{
  overflow: hidden;
}

.hero-split{
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 28px 54px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.eyebrow{
  margin: 0 0 14px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-text h1{
  margin: 0 0 22px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.hero-intro{
  max-width: 560px;
  font-size: 1.16rem;
  color: var(--muted);
  margin: 0;
}

.hero-actions{
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button-primary{
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--navy);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease;
}

.button-primary:hover{
  background: #2d3f4b;
  text-decoration: none;
  transform: translateY(-1px);
}

.text-link{
  font-weight: 600;
  color: var(--accent);
}

.hero-image-wrap{
  position: relative;
}

.hero-image{
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.editorial-strip{
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 28px 70px;
}

.editorial-strip p{
  margin: 0;
  max-width: 980px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1.15;
  color: var(--navy);
}

.intro-grid,
.featured-section,
.principles-section,
.closing-section{
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

.intro-grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 42px;
  align-items: start;
  padding-bottom: 86px;
}

.section-label{
  margin: 0 0 12px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--accent);
}

.intro-copy h2,
.section-heading h2,
.closing-copy h2{
  margin: 0 0 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.25rem;
  line-height: 1.02;
  font-weight: 600;
  color: var(--navy);
}

.intro-copy p,
.closing-copy p{
  font-size: 1.05rem;
  color: var(--muted);
}

.note-card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 30px;
  box-shadow: var(--shadow);
}

.note-kicker{
  margin: 0 0 16px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--accent);
}

.note-card ul{
  margin: 0;
  padding-left: 18px;
}

.note-card li{
  margin-bottom: 12px;
  color: var(--navy);
  font-weight: 500;
}

.featured-section{
  padding-top: 12px;
  padding-bottom: 86px;
}

.section-heading{
  max-width: 760px;
  margin-bottom: 34px;
}

.feature-grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 24px;
}

.feature-card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 28px 30px;
  box-shadow: var(--shadow);
  text-decoration: none;
}

.feature-card:hover{
  text-decoration: none;
}

.feature-card-large{
  background: linear-gradient(180deg, #fffdf9 0%, #f7f2eb 100%);
}

.feature-type{
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--accent);
}

.feature-card h3{
  margin: 0 0 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1.05;
  font-weight: 600;
  color: var(--navy);
}

.feature-card p{
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.feature-link{
  display: inline-block;
  margin-top: 22px;
  font-weight: 700;
  color: var(--navy);
}

.feature-card-placeholder{
  background: #fcfaf6;
}

.principles-section{
  padding-bottom: 86px;
}

.principles-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.principle-card{
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}

.principle-card h3{
  margin: 0 0 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--navy);
}

.principle-card p{
  margin: 0;
  color: var(--muted);
}

.closing-section{
  padding-bottom: 88px;
}

.closing-copy{
  max-width: 820px;
}

.site-footer{
  border-top: 1px solid var(--line);
  padding: 26px 28px 34px;
}

.site-footer p{
  max-width: 1180px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.95rem;
}

.article-section{
  overflow: hidden;
  padding-bottom: 86px;
}

.article-body{
  max-width: 720px;
  margin: 0 auto;
  padding: 0 28px;
  color: var(--muted);
}

.article-body h2{
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.article-body p{
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.article-body a{
  color: var(--accent);
}

.site-footer a{
  display: block;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}

.site-footer a:hover{
  text-decoration: underline;
}

@media (max-width: 1100px){
  .hero-split,
  .intro-grid,
  .feature-grid,
  .principles-grid{
    grid-template-columns: 1fr;
  }

  .hero-text h1{
    font-size: 4.1rem;
  }

  .intro-copy h2,
  .section-heading h2,
  .closing-copy h2{
    font-size: 2.8rem;
  }
}

@media (max-width: 768px){
  .nav-inner{
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links{
    gap: 16px;
  }

  .hero-split{
    padding-top: 46px;
    gap: 34px;
  }

  .hero-text h1{
    font-size: 3.2rem;
  }

  .editorial-strip p{
    font-size: 1.6rem;
  }

  .intro-copy h2,
  .section-heading h2,
  .closing-copy h2{
    font-size: 2.3rem;
  }
}

/* Navy hero — applies to all article and page headers */
.article-hero,
.page-hero {
  background: var(--navy) !important;
  border-bottom: none !important;
}

.article-hero .eyebrow,
.page-hero .eyebrow {
  color: #c8a96e !important;
}

.article-hero h1,
.page-hero h1 {
  color: #ffffff !important;
}

.article-hero .subtitle,
.page-hero .subtitle {
  color: rgba(255,255,255,0.7) !important;
}