/* ==========================================
   CSS VARIABLES & RESET
   ========================================== */
:root {
  --ink: #201a18;
  --muted: #6f6764;
  --line: #ece1dd;
  --rose: #f6eeee;
  --rose-strong: #f0dddc;
  --cream: #fffaf7;
  --shell: #f7f2ed;
  --green: #526f54;
  --green-soft: #e8f2e7;
  --peach: #f4d8c8;
  --blue: #e9f5fb;
  --gold: #b8860b;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(48, 34, 30, 0.09);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", "Segoe UI", Arial, sans-serif;
  --max: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  transition: all 0.25s ease;
}

.skip-link:focus {
  top: 12px;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.top-strip {
  background: var(--rose-strong);
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 32px;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250, 243, 241, 0.9);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max);
  min-height: 80px;
  margin: 0 auto;
  padding: 0 32px;
}

.brand {
  display: block;
  width: 154px;
}

.brand img,
.footer-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.icon-btn,
.menu-toggle,
.drawer-close {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--ink);
  transition: opacity 0.25s ease;
}

.icon-btn:hover {
  opacity: 0.7;
}

.cart-count {
  position: absolute;
  top: 0px;
  right: -2px;
  display: grid;
  place-items: center;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 99px;
  background: var(--ink);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
}

.menu-toggle {
  display: none;
}

.nav-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  font-size: 14px;
  font-weight: 600;
}

.nav-bar a {
  position: relative;
  padding: 8px 0;
  color: var(--ink);
  transition: opacity 0.25s ease;
}

.nav-bar a:hover {
  opacity: 0.7;
}

.nav-bar a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--ink);
}

.mobile-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 30;
  width: min(330px, 86vw);
  padding: 28px;
  background: var(--cream);
  box-shadow: var(--shadow);
  transform: translateX(110%);
  transition: all 0.25s ease;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer a {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 28px;
}

.drawer-close {
  float: right;
  font-size: 30px;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 0.72fr 0.9fr;
  align-items: center;
  min-height: 520px;
  overflow: hidden;
  background: linear-gradient(90deg, #f3eeee 0%, #f8f6f4 48%, #efe8e8 100%);
}

.hero-copy {
  z-index: 2;
  max-width: 460px;
  padding: 66px 48px 66px max(48px, calc((100vw - var(--max)) / 2 + 48px));
}

.eyebrow,
.product-kicker {
  margin: 0 0 9px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.05;
}

h1 {
  font-size: clamp(44px, 6vw, 74px);
}

h2 {
  font-size: clamp(34px, 4vw, 52px);
}

h3 {
  font-size: 24px;
}

.hero-copy p:not(.eyebrow) {
  max-width: 410px;
  margin: 18px 0 26px;
  color: var(--muted);
}

.pill-btn,
.soft-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 38px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.pill-btn:hover,
.soft-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(32, 26, 24, 0.14);
}

.hero-products {
  position: relative;
  z-index: 2;
  align-self: end;
  min-height: 390px;
}

.hero-pack {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 26px 24px rgba(30, 24, 21, 0.12));
}

.pack-one {
  left: 0;
  bottom: 28px;
  width: 48%;
}

.pack-two {
  left: 30%;
  bottom: 50px;
  width: 38%;
}

.pack-three {
  right: 0;
  bottom: 24px;
  width: 42%;
}

.hero-face {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
}

/* ==========================================
   LAYOUT & REUSABLE BLOCKS
   ========================================== */
.category-banners,
.section-block,
.team-section,
.category-list,
.reviews-section,
.terms-section,
.why-section,
.shop-tools,
.shop-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 32px;
}

.category-banners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.banner-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
}

.banner-card img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transition: all 0.25s ease;
}

.banner-card:hover img {
  transform: scale(1.04);
}

.banner-card span {
  position: absolute;
  left: 42px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
}

.banner-blue { background: var(--blue); }
.banner-green { background: var(--green-soft); }
.banner-peach { background: var(--peach); }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
  text-align: center;
}

.section-heading a {
  margin-bottom: 7px;
  border-bottom: 1px solid currentColor;
  color: var(--muted);
  font-size: 13px;
}

.product-row,
.shop-grid {
  display: grid;
  gap: 28px;
}

.product-row--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.shop-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 22px;
}

.product-card {
  text-align: center;
}

.product-media {
  display: grid;
  place-items: center;
  min-height: 245px;
  margin-bottom: 18px;
  background: var(--white);
}

.product-media img {
  width: 88%;
  height: 220px;
  object-fit: contain;
  transition: all 0.25s ease;
}

.product-card:hover .product-media img {
  transform: translateY(-5px) scale(1.03);
}

.product-card h3 {
  min-height: 50px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  text-transform: uppercase;
}

.product-desc {
  min-height: 44px;
  margin: 7px 0 9px;
  color: var(--muted);
  font-size: 12px;
}

.product-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 15px;
}

.product-card del {
  margin-left: 6px;
  color: var(--muted);
  font-weight: 400;
}

.soft-btn {
  width: 100%;
  min-height: 34px;
  border: 0;
  border-radius: 0;
  background: var(--shell);
  color: var(--ink);
}

/* ==========================================
   HOME PAGE SECTIONS
   ========================================== */
.about-band,
.consult-section,
.benefits-band,
.quiz-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  margin: 36px 0;
  padding: 74px max(32px, calc((100vw - var(--max)) / 2 + 32px));
  background: var(--rose);
}

.about-copy {
  max-width: 560px;
  justify-self: end;
  text-align: center;
}

.about-copy p,
.consult-section p,
.quiz-intro p,
.terms-section p {
  color: var(--muted);
}

.about-image img {
  max-height: 400px;
  object-fit: contain;
}

.promise-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  margin: 44px 0;
}

.promise-strip article {
  padding: 34px 28px;
  background: var(--white);
}

.promise-strip span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

.promise-strip h3 {
  margin: 10px 0 8px;
  font-size: 24px;
}

.promise-strip p {
  margin: 0;
  color: var(--muted);
}

.promise-strip--light {
  margin: 0;
  grid-template-columns: repeat(3, 1fr);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.team-grid article {
  padding: 18px;
  background: var(--white);
  text-align: center;
  box-shadow: 0 12px 30px rgba(48, 34, 30, 0.05);
}

.team-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 16px;
  background: var(--rose);
}

.team-grid h3 {
  font-size: 23px;
}

.team-grid p {
  margin: 6px 0;
  color: var(--gold);
  font-weight: 600;
}

.team-grid span {
  color: var(--muted);
  font-size: 13px;
}

.consult-section {
  background: linear-gradient(100deg, var(--green-soft), var(--cream));
}

.consult-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.consult-steps span {
  padding: 9px 13px;
  border: 1px solid rgba(82, 111, 84, 0.24);
  border-radius: 999px;
  background: var(--white);
  font-size: 12px;
}

.contact-form,
.quiz-card {
  display: grid;
  gap: 14px;
  padding: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.shop-tools select {
  width: 100%;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--cream);
  color: var(--ink);
  outline: 0;
  transition: all 0.25s ease;
}

.contact-form textarea {
  padding-top: 12px;
  resize: vertical;
}

.contact-form :is(input, select, textarea):focus,
.shop-tools select:focus {
  border-color: var(--green);
  background: var(--white);
}

.category-grid,
.reviews-grid,
.terms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.category-grid article,
.reviews-grid article,
.terms-grid article {
  padding: 26px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(48, 34, 30, 0.05);
}

.category-grid a {
  display: block;
  margin-top: 9px;
  color: var(--muted);
}

.benefits-band {
  grid-template-columns: 1fr 0.7fr;
}

.benefits-band ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.benefits-band li {
  padding: 14px;
  background: var(--white);
}

.benefits-band img {
  max-height: 340px;
  justify-self: center;
  object-fit: contain;
}

.reviews-grid {
  grid-template-columns: repeat(3, 1fr);
}

.reviews-grid img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
}

.terms-grid {
  grid-template-columns: repeat(5, 1fr);
}

.terms-grid h3 {
  font-size: 22px;
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
  margin-top: 40px;
  padding: 72px 32px 24px;
  background: var(--ink);
  color: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max);
  margin: 0 auto;
}

.footer-brand {
  padding-right: 30px;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 24px;
}

.footer-logo {
  max-width: 150px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255, 250, 247, 0.7);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 28px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--peach);
  color: var(--ink);
  transform: translateY(-2px);
}
/* ==========================================
   FOOTER — SF SYSTEM
   ========================================== */

/* ── Root container ── */
.sf {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: clamp(64px, 7vw, 104px);
  background:
    radial-gradient(circle at 12% 18%, rgba(184, 134, 11, 0.2), transparent 18rem),
    radial-gradient(circle at 88% 14%, rgba(237, 245, 234, 0.12), transparent 22rem),
    linear-gradient(145deg, #19110f 0%, #281d19 48%, #15100e 100%);
  color: #fffaf6;
  font-family: var(--sans, "Inter", "Segoe UI", Arial, sans-serif);
}

/* Subtle grid pattern overlay */
.sf::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.72), transparent 86%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.72), transparent 86%);
  pointer-events: none;
}

