/* ---------- Anchored Word Skin for Reclaim Your Health ---------- */

:root{
  --sage:#6B8E7F;
  --tan:#B8A398;
  --ink:#1f2a27;
  --muted:#50615b;
  --paper:#fbfaf7;
  --soft:#f2f0ea;
  --white:#ffffff;
  --sage-dark:#2d7e3b;

  --shadow: 0 14px 40px rgba(0,0,0,.08);
  --shadow-sm: 0 8px 22px rgba(0,0,0,.06);
  --radius: 18px;
  --radius-lg: 26px;
}

*{ margin:0; padding:0; box-sizing:border-box; }
html, body{ height:100%; }

body{
  font-family: "Lato", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.65;
  color: var(--ink);
  background: linear-gradient(180deg, var(--paper) 0%, var(--soft) 100%);
}

/* Fixed-nav anchor offset (prevents section titles hiding under nav) */
section{ scroll-margin-top: 96px; }

/* ---------- Layout helpers ---------- */
.container{
  max-width: 1200px;
  margin: 0 auto;
}

section{
  padding: 84px 2rem;
}

/* ---------- Headings ---------- */
h1, h2, h3{
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: .2px;
}

h2{
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 2rem;
  text-align: center;
  color: var(--ink);
}

h2::after{
  content:'';
  display:block;
  width: 84px;
  height: 4px;
  background: var(--tan);
  margin: 1rem auto 0;
  border-radius: 10px;
}

/* ---------- Links / Focus ---------- */
a{ -webkit-tap-highlight-color: transparent; }
a:focus-visible,
button:focus-visible,
input:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(107,142,127,0.18);
  border-radius: 12px;
}

/* ---------- Navigation ---------- */
nav{
  background: rgba(251, 250, 247, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(31,42,39,0.08);

  padding: 1rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

nav .container{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 1.25rem;
}

.logo-section{
  display:flex;
  align-items:center;
  gap: .9rem;
}

.logo-img{
  width: 46px;
  height: 46px;
}

.logo-text{
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
}

nav ul{
  list-style:none;
  display:flex;
  gap: 1.25rem;
  flex-wrap: wrap; /* helps on smaller screens */
  justify-content: flex-end;
}

nav a{
  color: var(--muted);
  text-decoration:none;
  font-weight: 600;
  transition: color .25s ease;
}

nav a:hover{
  color: var(--sage);
}

/* --- Compact premium nav CTA --- */
.nav-menu--desktop .nav-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  background: var(--sage);
  color: var(--white) !important;

  padding: 4px 11px;          /* reduced height */
  font-size: .85rem;          /* slightly smaller text */
  line-height: 1;             /* removes extra vertical space */
  border-radius: 999px;
  font-weight: 800;
  border: 2px solid var(--sage);
  text-decoration:none;

  box-shadow: 0 6px 14px rgba(55,154,73,.18);
  transition: transform .18s ease, box-shadow .18s ease;
}

.nav-menu--desktop .nav-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(0,0,0,.16);
}



/* ---------- Hero Section ---------- */
.hero{
  background:
    radial-gradient(800px 400px at 20% 30%, rgba(107,142,127,0.18), transparent 55%),
    radial-gradient(700px 380px at 80% 20%, rgba(184,163,152,0.20), transparent 60%),
    linear-gradient(180deg, var(--soft) 0%, var(--paper) 70%);
  color: var(--ink);
  padding: 150px 2rem 84px;
  text-align:center;
  margin-top: 70px;
  position: relative;
  overflow:hidden;
}

.hero-content{
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-logo{
  width: 224px;
  height: 224px;
  margin: 0 auto 1.75rem;
  animation: fadeIn 1s ease-in;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.08));
}

@keyframes fadeIn{
  from{ opacity:0; transform: translateY(-18px); }
  to{ opacity:1; transform: translateY(0); }
}

