/* ══════════════════════════════════════
   VELUNERA — Modern Natural Design
   ══════════════════════════════════════ */
:root {
  --bg: #f1f0e8;
  --bg-light: #fbfaf5;
  --bg-green: #e8ecdc;
  --ink: #202419;
  --ink-light: #3a3f2b;
  --ink-muted: #777b66;
  --green: #667545;
  --green-light: #8c9b68;
  --green-dark: #303b21;
  --green-deep: #1e2717;
  --olive-pale: #dce4c9;
  --cream: #fffaf0;
  --gold: #b9a46b;
  --green-bg: rgba(102,117,69,.1);
  --green-bg-strong: rgba(102,117,69,.18);
  --terracotta: #a97750;
  --terracotta-light: #c59a76;
  --terracotta-bg: rgba(169,119,80,.08);
  --line: #ddd8c6;
  --line-soft: #ebe7d8;
  --white: #ffffff;
  --white-glass: rgba(255,250,240,.78);
  --shadow: 0 18px 48px rgba(32,36,25,.08);
  --shadow-lg: 0 28px 90px rgba(32,36,25,.14);
  --shadow-sm: 0 8px 24px rgba(32,36,25,.06);
  --radius: 18px;
  --radius-sm: 10px;
  --radius-lg: 32px;
  --font: Inter, system-ui, -apple-system, sans-serif;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --script: Caveat, 'Segoe Print', cursive;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background:
    radial-gradient(circle at top left, rgba(220,228,201,.65), transparent 34rem),
    linear-gradient(180deg, var(--bg-light) 0%, #f4f2e9 100%);
  color: var(--ink);
  line-height: 1.6;
  letter-spacing: -.01em;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -.025em;
  color: var(--ink);
  margin: 0;
  line-height: 1.15;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1200px, 94%); margin: 0 auto; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.text-center { text-align: center; }
.text-sm { font-size: 14px; color: var(--ink-muted); }
.text-xs { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--green); font-weight: 600; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }

/* ── Header ── */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white-glass);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(16px);
}
.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-dark);
}
.nav { display: flex; gap: 24px; align-items: center; }
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-muted);
  padding: 6px 0;
  position: relative;
  transition: color .2s;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width .3s;
}
.nav a:hover { color: var(--green); }
.nav a:hover::after { width: 100%; }
.nav-cta {
  padding: 8px 20px;
  border-radius: 999px;
  background: var(--green);
  color: #fff !important;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .03em;
  transition: all .25s;
}
.nav-cta:hover { background: var(--green-dark) !important; transform: none !important; }
.nav-cta::after { display: none !important; }

/* ── Hero ── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  background: var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--green-bg);
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 18px;
  letter-spacing: .02em;
}
.hero h1 {
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.05;
  margin-bottom: 16px;
  color: var(--ink);
}
.hero h1 em {
  font-style: normal;
  color: var(--green);
}
.hero p {
  font-size: 17px;
  color: var(--ink-muted);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Hero Visual ── */
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}
.hero-block {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  padding: 32px;
  display: grid;
  place-items: center;
  text-align: center;
}
.hero-block::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--green-bg-strong);
}
.hero-block::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--terracotta-bg);
}
.hero-block-inner {
  position: relative;
  z-index: 2;
}
.hero-block-brand {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 4px;
}
.hero-block-sub {
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.hero-ingredient {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--green-bg);
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
}
.hero-ingredient::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 36px;
}
.hero-stat {
  padding: 12px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--line-soft);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-muted);
  text-align: center;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: var(--radius);
  padding: 13px 24px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all .25s;
  letter-spacing: .01em;
}
.btn-primary {
  background: var(--green);
  color: #fff;
}
.btn-primary:hover { background: var(--green-dark); }
.btn-outline {
  background: transparent;
  color: var(--ink-muted);
  border: 1.5px solid var(--line);
}
.btn-outline:hover { border-color: var(--green); color: var(--green); }
.btn-white {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover { box-shadow: var(--shadow); }

/* ── Sections ── */
.section { padding: 80px 0; }
.section-dark { background: var(--green); color: #fff; }
.section-dark .section-head h2 { color: #fff; }
.section-dark .section-head p { color: rgba(255,255,255,.7); }
.section-head {
  margin-bottom: 44px;
}
.section-head h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 600;
  letter-spacing: -.03em;
  margin-bottom: 10px;
}
.section-head p {
  color: var(--ink-muted);
  max-width: 520px;
  line-height: 1.6;
}
.section-head.centered { text-align: center; }
.section-head.centered p { margin: 0 auto; }

/* ── Spotlight ── */
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.spotlight-img {
  aspect-ratio: 1;
  background: var(--bg-green);
  object-fit: cover;
  width: 100%;
}
.spotlight-body {
  padding: 40px 48px 40px 0;
}
.spotlight-body .eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: 8px;
}
.spotlight-body h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  margin-bottom: 10px;
}
.spotlight-body p {
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ── Product Card ── */
.product-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .3s;
}
.product-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--line);
}
.product-card-img {
  aspect-ratio: 1/1;
  background: var(--bg-green);
  object-fit: cover;
  width: 100%;
  transition: transform .4s;
}
.product-card:hover .product-card-img { transform: scale(1.03); }
.product-card-body { padding: 18px 20px 20px; }
.product-card-category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 4px;
}
.product-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.25;
}
.product-card p {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.5;
  margin-bottom: 10px;
}
.product-price {
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
}
.product-price .old {
  font-weight: 400;
  font-size: 14px;
  color: var(--ink-muted);
  text-decoration: line-through;
  margin-right: 6px;
}
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.product-badge.green {
  background: var(--green);
  color: #fff;
}
.product-badge.terracotta {
  background: var(--terracotta);
  color: #fff;
}
.product-badge.white {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}

