/* ============================================================
   ASUKOFFIEDIK — editorial.css  (home overlay, omkeerbaar)
   Modern editorial richting (na 21st.dev pivot):
   - koffiekop als gloeiend medaillon (cirkel + warme gloed)
   - grote, zelfverzekerde typografie + veel witruimte
   - ronde portret-grid (gevoelens als charms)
   - nazar (blauw oog) als ÉÉN verfijnd accent — niet geplakt
   Alles scoped op body[data-page="home"]. Link weghalen = revert.
   ============================================================ */

body[data-page="home"]{
  --izn-blue:  #1B4E8E;
  --izn-iris:  #3D86C6;
  --izn-turq:  #2E9B8A;
  --izn-red:   #B23A2E;
  --nazar: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='48' fill='%231B4E8E'/%3E%3Ccircle cx='50' cy='50' r='48' fill='none' stroke='%23C29B54' stroke-width='2'/%3E%3Ccircle cx='50' cy='50' r='33' fill='%23F4ECD9'/%3E%3Ccircle cx='50' cy='50' r='20' fill='%233D86C6'/%3E%3Ccircle cx='50' cy='50' r='8' fill='%23101C2E'/%3E%3C/svg%3E");

  /* Iznik-tegelband: kobalt grond, crème tulp + turquoise rozet + gouden ruiten.
     Eén verfijnde horizontale band — als header-rand én als divider. */
  --iznik-band: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 18'%3E%3Crect width='48' height='18' fill='%231B4E8E'/%3E%3Crect width='48' height='1.4' fill='%23C29B54'/%3E%3Crect y='16.6' width='48' height='1.4' fill='%23C29B54'/%3E%3Cpath d='M12 14.5 C8 11 8 6.5 12 4 C16 6.5 16 11 12 14.5 Z' fill='%23F4ECD9'/%3E%3Cpath d='M12 13.5 C10 11 10 7.5 12 5.5 C14 7.5 14 11 12 13.5 Z' fill='%232E9B8A'/%3E%3Ccircle cx='12' cy='6.6' r='1' fill='%23B23A2E'/%3E%3Ccircle cx='36' cy='9' r='3.4' fill='%23F4ECD9'/%3E%3Ccircle cx='36' cy='9' r='1.8' fill='%232E9B8A'/%3E%3Ccircle cx='36' cy='9' r='0.8' fill='%23B23A2E'/%3E%3Cpath d='M0 9 l2.2 2.2 -2.2 2.2 -2.2 -2.2 z' fill='%23E6CE94'/%3E%3Cpath d='M24 9 l2.2 2.2 -2.2 2.2 -2.2 -2.2 z' fill='%23E6CE94'/%3E%3Cpath d='M48 9 l2.2 2.2 -2.2 2.2 -2.2 -2.2 z' fill='%23E6CE94'/%3E%3C/svg%3E");

  /* girih: 8-puntige ster (twee vierkanten), gouden lijn — subtiele geometrie-watermark */
  --girih: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23C29B54' stroke-width='1'%3E%3Cpath d='M40 8 L72 40 L40 72 L8 40 Z'/%3E%3Cpath d='M16 16 L64 16 L64 64 L16 64 Z'/%3E%3Ccircle cx='40' cy='40' r='6'/%3E%3C/g%3E%3C/svg%3E");
}

/* HEADER staat nu globaal in site.css (alle pagina's) — hier niets meer. */

/* ============================================================
   HERO — donkere, rustige espresso met één warme gloed
   ============================================================ */
