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

:root {
  --teal: #5B8996;
  --teal-dark: #3D6B78;
  --gold: #855912;
  --near-black: #1D221C;
  --grey-warm: #6A6B65;
  --off-white: #F8F8F6;
}

body {
  font-family: 'Jost', sans-serif;
  color: var(--near-black);
  background: #fff;
  overflow-x: hidden;
}

/* ── ARTICLE NAV ── */
.article-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(91,137,150,0.12);
  padding: 0.75rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.article-nav-logo img {
  height: 56px;
  width: auto;
}

.article-nav-back {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-warm);
  text-decoration: none;
  text-align: center;
  transition: color 0.2s;
}

.article-nav-back:hover { color: var(--teal); }

.article-nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: flex-end;
}

.article-nav-blog {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--near-black);
  text-decoration: none;
  transition: color 0.2s;
}

.article-nav-blog:hover { color: var(--teal); }

.nav-cta {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--near-black);
  border-radius: 6px;
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--near-black);
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--near-black);
  color: white;
}

/* ── ARTICLE HEADER ── */
.article-header {
  padding: 8rem 2rem 4rem;
  background: var(--off-white);
  text-align: center;
}

.article-header-inner {
  max-width: 720px;
  margin: 0 auto;
}

.article-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 1.5rem;
}

.article-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--near-black);
  margin-bottom: 2rem;
}

.article-meta {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-warm);
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.article-meta span { color: var(--teal); }

.article-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 2.5rem auto 0;
}

/* ── ARTICLE BODY ── */
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}

.article-body p {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--grey-warm);
  line-height: 1.9;
  margin-bottom: 1.75rem;
}

.article-body p em {
  font-style: italic;
  color: var(--near-black);
}

.article-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--near-black);
  margin: 3rem 0 1.25rem;
  line-height: 1.3;
}

.article-rule {
  width: 36px;
  height: 1px;
  background: rgba(91,137,150,0.3);
  margin: 2.5rem 0;
}

/* ── ARTICLE CTA ── */
.article-cta {
  margin: 3rem 0 4rem;
  padding: 2.5rem 3rem;
  background: var(--off-white);
  border-left: 3px solid var(--teal);
}

.article-cta p {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--near-black);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.btn-primary {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--teal);
  color: white;
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s;
}

.btn-primary:hover { background: var(--teal-dark); }

/* ── FOOTER ── */
footer {
  background: #1A1A1A;
  padding: 5rem 2rem 3rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 5rem;
  align-items: start;
  justify-content: center;
}

.footer-logo img {
  height: 100px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-contact h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: white;
  margin-bottom: 1.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  font-size: 1rem;
  color: white;
  opacity: 0.7;
  flex-shrink: 0;
}

.footer-contact-item a {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-item a:hover { color: white; }

.footer-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-nav a {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover { color: white; }

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  color: white;
  text-decoration: none;
  transition: border-color 0.2s;
}

.footer-social a:hover { border-color: white; }

.copyright {
  background: #000;
  padding: 1rem 2rem;
  text-align: center;
}

.copyright p {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.45);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .article-nav { grid-template-columns: 1fr 1fr; }
  .article-nav-back { display: none; }
  .article-nav-right { gap: 1rem; }
  .article-cta { padding: 2rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 3rem; }
}
