@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Nunito:wght@400;600;700;800&display=swap');

/* RESET */

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

html {
    scroll-behavior: smooth;
}

body {
    background: #FFF9F3;
    color: #333;
    font-family: 'Nunito', sans-serif;
    line-height: 1.7;
}

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

/* GLOBAL */

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

h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', serif;
    color: #405B3D;
}

h2 {
    font-size: 2.7rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

h3 {
    font-size: 1.55rem;
    line-height: 1.2;
}

p {
    font-size: 1rem;
}

.section-intro {
    max-width: 760px;
    color: #555;
    margin-bottom: 20px;
}

.eyebrow {
    color: #E97D98;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.eyebrow-small {
    color: #E97D98 !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .85rem;
}

/* HEADER */

.site-header {
    background: white;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #405B3D;
    text-decoration: none;
}

.brand img {
    height: 52px;
    width: auto;
}

.brand span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: nowrap;
}

.site-nav a {
    color: #405B3D;
    text-decoration: none;
    font-size: 0.96rem;
    font-weight: 800;
    transition: 0.2s ease;
    white-space: nowrap;
}

.site-nav a:hover {
    color: #E97D98;
}

.nav-cta {
    background: #E97D98;
    color: white !important;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 800;
    transition: 0.2s ease;
}

.nav-cta:hover {
    background: #d56d88;
    color: white !important;
}

/* HOME HERO */

.home-hero {
    min-height: 500px;
    background-image:
        linear-gradient(
            to right,
            rgba(255,249,243,1) 0%,
            rgba(255,249,243,0.96) 28%,
            rgba(255,249,243,0.55) 48%,
            rgba(255,249,243,0.12) 68%,
            rgba(255,249,243,0) 100%
        ),
        url("../images/hero-twins.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 70px 8%;
}

.home-hero-content {
    max-width: 570px;
    position: relative;
    z-index: 2;
}

.home-hero h1 {
    font-size: 4.8rem;
    font-weight: 600;
    line-height: 0.9;
    margin-bottom: 20px;
}

.home-hero-subtitle {
    max-width: 600px;
    font-size: 1.32rem;
    font-weight: 500;
    line-height: 1.55;
    color: #4a4a4a;
    margin-bottom: 28px;
}

.home-hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.home-hero-trust {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    background: rgba(255,255,255,0.86);
    padding: 14px 20px;
    border-radius: 18px;
    width: fit-content;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.home-hero-trust span {
    font-weight: 800;
    color: #2f2f2f;
}

/* PAGE HERO */

.page-hero {
    background: white;
    border-radius: 24px;
    padding: 46px 34px;
    border-left: 6px solid #E97D98;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,.03);
}

.page-hero h1 {
    font-size: 3.6rem;
    line-height: 1.05;
    margin-bottom: 12px;
}

.page-hero p {
    max-width: 700px;
    color: #666;
    font-size: 1.12rem;
}

/* BUTTONS */

.btn {
    display: inline-block;
    background: #405B3D;
    color: white;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 800;
    margin-top: 15px;
    transition: 0.2s ease;
}

.btn:hover {
    background: #31492f;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #E97D98;
}

.btn-secondary:hover {
    background: #d56d88;
}

/* CARDS */

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 25px;
}

.card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,.04);
    transition: 0.2s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,.08);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.card p {
    color: #555;
    margin-top: 8px;
    flex-grow: 1;
}

.card .btn {
    margin-top: auto;
    width: fit-content;
}

.card ul {
    margin: 12px 0 0 22px;
    padding-left: 1.3rem;
}

.card li {
    margin-bottom: 0.9rem;
    line-height: 1.7;
}

/* CARD IMAGES / BOOK COVERS */

.card-img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    border-radius: 16px;
    margin-bottom: 16px;
    background: #FCEEEF;
    padding: 10px;
}

.book-card {
    overflow: hidden;
}

.book-cover {
    width: 100%;
    height: 220px;
    object-fit: contain;
    border-radius: 16px;
    margin-bottom: 16px;
    background: #FCEEEF;
    padding: 10px;
}

/* LABELS */

