:root {
  --tmr-teal: #1B4B43;
  --tmr-teal-dark: #123430;
  --tmr-gold: #C99A4E;
  --tmr-gold-dark: #A87B34;
  --tmr-cream: #F7F2E7;
  --tmr-white: #FFFFFF;
  --tmr-line: #E3DAC4;
  --tmr-text: #2B2E2B;
  --tmr-text-soft: #5E655F;
  --tmr-radius: 18px;
  --tmr-shadow: 0 12px 30px rgba(27, 75, 67, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Readex Pro', sans-serif;
  font-size: 19px;
  line-height: 1.6;
  color: var(--tmr-text);
  background: var(--tmr-white);
}
h1, h2, h3, h4, .tmr-logo { font-family: 'Schibsted Grotesk', sans-serif; color: var(--tmr-teal); }
h1 { font-size: clamp(2.2rem, 4vw, 3.1rem); line-height: 1.15; margin: 0 0 20px; }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin: 0 0 14px; }
h3 { font-size: 1.3rem; margin: 0 0 8px; }
h4 { font-size: 1.1rem; margin: 0 0 6px; }
p { margin: 0 0 16px; }
a { color: var(--tmr-teal); }
img { max-width: 100%; display: block; }
ul { padding-left: 0; list-style: none; margin: 0; }

.tmr-section--lead { font-size: 1.15rem; color: var(--tmr-text-soft); max-width: 720px; }

/* Buttons */
.tmr-btn {
  display: inline-block;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.05rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: 2px solid transparent;
}
.tmr-btn--primary { background: var(--tmr-gold); color: var(--tmr-white); box-shadow: var(--tmr-shadow); }
.tmr-btn--primary:hover { transform: translateY(-2px); background: var(--tmr-gold-dark); }
.tmr-btn--outline { background: transparent; border-color: var(--tmr-teal); color: var(--tmr-teal); }
.tmr-btn--outline:hover { background: var(--tmr-teal); color: var(--tmr-white); }
.tmr-btn--lg { padding: 20px 38px; font-size: 1.15rem; }

/* Top strip */
.tmr-topstrip {
  background: var(--tmr-teal);
  color: var(--tmr-white);
  text-align: center;
  font-size: 0.9rem;
  padding: 8px 16px;
  font-weight: 500;
}

/* Header */
.tmr-header { background: var(--tmr-white); border-bottom: 1px solid var(--tmr-line); position: sticky; top: 0; z-index: 50; }
.tmr-header--inner { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; gap: 20px; }
.tmr-logo { font-size: 1.5rem; font-weight: 700; text-decoration: none; }
.tmr-logo span { color: var(--tmr-gold); }
.tmr-nav { display: flex; gap: 26px; flex: 1; justify-content: center; }
.tmr-nav a { text-decoration: none; color: var(--tmr-text); font-weight: 500; }
.tmr-nav a:hover { color: var(--tmr-teal); }
.tmr-nav--cta { padding: 12px 24px; font-size: 0.95rem; }
.tmr-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.tmr-burger span { width: 26px; height: 3px; background: var(--tmr-teal); border-radius: 2px; }
.tmr-nav--open { display: flex !important; }

/* Breadcrumb */
.tmr-breadcrumb { font-size: 0.9rem; color: var(--tmr-text-soft); margin-bottom: 16px; }
.tmr-breadcrumb a { color: var(--tmr-text-soft); text-decoration: none; }
.tmr-breadcrumb i { margin: 0 8px; font-style: normal; }

