/* =========================================================
   ADARSH NATURALS — Brand Design System
   ========================================================= */

:root {
  --forest:        #15402c;
  --forest-deep:   #0e2e20;
  --green:         #2c7a4b;
  --green-light:   #4a9c6a;
  --gold:          #d6a428;
  --gold-light:    #f0c75e;
  --maroon:        #6f2a2a;
  --maroon-deep:   #511f1f;
  --orange:        #df7a2e;
  --cream:         #fbf2e2;
  --cream-deep:    #f3e3c4;
  --wood:          #8a5a32;
  --wood-deep:     #6b4423;
  --ink:           #2a2117;
  --ink-soft:      #564a3a;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-accent:  'Caveat', cursive;
  --font-body:    'Poppins', sans-serif;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 10px 30px rgba(42, 33, 23, 0.10);
  --shadow-card: 0 14px 34px rgba(21, 64, 44, 0.14);
  --transition: all .35s cubic-bezier(.22,.61,.36,1);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  color: var(--forest);
}

.font-accent { font-family: var(--font-accent); }

a { text-decoration: none; }

.text-gold { color: var(--gold) !important; }
.text-orange { color: var(--orange) !important; }
.text-maroon { color: var(--maroon) !important; }
.text-forest { color: var(--forest) !important; }
.text-soft { color: var(--ink-soft) !important; }
.bg-cream { background-color: var(--cream); }
.bg-cream-deep { background-color: var(--cream-deep); }
.bg-forest { background-color: var(--forest); }

.section-pad { padding: 90px 0; }
@media (max-width: 767px) { .section-pad { padding: 56px 0; } }

/* leafy texture background used on hero / CTA sections */
.leaf-texture {
  position: relative;
  background:
    radial-gradient(circle at 8% 12%, rgba(74,156,106,.16), transparent 40%),
    radial-gradient(circle at 95% 85%, rgba(214,164,40,.16), transparent 45%),
    var(--cream);
}

.wood-texture {
  background-color: var(--wood);
  background-image:
    repeating-linear-gradient(100deg, rgba(0,0,0,0.06) 0px, rgba(0,0,0,0.06) 2px, transparent 2px, transparent 14px),
    linear-gradient(135deg, var(--wood) 0%, var(--wood-deep) 100%);
}

/* ---------- Eyebrow label ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(44,122,75,0.08);
  border: 1px solid rgba(44,122,75,0.25);
  padding: 6px 16px;
  border-radius: 30px;
}
.eyebrow i { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn-brand {
  background: linear-gradient(135deg, var(--green) 0%, var(--forest) 100%);
  color: #fff !important;
  border: none;
  padding: 13px 30px;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: .02em;
  box-shadow: 0 10px 22px rgba(21,64,44,.28);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-brand:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(21,64,44,.36);
  color: #fff !important;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--forest-deep) !important;
  border: none;
  padding: 13px 30px;
  font-weight: 700;
  border-radius: 50px;
  letter-spacing: .02em;
  box-shadow: 0 10px 22px rgba(214,164,40,.32);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(214,164,40,.42);
  color: var(--forest-deep) !important;
}

.btn-outline-brand {
  background: transparent;
  color: var(--forest) !important;
  border: 2px solid var(--forest);
  padding: 11px 28px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-outline-brand:hover {
  background: var(--forest);
  color: #fff !important;
  transform: translateY(-3px);
}

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--forest-deep);
  color: #e8e2d2;
  font-size: .82rem;
  padding: 7px 0;
}
.topbar a { color: #e8e2d2; }
.topbar .divider { opacity: .3; margin: 0 12px; }
.topbar .social-mini a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #e8e2d2;
  margin-left: 6px;
  transition: var(--transition);
}
.topbar .social-mini a:hover { background: var(--gold); color: var(--forest-deep); }

/* ---------- Navbar ---------- */
.navbar-brand-custom {
  padding: 14px 0;
  background: rgba(251,242,226,0.97);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 18px rgba(42,33,23,.07);
}
.brand-logo { display: flex; align-items: center; gap: 12px; }
.brand-logo .logo-badge {
  width: 54px; height: 54px;
  border-radius: 50% 50% 50% 8%;
  background: linear-gradient(145deg, var(--green) 0%, var(--forest) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 1.4rem;
  box-shadow: 0 6px 14px rgba(21,64,44,.3);
  flex-shrink: 0;
}
.brand-logo .brand-text { line-height: 1.05; }
.brand-logo .brand-text .brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--forest);
  margin: 0;
}
.brand-logo .brand-text .brand-tag {
  font-size: .62rem;
  letter-spacing: .22em;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  font-weight: 600;
  color: var(--ink) !important;
  margin: 0 6px;
  padding: 8px 4px !important;
  position: relative;
  transition: var(--transition);
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 4px; right: 4px; bottom: 2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.navbar-nav .nav-link:hover { color: var(--forest) !important; }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }
.navbar-nav .nav-link.active { color: var(--forest) !important; }