/* ── Category Card ── */
.cat-card {
  display: block;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: all .3s;
}
.cat-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
}
.cat-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 8px 0 4px;
}
.cat-card p {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* ── Trust Grid ── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  transition: all .3s;
}
.trust-item:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
}
.trust-item .icon {
  font-size: 26px;
  margin-bottom: 10px;
  display: block;
}
.trust-item strong {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 4px;
}
.trust-item span {
  font-size: 13px;
  color: var(--ink-muted);
}

/* ── Page Head ── */
.page-head {
  padding: 64px 0 48px;
  background: var(--bg);
}
.page-head h1 {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  letter-spacing: -.03em;
  margin-bottom: 8px;
}
.page-head .lead {
  color: var(--ink-muted);
  max-width: 560px;
  font-size: 16px;
  line-height: 1.6;
}

/* ── Filters ── */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 16px 0 8px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 32px;
}
.filter-bar a {
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-muted);
  background: transparent;
  transition: all .2s;
}
.filter-bar a.active,
.filter-bar a:hover {
  background: var(--green);
  color: #fff;
}

/* ── Product Detail ── */
.detail-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-green);
  box-shadow: var(--shadow-lg);
}
.gallery-main img { aspect-ratio: 1/1; object-fit: cover; width: 100%; }
.thumb-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 12px; }
.thumb-strip img {
  border-radius: var(--radius-sm);
  aspect-ratio: 1;
  object-fit: cover;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s;
}
.thumb-strip img.active, .thumb-strip img:hover { border-color: var(--green); }
.detail-content .product-price { font-size: 28px; margin: 8px 0 14px; }
.detail-desc { font-size: 16px; color: var(--ink-muted); line-height: 1.7; margin-bottom: 20px; }
.detail-accordion {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}
.accordion-item { border-bottom: 1px solid var(--line-soft); }
.accordion-item:last-child { border-bottom: 0; }
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: none;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  transition: background .2s;
}
.accordion-trigger:hover { background: var(--green-bg); }
.accordion-trigger .arrow { transition: transform .3s; font-size: 11px; color: var(--ink-muted); }
.accordion-item.open .accordion-trigger .arrow { transform: rotate(180deg); }
.accordion-body {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s, padding .3s;
}
.accordion-item.open .accordion-body { max-height: 600px; padding: 0 20px 20px; }
.accordion-body p { font-size: 14px; color: var(--ink-muted); line-height: 1.6; }

/* ── Form ── */
.form-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.form-group { display: grid; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--ink-muted); }
.input, .textarea, .select {
  width: 100%;
  border: 1.5px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: all .2s;
  font-size: 14px;
}
.textarea { min-height: 120px; resize: vertical; }
.input:focus, .textarea:focus, .select:focus { border-color: var(--green); box-shadow: 0 0 0 3px var(--green-bg); }
.notice {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--bg-green);
  border: 1px solid var(--green-light);
  color: var(--green-dark);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
}

