/*
Theme Name: Basslina
Theme URI: https://basslina.com
Author: basslina
Author URI: https://basslina.com
Description: Luxury cosmetics brand theme for basslina by Dr Nadin — royal-inspired beauty, bilingual EN/AR.
Version: 4.0.0
Requires at least: 6.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: basslina
Tags: beauty, luxury, bilingual, rtl-language-support, custom-colors, custom-logo, blog
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --ivory:      #FAF8F5;
  --ivory-dark: #F0EBE0;
  --beige:      #E8DFD0;
  --gold:       #C4924A;
  --gold-light: #E5C88A;
  --gold-dark:  #9A6E30;
  --amber:      #7B4F2A;
  --plum:       #1B2A6B;
  --plum-light: #2E44A3;
  --ink:        #1C1817;
  --ink-soft:   #3D3532;
  --muted:      #8A7F76;
  --muted-light:#B5ADA6;
  --white:      #FFFFFF;
  --shadow-sm:  0 2px 12px rgba(28,24,23,.06);
  --shadow-md:  0 8px 32px rgba(28,24,23,.10);
  --shadow-lg:  0 20px 60px rgba(28,24,23,.14);
  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  28px;
  --transition: .35s cubic-bezier(.25,.46,.45,.94);
  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans:  'Jost', 'DM Sans', system-ui, sans-serif;
  --font-arabic:'Noto Serif Arabic', 'Arial', sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.75;
  overflow-x: hidden;
}
body.rtl { font-family: var(--font-arabic); direction: rtl; text-align: right; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.18;
  color: var(--ink);
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; font-family: var(--font-sans); letter-spacing: .12em; text-transform: uppercase; font-weight: 500; }
p { color: var(--ink-soft); }
.lead { font-size: 1.15rem; color: var(--muted); line-height: 1.85; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  flex: 0 0 32px;
  height: 1px;
  background: var(--gold);
  opacity: .5;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: 1220px; margin: 0 auto; padding: 0 32px; }
.container--narrow { max-width: 820px; margin: 0 auto; padding: 0 32px; }
.container--wide { max-width: 1520px; margin: 0 auto; padding: 0 48px; }

section { padding: 96px 0; }
section.section--sm { padding: 56px 0; }
section.section--lg { padding: 140px 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: 60px;
  transition: all var(--transition);
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn--primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,146,74,.35);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--ivory);
}
.btn--ghost-light {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(250,248,245,.4);
}
.btn--ghost-light:hover {
  background: var(--ivory);
  color: var(--ink);
}
.btn--plum {
  background: var(--plum);
  color: var(--ivory);
  border-color: var(--plum);
}
.btn--plum:hover {
  background: var(--plum-light);
  color: var(--ivory);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,42,107,.35);
}

/* WhatsApp button */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: all var(--transition);
}
.rtl .whatsapp-float { right: auto; left: 32px; }
.whatsapp-float:hover { transform: scale(1.1); color: white; }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* ============================================================
   READING PROGRESS BAR
   ============================================================ */
#reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 9999;
  transition: width .1s linear;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all var(--transition);
}
.site-header.scrolled {
  background: rgba(250,248,245,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.site-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.site-logo .logo-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: .04em;
  line-height: 1;
}
.site-logo .logo-byline {
  font-family: var(--font-sans);
  font-size: .58rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 7px;
}
.site-logo .logo-byline::before,.site-logo .logo-byline::after {
  content: '—';
  color: var(--gold);
  font-size: .5rem;
}
.site-logo img { height: 48px; width: auto; }

/* Nav */
.site-nav { display: flex; align-items: center; gap: 36px; }
.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-menu a {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-bottom: 3px;
  border-bottom: 1.5px solid transparent;
  transition: all var(--transition);
}
.nav-menu a:hover, .nav-menu .current-menu-item a {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.nav-actions { display: flex; align-items: center; gap: 16px; }

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--ivory-dark);
  border-radius: 30px;
  padding: 4px;
}
.lang-toggle button {
  padding: 5px 14px;
  border-radius: 24px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  border: none;
  background: transparent;
  color: var(--muted);
  transition: all .2s;
}
.lang-toggle button.active {
  background: var(--gold);
  color: white;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: all var(--transition);
}

@media (max-width: 900px) {
  .nav-menu { display: none; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--ivory);
    z-index: 200;
    justify-content: center;
    align-items: center;
    gap: 32px;
  }
  .nav-menu.open a { font-size: 1.4rem; letter-spacing: .05em; }
  .menu-toggle { display: flex; }
  .menu-close { position: absolute; top: 24px; right: 24px; font-size: 1.5rem; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--ivory-dark);
  padding-top: 80px;
  overflow: hidden;
}
.hero-content {
  padding: 80px 0 80px 8vw;
  position: relative;
  z-index: 2;
}
.hero-image {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  transition: transform 8s ease;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ivory-dark) 0%, transparent 40%);
}
.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 28px;
  color: var(--ink);
}
.hero-tagline em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 48px;
  line-height: 1.9;
}
.hero-arabic {
  font-family: var(--font-arabic);
  font-size: .9rem;
  color: var(--gold);
  letter-spacing: .05em;
  margin-bottom: 40px;
  opacity: .85;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badge {
  position: absolute;
  bottom: 48px;
  left: 8vw;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-badge::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { height: 60vw; }
  .hero-image::after { background: linear-gradient(180deg, transparent 50%, var(--ivory-dark) 100%); }
  .hero-content { padding: 48px 24px 64px; order: 2; }
  .hero-image { order: 1; }
  .hero-badge { position: static; margin-top: 40px; }
}

/* ============================================================
   STORY SECTION
   ============================================================ */
.story { background: var(--ivory); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.story-text p {
  margin-bottom: 24px;
  font-size: 1.05rem;
  line-height: 1.95;
}
.story-ornament {
  text-align: center;
  color: var(--gold);
  font-size: 1.8rem;
  opacity: .4;
  margin: 32px 0;
  letter-spacing: .5em;
}
.story-pullquote {
  background: var(--plum);
  color: var(--ivory);
  padding: 48px 40px;
  border-radius: var(--radius-md);
  position: sticky;
  top: 120px;
}
.story-pullquote blockquote {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 24px;
  color: var(--ivory);
}
.story-pullquote cite {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

@media (max-width: 860px) {
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-pullquote { position: static; }
}

/* ============================================================
   PRODUCT HERO SECTION
   ============================================================ */
.product-hero {
  background: var(--ink);
  color: var(--ivory);
  overflow: hidden;
  position: relative;
}
.product-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(196,146,74,.15) 0%, transparent 60%);
}
.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  min-height: 85vh;
}
.product-hero-image {
  position: relative;
  height: 85vh;
  overflow: hidden;
}
.product-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.product-hero-content {
  padding: 60px 8vw 60px 60px;
  position: relative;
  z-index: 1;
}
.product-name {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--ivory);
  font-weight: 300;
  margin-bottom: 8px;
}
.product-subtitle {
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.product-desc {
  color: var(--muted-light);
  font-size: 1rem;
  line-height: 1.9;
  max-width: 440px;
  margin-bottom: 48px;
}
.ingredient-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}
.ingredient-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: rgba(250,248,245,.06);
  border: 1px solid rgba(250,248,245,.1);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.ingredient-item:hover { background: rgba(196,146,74,.12); border-color: rgba(196,146,74,.3); }
.ingredient-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(196,146,74,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}
.ingredient-label { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-light); }
.ingredient-name { font-family: var(--font-serif); font-size: 1.05rem; color: var(--ivory); margin-top: 2px; }

@media (max-width: 860px) {
  .product-hero-grid { grid-template-columns: 1fr; }
  .product-hero-image { height: 50vw; }
  .product-hero-content { padding: 48px 24px; }
  .ingredient-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BENEFITS ICONS
   ============================================================ */
.benefits {
  background: var(--ivory-dark);
  text-align: center;
  padding: 80px 0;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 56px;
}
.benefit-item { padding: 36px 24px; }
.benefit-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--gold);
  font-size: 1.6rem;
  transition: all var(--transition);
}
.benefit-item:hover .benefit-icon {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.08);
}
.benefit-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.benefit-desc { font-size: .88rem; color: var(--muted); }

@media (max-width: 780px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   THE RITUAL SECTION
   ============================================================ */
.ritual { background: var(--ivory); }
.ritual-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
  background: var(--beige);
}
.ritual-step {
  background: var(--ivory);
  padding: 60px 40px;
  position: relative;
  transition: all var(--transition);
}
.ritual-step:hover { background: var(--plum); }
.ritual-step:hover .step-num,
.ritual-step:hover h3,
.ritual-step:hover p { color: var(--ivory); }
.ritual-step:hover .step-line { background: var(--gold); }

.step-num {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 300;
  color: var(--beige);
  line-height: 1;
  margin-bottom: 28px;
  transition: color var(--transition);
}
.ritual-step h3 { font-size: 1.6rem; margin-bottom: 16px; transition: color var(--transition); }
.ritual-step p { font-size: .92rem; color: var(--muted); transition: color var(--transition); }
.step-line { width: 32px; height: 2px; background: var(--gold); margin-bottom: 24px; transition: background var(--transition); }

@media (max-width: 780px) { .ritual-steps { grid-template-columns: 1fr; } }

/* ============================================================
   DOCTOR'S PROMISE
   ============================================================ */