/* ---------- Circular rotating stamp badge ---------- */
.stamp-badge {
  width: 130px; height: 130px;
  border-radius: 50%;
  border: 2px dashed var(--gold);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  background: var(--cream);
  flex-shrink: 0;
  animation: spin-slow 18s linear infinite;
}
.stamp-badge .stamp-inner {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--maroon);
  text-align: center;
  line-height: 1.1;
  animation: spin-slow-rev 18s linear infinite;
}
@keyframes spin-slow { from { transform: rotate(0deg);} to { transform: rotate(360deg);} }
@keyframes spin-slow-rev { from { transform: rotate(0deg);} to { transform: rotate(-360deg);} }
@media (prefers-reduced-motion: reduce) {
  .stamp-badge, .stamp-badge .stamp-inner { animation: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 70px 0 50px;
  overflow: hidden;
}
.hero .leaf-deco {
  position: absolute;
  font-size: 7rem;
  color: var(--green-light);
  opacity: .18;
  pointer-events: none;
}
.hero .leaf-deco.top-left { top: -30px; left: -30px; transform: rotate(15deg); }
.hero .leaf-deco.bottom-right { bottom: -40px; right: -20px; transform: rotate(-25deg); }

.hero-pill-strip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--forest);
  color: #fff;
  padding: 8px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .03em;
  box-shadow: var(--shadow-card);
}
.hero-pill-strip .sep { color: var(--gold); }

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 6px;
}
.hero h1 .accent-maroon { color: var(--maroon); }
.hero h1 .accent-green { color: var(--green); }

.hero .lead-sub {
  font-size: 1.06rem;
  color: var(--ink-soft);
  max-width: 480px;
}

.manufactured-line {
  font-size: .82rem;
  letter-spacing: .18em;
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.manufactured-line .bm { color: var(--green); font-weight: 800; }
.manufactured-line .udyog { color: var(--orange); font-weight: 800; }

/* feature checklist (left rail style from poster) */
.check-rail { list-style: none; padding: 0; margin: 0; }
.check-rail li {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 0;
  font-weight: 600;
  color: var(--ink);
  font-size: .95rem;
}
.check-rail li i {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(44,122,75,.12);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
}

/* hero visual cluster */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}
.pouch-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1/1;
}

/* ---------- Pouch illustration (CSS) ---------- */
.pouch {
  width: 100%;
  height: 100%;
  border-radius: 18px 18px 30px 30px;
  position: relative;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.pouch .pouch-top {
  height: 30%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff;
  position: relative;
}
.pouch .pouch-top .ring {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: 2px solid rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.pouch .pouch-mid {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.93);
  padding: 10px 8px;
  text-align: center;
}
.pouch .pouch-mid .p-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 2px;
}
.pouch .pouch-mid .p-tag {
  font-size: .65rem;
  letter-spacing: .12em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.pouch .pouch-mid .p-icon {
  font-size: 1.8rem;
  margin-top: 8px;
}
.pouch .pouch-bottom {
  height: 10%;
  background: rgba(0,0,0,.08);
}
.pouch::before {
  content: "";
  position: absolute;
  top: 28%; left: 0; right: 0; height: 3px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.7) 0 6px, transparent 6px 12px);
  z-index: 2;
}

/* floating mini pouches around the main one */
.float-chip {
  position: absolute;
  width: 92px; height: 110px;
  border-radius: 12px 12px 20px 20px;
  box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; overflow: hidden;
  animation: float-y 5s ease-in-out infinite;
}
.float-chip .fc-top { height: 38%; display:flex; align-items:center; justify-content:center; color:#fff; font-size:1.1rem;}
.float-chip .fc-bottom { flex:1; background:rgba(255,255,255,.92); display:flex; align-items:center; justify-content:center; font-size:.62rem; font-weight:700; text-align:center; color:var(--ink); padding:4px; text-transform:uppercase; letter-spacing:.04em;}
@keyframes float-y { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ---------- Section headers ---------- */
.section-head { margin-bottom: 46px; }
.section-head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 800;
}
.section-head .underline-flag {
  width: 70px; height: 4px;
  background: var(--gold);
  border-radius: 4px;
  margin: 14px 0;
}
.section-head.text-center .underline-flag { margin: 14px auto; }

/* ---------- Feature / why-choose icon cards ---------- */
.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 22px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(42,33,23,.05);
  height: 100%;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-color: rgba(214,164,40,.4);
}
.feature-card .fi-circle {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--green) 0%, var(--forest) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 1.6rem;
  margin: 0 auto 18px;
  transition: var(--transition);
}
.feature-card:hover .fi-circle { transform: rotate(8deg) scale(1.06); }
.feature-card h5 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: .88rem; color: var(--ink-soft); margin: 0; }

