/* ============================================================
   Dr. Larry Spiritual Services — custom stylesheet
   Palette: warm browns, gold, deep plum, cream
   Mobile-first, accessible, print-friendly enough
   ============================================================ */

:root {
  --c-plum:     #3b1f3a;
  --c-plum-dk:  #2a1629;
  --c-brown:    #4a2c23;
  --c-brown-dk: #3a2018;
  --c-gold:     #c9a227;
  --c-gold-dk:  #a8871a;
  --c-cream:    #faf4e8;
  --c-cream-dk: #f0e6d2;
  --c-ink:      #2b211c;
  --c-muted:    #6f5f52;
  --c-green:    #1f4d3d;
  --c-green-lt: #eaf3ee;
  --c-white:    #ffffff;
  --radius:     10px;
  --shadow:     0 6px 24px rgba(43, 33, 28, .10);
  --shadow-lg:  0 14px 40px rgba(43, 33, 28, .16);
  --font-head:  "Playfair Display", Georgia, serif;
  --font-body:  "Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-green); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { padding-left: 1.25rem; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--c-plum-dk); line-height: 1.2; margin: 0 0 .6rem; }
h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); }
h3 { font-size: 1.15rem; }

.container { width: min(1140px, 92%); margin-inline: auto; }
.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--c-gold); color: #000; padding: .6rem 1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: .7rem 1.4rem;
  border-radius: 8px;
  border: 2px solid transparent;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  text-align: center;
  transition: background .2s ease, transform .1s ease, box-shadow .2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--c-gold); color: #241a05; box-shadow: 0 3px 12px rgba(201,162,39,.35); }
.btn--primary:hover { background: var(--c-gold-dk); }

.btn--outline { background: transparent; color: var(--c-plum); border-color: var(--c-plum); }
.btn--outline:hover { background: var(--c-plum); color: var(--c-cream); }

.btn--dark { background: var(--c-plum); color: var(--c-cream); }
.btn--dark:hover { background: var(--c-plum-dk); }

.btn--whatsapp { background: #128c4b; color: #fff; }
.btn--whatsapp:hover { background: #0e7040; }

.btn--ghost { background: transparent; color: var(--c-cream); border-color: rgba(250,244,232,.6); }
.btn--ghost:hover { background: rgba(250,244,232,.12); }

.btn--block { display: block; width: 100%; }
.btn[disabled] { opacity: .6; cursor: not-allowed; transform: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 244, 232, .95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-cream-dk);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .8rem; }

.brand { display: flex; align-items: center; gap: .55rem; font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: var(--c-plum-dk); }
.brand:hover { text-decoration: none; }
.brand-mark { color: var(--c-gold); font-size: 1.4rem; }

.main-nav ul { list-style: none; display: flex; gap: .25rem; margin: 0; padding: 0; flex-wrap: wrap; }
.main-nav a { display: block; padding: .45rem .7rem; border-radius: 6px; color: var(--c-brown); font-weight: 500; font-size: .92rem; }
.main-nav a:hover { text-decoration: none; background: var(--c-cream-dk); }
.main-nav a.active { color: var(--c-gold-dk); font-weight: 700; }

.header-actions { display: flex; align-items: center; gap: .6rem; }
.cart-link { position: relative; display: inline-flex; align-items: center; gap: .3rem; color: var(--c-plum-dk); font-weight: 600; }
.cart-link:hover { text-decoration: none; }
.cart-icon { font-size: 1.2rem; }
.cart-count {
  min-width: 1.25rem; height: 1.25rem; padding: 0 .3rem;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-gold); color: #241a05; font-size: .75rem; font-weight: 700;
  border-radius: 999px;
}

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--c-plum-dk); margin: 5px 0; border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }

@media (max-width: 940px) {
  .nav-toggle { display: inline-block; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--c-cream); border-bottom: 1px solid var(--c-cream-dk);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; padding: .6rem 4%; }
  .main-nav a { padding: .8rem .6rem; border-bottom: 1px solid var(--c-cream-dk); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--c-plum-dk) 0%, var(--c-brown) 60%, #5d3a2a 100%);
  color: var(--c-cream);
  padding: 4rem 0 5rem;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(201,162,39,.25), transparent 45%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; align-items: center; }
.hero-eyebrow { text-transform: uppercase; letter-spacing: .18em; font-size: .8rem; color: var(--c-gold); font-weight: 600; }
.hero h1 { color: var(--c-cream); margin-bottom: 1rem; }
.hero p.lede { font-size: 1.1rem; color: rgba(250,244,232,.9); max-width: 46ch; }
.hero-ctas { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.5rem; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem; }
.hero-stat strong { display: block; font-family: var(--font-head); font-size: 1.7rem; color: var(--c-gold); }
.hero-stat span { font-size: .85rem; color: rgba(250,244,232,.85); }
.hero-art {
  position: relative;
}
.hero-art img { display: block; object-fit: cover; }
.hero-art-main {
  width: 78%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
  border: 1px solid rgba(201,162,39,.5);
  aspect-ratio: 4/5;
  background: var(--c-plum-dk);
}
.hero-art-second {
  width: 56%;
  aspect-ratio: 3/2;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--c-plum-dk);
  margin-left: auto;
  margin-top: -3.5rem;
  position: relative;
  z-index: 2;
  background: var(--c-brown);
}

@media (max-width: 760px) {
  .hero { padding: 3rem 0 3.5rem; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art {
    display: block;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Sections ---------- */
.section { padding: 3.5rem 0; }
.section--alt { background: var(--c-cream-dk); }
.section--dark { background: var(--c-plum-dk); color: var(--c-cream); }
.section--dark h2 { color: var(--c-cream); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section-head .eyebrow { text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; color: var(--c-gold-dk); font-weight: 700; }
.section--dark .section-head .eyebrow { color: var(--c-gold); }
.section-head p { color: var(--c-muted); }
.section--dark .section-head p { color: rgba(250,244,232,.85); }

/* ---------- Cards: services ---------- */
.grid-services { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.4rem; }
.card-service {
  position: relative; background: var(--c-white); border-radius: 16px; padding: 0 0 1.5rem;
  box-shadow: var(--shadow); transition: transform .45s cubic-bezier(.22,.61,.36,1), box-shadow .45s ease;
  display: flex; flex-direction: column; gap: .4rem;
  border: 1px solid rgba(43,33,28,.07); overflow: hidden;
}
.card-service::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--c-gold-dk), var(--c-gold));
  transform: scaleX(0); transform-origin: left; transition: transform .5s cubic-bezier(.22,.61,.36,1);
}
.card-service:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-service:hover::after { transform: scaleX(1); }
.card-service .icon {
  width: 100%; aspect-ratio: 16/9; margin: 0; border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(140deg, var(--c-plum), var(--c-brown));
  color: var(--c-gold); font-size: 2.2rem; text-shadow: 0 3px 14px rgba(0,0,0,.3);
}
.card-service-img { width: 100%; aspect-ratio: 16/9; overflow: hidden; margin-bottom: .6rem; }
.card-service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.22,.61,.36,1); }
.card-service:hover .card-service-img img { transform: scale(1.08); }
.card-service h3 {
  margin: .9rem 1.6rem 0; font-size: 1.12rem; position: relative; padding-bottom: .55rem;
}
.card-service h3::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 40px; height: 3px;
  border-radius: 2px; background: linear-gradient(90deg, var(--c-gold-dk), var(--c-gold));
}
.card-service p { color: var(--c-muted); flex: 1; margin: .7rem 1.6rem 1rem; line-height: 1.6; }
.card-service .meta {
  display: flex; justify-content: space-between; align-items: center;
  margin: 0 1.6rem; font-size: .88rem; gap: .6rem;
}
.card-service .price {
  font-weight: 700; color: var(--c-plum); background: var(--c-cream-dk);
  padding: .35rem .8rem; border-radius: 999px; font-size: .9rem;
}
.icon-placeholder::before { content: "✦"; }