.label {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.free {
    background: #E7F5EA;
    color: #2E6B3D;
}

.paid {
    background: #FCEEEF;
    color: #C25574;
}

/* FEATURE BOX */

.feature-box {
    background: #FCEEEF;
    padding: 34px;
    border-radius: 24px;
    margin: 42px 0;
}

.feature-box p {
    max-width: 780px;
    margin-bottom: 18px;
}

/* BIO / ABOUT */

.bio-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 34px;
    align-items: center;
    background: white;
    border-radius: 24px;
    padding: 34px;
    margin-bottom: 45px;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,.04);
}

.bio-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 24px;
}

.bio-content p {
    margin-bottom: 14px;
    color: #555;
}

/* ARTICLES */

.article-page {
    max-width: 820px;
    margin: 0 auto;
}

.article-page p {
    font-size: 1.08rem;
    line-height: 1.85;
    margin-bottom: 20px;
    color: #444;
}

.article-page h2 {
    margin-top: 45px;
}

.article-card {
    background: white;
    border-radius: 28px;
    padding: 40px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    margin-bottom: 40px;
}

.article-card .page-hero {
    margin-bottom: 35px;
}

.article-card p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.article-card h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.article-card ul {
    margin: 12px 0 20px 24px;
}

.article-card li {
    margin-bottom: 8px;
}

.article-section-card {
    background: #FFF9F3;
    border: 1px solid #f1e4dc;
    border-radius: 22px;
    padding: 28px;
    margin: 28px 0;
}

.article-section-card h2 {
    margin-top: 0;
}

.article-section-card h3:first-of-type {
    margin-top: 0;
}

.article-summary {
    background: #ffffff;
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
    margin: 40px 0;
}

.article-summary h2 {
    margin-top: 0;
}

.article-summary p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.article-summary p:last-child {
    margin-bottom: 0;
}

/* FOOTER */

footer {
    text-align: center;
    padding: 40px 20px;
    color: #777;
    margin-top: 60px;
    border-top: 1px solid #eee;
}

.footer-disclaimer,
.affiliate-disclaimer {
    max-width: 800px;
    margin: 0 auto 16px;
    font-size: 0.9rem;
    color: #777;
    line-height: 1.6;
}

.footer-social {
    text-align: center;
    margin-bottom: 35px;
    font-weight: 700;
}

.footer-social a {
    color: #405B3D;
    text-decoration: none;
    margin: 0 8px;
}

.footer-social a:hover {
    color: #E97D98;
}

.footer-connect {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    color: #405B3D;
    margin-bottom: 18px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 8px;
    padding: 12px 24px;
    background: white;
    border: 2px solid #E97D98;
    border-radius: 999px;
    color: #405B3D;
    text-decoration: none;
    font-weight: 700;
    transition: all .2s ease;
}

.social-link i {
    font-size: 1.2rem;
}

.social-link:hover {
    background: #E97D98;
    color: white;
}
.article-hero-image {
    margin: -2rem -2rem 2rem;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
}

.article-hero-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}
.related-guides {
    margin-top: 4rem;
}

.related-guides h2 {
    margin-bottom: 1.5rem;
}

.guide-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.related-card {
    display: block;
    padding: 1.2rem;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    text-decoration: none;
    color: #405B3D;
    font-weight: 600;
    transition: all .2s ease;
}

.related-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.join-cta {
    display: table;
    margin: 2rem auto 0;
}
/* =========================================
   COMMUNITY PAGE
========================================= */

.community-section {
  padding-left: 24px;
  padding-right: 24px;
}

.community-section .section-intro,
.community-card-grid,
.creator-standards,
.community-note {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.community-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  margin-top: 34px;
}

.community-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  padding: 34px 30px 32px;
}

.community-card p {
  flex-grow: 1;
}

.community-card .btn {
  margin-top: 22px;
  align-self: center;
}

.community-card-icon {
  margin-bottom: 14px;
  font-size: 2.2rem;
}

.community-card-label {
  display: inline-block;
  align-self: center;
  flex-grow: 0 !important;
  margin: 0 0 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f8e6ea;
  color: #8a4f5d;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.creator-network-card {
  border: 2px solid rgba(217, 160, 168, 0.55);
}