.doctor { background: var(--plum); color: var(--ivory); }
.doctor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.doctor-content .eyebrow { color: var(--gold-light); }
.doctor-content .eyebrow::before, .doctor-content .eyebrow::after { background: var(--gold-light); }
.doctor-content h2 { color: var(--ivory); }
.doctor-content p { color: rgba(250,248,245,.75); margin-bottom: 20px; }
.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.trust-badge {
  background: rgba(250,248,245,.08);
  border: 1px solid rgba(250,248,245,.15);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  text-align: center;
  transition: all var(--transition);
}
.trust-badge:hover { background: rgba(196,146,74,.2); border-color: var(--gold); }
.trust-badge .badge-icon { font-size: 1.6rem; margin-bottom: 10px; }
.trust-badge .badge-label { font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold-light); }
.trust-badge .badge-val { font-family: var(--font-serif); font-size: 1rem; color: var(--ivory); }
.doctor-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.doctor-image img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.doctor-image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(27,42,107,.6));
}

@media (max-width: 860px) {
  .doctor-grid { grid-template-columns: 1fr; }
  .doctor-image { order: -1; }
  .trust-badges { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   COMING SOON — FUTURE LINES
   ============================================================ */
.coming-soon { background: var(--ivory-dark); overflow: hidden; }
.lines-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.line-card {
  padding: 56px 36px;
  border: 1.5px solid var(--beige);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  background: var(--ivory);
}
.line-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.line-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.line-card:hover::before { transform: scaleX(1); }
.line-code {
  font-family: var(--font-sans);
  font-size: .65rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.line-name {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 16px;
  color: var(--ink);
}
.line-desc { font-size: .9rem; color: var(--muted); line-height: 1.8; margin-bottom: 28px; }
.coming-tag {
  display: inline-block;
  padding: 5px 16px;
  background: var(--ivory-dark);
  border: 1px solid var(--beige);
  border-radius: 30px;
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 860px) { .lines-grid { grid-template-columns: 1fr; } }

/* ============================================================
   INSTAGRAM / COMMUNITY SECTION
   ============================================================ */
.community { background: var(--ivory); text-align: center; }
.hashtag {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--plum);
  font-style: italic;
  margin-bottom: 48px;
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-top: 48px;
}
.insta-item {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--beige);
  position: relative;
}
.insta-item::after {
  content: '♛';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold);
  opacity: 0;
  background: rgba(27,42,107,.6);
  transition: opacity var(--transition);
}
.insta-item:hover::after { opacity: 1; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.insta-item:hover img { transform: scale(1.08); }
.insta-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--ivory-dark), var(--beige));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  opacity: .4;
}

@media (max-width: 780px) { .instagram-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .instagram-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-strip {
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
  padding: 72px 0;
  text-align: center;
}
.newsletter-strip h2 { color: var(--ivory); margin-bottom: 12px; }
.newsletter-strip p { color: rgba(250,248,245,.7); margin-bottom: 36px; }
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
  background: var(--ivory);
  border-radius: 60px;
  padding: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.newsletter-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 20px;
  font-family: var(--font-sans);
  font-size: .88rem;
  color: var(--ink);
  outline: none;
}
.newsletter-form input::placeholder { color: var(--muted); }
.newsletter-form button { flex-shrink: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: var(--ivory);
  padding: 72px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(250,248,245,.1);
  margin-bottom: 36px;
}
.footer-brand .logo-name { color: var(--ivory); font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 8px; }
.footer-brand .logo-byline { color: rgba(250,248,245,.4); }
.footer-desc { color: rgba(250,248,245,.5); font-size: .88rem; margin-top: 16px; margin-bottom: 24px; line-height: 1.8; }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(250,248,245,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,248,245,.6);
  font-size: .9rem;
  transition: all var(--transition);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(196,146,74,.1); }
.footer-col h6 {
  font-family: var(--font-sans);
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { color: rgba(250,248,245,.55); font-size: .88rem; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: .78rem;
  color: rgba(250,248,245,.3);
}
.footer-bottom a { color: rgba(250,248,245,.4); }
.footer-bottom a:hover { color: var(--gold); }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   BLOG — INDEX PAGE
   ============================================================ */
.blog-hero {
  background: var(--ink);
  color: var(--ivory);
  padding: 160px 0 80px;
  text-align: center;
}
.blog-hero h1 { color: var(--ivory); font-size: clamp(2.4rem, 5vw, 4.5rem); margin-bottom: 16px; }
.blog-hero .lead { color: rgba(250,248,245,.6); max-width: 560px; margin: 0 auto; }

/* Category Filter */
.cat-filter {
  background: var(--ivory);
  border-bottom: 1px solid var(--beige);
  padding: 20px 0;
  position: sticky;
  top: 72px;
  z-index: 50;
}
.cat-tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tab {
  padding: 8px 22px;
  border-radius: 30px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
  background: transparent;
  border: 1.5px solid var(--beige);
  color: var(--muted);
  transition: all var(--transition);
}
.cat-tab:hover, .cat-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* Featured Post */
.featured-post {
  background: var(--ivory-dark);
  padding: 72px 0;
}
.featured-post-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.featured-post-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.featured-post-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.featured-post-image:hover img { transform: scale(1.03); }
.featured-badge {
  display: inline-block;
  padding: 4px 16px;
  background: var(--gold);
  color: white;
  border-radius: 30px;
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.featured-post-content h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 16px; }
.featured-post-content h2 a:hover { color: var(--gold); }
.post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.post-meta .sep { color: var(--beige); }
.post-meta .cat-label { color: var(--gold); font-weight: 600; }

@media (max-width: 860px) {
  .featured-post-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* Blog Grid */
.blog-grid-section { padding: 72px 0; }
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 48px;
}
.post-card {
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}
.post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}
.post-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--ivory-dark);
}
.post-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.post-card:hover .post-card-image img { transform: scale(1.06); }
.post-card-image .no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--gold);
  opacity: .3;
  background: linear-gradient(135deg, var(--ivory-dark), var(--beige));
}
.post-card-body { padding: 28px; }
.post-card-cat { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.post-card-title { font-family: var(--font-serif); font-size: 1.3rem; line-height: 1.3; margin-bottom: 12px; }
.post-card-title a:hover { color: var(--gold); }
.post-card-excerpt { font-size: .88rem; color: var(--muted); line-height: 1.75; margin-bottom: 20px; }
.post-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--ivory-dark);
  font-size: .72rem;
  color: var(--muted-light);
}
.read-more-link {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.read-more-link:hover { gap: 12px; color: var(--gold-dark); }

@media (max-width: 900px) { .posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .posts-grid { grid-template-columns: 1fr; } }

/* Pagination */
.pagination-wrap { text-align: center; padding: 56px 0; }
.pagination-wrap .page-numbers {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.page-numbers a, .page-numbers span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 500;
  border: 1.5px solid var(--beige);
  color: var(--muted);
  transition: all var(--transition);
}
.page-numbers a:hover, .page-numbers .current {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}

/* ============================================================
   SINGLE POST
   ============================================================ */
.single-post-hero {
  background: var(--ink);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.single-post-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(28,24,23,.6);
  z-index: 1;
}
.single-post-hero .post-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.single-post-hero .container { position: relative; z-index: 2; }
.single-post-hero .eyebrow { color: var(--gold-light); margin-bottom: 24px; }
.single-post-hero .eyebrow::before, .single-post-hero .eyebrow::after { background: var(--gold-light); }
.single-post-hero h1 { color: var(--ivory); max-width: 820px; }
.single-post-hero .post-meta { margin-top: 24px; color: rgba(250,248,245,.6); }

/* Post Content */
.post-content-wrap { padding: 72px 0; }
.post-content-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 72px;
  align-items: start;
}
.post-body { font-size: 1.05rem; line-height: 1.95; }
.post-body h2 { font-size: 1.9rem; margin: 48px 0 20px; color: var(--plum); }
.post-body h3 { font-size: 1.4rem; margin: 36px 0 16px; }
.post-body p { margin-bottom: 24px; }
.post-body a { color: var(--gold); text-decoration: underline; text-decoration-color: rgba(196,146,74,.4); }
.post-body ul, .post-body ol { margin: 24px 0 24px 28px; }
.post-body li { margin-bottom: 10px; }
.post-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 20px 28px;
  margin: 32px 0;
  background: var(--ivory-dark);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.post-body blockquote p { font-family: var(--font-serif); font-size: 1.3rem; color: var(--plum); margin: 0; }
.post-body img { border-radius: var(--radius-md); margin: 36px 0; box-shadow: var(--shadow-md); }
.post-body .wp-caption { width: auto !important; }
.post-body table { width: 100%; border-collapse: collapse; margin: 32px 0; }
.post-body th { background: var(--plum); color: var(--ivory); padding: 12px 20px; text-align: left; font-size: .82rem; }
.post-body td { padding: 12px 20px; border-bottom: 1px solid var(--ivory-dark); font-size: .92rem; }

/* Table of Contents */
.toc-box {
  background: var(--ivory-dark);
  border: 1px solid var(--beige);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 28px;
  margin: 40px 0;
}
.toc-box h6 {
  font-family: var(--font-sans);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.toc-box ol { margin-left: 20px; }
.toc-box li { margin-bottom: 8px; font-size: .9rem; }
.toc-box a { color: var(--plum); }
.toc-box a:hover { color: var(--gold); }

/* Sidebar */
.post-sidebar { position: sticky; top: 100px; }
.sidebar-widget {
  margin-bottom: 36px;
  padding: 28px;
  background: var(--ivory);
  border: 1px solid var(--beige);
  border-radius: var(--radius-md);
}
.sidebar-widget h6 {
  font-family: var(--font-sans);
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--beige);
}
.sidebar-post {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--ivory-dark);
}
.sidebar-post:last-child { border-bottom: none; }
.sidebar-post-img { width: 64px; height: 64px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; background: var(--beige); }
.sidebar-post-title { font-family: var(--font-serif); font-size: .95rem; line-height: 1.3; }
.sidebar-post-title a:hover { color: var(--gold); }
.sidebar-post-date { font-size: .7rem; color: var(--muted); margin-top: 4px; }