/* Hero */
.tmr-hero { background: linear-gradient(180deg, var(--tmr-cream) 0%, var(--tmr-white) 100%); padding: 60px 24px 40px; }
.tmr-hero--inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.tmr-badge { display: inline-block; background: rgba(201,154,78,0.16); color: var(--tmr-gold-dark); font-weight: 600; font-size: 0.9rem; padding: 8px 16px; border-radius: 999px; margin-bottom: 16px; }
.tmr-accent { color: var(--tmr-gold-dark); }
.tmr-hero--h1 { }
.tmr-hero--lead { color: var(--tmr-text-soft); font-size: 1.15rem; }
.tmr-hero--text { display: block; }
.tmr-hero--list { margin-bottom: 22px; }
.tmr-hero--list li { position: relative; padding-left: 30px; margin-bottom: 10px; font-weight: 500; }
.tmr-hero--list li::before { content: "✓"; position: absolute; left: 0; color: var(--tmr-gold-dark); font-weight: 700; }
.tmr-quickfacts { border-collapse: collapse; width: 100%; margin: 24px 0; background: var(--tmr-white); border-radius: 14px; overflow: hidden; box-shadow: var(--tmr-shadow); }
.tmr-quickfacts--row th, .tmr-quickfacts--row td { text-align: left; padding: 12px 18px; border-bottom: 1px dashed var(--tmr-line); font-size: 0.98rem; }
.tmr-quickfacts--row th { color: var(--tmr-text-soft); font-weight: 500; width: 42%; }
.tmr-quickfacts--row td { font-weight: 600; color: var(--tmr-teal); }
.tmr-quickfacts--row:last-child th, .tmr-quickfacts--row:last-child td { border-bottom: none; }
.tmr-stats { display: flex; gap: 30px; margin: 20px 0; }
.tmr-stats--item { display: flex; flex-direction: column; }
.tmr-stats--item strong { font-size: 1.5rem; color: var(--tmr-teal); font-family: 'Schibsted Grotesk', sans-serif; }
.tmr-stats--item span { font-size: 0.85rem; color: var(--tmr-text-soft); }
.tmr-hero--ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.tmr-hero--media { position: relative; }
.tmr-hero--imgwrap { position: relative; }
.tmr-hero--imgwrap img { border-radius: 24px; margin: 0 auto; }
.tmr-floatbadge {
  position: absolute; background: var(--tmr-white); border-radius: 14px; box-shadow: var(--tmr-shadow);
  padding: 10px 14px; font-size: 0.8rem; text-align: center; line-height: 1.2; font-weight: 600; color: var(--tmr-teal);
}
.tmr-floatbadge span:first-child { display: block; font-size: 1.05rem; }
.tmr-floatbadge--rating { top: 10px; left: -20px; }
.tmr-floatbadge--usa { top: 60px; right: -14px; }
.tmr-floatbadge--stat { bottom: 90px; left: -24px; }
.tmr-floatbadge--ribbon { bottom: 20px; right: -10px; background: var(--tmr-gold); color: var(--tmr-white); border-radius: 50%; width: 78px; height: 78px; display: flex; align-items: center; justify-content: center; padding: 0; font-size: 0.75rem; }

/* Hero viz: Wellness Compass */
.tmr-hero--viz { width: 100%; max-width: 340px; margin: 24px auto 0; display: block; }
.tmr-spoke { stroke-dasharray: 120; stroke-dashoffset: 120; animation: tmrSpokeDraw 0.6s ease forwards; }
.tmr-spoke-1 { animation-delay: 0.2s; }
.tmr-spoke-2 { animation-delay: 0.6s; }
.tmr-spoke-3 { animation-delay: 1.0s; }
.tmr-spoke-4 { animation-delay: 1.4s; }
@keyframes tmrSpokeDraw { to { stroke-dashoffset: 0; } }
.tmr-node { opacity: 0; transform: scale(0.6); transform-origin: center; transform-box: fill-box; animation: tmrNodeIn 0.5s ease forwards; }
.tmr-node-1 { animation-delay: 0.7s; }
.tmr-node-2 { animation-delay: 1.1s; }
.tmr-node-3 { animation-delay: 1.5s; }
.tmr-node-4 { animation-delay: 1.9s; }
@keyframes tmrNodeIn { to { opacity: 1; transform: scale(1); } }
.tmr-node--label { font-size: 12px; fill: var(--tmr-teal); font-weight: 600; font-family: 'Readex Pro', sans-serif; }

