/* =========================================================
   Chance With Me — main stylesheet
   White/light theme, navy + gold accents (from brand logo)
   ========================================================= */

:root {
  --navy: #152238;
  --navy-deep: #0d1526;
  --gold: #c9a227;
  --gold-light: #e6c866;
  --cream: #fdfbf5;
  --white: #ffffff;
  --ink: #22283a;
  --muted: #6b7180;
  --border: #ece7d9;
  --shadow: 0 10px 30px rgba(21, 34, 56, 0.08);
  --shadow-sm: 0 4px 14px rgba(21, 34, 56, 0.06);
  --radius: 14px;
  --header-h: 128px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }

body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  margin: 0;
  color: var(--navy);
  text-wrap: balance;
}

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

.eyebrow {
  display: inline-block;
  font-family: "Cinzel", "Playfair Display", serif;
  font-size: 12.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}

.section {
  padding: 72px 0;
}
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
  font-weight: 800;
}
.section-head h2::after {
  content: "";
  display: block;
  width: 76px;
  height: 2px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.section-head p {
  color: var(--muted);
  margin-top: 12px;
  font-size: 15px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: translateX(-180%) skewX(-20deg);
  transition: transform 0.65s ease;
  pointer-events: none;
}
.btn:hover::after { transform: translateX(340%) skewX(-20deg); }
.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover { background: var(--navy-deep); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow); }

/* =========================== Marquee bar =========================== */
.announce-bar {
  background: var(--navy);
  color: var(--gold-light);
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
  font-size: 13px;
  letter-spacing: 0.5px;
}
.marquee {
  display: inline-flex;
  animation: marquee 22s linear infinite;
}
.marquee span {
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.marquee span::after {
  content: "\2726";
  color: var(--gold);
  margin-left: 28px;
  font-size: 10px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================== Header =========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 1;
  min-width: 0;
}
.logo-link img {
  height: 64px;
  width: 64px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
}
.logo-text {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.1;
}
.logo-text strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}
.logo-text span {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
}

.search-bar {
  flex: 1;
  max-width: 440px;
  display: flex;
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 18px;
  gap: 10px;
}
.search-bar input {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  font-size: 14px;
  color: var(--ink);
}
.search-bar svg { flex-shrink: 0; color: var(--muted); }

.header-icons {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
}
.icon-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  color: var(--navy);
}
.icon-btn svg { width: 22px; height: 22px; transition: transform 0.25s ease, color 0.25s ease; }
.icon-btn:hover svg { transform: translateY(-2px); color: var(--gold); }
.icon-btn.bump svg { animation: cartBump 0.5s ease; }
.cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 10px;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--navy);
}

/* Main nav / mega menu */
.main-nav {
  border-top: 1px solid var(--border);
}
.nav-list {
  display: flex;
  justify-content: center;
  gap: 36px;
  padding: 0;
}
.nav-item { position: relative; }
.nav-item > a {
  display: block;
  padding: 14px 4px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--navy);
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-item:hover > a,
.nav-item > a.reviews-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 620px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 50;
}
.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-col {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.nav-item:hover .mega-col { opacity: 1; transform: translateY(0); }
.nav-item:hover .mega-col:nth-child(2) { transition-delay: 0.06s; }
.nav-item:hover .mega-col:nth-child(3) { transition-delay: 0.12s; }
.mega-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin-bottom: 12px;
}
.mega-col li { margin-bottom: 9px; }
.mega-col a {
  font-size: 13.5px;
  color: var(--ink);
}
.mega-col a:hover { color: var(--gold); }

/* Mobile nav */
@media (max-width: 900px) {
  .search-bar { display: none; }
  .menu-toggle { display: block; }
  .header-top { padding: 12px 16px; gap: 10px; }
  .logo-link img { height: 44px; width: 44px; }
  .logo-text { min-width: 0; }
  .logo-text strong { font-size: 16px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .logo-text span { font-size: 9px; letter-spacing: 0.8px; white-space: normal; }
  .header-icons { gap: 12px; }
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
    z-index: 150;
  }
  .main-nav.open { transform: translateX(0); }
  .nav-list { flex-direction: column; gap: 0; padding: 10px 24px 40px; }
  .nav-item > a { padding: 16px 0; border-bottom: 1px solid var(--border); }
  .mega-menu {
    position: static;
    transform: none;
    min-width: 0;
    grid-template-columns: 1fr 1fr;
    box-shadow: none;
    border: none;
    padding: 10px 0 18px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
  }
  .nav-item.mobile-open .mega-menu { display: grid; }
}

