/* ============================================================
   TOTAL HERBAL CARE — Design System
   Palette drawn from turmeric, forest leaf & aged paper.
   Display: Fraunces (organic, literary serif)
   Body:    Work Sans (clean, warm humanist sans)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,340;0,9..144,440;0,9..144,560;1,9..144,440&family=Work+Sans:wght@300;400;500;600;700&display=swap');

:root{
  /* --- color --- */
  --ink:        #1B2A20;
  --forest:     #23402D;
  --forest-deep:#152318;
  --cream:      #F6F0E3;
  --paper:      #FCFAF2;
  --amber:      #DE9A3C;
  --amber-deep: #B87621;
  --clay:       #B1603A;
  --sand:       #E4DAC0;
  --sage:       #71876C;
  --line:       rgba(27,42,32,0.12);

  /* --- type --- */
  --f-display: "Fraunces", "Iowan Old Style", serif;
  --f-body: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  /* --- shape / motion --- */
  --radius: 22px;
  --radius-sm: 12px;
  --ease: cubic-bezier(.22,1,.36,1);
  --dur: 0.9s;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  /*background:var(--cream);*/
  color:var(--ink);
  font-family:var(--f-body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,h4,h5{ font-family:var(--f-display); margin:0; font-weight:440; color:var(--ink); }
p{ margin:0; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }

.container{
  width:min(1240px, 92%);
  margin-inline:auto;
}

section{ position:relative; }

/* ---------------- reveal-on-scroll ---------------- */
.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-visible{ opacity:1; transform:translateY(0); }
.reveal-stagger > *{
  opacity:0;
  transform:translateY(22px);
  transition:opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal-stagger.is-visible > *{ opacity:1; transform:translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1){ transition-delay:.02s; }
.reveal-stagger.is-visible > *:nth-child(2){ transition-delay:.12s; }
.reveal-stagger.is-visible > *:nth-child(3){ transition-delay:.22s; }
.reveal-stagger.is-visible > *:nth-child(4){ transition-delay:.32s; }
.reveal-stagger.is-visible > *:nth-child(5){ transition-delay:.42s; }
.reveal-stagger.is-visible > *:nth-child(6){ transition-delay:.52s; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .reveal, .reveal-stagger > *{ opacity:1 !important; transform:none !important; transition:none !important; }
  .sprig path{ animation:none !important; stroke-dashoffset:0 !important; }
  *{ animation-duration:0.001ms !important; }
}

/* ---------------- eyebrow ---------------- */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--f-body);
  font-weight:600;
  font-size:12.5px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--amber-deep);
}
.eyebrow::before{
  content:"";
  width:7px; height:7px;
  border-radius:50%;
  background:var(--amber);
  box-shadow:0 0 0 4px rgba(222,154,60,0.18);
}

/* ---------------- buttons ---------------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:16px 30px;
  border-radius:999px;
  font-weight:600;
  font-size:15px;
  letter-spacing:.01em;
  white-space:nowrap;
  border:1px solid transparent;
  transition:transform .45s var(--ease), background .3s ease, color .3s ease, border-color .3s ease;
}
.btn:hover{ transform:translateY(-2px); }
.btn-solid{ background:var(--forest); color:var(--paper); }
.btn-solid:hover{ background:var(--forest-deep); }
.btn-solid .arrow{ transition:transform .35s var(--ease); }
.btn-solid:hover .arrow{ transform:translateX(4px); }
.btn-outline{ background:transparent; color:var(--ink); border-color:var(--line); }
.btn-outline:hover{ border-color:var(--ink); background:rgba(27,42,32,0.04); }
.btn-amber{ background:var(--amber); color:var(--forest-deep); }
.btn-amber:hover{ background:var(--amber-deep); color:var(--paper); }

/* ================= HEADER ================= */
.site-header{
  position:sticky; top:0; z-index:200;
  background:#ffffff;
  border-bottom:1px solid var(--line);
  transition:padding .35s var(--ease), box-shadow .35s ease;
}
.site-header.scrolled{ box-shadow:0 8px 24px rgba(27,42,32,0.06); }
.nav-row{
  display:flex; align-items:center; justify-content:space-between;
  padding:6px 0;
  transition:padding .35s var(--ease);
}
.site-header.scrolled .nav-row{ padding:4px 0; }