/* ── Gold top accent bar ── */
.sf-top-bar {
  position: relative;
  z-index: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 250, 246, 0.32),
    rgba(184, 134, 11, 0.52),
    rgba(255, 250, 246, 0.32),
    transparent
  );
}

/* ── Inner wrapper ── */
.sf-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max, 1280px);
  margin: 0 auto;
  padding: clamp(52px, 7vw, 88px) 32px 0;
}

/* ── 4-column glassmorphism card grid ── */
.sf-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.45fr) repeat(3, minmax(150px, 1fr));
  gap: clamp(16px, 2.2vw, 26px);
}

/* ── Card style for each column (glassmorphism) ── */
.sf-col {
  min-height: 100%;
  padding: clamp(24px, 2.8vw, 34px);
  border: 1px solid rgba(255, 250, 246, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 250, 246, 0.09), rgba(255, 250, 246, 0.035));
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.16),
    inset 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.sf-col:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 134, 11, 0.36);
  background:
    linear-gradient(145deg, rgba(255, 250, 246, 0.13), rgba(255, 250, 246, 0.055));
  box-shadow:
    0 30px 78px rgba(0, 0, 0, 0.24),
    inset 0 1px rgba(255, 255, 255, 0.12);
}

/* Brand column — gold radial glow */
.sf-col.brand-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(184, 134, 11, 0.16), transparent 12rem),
    linear-gradient(145deg, rgba(255, 250, 246, 0.12), rgba(255, 250, 246, 0.045));
}

/* ── Logo ── */
.sf-logo-wrap {
  display: inline-block;
  width: fit-content;
  max-width: 142px;
  margin-bottom: 18px;
  padding: 9px 10px;
  border: 1px solid rgba(255, 250, 246, 0.12);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 250, 246, 0.94), rgba(239, 217, 218, 0.88));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.sf-logo-wrap:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
}
.sf-logo-wrap img {
  display: block;
  height: 34px;
  width: auto;
}

/* ── Tagline ── */
.sf-tagline {
  font-family: var(--serif, "Cormorant Garamond", Georgia, serif);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  color: rgba(255, 250, 246, 0.76);
  margin: 0 0 18px;
  max-width: 32ch;
}

/* ── Gold divider ── */
.sf-gold-divider {
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold, #b8860b), rgba(184, 134, 11, 0));
  margin-bottom: 20px;
}

/* ── Newsletter ── */
.nl-label {
  display: block;
  font-family: var(--serif, "Cormorant Garamond", Georgia, serif);
  font-size: 13px;
  font-style: italic;
  font-weight: 500;
  color: rgba(255, 236, 190, 0.92);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.nl-row {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(255, 250, 246, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 246, 0.06);
  padding: 4px 4px 4px 18px;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.nl-row:focus-within {
  border-color: rgba(184, 134, 11, 0.52);
  background: rgba(255, 250, 246, 0.09);
  box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.09);
}
.nl-input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  color: #fffaf6;
  font-size: 13px;
  padding: 8px 0;
  font-family: var(--sans, "Inter", Arial, sans-serif);
  letter-spacing: 0.01em;
}
.nl-input::placeholder { color: rgba(255, 250, 246, 0.32); }
.nl-btn {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold, #b8860b), #d4a017);
  border: none;
  border-radius: 999px;
  color: #19110f;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.nl-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 22px rgba(184, 134, 11, 0.32);
}
.nl-btn svg { display: block; }

