/* =========================================================
   By Anahely — Stylesheet
   Table of contents:
   1. Reset & base
   2. Typography helpers
   3. Layout helpers (.wrap, section)
   4. Header / nav
   5. Hero
   6. Choose Your Journey (cards)
   7. Section headers (shared)
   8. Guides
   9. About
   10. Blog
   11. Shop
   12. Life Lately / Instagram
   13. Newsletter
   14. Footer
   15. Scroll reveal animation
   16. Journey / topic page template (subpages)
   17. Responsive breakpoints
   ========================================================= */

/* ---------- 1. Reset & base ---------- */
:root {
  --ivory: #FBF6F1;
  --card: #F5EBE3;
  --blush: #D9A8A0;
  --blush-deep: #C6867C;
  --sage: #93A889;
  --plum: #3D2B2E;
  --gold: #C9A66B;
  --line: rgba(61, 43, 46, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--plum);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

/* Skip link for keyboard/screen reader users */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  background: var(--plum);
  color: var(--ivory);
  padding: 12px 20px;
  border-radius: 8px;
  z-index: 100;
  text-decoration: none;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Visible focus states for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- 2. Typography helpers ---------- */
h1, h2, h3 {
  font-family: 'Fraunces', serif;
  font-weight: 450;
  margin: 0;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blush-deep);
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--blush-deep);
  display: inline-block;
}

/* ---------- 3. Layout helpers ---------- */
.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

section {
  padding: 110px 0;
  position: relative;
}

.sec-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.sec-head h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  margin-top: 14px;
}

.sec-head p {
  margin-top: 14px;
  color: rgba(61, 43, 46, 0.75);
  font-size: 1.02rem;
}

/* ---------- 4. Header / nav ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 241, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 450;
  font-size: 1.35rem;
  text-decoration: none;
  flex-shrink: 0;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navlinks a {
  font-size: 0.88rem;
  text-decoration: none;
  color: var(--plum);
  position: relative;
  padding-bottom: 4px;
}

.navlinks a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--plum);
  transition: width .25s ease;
}

.navlinks a:hover::after {
  width: 100%;
}

.nav-ig {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--plum);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.82rem;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-ig:hover {
  background: var(--plum);
  color: var(--ivory);
}

/* Duplicate IG link shown only inside the mobile dropdown */
.nav-ig-mobile {
  display: none;
  font-weight: 600;
  color: var(--blush-deep) !important;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--plum);
  flex-shrink: 0;
}

/* Mobile nav menu, toggled via JS by adding/removing this class */
.navlinks.is-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--ivory);
  padding: 20px 28px;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

/* ---------- 5. Hero ---------- */
.hero .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  line-height: 1.08;
  max-width: 11ch;
}

.hero h1 em {
  font-style: italic;
  color: var(--blush-deep);
}

.hero p.lede {
  margin-top: 22px;
  font-size: 1.08rem;
  max-width: 44ch;
  color: rgba(61, 43, 46, 0.82);
}

.btn-row {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--plum);
  color: var(--ivory);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(61, 43, 46, 0.22);
}

.btn-ghost {
  border: 1px solid var(--plum);
  color: var(--plum);
}

.btn-ghost:hover {
  background: var(--plum);
  color: var(--ivory);
}

/* Hero photo column */
.hero-photo-wrap {
  display: flex;
  justify-content: center;
}

.arc-frame {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 430px;
}

.hero-decoration {
  position: absolute;
  width: 420px;
  height: 420px;
  background: #ead8d2;
  border-radius: 50%;
  top: -45px;
  right: -45px;
  opacity: .45;
  z-index: 1;
}

.hero-photo {
  width: 430px;
  max-width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 220px 220px 35px 35px;
  position: relative;
  z-index: 2;
  box-shadow: 0 35px 70px rgba(0, 0, 0, .14);
  transition: transform .35s ease;
}

.hero-photo:hover {
  transform: translateY(-8px);
}

.hero-quote {
  position: absolute;
  bottom: -35px;
  background: white;
  padding: 18px 24px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .10);
  font-style: italic;
  color: #6c5d5d;
  z-index: 3;
  max-width: 260px;
  text-align: center;
}