/* Share buttons */
.share-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 28px 0;
  border-top: 1px solid var(--beige);
  border-bottom: 1px solid var(--beige);
  margin: 48px 0;
}
.share-label { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-right: 4px; }
.share-btn {
  padding: 8px 20px;
  border-radius: 30px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1.5px solid;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.share-btn.whatsapp { border-color: #25D366; color: #25D366; }
.share-btn.whatsapp:hover { background: #25D366; color: white; }
.share-btn.instagram { border-color: #E4405F; color: #E4405F; }
.share-btn.instagram:hover { background: #E4405F; color: white; }
.share-btn.twitter { border-color: #000; color: #000; }
.share-btn.twitter:hover { background: #000; color: white; }

/* Tags */
.post-tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 28px 0; }
.post-tag {
  padding: 5px 16px;
  background: var(--ivory-dark);
  border: 1px solid var(--beige);
  border-radius: 30px;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: all var(--transition);
}
.post-tag:hover { background: var(--gold); border-color: var(--gold); color: white; }

/* Author Box */
.author-box {
  background: var(--plum);
  color: var(--ivory);
  padding: 36px;
  border-radius: var(--radius-md);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin: 48px 0;
}
.author-avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--gold); }
.author-name { font-family: var(--font-serif); font-size: 1.1rem; color: var(--ivory); margin-bottom: 4px; }
.author-role { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 12px; }
.author-bio { font-size: .88rem; color: rgba(250,248,245,.7); line-height: 1.8; }

/* Related Posts */
.related-posts { padding: 56px 0; background: var(--ivory-dark); }
.related-posts h4 { text-align: center; font-size: 1.1rem; letter-spacing: .2em; text-transform: uppercase; font-family: var(--font-sans); color: var(--muted); margin-bottom: 40px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

@media (max-width: 860px) {
  .post-content-grid { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
  .related-grid { grid-template-columns: 1fr; }
}

/* Comments */
.comments-section { padding: 56px 0; }
.comment-list { list-style: none; }
.comment-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--ivory-dark);
  display: flex;
  gap: 20px;
}
.comment-avatar { width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0; object-fit: cover; background: var(--beige); }
.comment-content { flex: 1; }
.comment-author { font-weight: 600; font-size: .9rem; }
.comment-date { font-size: .72rem; color: var(--muted); margin-bottom: 10px; }
.comment-text { font-size: .92rem; color: var(--ink-soft); }
.comment-reply { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-top: 10px; }
.comment-reply:hover { color: var(--gold-dark); }

.comment-form-wrap {
  margin-top: 48px;
  background: var(--ivory);
  border: 1px solid var(--beige);
  border-radius: var(--radius-md);
  padding: 40px;
}
.comment-form-wrap h4 { font-family: var(--font-serif); font-size: 1.8rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-field label { display: block; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; font-weight: 500; }
.form-field input, .form-field textarea {
  width: 100%;
  padding: 13px 18px;
  background: var(--ivory-dark);
  border: 1.5px solid var(--beige);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: .92rem;
  color: var(--ink);
  outline: none;
  transition: border-color var(--transition);
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--gold); }
.form-field textarea { min-height: 130px; resize: vertical; }
.form-submit { margin-top: 8px; }

@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-28px); transition: opacity .7s ease, transform .7s ease; }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(28px); transition: opacity .7s ease, transform .7s ease; }
.fade-right.visible { opacity: 1; transform: translateX(0); }

/* ============================================================
   SEARCH
   ============================================================ */
.search-form-wrap { max-width: 560px; margin: 0 auto; }
.search-field-group {
  display: flex;
  background: var(--ivory);
  border: 2px solid var(--beige);
  border-radius: 60px;
  padding: 4px;
  transition: border-color var(--transition);
}
.search-field-group:focus-within { border-color: var(--gold); }
.search-field-group input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 20px;
  font-size: .92rem;
  outline: none;
  color: var(--ink);
}
.search-field-group button { flex-shrink: 0; }

/* ============================================================
   RTL OVERRIDES
   ============================================================ */
.rtl .hero-content { padding: 80px 8vw 80px 0; }
.rtl .hero-content.fade-left { transform: translateX(28px); }
.rtl .story-text { text-align: right; }
.rtl .post-body blockquote { border-left: none; border-right: 3px solid var(--gold); border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.rtl .footer-grid { direction: rtl; }
.rtl .nav-menu { direction: rtl; }

/* ============================================================
   MISC UTILITY
   ============================================================ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-plum { color: var(--plum); }
.text-muted { color: var(--muted); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.divider { width: 64px; height: 1.5px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); margin: 28px auto; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-header .eyebrow { justify-content: center; }

/* ============================================================
   v1.1.0 — ECOMMERCE PRODUCT SHOWCASE
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
@media (max-width: 900px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .products-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}
.product-card-image {
  display: block;
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  background: linear-gradient(160deg, var(--ivory-dark), var(--beige));
}
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.product-card:hover .product-card-image img { transform: scale(1.05); }
.product-card-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  opacity: .55;
  font-size: 2rem;
  background:
    radial-gradient(circle at 30% 25%, rgba(229,200,138,.35) 0%, transparent 45%),
    linear-gradient(160deg, var(--ivory-dark), var(--beige));
}
.product-badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 5px 16px;
  border-radius: 30px;
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
}
.badge-soon { background: var(--plum); color: var(--ivory); }
.badge-soldout { background: var(--ink); color: var(--ivory); }
.product-card-body { padding: 26px; }
.product-card-title { font-family: var(--font-serif); font-size: 1.35rem; margin-bottom: 4px; }
.product-card-title a:hover { color: var(--gold); }
.product-card-size { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.product-card-excerpt { font-size: .86rem; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
.product-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--ivory-dark);
}
.product-price { font-family: var(--font-serif); font-size: 1.4rem; color: var(--plum); }
.product-price small { font-size: .75rem; color: var(--muted); }
.product-price--tba { font-size: .8rem; color: var(--muted); font-family: var(--font-sans); }
.btn--sm { padding: 9px 22px; font-size: .68rem; }

/* Single product */
.product-single-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 860px) { .product-single-grid { grid-template-columns: 1fr; gap: 40px; } }
.product-single-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: radial-gradient(circle at 50% 38%, rgba(196,146,74,.45) 0%, rgba(123,79,42,.4) 50%, rgba(28,24,23,.9) 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
}
.product-single-image img { width: 100%; height: 100%; object-fit: cover; }
.product-single-placeholder { display: flex; align-items: center; justify-content: center; }
.product-desc-content p { color: rgba(250,248,245,.75); margin-bottom: 16px; }
.product-desc-content ul { margin: 16px 0 16px 20px; color: rgba(250,248,245,.7); }

/* Front-page products section */
.collection-strip { background: var(--ivory); position: relative; overflow: hidden; }
.collection-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 56px;
  background: linear-gradient(var(--gold), transparent);
}

/* Botanical SVG ornaments */
.ornament-corner {
  position: absolute;
  width: 180px;
  opacity: .1;
  pointer-events: none;
  color: var(--gold);
}
.footer-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: .78rem;
  color: rgba(250,248,245,.5);
  letter-spacing: .06em;
}

/* ================================================================
   V2.0 — ROYAL DEEP-BLUE REDESIGN
   Exotic minimal luxury · faded royal patterns · interactivity
   ================================================================ */
:root {
  --royal:      #0E1638;   /* near-black royal blue */
  --royal-2:    #16224F;
  --royal-3:    #1B2A6B;
  --royal-soft: #24337A;
  --gold-2:     #D4AF6A;
  --champagne:  #EFDDB9;
  --pattern-op: .05;
}

/* --- Royal eight-point star (khatam) pattern — data URI, ultra-faded --- */
.bg-royal-pattern,
.hero, .product-hero, .doctor, .newsletter-strip, .blog-hero, .single-post-hero {
  position: relative;
  isolation: isolate;
}
.hero::before, .doctor::after, .newsletter-strip::before, .blog-hero::after,
.bg-royal-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: var(--pattern-op);
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D'220'%20height%3D'220'%20viewBox%3D'0%200%20220%20220'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cg%20fill%3D'none'%20stroke%3D'%23D4AF6A'%20stroke-width%3D'1.2'%20stroke-linecap%3D'round'%3E%3Cpath%20d%3D'M28%20212%20C55%20172%2072%20130%2098%2092%20C120%2060%20148%2034%20192%2016'%2F%3E%3Cpath%20d%3D'M36%20192%20c-17%20-2%20-29%20-13%20-33%20-28%20c15%200%2027%2011%2033%2028%20z'%2F%3E%3Cpath%20d%3D'M47%20172%20c17%20-6%2025%20-19%2025%20-34%20c-15%204%20-23%2017%20-25%2034%20z'%2F%3E%3Cpath%20d%3D'M60%20148%20c-17%20-2%20-29%20-13%20-33%20-28%20c15%200%2027%2011%2033%2028%20z'%2F%3E%3Cpath%20d%3D'M73%20125%20c17%20-6%2025%20-19%2025%20-34%20c-15%204%20-23%2017%20-25%2034%20z'%2F%3E%3Cpath%20d%3D'M90%20100%20c-17%20-2%20-29%20-13%20-33%20-28%20c15%200%2027%2011%2033%2028%20z'%2F%3E%3Cpath%20d%3D'M108%2076%20c17%20-6%2025%20-19%2025%20-34%20c-15%204%20-23%2017%20-25%2034%20z'%2F%3E%3Cpath%20d%3D'M130%2054%20c-17%20-2%20-29%20-13%20-33%20-28%20c15%200%2027%2011%2033%2028%20z'%2F%3E%3Cpath%20d%3D'M156%2034%20c15%20-9%2021%20-22%2019%20-37%20c-13%207%20-19%2020%20-19%2037%20z'%2F%3E%3Cpath%20d%3D'M190%20212%20c-4%20-14%20-12%20-24%20-26%20-30%20c2%2014%2010%2024%2026%2030%20z'%2F%3E%3Cpath%20d%3D'M206%20190%20c-14%20-4%20-26%20-2%20-36%208%20c12%206%2024%204%2036%20-8%20z'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-size: 220px 220px;
}

/* ---------------- HERO — full royal night ---------------- */
.hero {
  background:
    radial-gradient(ellipse 90% 70% at 75% 30%, rgba(36,51,122,.85) 0%, transparent 55%),
    radial-gradient(ellipse 60% 55% at 20% 85%, rgba(212,175,106,.14) 0%, transparent 60%),
    linear-gradient(165deg, var(--royal) 0%, var(--royal-2) 55%, var(--royal-3) 100%);
}
.hero::before { opacity: .06; }
.hero-content .eyebrow { color: var(--gold-2); }
.hero-content .eyebrow::before, .hero-content .eyebrow::after { background: var(--gold-2); }
.hero-tagline { color: #F6F1E7; }
.hero-tagline em { color: var(--gold-2); text-shadow: 0 0 40px rgba(212,175,106,.35); }
.hero-sub { color: rgba(246,241,231,.62); }
.hero-arabic { color: var(--champagne); opacity: .9; }
.hero-badge { color: rgba(246,241,231,.45); }
.hero .btn--ghost { color: #F6F1E7; border-color: rgba(246,241,231,.35); }
.hero .btn--ghost:hover { background: #F6F1E7; color: var(--royal); }
.hero-image {
  background:
    radial-gradient(circle at 50% 42%, rgba(212,175,106,.30) 0%, transparent 55%),
    linear-gradient(160deg, var(--royal-2) 0%, var(--royal-3) 60%, var(--royal-soft) 130%);
}
.hero-image::before { color: rgba(212,175,106,.5); text-shadow: 0 0 90px rgba(212,175,106,.5); }
.hero-image::after { background: linear-gradient(90deg, var(--royal) 0%, transparent 45%); }

/* Slow gold aurora drift in hero */
@keyframes aurora {
  0%, 100% { transform: translate3d(-4%, -3%, 0) scale(1); opacity: .5; }
  50%      { transform: translate3d(4%, 3%, 0)  scale(1.12); opacity: .9; }
}
.hero .hero-aurora {
  content: '';
  position: absolute;
  width: 55vw; height: 55vw;
  right: -12vw; top: -14vw;
  background: radial-gradient(circle, rgba(212,175,106,.13) 0%, transparent 60%);
  animation: aurora 14s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* ---------------- HEADER on dark hero ---------------- */
.is-home-page .site-header:not(.scrolled) .logo-name { color: #F6F1E7; }
.is-home-page .site-header:not(.scrolled) .logo-byline { color: rgba(246,241,231,.55); }
.is-home-page .site-header:not(.scrolled) .nav-menu a { color: rgba(246,241,231,.8); }
.is-home-page .site-header:not(.scrolled) .nav-menu a:hover { color: var(--gold-2); }
.is-home-page .site-header:not(.scrolled) .menu-toggle span { background: #F6F1E7; }
.is-home-page .site-header:not(.scrolled) .lang-toggle { background: rgba(246,241,231,.12); }
.is-home-page .site-header:not(.scrolled) .lang-toggle button { color: rgba(246,241,231,.7); }
.is-home-page .site-header:not(.scrolled) .lang-toggle button.active { background: var(--gold-2); color: var(--royal); }

/* ---------------- GOLD MARQUEE STRIP ---------------- */
.royal-marquee {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-2) 50%, var(--gold-dark));
  color: var(--royal);
  overflow: hidden;
  padding: 13px 0;
  white-space: nowrap;
  position: relative;
}
.royal-marquee .marquee-track {
  display: inline-flex;
  gap: 56px;
  animation: marquee 28s linear infinite;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
}
.royal-marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------------- BENEFITS — minimal on ivory + faded pattern ---------------- */
.benefits { background: var(--ivory); position: relative; isolation: isolate; }
.benefits::before {
  content: '';
  position: absolute; inset: 0; z-index: -1; opacity: .02;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D'220'%20height%3D'220'%20viewBox%3D'0%200%20220%20220'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cg%20fill%3D'none'%20stroke%3D'%231B2A6B'%20stroke-width%3D'1.2'%20stroke-linecap%3D'round'%3E%3Cpath%20d%3D'M28%20212%20C55%20172%2072%20130%2098%2092%20C120%2060%20148%2034%20192%2016'%2F%3E%3Cpath%20d%3D'M36%20192%20c-17%20-2%20-29%20-13%20-33%20-28%20c15%200%2027%2011%2033%2028%20z'%2F%3E%3Cpath%20d%3D'M47%20172%20c17%20-6%2025%20-19%2025%20-34%20c-15%204%20-23%2017%20-25%2034%20z'%2F%3E%3Cpath%20d%3D'M60%20148%20c-17%20-2%20-29%20-13%20-33%20-28%20c15%200%2027%2011%2033%2028%20z'%2F%3E%3Cpath%20d%3D'M73%20125%20c17%20-6%2025%20-19%2025%20-34%20c-15%204%20-23%2017%20-25%2034%20z'%2F%3E%3Cpath%20d%3D'M90%20100%20c-17%20-2%20-29%20-13%20-33%20-28%20c15%200%2027%2011%2033%2028%20z'%2F%3E%3Cpath%20d%3D'M108%2076%20c17%20-6%2025%20-19%2025%20-34%20c-15%204%20-23%2017%20-25%2034%20z'%2F%3E%3Cpath%20d%3D'M130%2054%20c-17%20-2%20-29%20-13%20-33%20-28%20c15%200%2027%2011%2033%2028%20z'%2F%3E%3Cpath%20d%3D'M156%2034%20c15%20-9%2021%20-22%2019%20-37%20c-13%207%20-19%2020%20-19%2037%20z'%2F%3E%3Cpath%20d%3D'M190%20212%20c-4%20-14%20-12%20-24%20-26%20-30%20c2%2014%2010%2024%2026%2030%20z'%2F%3E%3Cpath%20d%3D'M206%20190%20c-14%20-4%20-26%20-2%20-36%208%20c12%206%2024%204%2036%20-8%20z'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-size: 220px 220px;
}
.benefit-icon { background: transparent; border-color: var(--royal-3); color: var(--royal-3); }
.benefit-item:hover .benefit-icon { background: var(--royal-3); color: var(--champagne); box-shadow: 0 14px 40px rgba(27,42,107,.35); }

/* ---------------- PRODUCT HERO — midnight vitrine ---------------- */
.product-hero {
  background:
    radial-gradient(ellipse at 68% 45%, rgba(36,51,122,.65) 0%, transparent 60%),
    linear-gradient(150deg, #0A102A 0%, var(--royal) 50%, var(--royal-2) 100%);
}
.product-hero::before { opacity: .05; }
.ingredient-item { background: rgba(246,241,231,.04); border-color: rgba(212,175,106,.18); backdrop-filter: blur(6px); }
.ingredient-item:hover { background: rgba(212,175,106,.1); border-color: rgba(212,175,106,.45); transform: translateY(-3px); }

/* ---------------- RITUAL — minimal, hover floods royal ---------------- */
.ritual-step:hover { background: var(--royal-3); }
.step-num { color: rgba(27,42,107,.14); }

/* ---------------- DOCTOR — deep blue velvet ---------------- */
.doctor {
  background:
    radial-gradient(ellipse at 15% 20%, rgba(36,51,122,.8) 0%, transparent 55%),
    linear-gradient(160deg, var(--royal-2) 0%, var(--royal) 70%);
}
.doctor::after { opacity: .05; }
.trust-badge { background: rgba(246,241,231,.05); border-color: rgba(212,175,106,.22); }
.trust-badge:hover { background: rgba(212,175,106,.14); border-color: var(--gold-2); transform: translateY(-4px); }

/* ---------------- COLLECTION — dark glass cards + 3D tilt ---------------- */
.collection-strip {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory-dark) 100%);
}
.product-card {
  border-radius: 20px;
  border: 1px solid rgba(27,42,107,.12);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .25s ease-out, box-shadow .35s ease, border-color .35s ease;
}
.product-card:hover {
  box-shadow: 0 30px 70px rgba(14,22,56,.22);
  border-color: rgba(212,175,106,.55);
}
.product-card-image {
  background:
    radial-gradient(circle at 50% 35%, rgba(212,175,106,.25) 0%, transparent 55%),
    linear-gradient(165deg, var(--royal-2), var(--royal-3));
}
.product-card-placeholder { color: var(--gold-2); opacity: .8; background: transparent; }
.product-price { color: var(--royal-3); }
.badge-soon { background: var(--gold-2); color: var(--royal); }

/* ---------------- COMING SOON cards on royal ---------------- */
.coming-soon {
  background:
    linear-gradient(160deg, var(--royal) 0%, var(--royal-2) 100%);
  position: relative; isolation: isolate;
}
.coming-soon::before {
  content: ''; position: absolute; inset: 0; z-index: -1; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D'220'%20height%3D'220'%20viewBox%3D'0%200%20220%20220'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cg%20fill%3D'none'%20stroke%3D'%23D4AF6A'%20stroke-width%3D'1.2'%20stroke-linecap%3D'round'%3E%3Cpath%20d%3D'M28%20212%20C55%20172%2072%20130%2098%2092%20C120%2060%20148%2034%20192%2016'%2F%3E%3Cpath%20d%3D'M36%20192%20c-17%20-2%20-29%20-13%20-33%20-28%20c15%200%2027%2011%2033%2028%20z'%2F%3E%3Cpath%20d%3D'M47%20172%20c17%20-6%2025%20-19%2025%20-34%20c-15%204%20-23%2017%20-25%2034%20z'%2F%3E%3Cpath%20d%3D'M60%20148%20c-17%20-2%20-29%20-13%20-33%20-28%20c15%200%2027%2011%2033%2028%20z'%2F%3E%3Cpath%20d%3D'M73%20125%20c17%20-6%2025%20-19%2025%20-34%20c-15%204%20-23%2017%20-25%2034%20z'%2F%3E%3Cpath%20d%3D'M90%20100%20c-17%20-2%20-29%20-13%20-33%20-28%20c15%200%2027%2011%2033%2028%20z'%2F%3E%3Cpath%20d%3D'M108%2076%20c17%20-6%2025%20-19%2025%20-34%20c-15%204%20-23%2017%20-25%2034%20z'%2F%3E%3Cpath%20d%3D'M130%2054%20c-17%20-2%20-29%20-13%20-33%20-28%20c15%200%2027%2011%2033%2028%20z'%2F%3E%3Cpath%20d%3D'M156%2034%20c15%20-9%2021%20-22%2019%20-37%20c-13%207%20-19%2020%20-19%2037%20z'%2F%3E%3Cpath%20d%3D'M190%20212%20c-4%20-14%20-12%20-24%20-26%20-30%20c2%2014%2010%2024%2026%2030%20z'%2F%3E%3Cpath%20d%3D'M206%20190%20c-14%20-4%20-26%20-2%20-36%208%20c12%206%2024%204%2036%20-8%20z'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-size: 220px 220px;
}
.coming-soon .section-header h2 { color: #F6F1E7; }
.coming-soon .eyebrow { color: var(--gold-2); }
.coming-soon .eyebrow::before, .coming-soon .eyebrow::after { background: var(--gold-2); }
.line-card {
  background: rgba(246,241,231,.04);
  border-color: rgba(212,175,106,.18);
  backdrop-filter: blur(8px);
}
.line-card .line-name { color: #F6F1E7; }
.line-card .line-desc { color: rgba(246,241,231,.55); }
.line-card:hover { border-color: var(--gold-2); background: rgba(212,175,106,.08); }
.coming-tag { background: transparent; border-color: rgba(212,175,106,.4); color: var(--gold-2); }

/* ---------------- COMMUNITY & FOOTER polish ---------------- */
.hashtag { color: var(--royal-3); }
.insta-item::after { background: rgba(14,22,56,.72); color: var(--gold-2); }
.newsletter-strip {
  background:
    radial-gradient(ellipse at 50% 120%, rgba(212,175,106,.2) 0%, transparent 60%),
    linear-gradient(135deg, var(--royal-3) 0%, var(--royal) 100%);
}
.newsletter-strip::before { opacity: .05; }
.site-footer { background: #0A102A; }
.footer-col h6 { color: var(--gold-2); }

/* ---------------- CURSOR GLOW (desktop) ---------------- */
#cursor-glow {
  position: fixed;
  width: 480px; height: 480px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 5;
  background: radial-gradient(circle, rgba(212,175,106,.07) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  transition: opacity .4s;
  opacity: 0;
}
@media (hover: hover) and (min-width: 900px) { #cursor-glow { opacity: 1; } }

/* ---------------- MAGNETIC BUTTON + gold shimmer sweep ---------------- */
.btn { position: relative; overflow: hidden; }
.btn--primary { background: linear-gradient(120deg, var(--gold-dark), var(--gold-2)); border: none; color: var(--royal); font-weight: 600; }
.btn--primary::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-20deg);
  transition: left .6s ease;
}
.btn--primary:hover::after { left: 130%; }
.btn--primary:hover { box-shadow: 0 14px 40px rgba(212,175,106,.4); color: var(--royal); }

/* ---------------- SECTION DIVIDER ORNAMENT ---------------- */
.section-header .eyebrow::before, .section-header .eyebrow::after { flex-basis: 44px; }
.divider-royal {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin: 0 auto 26px; color: var(--gold-2); font-size: .9rem;
}
.divider-royal::before, .divider-royal::after {
  content: ''; width: 70px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-2));
}
.divider-royal::after { background: linear-gradient(90deg, var(--gold-2), transparent); }

/* ---------------- BLOG hero on royal ---------------- */
.blog-hero {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(36,51,122,.75) 0%, transparent 60%),
    linear-gradient(170deg, var(--royal) 0%, var(--royal-2) 100%);
}
.blog-hero::after { opacity: .05; }
.single-post-hero { background: linear-gradient(170deg, var(--royal) 0%, var(--royal-2) 100%); }

/* ---------------- Reveal stagger (JS adds .visible) ---------------- */
.fade-up { transform: translateY(36px); transition-duration: .9s; }
.reveal-line { overflow: hidden; }
.reveal-line > span { display: inline-block; transform: translateY(110%); transition: transform 1s cubic-bezier(.19,1,.22,1); }
.reveal-line.visible > span { transform: translateY(0); }

/* PATCH — hide stray menu close on desktop + broken placeholder images */
.menu-close { display: none; }
.nav-menu.open .menu-close { display: flex; position: absolute; top: 24px; right: 24px; }
img[src$="dr-nadin.jpg"] { display: none; }
.hero-image::before { content: '\2655'; font-size: clamp(6rem, 14vw, 12rem); color: rgba(212,175,106,.5); text-shadow: 0 0 90px rgba(212,175,106,.5); display:block; }
.product-hero-image::before { content: ''; width: min(190px, 38%); height: 60%; background: linear-gradient(175deg, #8a5a2e, #5c3a1c 60%, #2c1b0d); border-radius: 18px 18px 26px 26px; box-shadow: 0 30px 80px rgba(0,0,0,.55), inset 0 2px 8px rgba(255,255,255,.22); }
.product-hero-image::after { content: 'basslina'; position: absolute; font-family: var(--font-serif); font-size: 1.35rem; letter-spacing: .08em; color: rgba(246,241,231,.9); }
.doctor-image { background: radial-gradient(circle at 50% 35%, rgba(212,175,106,.25) 0%, transparent 55%), linear-gradient(165deg, #24337A, #16224F 70%); aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; }
.doctor-image::before { content: '\2726'; font-size: 5rem; color: rgba(212,175,106,.55); }


/* V2.1 — real brand imagery */
.hero-image::before { content: none; }
.hero-image img { display: block; width: 100%; height: 100%; object-fit: cover; opacity: .92; }
.hero-image { background: var(--royal-2); }
.hero-image::after { background: linear-gradient(90deg, var(--royal) 0%, rgba(14,22,56,.25) 45%, transparent 70%); }
.product-hero-image::before, .product-hero-image::after { content: none; }
.product-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.insta-item img { display: block; }
.insta-item::after { font-size: 1.5rem; }

/* ================================================================
   V3.0 — ONE ROYAL CANVAS
   Single continuous deep royal blue · no section blocks ·
   interaction-driven color · modern special hovers
   ================================================================ */
:root {
  --royal:      #060B20;
  --royal-2:    #0A1230;
  --royal-3:    #122052;
  --royal-soft: #1A2B66;
  /* Token flip — the whole site becomes one dark royal canvas */
  --ivory:      #060B20;
  --ivory-dark: #0A1230;
  --beige:      rgba(212,175,106,.22);
  --white:      #0B1334;
  --ink:        #F6F1E7;
  --ink-soft:   #DDD5C2;
  --muted:      #A9A691;
  --muted-light:#7E7B69;
  --plum:       #E5C88A;
  --plum-light: #D4AF6A;
  --shadow-sm:  0 2px 14px rgba(0,0,0,.35);
  --shadow-md:  0 10px 36px rgba(0,0,0,.45);
  --shadow-lg:  0 24px 70px rgba(0,0,0,.55);
}

/* One continuous canvas */
html { background: #060B20; }
body {
  background:
    radial-gradient(ellipse 120% 60% at 50% -10%, rgba(26,43,102,.55) 0%, transparent 60%),
    radial-gradient(ellipse 90% 50% at 85% 100%, rgba(212,175,106,.06) 0%, transparent 55%),
    #060B20;
  color: var(--ink);
}
/* Continuous faded laurel across everything */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%27220%27%20height%3D%27220%27%20viewBox%3D%270%200%20220%20220%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%23D4AF6A%27%20stroke-width%3D%271.2%27%20stroke-linecap%3D%27round%27%3E%3Cpath%20d%3D%27M28%20212%20C55%20172%2072%20130%2098%2092%20C120%2060%20148%2034%20192%2016%27/%3E%3Cpath%20d%3D%27M36%20192%20c-17%20-2%20-29%20-13%20-33%20-28%20c15%200%2027%2011%2033%2028%20z%27/%3E%3Cpath%20d%3D%27M47%20172%20c17%20-6%2025%20-19%2025%20-34%20c-15%204%20-23%2017%20-25%2034%20z%27/%3E%3Cpath%20d%3D%27M60%20148%20c-17%20-2%20-29%20-13%20-33%20-28%20c15%200%2027%2011%2033%2028%20z%27/%3E%3Cpath%20d%3D%27M73%20125%20c17%20-6%2025%20-19%2025%20-34%20c-15%204%20-23%2017%20-25%2034%20z%27/%3E%3Cpath%20d%3D%27M90%20100%20c-17%20-2%20-29%20-13%20-33%20-28%20c15%200%2027%2011%2033%2028%20z%27/%3E%3Cpath%20d%3D%27M108%2076%20c17%20-6%2025%20-19%2025%20-34%20c-15%204%20-23%2017%20-25%2034%20z%27/%3E%3Cpath%20d%3D%27M130%2054%20c-17%20-2%20-29%20-13%20-33%20-28%20c15%200%2027%2011%2033%2028%20z%27/%3E%3Cpath%20d%3D%27M156%2034%20c15%20-9%2021%20-22%2019%20-37%20c-13%207%20-19%2020%20-19%2037%20z%27/%3E%3C/g%3E%3C/svg%3E");
  background-size: 220px 220px;
}
#page-wrap, .site-header, .site-footer, section, .royal-marquee { position: relative; z-index: 1; }

/* Dissolve every section background — no blocks */
.hero, .benefits, .ritual, .story, .collection-strip, .community,
.blog-grid-section, .featured-post, .related-posts, .cat-filter,
.post-content-wrap, .coming-soon, .doctor, .product-hero,
.newsletter-strip, .blog-hero, .single-post-hero, .section--sm {
  background: transparent !important;
}
.hero::before, .doctor::after, .newsletter-strip::before,
.blog-hero::after, .benefits::before, .coming-soon::before { content: none; }
.hero-image::after { background: linear-gradient(90deg, #060B20 0%, rgba(6,11,32,.2) 50%, transparent 75%); }
.site-footer { background: transparent; border-top: 1px solid rgba(212,175,106,.14); }
.footer-grid { border-bottom-color: rgba(212,175,106,.12); }

/* Header — dark glass everywhere */
.site-header.scrolled {
  background: rgba(6,11,32,.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212,175,106,.12);
  box-shadow: none;
}
.site-header .logo-name, .is-home-page .site-header .logo-name { color: #F6F1E7; }
.site-header .logo-byline { color: rgba(246,241,231,.5); }
.nav-menu a { color: rgba(246,241,231,.75); }
.menu-toggle span { background: #F6F1E7; }
.lang-toggle { background: rgba(246,241,231,.08); }
.lang-toggle button { color: rgba(246,241,231,.65); }
.lang-toggle button.active { background: var(--gold-2); color: var(--royal); }

/* NAV — modern hover: gold underline grows from center + letterspace */
.nav-menu a { position: relative; border-bottom: none; transition: color .3s, letter-spacing .3s; }
.nav-menu a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -6px;
  width: 0; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  transform: translateX(-50%);
  transition: width .35s cubic-bezier(.19,1,.22,1);
}
.nav-menu a:hover { color: var(--gold-2); letter-spacing: .22em; }
.nav-menu a:hover::after { width: 110%; }

/* Headings & type on canvas */
h1,h2,h3,h4 { color: #F6F1E7; }
.section-header h2, .hero-tagline { color: #F6F1E7; }
.lead { color: rgba(246,241,231,.55); }
p { color: rgba(246,241,231,.68); }

/* Cards — glass royal, gold on hover */
.product-card, .post-card, .line-card, .sidebar-widget, .comment-form-wrap {
  background: rgba(246,241,231,.03);
  border: 1px solid rgba(212,175,106,.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.product-card:hover, .post-card:hover, .line-card:hover {
  background: rgba(212,175,106,.06);
  border-color: rgba(212,175,106,.6);
  box-shadow: 0 24px 70px rgba(0,0,0,.5), 0 0 0 1px rgba(212,175,106,.25), 0 0 60px rgba(212,175,106,.08);
}
.post-card-footer, .product-card-footer { border-top-color: rgba(212,175,106,.12); }
.product-price { color: var(--gold-light); }
.product-card-title a, .post-card-title a { transition: color .3s; }

/* Ritual steps — hover: gold wash, number ignites */
.ritual-steps { background: rgba(212,175,106,.12); gap: 1px; }
.ritual-step { background: #081027; transition: background .5s; }
.ritual-step:hover { background: rgba(212,175,106,.09); }
.step-num { color: rgba(212,175,106,.16); transition: color .5s, text-shadow .5s; }
.ritual-step:hover .step-num { color: var(--gold-2); text-shadow: 0 0 40px rgba(212,175,106,.5); }
.ritual-step:hover h3 { color: var(--gold-light); }

/* Benefits icons — ignite on hover */
.benefit-icon { border-color: rgba(212,175,106,.4); color: var(--gold-2); background: transparent; }
.benefit-item:hover .benefit-icon {
  background: var(--gold-2); color: var(--royal);
  box-shadow: 0 0 50px rgba(212,175,106,.45);
  transform: scale(1.1) rotate(-6deg);
}
.benefit-title { transition: color .3s; }
.benefit-item:hover .benefit-title { color: var(--gold-light); }

/* Buttons — special modern states */
.btn { will-change: transform; }
.btn--ghost, .btn--ghost-light {
  color: #F6F1E7; border-color: rgba(246,241,231,.3);
  transition: all .35s cubic-bezier(.19,1,.22,1);
}
.btn--ghost:hover, .btn--ghost-light:hover {
  background: var(--gold-2); border-color: var(--gold-2); color: var(--royal);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(212,175,106,.35);
}
.btn--primary:active { transform: scale(.96); }

/* Trust badges / ingredients — glass + gold hover */
.trust-badge, .ingredient-item { background: rgba(246,241,231,.03); border-color: rgba(212,175,106,.16); }
.trust-badge:hover, .ingredient-item:hover { background: rgba(212,175,106,.1); border-color: var(--gold-2); }

/* Instagram grid — gold reveal */
.insta-item { border-radius: 8px; overflow: hidden; }
.insta-item img { filter: saturate(.85) brightness(.9); transition: filter .5s, transform .6s; }
.insta-item:hover img { filter: saturate(1.1) brightness(1.05); transform: scale(1.07); }
.insta-item::after { background: linear-gradient(180deg, transparent 40%, rgba(6,11,32,.75)); opacity: 0; color: var(--gold-2); }
.insta-item:hover::after { opacity: 1; }

/* Newsletter form — glass */
.newsletter-form { background: rgba(246,241,231,.06); border: 1px solid rgba(212,175,106,.25); box-shadow: none; }
.newsletter-form input { color: #F6F1E7; }
.newsletter-form input::placeholder { color: rgba(246,241,231,.4); }

/* Forms & fields */
.form-field input, .form-field textarea, .search-field-group {
  background: rgba(246,241,231,.05);
  border-color: rgba(212,175,106,.2);
  color: #F6F1E7;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--gold-2); box-shadow: 0 0 0 3px rgba(212,175,106,.15); }

/* Blog bits */
.cat-filter { border-bottom-color: rgba(212,175,106,.12); }
.cat-tab { border-color: rgba(212,175,106,.25); color: rgba(246,241,231,.6); }
.cat-tab:hover, .cat-tab.active { background: var(--gold-2); border-color: var(--gold-2); color: var(--royal); }
.post-body blockquote { background: rgba(212,175,106,.06); border-left-color: var(--gold-2); }
.post-body blockquote p { color: var(--gold-light); }
.toc-box { background: rgba(246,241,231,.03); border-color: rgba(212,175,106,.16); border-left-color: var(--gold-2); }
.share-row { border-color: rgba(212,175,106,.14); }
.post-tag { background: rgba(246,241,231,.04); border-color: rgba(212,175,106,.2); color: rgba(246,241,231,.6); }
.author-box { background: rgba(212,175,106,.07); border: 1px solid rgba(212,175,106,.2); }
.author-box .author-name { color: var(--gold-light); }
.pagination-wrap .page-numbers a, .pagination-wrap .page-numbers span { border-color: rgba(212,175,106,.25); color: rgba(246,241,231,.6); }

/* Marquee stays the single gold accent ribbon */
.royal-marquee { box-shadow: 0 0 60px rgba(212,175,106,.15); }

/* Story pullquote & misc royal accents */
.story-pullquote { background: rgba(212,175,106,.07); border: 1px solid rgba(212,175,106,.22); }
.story-pullquote blockquote { color: var(--gold-light); }
.divider-royal::before, .divider-royal::after { background: linear-gradient(90deg, transparent, rgba(212,175,106,.6)); }

/* Selection */
::selection { background: var(--gold-2); color: var(--royal); }

/* V3 text fixups — elements that referenced the flipped ivory token as text color */
.ingredient-name, .trust-badge .badge-val, .btn--plum,
.doctor-content h2, .product-name, .story-pullquote blockquote,
.single-post-hero h1, .blog-hero h1, .coming-soon .line-name { color: #F6F1E7; }
.product-subtitle, .ingredient-label, .trust-badge .badge-label { color: var(--gold-light); }
.product-desc, .doctor-content p { color: rgba(246,241,231,.65); }
.hero-sub { color: rgba(246,241,231,.6); }
.hero-badge { color: rgba(246,241,231,.45); }
.footer-desc, .footer-col ul a, .footer-bottom, .footer-bottom a { color: rgba(246,241,231,.55); }
.footer-col ul a:hover { color: var(--gold-2); }
.site-footer .logo-name { color: #F6F1E7; }
.whatsapp-float { box-shadow: 0 6px 30px rgba(37,211,102,.4), 0 0 0 1px rgba(246,241,231,.08); }

/* V3.0.1 — logo + nature mood banner */
.site-logo .logo-img { height: 54px; width: auto; display: block; transition: opacity .3s, transform .4s; }
.site-logo:hover .logo-img { opacity: .85; transform: translateY(-1px); }
.site-header.scrolled .logo-img { height: 44px; }
.footer-brand .logo-img { height: 50px; width: auto; }

.nature-banner { padding: 40px 0 96px; position: relative; }
.nature-banner-track {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  align-items: center;
}
.nature-banner figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(212,175,106,.2);
  aspect-ratio: 3/4;
  transform: rotate(-1.2deg);
  transition: transform .6s cubic-bezier(.19,1,.22,1), border-color .4s, box-shadow .5s;
}
.nature-banner figure:nth-child(2) { transform: rotate(0deg) scale(1.04); aspect-ratio: 3/4.4; }
.nature-banner figure:nth-child(3) { transform: rotate(1.2deg); }
.nature-banner figure:hover {
  transform: rotate(0) scale(1.05);
  border-color: rgba(212,175,106,.6);
  box-shadow: 0 30px 80px rgba(0,0,0,.55), 0 0 60px rgba(212,175,106,.1);
  z-index: 2;
}
.nature-banner img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.85) brightness(.92); transition: filter .5s; }
.nature-banner figure:hover img { filter: saturate(1.05) brightness(1.02); }
.nature-banner-quote { text-align: center; margin-top: 44px; }
.nb-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: .02em;
}
.nb-quote::before, .nb-quote::after { content: ' ✦ '; font-style: normal; font-size: .8em; color: rgba(212,175,106,.5); }
@media (max-width: 720px) {
  .nature-banner-track { grid-template-columns: 1fr 1fr; }
  .nature-banner figure:nth-child(3) { display: none; }
}

/* V3.1 journal — header CTA + category chips */
.btn--journal { padding: 11px 26px; font-size: .7rem; letter-spacing: .16em; gap: 8px; }
.btn--journal svg { flex-shrink: 0; }
@media (max-width: 1100px) { .btn--journal { display: none; } }
.journal-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: -18px auto 44px; max-width: 860px; }
.journal-chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; border-radius: 40px; border: 1px solid rgba(212,175,106,.28); background: rgba(246,241,231,.03); color: rgba(246,241,231,.72); font-size: .74rem; letter-spacing: .08em; transition: all .35s cubic-bezier(.19,1,.22,1); }
.journal-chip span { font-size: .62rem; color: var(--gold-2); background: rgba(212,175,106,.14); border-radius: 20px; padding: 1px 8px; }
.journal-chip:hover { background: var(--gold-2); border-color: var(--gold-2); color: var(--royal); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(212,175,106,.3); }
.journal-chip:hover span { background: rgba(6,11,32,.18); color: var(--royal); }
.post-card-title, .post-card-excerpt { unicode-bidi: plaintext; }

/* ================================================================
   V4.0 — BASSILINA · DAYLIGHT ROYAL
   Brand guideline: 60% ivory · 25% navy · 10% gold · 5% plum
   ================================================================ */
:root {
  --navy:      #16213E;
  --navy-2:    #0F1B33;
  --navy-3:    #1B2A4A;
  --ivory:     #FAF7F0;
  --ivory-2:   #F3EEE3;
  --gold:      #C9A96E;
  --gold-dk:   #BFA05A;
  --gold-lt:   #D4BC8B;
  --plum:      #4A2545;
  --charcoal:  #2B2B2B;

  /* remap legacy tokens to brand values */
  --royal: var(--navy); --royal-2: var(--navy-2); --royal-3: var(--navy-3); --royal-soft: var(--navy-3);
  --gold-2: var(--gold); --gold-light: var(--gold-lt); --gold-dark: var(--gold-dk); --champagne: var(--gold-lt);
  --ivory-dark: var(--ivory-2);
  --beige: rgba(22,33,62,.12);
  --white: #FFFFFF;
  --ink: var(--charcoal);
  --ink-soft: #4A4A4A;
  --muted: #7C7669;
  --muted-light: #A39C8E;
  --plum-light: #6B3A66;
  --shadow-sm: 0 2px 14px rgba(22,33,62,.06);
  --shadow-md: 0 12px 40px rgba(22,33,62,.10);
  --shadow-lg: 0 26px 70px rgba(22,33,62,.14);
}

/* ---- Canvas: ivory, not navy ---- */
html { background: var(--ivory); }
body {
  background: var(--ivory);
  color: var(--charcoal);
}
body::before {
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%27220%27%20height%3D%27220%27%20viewBox%3D%270%200%20220%20220%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%2316213E%27%20stroke-width%3D%271.2%27%20stroke-linecap%3D%27round%27%3E%3Cpath%20d%3D%27M28%20212%20C55%20172%2072%20130%2098%2092%20C120%2060%20148%2034%20192%2016%27/%3E%3Cpath%20d%3D%27M36%20192%20c-17%20-2%20-29%20-13%20-33%20-28%20c15%200%2027%2011%2033%2028%20z%27/%3E%3Cpath%20d%3D%27M47%20172%20c17%20-6%2025%20-19%2025%20-34%20c-15%204%20-23%2017%20-25%2034%20z%27/%3E%3Cpath%20d%3D%27M60%20148%20c-17%20-2%20-29%20-13%20-33%20-28%20c15%200%2027%2011%2033%2028%20z%27/%3E%3Cpath%20d%3D%27M73%20125%20c17%20-6%2025%20-19%2025%20-34%20c-15%204%20-23%2017%20-25%2034%20z%27/%3E%3Cpath%20d%3D%27M90%20100%20c-17%20-2%20-29%20-13%20-33%20-28%20c15%200%2027%2011%2033%2028%20z%27/%3E%3Cpath%20d%3D%27M108%2076%20c17%20-6%2025%20-19%2025%20-34%20c-15%204%20-23%2017%20-25%2034%20z%27/%3E%3Cpath%20d%3D%27M130%2054%20c-17%20-2%20-29%20-13%20-33%20-28%20c15%200%2027%2011%2033%2028%20z%27/%3E%3C/g%3E%3C/svg%3E");
}

/* ---- Typography on ivory ---- */
h1,h2,h3,h4,h5,h6, .section-header h2, .hero-tagline { color: var(--navy); }
p, .post-body { color: var(--ink-soft); }
.lead { color: var(--muted); }
.eyebrow { color: var(--gold-dk); }
.eyebrow::before, .eyebrow::after { background: var(--gold); }
a { color: inherit; }

/* ---- HEADER: ivory glass, navy type ---- */
.site-header.scrolled {
  background: rgba(250,247,240,.94);
  border-bottom: 1px solid rgba(201,169,110,.28);
  box-shadow: var(--shadow-sm);
}
.site-header .logo-name, .is-home-page .site-header .logo-name { color: var(--navy); }
.site-header .logo-byline, .is-home-page .site-header .logo-byline { color: var(--muted); }
.nav-menu a, .is-home-page .site-header:not(.scrolled) .nav-menu a { color: var(--navy); opacity: .82; }
.nav-menu a:hover, .is-home-page .site-header:not(.scrolled) .nav-menu a:hover { color: var(--gold-dk); opacity: 1; }
.menu-toggle span, .is-home-page .site-header:not(.scrolled) .menu-toggle span { background: var(--navy); }
.lang-toggle, .is-home-page .site-header:not(.scrolled) .lang-toggle { background: rgba(22,33,62,.07); }
.lang-toggle button, .is-home-page .site-header:not(.scrolled) .lang-toggle button { color: var(--navy); opacity: .6; }
.lang-toggle button.active, .is-home-page .site-header:not(.scrolled) .lang-toggle button.active { background: var(--navy); color: var(--ivory); opacity: 1; }

/* ---- HERO: ivory with navy type, gold rules ---- */
.hero { background: linear-gradient(170deg, var(--ivory) 0%, var(--ivory-2) 100%); }
.hero-aurora { background: radial-gradient(circle, rgba(201,169,110,.16) 0%, transparent 62%); }
.hero-tagline em { color: var(--gold-dk); text-shadow: none; font-style: italic; }
.hero-sub { color: var(--muted); }
.hero-arabic { color: var(--gold-dk); }
.hero-badge { color: var(--muted); }
.hero-badge::before { background: var(--gold); }
.hero-image { background: var(--ivory-2); }
.hero-image img { opacity: 1; }
.hero-image::after { background: linear-gradient(90deg, var(--ivory) 0%, rgba(250,247,240,.35) 42%, transparent 68%); }
.hero .btn--ghost { color: var(--navy); border-color: rgba(22,33,62,.32); }
.hero .btn--ghost:hover { background: var(--navy); border-color: var(--navy); color: var(--ivory); }

/* ---- Buttons: navy primary, gold secondary ---- */
.btn--primary {
  background: var(--navy); color: var(--ivory); border: 1.5px solid var(--navy);
}
.btn--primary:hover { background: var(--navy-2); color: var(--ivory); box-shadow: 0 14px 36px rgba(22,33,62,.28); }
.btn--gold { background: linear-gradient(120deg, var(--gold-dk), var(--gold-lt)); color: var(--navy); border: none; font-weight: 600; }
.btn--ghost, .btn--ghost-light { color: var(--navy); border-color: rgba(22,33,62,.3); }
.btn--ghost:hover, .btn--ghost-light:hover { background: var(--navy); border-color: var(--navy); color: var(--ivory); }
.btn--journal { background: var(--navy); color: var(--ivory); border-color: var(--navy); }

/* ---- Cards on ivory ---- */
.product-card, .post-card, .line-card, .sidebar-widget, .comment-form-wrap, .toc-box {
  background: #FFFFFF;
  border: 1px solid rgba(22,33,62,.10);
  backdrop-filter: none;
}
.product-card:hover, .post-card:hover, .line-card:hover {
  background: #FFFFFF;
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.product-card-title, .post-card-title, .line-name { color: var(--navy); }
.product-price { color: var(--navy); }
.post-card-footer, .product-card-footer { border-top-color: rgba(22,33,62,.08); }

/* ---- Dark bands: navy sections for contrast (25%) ---- */
.product-hero, .doctor, .newsletter-strip, .blog-hero, .single-post-hero, .site-footer,
.coming-soon, .story-band {
  background: var(--navy) !important;
  position: relative; isolation: isolate;
}
.product-hero *, .doctor *, .newsletter-strip *, .blog-hero *, .single-post-hero *, .site-footer *, .coming-soon * { border-color: rgba(201,169,110,.2); }
.product-hero h1, .product-hero h2, .doctor h2, .newsletter-strip h2, .blog-hero h1,
.single-post-hero h1, .coming-soon h2, .product-name, .line-name, .site-footer .logo-name { color: var(--ivory); }
.product-hero p, .doctor p, .newsletter-strip p, .blog-hero .lead, .coming-soon p, .footer-desc { color: rgba(250,247,240,.66); }
.product-hero .eyebrow, .doctor .eyebrow, .coming-soon .eyebrow, .blog-hero .eyebrow { color: var(--gold-lt); }
.product-hero .eyebrow::before, .product-hero .eyebrow::after,
.doctor .eyebrow::before, .doctor .eyebrow::after,
.coming-soon .eyebrow::before, .coming-soon .eyebrow::after,
.blog-hero .eyebrow::before, .blog-hero .eyebrow::after { background: var(--gold-lt); }
.coming-soon .line-card, .doctor .trust-badge, .product-hero .ingredient-item {
  background: rgba(250,247,240,.05); border-color: rgba(201,169,110,.22);
}
.coming-soon .line-card:hover, .doctor .trust-badge:hover, .product-hero .ingredient-item:hover {
  background: rgba(201,169,110,.12); border-color: var(--gold);
}
.coming-soon .line-desc, .doctor .trust-badge .badge-label { color: rgba(250,247,240,.6); }
.coming-tag { border-color: rgba(201,169,110,.45); color: var(--gold-lt); background: transparent; }
.site-footer { border-top: none; }
.footer-col ul a, .footer-bottom, .footer-location { color: rgba(250,247,240,.55); }
.footer-col h6 { color: var(--gold-lt); }
.newsletter-form { background: rgba(250,247,240,.1); border-color: rgba(201,169,110,.3); }
.newsletter-form input { color: var(--ivory); }
.newsletter-form input::placeholder { color: rgba(250,247,240,.45); }

/* ---- Benefits / ritual on ivory ---- */
.benefit-icon { border-color: var(--navy); color: var(--navy); background: transparent; }
.benefit-item:hover .benefit-icon { background: var(--navy); color: var(--gold-lt); box-shadow: 0 14px 36px rgba(22,33,62,.24); }
.benefit-item:hover .benefit-title { color: var(--gold-dk); }
.ritual-steps { background: rgba(22,33,62,.10); }
.ritual-step { background: var(--ivory); }
.ritual-step:hover { background: var(--navy); }
.ritual-step:hover h3, .ritual-step:hover p { color: var(--ivory); }
.step-num { color: rgba(22,33,62,.12); }
.ritual-step:hover .step-num { color: var(--gold-lt); text-shadow: none; }

/* ---- Marquee: navy ribbon with gold text (signature pairing) ---- */
.royal-marquee { background: var(--navy); color: var(--gold-lt); box-shadow: none; }

/* ---- Journal chips on ivory ---- */
.journal-chip { border-color: rgba(22,33,62,.2); background: #FFF; color: var(--navy); }
.journal-chip span { background: rgba(201,169,110,.2); color: var(--gold-dk); }
.journal-chip:hover { background: var(--navy); border-color: var(--navy); color: var(--ivory); box-shadow: 0 10px 26px rgba(22,33,62,.22); }
.journal-chip:hover span { background: rgba(201,169,110,.3); color: var(--gold-lt); }

/* ---- Nature banner + misc ---- */
.nature-banner figure { border-color: rgba(22,33,62,.14); }
.nb-quote { color: var(--gold-dk); }
.hashtag { color: var(--plum); }
.divider-royal::before, .divider-royal::after { background: linear-gradient(90deg, transparent, var(--gold)); }
.cursor-glow, #cursor-glow { background: radial-gradient(circle, rgba(201,169,110,.10) 0%, transparent 65%); }
::selection { background: var(--navy); color: var(--ivory); }
.doctor-image { background: linear-gradient(165deg, var(--navy-3), var(--navy-2)); }
.product-hero-image { background: radial-gradient(circle at 50% 40%, rgba(201,169,110,.3) 0%, transparent 55%), var(--navy-2); }
.whatsapp-float { background: var(--navy); }
.whatsapp-float svg { fill: var(--gold-lt); }
.whatsapp-float:hover { background: var(--navy-2); }

/* ================================================================
   BRAND STORY BAND — Queen Basilina
   ================================================================ */
.story-band { padding: 110px 0; overflow: hidden; }
.story-band::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background-image: url('assets/images/queen-emblem.svg');
  background-repeat: no-repeat;
  background-position: right -60px center;
  background-size: 620px;
  opacity: .06;
}
.story-grid-brand {
  display: grid; grid-template-columns: 300px 1fr; gap: 64px; align-items: center;
  max-width: 1120px; margin: 0 auto; padding: 0 32px;
}
.story-emblem img { width: 100%; height: auto; filter: drop-shadow(0 18px 50px rgba(0,0,0,.4)); border-radius: 10px; }
.story-band h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 8px; }
.story-band .story-copy p { color: rgba(250,247,240,.72); margin-bottom: 18px; line-height: 1.95; }
.story-band .story-copy p:first-of-type::first-letter {
  font-family: var(--font-serif); font-size: 3.6rem; float: left; line-height: .82;
  padding: 6px 12px 0 0; color: var(--gold-lt);
}
.rtl .story-band .story-copy p:first-of-type::first-letter { float: right; padding: 6px 0 0 12px; }
.story-sign {
  margin-top: 26px; font-family: var(--font-serif); font-style: italic;
  font-size: 1.25rem; color: var(--gold-lt);
}
@media (max-width: 860px) {
  .story-grid-brand { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .story-emblem { max-width: 260px; margin: 0 auto; }
  .story-band::after { background-size: 420px; opacity: .05; }
}

/* ================================================================
   BLOG — typographic index, categorised, no images
   ================================================================ */
.journal-index { padding: 72px 0 96px; }
.jcat { margin-bottom: 70px; }
.jcat-head {
  display: flex; align-items: baseline; gap: 18px;
  padding-bottom: 14px; margin-bottom: 6px;
  border-bottom: 1.5px solid var(--navy);
}
.jcat-head h2 {
  font-family: var(--font-serif); font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  color: var(--navy); margin: 0; letter-spacing: .01em;
}
.jcat-head .jcount {
  font-family: var(--font-sans); font-size: .68rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold-dk);
}
.jcat-head .jall {
  margin-inline-start: auto; font-size: .68rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--navy); opacity: .65;
  border-bottom: 1px solid transparent; transition: all .3s;
}
.jcat-head .jall:hover { opacity: 1; color: var(--gold-dk); border-bottom-color: var(--gold); }

.jlist { list-style: none; margin: 0; padding: 0; }
.jitem { border-bottom: 1px solid rgba(22,33,62,.09); }
.jitem a {
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: baseline;
  padding: 22px 4px 22px 0; transition: all .4s cubic-bezier(.19,1,.22,1);
  position: relative;
}
.jitem a::before {
  content: ''; position: absolute; inset: 0 -20px;
  background: #FFF; border-radius: 10px; opacity: 0; z-index: -1;
  box-shadow: var(--shadow-md); transition: opacity .35s;
}
.jitem a:hover { padding-inline-start: 20px; }
.jitem a:hover::before { opacity: 1; }
.jitem .jtitle {
  font-family: var(--font-serif); font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  line-height: 1.42; color: var(--navy); unicode-bidi: plaintext;
  transition: color .3s;
}
.jitem a:hover .jtitle { color: var(--gold-dk); }
.jitem .jmeta {
  font-family: var(--font-sans); font-size: .68rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); white-space: nowrap;
  display: flex; align-items: center; gap: 12px;
}
.jitem .jmeta .jarrow { color: var(--gold); opacity: 0; transform: translateX(-6px); transition: all .35s; }
.jitem a:hover .jmeta .jarrow { opacity: 1; transform: translateX(0); }
.jitem .jexcerpt {
  grid-column: 1 / -1; font-size: .88rem; color: var(--muted);
  margin-top: 6px; line-height: 1.75; max-width: 68ch; unicode-bidi: plaintext;
}
@media (max-width: 640px) {
  .jitem a { grid-template-columns: 1fr; gap: 6px; }
  .jitem .jmeta { font-size: .62rem; }
}

/* Blog hero on navy already handled; tighten spacing */
.blog-hero { padding: 150px 0 72px; }
.blog-hero .lead { color: rgba(250,247,240,.62); }

/* Single post readability on ivory */
.post-body { font-size: 1.08rem; line-height: 2; color: var(--charcoal); }
.post-body h2, .post-body h3 { color: var(--navy); }
.post-body a { color: var(--gold-dk); }
.post-body img { border-radius: 10px; box-shadow: var(--shadow-md); }
.rtl .post-body, [dir="rtl"] .post-body { line-height: 2.1; }
.post-body :is(p, li, h2, h3) { unicode-bidi: plaintext; }

.site-footer .logo-img { filter: none; }

/* Brand banner hero */
.brand-banner-hero{width:100%;line-height:0;background:var(--ivory);border-bottom:1px solid rgba(201,169,110,.25)}
.brand-banner-hero img{display:block;width:100%;height:auto;max-height:64vh;object-fit:cover;object-position:center}
.hero{padding-top:40px !important}