/* ── Column headings — serif + gold underline ── */
.sf-col-title {
  position: relative;
  margin: 0 0 22px;
  padding-bottom: 14px;
  color: #ffffff;
  font-family: var(--serif, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.sf-col-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold, #b8860b), rgba(184, 134, 11, 0));
}

/* ── Link lists ── */
.sf-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sf-links li { margin-bottom: 4px; }
.sf-links a {
  position: relative;
  display: table;
  width: fit-content;
  margin: 0;
  padding: 5px 0;
  color: rgba(255, 250, 246, 0.72);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.35;
  transition: color 0.25s ease, transform 0.25s ease;
}
.sf-links a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 1px;
  height: 1px;
  background: var(--gold, #b8860b);
  transition: right 0.25s ease;
}
.sf-links a:hover { color: #ffffff; transform: translateX(5px); }
.sf-links a:hover::before { right: 0; }

/* ── Contact items ── */
.sf-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.sf-contact-item a {
  position: relative;
  color: rgba(255, 250, 246, 0.72);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.35;
  transition: color 0.25s ease;
  word-break: break-all;
}
.sf-contact-item a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 1px;
  background: var(--gold, #b8860b);
  transition: right 0.25s ease;
}
.sf-contact-item a:hover { color: #ffffff; }
.sf-contact-item a:hover::before { right: 0; }
.sf-contact-icon {
  color: var(--gold, #b8860b);
  opacity: 0.85;
  flex-shrink: 0;
}
.sf-hours {
  font-size: 12px;
  color: rgba(255, 250, 246, 0.42);
  font-style: italic;
  font-family: var(--serif, "Cormorant Garamond", Georgia, serif);
  margin: 2px 0 16px 26px;
  letter-spacing: 0.02em;
}

/* ── Social icons — glassmorphism circles ── */
.sf-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.sf-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 250, 246, 0.14);
  background: rgba(255, 250, 246, 0.06);
  color: rgba(255, 250, 246, 0.6);
  text-decoration: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}
.sf-social a:hover {
  background: linear-gradient(135deg, var(--gold, #b8860b), #d4a017);
  border-color: var(--gold, #b8860b);
  color: #19110f;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(184, 134, 11, 0.28);
}
.sf-social a::before { display: none; }
.sf-social svg { display: block; }

/* ── Bottom bar ── */
.sf-bottom {
  position: relative;
  z-index: 1;
  max-width: var(--max, 1280px);
  margin: clamp(28px, 4vw, 48px) auto 0;
  padding: 0 32px;
}
.sf-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 250, 246, 0.12);
}
.sf-bottom-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold, #b8860b), transparent);
}
.sf-legal-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sf-legal-links a {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: rgba(255, 250, 246, 0.48);
  text-decoration: none;
  transition: color 0.25s ease;
}
.sf-legal-links a:hover { color: var(--gold, #b8860b); }
.sf-dot { color: rgba(255, 255, 255, 0.2); font-size: 10px; }
.sf-copy {
  font-size: 12px;
  color: rgba(255, 250, 246, 0.38);
  margin: 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Footer responsive ── */
@media (max-width: 920px) {
  .sf-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sf-col.brand-col { grid-column: 1 / -1; }
  .sf-tagline { max-width: 44ch; }
}
@media (max-width: 640px) {
  .sf-inner { padding-left: 18px; padding-right: 18px; }
  .sf-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .sf-col.brand-col { grid-column: 1 / -1; align-items: center; text-align: center; }
  .sf-col.brand-col .sf-gold-divider { margin-left: auto; margin-right: auto; }
  .sf-col.brand-col .sf-tagline { max-width: 28ch; }
  .sf-col.brand-col .sf-social { justify-content: center; }
  .sf-col { padding: 22px; border-radius: 20px; }
  .sf-bottom { padding-left: 18px; padding-right: 18px; }
  .sf-bottom-inner { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
  .sf-bottom-inner::before { left: 50%; transform: translateX(-50%); width: 80px; }
}
@media (max-width: 480px) {
  .sf { margin-top: 54px; }
  .sf-inner { padding-top: 44px; padding-left: 16px; padding-right: 16px; }
  .sf-grid { grid-template-columns: 1fr; gap: 14px; }
  .sf-col, .sf-col.brand-col { grid-column: auto; padding: 22px; border-radius: 20px; }
  .sf-col.brand-col { align-items: center; text-align: center; gap: 0; }
  .sf-col-title { text-align: center; }
  .sf-col-title::after { left: 50%; transform: translateX(-50%); }
  .sf-links a { margin-left: auto; margin-right: auto; }
  .sf-contact-item { justify-content: center; }
  .sf-hours { margin-left: 0; text-align: center; }
  .sf-social { justify-content: center; }
  .sf-bottom { padding-left: 16px; padding-right: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .sf *, .sf *::before, .sf *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ==========================================
   MOCK RAZORPAY CHECKOUT OVERLAY
   ========================================== */
.rzp-mock-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(26, 21, 18, 0.75);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  z-index: 10000;
  animation: rzpFadeIn 0.3s ease;
}
.rzp-mock-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid #e8e0db;
  text-align: center;
  animation: rzpScaleUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: #201a18;
}
.rzp-mock-header { margin-bottom: 24px; }
.rzp-mock-logo {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: #1a3020;
  margin-bottom: 6px;
}
.rzp-mock-subtitle {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #b8860b;
  font-weight: 600;
}
.rzp-mock-info {
  background: #fdfaf7;
  border: 1px solid #f4e8df;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
  text-align: left;
  font-size: 14px;
}
.rzp-mock-info-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.rzp-mock-info-row:last-child { margin-bottom: 0; }
.rzp-mock-label { color: #6f6764; }
.rzp-mock-value { font-weight: 600; }
.rzp-mock-btn-group { display: flex; flex-direction: column; gap: 12px; }
.rzp-mock-btn {
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  outline: none;
}
.rzp-mock-btn-success { background: #1a3020; color: #fff; }
.rzp-mock-btn-success:hover { background: #2d5037; box-shadow: 0 4px 12px rgba(26,48,32,0.2); }
.rzp-mock-btn-cancel { background: #fff; border: 1px solid #dcd1c4; color: #6f6764; }
.rzp-mock-btn-cancel:hover { background: #fdfaf7; color: #201a18; }
@keyframes rzpFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes rzpScaleUp { from { transform: scale(0.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ==========================================
   CART & SIDE PANELS
   ========================================== */
.cart-panel {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: none;
  width: min(360px, calc(100vw - 32px));
  padding: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.cart-panel.open {
  display: block;
}

.cart-head,
.cart-total,
.cart-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.cart-head {
  align-items: center;
  margin-bottom: 18px;
}

.cart-close {
  border: 0;
  background: transparent;
  font-size: 26px;
}

.cart-line {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.cart-total {
  margin: 18px 0;
  font-size: 16px;
}

/* ==========================================
   PAGE HERO & MISC PAGES
   ========================================== */
.shop-hero {
  padding: 68px 32px;
  background: var(--rose);
  text-align: center;
}

.page-hero {
  padding: 74px 32px;
  background: var(--rose);
  text-align: center;
}

.page-hero p {
  max-width: 680px;
  margin: 14px auto 0;
  color: var(--muted);
}

.page-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 44px 32px;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.page-card,
.order-summary,
.cart-page-list {
  padding: 28px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(48, 34, 30, 0.05);
}

.page-card p {
  color: var(--muted);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 30px;
  align-items: start;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
}

.form-grid textarea {
  padding-top: 12px;
}

.cart-page-list {
  display: grid;
  gap: 12px;
}

.cart-page-empty {
  color: var(--muted);
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
}

.product-detail {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 44px;
  align-items: center;
}

.product-detail__image {
  display: grid;
  place-items: center;
  min-height: 480px;
  background: var(--white);
}

.product-detail__image img {
  max-height: 430px;
  object-fit: contain;
}

.policy-content {
  max-width: 880px;
  margin: 0 auto;
  color: var(--muted);
}

.policy-content h2 {
  margin-top: 28px;
  color: var(--ink);
  font-size: 34px;
}

.shop-hero p {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--muted);
}

.shop-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 0;
}

.shop-tools div {
  display: flex;
  gap: 12px;
}

.quiz-hero {
  min-height: 620px;
  background:
    linear-gradient(90deg, rgba(246, 238, 238, 0.92), rgba(255, 250, 247, 0.96)),
    url("../images/hero-botanical.jpg") center/cover;
}

.quiz-intro {
  max-width: 520px;
}

.quiz-card h2 {
  font-size: 40px;
}

.quiz-card h3 {
  font-size: 30px;
}

.quiz-options {
  display: grid;
  gap: 10px;
}

.quiz-option {
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: var(--cream);
  text-align: left;
  transition: all 0.25s ease;
}

.quiz-option:hover {
  border-color: var(--green);
  background: var(--green-soft);
}

.quiz-progress {
  height: 5px;
  overflow: hidden;
  background: var(--line);
}

.quiz-progress span {
  display: block;
  height: 100%;
  background: var(--green);
  transition: all 0.25s ease;
}

.result-products {
  display: grid;
  gap: 10px;
}

.result-product {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: var(--cream);
}

.result-product img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: var(--white);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 60;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--white);
  transform: translate(-50%, 120px);
  transition: all 0.25s ease;
}

.toast.show {
  transform: translate(-50%, 0);
}

.reveal-ready {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .product-row--five,
  .team-grid,
  .terms-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .shop-grid,
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-panel {
    grid-template-columns: 1fr 1fr;
  }

  .hero-face {
    display: none;
  }
}

@media (max-width: 820px) {
  .header-main {
    grid-template-columns: auto 1fr auto;
    min-height: 64px;
    padding: 0 18px;
  }

  .header-search,
  .nav-bar,
  .header-actions .icon-btn:not(.cart-toggle) {
    display: none;
  }

  .brand {
    width: 132px;
    justify-self: center;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .hero-panel,
  .about-band,
  .consult-section,
  .benefits-band,
  .quiz-hero {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: auto;
  }

  .hero-copy {
    padding: 46px 22px 12px;
    text-align: center;
    justify-self: center;
  }

  .hero-products {
    min-height: 310px;
    width: min(520px, 100%);
    margin: 0 auto;
  }

  .category-banners,
  .product-row--five,
  .shop-grid,
  .team-grid,
  .category-grid,
  .reviews-grid,
  .terms-grid,
  .promise-strip,
  .promise-strip--light {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-banners,
  .section-block,
  .team-section,
  .category-list,
  .reviews-section,
  .terms-section,
  .why-section,
  .shop-tools,
  .shop-grid {
    padding-left: 18px;
    padding-right: 18px;
  }

  .about-copy {
    justify-self: center;
  }

  .shop-tools,
  .shop-tools div {
    align-items: stretch;
    flex-direction: column;
  }

  .page-grid,
  .split-layout,
  .checkout-layout,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 14px;
  }

  .category-banners,
  .team-grid,
  .category-grid,
  .reviews-grid,
  .terms-grid,
  .promise-strip,
  .promise-strip--light,
  .footer-grid,
  .benefits-band ul {
    grid-template-columns: 1fr;
  }

  .category-banners {
    gap: 14px;
  }

  .banner-card,
  .banner-card img {
    min-height: 175px;
  }

  .product-media {
    min-height: 220px;
  }

  .about-band,
  .consult-section,
  .benefits-band,
  .quiz-hero {
    padding: 46px 18px;
  }

  .cart-panel {
    right: 16px;
    bottom: 16px;
  }
}

/* Premium UI refinement layer: visual polish only, no content or structure changes. */
:root {
  --ink: #221915;
  --muted: #766d68;
  --line: rgba(120, 92, 78, 0.16);
  --rose: #f8eeee;
  --rose-strong: #efd9da;
  --cream: #fffaf6;
  --shell: #f6f0ea;
  --green: #4f6f50;
  --green-soft: #edf5ea;
  --peach: #f4d8c8;
  --blue: #eaf6fb;
  --gold: #b8860b;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(45, 29, 22, 0.1);
  --shadow-soft: 0 12px 30px rgba(45, 29, 22, 0.07);
  --shadow-hover: 0 30px 70px rgba(45, 29, 22, 0.16);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
}

body {
  background:
    radial-gradient(circle at top left, rgba(244, 216, 200, 0.28), transparent 36rem),
    linear-gradient(180deg, #fffaf6 0%, #fff7f0 46%, #fffaf6 100%);
  letter-spacing: 0.005em;
  text-rendering: geometricPrecision;
}

::selection {
  background: rgba(184, 134, 11, 0.22);
}

.top-strip {
  min-height: 34px;
  background: linear-gradient(90deg, #efd8dc, #f5e4e1, #efd8dc);
  color: rgba(34, 25, 21, 0.82);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  box-shadow: inset 0 -1px rgba(255, 255, 255, 0.5);
}

.site-header {
  z-index: 100;
  background: rgba(255, 250, 246, 0.82);
  border-bottom: 1px solid rgba(120, 92, 78, 0.12);
  box-shadow: 0 10px 36px rgba(45, 29, 22, 0.055);
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
}

.site-header.is-scrolled {
  box-shadow: 0 18px 42px rgba(45, 29, 22, 0.095);
}

.header-main {
  min-height: 60px;
}

.header-search {
  min-height: 42px;
  border-color: rgba(120, 92, 78, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.85);
  transition: all 0.25s ease;
}

.header-search:focus-within {
  border-color: rgba(184, 134, 11, 0.42);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(45, 29, 22, 0.08);
}

.brand {
  width: 130px;
  filter: drop-shadow(0 4px 10px rgba(45, 29, 22, 0.05));
}

.icon-btn,
.menu-toggle,
.drawer-close {
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.icon-btn:hover,
.menu-toggle:hover,
.drawer-close:hover {
  background: rgba(184, 134, 11, 0.09);
  color: var(--gold);
  transform: translateY(-1px);
}

.cart-count {
  background: linear-gradient(135deg, var(--ink), #4b352d);
  box-shadow: 0 6px 14px rgba(34, 25, 21, 0.22);
}

.nav-bar {
  gap: clamp(18px, 3vw, 42px);
  padding: 8px 24px 10px;
  border-top: 1px solid rgba(120, 92, 78, 0.12);
  color: rgba(34, 25, 21, 0.78);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-bar a {
  position: relative;
  padding: 5px 0;
}

.nav-bar a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -3px;
  height: 1px;
  background: var(--gold);
  transition: all 0.25s ease;
}

.nav-bar a:hover::after {
  left: 0;
  right: 0;
}

.mobile-drawer {
  border-left: 1px solid rgba(120, 92, 78, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 250, 246, 0.96), rgba(248, 238, 238, 0.96)),
    var(--cream);
  backdrop-filter: blur(18px);
}

/* Premium Hero Slider */
.hero-panel {
  display: block; /* Override previous grid */
  position: relative;
  width: 100%;
  height: clamp(520px, 80vh, 760px);
  overflow: hidden;
  background: var(--rose);
  border-bottom: 1px solid rgba(120, 92, 78, 0.12);
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
  display: flex;
  align-items: center;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transition: transform 7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slide.is-active .hero-slide__image {
  transform: scale(1);
}

.hero-slide__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 250, 246, 0.88) 0%, rgba(255, 250, 246, 0.65) 45%, transparent 100%);
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 0 40px;
  margin-left: max(40px, calc((100vw - var(--max)) / 2 + 40px));
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s, transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.hero-slide.is-active .hero-slide__content {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide__content .eyebrow {
  margin-bottom: 14px;
  color: var(--gold);
  letter-spacing: 0.16em;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

h1 {
  max-width: 11ch;
  letter-spacing: 0;
}

.hero-slide__content h1,
.hero-slide__content h2 {
  font-size: clamp(42px, 5.5vw, 68px);
  line-height: 1.08;
  margin-bottom: 22px;
  color: var(--ink);
  text-wrap: balance;
  font-family: var(--serif);
  font-weight: 600;
}

.page-hero h1,
.shop-hero h1,
.quiz-intro h1 {
  text-wrap: balance;
}

.hero-slide__content p:not(.eyebrow) {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(34, 25, 21, 0.72);
  margin-bottom: 38px;
  max-width: 480px;
}

.pill-btn,
.soft-btn {
  min-height: 44px;
  border-color: rgba(34, 25, 21, 0.92);
  background: linear-gradient(135deg, #211713, #49352e);
  box-shadow: 0 14px 30px rgba(34, 25, 21, 0.16);
}

.pill-btn:hover,
.soft-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(34, 25, 21, 0.22);
}

.pill-btn:focus-visible,
.soft-btn:focus-visible,
.icon-btn:focus-visible,
.quiz-option:focus-visible,
.nav-bar a:focus-visible {
  outline: 3px solid rgba(184, 134, 11, 0.28);
  outline-offset: 3px;
}

.hero-slide__actions {
  display: flex;
  gap: 16px;
}

/* Slider Controls Styling */
.hero-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 250, 246, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  color: var(--ink);
  opacity: 0;
  transition: all 0.4s ease;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(45, 29, 22, 0.08);
}

.hero-panel:hover .hero-control {
  opacity: 1;
}

.hero-control:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.05);
}

.hero-control--prev {
  left: clamp(20px, 4vw, 40px);
}

.hero-control--next {
  right: clamp(20px, 4vw, 40px);
}

.hero-dots {
  position: absolute;
  bottom: clamp(24px, 4vw, 40px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 12px;
}

.hero-dot {
  width: 44px;
  height: 3px;
  border-radius: 2px;
  background: rgba(34, 25, 21, 0.15);
  border: none;
  padding: 0;
  transition: all 0.4s ease;
  cursor: pointer;
}

.hero-dot.is-active {
  background: var(--ink);
}

/* Pill Button Ghost variant */
.pill-btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(34, 25, 21, 0.4);
  box-shadow: none;
}

.pill-btn--ghost:hover {
  background: var(--ink);
  color: var(--white);
}

@media (max-width: 820px) {
  .hero-panel {
    height: 75vh;
    min-height: 500px;
  }
  .hero-slide__content {
    margin-left: 0;
    padding: 0 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-slide__veil {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 250, 246, 0.92) 50%, rgba(255, 250, 246, 0.98) 100%);
  }
  .hero-slide__actions {
    justify-content: center;
  }
  .hero-control {
    display: none;
  }
}

.category-banners,
.section-block,
.team-section,
.category-list,
.reviews-section,
.terms-section,
.why-section,
.shop-tools,
.shop-grid {
  padding-top: clamp(40px, 5vw, 76px);
  padding-bottom: clamp(40px, 5vw, 76px);
}

.category-banners {
  gap: 24px;
}

.banner-card {
  min-height: 250px;
  border: 1px solid rgba(120, 92, 78, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.banner-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 250, 246, 0.68), rgba(255, 250, 246, 0.08));
}

.banner-card img {
  min-height: 250px;
}

.banner-card span {
  z-index: 2;
  color: rgba(34, 25, 21, 0.88);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.section-heading {
  margin-bottom: clamp(28px, 4vw, 46px);
}

.section-heading h2 {
  position: relative;
  padding-bottom: 12px;
}

.section-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 54px;
  height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
}

.section-heading a {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-row,
.shop-grid {
  gap: clamp(18px, 2.4vw, 34px);
}

.product-card {
  position: relative;
  padding: 12px 12px 16px;
  border: 1px solid rgba(120, 92, 78, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 10px 28px rgba(45, 29, 22, 0.055);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.product-card:hover {
  border-color: rgba(184, 134, 11, 0.26);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-hover);
  transform: translateY(-7px);
}

.product-media {
  min-height: 250px;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid rgba(120, 92, 78, 0.09);
  border-radius: var(--radius-sm);
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.9), transparent 36%),
    linear-gradient(145deg, #fffdfb, #f6eee8);
}

.product-media img {
  width: 86%;
  height: 220px;
  filter: drop-shadow(0 18px 18px rgba(45, 29, 22, 0.1));
}

.product-card h3 {
  color: rgba(34, 25, 21, 0.92);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.product-desc {
  color: rgba(118, 109, 104, 0.9);
  line-height: 1.55;
}

.product-card strong {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 0.02em;
}

.soft-btn {
  border-radius: 999px;
  background: rgba(34, 25, 21, 0.92);
  color: var(--white);
  box-shadow: none;
}

.about-band,
.consult-section,
.benefits-band,
.quiz-hero {
  margin: clamp(34px, 5vw, 68px) 0;
  border-block: 1px solid rgba(120, 92, 78, 0.12);
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.6), transparent 24rem),
    linear-gradient(120deg, var(--rose), #fff7f1);
}

.about-copy,
.quiz-intro {
  text-wrap: pretty;
}

.about-image img,
.benefits-band img {
  filter: drop-shadow(0 22px 35px rgba(45, 29, 22, 0.14));
}

.promise-strip {
  gap: 12px;
  max-width: var(--max);
  margin: clamp(42px, 6vw, 78px) auto;
  padding: 0 32px;
  background: transparent;
}

.promise-strip article,
.team-grid article,
.category-grid article,
.reviews-grid article,
.terms-grid article,
.page-card,
.order-summary,
.cart-page-list,
.contact-form,
.quiz-card {
  border: 1px solid rgba(120, 92, 78, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.promise-strip article:hover,
.team-grid article:hover,
.category-grid article:hover,
.reviews-grid article:hover,
.terms-grid article:hover,
.page-card:hover {
  border-color: rgba(184, 134, 11, 0.22);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.team-grid img {
  border-radius: var(--radius-sm);
  filter: saturate(0.96);
}

.consult-section {
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.74), transparent 20rem),
    linear-gradient(115deg, #edf5ea, #fff8f2 74%);
}

.consult-steps span {
  border-color: rgba(79, 111, 80, 0.18);
  box-shadow: 0 8px 18px rgba(45, 29, 22, 0.055);
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.shop-tools select,
.form-grid input,
.form-grid textarea,
.form-grid select {
  min-height: 48px;
  border-color: rgba(120, 92, 78, 0.16);
  border-radius: 14px;
  background: rgba(255, 250, 246, 0.86);
  transition: all 0.25s ease;
}

.contact-form :is(input, select, textarea):focus,
.shop-tools select:focus,
.form-grid :is(input, select, textarea):focus {
  border-color: rgba(184, 134, 11, 0.46);
  box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.09);
}

.benefits-band li {
  border: 1px solid rgba(120, 92, 78, 0.12);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(45, 29, 22, 0.05);
}

.reviews-grid img {
  border: 3px solid var(--white);
  box-shadow: 0 12px 24px rgba(45, 29, 22, 0.1);
}

.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: clamp(50px, 6vw, 86px);
  padding-top: 68px;
  background:
    radial-gradient(circle at 18% 0%, rgba(184, 134, 11, 0.18), transparent 24rem),
    linear-gradient(145deg, #1d1512, #2b211d 64%, #1a1311);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.site-footer a {
  transition: color 0.25s ease, transform 0.25s ease;
}

.site-footer a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.cart-panel {
  border: 1px solid rgba(120, 92, 78, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 246, 0.94);
  backdrop-filter: blur(16px);
}

.cart-line {
  align-items: center;
}

.cart-line button {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: rgba(34, 25, 21, 0.08);
  color: var(--ink);
}

.shop-hero,
.page-hero {
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.9), transparent 28rem),
    linear-gradient(135deg, #f8eeee, #fff8f2);
  border-bottom: 1px solid rgba(120, 92, 78, 0.12);
}

.shop-hero h1,
.page-hero h1 {
  max-width: none;
}

.shop-tools {
  margin-top: 8px;
  padding-top: 32px;
  padding-bottom: 0;
}

.shop-tools span {
  color: var(--muted);
  font-weight: 500;
}

.product-detail__image {
  border: 1px solid rgba(120, 92, 78, 0.12);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.9), transparent 34%),
    linear-gradient(145deg, #fffdfb, #f5ebe6);
  box-shadow: var(--shadow-soft);
}

.product-detail__image img {
  filter: drop-shadow(0 24px 28px rgba(45, 29, 22, 0.14));
}

.quiz-card h2,
.quiz-card h3 {
  text-wrap: balance;
}

.quiz-option {
  border-radius: 14px;
}

.result-product {
  border-radius: 14px;
}

.toast {
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(34, 25, 21, 0.24);
}

@keyframes float-soft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1100px) {
  .hero-panel {
    grid-template-columns: 1fr 0.9fr;
  }

  .hero-copy {
    padding-right: 24px;
  }
}

@media (max-width: 820px) {
  .header-main {
    grid-template-columns: 42px 1fr 42px;
  }

  .header-actions .icon-btn:not(.cart-link),
  .header-actions button.icon-btn {
    display: none;
  }

  .header-actions .cart-link {
    display: inline-grid;
  }

  .hero-copy {
    max-width: 620px;
    padding-top: 54px;
  }

  h1 {
    max-width: none;
  }

  .promise-strip {
    padding-inline: 18px;
  }

  .product-card {
    padding: 10px;
  }
}

@media (max-width: 560px) {
  .top-strip {
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .hero-products {
    min-height: 280px;
  }

  .product-card {
    border-radius: 12px;
    padding: 8px 8px 12px;
  }

  .product-card h3 {
    font-size: 11px;
    min-height: 34px;
    margin-bottom: 2px;
  }

  .product-desc {
    font-size: 10px;
    min-height: 28px;
    margin: 2px 0 4px;
    line-height: 1.3;
  }

  .product-card strong {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .soft-btn {
    min-height: 28px;
    font-size: 10px;
  }

  .product-media {
    min-height: 160px;
    margin-bottom: 10px;
  }

  .product-media img {
    height: 130px;
  }

  .section-heading {
    align-items: center;
    flex-direction: column;
  }
}

/* Footer luxury redesign: presentation-only, preserves all footer content and links. */
.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: clamp(64px, 7vw, 104px);
  padding: clamp(72px, 8vw, 108px) 32px 26px;
  background:
    radial-gradient(circle at 12% 18%, rgba(184, 134, 11, 0.2), transparent 18rem),
    radial-gradient(circle at 88% 14%, rgba(237, 245, 234, 0.12), transparent 22rem),
    linear-gradient(145deg, #19110f 0%, #281d19 48%, #15100e 100%);
  color: var(--cream);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 86%);
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 18px 18px auto;
  height: 1px;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(255, 250, 246, 0.32), rgba(184, 134, 11, 0.52), rgba(255, 250, 246, 0.32), transparent);
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1.45fr) repeat(3, minmax(150px, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
  max-width: var(--max);
  margin: 0 auto;
}

.footer-grid > div {
  min-height: 100%;
  padding: clamp(24px, 2.8vw, 34px);
  border: 1px solid rgba(255, 250, 246, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 250, 246, 0.09), rgba(255, 250, 246, 0.035));
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.16),
    inset 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.footer-grid > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  background:
    radial-gradient(circle at 18% 20%, rgba(184, 134, 11, 0.16), transparent 12rem),
    linear-gradient(145deg, rgba(255, 250, 246, 0.12), rgba(255, 250, 246, 0.045));
}

.footer-grid > div:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 134, 11, 0.36);
  background:
    linear-gradient(145deg, rgba(255, 250, 246, 0.13), rgba(255, 250, 246, 0.055));
  box-shadow:
    0 30px 78px rgba(0, 0, 0, 0.24),
    inset 0 1px rgba(255, 255, 255, 0.12);
}

.footer-logo {
  max-width: 142px;
  margin-bottom: 2px;
  padding: 9px 10px;
  border: 1px solid rgba(255, 250, 246, 0.12);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 250, 246, 0.94), rgba(239, 217, 218, 0.88));
  filter: none;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.site-footer p {
  max-width: 32ch;
  margin: 0;
  color: rgba(255, 250, 246, 0.76);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
}

.site-footer h3 {
  position: relative;
  margin: 0 0 22px;
  padding-bottom: 14px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(25px, 2.2vw, 32px);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.site-footer h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(184, 134, 11, 0));
}

.site-footer a {
  position: relative;
  display: table;
  width: fit-content;
  margin: 11px 0;
  padding: 3px 0;
  color: rgba(255, 250, 246, 0.72);
  font-size: 14px;
  line-height: 1.35;
  transition: color 0.25s ease, transform 0.25s ease;
}

.site-footer a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -1px;
  height: 1px;
  background: var(--gold);
  transition: right 0.25s ease;
}

.site-footer a:hover {
  color: var(--white);
  transform: translateX(5px);
}

.site-footer a:hover::before {
  right: 0;
}

.footer-bottom {
  position: relative;
  max-width: var(--max);
  margin: clamp(26px, 4vw, 44px) auto 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 250, 246, 0.12);
  color: rgba(255, 250, 246, 0.58);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

@media (max-width: 920px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .site-footer {
    margin-top: 54px;
    padding: 56px 18px 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-grid > div,
  .footer-grid > div:first-child {
    grid-column: auto;
    padding: 24px;
    border-radius: 20px;
  }

  .footer-grid > div:first-child {
    align-items: center;
    min-height: auto;
    gap: 16px;
    text-align: center;
  }

  .footer-logo {
    max-width: 132px;
  }

  .site-footer p {
    max-width: 24ch;
    font-size: 14px;
    line-height: 1.75;
  }

  .site-footer a {
    min-height: 34px;
    display: flex;
    align-items: center;
  }
}

/* Premium navbar redesign and mobile overlap fix: preserves all nav content and links. */
.site-header {
  --header-pad: clamp(16px, 3.2vw, 34px);
  z-index: 1000;
  margin: 0;
  background: linear-gradient(180deg, rgba(255, 250, 246, 0.9), rgba(255, 250, 246, 0.76));
  border-bottom: 1px solid rgba(120, 92, 78, 0.13);
  box-shadow: 0 12px 34px rgba(45, 29, 22, 0.07);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
}

.site-header.is-scrolled {
  background: rgba(255, 250, 246, 0.9);
  box-shadow: 0 18px 46px rgba(45, 29, 22, 0.11);
}

.header-main {
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  gap: clamp(18px, 3vw, 34px);
  min-height: 70px;
  padding: 0 var(--header-pad);
}

.header-search {
  max-width: 250px;
  min-height: 40px;
  padding: 0 15px;
  border-color: rgba(120, 92, 78, 0.14);
  background: rgba(255, 255, 255, 0.74);
}

.brand {
  width: clamp(120px, 12vw, 148px);
  justify-self: center;
  transition: width 0.25s ease, transform 0.25s ease, filter 0.25s ease;
}

.site-header.is-scrolled .brand {
  width: clamp(112px, 10.5vw, 136px);
}

.brand:hover {
  transform: translateY(-1px);
  filter: drop-shadow(0 10px 18px rgba(45, 29, 22, 0.11));
}

.header-actions {
  gap: 8px;
}

.icon-btn,
.menu-toggle {
  min-width: 38px;
  width: auto;
  height: 38px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(34, 25, 21, 0.82);
  font-size: 13px;
  line-height: 1;
}

.icon-btn:hover,
.menu-toggle:hover {
  border-color: rgba(184, 134, 11, 0.2);
  background: rgba(255, 255, 255, 0.62);
  color: var(--gold);
}

.cart-link {
  min-width: 42px;
}

.nav-bar {
  min-height: 44px;
  gap: clamp(16px, 3vw, 44px);
  padding: 10px var(--header-pad) 12px;
  border-top: 1px solid rgba(120, 92, 78, 0.1);
  font-size: 11px;
  letter-spacing: 0.13em;
  white-space: nowrap;
}

.nav-bar a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  color: rgba(34, 25, 21, 0.74);
}

.nav-bar a:hover {
  color: var(--gold);
}

.mobile-drawer {
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  width: min(420px, 88vw);
  height: 100dvh;
  max-height: 100dvh;
  padding: 84px clamp(22px, 6vw, 38px) 34px;
  overflow-y: auto;
  border-left: 1px solid rgba(120, 92, 78, 0.16);
  background:
    radial-gradient(circle at 20% 8%, rgba(184, 134, 11, 0.12), transparent 14rem),
    linear-gradient(180deg, rgba(255, 250, 246, 0.98), rgba(248, 238, 238, 0.98));
  box-shadow: -30px 0 80px rgba(45, 29, 22, 0.18);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  transform: translateX(110%);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.34s ease;
  visibility: hidden;
}

.mobile-drawer::before {
  content: "";
  position: fixed;
  inset: 0 100% 0 auto;
  width: 100vw;
  background: rgba(34, 25, 21, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.mobile-drawer.open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-drawer.open::before {
  opacity: 1;
}

.drawer-close {
  position: absolute;
  top: 22px;
  right: 22px;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(120, 92, 78, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
}

.mobile-drawer a {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(120, 92, 78, 0.13);
  color: rgba(34, 25, 21, 0.9);
  font-family: var(--serif);
  font-size: clamp(28px, 9vw, 40px);
  line-height: 1.05;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.mobile-drawer a:hover {
  color: var(--gold);
  padding-left: 8px;
}

body.drawer-open {
  overflow: hidden;
}

@media (max-width: 1180px) {
  .header-main {
    grid-template-columns: minmax(150px, 0.9fr) auto minmax(150px, 0.9fr);
  }

  .nav-bar {
    gap: clamp(12px, 2.4vw, 30px);
    font-size: 10px;
  }

  .header-search {
    max-width: 220px;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
  }

  .header-main {
    grid-template-columns: 46px 1fr 46px;
    min-height: 66px;
    padding: 0 16px;
  }

  .header-search,
  .nav-bar,
  .header-actions .icon-btn:not(.cart-link),
  .header-actions button.icon-btn {
    display: none !important;
  }

  .brand,
  .site-header.is-scrolled .brand {
    width: min(132px, 38vw);
    grid-column: 2;
  }

  .header-actions {
    grid-column: 3;
    justify-content: end;
    gap: 0;
  }

  .header-actions .cart-link {
    display: inline-grid !important;
    width: 42px;
    min-width: 42px;
    height: 42px;
    padding: 0;
  }

  .menu-toggle {
    grid-column: 1;
    grid-row: 1;
    display: inline-grid !important;
    width: 42px;
    min-width: 42px;
    height: 42px;
    padding: 0;
    border-color: rgba(120, 92, 78, 0.14);
    background: rgba(255, 255, 255, 0.56);
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .top-strip {
    min-height: 30px;
    line-height: 30px;
  }

  .header-main {
    min-height: 62px;
    padding: 0 12px;
  }

  .brand,
  .site-header.is-scrolled .brand {
    width: min(118px, 36vw);
  }

  .mobile-drawer {
    width: 100vw;
    padding-top: 82px;
  }
}

/* Hero slider redesign: isolated to the homepage hero only. */
.hero-panel {
  min-height: clamp(540px, 72vh, 760px);
  display: block;
  background: #eadfd9;
  isolation: isolate;
}

.hero-slider,
.hero-slide {
  min-height: inherit;
}

.hero-slider {
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.035);
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease,
    transform 6.5s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 1;
}

.hero-slide__image,
.hero-slide__veil {
  position: absolute;
  inset: 0;
}

.hero-slide__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide__veil {
  background:
    linear-gradient(90deg, rgba(20, 14, 11, 0.66) 0%, rgba(20, 14, 11, 0.34) 34%, rgba(20, 14, 11, 0.08) 60%, rgba(20, 14, 11, 0.12) 100%),
    linear-gradient(180deg, rgba(255, 250, 246, 0.04), rgba(20, 14, 11, 0.12));
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  width: min(430px, calc(100vw - 64px));
  margin-left: max(32px, calc((100vw - var(--max)) / 2 + 32px));
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--white);
  box-shadow: none;
  text-shadow: 0 2px 18px rgba(18, 11, 8, 0.28);
}

.hero-slide .eyebrow {
  color: rgba(255, 236, 190, 0.92);
}

.hero-slide h1,
.hero-slide h2 {
  max-width: 8ch;
  color: var(--white);
  font-size: clamp(38px, 4.5vw, 62px);
  text-wrap: balance;
}

.hero-slide p:not(.eyebrow) {
  max-width: 36ch;
  margin: 18px 0 28px;
  color: rgba(255, 250, 246, 0.86);
  font-size: 16px;
  line-height: 1.8;
}

.hero-slide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-slide .pill-btn {
  min-width: 138px;
  border-color: rgba(255, 250, 246, 0.9);
  background: linear-gradient(135deg, rgba(255, 250, 246, 0.98), rgba(239, 217, 218, 0.96));
  color: var(--ink);
}

.hero-slide .pill-btn:hover {
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.hero-slide .pill-btn--ghost {
  background: rgba(255, 250, 246, 0.08);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 250, 246, 0.32);
  border-radius: 999px;
  background: rgba(255, 250, 246, 0.14);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(18, 11, 8, 0.18);
  backdrop-filter: blur(14px);
  transform: translateY(-50%);
  transition: all 0.25s ease;
}

.hero-control:hover {
  border-color: rgba(255, 250, 246, 0.56);
  background: rgba(255, 250, 246, 0.24);
}

.hero-control--prev {
  left: clamp(16px, 3vw, 32px);
}

.hero-control--next {
  right: clamp(16px, 3vw, 32px);
}

.hero-dots {
  position: absolute;
  right: max(32px, calc((100vw - var(--max)) / 2 + 32px));
  bottom: clamp(22px, 4vw, 34px);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 34px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 250, 246, 0.42);
  transition: all 0.25s ease;
}

.hero-dot.is-active {
  width: 54px;
  background: var(--white);
}

.hero-slide.is-active .hero-slide__content > * {
  animation: hero-rise 0.7s ease both;
}

.hero-slide.is-active .hero-slide__content > :nth-child(2) {
  animation-delay: 0.08s;
}

.hero-slide.is-active .hero-slide__content > :nth-child(3) {
  animation-delay: 0.16s;
}

.hero-slide.is-active .hero-slide__content > :nth-child(4) {
  animation-delay: 0.24s;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .hero-panel {
    min-height: 620px;
  }

  .hero-slide {
    align-items: end;
  }

  .hero-slide__veil {
    background:
      linear-gradient(180deg, rgba(20, 14, 11, 0.14) 0%, rgba(20, 14, 11, 0.44) 42%, rgba(20, 14, 11, 0.82) 100%);
  }

  .hero-slide__content {
    width: calc(100vw - 36px);
    margin: 0 18px 70px;
    padding: 24px;
    border: 1px solid rgba(255, 250, 246, 0.22);
    border-radius: 28px;
    background: rgba(255, 250, 246, 0.14);
    box-shadow:
      0 24px 70px rgba(18, 11, 8, 0.24),
      inset 0 1px rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .hero-slide h1,
  .hero-slide h2 {
    max-width: 12ch;
    font-size: clamp(34px, 8vw, 48px);
  }

  .hero-control {
    top: auto;
    bottom: 20px;
    width: 42px;
    height: 42px;
    transform: none;
  }

  .hero-control--prev {
    left: 18px;
  }

  .hero-control--next {
    left: 68px;
    right: auto;
  }

  .hero-dots {
    right: 18px;
    bottom: 39px;
  }
}

@media (max-width: 560px) {
  .hero-panel {
    min-height: 420px;
  }

  .hero-slide__content {
    width: calc(100vw - 24px);
    margin: 0 12px 72px;
    padding: 20px;
    border-radius: 22px;
  }

  .hero-slide p:not(.eyebrow) {
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.7;
  }

  .hero-slide__actions {
    gap: 10px;
  }

  .hero-slide .pill-btn {
    flex: 1 1 150px;
  }

  .hero-dot {
    width: 24px;
  }

  .hero-dot.is-active {
    width: 42px;
  }
}

/* ─── Final Authority: Editorial Luxury Header ─── */

/* Top announcement strip – ultra-slim, understated */
.top-strip {
  min-height: 30px !important;
  line-height: 30px !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  letter-spacing: 0.2em !important;
  background: #f0e4e0 !important;
  color: rgba(34, 25, 21, 0.7) !important;
  border-bottom: 1px solid rgba(120, 92, 78, 0.08);
  box-shadow: none !important;
}

/* Header – flat, clean, warm white */
.site-header {
  background: #fdfaf7 !important;
  border-bottom: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.site-header.is-scrolled {
  background: rgba(253, 250, 247, 0.98) !important;
  box-shadow: 0 1px 0 rgba(120, 92, 78, 0.1) !important;
}

/* Header main row – generous horizontal space, slim height */
.header-main {
  grid-template-columns: 1fr auto 1fr !important;
  min-height: 56px !important;
  gap: 32px !important;
  max-width: 1320px !important;
  padding: 0 clamp(20px, 4vw, 48px) !important;
}

/* Menu toggle – desktop hidden */
.menu-toggle {
  display: none !important;
}

/* Search – refined pill, hairline border */
.header-search {
  max-width: 190px !important;
  min-height: 34px !important;
  padding: 0 16px !important;
  border: 1px solid rgba(120, 92, 78, 0.15) !important;
  border-radius: 999px !important;
  background: transparent !important;
  font-size: 12px !important;
  color: rgba(34, 25, 21, 0.5) !important;
  box-shadow: none !important;
  transition: border-color 0.3s ease !important;
}

.header-search:focus-within {
  border-color: rgba(120, 92, 78, 0.35) !important;
  background: rgba(255, 255, 255, 0.6) !important;
  box-shadow: none !important;
}

.header-search span {
  font-size: 15px;
  color: rgba(34, 25, 21, 0.4);
}

.header-search input {
  font-size: 12px !important;
  color: rgba(34, 25, 21, 0.6) !important;
  letter-spacing: 0.02em;
}

.header-search input::placeholder {
  color: rgba(34, 25, 21, 0.35);
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* Logo – perfectly centered, refined size */
.brand,
.site-header.is-scrolled .brand {
  width: 110px !important;
  filter: none !important;
  transition: opacity 0.3s ease !important;
}

.brand:hover {
  opacity: 0.8 !important;
  transform: none !important;
  filter: none !important;
}

/* Cart icon – clean, minimal */
.header-actions {
  justify-content: flex-end !important;
  gap: 0 !important;
}

.icon-btn,
.icon-btn.cart-link {
  min-width: 36px !important;
  height: 36px !important;
  padding: 0 !important;
  font-size: 16px !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: rgba(34, 25, 21, 0.7) !important;
  transition: color 0.3s ease !important;
}

.icon-btn:hover {
  background: transparent !important;
  color: rgba(34, 25, 21, 1) !important;
  transform: none !important;
}

.cart-count {
  top: 2px !important;
  right: 0px !important;
  min-width: 16px !important;
  height: 16px !important;
  font-size: 9px !important;
  background: rgba(34, 25, 21, 0.85) !important;
  box-shadow: none !important;
}

/* ─── Navigation bar – editorial luxury ─── */
.nav-bar {
  min-height: 40px !important;
  gap: clamp(24px, 3.5vw, 52px) !important;
  padding: 0 clamp(20px, 4vw, 48px) !important;
  max-width: 1320px !important;
  border-top: 1px solid rgba(120, 92, 78, 0.1) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: rgba(34, 25, 21, 0.6) !important;
}

.nav-bar a {
  min-height: 40px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  color: rgba(34, 25, 21, 0.6) !important;
  position: relative !important;
  transition: color 0.3s ease !important;
}

.nav-bar a::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 8px !important;
  height: 1px !important;
  background: rgba(34, 25, 21, 0.5) !important;
  transform: scaleX(0) !important;
  transform-origin: center !important;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.nav-bar a:hover {
  color: rgba(34, 25, 21, 0.9) !important;
}

.nav-bar a:hover::after {
  transform: scaleX(1) !important;
}

/* Bottom divider line under entire header */
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(120, 92, 78, 0.12);
}

/* ─── Hero – fills remaining viewport ─── */
.hero-panel {
  min-height: clamp(480px, calc(100svh - 126px), 720px) !important;
}

.hero-slider,
.hero-slide {
  min-height: inherit !important;
}

.hero-slide__content {
  width: min(410px, calc(100vw - 72px)) !important;
  margin-left: max(40px, calc((100vw - var(--max)) / 2 + 40px)) !important;
}

.hero-slide .eyebrow {
  margin-bottom: 10px !important;
  font-size: 11px !important;
  letter-spacing: 0.18em !important;
}

.hero-slide h1,
.hero-slide h2 {
  max-width: 10ch !important;
  font-size: clamp(36px, 4.2vw, 58px) !important;
  margin-bottom: 16px !important;
}

.hero-slide p:not(.eyebrow) {
  margin: 14px 0 28px !important;
  font-size: 15px !important;
  line-height: 1.75 !important;
}

.hero-slide__actions {
  gap: 10px !important;
}

.hero-slide .pill-btn {
  min-width: 130px !important;
  min-height: 40px !important;
  font-size: 11px !important;
}

/* Slider controls */
.hero-control {
  width: 40px !important;
  height: 40px !important;
  font-size: 14px !important;
}

.hero-control--prev {
  left: clamp(14px, 2.5vw, 28px) !important;
}

.hero-control--next {
  right: clamp(14px, 2.5vw, 28px) !important;
}

.hero-dots {
  bottom: clamp(18px, 3vw, 30px) !important;
}

.hero-dot {
  width: 28px !important;
  height: 3px !important;
}

.hero-dot.is-active {
  width: 48px !important;
}

/* ─── Tablet (≤900px) ─── */
@media (max-width: 900px) {
  .top-strip {
    min-height: 26px !important;
    line-height: 26px !important;
  }

  .header-main {
    min-height: 48px !important;
    grid-template-columns: 38px 1fr 38px !important;
    padding: 0 14px !important;
  }

  .header-search {
    display: none !important;
  }

  .nav-bar {
    display: none !important;
  }

  .brand,
  .site-header.is-scrolled .brand {
    width: min(100px, 30vw) !important;
  }

  .menu-toggle {
    display: inline-grid !important;
    place-items: center !important;
    width: 38px !important;
    min-width: 38px !important;
    height: 38px !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    border: 1px solid rgba(120, 92, 78, 0.12) !important;
    border-radius: 999px !important;
    background: transparent !important;
    font-size: 18px !important;
    color: rgba(34, 25, 21, 0.6) !important;
  }

  .header-actions .cart-link {
    width: 38px !important;
    min-width: 38px !important;
    height: 38px !important;
  }

  .hero-panel {
    min-height: min(620px, calc(100svh - 74px)) !important;
  }

  .hero-slide__content {
    width: min(390px, calc(100vw - 88px)) !important;
    margin: 0 0 64px 16px !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .hero-slide h1,
  .hero-slide h2 {
    max-width: 14ch !important;
    font-size: clamp(32px, 7.5vw, 46px) !important;
  }

  .hero-control {
    width: 38px !important;
    height: 38px !important;
  }

  .hero-control--prev {
    left: 14px !important;
  }

  .hero-control--next {
    left: 60px !important;
    right: auto !important;
  }

  .hero-dots {
    right: 16px !important;
    bottom: 32px !important;
  }
}

/* ─── Mobile (≤560px) ─── */
@media (max-width: 560px) {
  .top-strip {
    min-height: 24px !important;
    line-height: 24px !important;
    font-size: 9px !important;
  }

  .header-main {
    min-height: 44px !important;
    padding: 0 12px !important;
  }

  .brand,
  .site-header.is-scrolled .brand {
    width: min(90px, 28vw) !important;
  }

  .hero-panel {
    height: 70vw !important;
    min-height: 280px !important;
    max-height: 360px !important;
  }

  .hero-slide {
    align-items: center !important;
    justify-content: center !important;
  }

  .hero-slide__content {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 20px 16px !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .hero-slide h1,
  .hero-slide h2 {
    font-size: clamp(24px, 6.5vw, 34px) !important;
  }

  .hero-slide p:not(.eyebrow) {
    margin: 8px 0 16px !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
  }

  .hero-slide .pill-btn {
    min-width: 100px !important;
    min-height: 34px !important;
    flex: 1 1 120px !important;
    font-size: 11px !important;
  }

  .hero-slide__actions {
    gap: 8px !important;
    flex-wrap: wrap !important;
  }

  .hero-dot {
    width: 22px !important;
  }

  .hero-dot.is-active {
    width: 38px !important;
  }

  .hero-slide__image {
    object-position: 78% center !important;
  }

  .section-block {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  .hero-dots {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    bottom: 12px !important;
  }

  .hero-control {
    bottom: 12px !important;
    top: auto !important;
    transform: none !important;
  }
}


/* ==========================================
   PREMIUM FOOTER
   ========================================== */
.premium-footer {
  background: var(--ink);
  color: var(--cream);
  margin-top: 60px;
  padding: 80px 32px 32px;
  position: relative;
  overflow: hidden;
}

.premium-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
}

.premium-footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 60px;
  max-width: var(--max);
  margin: 0 auto;
}

.footer-brand-col {
  padding-right: 40px;
}

.premium-footer .footer-logo {
  display: inline-block;
  margin-bottom: 24px;
  max-width: 160px;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}

.premium-footer .footer-logo:hover {
  opacity: 0.85;
}

.brand-tagline {
  color: rgba(255, 250, 247, 0.75);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 32px;
  font-weight: 300;
}

.footer-newsletter label {
  display: block;
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer-newsletter .input-group {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: border-color 0.3s ease;
}

.footer-newsletter .input-group:focus-within {
  border-bottom-color: var(--gold);
}

.footer-newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--white);
  padding: 12px 0;
  font-size: 14px;
  outline: none;
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter button {
  background: transparent;
  border: none;
  color: var(--gold);
  font-size: 20px;
  cursor: pointer;
  padding: 0 10px;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-newsletter button:hover {
  transform: translateX(4px);
}

.footer-links-col h3 {
  font-family: var(--serif);
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 0 0 24px;
}

.footer-links-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-col li {
  margin-bottom: 14px;
}

.footer-links-col a, .footer-links-col span {
  color: rgba(255, 250, 247, 0.65);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  font-weight: 300;
}

.footer-links-col a:hover {
  color: var(--gold);
  transform: translateX(3px);
}

.contact-info li {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.premium-footer-bottom {
  max-width: var(--max);
  margin: 80px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--cream);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(212, 175, 55, 0.2);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-legal p {
  margin: 0;
  color: rgba(255, 250, 247, 0.5);
  font-size: 13px;
}

.legal-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.legal-links a {
  color: rgba(255, 250, 247, 0.5);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: var(--white);
}

.legal-links .dot {
  color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 1024px) {
  .premium-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .footer-brand-col {
    grid-column: span 2;
    padding-right: 0;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .premium-footer {
    padding: 60px 24px 24px;
  }
  .premium-footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-brand-col {
    grid-column: 1;
  }
  .premium-footer-bottom {
    flex-direction: column;
    text-align: center;
    margin-top: 60px;
  }
  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }
}

/* Production hardening additions */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header-search-form {
  display: none;
  align-items: center;
}

.header-search-form.is-open {
  display: flex;
}

.header-actions .search-btn {
  display: inline-grid !important;
}

.header-search-form input {
  min-width: 180px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: var(--white);
}

@media (max-width: 900px) {
  .header-actions {
    gap: 4px !important;
  }

  .header-actions .icon-btn.profile-link {
    display: inline-grid !important;
    width: 38px !important;
    min-width: 38px !important;
    height: 38px !important;
    margin-left: 0 !important;
  }
}


.contact-form label,
.form-grid label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
}

.cart-line label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cart-line input {
  width: 56px;
}

.checkout-link.is-disabled {
  pointer-events: none;
  opacity: 0.55;
}

.form-error,
.form-status {
  color: #a33a3a;
}

.breadcrumbs {
  padding-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.trust-list {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  color: var(--muted);
}

.trust-list p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

/* Product page typography */
.product-detail article {
  max-width: 560px;
}

.product-detail .eyebrow {
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: 0.16em;
}

.product-detail h1 {
  max-width: none;
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.08;
}

.product-detail article > p:not(.eyebrow) {
  max-width: 48ch;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.product-detail h2 {
  margin-bottom: 22px;
  font-family: var(--sans);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2;
}

.product-detail h2 del {
  margin-left: 8px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
}

/* ==========================================
   THEME CATEGORY GRID (Luxury Redesign)
   ========================================== */
.theme-category-grid {
  max-width: var(--max);
  margin: 60px auto;
  padding: 0 32px 32px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.theme-cat-card {
  position: relative;
  aspect-ratio: 1 / 1; /* Perfect Square from reference image */
  border-radius: 20px; /* High-end rounded corners */
  border: 1px solid var(--line);
  background: var(--shell);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Clips full-bleed background images */
  box-shadow: 0 10px 30px rgba(48, 34, 30, 0.05);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
  cursor: pointer;
}

/* Elegant Inset Border Frame (Double Frame Effect) */
.theme-cat-card::before {
  content: '';
  position: absolute;
  inset: 12px; /* 12px padding inside */
  border: 1.2px solid rgba(255, 255, 255, 0.7); /* Translucent white line */
  border-radius: 12px;
  z-index: 3;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.theme-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(82, 111, 84, 0.08);
}

/* Transition inset frame to brand gold on hover */
.theme-cat-card:hover::before {
  border-color: var(--gold);
  inset: 10px;
}

.theme-cat-media {
  position: absolute;
  inset: 0; /* Fills entire card area */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.theme-cat-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Fills card completely from edge to edge */
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.theme-cat-card:hover .theme-cat-img {
  transform: scale(1.08); /* Sophisticated slow zoom */
}

/* Luxury Glassmorphism Bottom-Left Tab Badge */
.theme-cat-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  padding: 10px 24px;
  border-top-right-radius: 16px; /* curves inside the card bounds */
  color: var(--ink);
  font-family: var(--serif); /* Serif font like the reference image */
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-top: 1px solid rgba(184, 134, 11, 0.15);
  border-right: 1px solid rgba(184, 134, 11, 0.15);
  z-index: 4;
  transition: all 0.3s ease;
}

.theme-cat-card:hover .theme-cat-badge {
  background: var(--white);
  color: var(--gold); /* transition to brand gold on hover */
  padding-right: 28px;
}

/* Responsive styling */
@media (max-width: 992px) {
  .theme-category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .theme-category-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-left: 20px;
    padding-right: 20px;
    scrollbar-width: none;
    margin: 24px auto 10px;
  }
  .theme-category-grid::-webkit-scrollbar {
    display: none;
  }
  .theme-cat-card {
    flex: 0 0 145px;
    aspect-ratio: 1 / 1;
    scroll-snap-align: center;
  }
  .theme-cat-badge {
    font-size: 11px;
    padding: 8px 16px;
  }
}

/* ==========================================
   ABOUT US SECTION (Luxury Redesign)
   ========================================== */
section.about-band {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 60px;
  max-width: var(--max);
  margin: 80px auto;
  padding: 80px 60px;
  background: 
    radial-gradient(circle at 90% 10%, rgba(244, 216, 200, 0.18), transparent 45rem),
    linear-gradient(135deg, var(--green) 0%, #354a36 100%);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  color: var(--white);
  box-shadow: 0 20px 50px rgba(79, 111, 80, 0.12);
  border: 1px solid rgba(184, 134, 11, 0.15);
  border-block: none;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

section.about-band:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(79, 111, 80, 0.18);
  border-color: rgba(184, 134, 11, 0.3);
}

/* Elegant Inset Border Frame (Double Frame Effect) */
section.about-band::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1.2px solid rgba(255, 255, 255, 0.15);
  border-radius: calc(var(--radius-lg) - 8px);
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1;
  background: none;
  border-block: none;
}

section.about-band:hover::before {
  border-color: var(--gold);
  inset: 16px;
}

/* Luxury Glassmorphism Top-Left Tab Badge */
section.about-band::after {
  content: 'Our Philosophy';
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 24px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 16px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 3;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

section.about-band:hover::after {
  background: rgba(255, 255, 255, 0.15);
  color: var(--gold);
  border-color: rgba(184, 134, 11, 0.3);
  padding-right: 28px;
}

section.about-band .about-copy {
  max-width: 580px;
  justify-self: start;
  text-align: left;
  z-index: 2;
  padding-left: 20px;
}

section.about-band .about-copy h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4.5vw, 48px);
  color: var(--white);
  margin: 0 0 24px 0;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: none;
}

section.about-band .about-copy h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin-top: 16px;
  transition: width 0.4s ease;
}

section.about-band:hover .about-copy h2::after {
  width: 80px;
}

section.about-band .about-copy p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82) !important;
  margin: 0 0 20px 0;
  font-weight: 300;
}

section.about-band .about-copy p:last-of-type {
  margin-bottom: 0;
}

section.about-band .about-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

section.about-band .about-image::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  transition: transform 0.8s ease;
}

section.about-band:hover .about-image::before {
  transform: scale(1.15);
}

section.about-band .about-image img {
  max-height: 360px;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

section.about-band:hover .about-image img {
  transform: scale(1.06) translateY(-8px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  section.about-band {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 80px 40px 60px;
    margin: 40px 24px;
  }
  section.about-band .about-copy {
    justify-self: center;
    text-align: center;
    padding-left: 0;
  }
  section.about-band .about-copy h2::after {
    margin: 16px auto 0;
  }
  section.about-band .about-image {
    order: -1;
  }
}

@media (max-width: 600px) {
  section.about-band {
    padding: 60px 20px 40px;
    margin: 30px 16px;
  }
  section.about-band::before {
    inset: 12px;
  }
  section.about-band::after {
    top: 12px;
    left: 12px;
    font-size: 10px;
    padding: 6px 16px;
  }
  section.about-band .about-image img {
    max-height: 260px;
  }
}

