/* ============================================
   EVERMOND - LUXURY ORNAMENTAL SYSTEM
   Islamic geometric patterns, palm illustrations,
   mashrabiya overlays, oasis arches, gold filigree
   ============================================ */

/* ===== PATTERN BACKGROUNDS (SVG data URIs) ===== */

/* Islamic 8-pointed star tile pattern (subtle) */
.pattern-stars {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23C8A85D' stroke-width='0.8' opacity='0.35'%3E%3Cpolygon points='60,10 70,35 95,35 75,55 85,80 60,65 35,80 45,55 25,35 50,35'/%3E%3Cpolygon points='60,10 95,45 95,80 60,115 25,80 25,45' /%3E%3Ccircle cx='60' cy='60' r='52'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px 120px;
}

/* Mashrabiya circle lattice */
.pattern-lattice {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23C8A85D' stroke-width='0.6' opacity='0.25'%3E%3Ccircle cx='30' cy='30' r='28'/%3E%3Ccircle cx='0' cy='0' r='28'/%3E%3Ccircle cx='60' cy='0' r='28'/%3E%3Ccircle cx='0' cy='60' r='28'/%3E%3Ccircle cx='60' cy='60' r='28'/%3E%3Ccircle cx='30' cy='30' r='14'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 60px;
}

/* Arabesque vine pattern */
.pattern-vine {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23C8A85D' stroke-width='0.6' opacity='0.22'%3E%3Cpath d='M 0,40 Q 20,20 40,40 T 80,40'/%3E%3Cpath d='M 0,40 Q 20,60 40,40 T 80,40'/%3E%3Cpath d='M 40,0 Q 20,20 40,40 T 40,80'/%3E%3Cpath d='M 40,0 Q 60,20 40,40 T 40,80'/%3E%3Ccircle cx='40' cy='40' r='3'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
}

/* ===== ORNAMENT COMPONENTS ===== */

/* Gold filigree section divider */
.ornament-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4rem auto;
  max-width: 480px;
  gap: 1.25rem;
}

.ornament-divider::before,
.ornament-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
}

.ornament-divider svg {
  width: 56px;
  height: 28px;
  flex-shrink: 0;
}

.ornament-divider svg path {
  fill: none;
  stroke: var(--color-secondary);
  stroke-width: 1;
}

.ornament-divider.on-dark::before,
.ornament-divider.on-dark::after {
  background: linear-gradient(90deg, transparent, rgba(200, 168, 93, 0.6), transparent);
}

/* ===== LUXURY PRODUCT TILE V2 ===== */
.tile {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: #0a1410;
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
}

.tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}

/* Base gradient layer per variety */
.tile-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Islamic geometric pattern overlay */
.tile-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.45;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23C8A85D' stroke-width='0.5'%3E%3Cpolygon points='50,5 60,30 85,30 65,48 75,75 50,58 25,75 35,48 15,30 40,30'/%3E%3Cpolygon points='50,5 78,28 78,72 50,95 22,72 22,28'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100px 100px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.15) 40%, transparent 70%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.15) 40%, transparent 70%);
}

/* Decorative ornate gold frame */
.tile-frame {
  position: absolute;
  inset: 0.875rem;
  border: 1px solid rgba(200, 168, 93, 0.35);
  z-index: 2;
  pointer-events: none;
  transition: border-color 0.5s ease, inset 0.5s ease;
}

.tile-frame::before,
.tile-frame::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid var(--color-secondary);
  opacity: 0.7;
}

.tile-frame::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.tile-frame::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.tile:hover .tile-frame {
  border-color: rgba(200, 168, 93, 0.7);
  inset: 0.5rem;
}

/* Corner ornaments — palm-inspired SVG */
.tile-corner {
  position: absolute;
  width: 48px;
  height: 48px;
  z-index: 4;
  opacity: 0.6;
  transition: opacity 0.5s ease;
}