/* Trust */
.tmr-trust { background: var(--tmr-cream); padding: 30px 24px; }
.tmr-trust--inner { max-width: 1000px; margin: 0 auto; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 24px; align-items: center; }
.tmr-trust--inner img { object-fit: contain; height: 90px; width: 90px; }

/* What is */
.tmr-whatis { padding: 70px 24px; }
.tmr-whatis--inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 50px; align-items: center; }
.tmr-whatis--media img { border-radius: 20px; box-shadow: var(--tmr-shadow); }
.tmr-whatis--text { display: block; }
.tmr-check li { position: relative; padding-left: 30px; margin-bottom: 10px; font-weight: 500; }
.tmr-check li::before { content: "✓"; position: absolute; left: 0; color: var(--tmr-gold-dark); font-weight: 700; }

/* How it works */
.tmr-how { background: var(--tmr-cream); padding: 70px 24px; }
.tmr-how--inner { max-width: 1100px; margin: 0 auto; }
.tmr-how--grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 26px; margin: 30px 0 40px; }
.tmr-how--step { background: var(--tmr-white); border-radius: var(--tmr-radius); padding: 26px; box-shadow: var(--tmr-shadow); }
.tmr-how--num { width: 40px; height: 40px; border-radius: 50%; background: var(--tmr-teal); color: var(--tmr-white); display: flex; align-items: center; justify-content: center; font-weight: 700; margin-bottom: 14px; }
.tmr-timeline { display: flex; flex-direction: column; gap: 16px; margin-top: 10px; }
.tmr-timeline--item { background: var(--tmr-white); border-left: 4px solid var(--tmr-gold); border-radius: 10px; padding: 16px 22px; box-shadow: var(--tmr-shadow); }
.tmr-timeline--item h4 { color: var(--tmr-gold-dark); margin-bottom: 4px; }
.tmr-how--infographic { margin-top: 30px; border-radius: 14px; }

/* Ingredients */
.tmr-ingredients { padding: 70px 24px; }
.tmr-ingredients--inner, .tmr-ingredients-hub--inner, .tmr-blog-hub--inner { max-width: 1200px; margin: 0 auto; }
.tmr-ingcard--grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 26px; margin-top: 30px; }
.tmr-ingcard { background: var(--tmr-white); border: 1px solid var(--tmr-line); border-radius: var(--tmr-radius); padding: 24px; text-decoration: none; color: var(--tmr-text); box-shadow: var(--tmr-shadow); transition: transform 0.15s ease; display: block; }
.tmr-ingcard:hover { transform: translateY(-4px); }
.tmr-ingcard h3, .tmr-ingcard h2 { color: var(--tmr-teal); }
.tmr-ingcard--role { color: var(--tmr-gold-dark); font-weight: 600; font-size: 0.9rem; }
.tmr-ingcard--dose { font-weight: 700; color: var(--tmr-teal); margin-bottom: 8px; }

/* Ingredient detail page */
.tmr-ing-detail { padding: 0 24px 60px; }
.tmr-ing-detail--inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 40px; align-items: start; }
.tmr-ing-detail--inner img { border-radius: var(--tmr-radius); box-shadow: var(--tmr-shadow); }
.tmr-ing-detail--text { display: block; }
.tmr-related { max-width: 1000px; margin: 50px auto 0; }
.tmr-related--grid { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 16px; }
.tmr-related--card { background: var(--tmr-cream); padding: 12px 20px; border-radius: 999px; text-decoration: none; color: var(--tmr-teal); font-weight: 600; }

/* Why */
.tmr-why { padding: 70px 24px; background: var(--tmr-cream); }
.tmr-why--inner { max-width: 1200px; margin: 0 auto; }
.tmr-why--grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 30px; }
.tmr-why--card { background: var(--tmr-white); border-radius: var(--tmr-radius); padding: 28px; box-shadow: var(--tmr-shadow); }
.tmr-why--card span { font-size: 2rem; display: block; margin-bottom: 12px; }