/* ---------- Cards: products ---------- */
.grid-products { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.4rem; }
.card-product {
  background: var(--c-white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column; border: 1px solid var(--c-cream-dk);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card-product:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-product .thumb { aspect-ratio: 1/1; background: var(--c-cream-dk); overflow: hidden; }
.card-product .thumb img { width: 100%; height: 100%; object-fit: cover; }
.card-product .thumb .noimg { display: flex; align-items: center; justify-content: center; height: 100%; color: var(--c-muted); font-size: 2rem; }
.card-product .body { padding: 1.1rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.card-product .cat { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--c-gold-dk); font-weight: 600; }
.card-product h3 { font-size: 1.02rem; margin: 0; }
.card-product .price { font-weight: 700; color: var(--c-plum); }
.price-old { text-decoration: line-through; color: var(--c-muted); font-weight: 400; margin-right: .45rem; font-size: .92em; }
.card-product .foot { margin-top: auto; padding-top: .6rem; display: flex; gap: .5rem; }

.badge-featured {
  position: absolute; top: .7rem; left: .7rem;
  background: var(--c-gold); color: #241a05; font-size: .72rem; font-weight: 700;
  padding: .25rem .6rem; border-radius: 999px; text-transform: uppercase; letter-spacing: .05em;
}

/* ---------- Cards: payment methods ---------- */
.grid-payments { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.2rem; }
.card-payment {
  display: flex; flex-direction: column; gap: .35rem;
  background: var(--c-white); border: 1px solid var(--c-cream-dk); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 1.3rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card-payment:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--c-gold); }
.card-payment .pay-logo { height: 52px; display: flex; align-items: center; margin-bottom: .3rem; }
.card-payment .pay-logo svg { max-width: 100%; height: 100%; }
.card-payment h3 { margin: 0; font-size: 1.05rem; }
.card-payment p { color: var(--c-muted); font-size: .9rem; margin: 0; flex: 1; }
.card-payment-go { font-weight: 700; color: var(--c-plum); font-size: .9rem; }

/* ---------- Testimonials ---------- */
.testimonial-slider { position: relative; max-width: 760px; margin: 0 auto; }
.testimonial-track { overflow: hidden; }
.testimonial-slide { display: none; }
.testimonial-slide.active { display: block; animation: fadeIn .5s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px);} to { opacity: 1; transform: none;} }

.card-testimonial {
  background: var(--c-white); border-radius: var(--radius); padding: 2rem; text-align: center;
  box-shadow: var(--shadow); border: 1px solid var(--c-cream-dk);
}
.card-testimonial .quote { font-family: var(--font-head); font-size: 1.15rem; font-style: italic; color: var(--c-plum-dk); margin-bottom: 1.2rem; }
.card-testimonial .who { font-weight: 700; }
.card-testimonial .avatar { width: 4rem; height: 4rem; border-radius: 50%; margin: 0 auto .8rem; background: var(--c-green-lt); color: var(--c-green); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; overflow: hidden; }
.card-testimonial .avatar img { width: 100%; height: 100%; object-fit: cover; }

.stars { color: var(--c-gold); letter-spacing: .1em; font-size: 1.1rem; }
.stars .off { color: var(--c-cream-dk); }

.slider-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.2rem; }
.slider-dots button { width: 10px; height: 10px; border-radius: 50%; border: 0; background: var(--c-cream-dk); cursor: pointer; padding: 0; }
.slider-dots button.active { background: var(--c-gold); }

/* ---------- Trust bar ---------- */
.trust-bar { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; text-align: center; }
.trust-bar strong { display: block; font-family: var(--font-head); font-size: 2rem; color: var(--c-gold); }
.trust-bar span { color: var(--c-muted); font-size: .9rem; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: .35rem; font-size: .92rem; }
.form-group .hint { font-size: .8rem; color: var(--c-muted); margin-top: .25rem; }

input[type="text"], input[type="email"], input[type="tel"], input[type="number"],
input[type="date"], input[type="password"], input[type="search"], select, textarea {
  width: 100%; padding: .7rem .85rem; border: 1.5px solid #d8ccb4; border-radius: 8px;
  background: var(--c-white); font: inherit; color: var(--c-ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--c-gold); box-shadow: 0 0 0 3px rgba(201,162,39,.18); }
textarea { min-height: 120px; resize: vertical; }