.tile-corner svg { width: 100%; height: 100%; fill: none; stroke: var(--color-secondary); stroke-width: 1; }

.tile-corner.tl { top: 1.25rem; left: 1.25rem; }
.tile-corner.tr { top: 1.25rem; right: 1.25rem; transform: scaleX(-1); }
.tile-corner.bl { bottom: 1.25rem; left: 1.25rem; transform: scaleY(-1); }
.tile-corner.br { bottom: 1.25rem; right: 1.25rem; transform: scale(-1, -1); }

.tile:hover .tile-corner { opacity: 1; }

/* Centerpiece: date palm + dates illustration */
.tile-illustration {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  max-width: 200px;
  aspect-ratio: 1 / 1.1;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tile-illustration svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.tile:hover .tile-illustration { animation: subtleFloat 4s ease-in-out infinite; }

@keyframes subtleFloat {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, -52%); }
}

/* Tile content (bottom) */
.tile-content {
  position: relative;
  z-index: 5;
  margin-top: auto;
  padding: 1.75rem 1.5rem 1.75rem;
  text-align: center;
  color: #fff;
}

.tile-content::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-secondary);
  margin: 0 auto 1rem;
}

.tile-badge {
  position: absolute;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(200, 168, 93, 0.5);
  color: var(--color-secondary);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 0.875rem;
  border-radius: 100px;
  white-space: nowrap;
}

.tile-origin {
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-secondary);
  font-weight: 700;
  margin-bottom: 0.625rem;
}

.tile-name {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #fff;
  margin: 0 0 0.375rem;
  letter-spacing: -0.01em;
  line-height: 1;
  font-weight: 400;
}

.tile-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin: 0 0 1rem;
}

.tile-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-secondary);
  transition: gap 0.3s ease;
}

.tile:hover .tile-cta { gap: 0.875rem; }

.tile-cta svg { width: 11px; height: 11px; }

/* Tile with real image (for Siwa box) */
.tile.tile-photo .tile-pattern { display: none; }

.tile.tile-photo .tile-illustration {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  aspect-ratio: auto;
  top: 0;
  left: 0;
  transform: none;
}

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

.tile.tile-photo .tile-content {
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.85) 100%);
  padding-top: 4rem;
}

