/* Naturali homepage - Design Concept v2
   Shape lock:  pill (999px) for interactive, 18px cards, 22px media.
   Colour lock: single accent = teal #2e9e8e. Navy #1a1a4e structural. No third accent.
   Theme lock:  light only (site-wide theme is light; see build notes).
*/

.nh {
  --navy: #1a1a4e;
  --navy-deep: #12123c;
  --teal: #2e9e8e;
  --teal-bright: #3fc2ae;
  --teal-light: #e8f5f5;
  --teal-text: #1f7a6c;   /* accessible teal for small text on cream: 4.7:1 (brand #2e9e8e is 3.1:1) */
  --btn: #3a3a93;
  --ink: #23233f;
  --muted: #6b6b85;
  --bg: #fbfaf7;
  --line: #eceae3;
  --r-card: 18px;
  --r-media: 22px;
  --r-pill: 999px;

  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: clip;
}

.nh h1, .nh h2, .nh h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.14;
  color: var(--navy);
  margin: 0;
}
.nh p { margin: 0; }
.nh img { max-width: 100%; display: block; }
.nh a { text-decoration: none; }

.nh-bleed { width: 100vw; max-width: 100vw; margin-left: calc(50% - 50vw); }
.nh-wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.nh-sec { padding: 96px 0; position: relative; }
@media (max-width: 780px) { .nh-sec { padding: 64px 0; } }

.nh-eyebrow {
  color: var(--teal-text); font-size: 12px; font-weight: 800;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px;
}
.nh-h2 { font-size: clamp(28px, 4.2vw, 44px); max-width: 22ch; }
.nh-lede { color: var(--muted); font-size: 17px; max-width: 60ch; margin-top: 14px; }
.nh-center { text-align: center; }
.nh-center .nh-h2, .nh-center .nh-lede { margin-left: auto; margin-right: auto; }

/* ---------- Motion primitives ----------
   Progressive enhancement: content is visible by default. The hidden start
   state only applies once JS has confirmed it can reveal it again. */
