/* =============================================================
   AMRIN KHAN — ASLAH
   Premium website styles
   Palette: warm cream, sand, brass gold, deep olive, warm dark
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Hind+Siliguri:wght@300;400;500;600;700&family=Tiro+Bangla:ital@0;1&display=swap');

:root {
  /* Palette pulled from Amrin's actual brand photos — ivory + navy + champagne */
  --bg-cream: #F8F4ED;        /* ivory */
  --bg-sand: #EFE7DA;          /* warm ivory */
  --bg-deep-sand: #E8D4B9;     /* soft champagne */
  --bg-card: #FFFFFF;
  --bg-olive: #1E3A5F;          /* deep navy (was olive) */
  --bg-olive-light: #2C4E78;   /* lighter navy */

  --text-primary: #2D2419;
  --text-secondary: #5C5446;
  --text-light: #847766;
  --text-on-dark: #F8F4ED;

  --accent-gold: #B89B6A;       /* warm gold */
  --accent-gold-light: #D4B584; /* champagne */
  --accent-gold-bright: #C5A875;

  --border-subtle: #E8DFCF;
  --border-medium: #D5C8B2;

  --shadow-soft: 0 4px 20px rgba(45, 36, 25, 0.06);
  --shadow-medium: 0 8px 32px rgba(45, 36, 25, 0.10);
  --shadow-deep: 0 16px 48px rgba(45, 36, 25, 0.14);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--bg-cream);
  line-height: 1.7;
  font-weight: 400;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-gold);
}

/* =============================================================
   TYPOGRAPHY
   ============================================================= */

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 500; }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 500; }
h4 { font-size: clamp(1.125rem, 2vw, 1.5rem); font-weight: 500; }

p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  max-width: 65ch;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.gold {
  color: var(--accent-gold);
}

/* =============================================================
   LAYOUT
   ============================================================= */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-tight {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
}

section.tight {
  padding: 4rem 0;
}

.center {
  text-align: center;
}

.center p {
  margin-left: auto;
  margin-right: auto;
}

/* =============================================================
   NAVIGATION
   ============================================================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: all 0.4s ease;
  background: rgba(248, 244, 237, 0.0);
  backdrop-filter: blur(0px);
}

.nav.scrolled,
.nav.solid {
  background: rgba(248, 244, 237, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}

.nav-logo .small {
  font-size: 0.7rem;
  font-family: var(--font-sans);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-left: 0.5rem;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  position: relative;
}

.nav-links a.active {
  color: var(--accent-gold);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--accent-gold);
  color: white !important;
  padding: 0.75rem 1.5rem;
  border-radius: 2px;
  font-size: 0.8rem !important;
  letter-spacing: 0.18em !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--text-primary);
  color: white !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  margin: 5px 0;
  transition: 0.3s;
}

/* =============================================================
   HERO
   ============================================================= */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 7rem 0 4rem;
  overflow: hidden;
  background: var(--bg-cream);
}

.hero-image {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 55%;
  background: linear-gradient(135deg, var(--bg-sand) 0%, var(--bg-deep-sand) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(184, 155, 106, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(92, 107, 63, 0.1) 0%, transparent 50%);
}

/* Photo placeholder indicator */
.photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  color: var(--accent-gold);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.5;
  text-align: center;
  padding: 2rem;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding-right: 2rem;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-content h1 em {
  font-weight: 400;
  color: var(--accent-gold);
}

.hero-content .lead {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* =============================================================
   BUTTONS
   ============================================================= */

.btn {
  display: inline-block;
  padding: 1rem 2.25rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent-gold);
  color: white;
}

.btn-primary:hover {
  background: var(--text-primary);
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-medium);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--text-primary);
}

.btn-secondary:hover {
  background: var(--text-primary);
  color: white;
}

.btn-outline-gold {
  background: transparent;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
}

.btn-outline-gold:hover {
  background: var(--accent-gold);
  color: white;
}

.btn + .btn {
  margin-left: 1rem;
}

/* =============================================================
   SECTIONS — GENERIC
   ============================================================= */

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-header p {
  margin-left: auto;
  margin-right: auto;
}