/* ---------- 6. Choose Your Journey (cards) ---------- */
.journey {
  background: var(--card);
}

.journey .sec-head {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.journey .sec-head .eyebrow {
  justify-content: center;
}

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

.journey-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--plum);
  transition: transform .25s ease, box-shadow .25s ease;
}

.journey-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(61, 43, 46, 0.14);
}

.journey-photo {
  aspect-ratio: 4 / 3;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  overflow: hidden;
}

.journey-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.journey-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 43, 46, 0.45), transparent 55%);
  z-index: 1;
}

/* One soft gradient per journey — fallback if a photo fails to load */
.journey-photo.is-pregnancy { background: linear-gradient(150deg, var(--blush) 0%, var(--card) 100%); }
.journey-photo.is-newmom    { background: linear-gradient(150deg, var(--sage) 0%, var(--card) 100%); }
.journey-photo.is-toddler   { background: linear-gradient(150deg, var(--gold) 0%, var(--card) 100%); }
.journey-photo.is-family    { background: linear-gradient(150deg, var(--gold) 0%, var(--blush) 100%); }
.journey-photo.is-travel    { background: linear-gradient(150deg, var(--blush-deep) 0%, var(--sage) 100%); }

.journey-body {
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.journey-body h3 {
  font-size: 1.3rem;
}

.journey-topics {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.88rem;
  color: rgba(61, 43, 46, 0.72);
}

.journey-topics li::before {
  content: "— ";
  color: var(--blush-deep);
}

.journey-cta {
  margin-top: auto;
  padding-top: 10px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--blush-deep);
}

/* ---------- 8. Guides ---------- */
.guides {
  background: var(--card);
}

.guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.guide-card {
  background: var(--ivory);
  border-radius: var(--radius);
  padding: 38px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.guide-card .tag {
  width: fit-content;
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  border: 1px solid var(--sage);
  padding: 5px 12px;
  border-radius: 999px;
}

.guide-card h3 {
  font-size: 1.5rem;
}

.guide-card p {
  color: rgba(61, 43, 46, 0.75);
  font-size: 0.95rem;
  margin: 0;
}

/* ---------- 8b. Topic grid (subpage template: favorite-finds, home-family, new-mom, travel-with-kids) ---------- */
.topic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.topic-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.topic-card .tag {
  width: fit-content;
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blush-deep);
  border: 1px solid var(--blush-deep);
  padding: 5px 12px;
  border-radius: 999px;
}

.topic-card h3 {
  font-size: 1.3rem;
}

.topic-card p {
  color: rgba(61, 43, 46, 0.75);
  font-size: 0.92rem;
  margin: 0;
}

.guide-card .btn {
  align-self: flex-start;
  margin-top: 4px;
}

/* ---------- 9. About (editorial) ---------- */
.about-editorial {
  padding: 130px 0;
  background: #fbf7f3;
}

.about-editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}

.about-photos {
  position: relative;
  max-width: 440px;
  margin: 0 auto;
}

.about-photo-main {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 28px;
  display: block;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .12);
}

.about-photo-accent {
  position: absolute;
  bottom: -34px;
  left: -34px;
  width: 44%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  border: 7px solid var(--ivory);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .16);
}

.about-quote {
  position: absolute;
  top: -28px;
  right: -28px;
  background: white;
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
  font-style: italic;
  color: #6c5d5d;
  max-width: 200px;
  text-align: center;
  font-size: 0.92rem;
}

.about-content h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-top: 14px;
  margin-bottom: 22px;
}

.about-content p {
  margin-bottom: 18px;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #5f5f5f;
}

.about-mission {
  margin: 30px 0 26px;
  padding: 24px 26px;
  background: var(--card);
  border-left: 3px solid var(--blush-deep);
  border-radius: 12px;
}

.about-mission .eyebrow {
  margin-bottom: 10px;
}

.about-mission p {
  margin: 0;
  font-style: italic;
  color: var(--plum);
  font-size: 1.02rem;
  line-height: 1.75;
}

