/* ===== Youlief — North America store ===== */
:root{
  --ink:#1c1c1c; --navy:#21426f; --lav:#8a7fb8; --muted:#6e6c69;
  --bg:#ffffff; --bg-soft:#faf9f7; --tint:#f6f4fb; --line:#e8e4dd;
  --maxw:1200px;
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0; background:var(--bg); color:var(--ink);
  font-family:'Hanken Grotesk',-apple-system,system-ui,sans-serif;
  font-size:17px; line-height:1.6; -webkit-font-smoothing:antialiased;
}
img{display:block; max-width:100%;}
a{color:inherit; text-decoration:none;}
em{font-style:italic;}
.wrap{max-width:var(--maxw); margin:0 auto; padding:0 32px;}
.eyebrow{display:inline-block; font-size:13px; font-weight:700; letter-spacing:.18em; text-transform:uppercase;}
.eyebrow--lav{color:var(--lav);}
.eyebrow--navy{color:var(--navy);}
.lav{color:var(--lav); font-style:normal; font-weight:600;}
.arrow{display:inline-block; transition:transform .25s ease; margin-left:.3em;}
.rule{width:56px; height:2px; background:var(--lav); margin:26px 0;}

/* ---- header ---- */
.site-header{position:sticky; top:0; z-index:50; background:rgba(255,255,255,.9); backdrop-filter:blur(10px); border-bottom:1px solid var(--line);}
.header-inner{display:flex; align-items:center; gap:40px; height:74px;}
.brand{font-family:'Jost',sans-serif; font-weight:300; font-size:30px; letter-spacing:.02em; color:var(--ink);}
.nav{display:flex; gap:34px; margin-left:8px;}
.nav a{font-size:15px; letter-spacing:.04em; color:var(--muted); padding:6px 0; border-bottom:2px solid transparent; transition:color .2s, border-color .2s;}
.nav a:hover{color:var(--ink);}
.nav a.is-active{color:var(--navy); border-color:var(--lav);}
.header-edition{margin-left:auto; font-size:12px; letter-spacing:.2em; text-transform:uppercase; color:var(--lav); font-weight:600;}

/* ---- buttons / links ---- */
.btn{display:inline-block; background:var(--navy); color:#fff; font-size:15px; font-weight:600; letter-spacing:.04em; padding:15px 32px; border-radius:999px; transition:background .25s, transform .25s;}
.btn:hover{background:#16314f; transform:translateY(-1px);}
.btn--ghost{background:transparent; color:var(--navy); border:1.5px solid var(--navy);}
.btn--ghost:hover{background:var(--navy); color:#fff;}
.link-more{font-size:15px; font-weight:600; color:var(--navy); letter-spacing:.02em; white-space:nowrap;}
.link-more:hover .arrow{transform:translateX(4px);}

/* ---- hero (home) ---- */
.hero{background:linear-gradient(180deg,#fff 0%,var(--tint) 100%); padding:72px 0 84px; text-align:center; overflow:hidden;}
.hero-edition{font-size:13px; letter-spacing:.34em; text-transform:uppercase; color:var(--lav); font-weight:600;}
.hero-word{font-family:'Jost',sans-serif; font-weight:300; font-size:clamp(86px,15vw,176px); line-height:.9; margin:18px 0 0; letter-spacing:.01em;}
.hero-tag{font-size:15px; letter-spacing:.42em; color:var(--muted); margin:14px 0 0;}
.hero .rule{margin:30px auto;}
.hero-title{font-family:'Playfair Display',serif; font-size:clamp(34px,5vw,52px); color:var(--navy); font-weight:500; margin:0;}
.hero-lede{max-width:620px; margin:18px auto 0; color:var(--muted); font-size:19px;}
.hero-cta{display:flex; gap:16px; justify-content:center; margin:34px 0 12px; flex-wrap:wrap;}
/* ---- band (story teaser) ---- */
.band{background:var(--bg-soft); border-top:1px solid var(--line); border-bottom:1px solid var(--line);}
.band-inner{display:grid; grid-template-columns:1fr 1fr; gap:72px; padding:84px 32px; align-items:center;}
.band-h{font-family:'Playfair Display',serif; font-size:48px; font-weight:500; margin:14px 0 22px; line-height:1.05;}
.band-h em{color:var(--lav);}
.band-text p{color:var(--muted); margin:0 0 18px; max-width:460px;}
.band-text strong{color:var(--navy); font-weight:600;}
.band-pillars{display:flex; flex-direction:column; gap:18px;}
.pillar{background:#fff; border:1px solid var(--line); padding:26px 30px; display:flex; gap:22px; align-items:flex-start;}
.pillar-n{font-family:'Playfair Display',serif; font-size:34px; color:var(--lav); line-height:1; flex:none;}
.pillar h3{margin:0 0 6px; font-size:21px;}
.pillar p{margin:0; color:var(--muted); font-size:16px; line-height:1.55;}

/* ---- generic section ---- */
.section{padding:84px 0;}
.section--tint{background:var(--tint);}
.section-head{display:flex; justify-content:space-between; align-items:flex-end; gap:24px; margin-bottom:38px;}
.section-h{font-family:'Playfair Display',serif; font-size:40px; font-weight:500; margin:10px 0 0; line-height:1.05;}

/* ---- product grid / cards ---- */
.grid{display:grid; gap:26px;}
.grid--4{grid-template-columns:repeat(4,1fr);}
.grid--3{grid-template-columns:repeat(3,1fr);}
.card{background:#fff; border:1px solid var(--line); display:flex; flex-direction:column; transition:transform .28s ease, box-shadow .28s ease; overflow:hidden;}
.card:hover{transform:translateY(-6px); box-shadow:0 22px 44px rgba(28,28,28,.10);}
.card-media{background:#fff; aspect-ratio:1/1; display:flex; align-items:center; justify-content:center; padding:22px; border-bottom:1px solid var(--line);}
.card-media img{max-height:100%; width:auto; object-fit:contain; transition:transform .4s ease;}
.card:hover .card-media img{transform:scale(1.05);}
.card--premium .card-media{background:#fff;}
.card-body{padding:22px 24px 24px; display:flex; flex-direction:column; gap:8px; flex:1;}
.card-name{font-family:'Playfair Display',serif; font-size:23px; line-height:1.15;}
.card-sub{display:block; font-size:15px; color:var(--muted); font-family:'Hanken Grotesk',sans-serif; margin-top:2px;}
.card-foot{margin-top:auto; padding-top:14px; display:flex; justify-content:space-between; align-items:center; border-top:1px solid var(--line);}
.card-vol{font-size:14px; color:#8a8884; letter-spacing:.04em;}
.card-view{font-size:14px; font-weight:600; color:var(--navy);}
.card:hover .card-view .arrow{transform:translateX(4px);}

/* ---- story page ---- */
.story-hero{background:linear-gradient(180deg,var(--tint),#fff); padding:84px 0 64px;}
.story-title{font-family:'Playfair Display',serif; font-size:clamp(34px,5.2vw,58px); font-weight:500; line-height:1.08; margin:18px 0 0;}
.story-two{display:grid; grid-template-columns:0.8fr 1.2fr; gap:64px; align-items:start;}
.story-kicker{font-family:'Playfair Display',serif; font-style:italic; font-size:24px; color:var(--lav);}
.story-h{font-family:'Playfair Display',serif; font-size:44px; font-weight:500; margin:12px 0 0; line-height:1.05;}
.story-copy p{font-size:19px; color:#4f4d49; margin:0 0 20px;}
.story-copy strong{color:var(--navy); font-weight:600;}
.story-pillars-band{background:var(--navy); color:#fff; padding:72px 0;}
.story-pillars-band .pillar--card{background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.16);}
.story-pillars-band .pillar--card h3{color:#fff;}
.story-pillars-band .pillar--card p{color:#c5d0e0;}
.story-pillars-band .pillar-n{color:#a9b8e8;}
.pillar--card{display:block; padding:34px 32px;}
.pillar--card .pillar-n{display:block; margin-bottom:14px;}
.quote-block{max-width:920px; margin:0 auto; text-align:center;}
.big-quote{font-family:'Playfair Display',serif; font-style:italic; font-size:clamp(26px,3.4vw,40px); line-height:1.4; color:var(--navy); margin:0;}
.philo-head{margin-bottom:36px;}
.philo-item{padding:28px 0; border-top:2px solid var(--lav);}
.philo-item h3{font-family:'Playfair Display',serif; font-size:24px; font-weight:500; margin:0 0 10px;}
.philo-item p{color:var(--muted); margin:0;}
.cta-band{text-align:center;}
.cta-h{font-family:'Playfair Display',serif; font-size:40px; font-weight:500; margin:0 0 28px;}

/* ---- shop page ---- */
.shop-hero{padding:74px 0 50px; background:var(--bg-soft); border-bottom:1px solid var(--line);}
.shop-title{font-family:'Playfair Display',serif; font-size:clamp(38px,5.5vw,60px); font-weight:500; margin:14px 0 0;}
.shop-title em{color:var(--navy);}
.shop-lede{max-width:620px; color:var(--muted); font-size:18px; margin:18px 0 0;}

/* ---- breadcrumbs ---- */
.crumbs{border-bottom:1px solid var(--line); font-size:14px; color:#8a8884;}
.crumbs .wrap{display:flex; gap:10px; align-items:center; height:52px;}
.crumbs a{color:var(--navy);}
.crumbs span{color:#b6b3ad;}
.crumb-current{color:var(--ink)!important;}

/* ---- product detail ---- */
.pdp{padding:56px 0 20px;}
.pdp-grid{display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start;}
.pdp-media{position:sticky; top:104px;}
.pdp-imgwrap{background:#fff; border:1px solid var(--line); border-radius:6px; aspect-ratio:1/1; display:flex; align-items:center; justify-content:center; padding:48px;}
.pdp-imgwrap img{max-height:100%; width:auto; object-fit:contain; filter:drop-shadow(0 20px 36px rgba(28,28,28,.12));}
.pdp-name{font-family:'Playfair Display',serif; font-size:46px; font-weight:500; line-height:1.05; margin:14px 0 6px;}
.pdp-sub{display:block; font-family:'Hanken Grotesk',sans-serif; font-size:22px; color:var(--muted); font-weight:400; margin-top:4px;}
.pdp-vol{font-size:15px; letter-spacing:.06em; color:#8a8884; margin-bottom:22px;}
.pdp-desc{font-size:19px; color:#4f4d49; line-height:1.65; margin:0 0 24px;}
.chips{display:flex; flex-wrap:wrap; gap:10px; margin-bottom:28px;}
.chip{font-size:14px; color:var(--accent,#21426f); border:1px solid color-mix(in srgb,var(--accent,#21426f) 32%,#fff); background:color-mix(in srgb,var(--accent,#21426f) 7%,#fff); padding:7px 16px; border-radius:999px;}
.seals{display:flex; gap:24px; flex-wrap:wrap; padding:22px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); margin-bottom:26px;}
.seal{display:flex; align-items:center; gap:10px; font-size:14px; color:var(--muted);}
.seal-mark{width:30px; height:30px; border:2px solid var(--accent,#21426f); color:var(--accent,#21426f); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:14px; flex:none;}
.howto-label{font-size:13px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--ink); margin-bottom:8px;}
.howto p{margin:0; color:var(--muted);}
.howto .note{font-size:13px; color:#a3a19d; margin-top:10px;}

/* ---- features ---- */
.features{background:var(--bg-soft); border-top:1px solid var(--line);}
.features-h{font-family:'Playfair Display',serif; font-size:34px; font-weight:500; margin:0 0 34px;}
.feat-grid{display:grid; grid-template-columns:1fr 1fr; gap:34px 56px;}
.feat{display:flex; gap:20px; align-items:flex-start;}
.feat-n{font-family:'Playfair Display',serif; font-size:30px; line-height:1; flex:none;}
.feat h3{margin:0 0 6px; font-size:21px;}
.feat p{margin:0; color:var(--muted);}

/* ---- pager ---- */
.pdp-pager{border-top:1px solid var(--line);}
.pager-inner{display:flex; justify-content:space-between; padding:30px 32px;}
.pager-link{display:flex; flex-direction:column; gap:4px;}
.pager-link--next{text-align:right;}
.pager-dir{font-size:13px; letter-spacing:.1em; text-transform:uppercase; color:var(--lav); font-weight:600;}
.pager-name{font-family:'Playfair Display',serif; font-size:21px; color:var(--ink);}

/* ---- footer ---- */
.site-footer{background:var(--navy); color:#cdd7e6; margin-top:0;}
.footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1.4fr; gap:40px; padding:60px 32px 34px;}
.footer-word{font-family:'Jost',sans-serif; font-weight:300; font-size:40px; color:#fff; line-height:1;}
.footer-tag{font-size:12px; letter-spacing:.34em; color:#8fa3c0; margin-top:10px;}
.footer-nav{display:flex; flex-direction:column; gap:12px;}
.footer-nav a{color:#cdd7e6; font-size:15px;}
.footer-nav a:hover{color:#fff;}
.footer-label{font-size:12px; letter-spacing:.16em; text-transform:uppercase; color:#8fa3c0; font-weight:600;}
.footer-vegalab{display:inline-block; margin:10px 0 12px;}
.footer-vegalab img{width:150px; height:auto; display:block; opacity:.96;}
.footer-brandline{font-size:14px; color:#9fb0c9;}
.footer-legal{border-top:1px solid rgba(255,255,255,.12); padding:22px 32px 40px!important; font-size:12.5px; color:#8295af; line-height:1.6; max-width:var(--maxw);}

/* ---- responsive ---- */
@media (max-width:980px){
  .grid--4{grid-template-columns:repeat(2,1fr);}
  .band-inner,.story-two,.pdp-grid{grid-template-columns:1fr; gap:40px;}
  .pdp-media{position:static;}
  .feat-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;}
}
@media (max-width:640px){
  .wrap{padding:0 20px;}
  .grid--3,.grid--4{grid-template-columns:repeat(2,1fr); gap:16px;}
  .header-edition{display:none;}
  .nav{gap:22px;}
  .section{padding:56px 0;}
  .band-inner{padding:56px 20px;}
  .seals{gap:16px;}
  .pager-name{font-size:17px;}
}
@media (max-width:440px){
  .grid--3,.grid--4{grid-template-columns:1fr;}
}