/* ── Footer ── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.8);
  padding: 56px 0 40px;
  margin-top: 80px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer .brand {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}
.footer p {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
}
.footer h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 14px;
}
.footer a {
  color: rgba(255,255,255,.6);
  font-size: 14px;
  line-height: 2;
  transition: color .2s;
}
.footer a:hover { color: #fff; }

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s, transform .6s;
}
.fade-up.show { opacity: 1; transform: translateY(0); }
.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .6s, transform .6s;
}
.fade-left.show { opacity: 1; transform: translateX(0); }
.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .6s, transform .6s;
}
.fade-right.show { opacity: 1; transform: translateX(0); }

/* ── Admin ── */
.admin-body { background: var(--bg) !important; }
.admin-wrap { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.admin-sidebar {
  background: var(--ink);
  color: rgba(255,255,255,.8);
  padding: 28px 20px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.admin-sidebar .brand { color: #fff; font-size: 18px; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; margin-bottom: 28px; }
.admin-sidebar nav { display: grid; gap: 2px; }
.admin-sidebar a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.6);
  font-size: 14px;
  font-weight: 500;
  transition: all .2s;
}
.admin-sidebar a:hover, .admin-sidebar a.active { background: rgba(255,255,255,.08); color: #fff; }
.admin-main { padding: 28px 32px; min-width: 0; }
.admin-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; margin-bottom: 24px; flex-wrap: wrap; }
.admin-header h1 { font-size: 32px; font-weight: 600; }
.admin-sub { color: var(--ink-muted); font-size: 14px; margin-top: 4px; }
.admin-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
.admin-stat {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 20px;
}
.admin-stat strong { display: block; font-size: 36px; color: var(--green); line-height: 1; font-weight: 700; }
.admin-stat span { color: var(--ink-muted); font-size: 13px; }
.admin-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}
.admin-card h2 { font-size: 20px; margin-bottom: 12px; }
.admin-quick { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.admin-quick a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-soft);
  background: var(--bg-light);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink-muted);
  transition: all .2s;
}
.admin-quick a:hover { border-color: var(--green); color: var(--green); }
.admin-help {
  background: var(--green-bg);
  border: 1px solid rgba(74,107,71,.15);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--green-dark);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}
.admin-table-wrap { overflow: auto; border-radius: var(--radius); border: 1px solid var(--line-soft); }
.admin-table { width: 100%; border-collapse: collapse; background: var(--white); }
.admin-table th, .admin-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
  vertical-align: middle;
  font-size: 14px;
}
.admin-table th { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-muted); background: var(--bg); font-weight: 600; }
.admin-table tr:last-child td { border-bottom: 0; }
.status-badge { display: inline-flex; padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 600; }
.status-active { background: var(--bg-green); color: var(--green-dark); }
.status-passive { background: #f5eeea; color: var(--terracotta); }
.admin-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.admin-thumb { width: 56px; height: 70px; border-radius: var(--radius-sm); object-fit: cover; background: var(--bg-green); }
.admin-switches { display: flex; gap: 12px; flex-wrap: wrap; }
.admin-switches label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  color: var(--ink-muted);
  transition: all .2s;
}
.admin-switches label:has(input:checked) { border-color: var(--green); background: var(--green-bg); color: var(--green); }
.admin-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.admin-form-grid .wide { grid-column: 1 / -1; }

/* ── Login ── */
.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--bg);
}
.login-card {
  width: min(440px, 92%);
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

/* ── Mobile ── */
@media (max-width: 1024px) {
  .hero-grid, .detail-wrap, .spotlight, .admin-form-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .spotlight-body { padding: 0 28px 28px; }
  .admin-wrap { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; height: auto; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .header-inner { height: 64px; }
  .hero { padding: 48px 0 60px; }
  .hero-block { padding: 24px; }
  .section { padding: 48px 0; }
  .grid-4, .grid-3, .admin-grid, .admin-quick, .footer-grid, .trust-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* Olive Elegance Home Refresh */
.header {
  background: rgba(255,250,240,.82);
  border-bottom: 1px solid rgba(102,117,69,.14);
  box-shadow: 0 8px 30px rgba(32,36,25,.04);
}
.brand {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--green-dark);
}
.nav { gap: 28px; }
.nav a {
  color: rgba(32,36,25,.66);
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.nav a:hover { color: var(--green-dark); }
.nav a::after { background: var(--gold); height: 1px; }
.nav-cta {
  background: var(--green-dark);
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 12px 28px rgba(48,59,33,.16);
}
.nav-cta:hover { background: var(--green) !important; }

.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  padding: 96px 0 112px;
  background:
    radial-gradient(circle at 12% 20%, rgba(220,228,201,.9), transparent 22rem),
    radial-gradient(circle at 84% 12%, rgba(185,164,107,.2), transparent 20rem),
    linear-gradient(135deg, #fbfaf5 0%, #eef0df 54%, #d8dfc2 100%);
}
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.hero::before {
  width: 460px;
  height: 460px;
  right: -150px;
  top: 90px;
  border: 1px solid rgba(102,117,69,.22);
}
.hero::after {
  width: 720px;
  height: 720px;
  left: -330px;
  bottom: -430px;
  background: rgba(102,117,69,.08);
}
.hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  gap: clamp(42px, 7vw, 96px);
}
.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-kicker::before,
.eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  max-width: 680px;
  margin: 18px 0 22px;
  font-family: var(--serif);
  font-size: clamp(54px, 7.2vw, 108px);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: .9;
  color: var(--green-deep);
}
.hero h1 em {
  color: var(--green);
  font-style: italic;
  font-weight: 500;
}
.hero p {
  max-width: 570px;
  color: rgba(32,36,25,.68);
  font-size: 18px;
  line-height: 1.85;
  margin-bottom: 34px;
}
.hero-actions { gap: 14px; }
.hero-stats {
  width: min(520px, 100%);
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 42px;
}
.hero-stat {
  padding: 18px 16px;
  text-align: left;
  background: rgba(255,250,240,.64);
  border: 1px solid rgba(102,117,69,.18);
  border-radius: 18px;
  backdrop-filter: blur(10px);
}
.hero-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  color: var(--green-dark);
  line-height: 1;
}
.hero-stat span {
  display: block;
  margin-top: 8px;
  color: var(--ink-muted);
  font-size: 12px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}