.divider {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--accent-gold);
  margin: 2rem auto;
}

.bg-sand {
  background: var(--bg-sand);
}

.bg-deep-sand {
  background: var(--bg-deep-sand);
}

.bg-olive {
  background: var(--bg-olive);
  color: var(--text-on-dark);
}

.bg-olive h1, .bg-olive h2, .bg-olive h3, .bg-olive h4 {
  color: var(--text-on-dark);
}

.bg-olive p {
  color: rgba(248, 244, 237, 0.85);
}

.bg-olive .eyebrow {
  color: var(--accent-gold-light);
}

/* =============================================================
   GRID / CARDS
   ============================================================= */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.card {
  background: var(--bg-card);
  padding: 3rem 2.5rem;
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.card-number {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.card p {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* Pillar cards (olive accent) */
.pillar-card {
  text-align: center;
  padding: 3rem 2rem;
}

.pillar-card .pillar-num {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.pillar-card h3 {
  margin-bottom: 1.25rem;
}

/* =============================================================
   PRODUCT CARDS (luxury tier cards)
   ============================================================= */

.product-card {
  background: var(--bg-card);
  padding: 4rem 3rem;
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.product-card.featured {
  background: var(--bg-olive);
  color: var(--text-on-dark);
}

.product-card.featured h3,
.product-card.featured h4 {
  color: var(--text-on-dark);
}

.product-card.featured p {
  color: rgba(248, 244, 237, 0.85);
}

.product-card.featured .product-price {
  color: var(--accent-gold-light);
}

.product-card.featured .eyebrow {
  color: var(--accent-gold-light);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
}

.product-card .eyebrow {
  margin-bottom: 1rem;
}

.product-card h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.product-card .product-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.product-card.featured .product-subtitle {
  color: var(--accent-gold-light);
}

.product-features {
  list-style: none;
  margin: 2rem 0;
  flex-grow: 1;
}

.product-features li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
}

.product-card.featured .product-features li {
  color: rgba(248, 244, 237, 0.9);
  border-bottom-color: rgba(184, 155, 106, 0.2);
}

.product-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 10px;
  height: 1px;
  background: var(--accent-gold);
}

.product-price {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--accent-gold);
  margin: 2rem 0 1.5rem;
}

.product-price .currency {
  font-size: 1.25rem;
  vertical-align: super;
  margin-right: 0.25rem;
}

.product-price .frequency {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 400;
  margin-left: 0.5rem;
}

.product-meta {
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

/* =============================================================
   TESTIMONIALS
   ============================================================= */

.testimonial-card {
  background: var(--bg-card);
  padding: 3rem 2.5rem;
  border-radius: 4px;
  border-left: 2px solid var(--accent-gold);
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-attribution {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-light);
  font-weight: 500;
}

/* =============================================================
   ABOUT — STORY LAYOUT
   ============================================================= */

.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 5rem;
}

.story-block.reverse {
  direction: rtl;
}

.story-block.reverse > * {
  direction: ltr;
}

.story-image {
  background: linear-gradient(135deg, var(--bg-sand) 0%, var(--bg-deep-sand) 100%);
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.story-content h2 {
  margin-bottom: 1.5rem;
}

.story-content p {
  font-size: 1.0625rem;
}

/* =============================================================
   FORM
   ============================================================= */

.form-group {
  margin-bottom: 1.75rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text-primary);
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-gold);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* =============================================================
   FOOTER
   ============================================================= */

.footer {
  background: var(--bg-olive);
  color: var(--text-on-dark);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand h3 {
  color: var(--text-on-dark);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--accent-gold-light);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.footer-col h5 {
  color: var(--accent-gold-light);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(248, 244, 237, 0.7);
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent-gold-light);
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(212, 181, 132, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold-light);
  transition: all 0.3s;
}

.social-icons a:hover {
  background: var(--accent-gold);
  color: white;
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.social-icons svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid rgba(184, 155, 106, 0.2);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(248, 244, 237, 0.6);
}

.footer-bottom a {
  color: rgba(248, 244, 237, 0.6);
}

.footer-bottom a:hover {
  color: var(--accent-gold-light);
}

/* =============================================================
   PAGE HEADERS (sub-pages)
   ============================================================= */

.page-header {
  padding: 12rem 0 6rem;
  background: var(--bg-sand);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(184, 155, 106, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(92, 107, 63, 0.1) 0%, transparent 50%);
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  margin-bottom: 1.5rem;
}

.page-header p {
  font-size: 1.25rem;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-secondary);
  margin: 0 auto;
  max-width: 600px;
}

/* =============================================================
   RESPONSIVE
   ============================================================= */

/* =============================================================
   HERO PREMIUM — proper 2-column hero (photo right, content left)
   Replaces the old display-name + dare-hero pattern
   ============================================================= */

.hero-premium {
  background: var(--bg-cream);
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 25%, rgba(184, 155, 106, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 75%, rgba(30, 58, 95, 0.06) 0%, transparent 55%);
  pointer-events: none;
}

.hero-premium .container {
  position: relative;
  z-index: 1;
}

.hero-premium-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hero-premium-content {
  max-width: 620px;
}

.hero-premium-content .eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  margin-bottom: 1.75rem;
}