.hero h1{
  font-size: clamp(2.25rem, 4vw, 3.3rem);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.hero .highlight{ color: var(--sage); }

.hero p{
  font-size: 1.18rem;
  margin-bottom: 2rem;
  color: var(--muted);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.cta-button{
  display:inline-block;
  background: var(--sage);
  color: var(--white);
  padding: 1rem 2.2rem;
  text-decoration:none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 10px 26px rgba(107,142,127,0.25);
  border: 1px solid rgba(255,255,255,0.4);
}

.cta-button:hover{
  background: #5d7f72;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(107,142,127,0.30);
}

/* ---------- Beliefs band (stats) ---------- */
.stats{
  background: var(--soft);
  color: var(--ink);
  padding: 56px 2rem;
  border-top: 1px solid rgba(31,42,39,0.06);
  border-bottom: 1px solid rgba(31,42,39,0.06);
}

.stats .container{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  text-align:left;
}

.stat-item{
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(31,42,39,0.06);
}

.stat-item h3{
  font-size: 1.35rem;
  margin-bottom: .35rem;
  color: var(--ink);
}

.stat-item p{
  font-size: 1rem;
  color: var(--muted);
}

/* ---------- Story ---------- */
.story{ background: var(--paper); }

.story-content{
  max-width: 840px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.story-content p{ margin-bottom: 1.4rem; }

.transformation-highlight{
  background: var(--white);
  padding: 1.9rem;
  border-left: 6px solid var(--tan);
  margin: 2rem 0;
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
  border: 1px solid rgba(31,42,39,0.06);
}

/* ---------- Approach ---------- */
.approach-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.approach-card{
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
  border: 1px solid rgba(31,42,39,0.06);
  position: relative;
  overflow: hidden;
}

.approach-card::before{
  content:'';
  position:absolute;
  top:0; left:0;
  width:100%;
  height:6px;
  background: linear-gradient(90deg, var(--sage), var(--tan));
}

.approach-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 18px 46px rgba(0,0,0,.10);
}

.approach-card h3{
  color: var(--ink);
  font-size: 1.45rem;
  margin-bottom: .75rem;
}

.approach-card p{ color: var(--muted); }

/* ---------- Community / Reset ---------- */
.community{
  background:
    radial-gradient(900px 380px at 20% 30%, rgba(107,142,127,0.18), transparent 60%),
    radial-gradient(800px 380px at 80% 60%, rgba(184,163,152,0.18), transparent 65%),
    linear-gradient(180deg, var(--paper) 0%, var(--soft) 100%);
  color: var(--ink);
  text-align:center;
  border-top: 1px solid rgba(31,42,39,0.06);
}

.community h2::after{ background: var(--tan); }

.social-links{
  display:flex;
  justify-content:center;
  gap: 1rem;
  margin-top: 1.6rem;
  flex-wrap:wrap;
}

.social-link{
  display:inline-block;
  padding: .95rem 1.5rem;
  background: var(--sage);
  color: var(--white);
  text-decoration:none;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  box-shadow: 0 10px 22px rgba(107,142,127,0.22);
}

.social-link:hover{
  background: #5d7f72;
  transform: translateY(-2px);
}

/* ---------- Disclaimer ---------- */
.disclaimer{
  background: var(--soft);
  padding: 2.2rem 2rem;
  text-align:center;
  font-size: 0.95rem;
  color: var(--muted);
  border-top: 1px solid rgba(31,42,39,0.06);
}

/* ---------- Footer ---------- */
footer{
  background: var(--paper);
  color: var(--muted);
  text-align:center;
  padding: 2.5rem 2rem;
  border-top: 1px solid rgba(31,42,39,0.08);
}

.footer-logo{
  width: 58px;
  height: 58px;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.08));
}

/* ---------- Mobile ---------- */
@media (max-width: 768px){
  nav{ padding: .9rem 1rem; }
  nav ul{ gap: .9rem; font-size: .95rem; }
  .logo-text{ font-size: 1.15rem; }

  .hero{ padding: 140px 1rem 72px; }
  .hero-logo{ width: 96px; height: 96px; }

  h2{ font-size: 2rem; }
  section{ padding: 72px 1rem; }
}

/* ==========================================
   MailerLite Embed (ONE clean override block)
   ========================================== */

.signup-box{
  max-width: 540px;
  margin: 0 auto;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(31,42,39,0.06);
}

.ml-embedded,
.ml-embedded *{
  font-family: "Lato", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
}

.ml-embedded form{ display: grid; gap: 12px; }

.ml-embedded input,
.ml-embedded select,
.ml-embedded textarea{
  width: 100% !important;
  padding: 14px 14px !important;
  border-radius: 14px !important;
  border: 1px solid rgba(31,42,39,0.14) !important;
  background: var(--paper) !important;
  color: var(--ink) !important;
  font-size: 1rem !important;
  box-shadow: none !important;
}

.ml-embedded input:focus,
.ml-embedded select:focus,
.ml-embedded textarea:focus{
  outline: none !important;
  border-color: rgba(107,142,127,0.65) !important;
  box-shadow: 0 0 0 4px rgba(107,142,127,0.16) !important;
  background: var(--white) !important;
}

.ml-embedded label,
.ml-embedded p,
.ml-embedded small{
  color: var(--muted) !important;
}