.hero-orbit {
  position: absolute;
  width: min(520px, 90vw);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(102,117,69,.2);
  background: radial-gradient(circle, rgba(255,250,240,.74) 0 38%, rgba(102,117,69,.1) 39% 40%, transparent 41%);
}
.hero-card-main {
  position: relative;
  z-index: 2;
  width: min(420px, 88vw);
  min-height: 500px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,250,240,.92), rgba(236,239,222,.9)),
    radial-gradient(circle at top right, rgba(185,164,107,.22), transparent 16rem);
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 42px;
  box-shadow: var(--shadow-lg);
}
.hero-card-main::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(102,117,69,.16);
  border-radius: 32px;
}
.hero-card-label {
  position: relative;
  z-index: 2;
  width: max-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(48,59,33,.08);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.soap-stack {
  position: relative;
  z-index: 2;
  height: 280px;
  display: grid;
  place-items: center;
}
.soap-stack span {
  position: absolute;
  width: 230px;
  height: 96px;
  border-radius: 58px 42px 54px 38px;
  background: linear-gradient(135deg, #98a874, #657643 56%, #4d5c34);
  box-shadow: inset 18px 18px 36px rgba(255,255,255,.16), 0 26px 48px rgba(48,59,33,.2);
  transform: rotate(-12deg) translateY(-52px);
}
.soap-stack span:nth-child(2) {
  width: 250px;
  background: linear-gradient(135deg, #f1e8d4, #d8c8a4 58%, #bba574);
  transform: rotate(7deg) translateY(28px);
}
.soap-stack span:nth-child(3) {
  width: 190px;
  background: linear-gradient(135deg, #d9e2c2, #879760 60%, #5d6c3f);
  transform: rotate(-4deg) translateY(100px) translateX(22px);
}
.hero-card-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 6px;
}
.hero-card-copy strong {
  font-family: var(--serif);
  font-size: 34px;
  color: var(--green-deep);
  line-height: 1;
}
.hero-card-copy span {
  color: var(--ink-muted);
  font-size: 13px;
}
.hero-note {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 52px;
  width: min(280px, 72vw);
  padding: 20px;
  background: rgba(255,250,240,.86);
  border: 1px solid rgba(102,117,69,.18);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.hero-note > span {
  display: block;
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-ingredients { justify-content: flex-start; }
.hero-ingredient {
  background: rgba(102,117,69,.1);
  color: var(--green-dark);
  border: 1px solid rgba(102,117,69,.12);
}
.hero-ingredient::before { background: var(--gold); }

.btn {
  border-radius: 999px;
  padding: 14px 26px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.btn-primary {
  background: var(--green-dark);
  color: var(--cream);
  box-shadow: 0 16px 30px rgba(48,59,33,.18);
}
.btn-primary:hover { background: var(--green); transform: translateY(-1px); }
.btn-outline {
  background: rgba(255,250,240,.45);
  color: var(--green-dark);
  border: 1px solid rgba(102,117,69,.28);
}
.btn-outline:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--cream);
}

.intro-band {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(185,164,107,.18), transparent 18rem),
    radial-gradient(circle at 88% 74%, rgba(102,117,69,.14), transparent 20rem),
    linear-gradient(135deg, #f8f2e5 0%, #ecefdc 52%, #dfe8cc 100%);
  color: var(--green-deep);
}
.intro-band::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(102,117,69,.12);
  border-radius: 34px;
  pointer-events: none;
}
.intro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
}
.intro-copy h2 {
  margin-top: 14px;
  max-width: 720px;
  color: var(--green-deep);
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: .98;
}
.intro-script {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--script);
  color: var(--green);
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1;
  transform: rotate(-2deg);
}
.intro-band .eyebrow { color: var(--green); }
.intro-band p {
  color: rgba(32,36,25,.68);
  font-size: 17px;
  line-height: 1.85;
}

.section { padding: 96px 0; }
.product-showcase { background: #fbfaf5; }
.category-section { background: linear-gradient(180deg, #fbfaf5 0%, #eef0df 100%); }
.section-head { margin-bottom: 50px; }
.section-head h2 {
  margin-top: 12px;
  font-family: var(--serif);
  color: var(--green-deep);
  font-size: clamp(40px, 5vw, 68px);
  line-height: .98;
}
.section-head p {
  margin-top: 14px;
  color: rgba(32,36,25,.62);
  font-size: 16px;
}
.section-head.centered .eyebrow::before { width: 26px; }

.product-card {
  background: rgba(255,250,240,.82);
  border-color: rgba(102,117,69,.14);
  border-radius: 28px;
  box-shadow: 0 12px 30px rgba(32,36,25,.04);
}
.product-card:hover {
  box-shadow: 0 24px 54px rgba(32,36,25,.1);
  border-color: rgba(102,117,69,.32);
  transform: translateY(-4px);
}
.product-card-img {
  background: linear-gradient(135deg, #e9eddc, #d3dcb9);
  border-bottom: 1px solid rgba(102,117,69,.12);
}
.product-card-body { padding: 22px 22px 24px; }
.product-card-category { color: var(--green); }
.product-card h3 {
  font-family: var(--serif);
  color: var(--green-deep);
  font-size: 24px;
}
.product-price { color: var(--green-dark); }
.product-badge.green {
  background: rgba(48,59,33,.82);
  color: var(--cream);
}

.ritual-section {
  background:
    radial-gradient(circle at 88% 14%, rgba(185,164,107,.2), transparent 20rem),
    var(--green-deep);
}
.ritual-card {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 0;
  overflow: hidden;
  min-height: 560px;
  background: var(--cream);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 40px;
  box-shadow: var(--shadow-lg);
}
.ritual-art {
  min-height: 520px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(102,117,69,.78), rgba(30,39,23,.96)),
    radial-gradient(circle at 28% 24%, rgba(255,250,240,.24), transparent 16rem);
}
.ritual-art-inner {
  width: min(330px, 76%);
  aspect-ratio: 3/4;
  display: grid;
  align-content: end;
  padding: 34px;
  border: 1px solid rgba(255,250,240,.3);
  border-radius: 48% 48% 34px 34px;
  background: rgba(255,250,240,.08);
  color: var(--cream);
}
.ritual-art-inner span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,250,240,.72);
}
.ritual-art-inner strong {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 76px);
  line-height: .84;
  font-weight: 600;
}
.ritual-body {
  align-self: center;
  padding: clamp(34px, 6vw, 74px);
}
.ritual-body h2 {
  margin: 14px 0 18px;
  color: var(--green-deep);
  font-size: clamp(38px, 4.8vw, 68px);
  line-height: .95;
}
.ritual-body p {
  max-width: 570px;
  color: rgba(32,36,25,.66);
  font-size: 16px;
  line-height: 1.85;
}
.ritual-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 30px;
}
.ritual-list span {
  padding: 9px 13px;
  border: 1px solid rgba(102,117,69,.18);
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(102,117,69,.08);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cat-card {
  min-height: 230px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(255,250,240,.92), rgba(240,242,226,.92)),
    radial-gradient(circle at top right, rgba(102,117,69,.16), transparent 12rem);
  border-color: rgba(102,117,69,.16);
  border-radius: 30px;
}
.cat-card:hover {
  border-color: rgba(102,117,69,.42);
  box-shadow: 0 24px 54px rgba(32,36,25,.1);
  transform: translateY(-4px);
}
.cat-card h3 {
  font-family: var(--serif);
  color: var(--green-deep);
  font-size: 30px;
  line-height: 1;
}
.cat-card p { margin-top: 10px; }
.text-xs { color: var(--green); }