/* ===== VARIETY COLOR PALETTES (per-tile) ===== */
.tile.v-medjool .tile-bg { background: linear-gradient(165deg, #3d1e0a 0%, #1a0a04 70%, #0d0502 100%); }
.tile.v-medjool .tile-bg::after { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 70% 50% at 50% 75%, rgba(220, 150, 80, 0.35), transparent 70%); }

.tile.v-deglet .tile-bg { background: linear-gradient(165deg, #4a3015 0%, #1f1408 70%, #0f0a05 100%); }
.tile.v-deglet .tile-bg::after { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 70% 50% at 50% 75%, rgba(235, 175, 90, 0.4), transparent 70%); }

.tile.v-sukkari .tile-bg { background: linear-gradient(165deg, #4d3a18 0%, #1f1606 70%, #0d0904 100%); }
.tile.v-sukkari .tile-bg::after { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 70% 50% at 50% 75%, rgba(245, 195, 100, 0.45), transparent 70%); }

.tile.v-ajwa .tile-bg { background: linear-gradient(165deg, #1a0f0a 0%, #050302 70%, #000 100%); }
.tile.v-ajwa .tile-bg::after { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 70% 50% at 50% 75%, rgba(180, 120, 60, 0.28), transparent 70%); }

.tile.v-barhi .tile-bg { background: linear-gradient(165deg, #4a2810 0%, #1c0d05 70%, #0d0603 100%); }
.tile.v-barhi .tile-bg::after { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 70% 50% at 50% 75%, rgba(235, 165, 80, 0.4), transparent 70%); }

.tile.v-safawi .tile-bg { background: linear-gradient(165deg, #261610 0%, #0a0604 70%, #050201 100%); }
.tile.v-safawi .tile-bg::after { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 70% 50% at 50% 75%, rgba(200, 135, 70, 0.32), transparent 70%); }

.tile.v-khalas .tile-bg { background: linear-gradient(165deg, #3d2412 0%, #170d06 70%, #0a0503 100%); }
.tile.v-khalas .tile-bg::after { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 70% 50% at 50% 75%, rgba(220, 155, 80, 0.35), transparent 70%); }

.tile.v-mabroom .tile-bg { background: linear-gradient(165deg, #2e1a0d 0%, #100905 70%, #060302 100%); }
.tile.v-mabroom .tile-bg::after { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 70% 50% at 50% 75%, rgba(195, 130, 65, 0.32), transparent 70%); }

.tile.v-siwa .tile-bg { background: linear-gradient(165deg, #15263d 0%, #060d18 70%, #02060c 100%); }
.tile.v-siwa .tile-bg::after { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 70% 50% at 50% 75%, rgba(200, 168, 93, 0.4), transparent 70%); }

.tile.v-zahidi .tile-bg { background: linear-gradient(165deg, #4d3818 0%, #1f1607 70%, #0d0903 100%); }
.tile.v-zahidi .tile-bg::after { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 70% 50% at 50% 75%, rgba(240, 190, 95, 0.4), transparent 70%); }

.tile.v-anbara .tile-bg { background: linear-gradient(165deg, #2a1408 0%, #0d0603 70%, #050201 100%); }
.tile.v-anbara .tile-bg::after { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 70% 50% at 50% 75%, rgba(210, 145, 75, 0.32), transparent 70%); }

.tile.v-organic .tile-bg { background: linear-gradient(165deg, #0f3d2e 0%, #051a14 70%, #020a07 100%); }
.tile.v-organic .tile-bg::after { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 70% 50% at 50% 75%, rgba(63, 140, 74, 0.4), transparent 70%); }


/* ============================================
   HERO MOTION & ENTRANCE ANIMATIONS
   ============================================ */
@keyframes museumReveal {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes archDraw {
  from { stroke-dashoffset: 1200; opacity: 0; }
  to { stroke-dashoffset: 0; opacity: 1; }
}
@keyframes spotPulse {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}
@keyframes sealFloatIn {
  0% { opacity: 0; transform: translateY(15px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes textGlideIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes goldShimmer {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(200, 168, 93, 0)); }
  50% { filter: drop-shadow(0 0 12px rgba(200, 168, 93, 0.5)); }
}

/* Apply to the hero on load */
.cinema-hero .cinema-eyebrow { animation: textGlideIn 0.7s 0.1s var(--ease-out) backwards; }
.cinema-hero h1 { animation: textGlideIn 0.8s 0.2s var(--ease-out) backwards; }
.cinema-hero-subtitle { animation: textGlideIn 0.8s 0.4s var(--ease-out) backwards; }
.cinema-hero-actions { animation: textGlideIn 0.8s 0.5s var(--ease-out) backwards; }
.cinema-hero-meta { animation: textGlideIn 0.8s 0.6s var(--ease-out) backwards; }

.museum-showcase { animation: museumReveal 1.2s 0.3s var(--ease-out) backwards; }
.museum-spot { animation: spotPulse 4s ease-in-out infinite; }
.museum-arch path { stroke-dasharray: 1200; animation: archDraw 2s 0.5s var(--ease-out) backwards; }

.museum-seal.s1 { animation: sealFloatIn 0.7s 1.0s var(--ease-out) backwards; }
.museum-seal.s2 { animation: sealFloatIn 0.7s 1.2s var(--ease-out) backwards; }
.museum-seal.s3 { animation: sealFloatIn 0.7s 1.4s var(--ease-out) backwards; }

.museum-arch circle[fill="#C8A85D"] { animation: goldShimmer 3s ease-in-out infinite; }

/* Gentle floating idle motion */
@keyframes idleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.museum-product { animation: idleFloat 6s ease-in-out infinite; animation-delay: 2s; }

/* ============================================
   GOLD LEAF FLOURISHES (around hero arch)
   ============================================ */
.museum-flourish {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  opacity: 0.7;
}
.museum-flourish svg { width: 100%; height: 100%; }
.museum-flourish svg path,
.museum-flourish svg circle {
  fill: none;
  stroke: var(--color-secondary);
  stroke-width: 1;
}
.museum-flourish.fl-tl { top: 5%; left: -2%; width: 60px; height: 60px; transform: rotate(-15deg); }
.museum-flourish.fl-tr { top: 5%; right: -2%; width: 60px; height: 60px; transform: scaleX(-1) rotate(-15deg); }

/* ============================================
   CINEMATIC HERO V2
   ============================================ */
.cinema-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #050f0a;
  color: #fff;
  overflow: hidden;
  padding: 10rem 0 6rem;
}

/* Background layers — bottom to top */
.cinema-hero-base {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 100% 80% at 70% 40%, rgba(15, 61, 46, 0.95), #050f0a 70%),
    linear-gradient(180deg, #082218 0%, #050f0a 100%);
}

.cinema-hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='%23C8A85D' stroke-width='0.6' opacity='0.4'%3E%3Cpolygon points='80,10 95,45 130,45 100,68 115,103 80,82 45,103 60,68 30,45 65,45'/%3E%3Cpolygon points='80,10 110,40 110,80 80,110 50,80 50,40'/%3E%3Ccircle cx='80' cy='80' r='62'/%3E%3Ccircle cx='80' cy='80' r='40'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 160px 160px;
}

.cinema-hero-glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 60% 50% at 75% 35%, rgba(200, 168, 93, 0.22), transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(200, 168, 93, 0.1), transparent 60%);
}

.cinema-hero-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
}

.cinema-hero-grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (max-width: 900px) {
  .cinema-hero-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.cinema-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.6875rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-secondary);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cinema-eyebrow::before,
.cinema-eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--color-secondary);
}

.cinema-hero h1 {
  color: #fff;
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.02;
  margin-bottom: 1.75rem;
  letter-spacing: -0.025em;
}

.cinema-hero h1 em {
  font-style: italic;
  color: var(--color-secondary);
  font-weight: 400;
}

.cinema-hero-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.1875rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cinema-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.cinema-hero-meta {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  position: relative;
}

.cinema-hero-meta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 1px;
  background: var(--color-secondary);
}

.cinema-meta-item .label {
  font-size: 0.625rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-secondary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cinema-meta-item .value {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  color: #fff;
  line-height: 1;
}

/* ===== MUSEUM SHOWCASE (right side) ===== */
.museum-showcase {
  position: relative;
  aspect-ratio: 3 / 4;
  max-width: 480px;
  margin: 0 auto;
}

/* Arch frame */
.museum-arch {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.museum-arch svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.museum-arch path {
  fill: none;
  stroke: rgba(200, 168, 93, 0.5);
  stroke-width: 1.5;
}

.museum-arch .arch-outer {
  stroke: rgba(200, 168, 93, 0.3);
}

.museum-arch .arch-inner {
  stroke: var(--color-secondary);
  stroke-width: 1;
}

/* Spotlight beam */
.museum-spot {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 80%;
  z-index: 2;
  background: radial-gradient(ellipse 50% 100% at 50% 0%, rgba(200, 168, 93, 0.18), transparent 60%);
  pointer-events: none;
}

/* Product placement (the box) */
.museum-product {
  position: absolute;
  top: 15%;
  left: 12%;
  right: 12%;
  bottom: 22%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.museum-product-frame {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.museum-product-frame::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(200, 168, 93, 0.4);
  pointer-events: none;
}

.museum-product img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(200, 168, 93, 0.2);
  background: rgba(0,0,0,0.2);
}

/* Plinth (display pedestal effect) */
.museum-plinth {
  position: absolute;
  bottom: 0;
  left: 18%;
  right: 18%;
  height: 12%;
  z-index: 2;
  background: linear-gradient(180deg, rgba(200, 168, 93, 0.15), transparent);
  border-top: 1px solid rgba(200, 168, 93, 0.4);
}

.museum-plinth::before {
  content: 'EVERMOND';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.5em;
  color: rgba(200, 168, 93, 0.7);
  white-space: nowrap;
}

/* Floating credibility seals */
.museum-seal {
  position: absolute;
  z-index: 4;
  background: rgba(8, 34, 24, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(200, 168, 93, 0.5);
  padding: 0.875rem 1.125rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border-radius: 2px;
}

.museum-seal::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(200, 168, 93, 0.3);
  pointer-events: none;
}

.museum-seal-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--color-secondary), #a88a45);
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.museum-seal-icon svg { width: 16px; height: 16px; }

.museum-seal-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.museum-seal-text small {
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-secondary);
}

.museum-seal.s1 { top: 6%; right: -8%; }
.museum-seal.s2 { bottom: 18%; right: -12%; }
.museum-seal.s3 { bottom: 28%; left: -16%; }

@media (max-width: 1100px) {
  .museum-seal.s1 { right: 0; }
  .museum-seal.s2 { right: 0; }
  .museum-seal.s3 { left: 0; }
}

@media (max-width: 640px) {
  .museum-seal { display: none; }
}

/* ============================================
   LUXURY SUBHERO V2
   ============================================ */
.lux-subhero {
  position: relative;
  padding: 12rem 0 6rem;
  background: #050f0a;
  color: #fff;
  overflow: hidden;
}

.lux-subhero-base {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 70% at 70% 30%, rgba(15, 61, 46, 0.85), #050f0a 70%),
    linear-gradient(180deg, #082218 0%, #050f0a 100%);
}

.lux-subhero-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cg fill='none' stroke='%23C8A85D' stroke-width='0.5' opacity='0.4'%3E%3Cpolygon points='70,8 84,40 116,40 90,60 102,92 70,72 38,92 50,60 24,40 56,40'/%3E%3Cpolygon points='70,8 100,38 100,72 70,102 40,72 40,38'/%3E%3Ccircle cx='70' cy='70' r='55'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 140px 140px;
}

.lux-subhero-arch {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: 400px;
  max-width: 35vw;
  height: 70%;
  z-index: 2;
  opacity: 0.18;
  pointer-events: none;
}

.lux-subhero-arch svg {
  width: 100%;
  height: 100%;
}

.lux-subhero-arch path {
  fill: none;
  stroke: var(--color-secondary);
  stroke-width: 1.5;
}

.lux-subhero-glow {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(ellipse 50% 60% at 75% 50%, rgba(200, 168, 93, 0.15), transparent 60%);
}

.lux-subhero-content {
  position: relative;
  z-index: 5;
  max-width: 760px;
}

.lux-subhero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 1.05;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.lux-subhero h1 em {
  font-style: italic;
  color: var(--color-secondary);
}

.lux-subhero p {
  font-size: clamp(1rem, 1.3vw, 1.1875rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 640px;
  line-height: 1.65;
}

.lux-subhero .breadcrumb {
  margin-bottom: 1.5rem;
}

/* ============================================
   ARABESQUE SEPARATOR
   ============================================ */
.arabesque-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3rem auto;
  max-width: 320px;
  height: 32px;
}

.arabesque-sep svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.arabesque-sep path,
.arabesque-sep circle {
  fill: none;
  stroke: var(--color-secondary);
  stroke-width: 1;
}

/* ============================================
   ORNAMENTAL CARD FRAME
   ============================================ */
.ornament-frame {
  position: relative;
  padding: 2rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
}

.ornament-frame::before,
.ornament-frame::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border: 1px solid var(--color-secondary);
}

.ornament-frame::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.ornament-frame::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }
