/* ============================================
   Aspagil — Editorial luxury theme v3
   Magazine-grade | Layered | Cinematic
   ============================================ */

:root {
  --navy: #0E2A3E;
  --navy-deep: #050F18;
  --navy-soft: #1A3F58;
  --navy-glow: rgba(14, 42, 62, 0.55);
  --teal: #1C5D7A;
  --teal-soft: #2A7596;
  --gold: #D4A24C;
  --gold-warm: #E8B85C;
  --gold-soft: #F3D899;
  --gold-deep: #A87B30;
  --gold-bright: #F7E08A;
  --ivory: #F5F1E8;
  --ivory-soft: #FAF7F0;
  --cream: #FDFBF5;
  --paper: #F2EBDA;
  --white: #FFFFFF;
  --gray-100: #EFEAE0;
  --gray-200: #DDD6C7;
  --gray-300: #C9C2B5;
  --gray-500: #8C857A;
  --gray-700: #5F5950;
  --text-on-navy: #F5F1E8;
  --text-muted-on-navy: #B8CAD6;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 4px rgba(14, 42, 62, 0.06);
  --shadow-md: 0 12px 28px rgba(14, 42, 62, 0.10);
  --shadow-lg: 0 24px 56px rgba(14, 42, 62, 0.16);
  --shadow-xl: 0 40px 80px -20px rgba(14, 42, 62, 0.35);
  --shadow-glow-gold: 0 0 60px -10px rgba(212, 162, 76, 0.55);

  --container: 1320px;
  --header-h: 84px;
  --serif: 'Frank Ruhl Libre', 'Heebo', Georgia, serif;
  --sans: 'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --display: 'Frank Ruhl Libre', Georgia, serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select, button { font-family: inherit; }

/* ---------- base ---------- */
html { scroll-behavior: smooth; }
body {
  direction: rtl;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* paper texture overlay */
body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 1000;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='240' height='240' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

h1, h2, h3, h4 { font-weight: 700; line-height: 1.08; margin: 0 0 0.55em; color: var(--navy); letter-spacing: -0.015em; }
h1 { font-family: var(--display); font-weight: 700; letter-spacing: -0.03em; }
h2 { font-family: var(--display); font-weight: 700; font-size: clamp(2rem, 4.5vw, 3.6rem); letter-spacing: -0.025em; }
h3 { font-size: 1.4rem; font-weight: 700; line-height: 1.3; }
h4 { font-size: 1.1rem; }
p { margin: 0 0 1em; }

.serif { font-family: var(--display); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--gray-500); }
.text-large { font-size: 1.2rem; color: var(--gray-700); line-height: 1.65; }

/* metallic gold gradient text */
.gold-text {
  background: linear-gradient(135deg, #F7E08A 0%, #D4A24C 30%, #A87B30 55%, #E8B85C 75%, #F3D899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-family: var(--display);
  font-weight: 900;
}

/* underline accent for headlines */
.underline-accent { position: relative; display: inline-block; }
.underline-accent::after {
  content: ''; position: absolute; right: 0; bottom: 0.05em;
  height: 0.18em; width: 100%;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold), var(--gold-deep));
  z-index: -1; opacity: 0.6;
  border-radius: 2px;
}

.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; position: relative; }
.container-narrow { width: min(100% - 2rem, 1080px); margin-inline: auto; }
.section { padding: clamp(4rem, 9vw, 9rem) 0; position: relative; overflow: hidden; }
.section--alt { background: var(--ivory-soft); }
.section--dark { background: var(--navy); color: var(--text-on-navy); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--text-on-navy); }
.section--cream { background: var(--cream); }
.section--paper { background: var(--paper); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: ''; width: 36px; height: 1px; background: var(--gold);
  display: inline-block;
}
.section--dark .eyebrow { color: var(--gold-warm); }
.section--dark .eyebrow::before { background: var(--gold-warm); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 32px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 1.02rem;
  transition: all .28s cubic-bezier(.2,.7,.3,1);
  cursor: pointer;
  border: 1.5px solid transparent;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.btn:hover::after { opacity: 1; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  color: var(--navy);
  box-shadow: 0 10px 30px -8px rgba(212, 162, 76, 0.6), inset 0 1px 0 rgba(255,255,255,0.3);
  font-weight: 600;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 38px -8px rgba(212, 162, 76, 0.7), inset 0 1px 0 rgba(255,255,255,0.3); }
.btn-outline-light { background: transparent; color: var(--text-on-navy); border-color: rgba(255,255,255,0.4); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--gold); color: var(--gold); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--text-on-navy); }
.btn-large { padding: 20px 40px; font-size: 1.1rem; }
.btn .arrow { display: inline-block; transition: transform .25s; }
.btn:hover .arrow { transform: translateX(-5px); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 251, 245, 0.85);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(14, 42, 62, 0.06);
  min-height: var(--header-h);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { height: 50px; width: auto; }
.brand-name { font-family: var(--display); font-weight: 700; font-size: 1.6rem; color: var(--navy); line-height: 1; letter-spacing: -0.01em; }
.brand-tag { font-size: 0.74rem; color: var(--gray-500); margin-top: 5px; letter-spacing: 0.06em; text-transform: uppercase; }

.main-nav { display: flex; gap: 2.4rem; align-items: center; }
.main-nav a {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
  padding: 6px 0;
  position: relative;
}
.main-nav a::after {
  content: ''; position: absolute; bottom: 0; right: 0;
  height: 2px; width: 0; background: var(--gold);
  transition: width .28s cubic-bezier(.2,.7,.3,1);
}
.main-nav a:hover::after, .main-nav a.is-active::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 14px; }
.phone-link { font-weight: 700; color: var(--teal); font-size: 1.05rem; direction: ltr; unicode-bidi: embed; }
.phone-link:hover { color: var(--gold-deep); }

.menu-toggle { display: none; padding: 10px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: .25s; }

@media (max-width: 1100px) {
  .main-nav { display: none; position: absolute; top: var(--header-h); right: 0; left: 0; background: var(--white); flex-direction: column; gap: 0; padding: 1rem; border-bottom: 1px solid var(--gray-100); box-shadow: var(--shadow-md); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 14px 0; width: 100%; border-bottom: 1px solid var(--gray-100); }
  .main-nav a:last-child { border-bottom: none; }
  .menu-toggle { display: block; }
  .header-cta .phone-link { display: none; }
}

/* ============================================
   HERO — EDITORIAL MAGAZINE COVER
   ============================================ */

.hero {
  background: var(--navy);
  color: var(--text-on-navy);
  padding: clamp(2rem, 5vw, 4rem) 0 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: calc(100vh - var(--header-h));
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse 60% 50% at 75% 25%, rgba(28, 93, 122, 0.6), transparent 70%),
    radial-gradient(ellipse 50% 40% at 15% 85%, rgba(212, 162, 76, 0.22), transparent 65%),
    linear-gradient(170deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-soft) 100%);
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* top meta-bar above hero */
.hero-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 0 2rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted-on-navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: clamp(2rem, 5vw, 4rem);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; display: inline-block; box-shadow: 0 0 10px var(--gold); }
.hero-meta .meta-tag { color: var(--gold); }
@media (max-width: 720px) { .hero-meta { font-size: 0.66rem; gap: 0.5rem; flex-wrap: wrap; } }

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.hero-content { position: relative; }
.hero-content h1 {
  color: var(--text-on-navy);
  margin-bottom: 1.6rem;
  font-size: clamp(3rem, 8vw, 6.4rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.035em;
}
.hero-content h1 .line { display: block; }
.hero-content h1 .accent {
  background: linear-gradient(135deg, #F7E08A 0%, #D4A24C 40%, #A87B30 70%, #F3D899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 500;
}
.hero-content p.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  color: var(--text-muted-on-navy);
  max-width: 540px;
  margin-bottom: 2.4rem;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.hero-trust {
  margin-top: 2.8rem;
  display: flex; align-items: center; gap: 1.4rem;
  color: var(--text-muted-on-navy);
  font-size: 0.92rem;
  flex-wrap: wrap;
}
.hero-trust .stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; }
.hero-trust .divider { width: 1px; height: 18px; background: rgba(255,255,255,0.15); }

/* hero visual stage */
.hero-stage {
  position: relative;
  aspect-ratio: 1/1.05;
  display: flex; align-items: center; justify-content: center;
}
.hero-stage svg.main-comp { width: 100%; max-width: 580px; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4)); }