.hero-premium-content h1 {
  font-size: clamp(2.5rem, 5.2vw, 4.5rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: 2rem;
}

.hero-premium-content h1 em {
  font-style: italic;
  color: var(--accent-gold);
  font-weight: 400;
}

.hero-premium-content .hero-lead {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 560px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-cta-row .btn-primary {
  padding: 1.1rem 2.25rem;
  font-size: 0.82rem;
  box-shadow: var(--shadow-medium);
}

.btn-text {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-primary);
  text-decoration: none;
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.btn-text:hover {
  color: var(--accent-gold);
  border-bottom-color: var(--accent-gold);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  max-width: 560px;
}

.hero-trust-stars {
  color: var(--accent-gold);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  white-space: nowrap;
}

.hero-trust-text {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--text-light);
  font-style: italic;
  font-family: var(--font-serif);
}

.hero-premium-photo {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--bg-sand) 0%, var(--bg-deep-sand) 100%);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  border-radius: 2px;
}

.hero-premium-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 968px) {
  .hero-premium {
    padding: 3.5rem 0 4rem;
  }
  .hero-premium-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-premium-photo {
    aspect-ratio: 4 / 5;
    max-width: 420px;
    margin: 0 auto;
    order: -1;
  }
  .hero-premium-content {
    text-align: center;
    margin: 0 auto;
  }
  .hero-premium-content .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta-row {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}

/* =============================================================
   LEGAL PAGES — Terms / Refund / Privacy
   ============================================================= */
.legal-page {
  padding: 4rem 0 6rem;
  background: var(--bg-cream);
}
.legal-page .container-narrow {
  max-width: 820px;
}
.legal-page .effective-date {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--accent-gold);
  margin-bottom: 2.5rem;
  display: block;
  text-align: center;
}
.legal-page h2 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border-subtle);
}
.legal-page h2:first-of-type {
  margin-top: 0;
}
.legal-page h3 {
  font-size: 1.15rem;
  font-weight: 600;
  font-family: var(--font-sans);
  margin-top: 1.75rem;
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}
.legal-page p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.1rem;
  color: var(--text-secondary);
  max-width: none;
}
.legal-page p strong {
  color: var(--text-primary);
}
.legal-page ul {
  list-style: none;
  margin: 1rem 0 1.5rem;
  padding: 0;
}
.legal-page ul li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.6rem;
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.legal-page ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 10px;
  height: 1px;
  background: var(--accent-gold);
}
.legal-page hr {
  border: none;
  border-top: 1px solid var(--border-subtle);
  margin: 3rem 0;
}
.legal-page .lead-intro {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}
.legal-page .legal-contact {
  background: var(--bg-sand);
  border-left: 3px solid var(--accent-gold);
  padding: 1.75rem 2rem;
  margin: 2.5rem 0;
  border-radius: 4px;
}
.legal-page .legal-contact p { margin-bottom: 0.4rem; }
.legal-page .legal-contact a { color: var(--accent-gold); font-weight: 500; }
.legal-page .legal-footnote {
  margin-top: 4rem;
  padding: 2.5rem;
  background: var(--bg-olive);
  color: var(--text-on-dark);
  text-align: center;
  border-radius: 4px;
}
.legal-page .legal-footnote p {
  color: rgba(248, 244, 237, 0.95);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* =============================================================
   FEATURED PRODUCTS — top of products page ($5K / $10K)
   ============================================================= */
.featured-products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1140px;
  margin: 0 auto;
}

/* =============================================================
   COMPACT PRODUCT ICONS — below featured tier
   ============================================================= */
.compact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1080px;
  margin: 0 auto;
}
.compact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 1.75rem 1.5rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  text-decoration: none;
  color: inherit;
}
.compact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  border-color: var(--accent-gold);
}
.compact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
}
.compact-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}
.compact-card.featured-icon .compact-card-icon {
  background: var(--bg-olive);
  color: var(--accent-gold-light);
}
.compact-card-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-primary);
}
.compact-card-line {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin: 0;
}
.compact-card-price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--accent-gold);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 0.5rem;
}
.compact-card-price .strike {
  font-size: 0.85rem;
  text-decoration: line-through;
  color: var(--text-light);
  font-weight: 400;
}
.compact-card-price.is-free {
  color: var(--bg-olive);
}
.compact-card-cta {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 600;
  margin-top: 0.25rem;
}

/* =============================================================
   PRODUCT MODAL — premium dialog for compact card details
   ============================================================= */
.product-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 58, 95, 0.65);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.product-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.product-modal {
  background: var(--bg-card);
  border-radius: 8px;
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 3rem 2.5rem 2.5rem;
  box-shadow: var(--shadow-deep);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.product-modal-overlay.open .product-modal {
  transform: translateY(0);
}
.product-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-sand);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--text-primary);
  transition: all 0.25s ease;
}
.product-modal-close:hover {
  background: var(--accent-gold);
  color: white;
}
.product-modal h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.product-modal .eyebrow { margin-bottom: 0.5rem; }
.product-modal .product-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.product-modal-body p {
  font-size: 0.98rem;
  margin-bottom: 1.25rem;
}
.product-modal-body ul {
  list-style: none;
  margin: 1rem 0 1.5rem;
}
.product-modal-body ul li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.product-modal-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 10px;
  height: 1px;
  background: var(--accent-gold);
}
.product-modal-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--accent-gold);
  font-weight: 500;
  margin: 1.25rem 0;
}
.product-modal-price .strike {
  font-size: 1.1rem;
  text-decoration: line-through;
  color: var(--text-light);
  margin-left: 0.75rem;
  font-weight: 400;
}
.product-modal-cta-row {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .featured-products-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .compact-grid { grid-template-columns: repeat(2, 1fr); }
  .product-modal { padding: 2.5rem 1.75rem 2rem; }
}
@media (max-width: 480px) {
  .compact-grid { grid-template-columns: 1fr; }
}

/* =============================================================
   LANGUAGE TOGGLE — EN | বাংলা
   ============================================================= */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  background: rgba(212, 181, 132, 0.12);
  border: 1px solid rgba(212, 181, 132, 0.35);
  border-radius: 999px;
  padding: 0.15rem;
  margin-right: 0.5rem;
}
.lang-toggle button {
  background: none;
  border: none;
  color: var(--accent-gold-light);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
  opacity: 0.65;
  line-height: 1;
}
.lang-toggle button:hover {
  opacity: 1;
}
.lang-toggle button.active {
  background: var(--accent-gold);
  color: white;
  opacity: 1;
}

/* Inline variant for nav bars on light backgrounds */
.lang-toggle-inline {
  background: rgba(184, 155, 106, 0.10);
  border-color: rgba(184, 155, 106, 0.35);
  margin-right: 0;
}
.lang-toggle-inline button {
  color: var(--text-secondary);
  font-size: 0.65rem;
  padding: 0.35rem 0.7rem;
}
.lang-toggle-inline button.active {
  background: var(--accent-gold);
  color: white;
}

