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

    :root {
      --white: #FDFCFB;
      --beige: #E1D2C9;
      --gold: #C09068;
      --red: #EB2E49;
      --dark: #2A2220;
      --mid: #6B5E59;
      --light-bg: #F7F3F0;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Montserrat', sans-serif;
      background: var(--white);
      color: var(--dark);
      overflow-x: hidden;
    }

    h1, h2, h3, .serif { font-family: 'Cormorant Garamond', serif; }

    .container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

    /* ── BUTTONS ── */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--red);
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 16px 36px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.25s, transform 0.2s;
    }
    .btn-primary:hover { background: #C4243D; transform: translateY(-1px); }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: var(--dark);
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 13px 30px;
      border: 1.5px solid var(--dark);
      cursor: pointer;
      text-decoration: none;
      transition: all 0.25s;
    }
    .btn-outline:hover { background: var(--dark); color: #fff; }

    .section-label {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
      display: block;
    }

    /* ── FADE IN ── */
    .fade-in {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }
    .fade-in.visible { opacity: 1; transform: translateY(0); }
    .fade-in.delay-1 { transition-delay: 0.1s; }
    .fade-in.delay-2 { transition-delay: 0.2s; }
    .fade-in.delay-3 { transition-delay: 0.35s; }

    /* ── SUBPAGE HEADER ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 0 40px;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(253, 252, 251, 0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--beige);
      transition: box-shadow 0.3s;
    }
    nav.scrolled { box-shadow: 0 2px 20px rgba(42,34,32,0.06); }

    .nav-logo-img {
      height: 24px;
      width: auto;
      display: block;
    }

    .back-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--dark);
      text-decoration: none;
      transition: color 0.2s, gap 0.2s;
    }
    .back-link svg { transition: transform 0.2s; }
    .back-link:hover { color: var(--red); gap: 14px; }
    .back-link:hover svg { transform: translateX(-3px); }

    /* ── ARTICLE HEADER ── */
    #article-head {
      padding-top: 72px;
      background: var(--light-bg);
    }
    .article-head-inner {
      max-width: 820px;
      margin: 0 auto;
      padding: 88px 40px 56px;
      text-align: center;
    }
    .article-tag {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
      display: block;
    }
    .article-head-inner h1 {
      font-size: clamp(38px, 4.6vw, 64px);
      font-weight: 300;
      line-height: 1.08;
      letter-spacing: -0.01em;
      margin-bottom: 32px;
      text-wrap: balance;
    }
    .article-head-inner h1 em { font-style: italic; color: var(--gold); }

    .article-meta {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      justify-content: center;
      font-size: 13px;
      color: var(--mid);
    }
    .article-meta .author { display: inline-flex; align-items: center; gap: 11px; }
    .article-meta .author-avatar {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--beige);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 15px;
      color: var(--dark);
      flex-shrink: 0;
      overflow: hidden;
    }
    .author-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .article-meta .author strong { color: var(--dark); font-weight: 600; }
    .article-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--beige); }

    /* ── FEATURED IMAGE ── */
    .article-figure {
      max-width: 1080px;
      margin: -40px auto 0;
      padding: 0 40px;
    }
    .article-figure-inner {
      width: 100%;
      aspect-ratio: 16/9;
      background: var(--white);
      border: 1px solid var(--beige);
      overflow: hidden;
    }
    .article-figure-inner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .article-figure .img-placeholder { height: 100%; }

    /* ── PLACEHOLDER IMAGES ── */
    .img-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-family: 'DM Sans', monospace;
      font-size: 11px;
      letter-spacing: 0.05em;
      color: rgba(42,34,32,0.35);
    }
    .img-placeholder svg { opacity: 0.3; }
    .striped {
      background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 8px,
        rgba(42,34,32,0.04) 8px,
        rgba(42,34,32,0.04) 16px
      );
    }

    /* ── ARTICLE BODY ── */
    #article-body { padding: 80px 0 110px; }
    .prose {
      max-width: 720px;
      margin: 0 auto;
      padding: 0 40px;
    }
    .prose .lead {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(22px, 2.3vw, 28px);
      font-weight: 400;
      line-height: 1.5;
      color: var(--dark);
      margin-bottom: 40px;
    }
    .prose p {
      font-size: 17px;
      font-weight: 300;
      line-height: 1.85;
      color: var(--mid);
      margin-bottom: 26px;
    }
    .prose p strong { color: var(--dark); font-weight: 600; }
    .prose p a {
      color: var(--red);
      text-decoration: underline;
      text-underline-offset: 3px;
      text-decoration-thickness: 1px;
    }
    .prose p a:hover { color: #C4243D; }
    .prose .article-cta {
      margin-top: 44px;
      padding: 26px 30px;
      background: var(--light-bg);
      border-left: 3px solid var(--gold);
      font-size: 16px;
      color: var(--dark);
    }
    .prose h2 {
      font-size: clamp(28px, 2.8vw, 36px);
      font-weight: 300;
      line-height: 1.2;
      color: var(--dark);
      margin: 56px 0 22px;
    }
    .prose h2 em { font-style: italic; color: var(--gold); }
    .prose h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(21px, 2vw, 25px);
      font-weight: 500;
      line-height: 1.25;
      color: var(--dark);
      margin: 38px 0 14px;
    }
    .prose ul {
      list-style: none;
      display: grid;
      gap: 16px;
      margin: 0 0 32px;
    }
    .prose ul li {
      display: grid;
      grid-template-columns: 22px 1fr;
      gap: 14px;
      align-items: start;
      font-size: 16.5px;
      font-weight: 300;
      line-height: 1.6;
      color: var(--dark);
    }
    .prose ul li .marker {
      width: 22px; height: 22px;
      flex-shrink: 0;
      margin-top: 2px;
      color: var(--red);
    }
    .pull-quote {
      margin: 48px 0;
      padding: 8px 0 8px 36px;
      border-left: 3px solid var(--red);
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(24px, 2.6vw, 32px);
      font-style: italic;
      font-weight: 400;
      line-height: 1.4;
      color: var(--dark);
    }
    .pull-quote cite {
      display: block;
      margin-top: 18px;
      font-family: 'Montserrat', sans-serif;
      font-size: 12px;
      font-style: normal;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
    }

    /* ── AUTHOR BOX ── */
    .author-box {
      max-width: 720px;
      margin: 64px auto 0;
      padding: 36px 40px;
      display: flex;
      gap: 24px;
      align-items: center;
      background: var(--light-bg);
      border-top: 3px solid var(--red);
    }
    .author-box .author-avatar {
      width: 64px; height: 64px;
      border-radius: 50%;
      background: var(--beige);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      color: var(--dark);
      flex-shrink: 0;
      overflow: hidden;
    }
    .author-box .author-eyebrow {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 6px;
    }
    .author-box .author-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      color: var(--dark);
      margin-bottom: 8px;
    }
    .author-box p {
      font-size: 13.5px;
      font-weight: 300;
      line-height: 1.7;
      color: var(--mid);
    }

    /* ── RELATED ── */
    #related {
      padding: 96px 0 120px;
      background: var(--light-bg);
    }
    .related-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 48px;
      flex-wrap: wrap;
      gap: 20px;
    }
    .related-head h2 {
      font-size: clamp(30px, 3vw, 44px);
      font-weight: 300;
    }
    .related-head h2 em { font-style: italic; color: var(--gold); }
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
    .blog-card {
      background: var(--white);
      border: 1px solid var(--beige);
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .blog-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(42,34,32,0.09);
    }
    .blog-card-img {
      width: 100%;
      aspect-ratio: 16/9;
      background: var(--light-bg);
      overflow: hidden;
    }
    .blog-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .blog-card-img .img-placeholder { height: 100%; }
    .blog-card-body {
      padding: 28px 28px 32px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .blog-tag {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .blog-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 400;
      line-height: 1.25;
      color: var(--dark);
    }
    .blog-card p {
      font-size: 13px;
      line-height: 1.75;
      color: var(--mid);
      flex: 1;
    }
    .training-link {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--red);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: gap 0.2s;
    }
    .training-link:hover { gap: 14px; }

    /* ── FOOTER ── */
    footer {
      background: #505050;
      padding: 72px 0 40px;
      color: rgba(255,255,255,0.6);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 60px;
    }
    .footer-brand .nav-logo {
      color: #fff;
      font-size: 24px;
      font-family: 'Cormorant Garamond', serif;
      text-decoration: none;
    }
    .footer-logo { display: inline-block; line-height: 0; }
    .footer-logo img {
      height: 30px;
      width: auto;
      display: block;
    }
    .footer-brand p {
      margin-top: 16px;
      font-size: 13px;
      line-height: 1.7;
      color: rgba(255,255,255,0.45);
      max-width: 260px;
    }
    .footer-social { display: flex; gap: 12px; margin-top: 24px; }
    .social-link {
      width: 36px; height: 36px;
      border: 1px solid rgba(255,255,255,0.2);
      display: flex; align-items: center; justify-content: center;
      text-decoration: none;
      color: rgba(255,255,255,0.6);
      transition: all 0.2s;
    }
    .social-link:hover { border-color: var(--red); color: #fff; background: var(--red); }
    .footer-col h4 {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      margin-bottom: 20px;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a {
      font-size: 14px;
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: #fff; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 32px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: rgba(255,255,255,0.3);
    }

    /* ── MOBILE ── */
    @media (max-width: 900px) {
      .container { padding: 0 24px; }
      nav { padding: 0 24px; }
      .article-head-inner { padding: 64px 24px 48px; }
      .article-figure { padding: 0 24px; }
      .prose { padding: 0 24px; }
      .author-box { flex-direction: column; align-items: flex-start; text-align: left; }
      .blog-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
      .footer-brand { grid-column: 1 / -1; }
    }
    @media (max-width: 560px) {
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
      .article-meta { flex-direction: column; gap: 10px; }
      .article-meta .dot { display: none; }
    }
/* ── NAV LOGO (icon + wordmark) ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-icon {
  height: 34px;
  width: auto;
  display: block;
}

/* ── NAV LOGO: mobile stacked & smaller ── */
@media (max-width: 900px) {
  .nav-logo {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  .nav-logo-icon { height: 26px; }
  .nav-logo-img { height: 17px; }
}
