/* ==========================================================================
   Lau Kush Pharmacy Private Limited — Stylesheet
   ========================================================================== */

:root{
  /* Color */
  --ink:        #0A2540;   /* primary navy — brand */
  --ink-2:      #123661;   /* lighter navy, hovers/gradients */
  --ink-soft:   #4C637C;   /* muted navy for secondary text on dark */
  --paper:      #FBFAF6;   /* page background, warm off-white */
  --paper-2:    #F2EEE4;   /* alternate section background */
  --sage:       #2F6F62;   /* wellness/herbal accent */
  --sage-light: #E3EEE9;   /* light sage background */
  --gold:       #B8912E;   /* certification / seal accent */
  --gold-light: #F3E9CC;
  --line:       #E1DCCF;   /* hairline borders on paper */
  --line-dark:  rgba(255,255,255,.16);
  --text:       #1B2733;
  --text-muted: #5B6B78;
  --white:      #FFFFFF;
  --whatsapp:   #25995C;

  /* Type */
  --font-display: "Newsreader", Georgia, "Times New Roman", serif;
  --font-body: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;

  /* Layout */
  --maxw: 1180px;
  --maxw-prose: 760px;
  --radius: 4px;
  --radius-lg: 10px;
}

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

:focus-visible{ outline:2px solid var(--gold); outline-offset:3px; }

.container{ max-width:var(--maxw); margin:0 auto; padding:0 24px; }
.prose-container{ max-width:var(--maxw-prose); margin:0 auto; padding:0 24px; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.01ms !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
}

/* ---------------------------------- Utility bar ---------------------------------- */
.utility-bar{
  background:var(--ink);
  color:#CBD8E6;
  font-size:12.5px;
  letter-spacing:.02em;
}
.utility-bar .container{
  display:flex;
  justify-content:center;
  gap:10px;
  align-items:center;
  padding:8px 24px;
  text-align:center;
  flex-wrap:wrap;
}
.utility-bar .dot{ opacity:.5; }