body[data-page="home"] .hero{
  background:
    radial-gradient(48% 42% at 68% 42%, rgba(200,162,74,0.16), transparent 70%),
    linear-gradient(166deg, #1C140F 0%, #2A1B12 48%, #1A120D 100%);
  padding-bottom: var(--sp-10);
}

/* grotere, strakkere koppen + rustige lede */
body[data-page="home"] .hero .display{
  font-size: clamp(3.2rem, 8vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-weight: 600;
}
body[data-page="home"] .hero .lede{
  max-width: 34ch;
  color: var(--on-dark-2);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

/* eyebrow: lijntje weg, klein gouden nazar-stipje ervoor */
body[data-page="home"] .hero .eyebrow{
  letter-spacing: 0.26em;
}
body[data-page="home"] .hero .eyebrow::before{
  content:"";
  width: 16px; height: 16px;
  background: var(--nazar) center/contain no-repeat;
  border-radius: 0;
}

/* ---- het MEDAILLON: kop als ronde gloeiende vorm ---- */
body[data-page="home"] .hero-cup-wrap{
  display: grid;
  place-items: center;
  isolation: isolate;
}

/* warme gloed-cirkel achter de kop */
body[data-page="home"] .hero-cup-wrap::before{
  content:"";
  position: absolute;
  z-index: 0;
  width: min(125%, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 46%,
              rgba(224,196,128,0.55) 0%,
              rgba(200,162,74,0.30) 30%,
              rgba(94,32,39,0.18) 52%,
              transparent 72%);
  filter: blur(6px);
  animation: asuk-breathe 9s var(--ease-soft) infinite;
}

/* de foto zelf rond, met dunne gouden rand + diepe schaduw */
body[data-page="home"] .hero-photo{
  position: relative;
  z-index: 1;
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(244,236,217,0.10),
    0 0 0 7px rgba(28,20,15,0.55),
    0 0 0 8px rgba(200,162,74,0.55),
    0 34px 90px rgba(0,0,0,0.55),
    0 0 70px rgba(200,162,74,0.22);
}
body[data-page="home"] .hero-photo img,
body[data-page="home"] .hero-photo video{
  aspect-ratio: 1;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* ---- 3D-medaillon: subtiele kanteling + glanzende bolling ---- */
body[data-page="home"] .hero-cup-wrap{ perspective: 1200px; }
body[data-page="home"] .hero-photo{
  transform: rotateX(7deg) rotateY(-9deg);
  transform-style: preserve-3d;
  transition: transform 600ms var(--ease-soft);
  will-change: transform;
}
body[data-page="home"] .hero-cup-wrap:hover .hero-photo{
  transform: rotateX(3deg) rotateY(-3deg) scale(1.015);
}
/* glas-glans bovenop het medaillon — bolle "3D kopje"-look */
body[data-page="home"] .hero-photo--video::before{
  content:"";
  position: absolute; inset: 0; z-index: 2;
  border-radius: 50%; pointer-events: none;
  background:
    radial-gradient(60% 50% at 32% 26%, rgba(255,255,255,0.32) 0%, rgba(255,255,255,0.08) 24%, transparent 52%),
    radial-gradient(90% 90% at 50% 50%, transparent 58%, rgba(28,20,15,0.28) 100%);
  mix-blend-mode: screen;
}
@media (prefers-reduced-motion: reduce){
  body[data-page="home"] .hero-photo{ transform: none; }
}

/* concentrische ring buiten het medaillon (kop-rand echo) */
body[data-page="home"] .hero-photo::after{
  content:"";
  position: absolute;
  inset: -26px;
  border-radius: 50%;
  border: 1px solid rgba(200,162,74,0.30);
  pointer-events: none;
}

/* nazar als echte charm, zwevend aan de rand van het medaillon */
body[data-page="home"] .hero-cup-wrap::after{
  content:"";
  position: absolute;
  z-index: 3;
  width: 66px; height: 66px;
  right: 6%; bottom: 7%;
  background: var(--nazar) center/contain no-repeat;
  border-radius: 50%;
  box-shadow:
    0 0 0 3px rgba(244,236,217,0.85),
    0 0 0 4px rgba(194,155,84,0.9),
    0 10px 22px rgba(0,0,0,0.45),
    0 0 26px rgba(61,134,198,0.35);
  transform-origin: 50% -120%;
  animation: nazar-sway 6s var(--ease-soft) infinite;
}
@keyframes nazar-sway{
  0%,100% { transform: rotate(-5deg) translateY(0); }
  50%     { transform: rotate(5deg)  translateY(2px); }
}
@media (prefers-reduced-motion: reduce){
  body[data-page="home"] .hero-cup-wrap::after{ animation: none; }
}

body[data-page="home"] .ph-caption{
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: var(--sp-6);
}

/* ============================================================
   GEVOELENS — ronde portret-charms (cohesie met medaillon)
   ============================================================ */
body[data-page="home"] .feelings{
  gap: var(--sp-6) var(--sp-5);
}
body[data-page="home"] .feeling{
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  text-align: center;
}
body[data-page="home"] .feeling img{
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    0 0 0 1px rgba(200,162,74,0.45),
    0 14px 34px rgba(43,27,16,0.16);
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
body[data-page="home"] .feeling:hover img{
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 0 0 1px rgba(200,162,74,0.7),
    0 22px 46px rgba(43,27,16,0.22);
}
body[data-page="home"] .feeling figcaption{
  position: static;
  margin-top: var(--sp-4);
  background: none;
  color: var(--ink-2);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.12rem;
  padding: 0;
}

/* ============================================================
   ATMOSFEER-STRIP — warme gloed over de tafel-foto
   ============================================================ */
body[data-page="home"] .atmo::after{
  background:
    radial-gradient(60% 80% at 50% 50%, transparent 30%, rgba(28,20,15,0.45) 100%);
}

/* ============================================================
   SYMBOLEN (donkere sectie) — zelfde warme gloed als hero
   ============================================================ */
body[data-page="home"] .bg-espresso{
  background:
    radial-gradient(45% 60% at 50% 0%, rgba(200,162,74,0.12), transparent 65%),
    var(--espresso-deep);
}

/* ============================================================
   PULLQUOTE — nazar als enige bovenliggende accent
   ============================================================ */
body[data-page="home"] .pullquote{
  position: relative;
  padding-top: var(--sp-8);
}
body[data-page="home"] .pullquote::before{
  content:"";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 42px; height: 42px;
  background: var(--nazar) center/contain no-repeat;
  opacity: 0.95;
}

/* ============================================================
   TURKSE ACCENTEN — verfijnd & spaarzaam (geen plak-ornamenten)
   ============================================================ */

/* gouden streepje → echte Iznik-tegelband als divider */
body[data-page="home"] hr.gold-rule{
  height: 14px;
  width: 200px;
  border: 0;
  background: var(--iznik-band) repeat-x center/auto 14px;
  border-radius: 2px;
  opacity: 1;
  box-shadow: 0 6px 16px rgba(27,78,142,0.18);
}

/* secundaire knop krijgt kobalt-karakter (naast het goud) */
body[data-page="home"] .hero .btn-secondary{
  border-color: rgba(244,236,217,0.40);
  color: var(--cream);
}
body[data-page="home"] .hero .btn-secondary:hover{
  border-color: var(--izn-iris);
  color: #fff;
}

/* girih-ster watermark achter de donkere symbolen-sectie */
body[data-page="home"] .bg-espresso{ position: relative; isolation: isolate; }
body[data-page="home"] .bg-espresso::before{
  content:"";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--girih) repeat center/110px 110px;
  opacity: 0.08;
  pointer-events: none;
}
body[data-page="home"] .bg-espresso > *{ position: relative; z-index: 1; }

/* ============================================================
   MOTION
   ============================================================ */
@keyframes asuk-breathe{
  0%,100% { transform: scale(1);    opacity: 0.92; }
  50%     { transform: scale(1.05); opacity: 1;    }
}
@media (prefers-reduced-motion: reduce){
  body[data-page="home"] .hero-cup-wrap::before{ animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px){
  body[data-page="home"] .hero-photo{ max-width: 340px; }
  body[data-page="home"] .hero-cup-wrap::before{ width: min(130%, 420px); }
}