/* =========================== Animation keyframes =========================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.08); }
}
@keyframes heartPop {
  0% { transform: scale(1); }
  40% { transform: scale(1.4); }
  100% { transform: scale(1); }
}
@keyframes cartBump {
  0% { transform: scale(1) rotate(0); }
  30% { transform: scale(1.3) rotate(-10deg); }
  60% { transform: scale(0.92) rotate(6deg); }
  100% { transform: scale(1) rotate(0); }
}

/* =========================== Scroll-reveal =========================== */
.reveal { opacity: 0; }
.reveal.in-view {
  animation: fadeInUp 0.7s ease forwards;
  animation-delay: calc(var(--i, 0) * 70ms);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; animation: none !important; }
  .hero-copy > *, .hero-media { animation: none !important; opacity: 1; }
  .hero-media .float-badge, .hero-media::before { animation: none !important; }
}

/* =========================== Hero =========================== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  position: relative;
  overflow: hidden;
}
.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy p,
.hero-copy .hero-actions,
.hero-copy .hero-stats {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}
.hero-copy .eyebrow { animation-delay: 0.1s; }
.hero-copy h1 { animation-delay: 0.22s; }
.hero-copy p { animation-delay: 0.38s; }
.hero-copy .hero-actions { animation-delay: 0.54s; }
.hero-copy .hero-stats { animation-delay: 0.7s; }
.hero-media { opacity: 0; animation: fadeInUp 1s ease forwards; animation-delay: 0.3s; }
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 80px 24px;
}
.hero-copy .eyebrow { color: var(--gold-light); }
.hero-copy h1 {
  color: var(--white);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.3px;
}
.hero-copy h1 em {
  color: var(--gold-light);
  font-style: normal;
  font-family: "Alex Brush", "Playfair Display", cursive;
  font-weight: 400;
  font-size: 1.3em;
  letter-spacing: 0.5px;
  display: inline-block;
  line-height: 0.9;
  padding: 0 2px;
}
.hero-copy p {
  color: #cfd5e2;
  margin-top: 18px;
  font-size: 16px;
  max-width: 460px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-stats div strong {
  display: block;
  color: var(--gold-light);
  font-family: "Playfair Display", serif;
  font-size: 22px;
}
.hero-stats div span {
  color: #aab1c3;
  font-size: 12.5px;
}
.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 6% 10%;
  background: radial-gradient(circle, rgba(230, 200, 102, 0.4), transparent 70%);
  filter: blur(30px);
  z-index: 0;
  animation: glowPulse 4.5s ease-in-out infinite;
}
.hero-media img {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.hero-media:hover img { transform: scale(1.02); }
.hero-media .float-badge {
  position: absolute;
  z-index: 2;
  bottom: 18px;
  left: 18px;
  background: var(--white);
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatY 3.5s ease-in-out infinite;
}
.hero-media .float-badge strong { display: block; font-size: 14px; color: var(--navy); }
.hero-media .float-badge span { font-size: 11px; color: var(--muted); }

/* Cutout portrait (transparent PNG): no card frame, sits directly in the scene */
.hero-media--cutout {
  align-items: flex-end;
  min-height: 460px;
}
.hero-media--cutout::before {
  inset: auto;
  top: 8%;
  left: 18%;
  right: 18%;
  bottom: 12%;
}
.hero-media--cutout::after {
  content: "";
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  width: 52%;
  height: 28px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.5), transparent 72%);
  filter: blur(4px);
  z-index: 0;
}
.hero-media--cutout img {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 560px;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 22px 26px rgba(0, 0, 0, 0.45));
}
.hero-media--cutout:hover img { transform: scale(1.015); }
.hero-media--cutout .float-badge { bottom: 10%; left: 0; }