/* ---------------------------------- Header / nav ---------------------------------- */
.site-header{
  background:var(--paper);
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  z-index:50;
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:76px;
  gap:20px;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand-mark{
  width:44px; height:44px; border-radius:50%;
  background:var(--ink);
  color:var(--gold-light);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-weight:600; font-size:15px;
  border:1.5px solid var(--gold);
  flex:none;
}
.brand-text{ line-height:1.25; }
.brand-text .name{ display:block; font-family:var(--font-display); font-weight:600; font-size:16.5px; color:var(--ink); }
.brand-text .tag{ display:block; font-size:11px; letter-spacing:.06em; text-transform:uppercase; color:var(--text-muted); }

.main-nav{ display:flex; align-items:center; gap:30px; }
.main-nav ul{ display:flex; gap:26px; align-items:center; }
.main-nav a{
  font-size:14.5px; color:var(--text); position:relative; padding:6px 0;
}
.main-nav a:hover{ color:var(--sage); }
.has-dropdown{ position:relative; }
.has-dropdown > a::after{ content:"⌄"; margin-left:5px; font-size:12px; opacity:.7; }
.dropdown{
  position:absolute; top:100%; left:50%; transform:translateX(-50%);
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  box-shadow:0 12px 28px rgba(10,37,64,.12);
  min-width:230px; padding:8px; margin-top:10px;
  opacity:0; visibility:hidden; transform:translate(-50%,4px);
  transition:opacity .15s ease, transform .15s ease, visibility .15s ease;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown{ opacity:1; visibility:visible; transform:translate(-50%,0); }
.dropdown a{ display:block; padding:9px 12px; border-radius:4px; font-size:14px; }
.dropdown a:hover{ background:var(--sage-light); color:var(--sage); }

.header-actions{ display:flex; align-items:center; gap:10px; }
.nav-toggle{
  display:none; background:none; border:1px solid var(--line); border-radius:6px;
  width:42px; height:42px; align-items:center; justify-content:center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:""; display:block; width:18px; height:2px; background:var(--ink); position:relative;
  transition:transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before{ position:absolute; top:-6px; }
.nav-toggle span::after{ position:absolute; top:6px; }

/* ---------------------------------- Buttons ---------------------------------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:12px 22px; border-radius:3px; font-size:14.5px; font-weight:500;
  border:1px solid transparent; white-space:nowrap; transition:all .15s ease;
}
.btn-primary{ background:var(--ink); color:var(--white); }
.btn-primary:hover{ background:var(--ink-2); }
.btn-outline{ background:transparent; color:var(--ink); border-color:var(--ink); }
.btn-outline:hover{ background:var(--ink); color:var(--white); }
.btn-whatsapp{ background:var(--whatsapp); color:var(--white); }
.btn-whatsapp:hover{ background:#1e7d4b; }
.btn-gold{ background:var(--gold); color:var(--white); }
.btn-gold:hover{ background:#a17c25; }
.btn-sm{ padding:9px 16px; font-size:13.5px; }
.btn-block{ width:100%; }

/* ---------------------------------- Hero ---------------------------------- */
.hero{
  background:
    radial-gradient(1100px 480px at 82% -10%, rgba(184,145,46,.10), transparent 60%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper) 100%);
  padding:72px 0 64px;
  border-bottom:1px solid var(--line);
}
.hero .container{ display:grid; grid-template-columns:1.15fr .85fr; gap:56px; align-items:center; }
.eyebrow{
  font-family:var(--font-mono); font-size:12px; letter-spacing:.12em; text-transform:uppercase;
  color:var(--sage); margin-bottom:16px; display:flex; align-items:center; gap:10px;
}
.eyebrow::before{ content:""; width:22px; height:1px; background:var(--sage); display:inline-block; }
.hero h1{ font-size:44px; letter-spacing:-.01em; margin-bottom:20px; }
.hero .lede{ font-size:17px; color:var(--text-muted); max-width:52ch; margin-bottom:30px; }
.hero .cta-row{ display:flex; gap:14px; flex-wrap:wrap; }

/* Seal / signature element */
.seal-wrap{ display:flex; align-items:center; justify-content:center; }
.seal{ width:100%; max-width:300px; height:auto; }
.seal-ring-text{ font-family:var(--font-mono); font-size:9.4px; letter-spacing:.24em; fill:var(--ink); }
.seal-center-title{ font-family:var(--font-display); font-weight:600; fill:var(--ink); }

/* ---------------------------------- Trust strip ---------------------------------- */
.trust-strip{ background:var(--ink); color:var(--white); padding:26px 0; }
.trust-strip .container{
  display:grid; grid-template-columns:repeat(4,1fr); gap:20px;
}
.trust-item{ display:flex; align-items:center; gap:12px; }
.trust-item .ico{
  width:34px; height:34px; border-radius:50%; border:1px solid var(--gold);
  color:var(--gold); display:flex; align-items:center; justify-content:center; flex:none; font-size:15px;
}
.trust-item span.label{ font-size:13.5px; color:#DCE5EF; }

/* ---------------------------------- Sections ---------------------------------- */
section{ padding:76px 0; }
.section-alt{ background:var(--paper-2); }
.section-head{ max-width:640px; margin:0 auto 44px; text-align:center; }
.section-head .eyebrow{ justify-content:center; }
.section-head.left{ margin:0 0 44px; text-align:left; }
.section-head.left .eyebrow{ justify-content:flex-start; }
.section-head h2{ font-size:32px; margin-bottom:14px; }
.section-head p{ color:var(--text-muted); font-size:15.5px; }

/* Category grid */
.grid-6{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.cat-card{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:28px 24px; transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.cat-card:hover{ transform:translateY(-3px); box-shadow:0 16px 30px rgba(10,37,64,.08); border-color:transparent; }
.cat-card .num{ font-family:var(--font-mono); font-size:12px; color:var(--gold); letter-spacing:.08em; }
.cat-card h3{ font-size:19px; margin:12px 0 8px; }
.cat-card p{ font-size:14px; color:var(--text-muted); }

/* Flagship band */
.flagship{
  background:var(--sage); color:var(--white); border-radius:var(--radius-lg);
  padding:44px; display:grid; grid-template-columns:1fr auto; gap:30px; align-items:center;
}
.flagship .eyebrow{ color:var(--gold-light); }
.flagship .eyebrow::before{ background:var(--gold-light); }
.flagship h3{ color:var(--white); font-size:26px; margin-bottom:10px; }
.flagship p{ color:#DCEEE7; max-width:56ch; }

/* Why trust: 3 col */
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:30px; }
.why-item .icon-box{
  width:50px; height:50px; border-radius:10px; background:var(--sage-light); color:var(--sage);
  display:flex; align-items:center; justify-content:center; font-size:20px; margin-bottom:18px;
}
.why-item h3{ font-size:18.5px; margin-bottom:8px; }
.why-item p{ font-size:14.5px; color:var(--text-muted); }

/* Policy quick cards */
.grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.policy-card{
  border:1px solid var(--line); background:var(--white); border-radius:var(--radius-lg);
  padding:24px; display:flex; flex-direction:column; gap:10px;
}
.policy-card .tag{ font-family:var(--font-mono); font-size:11px; color:var(--sage); letter-spacing:.06em; }
.policy-card h3{ font-size:17px; }
.policy-card p{ font-size:13.5px; color:var(--text-muted); flex:1; }
.policy-card .go{ font-size:13px; color:var(--ink); font-weight:600; }
.policy-card:hover .go{ color:var(--sage); }

/* Contact CTA band */
.cta-band{
  background:var(--ink); color:var(--white); border-radius:var(--radius-lg);
  padding:52px 44px; text-align:center;
}
.cta-band h2{ color:var(--white); font-size:30px; margin-bottom:12px; }
.cta-band p{ color:#C7D3E0; margin-bottom:26px; }
.cta-band .cta-row{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ---------------------------------- Page header (inner pages) ---------------------------------- */
.page-header{
  background:var(--ink); color:var(--white); padding:56px 0 44px;
}
.page-header .eyebrow{ color:var(--gold-light); }
.page-header .eyebrow::before{ background:var(--gold-light); }
.page-header h1{ color:var(--white); font-size:36px; }
.page-header .updated{ margin-top:14px; font-family:var(--font-mono); font-size:12.5px; color:#B9C7D6; }
.breadcrumb{ font-size:13px; color:#9FB1C4; margin-bottom:16px; }
.breadcrumb a:hover{ color:var(--white); }

/* ---------------------------------- Prose (legal pages) ---------------------------------- */
.prose{ padding:56px 0 90px; }
.prose-container h2{
  font-size:22px; margin:44px 0 14px; padding-top:10px; border-top:1px solid var(--line);
}
.prose-container h2:first-child{ border-top:none; margin-top:0; padding-top:0; }
.prose-container h3{ font-size:17px; color:var(--text); margin:22px 0 8px; }
.prose-container p{ color:var(--text); font-size:15.5px; margin-bottom:14px; }
.prose-container ul{ margin:0 0 16px; padding-left:22px; list-style:disc; }
.prose-container li{ font-size:15.5px; margin-bottom:8px; color:var(--text); }
.prose-container a{ color:var(--sage); text-decoration:underline; text-underline-offset:2px; }
.prose-container strong{ color:var(--ink); }
.callout{
  background:var(--sage-light); border-left:3px solid var(--sage); border-radius:0 8px 8px 0;
  padding:16px 20px; margin:20px 0; font-size:14.5px;
}
.callout.warn{ background:var(--gold-light); border-left-color:var(--gold); }
.toc{
  background:var(--paper-2); border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:22px 26px; margin-bottom:36px;
}
.toc .toc-title{ font-family:var(--font-mono); font-size:11.5px; letter-spacing:.08em; text-transform:uppercase; color:var(--text-muted); margin-bottom:10px; }
.toc ol{ padding-left:18px; margin:0; }
.toc li{ font-size:14.5px; margin-bottom:6px; }
.toc a{ color:var(--ink); text-decoration:none; }
.toc a:hover{ color:var(--sage); text-decoration:underline; }

/* ---------------------------------- About page specifics ---------------------------------- */
.reg-table{ width:100%; border-collapse:collapse; margin:18px 0 8px; }
.reg-table td{ padding:12px 14px; border:1px solid var(--line); font-size:14.5px; vertical-align:top; }
.reg-table td:first-child{ width:42%; color:var(--text-muted); font-family:var(--font-mono); font-size:12.5px; letter-spacing:.02em; background:var(--paper-2); }
.reg-table td.placeholder{ color:#B45A3C; font-style:italic; }

.stat-row{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin:36px 0; }
.stat-card{ text-align:center; border:1px solid var(--line); border-radius:var(--radius-lg); padding:22px 10px; background:var(--white); }
.stat-card .n{ font-family:var(--font-display); font-size:26px; color:var(--ink); font-weight:600; }
.stat-card .l{ font-size:12.5px; color:var(--text-muted); margin-top:6px; }

/* ---------------------------------- Contact page ---------------------------------- */
.contact-grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:44px; align-items:start; }
.info-card{
  display:flex; gap:16px; padding:20px 0; border-bottom:1px solid var(--line);
}
.info-card:first-child{ padding-top:0; }
.info-card .ico{
  width:42px; height:42px; border-radius:50%; background:var(--sage-light); color:var(--sage);
  display:flex; align-items:center; justify-content:center; flex:none; font-size:17px;
}
.info-card h4{ font-size:14px; color:var(--text-muted); font-weight:500; margin-bottom:5px; text-transform:uppercase; letter-spacing:.04em; font-family:var(--font-mono); font-size:11.5px;}
.info-card p, .info-card a{ font-size:15.5px; color:var(--text); }
.info-card a:hover{ color:var(--sage); }

.form-card{ background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg); padding:34px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field{ margin-bottom:18px; }
.field label{ display:block; font-size:13px; color:var(--text-muted); margin-bottom:7px; font-weight:500; }
.field input, .field textarea, .field select{
  width:100%; border:1px solid var(--line); border-radius:6px; padding:12px 14px;
  font-family:inherit; font-size:14.5px; background:var(--paper); color:var(--text);
}
.field input:focus, .field textarea:focus{ outline:none; border-color:var(--sage); background:var(--white); }
.field textarea{ resize:vertical; min-height:120px; }
.hp-field{ position:absolute; left:-9999px; opacity:0; }
.form-note{ font-size:12.5px; color:var(--text-muted); margin-top:12px; }

.alert{ padding:14px 18px; border-radius:8px; font-size:14.5px; margin-bottom:22px; }
.alert-success{ background:var(--sage-light); color:#1F4F45; border:1px solid var(--sage); }
.alert-error{ background:var(--gold-light); color:#7A4A17; border:1px solid var(--gold); }

.map-note{
  margin-top:26px; border:1px dashed var(--line); border-radius:var(--radius-lg);
  padding:20px; font-size:13.5px; color:var(--text-muted); background:var(--paper-2);
}

/* ---------------------------------- Footer ---------------------------------- */
.site-footer{ background:var(--ink); color:#C6D2DF; padding:64px 0 0; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.1fr; gap:40px; padding-bottom:44px; border-bottom:1px solid var(--line-dark); }
.footer-brand .brand-mark{ background:var(--gold-light); color:var(--ink); }
.footer-brand p{ font-size:13.5px; color:#9DAEC0; margin-top:14px; max-width:32ch; }
.footer-col h4{ color:var(--white); font-size:13px; letter-spacing:.05em; text-transform:uppercase; margin-bottom:16px; font-family:var(--font-mono); font-weight:500; }
.footer-col li{ margin-bottom:10px; }
.footer-col a{ font-size:14px; color:#B7C4D3; }
.footer-col a:hover{ color:var(--white); }
.footer-col p{ font-size:14px; color:#B7C4D3; }
.footer-legal{
  padding:22px 0; display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap;
  font-size:12.5px; color:#8497AB;
}
.footer-legal .reg-strip{ font-family:var(--font-mono); font-size:11.5px; color:#7488A0; }

/* Sticky mobile action bar */
.mobile-bar{ display:none; }

/* ---------------------------------- Responsive ---------------------------------- */
@media (max-width: 980px){
  .hero .container{ grid-template-columns:1fr; }
  .seal-wrap{ order:-1; max-width:200px; margin:0 auto 8px; }
  .grid-6{ grid-template-columns:repeat(2,1fr); }
  .grid-4{ grid-template-columns:repeat(2,1fr); }
  .grid-3{ grid-template-columns:1fr; gap:26px; }
  .trust-strip .container{ grid-template-columns:repeat(2,1fr); row-gap:18px; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .contact-grid{ grid-template-columns:1fr; }
  .stat-row{ grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 720px){
  .main-nav{ display:none; position:absolute; top:76px; left:0; right:0; background:var(--paper); border-bottom:1px solid var(--line); flex-direction:column; align-items:stretch; padding:10px 24px 20px; box-shadow:0 12px 20px rgba(10,37,64,.08); }
  .main-nav.open{ display:flex; }
  .main-nav ul{ flex-direction:column; gap:2px; align-items:stretch; }
  .main-nav ul > li{ border-bottom:1px solid var(--line); }
  .main-nav a{ padding:12px 4px; display:block; }
  .dropdown{ position:static; transform:none; box-shadow:none; border:none; opacity:1; visibility:visible; display:none; margin:0 0 6px; padding-left:10px; }
  .has-dropdown.open .dropdown{ display:block; }
  .has-dropdown > a::after{ display:none; }
  .nav-toggle{ display:flex; }
  .header-actions .btn-outline{ display:none; }
  .hero{ padding:44px 0 40px; }
  .hero h1{ font-size:30px; }
  .grid-6, .grid-4{ grid-template-columns:1fr; }
  section{ padding:52px 0; }
  .flagship{ grid-template-columns:1fr; text-align:left; padding:32px 26px; }
  .footer-grid{ grid-template-columns:1fr; gap:34px; }
  .footer-legal{ flex-direction:column; gap:8px; }
  .form-row{ grid-template-columns:1fr; }
  .cta-band{ padding:40px 24px; }
  .stat-row{ grid-template-columns:1fr 1fr; }
  body{ padding-bottom:64px; }
  .mobile-bar{
    display:flex; position:fixed; bottom:0; left:0; right:0; z-index:60;
    background:var(--white); border-top:1px solid var(--line); box-shadow:0 -6px 18px rgba(10,37,64,.10);
  }
  .mobile-bar a{ flex:1; text-align:center; padding:14px 0; font-size:13.5px; font-weight:600; }
  .mobile-bar a:first-child{ background:var(--ink); color:var(--white); }
  .mobile-bar a:last-child{ background:var(--whatsapp); color:var(--white); }
}