/* Transformations */
.tmr-transform { padding: 70px 24px; }
.tmr-transform--inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.tmr-transform--grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 24px; }
.tmr-transform--grid img { border-radius: var(--tmr-radius); object-fit: cover; height: 220px; width: 100%; box-shadow: var(--tmr-shadow); }

/* Reviews */
.tmr-reviews { padding: 70px 24px; }
.tmr-reviews--inner { max-width: 1200px; margin: 0 auto; }
.tmr-reviews--agg { display: flex; align-items: center; gap: 20px; margin-bottom: 10px; }
.tmr-reviews--score { font-size: 3.5rem; font-family: 'Schibsted Grotesk', sans-serif; color: var(--tmr-teal); font-weight: 700; }
.tmr-review--stars { color: var(--tmr-gold); font-size: 1.1rem; letter-spacing: 2px; }
.tmr-review--stars-lg { font-size: 1.4rem; }
.tmr-reviews--grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin: 30px 0; }
.tmr-review { background: var(--tmr-cream); border-radius: var(--tmr-radius); padding: 24px; }
.tmr-review--author { font-weight: 600; color: var(--tmr-teal); }
.tmr-review--author span { font-weight: 400; color: var(--tmr-text-soft); }

/* Pricing */
.tmr-pricing { padding: 70px 24px; }
.tmr-pricing--inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.tmr-pricing--grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px; margin: 30px 0; text-align: left; }
.tmr-price { position: relative; background: var(--tmr-cream); border: 2px solid var(--tmr-line); border-radius: var(--tmr-radius); padding: 30px 24px; text-align: center; }
.tmr-price--featured { border-color: var(--tmr-gold); background: var(--tmr-white); box-shadow: var(--tmr-shadow); transform: scale(1.04); }
.tmr-price--tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--tmr-gold); color: var(--tmr-white); font-size: 0.75rem; font-weight: 700; padding: 6px 16px; border-radius: 999px; white-space: nowrap; }
.tmr-price img { margin: 0 auto 14px; }
.tmr-price--supply { color: var(--tmr-text-soft); font-size: 0.9rem; }
.tmr-price--figures { display: flex; justify-content: center; gap: 12px; align-items: baseline; margin: 10px 0; }
.tmr-price--was { text-decoration: line-through; color: var(--tmr-text-soft); }
.tmr-price--now { font-size: 2rem; font-weight: 700; color: var(--tmr-teal); font-family: 'Schibsted Grotesk', sans-serif; }
.tmr-price--perbottle { font-weight: 600; }
.tmr-price--save { color: var(--tmr-gold-dark); font-weight: 700; }
.tmr-price--shipping { font-size: 0.85rem; color: var(--tmr-text-soft); font-weight: 600; }
.tmr-pricing--guarantee { max-width: 700px; margin: 20px auto 0; color: var(--tmr-text-soft); font-size: 0.95rem; }

/* FAQ */
.tmr-faq { padding: 70px 24px; background: var(--tmr-cream); }
.tmr-faq--inner { max-width: 900px; margin: 0 auto; }
.tmr-faq--list { margin-top: 20px; display: flex; flex-direction: column; gap: 14px; }
.tmr-faq--item { background: var(--tmr-white); border-radius: 14px; box-shadow: var(--tmr-shadow); overflow: hidden; }
.tmr-faq--q { width: 100%; text-align: left; background: none; border: none; padding: 20px 24px; font-size: 1.05rem; font-weight: 600; color: var(--tmr-teal); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: 'Schibsted Grotesk', sans-serif; }
.tmr-faq--a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; padding: 0 24px; }
.tmr-faq--open .tmr-faq--a { max-height: 400px; padding-bottom: 20px; }
.tmr-faq--open .tmr-faq--q span { transform: rotate(45deg); }
.tmr-faq--q span { transition: transform 0.2s ease; }

/* Final CTA */
.tmr-finalcta { padding: 70px 24px; background: linear-gradient(135deg, var(--tmr-teal), var(--tmr-teal-dark)); }
.tmr-finalcta--inner { max-width: 1000px; margin: 0 auto; display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: center; }
.tmr-finalcta--inner img { border-radius: var(--tmr-radius); }
.tmr-finalcta--text { flex: 1; min-width: 280px; }
.tmr-finalcta--text h2, .tmr-finalcta--text p { color: var(--tmr-white); }