/* Body class controls font for Bangla */
.lang-bn {
  font-family: var(--font-sans-bn, 'Hind Siliguri', 'Noto Sans Bengali', var(--font-sans));
}
.lang-bn h1, .lang-bn h2, .lang-bn h3, .lang-bn h4, .lang-bn h5 {
  font-family: var(--font-serif-bn, 'Tiro Bangla', 'Noto Serif Bengali', var(--font-serif));
  letter-spacing: 0;
  line-height: 1.25;
}
.lang-bn .display-tagline,
.lang-bn .dare-eyebrow,
.lang-bn em,
.lang-bn .serif-italic {
  font-family: var(--font-serif-bn, 'Tiro Bangla', 'Noto Serif Bengali', var(--font-serif));
}

/* =============================================================
   TOP BAR — name + social row (Dalton-style)
   ============================================================= */

.topbar {
  background: var(--bg-olive);
  color: var(--text-on-dark);
  padding: 0.7rem 0;
  position: relative;
  z-index: 110;
}

.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.topbar-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent-gold-light);
}

.topbar-socials {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.topbar-socials a {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(212, 181, 132, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold-light);
  transition: all 0.3s;
}

.topbar-socials a:hover {
  background: var(--accent-gold);
  color: white;
  border-color: var(--accent-gold);
  transform: translateY(-1px);
}

.topbar-socials svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Push nav down so it sits under the topbar */
.nav.with-topbar {
  position: sticky;
  top: 0;
}

/* =============================================================
   DALTON-STYLE NAME MARQUEE / DISPLAY HERO
   ============================================================= */

.display-name {
  text-align: center;
  padding: 4rem 0 1rem;
  background: var(--bg-cream);
}

.display-name h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1;
  margin: 0;
}

.display-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  color: var(--accent-gold);
  margin-top: 1.25rem;
  letter-spacing: 0.02em;
}

/* =============================================================
   DARE / MISSION HERO (Dalton-style centered)
   ============================================================= */

.dare-hero {
  background: var(--bg-cream);
  padding: 4rem 0 7rem;
  text-align: center;
}

.dare-hero .container {
  max-width: 1080px;
}

.dare-eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--accent-gold);
  margin-bottom: 2rem;
  display: block;
}

.dare-hero h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.3;
  max-width: 980px;
  margin: 0 auto 3rem;
}

.dare-hero h2 em {
  font-style: italic;
  color: var(--accent-gold);
  font-weight: 400;
}

/* =============================================================
   AUTHORITY STATEMENT — dark navy block (Dalton-style)
   ============================================================= */

.authority-block {
  background: var(--bg-olive);
  color: var(--text-on-dark);
  padding: 7rem 0;
  text-align: center;
}

.authority-block .container {
  max-width: 1080px;
}

.authority-block h2 {
  color: var(--text-on-dark);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  line-height: 1.45;
  max-width: 920px;
  margin: 0 auto;
}

.authority-block h2 strong {
  font-weight: 500;
  color: var(--accent-gold-light);
  font-style: italic;
}

/* =============================================================
   IDENTITY STATEMENT — photo + bold line (Dalton-style)
   ============================================================= */

.identity-block {
  background: var(--bg-cream);
  padding: 7rem 0;
}

.identity-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.identity-photo {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--bg-sand) 0%, var(--bg-deep-sand) 100%);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}

.identity-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.identity-content h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.identity-content h2 em {
  font-style: italic;
  color: var(--accent-gold);
  font-weight: 400;
}

.identity-divider {
  width: 60px;
  height: 1px;
  background: var(--accent-gold);
  margin: 2rem 0;
}

/* =============================================================
   WHO AM I — stats row (Dalton-style)
   ============================================================= */

.who-block {
  background: var(--bg-sand);
  padding: 7rem 0;
}

.who-header {
  text-align: center;
  margin-bottom: 4rem;
}

.who-header h2 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.who-header p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.7;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 5rem 0 4rem;
}