/* ---------- 10. Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ivory);
  display: flex;
  flex-direction: column;
}

.blog-thumb {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--blush) 0%, var(--sage) 100%);
  position: relative;
}

.blog-thumb span {
  position: absolute;
  bottom: 14px;
  left: 16px;
  color: var(--ivory);
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
}

.blog-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.blog-body h3 {
  font-size: 1.12rem;
  line-height: 1.3;
}

.blog-body p {
  font-size: 0.9rem;
  color: rgba(61, 43, 46, 0.72);
  margin: 0;
}

.blog-read {
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--blush-deep);
}

/* ---------- 11. Shop ---------- */
.shop {
  background: var(--card);
}

.shop-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.affiliate-note {
  font-size: 0.8rem;
  color: rgba(61, 43, 46, 0.55);
  margin-bottom: 24px;
}
.affiliate-note a {
  color: rgba(61, 43, 46, 0.55);
  text-decoration: underline;
}
.affiliate-note a:hover {
  color: var(--plum);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 32px;
}

.shop-card {
  background: var(--ivory);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 26px;
  text-align: left;
  text-decoration: none;
  color: var(--plum);
  transition: transform .2s ease;
}

.shop-card:hover {
  transform: translateY(-4px);
}

.shop-card{
    background:var(--ivory);
    border:1px solid var(--line);
    border-radius:24px;
    overflow:hidden;
    padding:22px;
    transition:transform .25s ease, box-shadow .25s ease;
}

.shop-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(61,43,46,.12);
}

.shop-card h4{
    font-size:1.35rem;
    margin:6px 0 12px;
}

.shop-card p{
    line-height:1.7;
}

.shop-card .price{
    margin-top:18px;
    font-weight:600;
    color:var(--blush-deep);
}

/* ---------- 12. Instagram ---------- */
/* ===============================
   Life Lately
==================================*/

.life-lately{

    background:var(--ivory);

}

.life-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:22px;

}

.life-card{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    aspect-ratio:1/1;

    text-decoration:none;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.life-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:transform .5s ease;

}

.life-card:hover{

    transform:translateY(-8px);

}

.life-card:hover img{

    transform:scale(1.08);

}

.life-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(

        to top,

        rgba(61,43,46,.72),

        rgba(61,43,46,.08)

    );

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:24px;

    color:white;

    opacity:0;

    transition:.35s;

}

.life-card:hover .life-overlay{

    opacity:1;

}

.life-icon{

    position:absolute;

    top:18px;

    right:18px;

    width:42px;

    height:42px;

    border-radius:50%;

    background:rgba(255,255,255,.92);

    color:var(--plum);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1.2rem;

}

.life-overlay h3{

    color:white;

    margin-bottom:4px;

    font-size:1.3rem;

}

.life-overlay p{

    color:rgba(255,255,255,.86);

    margin:0;

}

.life-footer{

    margin-top:55px;

    text-align:center;

}
/* ---------- 13. Newsletter ---------- */
.newsletter {
  background: var(--plum);
  color: var(--ivory);
  border-radius: 32px;
  margin: 0 28px;
  padding: 70px 50px;
  text-align: center;
}

.newsletter .wrap {
  max-width: 560px;
  padding: 0;
}

.newsletter h2 {
  color: var(--ivory);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
}

.newsletter p {
  margin-top: 14px;
  color: rgba(251, 246, 241, 0.78);
}

form.signup {
  margin-top: 32px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

form.signup input[type="email"],
form.signup input[type="text"] {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(251, 246, 241, 0.3);
  background: rgba(251, 246, 241, 0.08);
  color: var(--ivory);
  font-size: 0.95rem;
  outline: none;
}

form.signup input[type="email"]::placeholder,
form.signup input[type="text"]::placeholder {
  color: rgba(251, 246, 241, 0.55);
}

form.signup input[type="email"]:focus,
form.signup input[type="text"]:focus {
  border-color: var(--gold);
}

form.signup button {
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  background: var(--gold);
  color: var(--plum);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform .2s ease;
}

form.signup button:hover {
  transform: translateY(-2px);
}

.form-msg {
  margin-top: 16px;
  font-size: 0.86rem;
  min-height: 1.2em;
  color: var(--gold);
}

/* ---------- 14. Footer ---------- */
footer {
  padding: 60px 0 40px;
}

.foot-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 34px;
}

.foot-logo {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.15rem;
  text-decoration: none;
}

.foot-links {
  display: flex;
  gap: 26px;
  font-size: 0.86rem;
}

.foot-links a {
  text-decoration: none;
}

.foot-note {
  font-size: 0.78rem;
  color: rgba(61, 43, 46, 0.55);
  margin-top: 18px;
}

/* ---------- 15. Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- 16. Journey / topic page template (subpages) ---------- */
/* Used by pregnancy.html, new-mom.html, family-life.html, favorite-finds.html */

.page-intro .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
}

.page-intro-photo {
  display: flex;
  justify-content: fit-content;
}

.page-intro-photo img {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, .12);
  transition: transform .3s ease;
}

.page-intro-photo img:hover {
  transform: translateY(-6px);
}

.breadcrumb {
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  text-decoration: none;
  color: var(--blush-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
}

.breadcrumb:hover {
  text-decoration: underline;
}

.page-intro h1 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  max-width: 20ch;
}

.page-intro p.lede {
  margin-top: 18px;
  font-size: 1.05rem;
  max-width: 56ch;
  color: rgba(61, 43, 46, 0.78);
}
.resource-grid-callout{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px,1fr));
    gap:26px;
    margin:60px 0;
}
.resource-callout{
    margin:0;
    padding:42px;
    background:var(--card);
    border-radius:var(--radius);
    border:1px solid var(--line);
    text-align:center;
}

.resource-callout h3{
    font-size:2rem;
    margin:12px 0 18px;
}

.resource-callout p{
    max-width:620px;
    margin:0 auto 24px;
    color:rgba(61,43,46,.75);
}



.page-cta {
  background: var(--card);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  margin-top: 20px;
}

.page-cta h2 {
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
}

.page-cta p {
  margin-top: 10px;
  color: rgba(61, 43, 46, 0.75);
}

.page-cta .btn {
  margin-top: 22px;
}

/* ---------- 17. Responsive breakpoints ---------- */

/* Tablet: stack hero, collapse nav into hamburger */
@media (max-width: 920px) {
  .hero .wrap {
    grid-template-columns: 1fr;
  }

  .arc-frame {
    max-width: 340px;
    margin: 0 auto;
  }

  .page-intro .wrap {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    width: 320px;
  }

  .hero-decoration {
    width: 310px;
    height: 310px;
    top: 15px;
    right: 10px;
  }

  .hero-quote {
    position: static;
    margin-top: 24px;
    max-width: 100%;
  }

  .guide-grid,
  .blog-grid,
  .shop-grid,
  .journey-grid,
  .topic-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-editorial-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-content {
    text-align: center;
  }

  .about-mission {
    text-align: left;
  }
.life-grid{

    grid-template-columns:repeat(2,1fr);

}
  .ig-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .navlinks {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  /* IG pill now lives inside the mobile dropdown instead */
  .nav-ig {
    display: none;
  }

  .nav-ig-mobile {
    display: block;
  }
}

/* Mobile */
@media (max-width: 640px) {
  section {
    padding: 70px 0;
  }

  .guide-grid,
  .blog-grid,
  .shop-grid,
  .journey-grid,
  .topic-grid {
    grid-template-columns: 1fr;
  }
.life-grid{

    grid-template-columns:1fr;

}
  .newsletter {
    margin: 0 16px;
    padding: 50px 26px;
  }

  .page-cta {
    padding: 34px 24px;
  }

  .arc-frame {
    max-width: 260px;
  }

  .hero-photo {
    width: 100%;
  }

  .hero-decoration {
    width: 240px;
    height: 240px;
  }

  .page-intro-photo img {
    max-width: 320px;
  }

  .about-photos {
    max-width: 280px;
  }

  .about-photo-accent {
    bottom: -20px;
    left: -16px;
    width: 42%;
    border-width: 5px;
  }

  .about-quote {
    top: -18px;
    right: -14px;
    padding: 12px 16px;
    max-width: 140px;
    font-size: 0.8rem;
  }
}
