﻿:root{
  --bg:#faf8f4;
  --ink:#1f2421;
  --muted:#6b7169;
  --card:#ffffff;
  --brand:#2e7d4f;
  --brand-dark:#256641;
  --line:rgba(0,0,0,.08);
  --line-soft:rgba(0,0,0,.06);
  --shadow:0 10px 40px rgba(0,0,0,.10);
  --radius-sm:10px;
  --radius-md:14px;
  --radius-lg:18px;
  --wrap:1100px;
}

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

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Switzer,system-ui,sans-serif;
  background:var(--bg);
  color:var(--ink);
  line-height:1.55;
  overflow-x:hidden;
}

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

a{
  color:var(--brand);
}

.wrap{
  width:min(100%, var(--wrap));
  margin:0 auto;
  padding:0 20px;
}

.skip{
  position:absolute;
  left:-9999px;
  top:auto;
}

.skip:focus{
  left:10px;
  top:10px;
  z-index:9999;
  background:#fff;
  color:var(--ink);
  padding:10px 12px;
  border-radius:8px;
  box-shadow:var(--shadow);
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  min-height:72px;
  padding:0 20px;
}

.brand{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--brand);
  text-decoration:none;
  font-weight:700;
  font-size:20px;
  line-height:1;
  white-space:nowrap;
}

.brand svg{
  flex:0 0 auto;
}

.brand-text span{
  color:var(--ink);
}

.site-nav{
  display:flex;
  align-items:center;
  gap:18px;
}

.site-nav a{
  color:var(--ink);
  text-decoration:none;
  font-weight:500;
  font-size:15px;
}

.site-nav a:hover,
.site-nav a.active{
  color:var(--brand);
}

.nav-cta{
  background:var(--brand);
  color:#fff !important;
  padding:9px 16px;
  border-radius:10px;
}

.nav-cta:hover{
  background:var(--brand-dark);
}

.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:4px;
  width:44px;
  height:44px;
  padding:0;
  border:0;
  background:none;
  cursor:pointer;
}

.nav-toggle span{
  width:24px;
  height:2px;
  background:var(--ink);
  margin:0 auto;
  border-radius:999px;
}

.hero{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(0,.9fr);
  gap:40px;
  align-items:center;
  padding:48px 20px 24px;
}

.eyebrow{
  color:var(--brand);
  font-weight:600;
  text-transform:uppercase;
  font-size:13px;
  letter-spacing:.05em;
}

.hero h1{
  margin:.3em 0;
  font-size:clamp(2rem, 4.5vw, 3.2rem);
  line-height:1.15;
}

.lead{
  font-size:clamp(1rem, 2vw, 1.15rem);
  color:var(--muted);
  max-width:58ch;
}

.byline{
  color:var(--muted);
  font-size:.92rem;
}

.hero-media img{
  width:100%;
  aspect-ratio:4/3;
  height:auto;
  object-fit:cover;
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
}

.section-title{
  font-size:clamp(1.35rem, 2.6vw, 1.75rem);
  line-height:1.2;
  margin:40px 0 18px;
}

.cat-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.cat-pill{
  display:flex;
  align-items:center;
  gap:8px;
  min-height:44px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:999px;
  padding:6px 14px 6px 6px;
  font-weight:500;
  opacity:0;
  transform:translateY(14px);
  transition:transform .45s ease, opacity .45s ease, border-color .2s ease;
}

.cat-pill:hover{
  border-color:rgba(46,125,79,.28);
}

.cat-pill img{
  width:32px;
  height:32px;
  border-radius:50%;
  object-fit:cover;
  flex:0 0 32px;
}

.rgrid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(260px, 1fr));
  gap:22px;
}

.rcard{
  background:var(--card);
  border:1px solid rgba(0,0,0,.07);
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(0,0,0,.04);
  opacity:0;
  transform:translateY(14px);
  transition:transform .5s ease, opacity .5s ease, box-shadow .25s ease;
}

.rcard:hover{
  box-shadow:0 14px 32px rgba(0,0,0,.08);
}

.rcard.in,
.pick.in,
.tip.in,
.cat-pill.in{
  opacity:1;
  transform:none;
}

.rcard img{
  width:100%;
  height:180px;
  object-fit:cover;
  display:block;
}

.rcard-body{
  padding:16px;
}

.tag{
  display:inline-block;
  color:var(--brand);
  font-size:.8rem;
  font-weight:600;
  margin-bottom:6px;
}

.pick-row{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:20px;
}

.pick{
  opacity:0;
  transform:translateY(14px);
  transition:transform .5s ease, opacity .5s ease;
}

.pick img{
  width:100%;
  height:160px;
  object-fit:cover;
  border-radius:12px;
}

.tip-row{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:20px;
}

.tip{
  background:#fff;
  border:1px solid rgba(0,0,0,.07);
  border-radius:14px;
  padding:18px;
  opacity:0;
  transform:translateY(14px);
  transition:transform .5s ease, opacity .5s ease, box-shadow .25s ease;
}