.stat {
  text-align: center;
  padding: 2rem 1rem;
  border-left: 1px solid var(--border-medium);
}

.stat:first-child {
  border-left: none;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 500;
}

.who-cta {
  text-align: center;
  margin-top: 2rem;
}

/* =============================================================
   FLAGSHIP OFFER BLOCK (Aslah Method — Sovereign-Architect-style)
   ============================================================= */

.flagship-block {
  background: var(--bg-cream);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.flagship-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.flagship-photo {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--bg-sand) 0%, var(--bg-deep-sand) 100%);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}

.flagship-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flagship-content h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.flagship-content h2 em {
  font-style: italic;
  color: var(--accent-gold);
  font-weight: 400;
}

.flagship-content .lead {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* =============================================================
   VALUES STRIP — pillar words on cream (Dalton "What I Stand For")
   ============================================================= */

.values-strip {
  background: var(--bg-deep-sand);
  padding: 6rem 0;
  text-align: center;
}

.values-strip .eyebrow {
  margin-bottom: 0.5rem;
}

.values-strip h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 3.5rem;
  color: var(--text-secondary);
}

.values-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 3.5rem;
  max-width: 1080px;
  margin: 0 auto;
}

.value-word {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.5rem 0;
}

.value-word::after {
  content: '·';
  position: absolute;
  right: -1.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-gold);
  font-size: 1.5rem;
}

.value-word:last-child::after {
  display: none;
}

/* =============================================================
   TESTIMONIAL WALL (Dalton-style quote cards)
   ============================================================= */

.testimonial-wall {
  background: var(--bg-cream);
  padding: 7rem 0;
}

.testimonial-wall .section-header h2 {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 500;
}

.testimonial-wall .section-header h2 em {
  font-style: italic;
  color: var(--accent-gold);
  font-weight: 400;
}

.tg {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.tg .testimonial-card {
  padding: 2.5rem 2rem;
  background: var(--bg-card);
  box-shadow: var(--shadow-soft);
}

.tg .testimonial-card .testimonial-quote {
  font-size: 1.05rem;
}

/* =============================================================
   FINAL CTA — dark navy band
   ============================================================= */

.final-cta {
  background: var(--bg-olive);
  color: var(--text-on-dark);
  padding: 7rem 0;
  text-align: center;
}

.final-cta h2 {
  color: var(--text-on-dark);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta h2 em {
  font-style: italic;
  color: var(--accent-gold-light);
  font-weight: 400;
}

.final-cta p {
  color: rgba(248, 244, 237, 0.85);
  font-size: 1.125rem;
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

.final-cta .btn-primary {
  background: var(--accent-gold);
}

.final-cta .btn-primary:hover {
  background: white;
  color: var(--bg-olive);
}

/* =============================================================
   RESPONSIVE for new Dalton-style blocks
   ============================================================= */

@media (max-width: 968px) {
  .topbar-inner {
    flex-direction: column;
    gap: 0.75rem;
    padding: 0 1.25rem;
  }
  .topbar-name { font-size: 0.85rem; letter-spacing: 0.25em; }
  .topbar-socials { gap: 0.6rem; }
  .topbar-socials a { width: 30px; height: 30px; }

  .identity-grid,
  .flagship-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .stat {
    border-left: none;
    border-top: 1px solid var(--border-medium);
    padding: 1.5rem 0.5rem;
  }
  .stat:nth-child(-n+2) {
    border-top: none;
  }

  .values-row {
    gap: 0.5rem 2rem;
  }
  .value-word::after {
    right: -1.25rem;
  }

  .tg {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 968px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(248, 244, 237, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    padding-top: 8rem;
    min-height: auto;
  }

  .hero-image {
    position: relative;
    width: 100%;
    height: 400px;
    margin-top: 3rem;
  }

  .hero-content {
    padding-right: 0;
    text-align: center;
    margin: 0 auto;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .story-block {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .story-block.reverse {
    direction: ltr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  section {
    padding: 4rem 0;
  }

  .page-header {
    padding: 8rem 0 4rem;
  }
}