.trust-section {
  padding: 70px 0;
  background: #f5f3e9;
}
.trust-grid { gap: 18px; }
.trust-item {
  padding: 30px 24px;
  text-align: left;
  background: rgba(255,250,240,.78);
  border-color: rgba(102,117,69,.15);
  border-radius: 26px;
}
.trust-item:hover {
  border-color: rgba(102,117,69,.34);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.trust-item .icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 32px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--cream);
  font-size: 12px;
  font-weight: 700;
}
.trust-item strong {
  font-family: var(--serif);
  color: var(--green-deep);
  font-size: 26px;
}
.trust-item span:last-child {
  display: block;
  margin-top: 10px;
  line-height: 1.65;
}

.footer {
  margin-top: 0;
  background: var(--green-deep);
}
.footer .brand { font-family: var(--serif); }

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 12px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 42px rgba(15, 35, 18, .26);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .02em;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.whatsapp-float:hover {
  color: #fff;
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(15, 35, 18, .32);
}
.whatsapp-float-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
}
.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    padding: 10px;
  }
  .whatsapp-float-text { display: none; }
  .whatsapp-float-icon {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding: 76px 0 88px;
  }
  .hero-grid,
  .intro-grid,
  .ritual-card {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 520px;
    max-width: 620px;
    margin: 0 auto;
    width: 100%;
  }
  .ritual-body { order: -1; }
}