/* decorative price/quality stamp */
.hero-stamp {
  position: absolute;
  top: 6%; right: -5%;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  text-align: center;
  transform: rotate(-12deg);
  box-shadow: var(--shadow-glow-gold), 0 20px 40px -10px rgba(0,0,0,0.4);
  z-index: 4;
  animation: stamp-tilt 4s ease-in-out infinite;
}
.hero-stamp::before {
  content: ''; position: absolute; inset: 6px;
  border: 1.5px dashed rgba(14, 42, 62, 0.35);
  border-radius: 50%;
}
.hero-stamp .stamp-num { font-size: 2rem; line-height: 1; }
.hero-stamp .stamp-text { font-size: 0.7rem; letter-spacing: 0.1em; margin-top: 4px; font-family: var(--sans); font-weight: 600; }
@keyframes stamp-tilt {
  0%, 100% { transform: rotate(-12deg) scale(1); }
  50% { transform: rotate(-9deg) scale(1.05); }
}

/* floating cards */
.hero-stage .floating-card {
  position: absolute;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 162, 76, 0.4);
  border-radius: 100px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text-on-navy);
  font-size: 0.84rem;
  font-weight: 500;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
  white-space: nowrap;
}
.hero-stage .fc-1 { bottom: 18%; right: -6%; animation-delay: 0s; }
.hero-stage .fc-2 { top: 38%; left: -8%; animation-delay: 2.2s; }
.hero-stage .fc-icon { display: inline-flex; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); margin-left: 8px; box-shadow: 0 0 12px var(--gold); animation: pulse-dot 2s infinite; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
@keyframes steam {
  0% { opacity: 0; transform: translateY(0) scale(1); }
  50% { opacity: 0.7; }
  100% { opacity: 0; transform: translateY(-30px) scale(1.4); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.steam-anim { animation: steam 3s ease-out infinite; transform-origin: center; transform-box: fill-box; }
.steam-anim.delay-1 { animation-delay: 1s; }
.steam-anim.delay-2 { animation-delay: 2s; }

@media (max-width: 980px) {
  .hero-layout { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stage { order: -1; max-width: 420px; margin: 0 auto; }
  .hero-stamp { width: 95px; height: 95px; top: 2%; right: 0; }
  .hero-stamp .stamp-num { font-size: 1.5rem; }
  .hero-stamp .stamp-text { font-size: 0.6rem; }
  .hero-content h1 { font-size: clamp(2.5rem, 11vw, 4rem); }
}

/* ============================================
   MARQUEE STRIP
   ============================================ */
.marquee {
  background: var(--gold);
  color: var(--navy);
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
  border-block: 1px solid var(--gold-deep);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 36s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-flex; align-items: center; gap: 3rem;
}
.marquee-item::after {
  content: '✦';
  color: var(--navy);
  opacity: 0.7;
}
@keyframes marquee {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

/* ============================================
   SCROLL ANIMATION
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s cubic-bezier(.2,.7,.3,1), transform .9s cubic-bezier(.2,.7,.3,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
.reveal.delay-5 { transition-delay: 0.5s; }

/* ============================================
   EDITORIAL "STORY" SECTION
   ============================================ */
.story-section {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.story-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(212, 162, 76, 0.10) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.6;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 5rem;
  align-items: center;
  position: relative;
}
@media (max-width: 920px) { .story-grid { grid-template-columns: 1fr; gap: 3rem; } }

.story-visual {
  position: relative;
  aspect-ratio: 4/5;
}
.story-visual .frame-1, .story-visual .frame-2 {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: linear-gradient(155deg, var(--navy), var(--teal));
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
}
.story-visual .frame-1 {
  top: 0; right: 0;
  width: 78%; height: 78%;
  z-index: 1;
}
.story-visual .frame-2 {
  bottom: 0; left: 0;
  width: 55%; height: 50%;
  z-index: 2;
  background: linear-gradient(155deg, var(--ivory), var(--cream));
  border: 1px solid var(--gold-soft);
}
.story-visual .badge-circle {
  position: absolute;
  top: 8%; left: 6%;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9rem;
  text-align: center;
  z-index: 3;
  transform: rotate(15deg);
  box-shadow: var(--shadow-glow-gold);
  line-height: 1.15;
}

.story-text .big-quote {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.4;
  color: var(--navy);
  margin: 1.5rem 0 2rem;
  position: relative;
  padding-right: 2rem;
  border-right: 3px solid var(--gold);
}

/* ============================================
   STATS COUNTER — editorial
   ============================================ */
.stats-section {
  background: var(--navy-deep);
  color: var(--text-on-navy);
  padding: clamp(4rem, 7vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 162, 76, 0.18), transparent 60%),
    radial-gradient(circle, rgba(212, 162, 76, 0.10) 1px, transparent 1px);
  background-size: cover, 28px 28px;
  opacity: 0.85;
}
.stats-section .container { position: relative; z-index: 1; }
.stats-intro { text-align: center; max-width: 760px; margin: 0 auto 4rem; }
.stats-intro h2 { color: var(--text-on-navy); margin-bottom: 1rem; }
.stats-intro p { color: var(--text-muted-on-navy); font-size: 1.15rem; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 820px) { .stats-grid { grid-template-columns: 1fr 1fr; } }

.stat-item {
  padding: 3rem 1.5rem;
  text-align: center;
  border-left: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-left: none; }
@media (max-width: 820px) {
  .stat-item:nth-child(2) { border-left: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
}
.stat-num {
  font-family: var(--display);
  font-size: clamp(3.6rem, 7vw, 5.6rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.6rem;
  letter-spacing: -0.03em;
}
.stat-label { color: var(--text-muted-on-navy); font-size: 0.92rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }

/* ============================================
   BENTO GRID PRODUCTS
   ============================================ */
.bento-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
  margin-top: 3rem;
}
.bento-grid .bento-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s, border-color .35s;
  display: flex; flex-direction: column;
  min-height: 300px;
}
.bento-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--gold-soft); }

.bento-item-1 {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  min-height: 620px;
}
.bento-item-1 .bento-visual {
  flex: 1;
  background: linear-gradient(155deg, var(--navy) 0%, var(--teal) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.bento-item-1 .bento-visual::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(212, 162, 76, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.7;
}
.bento-item-1 .bento-visual svg { width: 70%; max-width: 380px; position: relative; z-index: 1; filter: drop-shadow(0 25px 50px rgba(0,0,0,0.45)); }

.bento-item .bento-visual {
  background: linear-gradient(155deg, var(--ivory-soft), var(--cream));
  flex: 1;
  min-height: 220px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.bento-item .bento-visual svg { width: 65%; max-width: 200px; transition: transform .5s cubic-bezier(.2,.7,.3,1); }
.bento-item:hover .bento-visual svg { transform: scale(1.08) translateY(-4px); }

.bento-item .bento-body {
  padding: 1.8rem 1.6rem;
  display: flex; flex-direction: column;
  background: var(--white);
}
.bento-item-1 .bento-body { padding: 2rem 2.4rem; }
.bento-item h3 {
  font-family: var(--display);
  margin: 0 0 0.6rem;
  font-size: 1.5rem;
  color: var(--navy);
}
.bento-item-1 h3 { font-size: 1.9rem; }
.bento-item p { color: var(--gray-700); font-size: 0.97rem; margin: 0; line-height: 1.65; }
.bento-item-1 p { font-size: 1.05rem; }

.bento-tag {
  position: absolute; top: 16px; right: 16px;
  background: var(--white);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}
.bento-tag.tag-dark { background: var(--navy); color: var(--gold); border: 1px solid var(--gold); }

.bento-link {
  margin-top: 1.2rem;
  color: var(--teal);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.95rem;
}
.bento-item-1 .bento-link { color: var(--gold-deep); }
.bento-link .arrow {
  width: 22px; height: 1.5px; background: currentColor; position: relative; transition: width .25s;
}
.bento-link .arrow::after {
  content: ''; position: absolute; top: -3px; right: 0;
  width: 8px; height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(-135deg);
}
.bento-item:hover .bento-link .arrow { width: 36px; }

@media (max-width: 980px) {
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-item-1 { grid-column: 1 / 3; grid-row: 1; min-height: 480px; }
}
@media (max-width: 640px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-item-1 { grid-column: 1; grid-row: auto; min-height: 420px; }
}

/* ============================================
   LOOKBOOK GALLERY
   ============================================ */
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 820px) { .lookbook-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .lookbook-grid { grid-template-columns: 1fr; } }

.lookbook-tile {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform .4s cubic-bezier(.2,.7,.3,1);
  cursor: pointer;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.4rem;
  color: var(--text-on-navy);
}
.lookbook-tile:hover { transform: scale(1.02); }
.lookbook-tile::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
}
.lookbook-tile::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(14, 42, 62, 0.85) 0%, rgba(14, 42, 62, 0.2) 50%, transparent 100%);
}
.lookbook-tile svg.bg-cup {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  width: 65%; max-width: 220px;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.4));
  z-index: 1;
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
}
.lookbook-tile:hover svg.bg-cup { transform: translate(-50%, -60%) scale(1.05); }
.lookbook-tile .tile-meta {
  position: relative; z-index: 2;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-warm);
  margin-bottom: 6px;
}
.lookbook-tile h3 {
  position: relative; z-index: 2;
  font-family: var(--display);
  color: var(--text-on-navy);
  margin: 0;
  font-size: 1.5rem;
}