/* ---------- Product cards ---------- */
.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: var(--transition);
  border: 1px solid rgba(42,33,23,.05);
}
.product-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-card); }

.product-thumb {
  position: relative;
  padding: 28px 18px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 190px;
}
.product-thumb .pouch-mini {
  width: 108px; height: 138px;
  border-radius: 12px 12px 22px 22px;
  box-shadow: 0 12px 22px rgba(21,64,44,.18);
  display: flex; flex-direction: column; overflow: hidden;
  transition: var(--transition);
}
.product-card:hover .pouch-mini { transform: translateY(-6px) rotate(-2deg); }
.pouch-mini .pm-top { height: 36%; display:flex; align-items:center; justify-content:center; color:#fff; font-size:1.3rem; }
.pouch-mini .pm-bottom { flex:1; background:rgba(255,255,255,.92); display:flex; align-items:center; justify-content:center; text-align:center; padding:6px; }
.pouch-mini .pm-bottom span { font-size:.62rem; font-weight:700; color: var(--ink); text-transform:uppercase; letter-spacing:.03em; line-height:1.2; }

.product-thumb .bowl-icon {
  position: absolute;
  bottom: 10px;
  width: 56px; height: 22px;
  border-radius: 0 0 50% 50% / 0 0 80% 80%;
  opacity: .85;
}

.product-card .pc-body { padding: 6px 22px 26px; text-align: center; }
.product-card .pc-body h5 { font-weight: 700; font-size: 1.12rem; margin-bottom: 6px; }
.product-card .pc-body p { font-size: .87rem; color: var(--ink-soft); min-height: 44px; }
.product-card .pc-weight {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  color: var(--green);
  background: rgba(44,122,75,.1);
  padding: 4px 12px;
  border-radius: 30px;
  margin-bottom: 12px;
}

.badge-natural {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold);
  color: var(--forest-deep);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .05em;
  padding: 4px 10px;
  border-radius: 30px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(214,164,40,.4);
}