/* Sticky CTA */
.tmr-sticky { position: fixed; bottom: 0; left: 0; right: 0; background: var(--tmr-white); border-top: 1px solid var(--tmr-line); box-shadow: 0 -6px 20px rgba(0,0,0,0.08); z-index: 60; }
.tmr-sticky--inner { max-width: 1200px; margin: 0 auto; padding: 12px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.tmr-sticky--text { font-weight: 600; color: var(--tmr-teal); }

/* Page hero (inner pages) */
.tmr-page-hero { background: var(--tmr-cream); padding: 50px 24px 40px; }
.tmr-page-hero--inner { max-width: 1000px; margin: 0 auto; }

/* Generic sections: about, legal, contact */
.tmr-about, .tmr-legal { padding: 60px 24px 100px; }
.tmr-about--inner, .tmr-legal--inner { max-width: 800px; margin: 0 auto; }
.tmr-contact { padding: 60px 24px 100px; }
.tmr-contact--inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.tmr-contact--card { background: var(--tmr-cream); border-radius: var(--tmr-radius); padding: 26px; }

/* Ingredients hub / blog hub */
.tmr-ingredients-hub, .tmr-blog-hub { padding: 0 24px 80px; }
.tmr-blogcard--grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px; margin-top: 10px; }
.tmr-blogcard { background: var(--tmr-white); border: 1px solid var(--tmr-line); border-radius: var(--tmr-radius); overflow: hidden; text-decoration: none; color: var(--tmr-text); box-shadow: var(--tmr-shadow); display: block; padding: 20px; }
.tmr-blogcard--date { display: block; font-size: 0.8rem; color: var(--tmr-gold-dark); font-weight: 600; }
.tmr-blogcard h2 { font-size: 1.2rem; margin-top: 6px; }
.tmr-blogcard p { color: var(--tmr-text-soft); font-size: 0.95rem; }

/* Blog post */
.tmr-post { padding: 60px 24px 100px; }
.tmr-post--inner { max-width: 760px; margin: 0 auto; }
.tmr-post--date { color: var(--tmr-gold-dark); font-weight: 600; font-size: 0.9rem; }
.tmr-post--body p { font-size: 1.1rem; }

/* Footer */
.tmr-footer { background: var(--tmr-teal-dark); color: var(--tmr-white); padding: 60px 24px 30px 24px; margin-bottom: 60px; }
.tmr-footer--top { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 36px; }
.tmr-footer--brand p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.tmr-logo--footer { color: var(--tmr-white); }
.tmr-footer--col h4 { color: var(--tmr-white); font-size: 1rem; margin-bottom: 12px; }
.tmr-footer--col ul li { margin-bottom: 8px; }
.tmr-footer--col a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.95rem; }
.tmr-footer--col a:hover { color: var(--tmr-white); }
.tmr-footer--bottom { max-width: 1200px; margin: 40px auto 0; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 20px; font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.tmr-footer--disclaimer { margin-bottom: 14px; }

/* Mobile */
@media (max-width: 900px) {
  .tmr-hero--inner { grid-template-columns: 1fr; }
  .tmr-hero--media { order: -1; }
  .tmr-whatis--inner, .tmr-ing-detail--inner { grid-template-columns: 1fr; }
  .tmr-footer--top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .tmr-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--tmr-white); flex-direction: column; padding: 20px; border-bottom: 1px solid var(--tmr-line); gap: 16px; }
  .tmr-burger { display: flex; }
  .tmr-nav--cta { display: none; }
  .tmr-footer--top { grid-template-columns: 1fr; }
  .tmr-floatbadge--rating, .tmr-floatbadge--stat { left: 6px; }
  .tmr-floatbadge--usa, .tmr-floatbadge--ribbon { right: 6px; }
  body { font-size: 18px; }
}