/* color variations per tile */
.lookbook-tile.bg-navy::before { background: linear-gradient(155deg, var(--navy), var(--navy-soft)); }
.lookbook-tile.bg-teal::before { background: linear-gradient(155deg, var(--teal), var(--navy)); }
.lookbook-tile.bg-cream::before { background: linear-gradient(155deg, var(--paper), var(--ivory)); }
.lookbook-tile.bg-cream { color: var(--navy); }
.lookbook-tile.bg-cream h3 { color: var(--navy); }
.lookbook-tile.bg-cream .tile-meta { color: var(--gold-deep); }
.lookbook-tile.bg-cream::after { background: linear-gradient(to top, rgba(245, 241, 232, 0.85), transparent 60%); }
.lookbook-tile.bg-gold::before { background: linear-gradient(155deg, var(--gold-warm), var(--gold-deep)); }
.lookbook-tile.bg-gold { color: var(--navy); }
.lookbook-tile.bg-gold h3 { color: var(--navy); }
.lookbook-tile.bg-gold .tile-meta { color: var(--navy); opacity: 0.7; }
.lookbook-tile.bg-gold::after { background: linear-gradient(to top, rgba(168, 123, 48, 0.4), transparent 60%); }
.lookbook-tile.bg-deep::before { background: linear-gradient(155deg, var(--navy-deep), var(--navy)); }
.lookbook-tile.bg-warm::before { background: linear-gradient(155deg, #C97E3E, #6B4222); }

/* ============================================
   FEATURE / VALUE CARDS
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  text-align: right;
  position: relative;
  transition: transform .28s, box-shadow .28s, border-color .28s;
  overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; right: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold), var(--gold-deep));
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s cubic-bezier(.2,.7,.3,1);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-card .ico {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-warm) 50%, var(--gold-deep));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.6rem;
  box-shadow: 0 8px 20px -8px rgba(212, 162, 76, 0.55);
  position: relative;
}
.feature-card .ico::after {
  content: ''; position: absolute; inset: 3px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.25);
}
.feature-card .ico svg { width: 30px; height: 30px; stroke: var(--navy); fill: none; stroke-width: 2; position: relative; }
.feature-card h3 { margin-bottom: 10px; font-size: 1.25rem; font-family: var(--sans); font-weight: 700; }
.feature-card p { color: var(--gray-700); margin: 0; font-size: 0.97rem; line-height: 1.65; }

/* ============================================
   PROCESS TIMELINE
   ============================================ */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 35px;
  right: 12.5%; left: 12.5%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold-soft) 0 6px, transparent 6px 14px);
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-num {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  color: var(--gold-deep);
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.7rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.4rem;
  box-shadow: 0 10px 28px -8px rgba(212, 162, 76, 0.55);
  position: relative;
}
.process-num::after {
  content: ''; position: absolute; inset: -8px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  opacity: 0.4;
}
.process-step h3 { font-size: 1.2rem; margin-bottom: 0.6rem; font-family: var(--sans); }
.process-step p { color: var(--gray-700); font-size: 0.94rem; margin: 0; line-height: 1.6; }
@media (max-width: 820px) { .process-timeline { grid-template-columns: 1fr 1fr; gap: 2.5rem; } .process-timeline::before { display: none; } }
@media (max-width: 540px) { .process-timeline { grid-template-columns: 1fr; } }