.tip:hover{
  box-shadow:0 10px 24px rgba(0,0,0,.05);
}

.newsletter{
  background:#fff;
  border:1px solid rgba(0,0,0,.07);
  border-radius:16px;
  padding:30px;
  margin:40px auto;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.page{
  max-width:820px;
  padding:48px 0;
}

.page h1,
.page h2,
.page h3{
  line-height:1.2;
}

.contact-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:16px;
  padding:28px;
  margin-top:20px;
  box-shadow:0 10px 28px rgba(0,0,0,.04);
}

.site-footer{
  background:#1b1b1b;
  color:#e8e8e8;
  margin-top:60px;
  padding:40px 0 20px;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:30px;
}

.foot-brand p,
.foot-col a,
.footer-bottom{
  color:#cfcfcf;
}

.foot-col h4{
  margin:0 0 10px;
  color:#fff;
}

.foot-col a{
  display:block;
  text-decoration:none;
  padding:4px 0;
}

.foot-col a:hover{
  color:#9fe0b0;
}

.footer-bottom{
  border-top:1px solid #333;
  margin-top:24px;
  padding-top:16px;
  font-size:.85rem;
}

.btn-solid{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  background:#2e7d4f;
  color:#fff;
  border:0;
  padding:10px 18px;
  border-radius:9px;
  font-weight:600;
  cursor:pointer;
  text-decoration:none;
  transition:background .2s ease, transform .2s ease;
}

.btn-solid:hover{
  background:#256641;
}

.btn-ghost{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  background:transparent;
  color:#f4f4f4;
  border:1px solid #666;
  padding:10px 18px;
  border-radius:9px;
  font-weight:600;
  cursor:pointer;
  transition:border-color .2s ease, color .2s ease;
}

.btn-ghost:hover{
  border-color:#9fe0b0;
  color:#fff;
}

.cookie-banner{
  position:fixed;
  left:16px;
  right:16px;
  bottom:16px;
  max-width:760px;
  margin:0 auto;
  background:#1b1b1b;
  color:#f4f4f4;
  padding:18px 20px;
  border-radius:14px;
  box-shadow:0 10px 40px rgba(0,0,0,.3);
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  align-items:center;
  justify-content:space-between;
  z-index:9999;
  font-size:14px;
}

.cookie-banner[hidden]{
  display:none !important;
}

.cookie-banner a{
  color:#9fe0b0;
}

.cookie-banner p{
  margin:0;
  flex:1 1 320px;
}

.cookie-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

@media (max-width:991px){
  .hero{
    grid-template-columns:1fr;
    gap:24px;
    padding-top:36px;
  }

  .hero-media{
    order:2;
  }

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

  .page{
    padding:36px 0;
  }
}

@media (max-width:760px){
  .wrap{
    padding:0 16px;
  }

  .header-inner{
    min-height:64px;
    padding:0 16px;
  }

  .nav-toggle{
    display:flex;
  }

  .site-nav{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:#fff;
    border-bottom:1px solid var(--line);
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding:10px 16px 16px;
    box-shadow:0 12px 24px rgba(0,0,0,.06);
  }

  .site-nav a{
    display:block;
    width:100%;
    padding:12px 0;
  }

  .site-nav.open{
    display:flex;
  }

  .hero{
    padding:28px 16px 12px;
  }

  .section-title{
    margin:32px 0 16px;
  }

  .rgrid,
  .pick-row,
  .tip-row{
    grid-template-columns:1fr;
  }

  .newsletter,
  .contact-card{
    padding:22px;
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:22px;
  }

  .cookie-banner{
    left:12px;
    right:12px;
    bottom:12px;
    padding:16px;
  }

  .cookie-actions{
    width:100%;
  }

  .cookie-actions button{
    flex:1 1 calc(50% - 5px);
  }
}

@media (max-width:520px){
  .brand{
    font-size:18px;
  }

  .hero h1{
    font-size:1.85rem;
  }

  .lead{
    font-size:1rem;
  }

  .cat-row{
    gap:10px;
  }

  .cat-pill{
    width:100%;
    justify-content:flex-start;
  }

  .rcard img{
    height:200px;
  }

  .pick img{
    height:190px;
  }

  .tip{
    padding:16px;
  }

  .newsletter{
    padding:20px 16px;
  }

  .page{
    padding:28px 0;
  }

  .cookie-banner{
    font-size:13px;
  }

  .cookie-actions button{
    flex:1 1 100%;
  }
}

@media (prefers-reduced-motion:reduce){
  *,
  *::before,
  *::after{
    animation:none !important;
    transition:none !important;
    scroll-behavior:auto !important;
  }

  .rcard,
  .pick,
  .tip,
  .cat-pill{
    opacity:1 !important;
    transform:none !important;
  }
}