/* Button */
.ml-embedded button,
.ml-embedded .ml-button,
.ml-embedded input[type="submit"],
.ml-embedded .ml-form-embedSubmit button,
.ml-embedded .ml-form-embedSubmit input[type="submit"]{
  appearance: none !important;
  -webkit-appearance: none !important;

  width: 100% !important;
  background: var(--sage) !important;
  color: var(--white) !important;

  border: 0 !important;
  border-radius: 999px !important;

  padding: 1rem 2.2rem !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;

  box-shadow: 0 10px 26px rgba(107,142,127,0.25) !important;
  cursor: pointer !important;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease !important;
}

.ml-embedded button:hover,
.ml-embedded .ml-button:hover,
.ml-embedded input[type="submit"]:hover{
  background: #5d7f72 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 14px 34px rgba(107,142,127,0.30) !important;
}
/* =========================
   PREMIUM MOBILE MENU
   ========================= */

.brand{ display:flex; align-items:center; gap:.6rem; text-decoration:none; }

.nav-wrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 1rem;
  position: relative;
}

.nav-menu{ list-style:none; display:flex; gap:1.5rem; }

/* Hide desktop links on mobile */
.nav-menu--desktop{ display:flex; }

.menu-btn{
  display:none;
  background: transparent;
  border: 1px solid rgba(31,42,39,0.12);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  cursor: pointer;
  align-items:center;
  justify-content:center;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
  transition: transform .15s ease, box-shadow .15s ease;
}
.menu-btn:hover{ transform: translateY(-1px); box-shadow: 0 14px 28px rgba(0,0,0,.08); }

/* Hamburger icon (3 lines) */
.menu-icon{
  width: 20px;
  height: 14px;
  position: relative;
  display:block;
}
.menu-icon::before,
.menu-icon::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:2px;
  background: var(--ink);
  border-radius: 10px;
  transition: transform .2s ease, top .2s ease, bottom .2s ease, opacity .2s ease;
}
.menu-icon::before{ top:0; }
.menu-icon::after{ bottom:0; }
.menu-icon{
  background: var(--ink);
  height:2px;
  border-radius:10px;
}

/* Overlay (blur + dim) */
.menu-overlay{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;   /* FULL SCREEN */
  background: rgba(31,42,39,0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  z-index: 9998;

  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;  /* prevent blocking when closed */
}


/* Mobile menu panel */
.mobile-menu{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;

  width: 75vw;        /* ← THIS is the key */
  max-width: 420px;   /* keeps it elegant on tablets */

  background: linear-gradient(180deg, var(--paper) 0%, var(--soft) 100%);
  border-left: 1px solid rgba(31,42,39,0.10);
  box-shadow: -24px 0 70px rgba(0,0,0,.18);

  z-index: 9999;

  transform: translateX(100%);
  transition: transform .35s ease;

  display:flex;
}


.mobile-menu__inner{ padding: 1.1rem 1.1rem 1.2rem; }

.mobile-menu__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: .2rem .2rem .8rem;
}

.mobile-menu__title{
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  color: var(--ink);
}

.menu-close{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(31,42,39,0.12);
  background: var(--white);
  cursor:pointer;
  color: var(--ink);
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
  transition: transform .15s ease;
}
.menu-close:hover{ transform: translateY(-1px); }

.nav-menu--mobile{
  display:flex;
  flex-direction:column;
  gap: .4rem;
  padding: .6rem;
  background: var(--white);
  border: 1px solid rgba(31,42,39,0.08);
  border-radius: var(--radius);
}

.nav-menu--mobile a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: .95rem 1rem;
  border-radius: 14px;
  font-weight: 700;
  color: var(--ink);
}
.nav-menu--mobile a:hover{
  background: rgba(107,142,127,0.10);
  color: var(--ink);
}

.mobile-menu__cta{
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  background:
    radial-gradient(600px 220px at 20% 10%, rgba(107,142,127,0.20), transparent 60%),
    radial-gradient(520px 220px at 90% 90%, rgba(184,163,152,0.22), transparent 60%),
    var(--soft);
  border: 1px solid rgba(31,42,39,0.08);
}

.mobile-menu__note{
  margin-top: .75rem;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.45;
}

/* Open states */
.menu-open .menu-overlay{
  opacity: 1;
  pointer-events: auto; /* allow clicking anywhere */
}


.menu-open .mobile-menu{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* Mobile behavior */
@media (max-width: 768px){
  .nav-menu--desktop{ display:none; }
  .menu-btn{ display:inline-flex; }
}

/* Prevent page scroll when menu open */
.no-scroll{ overflow: hidden; }

/* =========================
   PREMIUM MOBILE MENU (SLIDE-OVER)
   ========================= */

.brand{ display:flex; align-items:center; gap:.6rem; text-decoration:none; }

.nav-wrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 1rem;
  position: relative;
}

.nav-menu{ list-style:none; display:flex; gap:1.5rem; }
.nav-menu--desktop{ display:flex; }

.menu-btn{
  display:none;
  background: transparent;
  border: 1px solid rgba(31,42,39,0.12);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  cursor: pointer;
  align-items:center;
  justify-content:center;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
  transition: transform .15s ease, box-shadow .15s ease;
}
.menu-btn:hover{ transform: translateY(-1px); box-shadow: 0 14px 28px rgba(0,0,0,.08); }

/* Hamburger icon (3 lines) */
.menu-icon{
  width: 20px;
  height: 14px;
  position: relative;
  display:block;
  background: var(--ink);
  height:2px;
  border-radius:10px;
}
.menu-icon::before,
.menu-icon::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:2px;
  background: var(--ink);
  border-radius: 10px;
  transition: transform .2s ease, top .2s ease, bottom .2s ease, opacity .2s ease;
}
.menu-icon::before{ top:-6px; }
.menu-icon::after{ bottom:-6px; }

/* Overlay (blur + dim) */
.menu-overlay{
  position: fixed;
  inset: 0;
  background: rgba(31,42,39,0.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9998;
  opacity: 0;
  transition: opacity .22s ease;
}

/* Slide-over panel */
.mobile-menu{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
   width: 75vw;
  max-width: 420px;
  background: var(--paper);
  border-left: 1px solid rgba(31,42,39,0.10);
  box-shadow: -24px 0 70px rgba(0,0,0,.18);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform .24s ease;
  display:flex;
}

.mobile-menu__inner{
  padding: 1.15rem;
  width: 100%;
  display:flex;
  flex-direction:column;
  gap: 1rem;
}

/* Header */
.mobile-menu__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: .25rem 0 .6rem;
  border-bottom: 1px solid rgba(31,42,39,0.08);
}

.mobile-menu__brand{
  display:flex;
  align-items:center;
  gap: .6rem;
}

.mobile-menu__logo{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
}

.mobile-menu__title{
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  color: var(--ink);
}

.menu-close{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(31,42,39,0.12);
  background: var(--white);
  cursor:pointer;
  color: var(--ink);
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
  transition: transform .15s ease;
}
.menu-close:hover{ transform: translateY(-1px); }

/* Links */
.mobile-menu__nav{
  display:flex;
  flex-direction:column;
  gap: .5rem;
  padding-top: .25rem;
}

.mobile-link{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 1.05rem 1rem;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(31,42,39,0.08);
  font-weight: 800;
  color: var(--ink);
  text-decoration:none;
  box-shadow: 0 10px 22px rgba(0,0,0,.04);
  transition: transform .12s ease, background .12s ease, box-shadow .12s ease;
}
.mobile-link:hover{
  background: rgba(107,142,127,0.10);
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(0,0,0,.06);
}

/* CTA area */
.mobile-menu__cta{
  margin-top: .25rem;
  padding: 1rem;
  border-radius: var(--radius);
  background:
    radial-gradient(700px 260px at 20% 10%, rgba(107,142,127,0.20), transparent 60%),
    radial-gradient(600px 260px at 90% 90%, rgba(184,163,152,0.22), transparent 60%),
    var(--soft);
  border: 1px solid rgba(31,42,39,0.08);
}

.mobile-menu__note{
  margin-top: .75rem;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.45;
}

/* Footer fine print */
.mobile-menu__footer{
  margin-top: auto;
  padding-top: .75rem;
  border-top: 1px solid rgba(31,42,39,0.08);
}
.mobile-menu__fineprint{
  color: var(--muted);
  font-size: .92rem;
}

/* Open states */
.menu-open .menu-overlay{ opacity: 1; }
.menu-open .mobile-menu{ transform: translateX(0); }

/* Hide/show on mobile */
@media (max-width: 768px){
  .nav-menu--desktop{ display:none; }
  .menu-btn{ display:inline-flex; }
}

/* Prevent page scroll when open */
.no-scroll{ overflow: hidden; }

/* ===== Continue Reading Cards ===== */
.articles-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.2rem;
}

@media (max-width: 820px){
  .articles-grid{ grid-template-columns: 1fr; }
}