/* ============================================
   TESTIMONIAL CARDS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem;
  position: relative;
  transition: transform .28s, box-shadow .28s, border-color .28s;
}
.testimonial:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.testimonial::before {
  content: '"';
  font-family: var(--display);
  font-size: 6rem;
  color: var(--gold);
  position: absolute;
  top: -8px; right: 18px;
  line-height: 1;
  opacity: 0.6;
}
.testimonial .quote { font-size: 1.05rem; color: var(--gray-700); line-height: 1.75; margin: 1rem 0 1.6rem; position: relative; z-index: 1; }
.testimonial .author { display: flex; gap: 14px; align-items: center; padding-top: 1.4rem; border-top: 1px solid var(--gray-100); }
.testimonial .avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: var(--gold);
  font-family: var(--display);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.testimonial .author-name { font-weight: 700; color: var(--navy); margin: 0; font-size: 1rem; }
.testimonial .author-role { color: var(--gray-500); font-size: 0.86rem; margin: 0; }
.testimonial .stars { color: var(--gold); letter-spacing: 2px; font-size: 0.92rem; margin-bottom: 0.5rem; }

/* ============================================
   CTA BAND (dramatic)
   ============================================ */
.cta-band {
  background: var(--navy);
  color: var(--text-on-navy);
  padding: clamp(5rem, 9vw, 8rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(212, 162, 76, 0.25), transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(28, 93, 122, 0.5), transparent 55%);
}
.cta-band::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(212, 162, 76, 0.10) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.5;
}
.cta-band > .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--text-on-navy); margin-bottom: 1rem; font-size: clamp(2.2rem, 5vw, 4rem); }
.cta-band p { color: var(--text-muted-on-navy); max-width: 640px; margin: 0 auto 2.6rem; font-size: 1.18rem; }
.cta-band .btn { margin: 0 6px; }

