/* ===========================================================
   PRATHI NATURALS — Pure Botanicals for Skin & Hair
   Design tokens: Luxury / Minimal / Organic — White, Forest Green, Gold
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&family=Cormorant+Garamond:ital,wght@0,500;1,500;1,600&family=Jost:wght@300;400;500;600&display=swap');

:root{
  --cream:        #FBF7EE;
  --cream-deep:   #F2EADA;
  --paper:        #FFFFFF;
  --forest:       #1F3A2C;
  --forest-deep:  #142A1E;
  --forest-soft:  #3E5C48;
  --sage:         #E7ECDD;
  --sage-deep:    #CFDABB;
  --gold:         #C6A15B;
  --gold-soft:    #E3CFA0;
  --gold-deep:    #A9813C;
  --ink:          #2A2A24;
  --ink-soft:     #6B6A5E;
  --line:         #E4DCC8;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-script:  'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', 'Helvetica Neue', Arial, sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --shadow-soft: 0 20px 50px -20px rgba(31,58,44,0.25);
  --shadow-card: 0 10px 30px -12px rgba(31,58,44,0.18);
  --ease: cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; cursor:pointer; }
input,textarea,select{ font-family:inherit; }

.container{ max-width:1240px; margin:0 auto; padding:0 32px; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

/* ---------- Typography ---------- */
h1,h2,h3,h4{ font-family:var(--font-display); color:var(--forest); margin:0; font-weight:600; line-height:1.15; letter-spacing:-0.01em; }
.eyebrow{
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight:600;
  display:flex; align-items:center; gap:10px;
}
.eyebrow::before{ content:""; width:26px; height:1px; background:var(--gold-deep); display:inline-block; }
.script{ font-family:var(--font-script); font-style:italic; }
.section-title{ font-size: clamp(28px,4vw,42px); }
.lede{ color: var(--ink-soft); font-size:16px; line-height:1.7; max-width:560px; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:15px 34px; border-radius:999px; font-size:14px; font-weight:600;
  letter-spacing:0.4px; border:1px solid transparent; transition:all .35s var(--ease);
  white-space:nowrap;
}
.btn-gold{
  background: linear-gradient(135deg,var(--gold) 0%, var(--gold-deep) 100%);
  color:#fff; box-shadow: 0 12px 28px -10px rgba(169,129,60,0.55);
}
.btn-gold:hover{ transform: translateY(-2px); box-shadow: 0 16px 34px -10px rgba(169,129,60,0.7); }
.btn-outline{
  background: rgba(255,255,255,0.55); color:var(--forest); border-color: var(--forest);
  backdrop-filter: blur(6px);
}
.btn-outline:hover{ background: var(--forest); color:#fff; }
.btn-outline-light{ background: rgba(255,255,255,0.12); color:#fff; border-color: rgba(255,255,255,0.6); backdrop-filter: blur(6px); }
.btn-outline-light:hover{ background:#fff; color:var(--forest); }
.btn-dark{ background: var(--forest); color:#fff; }
.btn-dark:hover{ background: var(--forest-deep); transform: translateY(-2px); }
.btn-block{ width:100%; }
.btn-sm{ padding:10px 20px; font-size:12.5px; }
.btn[disabled]{ opacity:.5; cursor:not-allowed; transform:none !important; }

/* ---------- Glass ---------- */
.glass{
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.6);
}

/* ---------- Header ---------- */
.announce-bar{
  background: var(--forest); color: var(--sage); text-align:center;
  font-size:12.5px; letter-spacing:1px; padding:9px 16px; font-weight:400;
}
.site-header{
  position: sticky; top:0; z-index:100;
  background: rgba(251,247,238,0.85);
  backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--line);
}
.nav-wrap{ display:flex; align-items:center; justify-content:space-between; padding:14px 32px; max-width:1240px; margin:0 auto; gap:24px; }
.brand{ display:flex; align-items:center; gap:12px; flex-shrink:0; }
.brand img{ height:52px; width:auto; }
.brand-text{ display:flex; flex-direction:column; line-height:1.1; }
.brand-text .name{ font-family:var(--font-display); font-size:19px; color:var(--forest); font-weight:700; letter-spacing:0.3px; }
.brand-text .tag{ font-family:var(--font-script); font-style:italic; font-size:12px; color:var(--gold-deep); }

.main-nav{ display:flex; align-items:center; gap:30px; }
.main-nav a{
  font-size:13.5px; font-weight:500; color: var(--forest); letter-spacing:0.3px;
  position:relative; padding:6px 0; transition:color .25s;
}
.main-nav a::after{
  content:""; position:absolute; left:0; bottom:0; width:0; height:1.5px; background:var(--gold);
  transition: width .3s var(--ease);
}
.main-nav a:hover{ color:var(--gold-deep); }
.main-nav a:hover::after, .main-nav a.active::after{ width:100%; }
.main-nav a.active{ color:var(--gold-deep); }

.nav-actions{ display:flex; align-items:center; gap:16px; }
.icon-btn{
  position:relative; width:42px; height:42px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,0.6); border:1px solid var(--line); transition: all .3s var(--ease);
}
.icon-btn:hover{ background:var(--forest); border-color:var(--forest); }
.icon-btn:hover svg{ stroke:#fff; }
.icon-btn svg{ width:19px; height:19px; stroke:var(--forest); transition:stroke .3s; }
.cart-count{
  position:absolute; top:-4px; right:-4px; background:var(--gold-deep); color:#fff;
  font-size:10px; font-weight:700; width:18px; height:18px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}
.menu-toggle{ display:none; background:none; border:none; padding:6px; }
.menu-toggle svg{ width:26px; height:26px; stroke:var(--forest); }

/* mobile nav */
@media (max-width: 980px){
  .main-nav{
    position:fixed; top:0; right:0; height:100vh; width:78%; max-width:320px;
    background: var(--cream); flex-direction:column; align-items:flex-start; justify-content:flex-start;
    padding: 100px 32px 40px; gap:22px; transform:translateX(100%); transition: transform .4s var(--ease);
    box-shadow: -20px 0 50px rgba(0,0,0,0.15); z-index:99;
  }
  .main-nav.open{ transform:translateX(0); }
  .menu-toggle{ display:block; }
  .brand-text .tag{ display:none; }
}

/* ---------- Hero ---------- */
.hero{
  position:relative; overflow:hidden; background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.hero-media{ position:relative; width:100%; }
.hero-media img{ width:100%; height:auto; object-fit:cover; }
.hero-caption{
  position:absolute; left:0; right:0; bottom:0;
  padding: 40px 32px 34px;
  background: linear-gradient(0deg, rgba(20,38,27,0.55) 0%, rgba(20,38,27,0) 100%);
  display:flex; align-items:flex-end; justify-content:space-between; gap:24px; flex-wrap:wrap;
}
.hero-caption .txt{ color:#fff; max-width:520px; }
.hero-caption h1{ color:#fff; font-size: clamp(22px,3vw,32px); }
.hero-caption p{ color: rgba(255,255,255,0.85); margin-top:8px; font-size:14px; max-width:440px; }
.hero-caption .actions{ display:flex; gap:12px; }

/* leaf divider */
.leaf-divider{ position:relative; height:64px; margin-top:-1px; }
.leaf-divider svg{ width:100%; height:100%; display:block; }

/* ---------- Section spacing ---------- */
.section{ padding: 84px 0; }
.section-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:24px; margin-bottom:44px; flex-wrap:wrap; }
.section-alt{ background: var(--sage); }
.section-dark{ background: var(--forest); color:#fff; }
.section-dark h2, .section-dark h3, .section-dark h4{ color:#fff; }
.section-dark .lede{ color: rgba(255,255,255,0.72); }

/* ---------- Category pills / cards ---------- */
.cat-scroller{
  display:grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap:18px;
}
.cat-card{
  border-radius: var(--radius-md); padding:26px 18px; text-align:center;
  background: var(--paper); border:1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.cat-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: var(--gold-soft); }
.cat-card .ic{
  width:54px; height:54px; margin:0 auto 14px; border-radius:50%;
  background: var(--sage); display:flex; align-items:center; justify-content:center;
}
.cat-card .ic svg{ width:24px; height:24px; stroke:var(--forest); fill:none; stroke-width:1.6; }
.cat-card .nm{ font-family:var(--font-display); font-size:15px; color:var(--forest); font-weight:600; }

/* ---------- Product grid & cards ---------- */
.product-grid{ display:grid; grid-template-columns: repeat(auto-fill, minmax(250px,1fr)); gap:26px; }
.product-card{
  background:var(--paper); border-radius: var(--radius-md); overflow:hidden; border:1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display:flex; flex-direction:column; position:relative;
}
.product-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-card); }
.product-card .thumb{ position:relative; aspect-ratio:1/1; overflow:hidden; background:var(--sage); }
.product-card .thumb img{ width:100%; height:100%; object-fit:cover; transition: transform .6s var(--ease); }
.product-card:hover .thumb img{ transform: scale(1.06); }
.badge{
  position:absolute; top:14px; left:14px; background: var(--forest); color:#fff;
  font-size:10.5px; letter-spacing:1px; text-transform:uppercase; font-weight:600;
  padding:6px 11px; border-radius:999px; z-index:2;
}
.badge-gold{ background: linear-gradient(135deg,var(--gold),var(--gold-deep)); }
.thumb .quick-add{
  position:absolute; right:12px; bottom:12px; width:42px; height:42px; border-radius:50%;
  background:#fff; display:flex; align-items:center; justify-content:center; box-shadow:0 8px 18px rgba(0,0,0,0.18);
  opacity:0; transform: translateY(8px); transition: all .35s var(--ease); border:none; z-index:2;
}
.product-card:hover .quick-add{ opacity:1; transform:translateY(0); }
.quick-add svg{ width:18px; height:18px; stroke:var(--forest); }
.product-card .info{ padding:18px 18px 20px; display:flex; flex-direction:column; gap:8px; flex:1; }
.product-card .cat-label{ font-size:11px; letter-spacing:1.5px; text-transform:uppercase; color:var(--gold-deep); font-weight:600; }
.product-card .p-name{ font-family:var(--font-display); font-size:16.5px; color:var(--forest); font-weight:600; line-height:1.3; }
.product-card .p-name a{ transition: color .25s; }
.product-card .p-name a:hover{ color: var(--gold-deep); }
.price-row{ display:flex; align-items:baseline; gap:9px; margin-top:2px; }
.price-row .mrp{ text-decoration: line-through; color: var(--ink-soft); font-size:13px; }
.price-row .sell{ font-size:18px; font-weight:700; color:var(--forest); }
.price-row .disc{ font-size:11.5px; color:var(--gold-deep); font-weight:600; }
.price-row .oreq{ font-size:13.5px; color:var(--ink-soft); font-style:italic; }
.product-card .cta-row{ margin-top:auto; display:flex; gap:8px; padding-top:10px; }

/* ---------- Why choose us ---------- */
.feature-grid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap:30px; }
.feature{ text-align:center; padding: 10px; }
.feature .ic{
  width:72px; height:72px; margin:0 auto 18px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,0.12); border:1px solid rgba(255,255,255,0.25);
}
.section:not(.section-dark) .feature .ic{ background: var(--sage); border-color: var(--sage-deep); }
.feature .ic svg{ width:30px; height:30px; stroke: var(--gold); fill:none; stroke-width:1.4; }
.section:not(.section-dark) .feature .ic svg{ stroke: var(--forest); }
.feature h4{ font-size:17px; margin-bottom:8px; }
.feature p{ font-size:13.5px; color: var(--ink-soft); line-height:1.7; }
.section-dark .feature p{ color: rgba(255,255,255,0.68); }

/* ---------- Testimonials ---------- */
.reviews-track{ display:grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap:24px; }
.review-card{
  background: var(--paper); border-radius: var(--radius-md); padding:30px; border:1px solid var(--line);
}
.stars{ display:flex; gap:3px; margin-bottom:14px; }
.stars svg{ width:15px; height:15px; fill:var(--gold); stroke:none; }
.review-card p{ font-size:14.5px; color: var(--ink); line-height:1.75; font-style:italic; font-family:var(--font-script); font-size:19px; }
.reviewer{ display:flex; align-items:center; gap:12px; margin-top:20px; }
.reviewer .av{
  width:40px; height:40px; border-radius:50%; background:var(--sage); display:flex; align-items:center;
  justify-content:center; font-family:var(--font-display); color:var(--forest); font-weight:700; font-size:15px;
}
.reviewer .meta{ line-height:1.3; }
.reviewer .meta .n{ font-weight:600; font-size:13.5px; color:var(--forest); }
.reviewer .meta .l{ font-size:11.5px; color:var(--ink-soft); }

/* ---------- Instagram gallery ---------- */
.insta-grid{ display:grid; grid-template-columns: repeat(6,1fr); gap:14px; }
.insta-grid a{ position:relative; aspect-ratio:1/1; border-radius: var(--radius-sm); overflow:hidden; display:block; }
.insta-grid img{ width:100%; height:100%; object-fit:cover; transition: transform .5s var(--ease); }
.insta-grid a:hover img{ transform: scale(1.08); }
.insta-grid a::after{
  content:"@prathinaturals"; position:absolute; inset:0; background:rgba(31,58,44,0.55);
  color:#fff; font-size:11px; display:flex; align-items:center; justify-content:center; text-align:center;
  opacity:0; transition:opacity .3s; padding:8px;
}
.insta-grid a:hover::after{ opacity:1; }
@media (max-width: 900px){ .insta-grid{ grid-template-columns: repeat(3,1fr); } }

/* ---------- Footer ---------- */
.site-footer{ background: var(--forest-deep); color: rgba(255,255,255,0.78); padding: 70px 0 0; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap:44px; padding-bottom:50px; border-bottom:1px solid rgba(255,255,255,0.12); }
.footer-brand img{ height:56px; margin-bottom:16px; background:#fff; border-radius:12px; padding:6px; }
.footer-brand p{ font-size:13.5px; line-height:1.8; color: rgba(255,255,255,0.6); max-width:280px; }
.footer-col h5{ font-family:var(--font-display); color:#fff; font-size:14.5px; letter-spacing:0.5px; margin-bottom:18px; }
.footer-col a{ display:block; font-size:13.5px; color: rgba(255,255,255,0.65); padding:6px 0; transition:color .25s; }
.footer-col a:hover{ color: var(--gold); }
.footer-social{ display:flex; gap:10px; margin-top:18px; }
.footer-social a{ width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,0.25); display:flex; align-items:center; justify-content:center; padding:0; }
.footer-social svg{ width:16px; height:16px; stroke:#fff; }
.footer-bottom{ display:flex; align-items:center; justify-content:space-between; padding:24px 0; font-size:12.5px; color: rgba(255,255,255,0.5); flex-wrap:wrap; gap:10px; }
.footer-bottom .made{ color: rgba(255,255,255,0.5); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero{
  background: var(--sage); padding: 64px 0 40px; text-align:center; border-bottom:1px solid var(--line);
}
.page-hero .eyebrow{ justify-content:center; }
.page-hero h1{ font-size: clamp(30px,4.5vw,46px); margin-top:10px; }
.breadcrumb{ font-size:12.5px; color:var(--ink-soft); margin-top:12px; }
.breadcrumb a{ color:var(--forest); font-weight:600; }

/* ---------- Filters / shop layout ---------- */
.shop-layout{ display:grid; grid-template-columns: 250px 1fr; gap:40px; align-items:start; }
.filters{ position:sticky; top:100px; background:var(--paper); border:1px solid var(--line); border-radius: var(--radius-md); padding:24px; }
.filters h4{ font-size:14px; margin-bottom:16px; letter-spacing:0.5px; }
.filter-list{ display:flex; flex-direction:column; gap:2px; }
.filter-list button{
  text-align:left; background:none; border:none; padding:9px 10px; border-radius:8px; font-size:13.5px;
  color: var(--ink); transition: all .25s; display:flex; justify-content:space-between;
}
.filter-list button:hover{ background: var(--sage); }
.filter-list button.active{ background: var(--forest); color:#fff; }
.filter-list button.active .cnt{ color: rgba(255,255,255,0.7); }
.filter-list .cnt{ color: var(--ink-soft); font-size:11.5px; }
.shop-toolbar{ display:flex; align-items:center; justify-content:space-between; margin-bottom:24px; flex-wrap:wrap; gap:14px; }
.shop-toolbar select{ border:1px solid var(--line); border-radius:8px; padding:9px 14px; font-size:13px; background:#fff; }
.result-count{ font-size:13px; color: var(--ink-soft); }

@media (max-width: 860px){
  .shop-layout{ grid-template-columns: 1fr; }
  .filters{ position:static; }
}

/* ---------- Product detail page ---------- */
.pd-layout{ display:grid; grid-template-columns: 1fr 1fr; gap:56px; align-items:flex-start; }
.pd-image{ position:sticky; top:100px; border-radius: var(--radius-lg); overflow:hidden; background:var(--sage); border:1px solid var(--line); }
.pd-info .cat-label{ font-size:12px; letter-spacing:2px; text-transform:uppercase; color:var(--gold-deep); font-weight:600; }
.pd-info h1{ font-size: clamp(26px,3vw,36px); margin-top:8px; }
.pd-price{ display:flex; align-items:baseline; gap:14px; margin:18px 0; }
.pd-price .mrp{ text-decoration:line-through; color:var(--ink-soft); font-size:18px; }
.pd-price .sell{ font-size:30px; font-weight:700; color:var(--forest); }
.pd-price .disc{ background: var(--sage); color: var(--gold-deep); font-size:12px; font-weight:700; padding:5px 10px; border-radius:6px; }
.pd-desc{ color: var(--ink-soft); line-height:1.85; font-size:15px; margin-bottom:26px; }
.qty-row{ display:flex; align-items:center; gap:18px; margin-bottom:22px; }
.qty-box{ display:flex; align-items:center; border:1px solid var(--line); border-radius:999px; overflow:hidden; }
.qty-box button{ width:40px; height:40px; background:none; border:none; font-size:18px; color:var(--forest); }
.qty-box button:hover{ background:var(--sage); }
.qty-box span{ width:40px; text-align:center; font-weight:600; }
.pd-actions{ display:flex; gap:14px; margin-bottom:30px; }
.pd-meta{ display:flex; flex-direction:column; gap:12px; padding-top:24px; border-top:1px solid var(--line); font-size:13px; color: var(--ink-soft); }
.pd-meta div{ display:flex; gap:10px; align-items:center; }
.pd-meta svg{ width:17px; height:17px; stroke:var(--gold-deep); flex-shrink:0; }
.related-title{ margin: 90px 0 34px; text-align:center; }

@media (max-width: 860px){
  .pd-layout{ grid-template-columns:1fr; gap:30px; }
  .pd-image{ position:static; }
}

/* ---------- Cart drawer ---------- */
.cart-overlay{
  position:fixed; inset:0; background: rgba(20,38,27,0.45); z-index:200; opacity:0; pointer-events:none; transition: opacity .35s var(--ease);
}
.cart-overlay.open{ opacity:1; pointer-events:auto; }
.cart-drawer{
  position:fixed; top:0; right:0; height:100vh; width:420px; max-width:92vw; background:var(--cream); z-index:201;
  transform: translateX(100%); transition: transform .45s var(--ease); display:flex; flex-direction:column;
  box-shadow: -20px 0 60px rgba(0,0,0,0.2);
}
.cart-drawer.open{ transform: translateX(0); }
.cart-head{ display:flex; align-items:center; justify-content:space-between; padding:22px 26px; border-bottom:1px solid var(--line); }
.cart-head h3{ font-size:19px; }
.cart-close{ width:34px; height:34px; border-radius:50%; background:var(--sage); border:none; display:flex; align-items:center; justify-content:center; }
.cart-close svg{ width:16px; height:16px; stroke:var(--forest); }
.cart-items{ flex:1; overflow-y:auto; padding: 12px 26px; display:flex; flex-direction:column; gap:18px; }
.cart-item{ display:flex; gap:14px; padding:14px 0; border-bottom:1px solid var(--line); }
.cart-item img{ width:72px; height:72px; border-radius:12px; object-fit:cover; background:var(--sage); flex-shrink:0; }
.cart-item .ci-info{ flex:1; display:flex; flex-direction:column; gap:6px; }
.cart-item .ci-name{ font-family:var(--font-display); font-size:14.5px; color:var(--forest); font-weight:600; }
.cart-item .ci-price{ font-size:13px; color:var(--ink-soft); }
.cart-item .ci-row{ display:flex; align-items:center; justify-content:space-between; margin-top:4px; }
.cart-item .qty-box button{ width:28px; height:28px; font-size:15px; }
.cart-item .qty-box span{ width:28px; }
.cart-item .remove{ font-size:11.5px; color:var(--gold-deep); text-decoration:underline; background:none; border:none; }
.cart-empty{ text-align:center; padding: 60px 20px; color: var(--ink-soft); }
.cart-empty svg{ width:56px; height:56px; stroke:var(--sage-deep); margin:0 auto 16px; }
.cart-foot{ padding:22px 26px 28px; border-top:1px solid var(--line); background: var(--paper); }
.cart-total-row{ display:flex; justify-content:space-between; align-items:center; margin-bottom:16px; font-family:var(--font-display); font-size:17px; color:var(--forest); font-weight:700; }

/* ---------- Forms ---------- */
.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field{ display:flex; flex-direction:column; gap:7px; margin-bottom:16px; }
.field label{ font-size:12.5px; font-weight:600; color:var(--forest); letter-spacing:0.3px; }
.field input, .field textarea, .field select{
  border:1px solid var(--line); border-radius:10px; padding:13px 15px; font-size:14px; background:#fff; color:var(--ink);
  transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field textarea:focus, .field select:focus{
  outline:none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(198,161,91,0.18);
}
.field.full{ grid-column: 1/-1; }
@media (max-width:640px){ .form-grid{ grid-template-columns:1fr; } }

/* ---------- Misc pages ---------- */
.content-page{ padding: 70px 0 100px; }
.content-page .prose{ max-width:820px; margin:0 auto; }
.prose h2{ font-size:24px; margin-top:38px; margin-bottom:14px; }
.prose h2:first-child{ margin-top:0; }
.prose p, .prose li{ color: var(--ink-soft); font-size:15px; line-height:1.85; margin-bottom:14px; }
.prose ul{ padding-left:20px; list-style:disc; }
.prose ul li{ margin-bottom:8px; }
.prose strong{ color: var(--forest); }

.contact-layout{ display:grid; grid-template-columns: 1fr 1fr; gap:50px; align-items:flex-start; }
.contact-info-card{ background: var(--forest); color:#fff; border-radius: var(--radius-lg); padding:44px; }
.contact-info-card h3{ color:#fff; font-size:22px; margin-bottom:20px; }
.contact-row{ display:flex; gap:16px; align-items:flex-start; margin-bottom:22px; }
.contact-row .ic{ width:44px; height:44px; border-radius:50%; background: rgba(255,255,255,0.12); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-row .ic svg{ width:19px; height:19px; stroke: var(--gold); }
.contact-row .t{ font-size:11.5px; letter-spacing:1px; text-transform:uppercase; color: rgba(255,255,255,0.55); margin-bottom:4px; }
.contact-row .v{ font-size:14.5px; color:#fff; }
@media (max-width:860px){ .contact-layout{ grid-template-columns:1fr; } }

/* ---------- FAQ ---------- */
.faq-list{ max-width:780px; margin:0 auto; display:flex; flex-direction:column; gap:14px; }
.faq-item{ background:var(--paper); border:1px solid var(--line); border-radius: var(--radius-md); overflow:hidden; }
.faq-q{ width:100%; display:flex; align-items:center; justify-content:space-between; padding:20px 24px; background:none; border:none; text-align:left; }
.faq-q span{ font-family:var(--font-display); font-size:15.5px; color:var(--forest); font-weight:600; }
.faq-q svg{ width:18px; height:18px; stroke:var(--gold-deep); transition: transform .35s var(--ease); flex-shrink:0; }
.faq-item.open .faq-q svg{ transform: rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .4s var(--ease); }
.faq-item.open .faq-a{ max-height:300px; }
.faq-a p{ padding: 0 24px 22px; color: var(--ink-soft); font-size:14px; line-height:1.75; }

/* ---------- About page ---------- */
.about-hero-grid{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.about-hero-grid img{ border-radius: var(--radius-lg); }
.values-grid{ display:grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap:26px; }
.value-card{ background:var(--paper); border:1px solid var(--line); border-radius: var(--radius-md); padding:30px; }
.value-card .num{ font-family:var(--font-display); font-size:34px; color: var(--gold-soft); font-weight:700; margin-bottom:10px; }
@media (max-width:860px){ .about-hero-grid{ grid-template-columns:1fr; } }

/* ---------- Toast ---------- */
.toast{
  position:fixed; bottom:28px; left:50%; transform:translate(-50%,20px); background: var(--forest); color:#fff;
  padding:14px 26px; border-radius:999px; font-size:13.5px; font-weight:500; display:flex; align-items:center; gap:10px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.25); z-index:300; opacity:0; pointer-events:none; transition: all .4s var(--ease);
}
.toast.show{ opacity:1; transform:translate(-50%,0); }
.toast svg{ width:16px; height:16px; stroke: var(--gold); }

/* ---------- WhatsApp float ---------- */
.wa-float{
  position:fixed; bottom:26px; right:26px; width:58px; height:58px; border-radius:50%; background:#25D366;
  display:flex; align-items:center; justify-content:center; box-shadow: 0 14px 30px rgba(37,211,102,0.45);
  z-index:150; animation: pulse-wa 2.6s infinite;
}
.wa-float svg{ width:28px; height:28px; fill:#fff; }
@keyframes pulse-wa{ 0%,100%{ box-shadow:0 14px 30px rgba(37,211,102,0.45);} 50%{ box-shadow:0 14px 30px rgba(37,211,102,0.75);} }

/* ---------- Animations ---------- */
.reveal{ opacity:0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in{ opacity:1; transform:none; }

/* ---------- Utilities ---------- */
.center{ text-align:center; }
.mt-0{ margin-top:0; }
.empty-state{ text-align:center; padding: 80px 20px; }
.empty-state svg{ width:64px; height:64px; stroke: var(--sage-deep); margin:0 auto 20px; }
.empty-state p{ color: var(--ink-soft); margin-bottom:22px; }

@media (max-width: 640px){
  .container{ padding:0 20px; }
  .section{ padding: 56px 0; }
  .nav-wrap{ padding: 12px 20px; }
  .brand img{ height:42px; }
  .insta-grid{ grid-template-columns: repeat(2,1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