.article-card{
  display:block;
  text-decoration:none;
  color: inherit;
  border-radius: 18px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0 14px 40px rgba(0,0,0,.08);
  transition: transform .15s ease, box-shadow .15s ease;
  overflow: hidden;
}

.article-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 52px rgba(0,0,0,.10);
}

.article-card__inner{
  padding: 1.2rem 1.2rem 1.1rem;
}

.article-card__tag{
  display:inline-block;
  font-weight:700;
  font-size: 0.85rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(107,142,127,0.16);
  border: 1px solid rgba(107,142,127,0.22);
  margin-bottom: 0.65rem;
}

.article-card__title{
  margin: 0 0 0.45rem 0;
}

.article-card__desc{
  margin: 0 0 0.9rem 0;
  opacity: 0.9;
  line-height: 1.5;
}

.article-card__link{
  font-weight: 800;
  letter-spacing: 0.2px;
}

/* ===== Continue Reading Cards ===== */
.articles-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.2rem;
}
@media (max-width: 820px){
  .articles-grid{ grid-template-columns: 1fr; }
}
.article-card{
  display:block;
  text-decoration:none;
  color: inherit;
  border-radius: 18px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0 14px 40px rgba(0,0,0,.08);
  transition: transform .15s ease, box-shadow .15s ease;
  overflow: hidden;
}
.article-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 52px rgba(0,0,0,.10);
}
.article-card__inner{ padding: 1.2rem 1.2rem 1.1rem; }
.article-card__tag{
  display:inline-block; font-weight:700; font-size:0.85rem;
  padding: 0.25rem 0.6rem; border-radius: 999px;
  background: rgba(107,142,127,0.16);
  border: 1px solid rgba(107,142,127,0.22);
  margin-bottom: 0.65rem;
}
.article-card__title{ margin: 0 0 0.45rem 0; }
.article-card__desc{ margin: 0 0 0.9rem 0; opacity:0.9; line-height:1.5; }
.article-card__link{ font-weight: 800; letter-spacing: 0.2px; }

/* Premium NEW badge */
.new-badge{
  display:inline-block; font-weight:700; font-size:0.85rem;
  padding: 0.25rem 0.6rem; border-radius: 999px;
  background:#6B8E7F;
  color:#ffffff;
  border:1px solid #6B8E7F;
  border: 1px solid rgba(107,142,127,0.22);
  margin-bottom: 0.65rem;
  text-transform: uppercase;
}

.begin-again{
  background:#f2f0ea;
  padding:60px 20px;
  text-align:center;
  border-radius:18px;
  margin:60px auto;
}

.begin-again h2{
  font-family:"Playfair Display",serif;
  font-size:2rem;
  margin-bottom:15px;
}

.begin-again p{
  max-width:600px;
  margin:0 auto 25px auto;
  color:#50615b;
}

.begin-btn{
  display:inline-block;
  background:#6B8E7F;
  color:#fff;
  padding:14px 28px;
  border-radius:40px;
  text-decoration:none;
  font-weight:600;
  box-shadow:0 10px 25px rgba(0,0,0,.12);
  transition:.2s ease;
}

.begin-btn:hover{
  transform:translateY(-3px);
}

.hero-proof-strip{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 16px auto 10px;
  max-width: 520px;
}

.hero-proof-strip figure{
  margin:0;
  text-align:center;
}

.hero-proof-strip img{
  width:100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero-proof-strip figcaption{
  margin-top: 6px;
  font-size: .82rem;
  color: var(--muted);
}

/* Mobile tightening so the photos + button fit sooner */
@media (max-width: 520px){
  .hero{ padding-top: 38px; padding-bottom: 30px; }   /* adjust if needed */
  .hero .hero-logo{ width: 68px; margin-bottom: 8px; } /* optional */
  .hero h1{ margin-bottom: 10px; }
  .hero p{ margin-bottom: 10px; }
  .hero-proof-strip{ margin-top: 12px; margin-bottom: 8px; }
  .cta-button{ margin-top: 10px; }
}
/* Prevent fixed nav from covering page content */
main {
  padding-top: 90px; /* adjust if needed */
}
.begin-again {
  background: var(--soft);
  padding: 60px 20px;
  text-align: center;
}

.begin-again h2 {
  margin-bottom: 15px;
}

.begin-again p {
  max-width: 600px;
  margin: 0 auto 25px auto;
  color: var(--muted);
}
/* Footer link styling */
footer a{
  color: var(--sage);          /* uses your brand green */
  text-decoration: none;
  font-weight: 500;
}

footer a:hover{
  text-decoration: underline;
  opacity: .85;
}

footer a:visited{
  color: var(--sage);          /* prevents purple visited links */
}