/* ============================================
   QUOTE FORM
   ============================================ */
.quote-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.6rem;
  box-shadow: var(--shadow-xl);
  text-align: right;
  position: relative;
  overflow: hidden;
}
.quote-form::before {
  content: ''; position: absolute; top: 0; right: 0; left: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold), var(--gold-deep));
}
.quote-form h3 { color: var(--navy); margin-bottom: 1.4rem; font-family: var(--display); font-size: 1.6rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 500; color: var(--navy); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  background: var(--white);
  color: var(--navy);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 162, 76, 0.16);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; justify-content: center; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

/* ============================================
   CONTACT GRID
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3.5rem; align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info ul { list-style: none; padding: 0; margin: 1.6rem 0 0; }
.contact-info li { padding: 1.1rem 0; border-bottom: 1px solid var(--gray-100); display: flex; gap: 16px; align-items: flex-start; }
.contact-info li:last-child { border-bottom: none; }
.contact-info .ci-icon {
  flex: 0 0 52px; height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 50%, var(--gold-deep));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px -8px rgba(212, 162, 76, 0.5);
}
.contact-info .ci-icon svg { width: 24px; height: 24px; stroke: var(--navy); fill: none; stroke-width: 2; }
.contact-info .ci-label { font-size: 0.78rem; color: var(--gray-500); margin: 0; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.contact-info .ci-value { font-weight: 600; color: var(--navy); margin: 5px 0 0; font-size: 1.1rem; }
.contact-info a.ci-value:hover { color: var(--gold-deep); }

/* ============================================
   PRODUCT SUBHERO
   ============================================ */
