
  :root {
    --forest:    #1a2e1e;
    --canopy:    #2d4a32;
    --moss:      #4a6741;
    --sage:      #7a9e6f;
    --lichen:    #b5c9a0;
    --parchment: #f2ead8;
    --cream:     #faf6ec;
    --bark:      #5c3d2e;
    --soil:      #3b2616;
    --amber:     #c8882a;
    --gold:      #d4a843;
    --moonlight: #e8e2d4;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'EB Garamond', Georgia, serif;
    background: var(--cream);
    color: var(--forest);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 48px;
background: var(--forest); /* solid colour */
    /*background: rgba(26,46,30,0.92);
    backdrop-filter: blur(12px);*/
    border-bottom: 1px solid rgba(212,168,67,0.2);
  }
  .nav-logo {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 0.04em;
    text-decoration: none;

  }
  .nav-logo span { color: var(--lichen); font-size: 0.7em; display: block; font-family: 'Cinzel', serif; letter-spacing: 0.15em; margin-top: 2px; }
  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a {
    font-family: 'Cinzel', serif; font-size: 0.72rem; letter-spacing: 0.12em;
    color: var(--moonlight); text-decoration: none; text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-basket {
    font-family: 'Cinzel', serif; font-size: 0.72rem; letter-spacing: 0.1em;
    background: var(--gold); color: var(--soil); padding: 8px 20px;
    text-decoration: none; text-transform: uppercase;
    transition: background 0.2s;
  }

  .nav-basket:hover { background: var(--amber); }

/* Global Link Styling */
a {
    color: var(--gold);
    text-decoration: none ;
    border-bottom: none ;
    box-shadow: none ;
    transition: color 0.3s ease;
}

/* Hover state to make it feel interactive */
a:hover {
    color: var(--amber) ;
    text-decoration: none ;
}

/* Specifically target any paragraphs or spans inside links 
a p, a span {
    color: inherit;
    text-decoration: none;
}*/


/* ── Desktop social icons in nav ── */
.nav-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 6px;
  padding-left: 14px;
  border-left: 1px solid rgba(212,168,67,0.2);
}

.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  transition: color 0.2s;
  text-decoration: none;
}

.nav-social a:hover { color: var(--gold); }

.nav-social svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

/* ── Mobile social row inside hamburger panel ── */
.mobile-social-row {
  flex-direction: row;
  gap: 20px;
  padding: 16px 0;
  border-bottom: none !important;
  margin-top: 8px;
}

.mobile-social-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage) !important;
  padding: 0 !important;    /* override the nav-links a padding */
  width: auto !important;
}

.mobile-social-row a:hover { color: var(--gold) !important; }