.brand {
    width: 240px;
    height: 80px;
    background-image: url('image/thc-logo.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}
.brand-mark{ width:34px; height:34px; flex-shrink:0; }
.brand-text{ display:flex; flex-direction:column; line-height:1.05; }
.brand-text .t1{ font-family:var(--f-display); font-size:21px; }
.brand-text .t1 b{ color:var(--forest); font-weight:560; }
.brand-text .t1 span{ color:var(--amber-deep); font-weight:560; }
.brand-text .t2{ font-size:9.5px; letter-spacing:.24em; text-transform:uppercase; color:var(--sage); margin-top:2px; }

.nav-links{ display:flex; gap:38px; margin-left:auto; }
.nav-links a{
  position:relative; font-size:14.5px; font-weight:500; color:var(--ink);
  padding-bottom:4px;
}
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:0; height:1.5px; width:0;
  background:var(--amber-deep); transition:width .35s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after{ width:100%; }
.nav-links a.active{ color:var(--forest); }

.nav-right{ display:flex; align-items:center; gap:22px; }
.menu-btn{ display:none; background:none; border:none; padding:6px; }
.menu-btn span{ display:block; width:22px; height:2px; background:var(--ink); margin:5px 0; transition:transform .3s ease, opacity .3s ease; }

.mobile-nav{
  display:none; flex-direction:column; gap:2px;
  background:var(--paper); border-top:1px solid var(--line);
  padding:10px 0 18px;
}
.mobile-nav a{ padding:12px 6%; font-size:15px; font-weight:500; }
.mobile-nav a.active{ color:var(--amber-deep); }
.site-header.nav-open .mobile-nav{ display:flex; }

@media (max-width:900px){
  .nav-links{ display:none; }
  .menu-btn{ display:block; }
  .nav-right .btn-solid{ display:none; }
}

/* ================= HERO (split, matches reference banner) ================= */
.hero {
    padding-top: 56px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 92vh;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr 1fr;
  align-items:stretch;
  gap:0;
  min-height:640px;
}
.hero-copy{
  display:flex; flex-direction:column; justify-content:center;
  padding:40px 56px 60px 0;
  max-width:640px;
}
.hero-copy .eyebrow{ margin-bottom:22px; }
.hero-title{
  font-size:clamp(40px, 5.1vw, 68px);
  line-height:1.04;
  letter-spacing:-0.01em;
  margin-bottom:24px;
}
.hero-title em{ font-style:italic; color:var(--amber); display:block; }
.hero-copy p.lead{
  font-size:17.5px; color:#3A4A3F; max-width:490px; margin-bottom:36px;
}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; }

.hero-visual{
  position:relative;
  border-radius:0 0 0 120px;
  overflow:hidden;
}
.hero-visual img{
  width:100%; height:100%; object-fit:cover;
  transform:scale(1.08);
  transition:transform 1.6s var(--ease);
}
.hero.is-loaded .hero-visual img{ transform:scale(1); }
.hero-visual::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(100deg, var(--cream) 0%, rgba(246,240,227,0.0) 26%);
}
.hero-visual .floater{
  position:absolute; left:26px; bottom:26px;
  background:rgba(252,250,242,0.92);
  backdrop-filter:blur(6px);
  border-radius:16px;
  padding:14px 20px;
  display:flex; align-items:center; gap:12px;
  box-shadow:0 14px 30px rgba(27,42,32,0.14);
  opacity:0; transform:translateY(16px);
  transition:opacity .9s var(--ease) .5s, transform .9s var(--ease) .5s;
}
.hero.is-loaded .hero-visual .floater{ opacity:1; transform:translateY(0); }
.floater .num{ font-family:var(--f-display); font-size:22px; color:var(--forest); }
.floater .lbl{ font-size:11.5px; color:var(--sage); text-transform:uppercase; letter-spacing:.08em; }

@media (max-width:980px){
  .hero-grid{ grid-template-columns:1fr; min-height:0; }
  .hero-copy{ padding:44px 6% 30px; max-width:none; }
  .hero-visual{ border-radius:0; height:420px; }
}

/* --------- inner-page hero (about/ayurveda/products/team/contact) --------- */
.page-hero{
  padding:70px 0 64px;
  background:
    radial-gradient(ellipse 900px 500px at 85% -10%, rgba(222,154,60,0.14), transparent 60%),
    var(--cream);
  border-bottom:1px solid var(--line);
}
.breadcrumb{ font-size:13px; color:var(--sage); margin-bottom:18px; display:flex; gap:8px; align-items:center; }
.breadcrumb a:hover{ color:var(--forest); }
.page-hero h1{ font-size:clamp(34px,4.6vw,56px); line-height:1.08; max-width:820px; margin-top:18px;}
.page-hero h1 em{ font-style:italic; color:var(--amber-deep); }
.page-hero .sub{ margin-top:20px; font-size:17px; color:#3A4A3F; max-width:640px; }

/* ================= STATS STRIP ================= */
.stats-strip{
  background:var(--forest);
  color:var(--paper);
}
.stats-grid{
  display:grid; grid-template-columns:repeat(4,1fr);
  padding:44px 0;
}
.stat{ text-align:center; border-left:1px solid rgba(252,250,242,0.14); padding:6px 10px; }
.stat:first-child{ border-left:none; }
.stat .num{ font-family:var(--f-display); font-size:clamp(28px,3vw,40px); color:var(--amber); }
.stat .lbl{ font-size:12.5px; letter-spacing:.05em; color:rgba(252,250,242,0.75); margin-top:6px; }
@media (max-width:760px){
  .stats-grid{ grid-template-columns:repeat(2,1fr); row-gap:26px; }
  .stat:nth-child(3){ border-left:none; }
}

/* ================= SECTION HEADINGS ================= */
.section{ padding:50px 0; }
.section.tight{ padding:80px 0; }
.section-head{ max-width:640px; margin-bottom:56px; }
.section-head .eyebrow{ margin-bottom:16px; }
.section-head h2{ font-size:clamp(28px,3.4vw,42px); line-height:1.12; }
.section-head h2 em{ font-style:italic; color:var(--amber-deep); }
.section-head p{ margin-top:18px; font-size:16.5px; color:#3A4A3F; }
.section-alt{ background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    width: 100%; }

/* signature botanical divider */
.sprig-divider{ display:flex; justify-content:center; margin:6px 0 46px; }
.sprig{ width:64px; height:64px; }
.sprig path{
  stroke-dasharray:220; stroke-dashoffset:220;
}
.sprig.is-visible path{
  animation:draw 1.6s var(--ease) forwards;
}
@keyframes draw{ to{ stroke-dashoffset:0; } }

/* ================= FEATURE / VALUE CARDS ================= */
.grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:26px; }
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.grid-2{ display:grid; grid-template-columns:1fr 1fr; gap:40px; }
@media (max-width:980px){
  .grid-4{ grid-template-columns:repeat(2,1fr); }
  .grid-3{ grid-template-columns:1fr; }
  .grid-2{ grid-template-columns:1fr; }
}
@media (max-width:560px){ .grid-4{ grid-template-columns:1fr; } }

.value-card.has-media{
  padding:0; overflow:hidden; display:flex; flex-direction:column;
}
.value-card.has-media .v-media{
  position:relative; height:150px;
  display:flex; align-items:center; justify-content:center; overflow:hidden;
}
.value-card.has-media .v-media svg{
  width:64px; height:64px; position:relative; z-index:1;
  transition:transform .6s var(--ease);
}
.value-card.has-media:hover .v-media svg{ transform:scale(1.08) rotate(-3deg); }
.value-card.has-media .v-media::before{ content:""; position:absolute; inset:0; opacity:.9; }
/*.v-media.bg-sage::before{ background:linear-gradient(150deg,#E7E9DC,#CFDAC7); }
.v-media.bg-paper::before{ background:linear-gradient(150deg,#F3EEDD,#E6DEC3); }
.v-media.bg-amber::before{ background:linear-gradient(150deg,#F3DEB3,#E9C077); }
.v-media.bg-forest::before{ background:linear-gradient(150deg,#CFD9CD,#A9BCA3); }*/
.value-card.has-media .v-media .fleck{
  position:absolute; inset:0;
  background-image:radial-gradient(rgba(27,42,32,0.06) 1px, transparent 1px);
  background-size:14px 14px;
}
.value-card.has-media .v-body{ padding:26px 24px 30px; }

.value-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:32px 26px;
  transition:transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s ease;
}
.value-card:hover{ transform:translateY(-6px); box-shadow:0 20px 40px rgba(27,42,32,0.08); border-color:transparent; }
.value-card .ic{ width:44px; height:44px; margin-bottom:18px; color:var(--forest); }
.value-card h4{ font-size:18px; margin-bottom:10px; }
.value-card p{ font-size:14.5px; color:#4A5A4F; }

/* ================= SPLIT / PHILOSOPHY ================= */
.split{
  display:grid; grid-template-columns:0.9fr 1.1fr; gap:64px; align-items:center;
}
@media (max-width:980px){ .split{ grid-template-columns:1fr; gap:36px; } .split.reverse .split-media{ order:-1; } }
.split-media{ position:relative; border-radius:var(--radius); overflow:hidden; }
.split-media img{ width:100%; }
.split-badge{
  position:absolute; top:24px; left:24px;
  background:var(--amber); color:var(--forest-deep);
  border-radius:16px; padding:14px 18px;
  font-family:var(--f-display); text-align:center; line-height:1.1;
}
.split-badge .n{ font-size:26px; display:block; }
.split-badge .s{ font-size:10.5px; text-transform:uppercase; letter-spacing:.06em; }
.split-copy h3{ font-size:clamp(24px,2.8vw,34px); line-height:1.15; margin-bottom:18px; }
.split-copy p{ color:#3A4A3F; margin-bottom:16px; font-size:15.5px; }
.split-copy p:last-of-type{ margin-bottom:26px; }

/* ================= PRODUCT CARD ================= */
.product-card{
  display:grid; grid-template-columns:0.85fr 1.15fr;
  background:var(--paper); border:1px solid var(--line); border-radius:var(--radius);
  overflow:hidden;
}
.product-card .p-media{ background:linear-gradient(160deg,#EFE6D0,#E3D8BB); display:flex; align-items:center; justify-content:center; padding:0px; position:relative; }
.product-card .p-media img{ /*max-height:340px;*/ width:auto; margin:auto; filter:drop-shadow(0 20px 24px rgba(27,42,32,0.18)); }
.p-tag{ position:absolute; top:20px; left:20px; background:var(--forest); color:var(--paper); font-size:11px; letter-spacing:.06em; text-transform:uppercase; padding:6px 12px; border-radius:999px; }
.product-card .p-copy{ padding:44px 46px; }
.p-copy .eyebrow{ margin-bottom:14px; }
.p-copy h3{ font-size:30px; margin-bottom:10px; }
.p-copy .tagline{ color:var(--amber-deep); font-weight:600; margin-bottom:16px; font-size:15px;}
.p-copy p.desc{ color:#3A4A3F; font-size:15px; margin-bottom:20px; }
.price{ font-family:var(--f-display); font-size:26px; color:var(--forest); margin-bottom:20px; }
.price s{ color:var(--sage); font-size:17px; margin-left:10px; }
.pill-list{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:26px; }
.pill-list span{ font-size:12.5px; border:1px solid var(--line); padding:6px 12px; border-radius:999px; color:#3A4A3F; }
@media (max-width:760px){ .product-card{ grid-template-columns:1fr; } }

.category-card{
  background:var(--paper); border:1px solid var(--line); border-radius:var(--radius);
  padding:34px 30px;
}
.category-card h4{ font-size:20px; margin:14px 0 10px; }
.category-card p{ font-size:14.5px; color:#4A5A4F; margin-bottom:16px; }
.category-card .badge{ width:40px;height:40px; border-radius:12px; background:rgba(222,154,60,0.16); display:flex; align-items:center; justify-content:center; color:var(--amber-deep); }
.category-card .tags{ display:flex; flex-wrap:wrap; gap:8px; }
.category-card .tags span{ font-size:12px; color:var(--sage); border:1px solid var(--line); border-radius:999px; padding:4px 10px; }

/* ================= TEAM ================= */
.team-card{
  background:var(--paper); border:1px solid var(--line); border-radius:var(--radius);
  overflow:hidden; text-align:left;
  transition:transform .5s var(--ease), box-shadow .5s var(--ease);
}
.team-card:hover{ transform:translateY(-6px); box-shadow:0 20px 40px rgba(27,42,32,0.1); }
.team-photo{ aspect-ratio:4/4.6; overflow:hidden; background:var(--sand); position:relative;}
.team-photo img{ width:100%; height:100%; object-fit:cover; transition:transform .7s var(--ease); }
.team-card:hover .team-photo img{ transform:scale(1.06); }
.team-info{ padding:24px 24px 28px; }
.team-info h4{ font-size:19px; margin-bottom:4px; }
.team-info .role{ color:var(--amber-deep); font-size:13px; font-weight:600; text-transform:uppercase; letter-spacing:.03em; margin-bottom:12px; }
.team-info p.bio{ font-size:14px; color:#4A5A4F; }

.mini-stats{ display:flex; gap:0; margin-top:8px; }

/* ================= GLOBE / REACH ================= */
.reach-card{
  background:var(--paper); border:1px solid var(--line); border-radius:var(--radius);
  padding:34px 28px; text-align:center;
}
.reach-card .flag{ font-size:34px; margin-bottom:14px; }
.reach-card h4{ font-size:19px; margin-bottom:10px; }
.reach-card p{ font-size:14px; color:#4A5A4F; }

/* ================= CONTACT ================= */
.contact-wrap{ display:grid; grid-template-columns:0.9fr 1.1fr; gap:56px; }
@media (max-width:980px){ .contact-wrap{ grid-template-columns:1fr; } }
.info-card{ background:var(--forest); color:var(--paper); border-radius:var(--radius); padding:44px 38px; height:fit-content; }
.info-card h3{ font-size:24px; margin-bottom:22px; color:var(--paper); }
.info-row{ display:flex; gap:16px; padding:16px 0; border-top:1px solid rgba(252,250,242,0.14); }
.info-row:first-of-type{ border-top:none; }
.info-row .ic{ width:20px; height:20px; color:var(--amber); flex-shrink:0; margin-top:2px; }
.info-row .txt{ font-size:14.5px; color:rgba(252,250,242,0.88); }
.social-row{ display:flex; gap:12px; margin-top:26px; }
.social-row a{ width:38px; height:38px; border-radius:50%; border:1px solid rgba(252,250,242,0.28); display:flex; align-items:center; justify-content:center; transition:background .3s ease, border-color .3s ease; }
.social-row a:hover{ background:var(--amber); border-color:var(--amber); }

.form-card{ background:var(--paper); border:1px solid var(--line); border-radius:var(--radius); padding:40px; }
.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.field{ display:flex; flex-direction:column; gap:8px; margin-bottom:20px; }
.field.full{ grid-column:1/-1; }
.field label{ font-size:12.5px; text-transform:uppercase; letter-spacing:.06em; color:var(--sage); }
.field input, .field textarea{
  border:1px solid var(--line); border-radius:var(--radius-sm); background:var(--cream);
  padding:13px 16px; font-family:var(--f-body); font-size:14.5px; color:var(--ink);
  transition:border-color .3s ease, background .3s ease;
}
.field input:focus, .field textarea:focus{ outline:none; border-color:var(--amber-deep); background:var(--paper); }
.field textarea{ resize:vertical; min-height:120px; }
@media (max-width:600px){ .form-grid{ grid-template-columns:1fr; } }

/* ================= CTA BAND ================= */
.cta-band{
  background:var(--forest); color:var(--paper); border-radius:28px;
  padding:64px 60px; display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap;
  position:relative; overflow:hidden;
}
.cta-band::before{
  content:""; position:absolute; right:-60px; top:-60px; width:260px; height:260px;
  background:radial-gradient(circle, rgba(222,154,60,0.35), transparent 70%);
}
.cta-band h2{ font-size:clamp(24px,3vw,34px); color:var(--paper); max-width:460px; }
.cta-band h2 em{ color:var(--amber); font-style:italic; }

/* ================= FOOTER ================= */
.site-footer{ background:var(--forest-deep); color:rgba(252,250,242,0.78); padding:28px 0 28px; text-align:center; }
.footer-top{ display:flex; flex-direction:column; align-items:center; gap:14px; padding-bottom:18px; border-bottom:1px solid rgba(252,250,242,0.1); }
.footer-brand .brand-text .t1{ color:var(--paper); }
.footer-brand .brand-text .t1 b{ color:var(--paper); }
.footer-brand p{ margin-top:14px; max-width:280px; font-size:14px; color:rgba(252,250,242,0.6); }
.footer-cols{ display:flex; flex-direction:column; align-items:center; gap:36px; }
.footer-col{ display:flex; flex-direction:column; align-items:center; text-align:center; }
.footer-col h5{ color:var(--paper); font-family:var(--f-body); font-size:13px; text-transform:uppercase; letter-spacing:.08em; margin-bottom:16px; }
.footer-col a, .footer-col .txt, .footer-col .contact-line{ display:block; font-size:14px; margin-bottom:10px; color:rgba(252,250,242,0.68); transition:color .25s ease; }
.footer-col .contact-line a{ display:inline; margin-bottom:0; }
.footer-col a:hover{ color:var(--amber); }
.footer-bottom{ display:flex; flex-direction:column; align-items:center; gap:14px; padding-top:26px; font-size:13px; color:rgba(252,250,242,0.5); }
.footer-bottom a:hover{ color:var(--amber); }
.footer-socials{ display:flex; gap:10px; justify-content:center; margin-top:8px; }
.footer-socials a{ width:34px; height:34px; border-radius:50%; border:1px solid rgba(252,250,242,0.22); display:flex; align-items:center; justify-content:center; transition:background .3s ease, border-color .3s ease; }
.footer-socials a:hover{ background:var(--amber); border-color:var(--amber); }

@media (max-width:700px){
  .section{ padding:70px 0; }
  .cta-band{ padding:42px 30px; flex-direction:column; align-items:flex-start; }
}

/* ============================================================
   ADDED — DrNewMed Shop Range / Upcoming / Auryah sections
   (appended only — no existing rules modified)
   ============================================================ */

/* ---- shop product card (shop.drnewmed.com full range) ---- */
.shop-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
@media (max-width:980px){ .shop-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .shop-grid{ grid-template-columns:1fr; } }

.shop-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:0;
  overflow:hidden;
  display:flex; flex-direction:column;
  transition:transform .45s var(--ease), box-shadow .45s var(--ease);
}
.shop-card:hover{ transform:translateY(-5px); box-shadow:0 18px 34px rgba(27,42,32,0.08); }
.shop-card .sc-media {
    height: 300px;
    overflow: hidden;
    background: #f5ecdc;
}

.shop-card .sc-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}
.shop-card:hover .sc-media img{ transform:scale(1.05); }
.shop-card .sc-body{ padding:22px 22px 26px; display:flex; flex-direction:column; flex:1; }
.shop-card .sc-badge{
  width:38px; height:38px; border-radius:11px;
  background:rgba(222,154,60,0.14); color:var(--amber-deep);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:16px;
}
.shop-card h4{ font-size:16px; line-height:1.3; margin-bottom:8px; }
.shop-card .sc-price{ font-family:var(--f-display); font-size:19px; color:var(--forest); margin:auto 0 14px; padding-top:10px; }
.shop-card .btn{ padding:10px 18px; font-size:13px; align-self:flex-start; }

/* ---- upcoming / coming soon card (drnewmed.in range) ---- */
.upcoming-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
@media (max-width:980px){ .upcoming-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .upcoming-grid{ grid-template-columns:1fr; } }

.upcoming-card{
  position:relative;
  background:var(--paper);
  border:1px dashed var(--line);
  border-radius:var(--radius);
  padding:24px 20px 22px;
  display:flex; flex-direction:column;
  opacity:.94;
  transition:transform .45s var(--ease), opacity .3s ease, border-color .3s ease;
}
.upcoming-card:hover{ transform:translateY(-4px); opacity:1; border-color:var(--amber); }
.upcoming-card .uc-media {
    margin: -24px -20px 16px;
    height: 140px;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
    background: var(--sand);
}

.upcoming-card .uc-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}
.upcoming-card:hover .uc-media img{ transform:scale(1.05); }
/* live / already-launched variant (used by Auryah range) */
.upcoming-card.is-live{ border-style:solid; opacity:1; }
.upcoming-card.is-live:hover{ border-color:var(--sage); }
.upcoming-ribbon{
  align-self:flex-start;
  font-size:10.5px; letter-spacing:.08em; text-transform:uppercase;
  font-weight:600; color:var(--clay);
  background:rgba(177,96,58,0.1);
  padding:5px 11px; border-radius:999px;
  margin-bottom:14px;
}
.upcoming-ribbon.ribbon-live{ color:var(--forest); background:rgba(35,64,45,0.09); }
.upcoming-card .eyebrow{ margin-bottom:8px; font-size:11.5px; }
.upcoming-card h4{ font-size:17px; margin-bottom:8px; }
.upcoming-card p{ font-size:13.5px; color:#4A5A4F; margin-bottom:16px; }
.upcoming-card .btn{ padding:9px 16px; font-size:12.5px; align-self:flex-start; margin-top:auto; }

/* ---- Auryah range cards ---- */
.auryah-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
@media (max-width:980px){ .auryah-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .auryah-grid{ grid-template-columns:1fr; } }

.auryah-card{
  background:#EFEFEC;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:52px 24px 28px;
  position:relative;
  text-align:center;
  transition:transform .45s var(--ease), box-shadow .45s var(--ease);
}
.auryah-card:hover{ transform:translateY(-5px); box-shadow:0 18px 34px rgba(27,42,32,0.1); }
.auryah-ribbon{
  position:absolute; top:0; left:50%; transform:translate(-50%,-50%);
  background:var(--amber);
  color:var(--forest-deep);
  font-weight:600; font-size:13.5px;
  padding:10px 22px;
  border-radius:8px;
  white-space:nowrap;
  box-shadow:0 8px 16px rgba(184,118,33,0.28);
}
.auryah-card .av-bottle{ width:64px; height:96px; margin:0 auto 20px; color:var(--forest); opacity:.85; }
.auryah-card h4{ font-size:17px; margin-bottom:10px; }
.auryah-card p{ font-size:13.5px; color:#4A5A4F; line-height:1.55; }
.auryah-note{
  text-align:center; margin-top:32px; font-size:13.5px; color:var(--sage);
}

/* ============================================================
   ADDED — Founder "Meet the Visionary" spotlight (team.html)
   (appended only — no existing rules modified)
   ============================================================ */
.split-copy .role{
  color:var(--amber-deep); font-size:13px; font-weight:600;
  text-transform:uppercase; letter-spacing:.03em;
}
.visionary-quote{
  border-left:3px solid var(--amber);
  padding-left:22px; margin:22px 0 34px;
  font-family:var(--f-display); font-style:italic;
  font-size:19px; line-height:1.65; color:#3A4A3F;
}
.visionary-cols{ display:grid; grid-template-columns:1fr 1fr; gap:44px; }
.visionary-cols h5{
  font-family:var(--f-body); font-size:13px; text-transform:uppercase;
  letter-spacing:.08em; color:var(--forest); font-weight:600; margin-bottom:16px;
}
.visionary-cols ul{ display:grid; gap:13px; }
.visionary-cols li{
  display:flex; gap:10px; font-size:14px; color:#3A4A3F; line-height:1.5;
}
.visionary-cols li::before{
  content:"●"; color:var(--amber-deep); flex-shrink:0; font-size:9px; margin-top:6px;
}
.milestone-list{ display:grid; gap:18px; }
.milestone-list li{ display:block; }
.milestone-list li::before{ content:none; }
.milestone-list .m-label{
  display:block; font-family:var(--f-display); color:var(--amber-deep);
  font-size:15px; margin-bottom:2px;
}
@media (max-width:980px){
  .visionary-cols{ grid-template-columns:1fr; }
}

/* ================= LEGAL PAGES (Privacy / Terms) ================= */
.legal-content{ max-width:760px; margin:0 auto; }
.legal-content .updated{ display:block; font-size:13px; color:var(--sage); margin-bottom:32px; }
.legal-content h2{ font-size:23px; margin-top:40px; margin-bottom:14px; }
.legal-content h2:first-of-type{ margin-top:0; }
.legal-content p{ margin-bottom:16px; font-size:15.5px; line-height:1.75; color:#3A4A3F; }
.legal-content ul{ list-style:disc; padding-left:22px; margin:0 0 16px; display:grid; gap:8px; }
.legal-content li{ font-size:15.5px; line-height:1.75; color:#3A4A3F; }
.legal-content a{ color:var(--forest); text-decoration:underline; text-underline-offset:2px; }
.legal-content a:hover{ color:var(--amber-deep); }