.nh-js .nh-rv { opacity: 0; transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.nh-js .nh-rv.in { opacity: 1; transform: none; }
.nh-d1 { transition-delay: .07s } .nh-d2 { transition-delay: .14s }
.nh-d3 { transition-delay: .21s } .nh-d4 { transition-delay: .28s }

/* ---------- Buttons ---------- */
.nh-btn {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  font-weight: 700; font-size: 15px; padding: 15px 30px; border-radius: var(--r-pill);
  transition: transform .18s cubic-bezier(.16,1,.3,1), box-shadow .18s ease, background .18s ease;
}
.nh-btn:hover { transform: translateY(-3px); }
.nh-btn:active { transform: translateY(-1px) scale(.985); }
.nh-btn-primary { background: var(--btn); color: #fff; box-shadow: 0 8px 22px rgba(58,58,147,.28); }
.nh-btn-primary:hover { box-shadow: 0 14px 32px rgba(58,58,147,.36); color: #fff; }
.nh-btn-ghost { border: 2px solid var(--navy); color: var(--navy); }
.nh-btn-ghost:hover { background: var(--navy); color: #fff; }
.nh-btn-light { background: #fff; color: var(--navy); box-shadow: 0 8px 24px rgba(0,0,0,.14); }
.nh-btn-light:hover { color: var(--navy); }

/* ---------- 1. Hero (asymmetric split) ---------- */
.nh-hero { padding: 72px 0 88px; overflow: visible; }
.nh-hero::before, .nh-hero::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(72px); opacity: .5; z-index: 0;
}
.nh-hero::before { width: 460px; height: 460px; background: #bfe8e0; top: -150px; right: -110px; animation: nh-drift 15s ease-in-out infinite alternate; }
.nh-hero::after  { width: 360px; height: 360px; background: #ffe3d6; bottom: -170px; left: -140px; animation: nh-drift 19s ease-in-out infinite alternate-reverse; }
@keyframes nh-drift { from { transform: translate(0,0) scale(1) } to { transform: translate(38px,28px) scale(1.12) } }

.nh-hero .nh-wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.nh-hero h1 { font-size: clamp(38px, 5.2vw, 60px); }
.nh-hero h1 .nh-mark { color: var(--teal); position: relative; white-space: nowrap; }
.nh-hero h1 .nh-mark svg { position: absolute; left: 0; bottom: -9px; width: 100%; height: 13px; overflow: visible; }
.nh-hero h1 .nh-mark path {
  stroke: var(--teal-bright); stroke-width: 4; fill: none; stroke-linecap: round;
  stroke-dasharray: 300; stroke-dashoffset: 300; animation: nh-draw 1.1s .7s cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes nh-draw { to { stroke-dashoffset: 0 } }
.nh-hero p.nh-lead { font-size: 18px; color: var(--muted); max-width: 44ch; margin: 20px 0 30px; }
.nh-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.nh-hero-visual { position: relative; max-width: 430px; margin-left: auto; width: 100%; }
.nh-hero-img { border-radius: 28px; overflow: hidden; box-shadow: 0 30px 74px rgba(26,26,78,.22); transform: rotate(1.4deg); transition: transform .5s cubic-bezier(.16,1,.3,1); }
.nh-hero-visual:hover .nh-hero-img { transform: rotate(0) scale(1.01); }
.nh-hero-img img { width: 100%; height: auto; }
.nh-rating { display: flex; align-items: center; gap: 10px; margin-top: 18px; justify-content: center; font-size: 14px; color: var(--muted); }
.nh-rating b { color: var(--navy); font-family: 'Fraunces', Georgia, serif; font-size: 18px; }
.nh-stars { color: #f5a623; letter-spacing: 2px; }
@media (max-width: 880px) {
  .nh-hero { padding: 48px 0 64px; }
  .nh-hero .nh-wrap { grid-template-columns: 1fr; gap: 36px; }
  .nh-hero-visual { margin: 0 auto; }
}

/* ---------- 2. Proof strip ---------- */
.nh-proof { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 26px 0; }
.nh-proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.nh-proof-n { font-family: 'Fraunces', Georgia, serif; font-size: clamp(22px, 2.6vw, 30px); font-weight: 700; color: var(--navy); }
.nh-proof-l { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
@media (max-width: 700px) { .nh-proof-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }

/* ---------- 3. Press marquee (only marquee on page) ---------- */
.nh-press { background: var(--teal-light); padding: 18px 0; overflow: hidden; }
.nh-marquee { display: flex; width: max-content; animation: nh-scroll 30s linear infinite; }
.nh-marquee:hover { animation-play-state: paused; }
.nh-marquee span { padding: 0 34px; white-space: nowrap; font-family: 'Fraunces', Georgia, serif; font-size: 18px; color: var(--muted); }
@keyframes nh-scroll { to { transform: translateX(-50%) } }

/* ---------- 4. Products (card grid) ---------- */
.nh-prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 44px; }
.nh-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; display: flex; flex-direction: column; transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s ease; }
.nh-card:hover { transform: translateY(-8px); box-shadow: 0 22px 50px rgba(26,26,78,.14); }
.nh-card-img { aspect-ratio: 1; overflow: hidden; background: var(--teal-light); }
.nh-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.16,1,.3,1); }
.nh-card:hover .nh-card-img img { transform: scale(1.06); }
.nh-card-body { padding: 18px 20px 22px; text-align: left; display: flex; flex-direction: column; flex: 1; }
.nh-badge { align-self: flex-start; font-size: 10.5px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; color: var(--teal); background: var(--teal-light); border-radius: var(--r-pill); padding: 4px 11px; margin-bottom: 10px; }
.nh-card h3 { font-size: 17px; margin-bottom: 5px; }
.nh-card p { font-size: 13.5px; color: var(--muted); margin-bottom: 14px; }
.nh-card .nh-shop { margin-top: auto; font-size: 14px; font-weight: 800; color: var(--btn); display: inline-flex; align-items: center; gap: 6px; }
.nh-card .nh-shop i { font-style: normal; transition: transform .2s ease; }
.nh-card:hover .nh-shop i { transform: translateX(5px); }
.nh-prod-foot { margin-top: 34px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.nh-alt { font-size: 13.5px; color: var(--muted); }
.nh-alt a { color: var(--teal-text); font-weight: 700; border-bottom: 1px solid rgba(31,122,108,.45); }
@media (max-width: 980px) { .nh-prod-grid { grid-template-columns: repeat(2, 1fr) } }
@media (max-width: 520px) { .nh-prod-grid { grid-template-columns: 1fr } }

/* ---------- 5. Why (bento, 5 cells / 3x2) ---------- */
.nh-why { background: var(--teal-light); }
.nh-bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: 20px; margin-top: 44px; }
.nh-tile { background: #fff; border-radius: var(--r-card); padding: 28px 26px; text-align: left; transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s ease; }
.nh-tile:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(46,158,142,.18); }
.nh-tile.nh-tint { background: linear-gradient(150deg, var(--navy), var(--navy-deep)); }
.nh-tile.nh-tint h3 { color: #fff; }
.nh-tile.nh-tint p { color: #a9aacb; }
.nh-tile.nh-tint .nh-ic { background: rgba(127,214,200,.16); color: var(--teal-bright); }
.nh-tile-media { grid-row: span 2; border-radius: var(--r-card); overflow: hidden; background: #fff; }
.nh-tile-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.16,1,.3,1); }
.nh-tile-media:hover img { transform: scale(1.05); }
.nh-ic { width: 50px; height: 50px; border-radius: 15px; background: var(--teal-light); color: var(--teal); display: grid; place-items: center; margin-bottom: 15px; transition: transform .3s cubic-bezier(.16,1,.3,1), background .3s ease, color .3s ease; }
.nh-ic svg { width: 25px; height: 25px; }
.nh-tile:hover .nh-ic { transform: rotate(-8deg) scale(1.1); background: var(--teal); color: #fff; }
.nh-tile h3 { font-size: 17px; margin-bottom: 6px; }
.nh-tile p { font-size: 14px; color: var(--muted); }
@media (max-width: 980px) {
  .nh-bento { grid-template-columns: repeat(2, 1fr) }
  .nh-tile-media { grid-row: span 1; min-height: 220px }
}
@media (max-width: 560px) { .nh-bento { grid-template-columns: 1fr } }

/* ---------- 6. Stats band ---------- */
.nh-stats { background: var(--navy); padding: 68px 0; }
.nh-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 28px; text-align: center; }
.nh-stat-n { font-family: 'Fraunces', Georgia, serif; font-size: clamp(32px, 4.4vw, 50px); font-weight: 700; color: var(--teal-bright); line-height: 1; }
.nh-stat-l { font-size: 13px; color: #a9aacb; margin-top: 8px; }
@media (max-width: 700px) { .nh-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px } }

/* ---------- 7. Reviews (featured + supporting) ---------- */
.nh-rev-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 22px; margin-top: 44px; align-items: stretch; }
.nh-rev-side { display: grid; grid-template-rows: 1fr 1fr; gap: 22px; }
.nh-quote { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 30px 30px 26px; text-align: left; position: relative; transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s ease; }
.nh-quote:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(26,26,78,.12); }
.nh-quote.nh-feat { display: flex; flex-direction: column; justify-content: center; }
.nh-quote .nh-stars { display: block; margin-bottom: 12px; font-size: 14px; }
.nh-quote blockquote { margin: 0; font-size: 15px; color: var(--ink); }
.nh-quote.nh-feat blockquote { font-size: clamp(18px, 2.1vw, 23px); font-family: 'Fraunces', Georgia, serif; line-height: 1.34; color: var(--navy); }
.nh-quote cite { display: block; margin-top: 14px; font-style: normal; font-size: 13px; font-weight: 700; color: var(--navy); }
.nh-quote cite small { display: block; font-weight: 500; color: var(--muted); font-size: 12px; margin-top: 2px; }
.nh-award { background: linear-gradient(150deg, var(--teal), #23857a); border-radius: var(--r-card); padding: 28px 30px; text-align: left; color: #fff; display: flex; flex-direction: column; justify-content: center; }
.nh-award h3 { color: #fff; font-size: 19px; margin-bottom: 6px; }
.nh-award p { font-size: 13.5px; color: #dff3f0; }
@media (max-width: 880px) { .nh-rev-grid { grid-template-columns: 1fr } }

/* ---------- 8. Impact (offset overlap) ---------- */
.nh-impact { background: linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 72%); overflow: hidden; }
.nh-impact::before { content: ""; position: absolute; width: 540px; height: 540px; border-radius: 50%; background: radial-gradient(circle, rgba(63,194,174,.22), transparent 66%); top: -190px; right: -150px; animation: nh-drift 17s ease-in-out infinite alternate; }
.nh-impact-lay { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; }
.nh-impact-img { border-radius: var(--r-media); overflow: hidden; width: 68%; box-shadow: 0 30px 70px rgba(0,0,0,.42); }
.nh-impact-img img { width: 100%; }
/* Solid panel, not glass: the partnership photo behind it is bright and busy,
   so a translucent panel destroys contrast on the headline number. */
.nh-impact-panel { background: #171745; border: 1px solid rgba(127,214,200,.22); border-radius: var(--r-media); padding: 32px 34px; width: 56%; margin: -64px 0 0 auto; position: relative; box-shadow: 0 24px 60px rgba(0,0,0,.45); }
.nh-impact-panel h2 { color: #fff; font-size: clamp(24px, 3.2vw, 34px); }
.nh-impact-panel p { color: #b9bad6; font-size: 15px; margin-top: 12px; }
.nh-impact-n { font-family: 'Fraunces', Georgia, serif; font-size: 54px; font-weight: 700; color: var(--teal-bright); line-height: 1; margin-bottom: 4px; }
@media (max-width: 880px) {
  .nh-impact-img { width: 100% }
  .nh-impact-panel { width: 100%; margin: -50px 0 0; padding: 26px 24px }
}

/* ---------- 9. FAQ (accordion) ---------- */
.nh-faq .nh-wrap { max-width: 800px; }
.nh-faq details { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px 22px; margin-bottom: 11px; transition: box-shadow .25s ease, border-color .25s ease; }
.nh-faq details[open] { box-shadow: 0 12px 30px rgba(26,26,78,.08); border-color: #d8efe9; }
.nh-faq summary { font-weight: 700; cursor: pointer; color: var(--navy); font-size: 15.5px; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.nh-faq summary::-webkit-details-marker { display: none }
.nh-faq summary::after { content: "+"; font-size: 22px; color: var(--teal); transition: transform .25s cubic-bezier(.16,1,.3,1); line-height: 1; }
.nh-faq details[open] summary::after { transform: rotate(45deg) }
.nh-faq details p { padding-top: 11px; font-size: 14.5px; color: var(--muted) }
.nh-faq details p a { color: var(--teal-text); font-weight: 600; border-bottom: 1px solid rgba(31,122,108,.45) }

/* ---------- 10. Blog (featured + list) ---------- */
.nh-blog { background: #fff; }
.nh-blog-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 26px; margin-top: 44px; }
.nh-post-feat { display: block; border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--line); transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s ease; }
.nh-post-feat:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(26,26,78,.13) }
.nh-post-feat .nh-pimg { aspect-ratio: 16/9; overflow: hidden }
.nh-post-feat img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.16,1,.3,1) }
.nh-post-feat:hover img { transform: scale(1.05) }
.nh-post-feat .nh-pbody { padding: 22px 24px 26px; text-align: left }
.nh-post-feat h3 { font-size: 22px; margin-bottom: 8px }
.nh-post-feat p { font-size: 14px; color: var(--muted) }
.nh-post-list { display: flex; flex-direction: column; gap: 18px }
.nh-post-row { display: grid; grid-template-columns: 108px 1fr; gap: 16px; align-items: center; border-bottom: 1px solid var(--line); padding-bottom: 18px; text-align: left; transition: transform .2s cubic-bezier(.16,1,.3,1) }
.nh-post-row:last-child { border-bottom: 0; padding-bottom: 0 }
.nh-post-row:hover { transform: translateX(4px) }
.nh-post-row .nh-pimg { aspect-ratio: 1; border-radius: 12px; overflow: hidden }
.nh-post-row img { width: 100%; height: 100%; object-fit: cover }
.nh-post-row h3 { font-size: 16px; margin-bottom: 4px }
.nh-post-row p { font-size: 13px; color: var(--muted) }
@media (max-width: 880px) { .nh-blog-grid { grid-template-columns: 1fr } }

/* ---------- 11. Contact ---------- */
.nh-contact { background: linear-gradient(135deg, #1f7a6c 0%, #17605e 100%); /* darkened from #2e9e8e/#23857a: white body text needs 4.5:1 and the brand teal only gave 3.2:1 */ text-align: center; overflow: hidden; }
.nh-contact::before { content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%; background: rgba(255,255,255,.09); top: -160px; left: -120px; animation: nh-drift 14s ease-in-out infinite alternate }
.nh-contact .nh-wrap { position: relative; z-index: 1 }
.nh-contact h2 { color: #fff; font-size: clamp(28px, 4.2vw, 40px) }
.nh-contact p { color: #ffffff; max-width: 50ch; margin: 14px auto 28px }

/* ---------- Reduced motion (mandatory) ---------- */
@media (prefers-reduced-motion: reduce) {
  .nh-js .nh-rv, .nh-rv { opacity: 1; transform: none; transition: none }
  .nh *, .nh *::before, .nh *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .nh-marquee { animation: none }
  .nh-hero h1 .nh-mark path { stroke-dashoffset: 0 }
}

/* ---------- Keyboard focus (WCAG 2.4.7) ----------
   The custom components had no visible focus ring. :focus-visible keeps it
   off for mouse users while making keyboard navigation followable. */
.nh a:focus-visible,
.nh button:focus-visible,
.nh summary:focus-visible,
.nh input:focus-visible,
.nh [tabindex]:focus-visible {
  outline: 3px solid var(--teal-bright);
  outline-offset: 3px;
  border-radius: 4px;
}
.nh-btn:focus-visible { outline-offset: 4px; }
/* On the dark navy and teal bands the bright teal ring is low contrast, so use white. */
.nh-stats a:focus-visible,
.nh-impact a:focus-visible,
.nh-contact a:focus-visible,
.nh-tile.nh-tint a:focus-visible { outline-color: #ffffff; }

/* A5: touch targets. Keeps the visual size but meets the 44px minimum. */
@media (max-width: 781px) {
  .nh-btn { min-height: 48px; padding-top: 14px; padding-bottom: 14px; }
}

/* ---------- Contrast fixes on tinted panels (28 Aug audit) ----------
   These sit on gradients, so an earlier audit measured them against the page
   background and missed them. Measured properly they were 3.28 / 2.85 / 3.12. */

/* Award tile: white heading and pale body on brand teal did not reach AA. */
.nh-award { background: linear-gradient(150deg, #1f7a6c, #17605e); }
.nh-award p { color: #ffffff; }

/* The eyebrow token is tuned for cream. On the navy impact panel it needs the
   light teal instead, which measures ~6.4:1 there. */
.nh-impact .nh-eyebrow { color: var(--teal-bright); }