.community-card-note {
  flex-grow: 0 !important;
  margin: 14px 0 0;
  color: #667066;
  font-size: 0.84rem;
  line-height: 1.5;
  text-align: center;
}

/* Creator standards */

.creator-standards {
  margin-top: 64px;
  padding: 48px;
  border: 1px solid rgba(111, 127, 103, 0.22);
  border-radius: 28px;
  background: #fbf8f4;
}

.creator-standards-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.creator-standards-heading h2 {
  margin-top: 8px;
  margin-bottom: 14px;
}

.creator-standards-heading p:last-child {
  margin-bottom: 0;
}

.creator-standards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.creator-standard-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(46, 52, 47, 0.06);
}

.creator-standard-item > span {
  flex: 0 0 auto;
  font-size: 1.7rem;
  line-height: 1;
}

.creator-standard-item h3 {
  margin: 0 0 8px;
  color: #405b3d;
  font-size: 1.2rem;
}

.creator-standard-item p {
  margin: 0;
  color: #515b53;
  font-size: 0.96rem;
  line-height: 1.65;
}

.creator-policy-notice {
  margin-top: 28px;
  padding: 22px 24px;
  border-left: 4px solid #d9a0a8;
  border-radius: 12px;
  background: #ffffff;
  color: #515b53;
  font-size: 0.92rem;
  line-height: 1.7;
}
/* =========================================
   COMMUNITY DIRECTORY PREVIEW
========================================= */

.directory-preview {
  width: 100%;
  max-width: 1200px;
  margin: 64px auto 0;
  padding: 48px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(46, 52, 47, 0.06);
}

.directory-preview-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.directory-preview-heading h2 {
  margin: 8px 0 14px;
}

.directory-preview-heading p {
  margin-left: auto;
  margin-right: auto;
}

.directory-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.directory-preview-card {
  padding: 30px 24px;
  border: 1px solid rgba(217, 160, 168, 0.3);
  border-radius: 22px;
  background: #fbf8f4;
  text-align: center;
}

.directory-preview-icon {
  margin-bottom: 12px;
  font-size: 2rem;
}

.directory-status {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f8e6ea;
  color: #8a4f5d;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.directory-preview-card h3 {
  margin: 0 0 12px;
  color: #405b3d;
}

.directory-preview-card p:last-child {
  margin-bottom: 0;
  color: #515b53;
  line-height: 1.65;
}

.founding-member-note {
  margin-top: 28px;
  padding: 20px 24px;
  border-left: 4px solid #d9a0a8;
  border-radius: 12px;
  background: #fbf8f4;
  color: #515b53;
  line-height: 1.7;
  text-align: center;
}

@media (max-width: 760px) {
  .directory-preview {
    margin-top: 44px;
    padding: 32px 20px;
  }

  .directory-preview-grid {
    grid-template-columns: 1fr;
  }

  .founding-member-note {
    padding: 18px;
  }
}

/* Bottom community message */

.community-note {
  margin-top: 56px;
  padding: 36px;
  border-radius: 24px;
  background: #ffffff;
  text-align: center;
}

.community-note h2 {
  margin-top: 0;
}

.community-note p {
  max-width: 760px;
  margin: 0 auto;
}

/* Keep all three cards in one row on desktop and larger tablets */

@media (min-width: 761px) {
  .community-page .community-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .community-page .creator-network-card {
    grid-column: auto !important;
    width: auto !important;
    max-width: none !important;
    justify-self: stretch !important;
  }
}

/* Mobile */

@media (max-width: 760px) {
  .community-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .community-page .community-card-grid {
    grid-template-columns: 1fr !important;
  }

  .community-page .creator-network-card {
    grid-column: auto;
    width: 100%;
    max-width: none;
  }

  .community-card {
    padding: 34px 24px 28px;
  }

  .creator-standards {
    margin-top: 44px;
    padding: 32px 20px;
  }

  .creator-standards-grid {
    grid-template-columns: 1fr;
  }

  .creator-standard-item {
    padding: 20px;
  }

  .community-note {
    margin-top: 40px;
    padding: 28px 20px;
  }
}
/* MOBILE */