/* color variants for pouch tops / mini tops, used inline via data attribute classes */
.c-rice    { background: linear-gradient(160deg,#3f8a5c,#1f5c3a); }
.c-ragi    { background: linear-gradient(160deg,#7a4a2e,#54301c); }
.c-besan   { background: linear-gradient(160deg,#e0a93a,#c8881e); }
.c-pasta   { background: linear-gradient(160deg,#6e8f3f,#445d22); }
.c-chowmin { background: linear-gradient(160deg,#7c2741,#54172c); }
.c-tomato  { background: linear-gradient(160deg,#c1432a,#8e2c1b); }
.c-onion   { background: linear-gradient(160deg,#8a3b6e,#5e2349); }
.c-chilli  { background: linear-gradient(160deg,#3f7a3a,#27521f); }

/* ---------- Promise / icon-list section ---------- */
.promise-box {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 10px;
  border: 1px solid rgba(214,164,40,.25);
}
.promise-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.promise-item:hover { background: rgba(44,122,75,.06); }
.promise-item .pi-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(214,164,40,.15);
  color: var(--gold);
  display:flex; align-items:center; justify-content:center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.promise-item h6 { font-weight: 700; margin-bottom: 2px; }
.promise-item p { font-size: .85rem; color: var(--ink-soft); margin: 0; }

/* ---------- Wooden sign CTA ---------- */
.wood-sign {
  background: var(--wood);
  background-image: linear-gradient(135deg, var(--wood) 0%, var(--wood-deep) 100%);
  border-radius: var(--radius);
  padding: 50px 30px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-card);
  border: 4px solid rgba(0,0,0,.12);
}
.wood-sign::before, .wood-sign::after {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 2px 3px rgba(0,0,0,.4);
  top: 14px;
}
.wood-sign::before { left: 18px; }
.wood-sign::after { right: 18px; }
.wood-sign h3 {
  font-family: var(--font-accent);
  color: #fdf4e0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0;
  line-height: 1.3;
}
.wood-sign .heart { color: var(--gold-light); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--forest) 0%, var(--forest-deep) 100%);
  border-radius: var(--radius);
  padding: 50px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(214,164,40,.12);
  top: -100px; right: -80px;
}

/* ---------- Stats ---------- */
.stat-box { text-align: center; padding: 20px; }
.stat-box .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--forest);
}
.stat-box .lbl {
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-soft);
}

/* ---------- Timeline / accordion tweaks ---------- */
.accordion-button {
  font-weight: 700;
  color: var(--forest);
  background: #fff;
}
.accordion-button:not(.collapsed) {
  color: var(--forest);
  background: rgba(214,164,40,.1);
  box-shadow: none;
}
.accordion-button:focus { box-shadow: none; border-color: rgba(214,164,40,.4); }
.accordion-item { border: 1px solid rgba(42,33,23,.08); border-radius: var(--radius-sm) !important; margin-bottom: 14px; overflow: hidden; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--forest-deep);
  color: #cfd9d0;
}
.site-footer h6 {
  color: #fff;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 18px;
  text-transform: uppercase;
  font-size: .9rem;
}
.site-footer a { color: #cfd9d0; transition: var(--transition); }
.site-footer a:hover { color: var(--gold-light); }
.site-footer .footer-links li { margin-bottom: 10px; }
.site-footer .foot-contact li { display:flex; gap:10px; margin-bottom:14px; font-size:.92rem; align-items:flex-start;}
.site-footer .foot-contact li i { color: var(--gold-light); margin-top: 3px; }
.social-circle {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: var(--transition);
}
.social-circle:hover { background: var(--gold); color: var(--forest-deep); transform: translateY(-4px); }
.footer-bottom-bar {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  font-size: .82rem;
  color: #9fab9f;
}
.footer-newsletter input {
  border-radius: 30px 0 0 30px;
  border: none;
  padding: 12px 18px;
}
.footer-newsletter button {
  border-radius: 0 30px 30px 0;
  background: var(--gold);
  color: var(--forest-deep);
  border: none;
  font-weight: 700;
  padding: 0 22px;
}

/* ---------- Page hero banner (inner pages) ---------- */
.page-banner {
  background: linear-gradient(120deg, var(--forest) 0%, var(--forest-deep) 100%);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.page-banner::after {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(214,164,40,.1);
  bottom: -160px; left: -100px;
}
.page-banner h1 { color: #fff; font-weight: 800; font-size: clamp(2rem, 4vw, 2.7rem); }
.breadcrumb-brand { font-size: .9rem; }
.breadcrumb-brand a { color: #d9cfa9; }
.breadcrumb-brand span { color: #fff; font-weight: 600; }

/* ---------- Contact page ---------- */
.contact-info-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
  height: 100%;
  text-align: center;
  transition: var(--transition);
}
.contact-info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.contact-info-card .ci-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--green) 0%, var(--forest) 100%);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 16px;
}
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 40px;
}
.form-control, .form-select {
  border: 1.5px solid rgba(42,33,23,.12);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: .94rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(44,122,75,.15);
}
.form-label { font-weight: 600; font-size: .88rem; color: var(--ink); margin-bottom: 6px; }
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
  min-height: 360px;
}

/* ---------- About page ---------- */
.about-img-block {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
}
.value-card {
  border-left: 4px solid var(--gold);
  background: #fff;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 22px 24px;
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: var(--transition);
}
.value-card:hover { border-left-color: var(--green); transform: translateX(6px); }

/* mock photo block (since real photography isn't available, use brand-styled gradient blocks with icon motif) */
.mock-photo {
  border-radius: var(--radius);
  min-height: 320px;
  background: linear-gradient(150deg, var(--green-light) 0%, var(--forest) 100%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.25);
  font-size: 5rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.mock-photo.alt { background: linear-gradient(150deg, var(--gold-light) 0%, var(--orange) 100%); color: rgba(255,255,255,.3); }
.mock-photo.alt2 { background: linear-gradient(150deg, #a8694a 0%, var(--maroon-deep) 100%); color: rgba(255,255,255,.25); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Misc ---------- */
.divider-leaf {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  color: var(--gold);
  margin: 6px 0 30px;
}
.divider-leaf::before, .divider-leaf::after {
  content: "";
  height: 1px; width: 60px;
  background: rgba(214,164,40,.5);
}

.back-to-top {
  position: fixed; bottom: 26px; right: 26px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card);
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--green); }

@media (max-width: 991px) {
  .navbar-collapse { background: var(--cream); padding: 18px; border-radius: var(--radius-sm); margin-top: 12px; }
}