.mobile-social-row svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Hide desktop social on mobile */
@media (max-width: 768px) {
  .nav-social {
    display: none;
  }
  .mobile-social-row {
    display: flex;
    flex-direction: row;
    justify-content: flex-start; /* or center if you prefer */
    align-items: center;
    gap: 16px;
    width: 100%;
  }
  .mobile-social-row a {
    display: inline-flex;   /* ← key fix */
    width: auto;            /* ← stops full-width stacking */
  }
  .mobile-only.mobile-social-row {
    display: flex;          /* override the block */
    flex-direction: row;
    gap: 16px;
    align-items: center;
  }

  .mobile-only.mobile-social-row a {
    display: inline-flex;
    width: auto;
    padding: 0;
  }
}


  /* ────────────────────────────────
     WITCH'S GARDEN FEATURE
  ──────────────────────────────── */
  .witches-section {
    background:
      radial-gradient(ellipse at 15% 50%, rgba(42,20,10,0.7) 0%, transparent 55%),
      radial-gradient(ellipse at 85% 50%, rgba(26,14,40,0.6) 0%, transparent 50%),
      linear-gradient(135deg, #0e0a14 0%, #1a1020 50%, #0a100a 100%);
    padding: 90px 48px;
    border-bottom: 1px solid rgba(212,168,67,0.15);
  }
  .witches-inner { max-width: 1100px; margin: 0 auto; }
  .witches-top {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 72px; align-items: start;
  }
  .witches-text .section-label { text-align: left; }
  .witches-text .section-title { text-align: left; }
  .witches-text p { font-size: 1rem; color: var(--lichen); line-height: 1.8; margin-bottom: 14px; }
  .witches-text em { color: var(--gold); font-style: italic; }
  .witches-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .witches-card {
    padding: 22px 20px;
    border: 1px solid rgba(212,168,67,0.14);
    background: rgba(255,255,255,0.03);
    transition: border-color 0.25s, background 0.25s;
    color: inherit; /* This makes the text stay the 'lichen' color instead of turning blue */
text-decoration: none !important;
    border-bottom: none !important;
}

/* If you want a subtle effect when hovering over the link */
.witches-card a:hover {
    text-decoration: none;
    color: var(--gold); 
}


  }
  .witches-card:hover { border-color: rgba(212,168,67,0.4); background: rgba(212,168,67,0.05); }
  .wc-icon { font-size: 1.3rem; margin-bottom: 9px; }
  .witches-card h4 {
    font-family: 'Cinzel', serif; font-size: 0.68rem; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 5px;
  }
  .witches-card p { font-size: 0.88rem; color: var(--lichen); line-height: 1.5; }



  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background:
      radial-gradient(ellipse at 20% 80%, rgba(42,74,50,0.6) 0%, transparent 60%),
      radial-gradient(ellipse at 80% 20%, rgba(90,57,46,0.4) 0%, transparent 50%),
      linear-gradient(160deg, var(--soil) 0%, var(--forest) 40%, #0d1f10 100%);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    padding: 120px 48px 80px;
  }

  /* Decorative botanical rings */
  .hero-ring {
    position: absolute; border-radius: 50%;
    border: 1px solid rgba(212,168,67,0.15);
    pointer-events: none;
  }
  .hero-ring:nth-child(1) { width: 600px; height: 600px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
  .hero-ring:nth-child(2) { width: 900px; height: 900px; top: 50%; left: 50%; transform: translate(-50%,-50%); border-color: rgba(181,201,160,0.08); }
  .hero-ring:nth-child(3) { width: 1200px; height: 1200px; top: 50%; left: 50%; transform: translate(-50%,-50%); border-color: rgba(212,168,67,0.06); }

  /* Leaf deco SVG clusters */
  .leaf-cluster {
    position: absolute; opacity: 0.18; pointer-events: none;
  }
  .leaf-cluster.tl { top: 80px; left: 30px; transform: rotate(-20deg); }
  .leaf-cluster.tr { top: 80px; right: 30px; transform: rotate(25deg) scaleX(-1); }
  .leaf-cluster.bl { bottom: 60px; left: 60px; transform: rotate(15deg); }
  .leaf-cluster.br { bottom: 60px; right: 60px; transform: rotate(-10deg) scaleX(-1); }

  .hero-eyebrow {
    font-family: 'Cinzel', serif; font-size: 0.7rem; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 24px;
    opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
  }

@media (max-width: 768px) {
  .hero-eyebrow {
    text-align: center;
    width: 100%;
  }
}

  .hero-title {
    font-family: 'Cinzel Decorative', serif;
font-size: clamp(1.2rem, 3.2vw, 3.0rem);
    color: var(--cream); line-height: 1.15;
    text-align: center; max-width: 800px;
    opacity: 0; animation: fadeUp 0.9s 0.4s forwards;
  }
  .hero-title em { color: var(--gold); font-style: normal; }
  .hero-divider {
    display: flex; align-items: center; gap: 16px;
    margin: 28px 0;
    opacity: 0; animation: fadeUp 0.9s 0.6s forwards;
  }
  .hero-divider-line { width: 60px; height: 1px; background: var(--gold); opacity: 0.5; }
  .hero-divider svg { opacity: 0.7; }

  .hero-subtitle {
    font-family: 'EB Garamond', serif; font-size: 1.15rem; font-style: italic;
    color: var(--lichen); text-align: center; max-width: 560px; line-height: 1.7;
    opacity: 0; animation: fadeUp 0.9s 0.8s forwards;
  }
  .hero-badges {
    display: flex; gap: 24px; margin-top: 40px; flex-wrap: wrap; justify-content: center;
    opacity: 0; animation: fadeUp 0.9s 1s forwards;
  }
  .badge {
    font-family: 'Cinzel', serif; font-size: 0.65rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--moonlight);
    border: 1px solid rgba(212,168,67,0.35); padding: 8px 18px;
    background: rgba(255,255,255,0.04);
  }
  .hero-cta-row {
    display: flex; gap: 16px; margin-top: 48px;
    opacity: 0; animation: fadeUp 0.9s 1.1s forwards;
  }
  .btn-primary {
    font-family: 'Cinzel', serif; font-size: 0.75rem; letter-spacing: 0.15em;
    text-transform: uppercase; text-decoration: none;
    background: var(--gold); color: var(--soil);
    padding: 16px 36px; transition: all 0.2s;
  }
  .btn-primary:hover { background: var(--amber); transform: translateY(-2px); }
  .btn-outline {
    font-family: 'Cinzel', serif; font-size: 0.75rem; letter-spacing: 0.15em;
    text-transform: uppercase; text-decoration: none;
    border: 1px solid rgba(212,168,67,0.5); color: var(--gold);
    padding: 16px 36px; transition: all 0.2s;
  }
  .btn-outline:hover { background: rgba(212,168,67,0.1); transform: translateY(-2px); }

  .scroll-cue {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    opacity: 0; animation: fadeIn 1s 1.6s forwards;
  }
  .scroll-cue span {
    font-family: 'Cinzel', serif; font-size: 0.6rem; letter-spacing: 0.2em;
    color: var(--sage); text-transform: uppercase;
  }
  .scroll-cue-arrow {
    width: 1px; height: 40px; background: linear-gradient(to bottom, var(--sage), transparent);
    animation: scrollPulse 2s 2s infinite;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; } to { opacity: 0.8; }
  }
  @keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 0.6; }
    50%       { transform: scaleY(1.3); opacity: 1; }
  }

  /* ── ETHOS BAND ── */
  .ethos-band {
    background: var(--forest);
    display: flex; justify-content: center; align-items: stretch;
    border-top: 1px solid rgba(212,168,67,0.2);
    border-bottom: 1px solid rgba(212,168,67,0.2);
  }
  .ethos-item {
    flex: 1; max-width: 320px;
    padding: 44px 32px; text-align: center;
    border-right: 1px solid rgba(212,168,67,0.1);
    transition: background 0.3s;
  }
  .ethos-item:last-child { border-right: none; }
  .ethos-item:hover { background: rgba(212,168,67,0.04); }
  .ethos-icon { font-size: 1.8rem; margin-bottom: 12px; }
  .ethos-item h3 {
    font-family: 'Cinzel', serif; font-size: 0.7rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
  }
  .ethos-item p {
    font-family: 'EB Garamond', serif; font-size: 0.95rem;
    color: var(--lichen); line-height: 1.6; font-style: italic;
  }

  /* ── SECTION COMMON ── */
  section { padding: 100px 48px; }
  .section-label {
    font-family: 'Cinzel', serif; font-size: 0.65rem; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--amber); margin-bottom: 12px;
  }
 h2, .section-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    color: var(--forest); line-height: 1.2; margin-bottom: 20px;
  }