@media (max-width: 860px) {
  .hero-media--cutout { min-height: 0; justify-content: center; }
  .hero-media--cutout img { max-height: 420px; }
  .hero-media--cutout .float-badge { left: 50%; transform: translateX(-50%); }
}

@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; padding: 56px 20px; }
  .hero-copy p { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-media { margin-top: 20px; }
}

/* =========================== Trust badges =========================== */
.trust-strip {
  border-bottom: 1px solid var(--border);
  padding: 26px 0;
}
.trust-strip .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--navy);
  font-weight: 600;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; transition: transform 0.3s ease; }
.trust-item:hover svg { transform: scale(1.2) rotate(-6deg); }

/* =========================== Category grid =========================== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.category-card {
  text-align: center;
  padding: 18px 10px 6px;
  border-radius: var(--radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.category-card:hover { transform: translateY(-6px); }
.category-card .thumb {
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 14px;
  aspect-ratio: 1/1;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.category-card:hover .thumb { box-shadow: var(--shadow); border-color: var(--gold); }
.category-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.category-card:hover .thumb img { transform: scale(1.14) rotate(2deg); }
.category-card h3 { font-size: 15px; margin-bottom: 4px; }
.category-card p { font-size: 12px; color: var(--muted); margin: 0; }

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

/* =========================== Collection banners =========================== */
.collections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.collection-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-sm);
}
.collection-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.6s ease;
}
.collection-card:hover img { transform: scale(1.08); }
.collection-card .overlay a {
  display: inline-block;
  transition: transform 0.25s ease;
}
.collection-card:hover .overlay a { transform: translateX(4px); }
.collection-card .overlay {
  position: relative;
  z-index: 1;
  padding: 26px;
  width: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(13, 21, 38, 0.85) 90%);
}
.collection-card .overlay .eyebrow { color: var(--gold-light); }
.collection-card .overlay h3 { color: var(--white); font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.collection-card .overlay p { color: #d8dce6; font-size: 13px; margin-bottom: 16px; }
.collection-card .overlay a {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 2px;
}

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

/* =========================== Hanuman/feature banner =========================== */
.feature-banner {
  background: var(--cream);
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 40px;
  padding: 48px;
  overflow: hidden;
}
.feature-banner { transition: box-shadow 0.4s ease; }
.feature-banner:hover { box-shadow: var(--shadow); }
.feature-banner img { border-radius: 18px; width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform 0.6s ease; }
.feature-banner:hover img { transform: scale(1.05); }
.feature-list li { transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease; }
.feature-list li:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.feature-banner h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; margin: 14px 0 16px; }
.feature-banner p { color: var(--muted); line-height: 1.7; margin-bottom: 22px; }
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}
.feature-list li {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
}
@media (max-width: 860px) {
  .feature-banner { grid-template-columns: 1fr; padding: 30px 22px; }
}