@media (max-width: 850px) {
    .nav-wrap {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .site-nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px 16px;
    }

    .brand img {
        height: 46px;
    }

    .brand span {
        font-size: 1.8rem;
    }

    .container {
        padding: 30px 18px;
    }

    .home-hero {
        min-height: 640px;
        background-position: 68% center;
        padding: 45px 7%;
        align-items: flex-start;
    }

    .home-hero h1 {
        font-size: 3.7rem;
    }

    .home-hero-subtitle {
        font-size: 1.08rem;
    }

    .home-hero-trust {
        flex-direction: column;
        gap: 8px;
    }

    .page-hero {
        padding: 36px 24px;
    }

    .page-hero h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .card-img,
    .book-cover {
        height: 140px;
        object-fit: contain;
        padding: 8px;
    }

    .bio-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 26px 20px;
    }

    .bio-photo {
        max-width: 240px;
        margin: 0 auto;
    }

    .article-card {
        padding: 26px 20px;
    }

    .article-section-card {
        padding: 22px 18px;
    }

    .article-summary {
        padding: 26px 20px;
    }

    .feature-box {
        padding: 26px 20px;
    }

    .social-link {
        margin: 6px;
    }
}
.community-hero {
  background: linear-gradient(135deg, #fff9f3 0%, #fbe4ea 100%);
  padding: 90px 20px;
  text-align: center;
}

.community-hero-content {
  max-width: 850px;
  margin: 0 auto;
}

.community-hero h1 {
  font-size: 56px;
  color: #405b3d;
  margin-bottom: 20px;
}

.community-hero p {
  font-size: 20px;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}

.community-section {
  padding: 70px 20px;
  background: #fff9f3;
}

.community-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 40px auto 0;
}

.community-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 12px 35px rgba(64, 91, 61, 0.12);
  border: 1px solid #f4d9df;
  text-align: center;
}

.community-card-icon {
  font-size: 42px;
  margin-bottom: 15px;
}

.community-card h3 {
  font-size: 30px;
  color: #405b3d;
  margin-bottom: 15px;
}

.community-card p {
  line-height: 1.7;
  margin-bottom: 25px;
}

.community-coming-soon {
  padding: 70px 20px;
  text-align: center;
  background: #ffffff;
}

.mini-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1000px;
  margin: 35px auto 0;
}

.mini-card {
  background: #fff9f3;
  border: 1px solid #f4d9df;
  border-radius: 20px;
  padding: 22px;
  font-weight: 700;
  color: #405b3d;
}

@media (max-width: 800px) {
  .community-hero h1 {
    font-size: 40px;
  }

  .community-card-grid,
  .mini-card-grid {
    grid-template-columns: 1fr;
  }

  .community-card {
    padding: 30px 24px;
  }
}
.community-section {
  max-width: 1180px;
  margin: 0 auto;
}

.community-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.community-card .button {
  margin-top: 20px;
  align-self: center;
}

.community-card-grid {
  align-items: stretch;
}

.community-coming-soon {
  margin-top: 20px;
}

.community-hero {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Community page fixes */

.community-page .content-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 24px;
}

.community-page .card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 35px;
}

.community-page .info-card {
  background: #ffffff;
  border: 1px solid #f1d6dc;
  border-radius: 26px;
  padding: 36px;
  box-shadow: 0 12px 30px rgba(64, 91, 61, 0.08);
}

.community-page .info-card h3 {
  margin-top: 0;
}

.community-page .feature-section,
.community-page .cta-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 24px;
}

.community-page .feature-card {
  background: #fff;
  border-left: 6px solid #e97d98;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 12px 30px rgba(64, 91, 61, 0.08);
}

.community-page .button-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.related-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 1.5rem;
}

.related-links .btn {
    display: inline-flex;
    width: fit-content;
}

@media (max-width: 800px) {
  .community-page .card-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
    .home-hero {
        min-height: 600px;
        background-position: 72% center;
    }

    .home-hero h1 {
        font-size: 3.1rem;
    }

    .eyebrow {
        font-size: 1.65rem;
    }

    .page-hero h1 {
        font-size: 2.35rem;
    }

    h2 {
        font-size: 2rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .home-hero-buttons {
        gap: 10px;
    }

    .card-img,
    .book-cover {
        height: 120px;
    }