.radio-pill { display: inline-block; }
.radio-pill input { position: absolute; opacity: 0; }
.radio-pill span {
  display: inline-block; padding: .5rem .95rem; margin: 0 .3rem .3rem 0;
  border: 1.5px solid #d8ccb4; border-radius: 999px; cursor: pointer; font-size: .9rem;
}
.radio-pill input:checked + span { background: var(--c-plum); border-color: var(--c-plum); color: var(--c-cream); }
.radio-pill input:focus-visible + span { outline: 3px solid var(--c-gold); outline-offset: 2px; }
.pay-panel {
  margin-top: .9rem; padding: 1rem 1.1rem;
  border: 1px solid var(--c-cream-dk); border-left: 3px solid var(--c-gold);
  border-radius: 10px; background: #fffdf7;
}
.pay-panel code { word-break: break-all; }
.pay-panel[hidden] { display: none; }
.pay-address {
  margin: 0 0 .6rem; padding: .7rem .9rem; word-break: break-all;
  background: #2c2018; color: #e9d9a8; font-family: ui-monospace, Consolas, monospace; font-size: .92rem;
  border-radius: 8px; border: 1px solid var(--c-gold, #c9a227);
}
.panel-sub { padding: 1rem 1.1rem; border: 1px solid var(--c-cream-dk); border-radius: 10px; background: #fffdf7; margin: .5rem 0 1rem; }
.panel-sub h3 { margin: 0 0 .3rem; font-size: .95rem; }

/* ---------- Flash messages ---------- */
.flash { padding: .9rem 1.1rem; border-radius: 8px; margin-bottom: 1.2rem; font-weight: 500; }
.flash--success { background: var(--c-green-lt); color: var(--c-green); border: 1px solid var(--c-green); }
.flash--error { background: #fbecec; color: var(--c-danger); border: 1px solid var(--c-danger); }
.flash--info { background: #f3efe2; color: var(--c-brown); border: 1px solid var(--c-gold); }

/* ---------- Page hero / breadcrumb ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--c-plum-dk), var(--c-brown));
  color: var(--c-cream); padding: 3rem 0; margin-bottom: 2.5rem;
}
.page-hero h1 { color: var(--c-cream); margin-bottom: .3rem; }
.page-hero p { color: rgba(250,244,232,.85); margin: 0; max-width: 60ch; }

/* ---------- Layout helpers ---------- */
.page { padding-bottom: 4rem; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } }

.side-card {
  background: var(--c-white); border: 1px solid var(--c-cream-dk); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow);
}

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; counter-reset: step; }
.step { background: var(--c-white); border: 1px solid var(--c-cream-dk); border-radius: var(--radius); padding: 1.4rem; counter-increment: step; }
.step::before { content: counter(step, decimal-leading-zero); font-family: var(--font-head); color: var(--c-gold-dk); font-size: 1.5rem; font-weight: 700; }
.step h3 { margin: .4rem 0 .2rem; }
.step p { color: var(--c-muted); margin: 0; font-size: .93rem; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Product detail ---------- */
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
@media (max-width: 800px) { .product-layout { grid-template-columns: 1fr; } }
.product-gallery { aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden; background: var(--c-cream-dk); }
.product-gallery img { width: 100%; height: 100%; object-fit: cover; }
.qty-control { display: inline-flex; align-items: center; border: 1.5px solid #d8ccb4; border-radius: 8px; overflow: hidden; }
.qty-control button { border: 0; background: var(--c-cream); width: 2.2rem; height: 2.2rem; font-size: 1.1rem; cursor: pointer; }
.qty-control input { width: 3.4rem; text-align: center; border: 0; border-inline: 1.5px solid #d8ccb4; border-radius: 0; }

/* ---------- Cart ---------- */
.cart-table { width: 100%; border-collapse: collapse; background: var(--c-white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.cart-table th, .cart-table td { padding: .9rem 1rem; text-align: left; border-bottom: 1px solid var(--c-cream-dk); vertical-align: middle; }
.cart-table th { background: var(--c-cream-dk); font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--c-brown); }
.cart-table .thumb { width: 64px; height: 64px; border-radius: 8px; overflow: hidden; background: var(--c-cream-dk); }
.cart-table .thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-totals { margin-top: 1.5rem; margin-left: auto; max-width: 340px; background: var(--c-white); border: 1px solid var(--c-cream-dk); border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow); }
.cart-totals .row { display: flex; justify-content: space-between; padding: .3rem 0; }
.cart-totals .row.total { font-weight: 700; border-top: 1px solid var(--c-cream-dk); margin-top: .5rem; padding-top: .7rem; font-size: 1.1rem; }

/* ---------- Blog ---------- */
.grid-blog { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.4rem; }
.card-post { background: var(--c-white); border: 1px solid var(--c-cream-dk); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform .2s ease; }
.card-post:hover { transform: translateY(-3px); }
.card-post .thumb { aspect-ratio: 16/9; background: var(--c-cream-dk); }
.card-post .thumb img { width: 100%; height: 100%; object-fit: cover; }
.card-post .body { padding: 1.3rem; display: flex; flex-direction: column; flex: 1; }
.card-post .date { font-size: .8rem; color: var(--c-gold-dk); text-transform: uppercase; letter-spacing: .06em; }
.card-post h3 { font-size: 1.08rem; margin: .3rem 0; }
.card-post h3 a { color: var(--c-plum-dk); }
.card-post p { color: var(--c-muted); font-size: .93rem; flex: 1; }
.card-post .more { font-weight: 600; color: var(--c-green); }

.article { max-width: 760px; margin: 0 auto; }
.article .thumb { aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; margin: 1.5rem 0; background: var(--c-cream-dk); }
.article .thumb img { width: 100%; height: 100%; object-fit: cover; }
.article .meta { color: var(--c-muted); font-size: .88rem; margin-bottom: 1rem; }
.article .content h2, .article .content h3 { margin-top: 1.6rem; }
.article .content p { margin-bottom: 1rem; }

/* ---------- Contact / info cards ---------- */
.info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; margin-bottom: 2rem; }
.info-card { background: var(--c-white); border: 1px solid var(--c-cream-dk); border-radius: var(--radius); padding: 1.4rem; text-align: center; box-shadow: var(--shadow); }
.info-card .icon { display: flex; align-items: center; justify-content: center; height: 3rem; }
.info-card .icon svg { width: 32px; height: 32px; }
.info-card h3 { font-size: 1rem; margin: .4rem 0 .2rem; }
.info-card p { color: var(--c-muted); margin: 0; font-size: .9rem; word-break: break-word; }

/* ---------- Footer ---------- */
.site-footer { background: var(--c-plum-dk); color: rgba(250,244,232,.85); padding-top: 3rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.2fr 1.4fr; gap: 2rem; padding-bottom: 2rem; }
.site-footer h3 { color: var(--c-cream); font-size: 1rem; margin-bottom: .8rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .5rem; }
.site-footer a { color: rgba(250,244,232,.9); }
.site-footer a:hover { color: var(--c-gold); }
.footer-faith { font-size: .86rem; opacity: .75; margin-top: 1rem; }
.footer-contact li { font-size: .92rem; }
.newsletter-form { display: flex; gap: .5rem; }
.newsletter-form input { flex: 1; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-bottom { border-top: 1px solid rgba(250,244,232,.15); padding: 1.2rem 0; font-size: .86rem; }
.footer-bottom p { margin: 0; opacity: .75; }

.whatsapp-float {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 60;
  width: 3.4rem; height: 3.4rem; border-radius: 50%;
  background: #128c4b; color: #fff; font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); transition: transform .2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); text-decoration: none; }

/* ---------- Empty states ---------- */
.empty { text-align: center; padding: 3rem 1rem; color: var(--c-muted); }
.empty .big { font-size: 2.4rem; margin-bottom: .4rem; }

/* ---------- Admin ---------- */
.admin-shell { display: flex; min-height: 100vh; }
.admin-sidebar { width: 240px; background: var(--c-plum-dk); color: var(--c-cream); flex-shrink: 0; display: flex; flex-direction: column; }
.admin-sidebar .brand { color: var(--c-cream); padding: 1.2rem 1.2rem; border-bottom: 1px solid rgba(250,244,232,.12); }
.admin-sidebar nav a { display: flex; gap: .6rem; align-items: center; padding: .75rem 1.2rem; color: rgba(250,244,232,.85); font-size: .92rem; }
.admin-sidebar nav a:hover { background: rgba(250,244,232,.08); text-decoration: none; }
.admin-sidebar nav a.active { background: var(--c-gold); color: #241a05; font-weight: 700; }
.admin-sidebar .sidebar-foot { margin-top: auto; padding: 1rem 1.2rem; font-size: .85rem; opacity: .7; }

.admin-main { flex: 1; background: var(--c-cream); display: flex; flex-direction: column; min-width: 0; }
.admin-topbar { background: var(--c-white); border-bottom: 1px solid var(--c-cream-dk); padding: .9rem 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.admin-content { padding: 1.5rem; }
@media (max-width: 820px) {
  .admin-shell { flex-direction: column; }
  .admin-sidebar { width: 100%; }
  .admin-sidebar nav { display: flex; overflow-x: auto; }
  .admin-sidebar nav a { white-space: nowrap; }
}

.stat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin-bottom: 1.5rem; }
.stat-card { background: var(--c-white); border: 1px solid var(--c-cream-dk); border-radius: var(--radius); padding: 1.2rem; box-shadow: var(--shadow); }
.stat-card .label { font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: var(--c-muted); }
.stat-card .value { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; color: var(--c-plum); }
.stat-card .sub { font-size: .82rem; color: var(--c-muted); }

.admin-table { width: 100%; border-collapse: collapse; background: var(--c-white); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); }
.admin-table th, .admin-table td { padding: .7rem .9rem; text-align: left; border-bottom: 1px solid var(--c-cream-dk); font-size: .9rem; vertical-align: middle; }
.admin-table th { background: var(--c-cream-dk); font-size: .76rem; text-transform: uppercase; letter-spacing: .05em; }
.admin-table .actions { display: flex; gap: .4rem; flex-wrap: wrap; }
.admin-table .actions a, .admin-table .actions button { font-size: .8rem; padding: .3rem .6rem; border-radius: 6px; border: 1px solid #d8ccb4; background: var(--c-cream); cursor: pointer; }
.admin-table .actions a:hover, .admin-table .actions button:hover { background: var(--c-cream-dk); }

.badge-status { display: inline-block; padding: .18rem .6rem; border-radius: 999px; font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.badge-status.pending   { background: #f6ecd4; color: #8a6d1a; }
.badge-status.confirmed,
.badge-status.processing,
.badge-status.paid      { background: var(--c-green-lt); color: var(--c-green); }
.badge-status.completed { background: #e8e8f6; color: #3b3b8a; }
.badge-status.cancelled { background: #fbecec; color: var(--c-danger); }

.panel { background: var(--c-white); border: 1px solid var(--c-cream-dk); border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow); margin-bottom: 1.4rem; }
.panel h2 { font-size: 1.25rem; margin-bottom: 1rem; }
.panel h3 { font-size: 1.05rem; }

.toolbar { display: flex; gap: .6rem; flex-wrap: wrap; align-items: center; margin-bottom: 1rem; }
.toolbar .spacer { flex: 1; }

.pagination { display: flex; gap: .4rem; margin-top: 1.2rem; justify-content: center; }
.pagination a, .pagination span { padding: .4rem .75rem; border-radius: 6px; background: var(--c-white); border: 1px solid var(--c-cream-dk); }
.pagination .current { background: var(--c-gold); border-color: var(--c-gold); font-weight: 700; }

/* ---------- Admin gallery cards ---------- */
.toolbar-group { display: flex; gap: .6rem; flex-wrap: wrap; align-items: center; }
.gallery-admin-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.gallery-admin-card {
  background: var(--c-white); border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--c-cream-dk);
  display: flex; flex-direction: column;
}
.gallery-admin-thumb { position: relative; aspect-ratio: 4/3; background: var(--c-cream-dk); overflow: hidden; }
.gallery-admin-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-admin-card:hover .gallery-admin-thumb img { transform: scale(1.05); }
.gallery-admin-video-ph {
  display: flex; align-items: center; justify-content: center; height: 100%; gap: .45rem;
  font-weight: 600; letter-spacing: .03em; color: #e8d9c2;
  background: linear-gradient(135deg, #1d130c, #3a2516);
}
.gallery-admin-video-ph span { font-size: 1.4rem; }
.gallery-admin-tag {
  position: absolute; left: .55rem; bottom: .55rem; font-size: .72rem; font-weight: 600;
  padding: .2rem .6rem; border-radius: 999px; background: rgba(13,10,7,.72); color: #fff;
  backdrop-filter: blur(4px);
}
.gallery-admin-visible, .gallery-admin-hidden {
  position: absolute; right: .55rem; top: .55rem; font-size: .7rem; font-weight: 700;
  padding: .2rem .55rem; border-radius: 999px; color: #fff;
}
.gallery-admin-visible { background: #1d7a4f; }
.gallery-admin-hidden { background: #a33; }
.gallery-admin-body { padding: .9rem 1rem 1rem; display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.gallery-admin-body h3 { margin: 0; font-size: 1rem; }
.gallery-admin-body p { margin: 0; font-size: .82rem; color: var(--c-muted); }
.gallery-admin-body .actions {
  margin-top: auto; padding-top: .6rem; display: flex; gap: .4rem; flex-wrap: wrap;
  border-top: 1px solid var(--c-cream-dk);
}
.gallery-admin-body .actions a {
  font-size: .8rem; padding: .3rem .65rem; border-radius: 6px;
  border: 1px solid #d8ccb4; background: var(--c-cream);
}
.gallery-admin-body .actions a:hover { background: var(--c-cream-dk); }

/* ---------- Login ---------- */
.login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--c-plum-dk), var(--c-brown)); padding: 1.5rem; }
.login-card { background: var(--c-white); border-radius: 12px; box-shadow: var(--shadow-lg); padding: 2.2rem; width: 100%; max-width: 400px; }
.login-card h1 { font-size: 1.5rem; }

/* ---------- Misc ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: .5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }
.muted { color: var(--c-muted); }
.flex { display: flex; gap: .6rem; flex-wrap: wrap; align-items: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }

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

/* ============================================================
   Homepage extras — hero badge, value marquee, carousel,
   mission collage, CTA banner, FAQ, help list
   ============================================================ */

/* Hero floating badge */
.hero-art .hero-badge {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  background: rgba(250,244,232,.95); color: var(--c-plum-dk);
  padding: .55rem .95rem; border-radius: 8px; font-size: .8rem; font-weight: 600;
  display: flex; align-items: center; gap: .5rem; box-shadow: var(--shadow);
}
.hero-badge .stars { color: var(--c-gold); font-size: .85rem; }

/* Value marquee */
.value-strip { background: var(--c-gold); overflow: hidden; padding: .85rem 0; }
.value-track { display: flex; gap: 3rem; white-space: nowrap; width: max-content; animation: marquee 32s linear infinite; }
.value-item { font-weight: 700; color: #241a05; letter-spacing: .04em; font-size: .92rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Product carousel */
.product-carousel { position: relative; }
.product-carousel-track {
  display: flex; gap: 1.2rem; overflow-x: auto;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: .5rem .25rem 1.25rem;
}
.product-carousel-track .card-product { flex: 0 0 min(290px, 78vw); scroll-snap-align: start; }
.product-carousel-track::-webkit-scrollbar { height: 8px; }
.product-carousel-track::-webkit-scrollbar-thumb { background: var(--c-cream-dk); border-radius: 999px; }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 2.6rem; height: 2.6rem; border-radius: 50%; border: 0;
  background: var(--c-plum); color: var(--c-cream); font-size: 1.5rem; line-height: 1;
  cursor: pointer; box-shadow: var(--shadow); transition: background .2s ease, transform .15s ease;
}
.carousel-btn:hover { background: var(--c-plum-dk); transform: translateY(-50%) scale(1.06); }
.carousel-btn--prev { left: .15rem; }
.carousel-btn--next { right: .15rem; }

/* Mission image collage */
.mission-media { position: relative; }
.mission-media img { border-radius: 14px; box-shadow: var(--shadow-lg); }
.mission-media img:first-child { width: 74%; }
.mission-media img:last-child { width: 54%; margin-left: auto; margin-top: -3.5rem; border: 4px solid var(--c-plum-dk); }

/* CTA banner */
.cta-banner {
  position: relative;
  background-image: url('../img/cta-candles.jpg');
  background-size: cover; background-position: center;
  padding: 5rem 0; text-align: center; color: var(--c-cream);
}
.cta-banner::before { content: ""; position: absolute; inset: 0; background: rgba(43,22,41,.74); }
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--c-cream); font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: .5rem; }
.cta-banner p { max-width: 56ch; margin: 0 auto 1.5rem; color: rgba(250,244,232,.92); }
.cta-banner .hero-ctas { justify-content: center; margin-top: 0; }

/* FAQ accordion */
.faq { max-width: 720px; margin: 0 auto; }
.faq details { border: 1px solid var(--c-cream-dk); background: var(--c-white); border-radius: 10px; margin-bottom: .8rem; overflow: hidden; box-shadow: var(--shadow); }
.faq summary { cursor: pointer; padding: 1rem 1.2rem; font-weight: 600; color: var(--c-plum-dk); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.3rem; color: var(--c-gold-dk); transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0; padding: 0 1.2rem 1.1rem; color: var(--c-muted); }

/* Help checklist */
.help-list { list-style: none; padding: 0; margin: 0; }
.help-list li { padding: .45rem 0 .45rem 1.7rem; position: relative; }
.help-list li::before { content: "✦"; position: absolute; left: 0; color: var(--c-gold-dk); }

@media (prefers-reduced-motion: reduce) {
  .value-track { animation: none; }
}

/* ============================================================
   Brand buttons in red (rest of the theme stays jewel-toned)
   ============================================================ */

.btn--primary { background: #c1272d; color: #fff; box-shadow: 0 3px 12px rgba(193,39,45,.35); }
.btn--primary:hover { background: #9c1c21; color: #fff; }
.btn--dark { background: #c1272d; color: #fff; }
.btn--dark:hover { background: #9c1c21; color: #fff; }
.btn--outline { color: #c1272d; border-color: #c1272d; }
.btn--outline:hover { background: #c1272d; border-color: #c1272d; color: #fff; }

/* --- Readings & ritual works pricing menu --- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; align-items: stretch; }
.pricing-card {
  background: var(--c-white); border: 1px solid var(--c-cream-dk);
  border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.pricing-card h3 { display: flex; align-items: center; gap: .4rem; font-size: 1.05rem; border-bottom: 1px solid var(--c-cream-dk); padding-bottom: .7rem; margin-bottom: .8rem; }
.pricing-card ul { list-style: none; margin: 0; padding: 0; }
.pricing-card li {
  display: flex; justify-content: space-between; align-items: baseline; gap: .8rem;
  padding: .5rem 0; border-bottom: 1px dashed var(--c-cream-dk); font-size: .95rem;
}
.pricing-card li:last-child { border-bottom: 0; }
.pricing-card .amt { font-weight: 700; color: var(--c-plum); white-space: nowrap; }
.pricing-card .note { margin-top: auto; padding-top: .8rem; font-size: .8rem; color: var(--c-muted); }

.pricing-card--wide { grid-column: 1 / -1; }
.pricing-card--wide ul { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 0 1.4rem; }

.pricing-meta {
  margin-top: 1.2rem; padding: 1.1rem 1.3rem; border-radius: var(--radius);
  background: var(--c-plum-dk); color: var(--c-cream);
  display: flex; flex-wrap: wrap; gap: 1.2rem 2.5rem; justify-content: center; text-align: center;
}
.pricing-meta strong { display: block; font-family: var(--font-head); font-size: 1.05rem; color: var(--c-gold); }
.pricing-meta span { font-size: .9rem; color: rgba(250,244,232,.85); }

.pricing-disclaimer {
  max-width: 720px; margin: 1.1rem auto 0; text-align: center; font-size: .86rem; color: var(--c-muted);
}

@media (max-width: 860px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--wide { grid-column: auto; }
  .pricing-card--wide ul { grid-template-columns: 1fr; }
}

/* ============================================================
   Animations — scroll reveal, hero entrance, glow, hover
   ============================================================ */

/* Scroll reveal (class added by JS; no-JS users see content instantly) */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.reveal--left { transform: translateX(-34px); }
.reveal--right { transform: translateX(34px); }
.reveal--zoom { transform: scale(.92); }
.reveal.is-revealed { opacity: 1; transform: none; }

/* Hero entrance */
.hero-copy { animation: heroUp .9s cubic-bezier(.22,.61,.36,1) both; }
.hero-art { animation: heroArt 1.1s cubic-bezier(.22,.61,.36,1) both .15s; }
.hero-eyebrow { animation: heroUp .8s cubic-bezier(.22,.61,.36,1) both .05s; }
.hero .lede { animation: heroUp .9s cubic-bezier(.22,.61,.36,1) both .2s; }
.hero-ctas { animation: heroUp .9s cubic-bezier(.22,.61,.36,1) both .32s; }
.hero-stats { animation: heroUp .9s cubic-bezier(.22,.61,.36,1) both .44s; }

@keyframes heroUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}
@keyframes heroArt {
  from { opacity: 0; transform: scale(.94) translateY(22px); }
  to { opacity: 1; transform: none; }
}

/* Floating hero badge + twinkling sparkles */
.hero-art .hero-badge {
  animation: badgePop .6s cubic-bezier(.34,1.56,.64,1) both 1s,
             floaty 5s ease-in-out 1.6s infinite;
}
@keyframes badgePop {
  from { opacity: 0; transform: scale(.6); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
.hero-sparkle {
  position: absolute; z-index: 2; color: var(--c-gold);
  font-size: 1.1rem; line-height: 1; pointer-events: none;
  animation: twinkle 3.2s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: .12; transform: scale(.7); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* Card image zoom on hover */
.card-product .thumb { overflow: hidden; }
.card-product .thumb img { transition: transform .65s cubic-bezier(.22,.61,.36,1); }
.card-product:hover .thumb img { transform: scale(1.08); }
.card-post .thumb { overflow: hidden; }
.card-post .thumb img { transition: transform .65s cubic-bezier(.22,.61,.36,1); }
.card-post:hover .thumb img { transform: scale(1.07); }

/* Button glow pulse on primary/dark actions */
.btn--primary, .btn--dark { position: relative; overflow: hidden; }
.btn--primary::after, .btn--dark::after {
  content: ""; position: absolute; top: 0; left: -85%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.38), transparent);
  transform: skewX(-20deg);
  transition: left .55s ease;
}
.btn--primary:hover::after, .btn--dark:hover::after { left: 135%; }

/* Animated underline under section headings */
.section-head h2 { position: relative; padding-bottom: .55rem; }
.section-head h2::after {
  content: ""; display: block; width: 56px; height: 3px;
  margin: .55rem auto 0; border-radius: 2px;
  background: linear-gradient(90deg, var(--c-gold-dk), var(--c-gold));
  transform: scaleX(0); transform-origin: center;
  transition: transform .6s cubic-bezier(.22,.61,.36,1) .25s;
}
.section-head.is-revealed h2::after { transform: scaleX(1); }

/* Page hero fade-in (non-home pages) */
.page-hero h1, .page-hero p { animation: heroUp .8s cubic-bezier(.22,.61,.36,1) both; }
.page-hero p { animation-delay: .12s; }

/* CTA banner slow zoom for depth */
.cta-banner { animation: ctaZoom 14s ease-in-out infinite alternate; }
@keyframes ctaZoom {
  from { background-size: 100% auto; }
  to { background-size: 115% auto; }
}

/* FAQ smooth open */
.faq details p { animation: fadeIn .35s ease; }

/* Animated red "Book now" pill on the How we can help cards */
.card-service .book-now {
  display: inline-flex; align-items: center; gap: .35rem;
  background: #c1272d; color: #fff; font-weight: 700; font-size: .85rem;
  padding: .5rem 1.1rem; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 3px 12px rgba(193,39,45,.4);
  animation: bookPulse 2.2s ease-in-out infinite;
}
.card-service .book-now:hover { background: #9c1c21; }
@keyframes bookPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(193,39,45,.5); transform: scale(1); }
  50% { box-shadow: 0 0 0 9px rgba(193,39,45,0); transform: scale(1.06); }
}

/* ---------------------------------------------------------------------------
 * Gallery page
 * ------------------------------------------------------------------------ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.gallery-item {
  margin: 0; border-radius: 14px; overflow: hidden;
  background: var(--c-cream-dk, #efe6d8);
  box-shadow: 0 6px 24px rgba(35,23,12,.10);
  transition: transform .5s cubic-bezier(.22,.61,.36,1), box-shadow .5s ease;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(35,23,12,.16); }
.gallery-item img {
  display: block; width: 100%; aspect-ratio: 4/3; object-fit: cover;
}
.gallery-frame { position: relative; width: 100%; aspect-ratio: 16/9; background: #0d0a07; }
.gallery-frame iframe, .gallery-frame video {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.gallery-frame video[hidden] { display: none; }
.video-fallback {
  position: absolute; inset: 0; margin: 0; display: flex; align-items: center; justify-content: center;
  padding: 1.2rem; text-align: center; font-size: .85rem; line-height: 1.5;
  color: #e9d9a8; background: #14100c;
}
.gallery-item figcaption {
  padding: .7rem 1rem .9rem; font-size: .9rem; line-height: 1.45;
  color: var(--c-ink, #2c2018);
}

/* Homepage gallery strip */
.home-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem; }
.home-gallery-item {
  position: relative; display: block; aspect-ratio: 4/3; overflow: hidden;
  border-radius: 12px; box-shadow: var(--shadow);
}
.home-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.22,.61,.36,1); }
.home-gallery-item:hover img { transform: scale(1.08); }
.home-gallery-item .noimg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--c-plum-dk), var(--c-brown-dk)); color: var(--c-gold); font-size: 1.6rem; }
.home-gallery-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.4rem; background: rgba(13,10,7,.28);
}
.home-gallery-play::before {
  content: ""; width: 3.2rem; height: 3.2rem; border-radius: 50%;
  background: rgba(201,162,39,.92); display: flex; align-items: center; justify-content: center;
  padding-left: .15rem;
}
@media (max-width: 860px) { .home-gallery { grid-template-columns: repeat(2, 1fr); } }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: rgba(13,10,7,.94); padding: 2rem;
  animation: fadeIn .25s ease;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: min(92vw, 1200px); max-height: 88vh;
  border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.lightbox-close {
  position: absolute; top: 1rem; right: 1.4rem;
  font-size: 2.4rem; line-height: 1; color: #fff; background: none; border: 0;
  cursor: pointer; opacity: .8;
}
.lightbox-close:hover { opacity: 1; }

/* ---------------------------------------------------------------------------
 * What He Does page
 * ------------------------------------------------------------------------ */
.what-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1rem;
}
.what-list li {
  padding: 1.1rem 1.25rem; border-radius: 12px;
  background: var(--c-cream-dk, #efe6d8); border: 1px solid rgba(35,23,12,.07);
}
.what-list h3 {
  margin: 0 0 .4rem; font-size: 1.05rem; color: var(--c-ink, #2c2018);
}
.what-list h3::before {
  content: ""; display: inline-block; width: .55rem; height: .55rem;
  margin-right: .55rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-gold-dk, #9a7318), var(--c-gold, #c9a227));
  vertical-align: middle;
}
.what-list p { margin: 0; font-size: .95rem; line-height: 1.55; color: #5a4a38; }

.cta-block {
  padding: 2.2rem; border-radius: 16px; text-align: center;
  background: var(--c-cream-dk, #efe6d8);
  border: 1px solid rgba(35,23,12,.08);
  box-shadow: var(--shadow, 0 10px 30px rgba(35,23,12,.08));
}
.cta-block h2 { margin-top: 0; }
.cta-block p { max-width: 720px; margin-left: auto; margin-right: auto; }

/* ============================================================
   What He Does — cinematic design
   ============================================================ */

/* Buttons for dark sections */
.btn--gold {
  background: linear-gradient(135deg, var(--c-gold), #b8911e); color: #241a05;
  font-weight: 700; box-shadow: 0 4px 18px rgba(201,162,39,.45);
}
.btn--gold:hover { background: linear-gradient(135deg, var(--c-gold-dk), #96760f); color: #fff; }
.btn--ghost-light { background: transparent; color: var(--c-cream); border-color: rgba(250,244,232,.65); }
.btn--ghost-light:hover { background: rgba(250,244,232,.14); color: #fff; }

/* Cinematic hero */
.whero { position: relative; min-height: 74vh; display: flex; align-items: center; overflow: hidden; text-align: center; color: var(--c-cream); }
.whero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  animation: wheroZoom 16s ease-in-out infinite alternate;
}
@keyframes wheroZoom { from { transform: scale(1); } to { transform: scale(1.1); } }
.whero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(120% 120% at 50% 0%, rgba(42,22,41,.55), rgba(42,22,41,.88) 60%, rgba(58,32,24,.92));
}
.whero-inner { position: relative; z-index: 2; padding: 6rem 0; max-width: 860px; margin: 0 auto; }
.whero-eyebrow {
  display: inline-block; letter-spacing: .28em; text-transform: uppercase; font-size: .78rem;
  color: var(--c-gold); margin-bottom: 1rem; padding: .45rem 1.1rem;
  border: 1px solid rgba(201,162,39,.45); border-radius: 999px; background: rgba(201,162,39,.08);
  animation: heroUp .8s cubic-bezier(.22,.61,.36,1) both .05s;
}
.whero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem); margin: 0 0 1.1rem; line-height: 1.05;
  color: var(--c-cream); animation: heroUp .9s cubic-bezier(.22,.61,.36,1) both .1s;
}
.whero-lede {
  font-size: 1.12rem; line-height: 1.7; margin: 0 auto 1.8rem; max-width: 640px;
  color: rgba(250,244,232,.9); animation: heroUp .9s cubic-bezier(.22,.61,.36,1) both .2s;
}
.whero-ctas { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; animation: heroUp .9s cubic-bezier(.22,.61,.36,1) both .3s; }
.whero-stats {
  display: flex; justify-content: center; gap: 2.4rem; flex-wrap: wrap; margin-top: 2.8rem;
  animation: heroUp .9s cubic-bezier(.22,.61,.36,1) both .4s;
}
.whero-stats div { text-align: center; }
.whero-stats strong { display: block; font-size: 1.8rem; font-weight: 700; color: var(--c-gold); font-family: "Playfair Display", Georgia, serif; }
.whero-stats span { font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: rgba(250,244,232,.75); }

/* Intro split */
.wintro { display: grid; grid-template-columns: 1.05fr 1fr; gap: 3rem; align-items: center; margin-top: 3.4rem; }
.wintro-media { position: relative; }
.wintro-media > img { width: 100%; border-radius: 18px; box-shadow: var(--shadow-lg); object-fit: cover; aspect-ratio: 4/3; }
.wintro-card {
  position: absolute; left: -1.2rem; bottom: 1.4rem; background: var(--c-white);
  border-radius: 14px; box-shadow: var(--shadow-lg); padding: 1rem 1.3rem; max-width: 240px;
  border-left: 4px solid var(--c-gold);
}
.wintro-card strong { display: block; font-family: "Playfair Display", Georgia, serif; font-size: 1.05rem; color: var(--c-plum-dk); }
.wintro-card span { font-size: .82rem; color: var(--c-muted); }
.wintro-copy h2 { margin: .4rem 0 1rem; }
.wintro-copy p { color: var(--c-muted); line-height: 1.7; }
.wtick { list-style: none; padding: 0; margin: 1.2rem 0 0; }
.wtick li { padding: .4rem 0 .4rem 1.8rem; position: relative; color: var(--c-ink); font-weight: 500; }
.wtick li::before {
  content: "✓"; position: absolute; left: 0; top: .4rem; width: 1.15rem; height: 1.15rem;
  border-radius: 50%; background: var(--c-gold); color: #241a05; font-size: .72rem;
  display: flex; align-items: center; justify-content: center; font-weight: 800;
}

/* Ten-areas grid */
.wgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.1rem; margin-top: 2rem; }
.wcard {
  position: relative; overflow: hidden; padding: 1.5rem 1.5rem 1.4rem; border-radius: 16px;
  background: linear-gradient(160deg, var(--c-cream), #fdf8ec);
  border: 1px solid rgba(43,33,28,.08); box-shadow: var(--shadow);
  transition: transform .45s cubic-bezier(.22,.61,.36,1), box-shadow .45s ease;
}
.wcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.wcard-num {
  position: absolute; right: .8rem; top: .35rem; font-family: "Playfair Display", Georgia, serif;
  font-size: 3.4rem; font-weight: 700; line-height: 1; color: rgba(201,162,39,.16); pointer-events: none;
}
.wcard-ic { width: 34px; height: 34px; color: var(--c-gold-dk); margin-bottom: .8rem; }
.wcard h3 { margin: 0 0 .5rem; font-size: 1.08rem; color: var(--c-ink); }
.wcard p { margin: 0; font-size: .94rem; line-height: 1.6; color: var(--c-muted); }

/* Steps (dark) */
.wsteps {
  margin-top: 3.4rem; border-radius: 22px; padding: 3rem 2.2rem;
  background: linear-gradient(150deg, var(--c-plum-dk), var(--c-brown-dk)); color: var(--c-cream);
  box-shadow: var(--shadow-lg); overflow: hidden; position: relative;
}
.wsteps .eyebrow { color: var(--c-gold); }
.wsteps-title { text-align: center; color: var(--c-cream); margin: .4rem 0 2.4rem; }
.wsteps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.wstep { text-align: center; padding: 1.6rem 1rem 1.2rem; border-radius: 16px; background: rgba(250,244,232,.05); border: 1px solid rgba(250,244,232,.1); }
.wstep-num {
  display: inline-flex; align-items: center; justify-content: center; width: 2.4rem; height: 2.4rem;
  border-radius: 50%; background: var(--c-gold); color: #241a05; font-weight: 800; font-size: 1.05rem; margin-bottom: .9rem;
}
.wstep h3 { margin: 0 0 .5rem; font-size: 1.05rem; color: var(--c-cream); }
.wstep p { margin: 0; font-size: .88rem; line-height: 1.6; color: rgba(250,244,232,.8); }

/* Honesty banner */
.whonesty {
  margin-top: 3.4rem; padding: 1.8rem 2rem; border-radius: 16px; text-align: center;
  background: var(--c-cream-dk); border: 1px solid rgba(201,162,39,.35);
  color: var(--c-plum-dk); font-size: 1.05rem; line-height: 1.7;
}
.whonesty svg { width: 30px; height: 30px; color: var(--c-gold-dk); margin: 0 auto .6rem; display: block; }
.whonesty strong { color: var(--c-ink); }
.whonesty p { margin: 0; max-width: 760px; margin-left: auto; margin-right: auto; }

/* Closing CTA banner */
.wcta { position: relative; margin-top: 3.4rem; border-radius: 22px; overflow: hidden; text-align: center; color: var(--c-cream); }
.wcta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.wcta-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(42,22,41,.92), rgba(58,32,24,.88)); }
.wcta-inner { position: relative; z-index: 2; padding: 3.4rem 1.5rem; max-width: 680px; margin: 0 auto; }
.wcta-inner .eyebrow { color: var(--c-gold); }
.wcta-inner h2 { color: var(--c-cream); margin: .4rem 0 .8rem; font-size: clamp(1.6rem, 3vw, 2.3rem); }
.wcta-inner p { color: rgba(250,244,232,.85); margin: 0 auto 1.6rem; }
.wcta-btns { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

@media (max-width: 900px) {
  .wintro { grid-template-columns: 1fr; gap: 2.2rem; }
  .wsteps-grid { grid-template-columns: repeat(2, 1fr); }
  .whero-stats { gap: 1.6rem; }
}
@media (max-width: 560px) {
  .wsteps-grid { grid-template-columns: 1fr; }
  .wintro-card { left: .8rem; }
}

/* ============================================================
   Services — premium uniform grid
   ============================================================ */
.svc-hero { position: relative; min-height: 62vh; display: flex; align-items: center; overflow: hidden; text-align: center; color: var(--c-cream); }
.svc-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; animation: wheroZoom 18s ease-in-out infinite alternate; }
.svc-hero-overlay { position: absolute; inset: 0; background: radial-gradient(120% 120% at 50% 0%, rgba(42,22,41,.5), rgba(42,22,41,.85) 60%, rgba(58,32,24,.9)); }
.svc-hero-inner { position: relative; z-index: 2; padding: 5.5rem 0; max-width: 780px; margin: 0 auto; }
.svc-hero-eyebrow {
  display: inline-block; letter-spacing: .26em; text-transform: uppercase; font-size: .74rem;
  color: var(--c-gold); margin-bottom: 1rem; padding: .45rem 1.1rem;
  border: 1px solid rgba(201,162,39,.45); border-radius: 999px; background: rgba(201,162,39,.08);
  animation: heroUp .8s cubic-bezier(.22,.61,.36,1) both .05s;
}
.svc-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); margin: 0 0 1rem; line-height: 1.05; color: var(--c-cream); animation: heroUp .9s cubic-bezier(.22,.61,.36,1) both .1s; }
.svc-hero-lede { font-size: 1.08rem; line-height: 1.7; margin: 0 auto 1.8rem; max-width: 600px; color: rgba(250,244,232,.9); animation: heroUp .9s cubic-bezier(.22,.61,.36,1) both .2s; }
.svc-hero-ctas { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; animation: heroUp .9s cubic-bezier(.22,.61,.36,1) both .3s; }

/* Accent palette — subtle tonal variety across otherwise uniform cards */
.svc-card--gold     { --svc-a: #c9a227; --svc-adk: #a8871a; --svc-tint: rgba(201,162,39,.12); --svc-grad: linear-gradient(150deg, #d9b43a, #a8871a); }
.svc-card--red      { --svc-a: #c1272d; --svc-adk: #9c1c21; --svc-tint: rgba(193,39,45,.10); --svc-grad: linear-gradient(150deg, #d43a40, #9c1c21); }
.svc-card--plum     { --svc-a: #6b2a63; --svc-adk: #54214f; --svc-tint: rgba(107,42,99,.10); --svc-grad: linear-gradient(150deg, #803a76, #54214f); }
.svc-card--emerald  { --svc-a: #1d7a4f; --svc-adk: #155f3d; --svc-tint: rgba(29,122,79,.10); --svc-grad: linear-gradient(150deg, #24945f, #155f3d); }
.svc-card--sapphire { --svc-a: #2f5f9e; --svc-adk: #244b7c; --svc-tint: rgba(47,95,158,.10); --svc-grad: linear-gradient(150deg, #3a71bd, #244b7c); }
.svc-card--bronze   { --svc-a: #a4702d; --svc-adk: #845a22; --svc-tint: rgba(164,112,45,.10); --svc-grad: linear-gradient(150deg, #c08937, #845a22); }
.svc-card--rose     { --svc-a: #b03a5b; --svc-adk: #8d2c48; --svc-tint: rgba(176,58,91,.10); --svc-grad: linear-gradient(150deg, #cd4769, #8d2c48); }
.svc-card--teal     { --svc-a: #1f7a78; --svc-adk: #18615f; --svc-tint: rgba(31,122,120,.10); --svc-grad: linear-gradient(150deg, #269591, #18615f); }

.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 3rem;
  align-items: stretch;
}
.svc-card {
  display: flex; flex-direction: column; overflow: hidden; border-radius: 18px;
  background: var(--c-white); box-shadow: var(--shadow); border: 1px solid rgba(43,33,28,.07);
  transition: transform .5s cubic-bezier(.22,.61,.36,1), box-shadow .5s ease;
}
.svc-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.svc-card-top { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--svc-tint); }
.svc-card-top img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.22,.61,.36,1); }
.svc-card:hover .svc-card-top img { transform: scale(1.07); }
.svc-card-icon {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: var(--svc-grad);
}
.svc-card-icon svg { width: 74px; height: 74px; color: rgba(255,255,255,.95); filter: drop-shadow(0 6px 16px rgba(0,0,0,.26)); }
.svc-card-num {
  position: absolute; top: .85rem; left: .95rem; z-index: 2;
  font-family: "Playfair Display", Georgia, serif; font-weight: 700; font-size: .95rem; letter-spacing: .08em;
  color: #fff; background: rgba(13,10,7,.42); backdrop-filter: blur(4px);
  padding: .25rem .65rem; border-radius: 999px;
}
.svc-card-body { padding: 1.4rem 1.5rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.svc-card-body h3 { margin: 0 0 .6rem; font-size: 1.18rem; position: relative; padding-bottom: .7rem; }
.svc-card-body h3::after { content: ""; position: absolute; left: 0; bottom: 0; width: 44px; height: 3px; border-radius: 2px; background: var(--svc-grad); }
.svc-card-desc { margin: 0 0 1rem; color: var(--c-muted); line-height: 1.65; font-size: .94rem; flex: 1; }
.svc-card-price {
  display: inline-block; align-self: flex-start; margin: 0 0 1.1rem; padding: .4rem .95rem;
  border-radius: 999px; background: var(--svc-tint); color: var(--svc-adk);
  font-weight: 700; font-size: .95rem;
}
.svc-card-foot { display: flex; gap: .6rem; flex-wrap: wrap; }
.svc-card-foot .btn { flex: 1; text-align: center; }

/* Steps (services) */
.svc-steps { margin-top: 3.4rem; border-radius: 22px; padding: 3rem 2.2rem; background: linear-gradient(150deg, var(--c-plum-dk), var(--c-brown-dk)); color: var(--c-cream); box-shadow: var(--shadow-lg); text-align: center; }
.svc-steps .eyebrow { color: var(--c-gold); }
.svc-steps h2 { color: var(--c-cream); margin: .4rem 0 2.4rem; }
.svc-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.svc-step { text-align: center; padding: 1.6rem 1.2rem 1.3rem; border-radius: 16px; background: rgba(250,244,232,.05); border: 1px solid rgba(250,244,232,.1); }
.svc-step-num {
  display: inline-flex; align-items: center; justify-content: center; width: 2.4rem; height: 2.4rem;
  border-radius: 50%; background: var(--c-gold); color: #241a05; font-weight: 800; margin-bottom: .9rem;
}
.svc-step h3 { margin: 0 0 .5rem; font-size: 1.05rem; color: var(--c-cream); }
.svc-step p { margin: 0; font-size: .9rem; line-height: 1.6; color: rgba(250,244,232,.8); }

/* Not-sure note */
.svc-note { margin-top: 3.4rem; padding: 2.4rem; border-radius: 20px; text-align: center; background: linear-gradient(160deg, var(--c-cream), #fdf8ec); border: 1px solid rgba(43,33,28,.08); box-shadow: var(--shadow); }
.svc-note h2 { margin: 0 0 .7rem; }
.svc-note p { max-width: 640px; margin: 0 auto 1.5rem; color: var(--c-muted); }

@media (max-width: 980px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .svc-grid { grid-template-columns: 1fr; } .svc-steps-grid { grid-template-columns: 1fr; } }

/* Booking payment proof */
.proof-group { margin-top: .8rem; }
.proof-group[hidden] { display: none; }
