/* ============================================================
   ERYAMAN ÇİÇEK — İÇ SAYFA PAYLAŞILAN STİL
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --wine:     #3a0712;
  --wine-2:   #5c0a1f;
  --burgundy: #7a0e29;
  --rouge:    #c81d4b;
  --fuchsia:  #e83177;
  --gold:     #c9a35a;
  --gold-soft:#e6cc8d;
  --cream:    #f7f1e6;
  --cream-2:  #efe6d4;
  --ink:      #1a0408;
  --paper:    #fffaf2;

  --display:   "Fraunces", "Italiana", "Times New Roman", serif;
  --display-2: "Italiana", "Fraunces", serif;
  --body:      "Manrope", system-ui, sans-serif;

  --maxw:     1440px;
  --pad:      clamp(20px, 4vw, 64px);
  --topbar-h: 68px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--paper); color: var(--ink);
  font-family: var(--body); -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body { overflow-x: hidden; line-height: 1.6; font-weight: 400; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; touch-action: manipulation; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; touch-action: manipulation; }
ul { list-style: none; }
::selection { background: var(--rouge); color: var(--cream); }

/* ---------- TOPBAR (solid — iç sayfalar) ---------- */
.topbar {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad);
  height: var(--topbar-h);
  background: var(--wine);
  color: var(--cream);
  font-family: var(--body); font-weight: 500; font-size: 12px;
  letter-spacing: .22em; text-transform: uppercase;
  border-bottom: 1px solid rgba(201,163,90,.18);
}
.topbar nav { display: flex; gap: 28px; }
.topbar nav a { opacity: .8; transition: opacity .2s, color .2s; }
.topbar nav a:hover { opacity: 1; color: var(--gold-soft); }
.topbar .mark {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--display-2); font-size: 18px;
  letter-spacing: .08em; text-transform: none;
  transition: opacity .2s;
}
.topbar .mark:hover { opacity: .85; }
.topbar .mark svg { flex-shrink: 0; fill: currentColor; }
.topbar .mark img { filter: brightness(0) invert(1); }
.topbar .mark em { font-style: normal; color: var(--gold-soft); }
.topbar .cta {
  border: 1px solid rgba(247,241,230,.45); padding: 9px 16px;
  border-radius: 999px; transition: border-color .2s, color .2s;
  white-space: nowrap;
}
.topbar .cta:hover { border-color: var(--gold); color: var(--gold-soft); }

/* Mobile hamburger */
.mob-menu-toggle {
  display: none; flex-direction: column; justify-content: space-between;
  width: 24px; height: 18px;
  background: none; border: none; cursor: pointer; padding: 0; z-index: 70;
}
.mob-menu-toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--cream); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.mob-menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mob-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mob-menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mob-menu-overlay {
  position: fixed; inset: 0; z-index: 65;
  background: rgba(26,4,8,.98);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity .4s cubic-bezier(.2,.8,.2,1);
  padding: 40px;
}
.mob-menu-overlay.open { opacity: 1; pointer-events: auto; }
.mob-menu-links {
  display: flex; flex-direction: column; gap: 26px;
  text-align: center; margin-bottom: 40px;
}
.mob-menu-links a {
  font-family: var(--display); font-size: clamp(22px, 5.5vw, 32px);
  font-weight: 300; color: var(--cream); letter-spacing: .05em;
  transition: color .3s, transform .3s;
}
.mob-menu-links a:hover { color: var(--gold-soft); transform: translateY(-2px); }
.mob-menu-cta { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.mob-menu-cta .btn { width: 240px; text-align: center; display: inline-block; }

@media (max-width: 780px) {
  .topbar nav, .topbar .cta { display: none; }
  .topbar { padding: 0 18px; }
  .mob-menu-toggle { display: flex; }
}

/* ---------- PAGE OFFSET ---------- */
.page-body { padding-top: var(--topbar-h); }

/* ---------- LAYOUT ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

/* ---------- TYPOGRAPHY TOKENS ---------- */
.s-label {
  display: block; font-size: 11px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.s-label--cream { color: var(--gold-soft); }
.s-title {
  font-family: var(--display); font-size: clamp(28px, 4vw, 52px);
  font-weight: 300; line-height: 1.15; color: var(--wine);
}
.s-title--light { color: var(--cream); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px;
  font-family: var(--body); font-size: 12px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  transition: background .25s, color .25s, border-color .25s, transform .2s;
  cursor: pointer; border: 2px solid transparent;
}
.btn.primary { background: var(--wine); color: var(--cream); border-color: var(--wine); }
.btn.primary:hover { background: var(--wine-2); border-color: var(--wine-2); transform: translateY(-1px); }
.btn.ghost { background: transparent; color: var(--cream); border-color: rgba(247,241,230,.5); }
.btn.ghost:hover { border-color: var(--cream); transform: translateY(-1px); }
.btn.ghost-dark { background: transparent; color: var(--wine); border-color: var(--wine); }
.btn.ghost-dark:hover { background: var(--wine); color: var(--cream); }
.btn.gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn.gold:hover { background: var(--gold-soft); border-color: var(--gold-soft); transform: translateY(-1px); }

/* ---------- INNER HERO / BANNER ---------- */
.inner-hero {
  position: relative; overflow: hidden;
  height: clamp(320px, 42vw, 520px);
  display: flex; align-items: flex-end;
  padding: 52px var(--pad);
  color: var(--cream);
}
.inner-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(.38) saturate(1.15);
  transition: transform 8s ease;
}
.inner-hero:hover .inner-hero-bg { transform: scale(1.03); }
.inner-hero-content { position: relative; z-index: 1; }
/* Breadcrumb — global (hem hero içinde hem legal sayfalarda) */
.breadcrumb {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 10px; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(26,4,8,.45); margin-bottom: 14px;
}
.breadcrumb a { color: var(--wine); transition: opacity .2s; }
.breadcrumb a:hover { opacity: .7; }
.breadcrumb span { opacity: .55; }

/* Hero içinde rengi override et */
.inner-hero .breadcrumb { color: var(--gold-soft); opacity: .9; margin-bottom: 14px; }
.inner-hero .breadcrumb a { color: inherit; }
.inner-hero .breadcrumb span { opacity: .45; }
.inner-hero h1 {
  font-family: var(--display); font-size: clamp(38px, 6.5vw, 76px);
  font-weight: 300; line-height: 1.05; letter-spacing: -.01em;
}
.inner-hero .hero-sub {
  margin-top: 14px; font-size: clamp(14px, 1.5vw, 17px);
  color: rgba(247,241,230,.72); max-width: 580px; line-height: 1.65;
}
@media (max-width: 780px) {
  .inner-hero { height: clamp(260px, 55vw, 380px); padding: 36px 18px; }
}

/* ---------- INTRO SECTION ---------- */
.intro-section { padding: 84px 0 72px; background: var(--paper); }
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.intro-text p {
  font-size: 16px; line-height: 1.85; color: rgba(26,4,8,.78); margin-bottom: 18px;
}
.intro-text p:last-child { margin-bottom: 0; }
.intro-text .btn { margin-top: 28px; }
.intro-img { border-radius: 4px; overflow: hidden; }
.intro-img img { width: 100%; height: 440px; object-fit: cover; display: block; }
@media (max-width: 880px) {
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .intro-img img { height: 300px; }
  .intro-section { padding: 60px 0 52px; }
}

/* ---------- GALLERY SECTION ---------- */
.gallery-section,
.gallery-section--dark {
  padding: 80px 0 88px;
}
.gallery-section { background: var(--cream); }
.gallery-section--dark { background: var(--wine) !important; color: var(--cream); }
.gallery-section--dark .s-title { color: var(--gold-soft); }
.gallery-section--dark .gallery-header { color: var(--cream); }
.gallery-header { margin-bottom: 52px; }

/* 4-col asymmetric grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.gallery-grid .g-tall { grid-row: span 2; }
.gallery-grid .g-wide { grid-column: span 2; }
.gallery-item {
  overflow: hidden; border-radius: 3px;
  background: var(--cream-2); position: relative;
}
.gallery-item img {
  width: 100%; height: 100%; min-height: 240px;
  object-fit: cover; display: block;
  transition: transform .65s cubic-bezier(.25,.46,.45,.94);
}
.gallery-item.g-tall img { min-height: 500px; }
.gallery-item.g-wide img { min-height: 300px; }
.gallery-item:hover img { transform: scale(1.06); }

/* Masonry-like for dense galleries */
.gallery-masonry { columns: 4; column-gap: 10px; }
.gallery-masonry .gallery-item {
  break-inside: avoid; margin-bottom: 10px; border-radius: 3px; overflow: hidden;
}
.gallery-masonry .gallery-item img {
  height: auto; min-height: 0; width: 100%; display: block;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.gallery-masonry .gallery-item:hover img { transform: scale(1.04); }

@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-masonry { columns: 3; }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .g-tall { grid-row: span 1; }
  .gallery-grid .g-wide { grid-column: span 1; }
  .gallery-grid .g-tall img { min-height: 240px; }
  .gallery-masonry { columns: 2; }
  .gallery-section, .gallery-section--dark { padding: 56px 0 64px; }
}

/* ---------- FEATURES / VALUE CARDS ---------- */
.features-section { padding: 80px 0; background: var(--paper); }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-top: 52px;
}
.feature-card {
  padding: 32px 26px;
  border: 1px solid rgba(201,163,90,.22); border-radius: 4px;
  background: var(--paper);
  transition: box-shadow .3s, transform .3s;
}
.feature-card:hover { box-shadow: 0 8px 32px rgba(58,7,18,.08); transform: translateY(-2px); }
.feature-card .fc-num {
  font-family: var(--display); font-size: 36px; font-weight: 300;
  color: rgba(201,163,90,.35); line-height: 1; margin-bottom: 14px;
}
.feature-card h3 {
  font-family: var(--display); font-size: 20px; font-weight: 400;
  color: var(--wine); margin-bottom: 10px;
}
.feature-card p { font-size: 14px; line-height: 1.75; color: rgba(26,4,8,.68); }
@media (max-width: 780px) {
  .features-grid { grid-template-columns: 1fr; gap: 18px; }
  .features-section { padding: 56px 0; }
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  padding: 96px 0;
  background: var(--wine); color: var(--cream);
  text-align: center;
}
.cta-section h2 {
  font-family: var(--display); font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 300; margin-bottom: 18px;
}
.cta-section p {
  font-size: 16px; color: rgba(247,241,230,.72); margin-bottom: 44px;
  max-width: 540px; margin-left: auto; margin-right: auto; line-height: 1.75;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 560px) {
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 280px; }
  .cta-section { padding: 72px 0; }
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--wine); color: var(--cream);
  padding: 70px 0 40px; position: relative;
}
footer::before {
  content: ""; position: absolute; left: var(--pad); right: var(--pad); top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,163,90,.35), transparent);
}
.foot-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.foot a { font-size: 14px; color: rgba(247,241,230,.72); transition: color .2s; }
.foot a:hover { color: var(--cream); }
.foot h4 {
  font-family: var(--body); font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 18px;
}
.foot ul { display: flex; flex-direction: column; gap: 10px; }
.foot .brand img {
  display: block; width: 180px; height: auto;
  filter: brightness(0) invert(1) sepia(15%);
}
.foot .lede {
  font-size: 14px; line-height: 1.7;
  color: rgba(247,241,230,.65); margin-top: 18px; max-width: 300px;
}
.foot-bot {
  margin-top: 70px; padding-top: 28px;
  border-top: 1px solid rgba(201,163,90,.18);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(247,241,230,.52);
}
.foot-bot a { color: inherit; transition: color .2s; }
.foot-bot a:hover { color: var(--gold-soft); }
.foot-bot em { font-style: normal; color: var(--gold-soft); }
@media (max-width: 880px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  footer { padding: 60px 0 30px; }
}
@media (max-width: 560px) {
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .foot-bot { flex-direction: column; gap: 12px; }
}

/* ---------- LEGAL / TEXT PAGES ---------- */
.legal-section {
  padding: 64px 0 80px; background: var(--paper);
}
.legal-section .wrap { max-width: 760px; }
.legal-section h1 { font-family: var(--display); font-size: clamp(28px,4vw,42px); font-weight: 300; color: var(--wine); margin-bottom: 8px; }
.legal-section .meta { font-size: 13px; color: rgba(26,4,8,.45); margin-bottom: 40px; }
.legal-section h2 { font-family: var(--display); font-size: 20px; font-weight: 400; color: var(--wine); margin: 32px 0 10px; }
.legal-section p, .legal-section li { font-size: 16px; line-height: 1.85; color: rgba(26,4,8,.78); margin-bottom: 14px; }
.legal-section ul { padding-left: 20px; }
.legal-section a { color: var(--wine); text-decoration: underline; text-underline-offset: 3px; }
.legal-section .highlight-box {
  background: rgba(201,163,90,.1); border-left: 3px solid var(--gold);
  padding: 16px 20px; margin: 24px 0; border-radius: 0 6px 6px 0;
}

/* ---------- ABOUT PAGE ---------- */
.story-section { padding: 96px 0 80px; background: var(--paper); }
.story-grid {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 88px; align-items: center;
}
.story-text .s-label { margin-bottom: 18px; }
.story-text p {
  font-size: 17px; line-height: 1.88; color: rgba(26,4,8,.78); margin-bottom: 22px;
}
.story-since {
  display: flex; align-items: center; gap: 18px;
  margin-top: 36px; padding-top: 36px;
  border-top: 1px solid rgba(201,163,90,.25);
}
.story-since b {
  font-family: var(--display); font-size: 52px; font-weight: 300;
  color: var(--wine); line-height: 1;
}
.story-since span { font-size: 14px; color: rgba(26,4,8,.6); line-height: 1.5; }
.story-img-wrap { position: relative; }
.story-img-wrap img { width: 100%; height: 540px; object-fit: cover; border-radius: 4px; }
.story-img-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--wine); color: var(--cream);
  padding: 20px 24px; border-radius: 4px;
  font-family: var(--display); text-align: center;
}
.story-img-badge b { display: block; font-size: 32px; font-weight: 300; color: var(--gold-soft); line-height: 1; }
.story-img-badge span { font-size: 11px; letter-spacing: .25em; text-transform: uppercase; opacity: .75; margin-top: 6px; display: block; }

.stats-section { padding: 80px 0; background: var(--wine); color: var(--cream); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center;
}
.stat-num {
  font-family: var(--display); font-size: clamp(40px, 5vw, 60px);
  font-weight: 300; color: var(--gold-soft); line-height: 1;
}
.stat-label {
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(247,241,230,.6); margin-top: 10px;
}

.values-section { padding: 88px 0; background: var(--cream); }
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 52px;
}
.value-card {
  padding: 38px 30px; background: var(--paper); border-radius: 4px;
  border: 1px solid rgba(201,163,90,.18);
}
.value-card .vc-num {
  font-family: var(--display); font-size: 42px; font-weight: 300;
  color: rgba(201,163,90,.3); line-height: 1; margin-bottom: 16px;
}
.value-card h3 {
  font-family: var(--display); font-size: 22px; font-weight: 400;
  color: var(--wine); margin-bottom: 12px;
}
.value-card p { font-size: 15px; line-height: 1.78; color: rgba(26,4,8,.7); }

@media (max-width: 880px) {
  .story-grid { grid-template-columns: 1fr; gap: 52px; }
  .story-img-wrap img { height: 380px; }
  .story-img-badge { bottom: 16px; left: 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .story-section { padding: 72px 0 60px; }
}
@media (max-width: 560px) {
  .values-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- CONTACT PAGE ---------- */
.contact-section { padding: 84px 0 80px; background: var(--paper); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: start;
}
.contact-items { display: flex; flex-direction: column; gap: 30px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(58,7,18,.07); border-radius: 50%;
  color: var(--wine); font-size: 20px;
}
.c-label {
  font-size: 10px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 5px;
}
.c-value { font-size: 16px; color: var(--ink); line-height: 1.55; }
.c-value a { color: var(--wine); transition: color .2s; }
.c-value a:hover { color: var(--rouge); }
.c-value.small { font-size: 14px; }

.map-wrap {
  border-radius: 6px; overflow: hidden;
  height: 400px; border: 1px solid rgba(201,163,90,.2);
  background: var(--cream-2);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 52px; }
  .map-wrap { height: 320px; }
  .contact-section { padding: 64px 0 60px; }
}

/* ---------- BANK ACCOUNTS ---------- */
.bank-section { padding: 80px 0 88px; background: var(--cream); }
.bank-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 52px;
}
.bank-card {
  background: var(--paper); border-radius: 8px; overflow: hidden;
  box-shadow: 0 2px 16px rgba(26,4,8,.06);
  border: 1px solid rgba(201,163,90,.14);
}
.bank-card-head {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(26,4,8,.06);
}
.bank-badge {
  width: 50px; height: 50px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; letter-spacing: .04em; color: #fff;
}
.bank-badge.ptt { color: #2a1a00; }
.badge-ak  { background: #CC0000; }
.badge-zi  { background: #008236; }
.badge-is  { background: #005BAA; }
.badge-ptt { background: #F5A500; }
.bank-head-text .bank-name { font-weight: 600; font-size: 15px; color: var(--ink); }
.bank-head-text .bank-branch { font-size: 12px; color: rgba(26,4,8,.5); margin-top: 3px; }

.bank-body { padding: 4px 24px 20px; }
.bank-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 11px 0; gap: 16px;
  border-bottom: 1px solid rgba(26,4,8,.05);
}
.bank-row:last-child { border-bottom: 0; }
.bank-rl {
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(26,4,8,.42); flex-shrink: 0; padding-top: 2px; min-width: 90px;
}
.bank-rv {
  font-size: 14px; color: var(--ink); font-weight: 500;
  text-align: right; word-break: break-all;
}
.bank-rv.iban {
  font-family: "Courier New", Courier, monospace;
  font-size: 13px; letter-spacing: .04em; color: var(--wine);
}
.bank-rv.owner { color: var(--wine); font-weight: 600; }

@media (max-width: 780px) {
  .bank-grid { grid-template-columns: 1fr; }
  .bank-section { padding: 60px 0 68px; }
}

/* ============================================================
   ANIMATIONS & EFFECTS (shared across all inner pages)
   ============================================================ */

/* ---------- PETALS OVERLAY ---------- */
.petals{
  position:fixed; inset:0; z-index:55;
  pointer-events:none; overflow:hidden;
  perspective: 800px;
}
.petal{
  position:absolute; top:0; left:0;
  width:22px; height:22px;
  will-change: transform, opacity;
  pointer-events:none;
}
.petal svg{display:block; width:100%; height:100%; filter: drop-shadow(0 2px 6px rgba(232,49,119,.18))}
@media (prefers-reduced-motion: reduce){
  .petals{display:none}
}

/* ---------- SCROLL-IN REVEAL ---------- */
.reveal{
  opacity:0; transform: translateY(36px);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
}
.reveal.in{ opacity:1; transform:none; }
.reveal-delay-1{ transition-delay: .1s; }
.reveal-delay-2{ transition-delay: .2s; }
.reveal-delay-3{ transition-delay: .3s; }
.reveal-delay-4{ transition-delay: .4s; }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1 !important; transform:none !important; transition:none !important; }
}

/* ---------- PERSPECTIVE TILT + HIGHLIGHT ---------- */
.perspective{
  perspective: 1200px;
}
.perspective--text{ max-width: 520px; }
.perspective-inner{ transform-style: preserve-3d; }
.perspective-card{
  will-change: transform;
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  padding: 20px 0;
}
.perspective--title{ animation:none; }
.perspective--title .perspective-card{ padding: 0; }
.hl{
  display:inline;
  padding: 0 .35em;
  border-radius: 3px;
  color: var(--cream);
  font-style: normal;
  font-weight: 500;
  will-change: transform, box-shadow;
  transform: translate(calc(-8px * var(--lift, 0)), calc(-6px * var(--lift, 0)));
  box-decoration-break: clone; -webkit-box-decoration-break: clone;
}
.hl-rouge{
  background: #c81d4b;
  box-shadow:
    rgba(200,29,75, calc(.85 * var(--lift, 0))) 2px 1.5px 0 .75px,
    rgba(200,29,75, calc(.35 * var(--lift, 0))) 8px 4px 4px 0;
}
.hl-gold{
  background: #c9a35a;
  color: var(--wine);
  box-shadow:
    rgba(201,163,90, calc(.85 * var(--lift, 0))) 2px 1.5px 0 .75px,
    rgba(201,163,90, calc(.35 * var(--lift, 0))) 8px 4px 4px 0;
}
.hl-wine{
  background: #5c0a1f;
  box-shadow:
    rgba(92,10,31, calc(.85 * var(--lift, 0))) 2px 1.5px 0 .75px,
    rgba(92,10,31, calc(.35 * var(--lift, 0))) 8px 4px 4px 0;
}
.hl-fuchsia{
  background: #e83177;
  box-shadow:
    rgba(232,49,119, calc(.85 * var(--lift, 0))) 2px 1.5px 0 .75px,
    rgba(232,49,119, calc(.35 * var(--lift, 0))) 8px 4px 4px 0;
}
.s-title .hl{
  padding: 0 .22em;
  border-radius: 6px;
  font-weight: 300;
  transform: translate(calc(-10px * var(--lift, 0)), calc(-8px * var(--lift, 0)));
}
@media (prefers-reduced-motion: reduce){
  .perspective, .perspective-card, .hl{ animation:none !important; transform:none !important; }
}

/* ---------- GLOW SPOTLIGHT (pointer-following) ---------- */
.glow{
  --base: 332; --spread: 116;
  --radius: 8; --border: 2; --size: 300;
  --border-size: calc(var(--border) * 1px);
  --spot: calc(var(--size) * 1px);
  --hue: calc(var(--base) + (var(--xp, 0.5) * var(--spread)));
  border: var(--border-size) solid rgba(201,163,90,.20);
}
.glow::before, .glow::after{
  pointer-events:none; content:""; position:absolute; inset: calc(var(--border-size) * -1);
  border: var(--border-size) solid transparent;
  border-radius: calc(var(--radius) * 1px);
  background-attachment: fixed;
  background-size: calc(100% + (2 * var(--border-size))) calc(100% + (2 * var(--border-size)));
  background-repeat:no-repeat; background-position:50% 50%;
  -webkit-mask: linear-gradient(transparent, transparent), linear-gradient(#fff, #fff);
          mask: linear-gradient(transparent, transparent), linear-gradient(#fff, #fff);
  -webkit-mask-clip: padding-box, border-box;
          mask-clip: padding-box, border-box;
  -webkit-mask-composite: source-in;
          mask-composite: intersect;
}
.glow::before{
  background-image: radial-gradient(
    calc(var(--spot) * .75) calc(var(--spot) * .75) at
    calc(var(--x, 0) * 1px) calc(var(--y, 0) * 1px),
    hsl(var(--hue) 92% 58% / 1), transparent 100%);
  filter: brightness(1.5);
  z-index:4;
}
.glow::after{
  background-image: radial-gradient(
    calc(var(--spot) * .5) calc(var(--spot) * .5) at
    calc(var(--x, 0) * 1px) calc(var(--y, 0) * 1px),
    hsl(45 100% 92% / .9), transparent 100%);
  z-index:5;
}
@media (prefers-reduced-motion: reduce){
  .glow::before, .glow::after{ display:none }
}