/* =========================== Product grid =========================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.product-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-card .thumb-wrap {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.product-card .thumb-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .thumb-wrap img { transform: scale(1.09); }
.wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: color 0.2s ease, transform 0.2s ease;
}
.wishlist-btn:hover { color: var(--gold); transform: scale(1.1); }
.wishlist-btn.pop svg { animation: heartPop 0.4s ease; }
.wishlist-btn.active { color: var(--gold); }
.product-info { padding: 16px 16px 20px; }
.product-info .cat { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); font-weight: 700; }
.product-info h3 { font-size: 15px; margin: 6px 0 8px; font-family: "Poppins", sans-serif; font-weight: 600; }
.price-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.price-row .price { font-weight: 700; color: var(--navy); font-size: 15px; }
.price-row .was { color: var(--muted); text-decoration: line-through; font-size: 13px; }
.add-btn {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1.5px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  font-size: 13px;
  transition: background 0.2s, color 0.2s;
}
.add-btn:hover { background: var(--navy); color: var(--white); }
.add-btn.added { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }

@media (max-width: 980px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .product-grid { grid-template-columns: repeat(2, 1fr); } gap: 16px; }

.section-footer-cta { text-align: center; margin-top: 40px; }

/* =========================== Reading / quiz section =========================== */
.reading-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: 24px;
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  color: var(--white);
}
.reading-section .eyebrow { color: var(--gold-light); }
.reading-section h2 { color: var(--white); font-size: clamp(26px, 3.4vw, 36px); font-weight: 800; margin-bottom: 16px; }
.reading-section p { color: #cfd5e2; line-height: 1.7; margin-bottom: 24px; }
.reading-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 30px; }
.reading-features li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: #e8eaf1; }
.reading-features svg { color: var(--gold-light); flex-shrink: 0; }
.reading-visual {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(230, 200, 102, 0.25);
  border-radius: 18px;
  padding: 30px;
  text-align: center;
}
.reading-visual img { width: 160px; height: 160px; object-fit: cover; border-radius: 50%; margin: 0 auto 18px; }
.reading-visual h4 { color: var(--white); font-size: 18px; margin-bottom: 8px; }
.reading-visual p { color: #b9bfd0; font-size: 13px; margin-bottom: 20px; }

@media (max-width: 860px) {
  .reading-section { grid-template-columns: 1fr; padding: 40px 26px; }
  .reading-features { grid-template-columns: 1fr; }
}

/* =========================== Brand story timeline =========================== */
.timeline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  margin-top: 20px;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
}
.timeline-item {
  flex: 1;
  text-align: center;
  position: relative;
}
.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.timeline-item:hover .timeline-dot { box-shadow: 0 0 0 6px rgba(201, 162, 39, 0.25); transform: scale(1.15); }
.timeline-item strong { display: block; color: var(--navy); font-family: "Playfair Display", serif; font-size: 18px; margin-bottom: 6px; }
.timeline-item span { font-size: 13px; color: var(--muted); }

@media (max-width: 780px) {
  .timeline { flex-direction: column; }
  .timeline::before { display: none; }
}

.brand-quote {
  text-align: center;
  max-width: 640px;
  margin: 50px auto 0;
  font-family: "Playfair Display", serif;
  font-size: 23px;
  font-weight: 600;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
}
.brand-quote span {
  color: var(--gold);
  font-family: "Alex Brush", "Playfair Display", cursive;
  font-style: normal;
  font-weight: 400;
  font-size: 1.5em;
  letter-spacing: 0.5px;
}

/* =========================== Newsletter =========================== */
.newsletter {
  background: var(--cream);
  border-radius: 24px;
  padding: 50px;
  text-align: center;
}
.newsletter h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 800; margin-bottom: 10px; }
.newsletter p { color: var(--muted); margin-bottom: 26px; }
.newsletter form {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter input {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  outline: none;
  font-size: 14px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.newsletter input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15); }

/* =========================== Footer =========================== */
.site-footer {
  background: var(--navy-deep);
  color: #c7ccd9;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand img {
  height: 56px;
  width: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  margin-bottom: 14px;
}
.footer-brand p { font-size: 13.5px; line-height: 1.7; color: #a7acbc; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: #c7ccd9;
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--gold); color: var(--navy-deep); }
.site-footer h4 {
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 18px;
}
.site-footer .flinks li { margin-bottom: 11px; }
.site-footer .flinks a { font-size: 13.5px; color: #a7acbc; transition: color 0.2s; }
.site-footer .flinks a:hover { color: var(--gold-light); }
.footer-contact li { font-size: 13.5px; margin-bottom: 12px; display: flex; gap: 10px; color: #a7acbc; }
.footer-contact svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 12.5px;
  color: #8890a3;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom .legal-links { display: flex; gap: 18px; }
.footer-bottom a:hover { color: var(--gold-light); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* =========================== Back to top =========================== */
.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s, transform 0.25s;
  z-index: 300;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); color: var(--navy-deep); transform: translateY(-4px); }

/* Utility */
.hide-mobile { }
@media (max-width: 900px) {
  .hide-mobile { display: none !important; }
}