@media (max-width: 768px) {
  .container { width: min(100% - 32px, 1200px); }
  .brand { font-size: 22px; }
  .hero { padding: 54px 0 64px; }
  .hero h1 { font-size: clamp(48px, 14vw, 68px); }
  .hero p { font-size: 16px; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-visual { min-height: 470px; }
  .hero-card-main {
    width: 100%;
    min-height: 430px;
    border-radius: 34px;
  }
  .soap-stack { height: 230px; }
  .soap-stack span { width: 190px; height: 82px; }
  .soap-stack span:nth-child(2) { width: 210px; }
  .soap-stack span:nth-child(3) { width: 165px; }
  .hero-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: -24px;
  }
  .intro-band { padding: 52px 0; }
  .section { padding: 62px 0; }
  .section-head h2,
  .intro-copy h2,
  .ritual-body h2 { font-size: clamp(36px, 12vw, 52px); }
  .ritual-card { border-radius: 30px; }
  .ritual-art { min-height: 380px; }
  .ritual-body { padding: 30px 24px; }
  .cat-card,
  .trust-item,
  .product-card { border-radius: 24px; }
}

/* Hero photo slider + mobile topbar fix */
.hero.hero-slider {
  isolation: isolate;
  min-height: calc(100svh - 72px);
  padding: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--green-deep);
}
.hero.hero-slider::before,
.hero.hero-slider::after { display: none; }
.hero-slides,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-slides {
  z-index: -3;
  background:
    linear-gradient(135deg, rgba(30,39,23,.95), rgba(102,117,69,.82)),
    radial-gradient(circle at 50% 35%, rgba(255,250,240,.18), transparent 28rem);
}
.hero-slide {
  opacity: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.08);
  animation: heroPhotoSlider 18s infinite;
}
.hero-slide-1 {
  background-image:
    linear-gradient(rgba(30,39,23,.1), rgba(30,39,23,.1)),
    url('../../images/hero-1.png');
}
.hero-slide-2 {
  background-image:
    linear-gradient(rgba(30,39,23,.1), rgba(30,39,23,.1)),
    url('../../images/hero-2.png');
  animation-delay: 6s;
}
.hero-slide-3 {
  background-image:
    linear-gradient(rgba(30,39,23,.1), rgba(30,39,23,.1)),
    url('../../images/hero-3.png');
  animation-delay: 12s;
}
.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(12,18,10,.36), rgba(12,18,10,.7)),
    radial-gradient(circle at center, rgba(255,250,240,.08), transparent 34rem);
}
.hero-center {
  min-height: calc(100svh - 72px);
  display: grid;
  place-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero.hero-slider .hero-content {
  width: min(920px, 100%);
  margin: 0 auto;
  text-align: center;
  display: grid;
  justify-items: center;
}
.hero.hero-slider .hero-kicker {
  color: rgba(255,250,240,.86);
  text-shadow: 0 2px 16px rgba(0,0,0,.28);
}
.hero.hero-slider .hero-kicker::before,
.hero.hero-slider .hero-kicker::after {
  content: '';
  width: 38px;
  height: 1px;
  background: rgba(255,250,240,.62);
}
.hero.hero-slider h1 {
  max-width: 980px;
  margin: 20px auto 22px;
  color: var(--cream);
  font-size: clamp(58px, 10vw, 138px);
  line-height: .82;
  letter-spacing: -.06em;
  text-shadow: 0 22px 70px rgba(0,0,0,.34);
}
.hero.hero-slider p {
  max-width: 680px;
  margin: 0 auto 34px;
  color: rgba(255,250,240,.84);
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.75;
  text-shadow: 0 10px 30px rgba(0,0,0,.28);
}
.hero.hero-slider .hero-actions {
  justify-content: center;
}
.hero.hero-slider .btn-primary {
  background: var(--cream);
  color: var(--green-deep);
  box-shadow: 0 20px 44px rgba(0,0,0,.22);
}
.hero.hero-slider .btn-primary:hover {
  background: var(--olive-pale);
  color: var(--green-deep);
}
.btn-hero-light {
  background: rgba(255,250,240,.12);
  color: var(--cream);
  border-color: rgba(255,250,240,.45);
  backdrop-filter: blur(12px);
}
.btn-hero-light:hover {
  background: rgba(255,250,240,.92);
  color: var(--green-deep);
  border-color: rgba(255,250,240,.92);
}
.hero-dots {
  display: flex;
  gap: 10px;
  margin-top: 42px;
}
.hero-dots span {
  width: 38px;
  height: 2px;
  background: rgba(255,250,240,.34);
  border-radius: 999px;
  overflow: hidden;
}
.hero-dots span::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: var(--cream);
  transform: scaleX(0);
  transform-origin: left;
  animation: heroDot 18s infinite;
}
.hero-dots span:nth-child(2)::before { animation-delay: 6s; }
.hero-dots span:nth-child(3)::before { animation-delay: 12s; }