.subhero {
  background: linear-gradient(160deg, var(--paper) 0%, var(--ivory-soft) 50%, var(--white) 100%);
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}
.subhero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(212, 162, 76, 0.10) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.6;
  pointer-events: none;
}
.subhero h1 {
  margin-bottom: 0.8rem;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  position: relative;
}
.subhero p { color: var(--gray-700); font-size: 1.22rem; max-width: 720px; position: relative; }
.crumbs { font-size: 0.92rem; color: var(--gray-500); margin-bottom: 1.4rem; position: relative; letter-spacing: 0.04em; }
.crumbs a { color: var(--teal); font-weight: 500; }
.crumbs a:hover { color: var(--gold-deep); }

/* ============================================
   FEATURE LIST (check marks)
   ============================================ */
.feature-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.feature-list li {
  padding: 14px 0 14px 0;
  padding-right: 40px;
  position: relative;
  font-size: 1.04rem;
  color: var(--gray-700);
  line-height: 1.65;
  border-bottom: 1px dashed var(--gray-200);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: '';
  position: absolute;
  right: 0; top: 18px;
  width: 24px; height: 24px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px -4px rgba(212, 162, 76, 0.6);
}
.feature-list li::after {
  content: '';
  position: absolute;
  right: 8px; top: 22px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: rotate(-45deg);
}

/* ============================================
   TWO-COL
   ============================================ */
.two-col { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 820px) { .two-col { grid-template-columns: 1fr; gap: 2.5rem; } }

.showcase-box {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-soft) 50%, var(--teal) 100%);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.showcase-box::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(212, 162, 76, 0.10) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.7;
}
.showcase-box svg { position: relative; z-index: 1; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--navy-deep); color: var(--text-on-navy); padding: 5rem 0 2rem; position: relative; overflow: hidden; }
.site-footer::before {
  content: ''; position: absolute; top: 0; right: 0; left: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--gold); font-size: 0.86rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1.4rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: 7px 0; }
.site-footer a { color: var(--text-muted-on-navy); transition: color .2s; }
.site-footer a:hover { color: var(--gold-soft); }
.footer-brand { color: var(--text-on-navy); font-family: var(--display); font-weight: 700; font-size: 1.8rem; margin-bottom: 0.6rem; letter-spacing: -0.01em; }
.footer-tag { color: var(--text-muted-on-navy); font-size: 0.97rem; margin-bottom: 1rem; line-height: 1.7; max-width: 340px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 3rem; padding-top: 1.5rem; text-align: center; font-size: 0.88rem; color: var(--text-muted-on-navy); }

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.float-wa {
  position: fixed; bottom: 28px; left: 28px; z-index: 90;
  width: 64px; height: 64px; border-radius: 50%;
  background: #25D366; color: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s;
  animation: wa-pulse 2.4s infinite;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 14px 38px rgba(37, 211, 102, 0.6); animation: none; }
.float-wa svg { width: 34px; height: 34px; fill: currentColor; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ============================================
   ACCESSIBILITY NOTE
   ============================================ */
.a11y-note { font-size: 0.97rem; color: var(--gray-700); padding: 1.8rem 2rem; background: var(--ivory-soft); border-radius: var(--radius-lg); border-right: 4px solid var(--gold); }
.a11y-note h3 { font-family: var(--sans); font-size: 1.1rem; margin-top: 1rem; }

/* ============================================
   UTILITY
   ============================================ */
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; }
.center { text-align: center; }
.max-700 { max-width: 700px; }
.max-800 { max-width: 800px; }
.mx-auto { margin-inline: auto; }

/* Section heading combo */
.section-head { display: flex; align-items: end; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 1rem; }
.section-head .section-head-text { max-width: 640px; }
.section-head .section-head-aside { max-width: 420px; }