@media (max-width: 768px) {
  h2, .section-title {
    margin-top: 40px;
  }
}

  .section-title.light { color: var(--cream); }
  .section-body {
    font-family: 'EB Garamond', serif; font-size: 1.1rem;
    color: var(--bark); line-height: 1.8; max-width: 1200px;
  }
  .section-body.light { color: var(--lichen); }
  .ornament {
    width: 40px; height: 1px; background: var(--gold);
    display: inline-block; margin: 16px 0 24px;
  }

  /* ── SHOP CATEGORIES ── */
  .shop-section { background: var(--parchment); }
  .shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px; margin-top: 56px;
  }
  .shop-card {
    position: relative; aspect-ratio: 3/4; overflow: hidden;
    cursor: pointer; text-decoration: none;
  }
  .shop-card-img {
    width: 100%; height: 100%; object-fit: cover;
    filter: saturate(0.7) brightness(0.65);
    transition: filter 0.5s, transform 0.5s;
  }
  .shop-card:hover .shop-card-img {
    filter: saturate(1) brightness(0.55);
    transform: scale(1.05);
  }
  .shop-card-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    transition: transform 0.5s;
  }
  .shop-card:hover .shop-card-placeholder { transform: scale(1.08); }

  /* Per-category background colours */
  .shop-card:nth-child(1) .shop-card-placeholder { background: linear-gradient(160deg,#1a3020,#2d5235); }
  .shop-card:nth-child(2) .shop-card-placeholder { background: linear-gradient(160deg,#2e1f0e,#4a3018); }
  .shop-card:nth-child(3) .shop-card-placeholder { background: linear-gradient(160deg,#1e2d10,#3a5a20); }
  .shop-card:nth-child(4) .shop-card-placeholder { background: linear-gradient(160deg,#1a2a2a,#2d4a40); }
  .shop-card:nth-child(5) .shop-card-placeholder { background: linear-gradient(160deg,#251520,#4a2a40); }
  .shop-card:nth-child(6) .shop-card-placeholder { background: linear-gradient(160deg,#1c2510,#384020); }
  .shop-card:nth-child(7) .shop-card-placeholder { background: linear-gradient(160deg,#18201c,#304030); }
  .shop-card:nth-child(8) .shop-card-placeholder { background: linear-gradient(160deg,#1a1a2a,#30304a); }
  .shop-card:nth-child(9) .shop-card-placeholder { background: linear-gradient(160deg,#1a3020,#2d5235); }
  .shop-card:nth-child(10) .shop-card-placeholder { background: linear-gradient(160deg,#2e1f0e,#4a3018); }
  .shop-card:nth-child(11) .shop-card-placeholder { background: linear-gradient(160deg,#1e2d10,#3a5a20); }
  .shop-card:nth-child(12) .shop-card-placeholder { background: linear-gradient(160deg,#1a2a2a,#2d4a40); }
  .shop-card:nth-child(13) .shop-card-placeholder { background: linear-gradient(160deg,#251520,#4a2a40); }
  .shop-card:nth-child(14) .shop-card-placeholder { background: linear-gradient(160deg,#1c2510,#384020); }
  .shop-card:nth-child(15) .shop-card-placeholder { background: linear-gradient(160deg,#18201c,#304030); }
  .shop-card:nth-child(16) .shop-card-placeholder { background: linear-gradient(160deg,#1a1a2a,#30304a); }

  .shop-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,20,12,0.95) 0%, rgba(10,20,12,0.2) 50%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 24px 20px;
  }
  .shop-card-name {
    font-family: 'Cinzel', serif; font-size: 0.72rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--cream);
    transform: translateY(4px); transition: transform 0.3s;
  }
  .shop-card:hover .shop-card-name { transform: translateY(0); }
  .shop-card-arrow {
    font-size: 0.7rem; color: var(--gold); margin-top: 6px;
    opacity: 0; transform: translateX(-6px); transition: all 0.3s;
  }
  .shop-card:hover .shop-card-arrow { opacity: 1; transform: translateX(0); }

  /* ── WOODLAND SPLIT ── */
  .woodland-section {
    background: var(--forest);
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0; padding: 0; overflow: hidden;
  }
  .woodland-text {
    padding: 100px 72px;
    display: flex; flex-direction: column; justify-content: center;
  }
  .woodland-visual {
    background:
      radial-gradient(ellipse at 30% 60%, rgba(74,103,65,0.5) 0%, transparent 60%),
      radial-gradient(ellipse at 70% 30%, rgba(92,61,46,0.3) 0%, transparent 50%),
      linear-gradient(135deg, #0d1f10 0%, #1a3020 50%, #0a1a0c 100%);
    display: flex; align-items: center; justify-content: center;
    min-height: 520px; position: relative; overflow: hidden;
  }
  .woodland-visual-rings {
    position: absolute; width: 100%; height: 100%;
  }
  .woodland-ring {
    position: absolute; border-radius: 50%;
    border: 1px solid rgba(181,201,160,0.12);
    top: 50%; left: 50%;
  }
  .woodland-ring:nth-child(1) { width: 200px; height: 200px; transform: translate(-50%,-50%); }
  .woodland-ring:nth-child(2) { width: 340px; height: 340px; transform: translate(-50%,-50%); }
  .woodland-ring:nth-child(3) { width: 480px; height: 480px; transform: translate(-50%,-50%); border-color: rgba(212,168,67,0.08); }
  .woodland-centre {
    position: relative; z-index: 1; text-align: center;
  }
  .woodland-centre-number {
    font-family: 'Cinzel Decorative', serif; font-size: 5rem;
    color: rgba(212,168,67,0.25); line-height: 1;
  }
  .woodland-centre-label {
    font-family: 'Cinzel', serif; font-size: 0.65rem; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--sage);
    display: block; margin-top: 4px;
  }

  /* ── SUBSCRIPTION FEATURE ── */
  .subscription-section {
    background:
      radial-gradient(ellipse at 10% 50%, rgba(42,20,10,0.6) 0%, transparent 50%),
      radial-gradient(ellipse at 90% 50%, rgba(26,46,30,0.6) 0%, transparent 50%),
      linear-gradient(135deg, var(--soil) 0%, #1c140a 50%, var(--forest) 100%);
    color: var(--cream);
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0; padding: 0; align-items: stretch;
    border-top: 1px solid rgba(212,168,67,0.15);
    border-bottom: 1px solid rgba(212,168,67,0.15);
  }
  .subscription-content {
    padding: 100px 72px;
    display: flex; flex-direction: column; justify-content: center;
  }
  .subscription-preview {
    border-left: 1px solid rgba(212,168,67,0.15);
    padding: 80px 60px;
    display: flex; flex-direction: column; gap: 16px; justify-content: center;
  }
  .subscription-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212,168,67,0.15);
    padding: 24px 28px;
    transition: all 0.3s;
  }
  .subscription-card:hover {
    background: rgba(212,168,67,0.07);
    border-color: rgba(212,168,67,0.35);
    transform: translateX(6px);
  }
  .subscription-card-title {
    font-family: 'Cinzel', serif; font-size: 0.78rem; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
  }
  .subscription-card-desc {
    font-family: 'EB Garamond', serif; font-size: 0.95rem;
    color: var(--lichen); font-style: italic;
  }

  /* ── FOREST PRODUCTS ── */
  .products-section { background: var(--cream); }
  .products-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 32px; margin-top: 56px;
  }
  .product-item {
    border: 1px solid rgba(90,57,46,0.15); padding: 40px 32px;
    transition: all 0.3s; position: relative; overflow: hidden;
  }
  .product-item::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(to right, var(--gold), var(--amber));
    transform: scaleX(0); transition: transform 0.3s;
  }
  .product-item:hover { transform: translateY(-4px); border-color: rgba(212,168,67,0.4); }
  .product-item:hover::before { transform: scaleX(1); }
  .product-icon { font-size: 2rem; margin-bottom: 16px; }
  .product-item h3 {
    font-family: 'Cinzel', serif; font-size: 0.8rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--forest); margin-bottom: 12px;
  }
  .product-item p {
    font-family: 'EB Garamond', serif; font-size: 1rem;
    color: var(--bark); line-height: 1.7;
  }

  /* ── CERTIFICATIONS ── */
  .cert-section {
    background: var(--forest); padding: 60px 48px;
    display: flex; align-items: center; justify-content: center; gap: 80px;
    border-top: 1px solid rgba(212,168,67,0.2);
  }
  .cert-item {
    display: flex; align-items: center; gap: 16px;
  }
  .cert-icon-wrap {
    width: 48px; height: 48px; border: 1px solid rgba(212,168,67,0.4);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
  }
  .cert-text { font-family: 'Cinzel', serif; font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; }
  .cert-text .cert-title { color: var(--gold); margin-bottom: 2px; }
  .cert-text .cert-sub { color: var(--sage); }

  /* ── FOOTER ── */
  footer {
    background: var(--soil);
    padding: 80px 48px 40px;
    border-top: 1px solid rgba(212,168,67,0.2);
  }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px; margin-bottom: 60px;
  }
  .footer-brand .footer-logo {
    font-family: 'Cinzel Decorative', serif; font-size: 1.2rem;
    color: var(--gold); letter-spacing: 0.04em; margin-bottom: 8px;
    display: block;
  }
  .footer-brand .footer-tagline {
    font-family: 'EB Garamond', serif; font-size: 0.95rem;
    color: var(--sage); font-style: italic; line-height: 1.6;
    margin-bottom: 20px;
  }
  .footer-email {
    font-family: 'Cinzel', serif; font-size: 0.68rem; letter-spacing: 0.1em;
    color: var(--lichen); text-decoration: none;
    border-bottom: 1px solid rgba(181,201,160,0.3); padding-bottom: 2px;
  }
  .footer-col h4 {
    font-family: 'Cinzel', serif; font-size: 0.65rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a {
    font-family: 'EB Garamond', serif; font-size: 0.95rem;
    color: var(--lichen); text-decoration: none; transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--gold); }
  .footer-bottom {
    border-top: 1px solid rgba(212,168,67,0.1);
    padding-top: 28px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-bottom p {
    font-family: 'EB Garamond', serif; font-size: 0.85rem; color: var(--sage);
  }
  .footer-bottom p em { font-style: italic; color: var(--lichen); }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .shop-grid { grid-template-columns: repeat(4, 1fr); }
    .woodland-section { grid-template-columns: 1fr; }
    .woodland-visual { min-height: 300px; }
    .subscription-section { grid-template-columns: 1fr; }
    .subscription-preview { border-left: none; border-top: 1px solid rgba(212,168,67,0.15); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 768px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    section { padding: 70px 24px; }
    .shop-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: 1fr; }
    .cert-section { flex-direction: column; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr; }
  }

.circle-crop {
  width: 75%;        /* size of circle relative to placeholder — adjust freely */
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;  /* this is what clips the zoomed image to a circle */
  flex-shrink: 0;
}

.circle-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.4);
  transform-origin: center;
  display: block;
}




.userbutton {
  background-color: #93A15D; /* sage green */
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.userbutton:hover {
  background-color: #818C51; /* slightly deeper on hover */
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* ═══════════════════════════════════════════════
   MOBILE NAV — add these rules to stylesheet2.css
   ═══════════════════════════════════════════════ */

@media (max-width: 768px) {
  .cert-section {
    flex-direction: column;
    gap: 20px;
    padding: 40px 24px;
    align-items: flex-start;
    overflow: visible;      /* ← add this */
  }

  .cert-item {
    width: 100%;            /* ← add this — stops items being cut off */
  }
}


/* Group Search + Basket + Hamburger on the right */
.nav-right-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── Hamburger button ── */
.hamburger {
  display: none; /* hidden on desktop */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid rgba(212,168,67,0.3);
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}


/* Animate to × when open */
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Slide-in nav panel ── */
/* .mobile-only items are hidden on desktop */
.mobile-only { display: none; }

/* ── Dark overlay behind open panel ── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 98;
  opacity: 0;
  transition: opacity 0.3s;
}
.nav-overlay.open {
  display: block;
  opacity: 1;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── Nav layout on mobile ── */
  nav {
    padding: 12px 20px;
    flex-wrap: nowrap;
    justify-content: space-between;
overflow: visible;
    display: flex !important;

  }

  /* Hide the text logo on small screens, keep the image */
  /*.nav-logo:nth-child(2) {*/
  /*  display: none;*/
  /*}*/

  /* Show hamburger, hide desktop Search/Basket links */
  .hamburger {
    display: flex;
  }

  .nav-basket {
    display: none;
  }

  /* ── Slide-in menu panel ── */
  .nav-links {
    display: flex !important; /* override any existing display:none */
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: rgba(13,26,15,0.99);
    border-left: 1px solid rgba(212,168,67,0.2);
    padding: 100px 36px 48px;
    gap: 8px;
    z-index: 99;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links li {
    border-bottom: 1px solid rgba(212,168,67,0.08);
  }

  .nav-links a {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 0.14em;
    color: var(--moonlight);
    text-decoration: none;
    text-transform: uppercase;
    padding: 14px 0;
    display: block;
    transition: color 0.2s;
  }

  .nav-links a:hover {
    color: var(--gold);
  }

  /* Show Search + Basket inside the panel on mobile */
  .mobile-only {
    display: block;
    margin-top: 8px;
  }

  /* ── Hero ── */
  .hero {
    padding: 100px 24px 60px;
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(1.4rem, 6vw, 2.2rem); /*clamp(1.8rem, 9vw, 3rem);*/
  }

  .hero-badges {
    gap: 10px;
  }

  .badge {
    font-size: 0.58rem;
    padding: 6px 12px;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  /* ── Ethos band ── */
  .ethos-band {
    flex-wrap: wrap;
  }

  .ethos-item {
   /* flex: 1 1 calc(50% - 1px);  2×2 grid on mobile */
    max-width: none;
    padding: 28px 18px;
  }

  /* ── Shop grid: 2 columns on mobile ── */
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }

  .shop-section {
    padding: 56px 20px;
  }

  /* ── Woodland split: stack vertically ── */
  .woodland-section {
    grid-template-columns: 1fr;
  }

  .woodland-text {
    padding: 56px 24px;
  }

  .woodland-visual {
    min-height: 260px;
  }

  .woodland-centre img {
    height: 260px !important;
    width: 100%;
    object-fit: cover;
  }

  /* ── Witch's Garden ── */
  .witches-top {
    grid-template-columns: 1fr;
  }

  .witches-cards {
    grid-template-columns: 1fr;
  }

  /* ── Products ── */
  .products-section {
    padding: 56px 20px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  /* ── Cert strip ── */
  .cert-section {
    flex-direction: column;
    gap: 20px;
    padding: 40px 24px;
    align-items: flex-start;
  }

  /* ── Footer ── */
  footer {
    padding: 56px 20px 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* Tablet — 3-col shop grid */
@media (min-width: 769px) and (max-width: 1024px) {
  nav {
    padding: 14px 28px;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: 0.6rem;
  }

  .shop-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .woodland-section {
    grid-template-columns: 1fr;
  }

  .woodland-centre img {
    height: 340px !important;
    width: 100%;
    object-fit: cover;
  }

  .witches-top {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .ethos-band {
    flex-direction: column;   /* 🔥 stack vertically */
    align-items: stretch;
  }

  .ethos-item {
    max-width: none;          /* 🔥 remove the limiter */
    width: 100%;
    border-right: none;       /* optional: cleaner look */
    border-bottom: 1px solid rgba(212,168,67,0.1);
  }

  .ethos-item:last-child {
    border-bottom: none;
  }
}


.reviews-wrapper {
  overflow: hidden;
  padding: 2rem 1rem;
  background: #1a1020;

}

.reviews-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.review {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--moonlight);
  padding: 1.2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.review p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.review span {
  font-size: 0.85rem;
  color: #444;
}

/* dots */
.dots {
  text-align: center;
  margin-top: 1rem;
}

.dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 4px;
  background: #ccc;
  border-radius: 50%;
}

.dots .active {
  background: #fff;
}
.reviews-slider {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.reviews-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}