@keyframes heroPhotoSlider {
  0% { opacity: 0; transform: scale(1.08) translateX(0); }
  6% { opacity: 1; }
  33% { opacity: 1; transform: scale(1.02) translateX(-1.5%); }
  39% { opacity: 0; }
  100% { opacity: 0; transform: scale(1.08) translateX(0); }
}
@keyframes heroDot {
  0%, 2% { transform: scaleX(0); }
  30%, 33% { transform: scaleX(1); }
  39%, 100% { transform: scaleX(0); }
}

@media (max-width: 768px) {
  .header { overflow: hidden; }
  .header-inner {
    height: auto;
    min-height: 64px;
    padding-top: 12px;
    padding-bottom: 10px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .header .brand {
    align-self: center;
    white-space: nowrap;
    line-height: 1;
  }
  .header .nav {
    display: flex;
    width: 100%;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 2px 6px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .header .nav::-webkit-scrollbar { display: none; }
  .header .nav a {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 11px;
    padding: 4px 0;
  }
  .header .nav-cta {
    padding: 5px 14px;
    font-size: 11px;
  }
  .hero.hero-slider {
    min-height: calc(100svh - 104px);
  }
  .hero-center {
    min-height: calc(100svh - 104px);
    padding-top: 72px;
    padding-bottom: 58px;
  }
  .hero.hero-slider h1 {
    font-size: clamp(48px, 18vw, 76px);
    line-height: .88;
  }
  .hero.hero-slider p {
    font-size: 16px;
    line-height: 1.65;
  }
  .hero.hero-slider .hero-actions {
    width: min(360px, 100%);
  }
  .hero.hero-slider .hero-actions .btn {
    width: 100%;
  }
}

/* Ritual section inspired by refined editorial product cards */
.ritual-section {
  padding: 68px 0;
  background:
    radial-gradient(circle at 9% 18%, rgba(255,250,240,.08), transparent 22rem),
    linear-gradient(135deg, #1f2a18 0%, #354226 100%);
}
.ritual-card {
  width: min(1480px, 100%);
  margin: 0 auto;
  grid-template-columns: 1fr 1.08fr;
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  min-height: 0;
  padding: clamp(24px, 3.8vw, 48px);
  overflow: visible;
  background:
    radial-gradient(circle at 78% 12%, rgba(185,164,107,.14), transparent 18rem),
    linear-gradient(135deg, #fbf5e7 0%, #fffaf0 48%, #f6eedf 100%);
  border: 1px solid rgba(255,250,240,.65);
  border-radius: 34px;
  box-shadow: 0 34px 100px rgba(10,15,8,.28);
}
.ritual-art {
  position: relative;
  min-height: 0;
  display: block;
  padding: clamp(18px, 2.5vw, 28px) clamp(16px, 2vw, 24px) clamp(20px, 2.5vw, 28px);
  background: rgba(244,235,217,.72);
  border-radius: 28px;
}
.ritual-art::before {
  content: '❦';
  position: absolute;
  top: 22px;
  left: 50%;
  z-index: 3;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #fbf5e7;
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
}
.ritual-photo {
  position: relative;
  overflow: hidden;
  min-height: clamp(460px, 42vw, 660px);
  border: 2px solid rgba(185,164,107,.72);
  border-radius: 48% 48% 18px 18px;
  background: radial-gradient(circle at 34% 26%, #fffaf0 0%, #e9dcc4 32%, #b7bc91 68%, #6b754d 100%);
  box-shadow: inset 0 -90px 90px rgba(39,49,28,.22);
}
.ritual-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,250,240,.04), rgba(62,73,42,.2));
  pointer-events: none;
}
.ritual-photo img {
  width: 100%;
  height: 100%;
  min-height: clamp(460px, 42vw, 660px);
  object-fit: cover;
  object-position: center;
}
.ritual-caption {
  position: absolute;
  left: clamp(18px, 2.4vw, 28px);
  right: clamp(18px, 2.4vw, 28px);
  bottom: clamp(20px, 2.5vw, 28px);
  display: grid;
  justify-items: center;
  padding: 22px 18px 24px;
  border: 1px solid rgba(185,164,107,.72);
  border-top: 0;
  border-radius: 0 0 18px 18px;
  background: rgba(89,99,65,.82);
  backdrop-filter: blur(12px);
}
.ritual-caption span {
  color: #d8bd76;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
}
.ritual-caption strong {
  margin-top: 4px;
  font-family: var(--serif);
  color: var(--cream);
  font-size: clamp(42px, 4vw, 68px);
  font-weight: 500;
  line-height: .92;
}
.ritual-body {
  padding: 0;
  align-self: center;
}
.ritual-body .eyebrow {
  color: var(--green);
}
.ritual-body h2 {
  max-width: 780px;
  margin: 20px 0 0;
  color: #27311f;
  font-size: clamp(46px, 5vw, 78px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .98;
}
.ritual-divider {
  display: block;
  width: 72px;
  height: 5px;
  margin: 26px 0 24px;
  border-radius: 999px;
  background: var(--gold);
}
.ritual-body p {
  max-width: 760px;
  color: rgba(32,36,25,.66);
  font-size: 18px;
  line-height: 1.85;
}
.ritual-list {
  gap: 16px;
  margin: 28px 0 34px;
}
.ritual-list span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 8px 18px 8px 10px;
  border: 1px solid rgba(102,117,69,.16);
  border-radius: 999px;
  background: rgba(236,229,207,.76);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.58);
  color: rgba(48,59,33,.78);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .09em;
}
.ritual-list i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(102,117,69,.16);
  color: var(--green);
  font-style: normal;
  font-size: 17px;
  line-height: 1;
}
.ritual-btn {
  min-width: 184px;
  justify-content: space-between;
  padding: 18px 28px;
  border-radius: 7px;
  background: linear-gradient(135deg, #6b7650, #4c5639);
  color: var(--cream);
  box-shadow: 0 18px 38px rgba(48,59,33,.18);
}
.ritual-btn:hover {
  background: linear-gradient(135deg, #56633f, #303b21);
}
.ritual-btn span {
  font-size: 22px;
  line-height: 0;
}

@media (max-width: 1024px) {
  .ritual-card {
    grid-template-columns: 1fr;
    padding: 26px;
  }
  .ritual-body { order: 0; }
  .ritual-body h2 { font-size: clamp(44px, 9vw, 72px); }
}

@media (max-width: 768px) {
  .ritual-section { padding: 54px 0; }
  .ritual-card {
    border-radius: 28px;
    gap: 32px;
    padding: 18px;
  }
  .ritual-art {
    padding: 16px;
    border-radius: 24px;
  }
  .ritual-photo { min-height: 520px; }
  .ritual-caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
  .ritual-body { padding: 0 6px 10px; }
  .ritual-body h2 {
    margin-top: 18px;
    font-size: clamp(40px, 13vw, 58px);
  }
  .ritual-body p {
    font-size: 16px;
    line-height: 1.8;
  }
  .ritual-list { gap: 10px; }
  .ritual-list span { width: 100%; }
  .ritual-btn { width: 100%; }
}
