/* ==========================================================================
   Chef'm — Luxury Design System
   Dünyanın En İyi Şefleri Mutfağında
   ========================================================================== */

:root {
  /* Brand palette */
  --gold: #c9a35c;
  --gold-soft: #d8b87a;
  --gold-bright: #e7cd96;
  --gold-deep: #a8823f;

  /* Surfaces */
  --black: #0a0a0b;
  --ink: #0f0f11;
  --ink-2: #141417;
  --surface: #18181c;
  --surface-2: #1f1f24;
  --line: rgba(201, 163, 92, 0.16);
  --line-soft: rgba(255, 255, 255, 0.07);

  /* Text */
  --cream: #f6f1e7;
  --text: #e9e4da;
  --muted: #9c968b;
  --muted-2: #6f6a62;

  /* Type */
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Jost", "Inter", system-ui, -apple-system, sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Layout */
  --nav-h: 84px;
}

/* ------------------------------------------------------------------ Reset */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  font-size: 1.0625rem;
  line-height: 1.75;
  font-weight: 300;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: var(--black); }

img { max-width: 100%; height: auto; }

a { color: var(--gold); text-decoration: none; transition: color 0.35s var(--ease); }
a:hover { color: var(--gold-bright); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--cream);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 10px; border: 3px solid var(--ink); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ------------------------------------------------------------- Typography */
.display-serif {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow.center::after {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  margin-bottom: 1.2rem;
}
.section-title .accent { color: var(--gold); font-style: italic; }

.lead-muted {
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 300;
  max-width: 620px;
}

.text-gold { color: var(--gold) !important; }
.text-cream { color: var(--cream) !important; }
.text-muted-2 { color: var(--muted) !important; }
/* Bootstrap's .text-muted/.text-body-secondary default to a dark, light-theme
   gray which is unreadable on our dark surfaces — force our readable muted tone. */
.text-muted,
.text-body-secondary { color: var(--muted) !important; }
.serif-italic { font-family: var(--font-display); font-style: italic; }

/* ---------------------------------------------------------------- Layout */
.section {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) 0;
}
.section-tight { padding: clamp(3.5rem, 7vw, 6rem) 0; }

.bg-ink { background: var(--ink); }
.bg-ink-2 { background: var(--ink-2); }
.bg-black { background: var(--black) !important; }

/* Photographic section background with a dark, edge-fading overlay so text and
   cards stay readable and the image blends seamlessly into adjacent sections. */
.section-photo { position: relative; background-size: cover; background-position: center; isolation: isolate; }
.section-photo::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg,
    var(--black) 0%,
    rgba(10, 10, 11, 0.9) 16%,
    rgba(10, 10, 11, 0.84) 50%,
    rgba(10, 10, 11, 0.9) 84%,
    var(--black) 100%);
}
.section-photo > .container,
.section-photo > .glow { position: relative; z-index: 1; }

.divider-glow {
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  margin: 0;
}

/* Decorative radial glow */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.glow-gold { background: radial-gradient(circle, rgba(201,163,92,0.25), transparent 70%); }

/* ---------------------------------------------------------------- Buttons */
.btn {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 50px;
  padding: 0.95rem 2.1rem;
  transition: all 0.4s var(--ease);
  border: 1px solid transparent;
  position: relative;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
  color: var(--black);
  box-shadow: 0 10px 30px -12px rgba(201, 163, 92, 0.7);
}
.btn-gold:hover {
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 18px 44px -14px rgba(201, 163, 92, 0.85);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
}

.btn-outline-gold {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--line);
}
.btn-outline-gold:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 163, 92, 0.06);
  transform: translateY(-3px);
}

.btn-ghost { background: transparent; color: var(--cream); padding-left: 0; padding-right: 0; }
.btn-ghost:hover { color: var(--gold); }

.btn-lg { padding: 1.05rem 2.6rem; font-size: 1.02rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold);
}
.link-arrow i { transition: transform 0.4s var(--ease); }
.link-arrow:hover i { transform: translateX(6px); }

/* App store badges */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  color: var(--cream);
  transition: all 0.4s var(--ease);
  min-width: 180px;
}
.store-badge:hover { border-color: var(--gold); color: var(--cream); transform: translateY(-3px); background: rgba(201,163,92,0.06); }
.store-badge i { font-size: 1.9rem; color: var(--gold); }
.store-badge .sb-top { display: block; font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); }
.store-badge .sb-main { display: block; font-size: 1.12rem; font-family: var(--font-display); color: var(--cream); line-height: 1.1; }

/* ---------------------------------------------------------------- Navbar */
.navbar {
  height: var(--nav-h);
  transition: background 0.5s var(--ease), backdrop-filter 0.5s var(--ease), box-shadow 0.5s var(--ease), height 0.4s var(--ease);
  z-index: 1030;
}
.navbar.scrolled {
  background: rgba(10, 10, 11, 0.82);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
  height: 72px;
}
.navbar-brand img { height: 30px; width: auto; transition: height 0.4s var(--ease); }
.navbar.scrolled .navbar-brand img { height: 26px; }

.navbar .nav-link {
  font-family: var(--font-body);
  color: var(--text) !important;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding: 0.5rem 1.05rem !important;
  position: relative;
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 1.05rem; right: 1.05rem; bottom: 0.25rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after { transform: scaleX(1); }
.navbar .nav-link:hover, .navbar .nav-link.active { color: var(--gold) !important; }

.navbar-toggler { border: 0; padding: 0; width: 32px; height: 32px; color: var(--cream); }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler i { font-size: 1.7rem; }

/* Mobile-only download button beside the hamburger */
.navbar-mobile-actions { display: flex; align-items: center; gap: 0.85rem; }
.navbar-app-btn {
  width: 44px; height: 44px; border-radius: 12px; border: 0;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
  color: var(--black); font-size: 1.2rem;
  display: grid; place-items: center;
  box-shadow: 0 8px 20px -9px rgba(201, 163, 92, 0.75);
  transition: all 0.35s var(--ease);
}
.navbar-app-btn:hover, .navbar-app-btn:focus-visible {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  transform: translateY(-2px); color: var(--black);
}
.navbar-app-btn:active { transform: translateY(0); }

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(10,10,11,0.96);
    backdrop-filter: blur(18px);
    border: 1px solid var(--line-soft);
    border-radius: 18px;
    margin-top: 1rem;
    padding: 1.2rem 1.4rem;
  }
  .navbar .nav-link { padding: 0.7rem 0 !important; }
  .navbar .nav-link::after { display: none; }
}

/* ---------------------------------------------------------------- Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.05);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10,10,11,0.96) 0%, rgba(10,10,11,0.82) 38%, rgba(10,10,11,0.4) 70%, rgba(10,10,11,0.55) 100%),
    linear-gradient(0deg, rgba(10,10,11,0.96) 0%, transparent 38%, transparent 68%, rgba(10,10,11,0.55) 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  line-height: 1.04;
  margin-bottom: 1.6rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.55);
}
.hero h1 .accent { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: 1.18rem;
  color: var(--text);
  max-width: 540px;
  font-weight: 300;
  margin-bottom: 2.4rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.hero-scroll .line {
  width: 1px; height: 46px;
  background: linear-gradient(var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll .line::after {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 40%;
  background: var(--gold-bright);
  animation: scrollDot 2s var(--ease) infinite;
}
@keyframes scrollDot { 0% { transform: translateY(-100%); } 100% { transform: translateY(280%); } }

/* ------------------------------------------------------------ Stat strip */
.stat-strip {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.stat {
  text-align: center;
  padding: 2.6rem 1rem;
  position: relative;
}
.stat + .stat::before {
  content: ""; position: absolute; left: 0; top: 22%; bottom: 22%; width: 1px;
  background: var(--line-soft);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  color: var(--gold);
  line-height: 1;
  font-weight: 600;
}
.stat-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.74rem;
  color: var(--muted);
  margin-top: 0.7rem;
}

/* ---------------------------------------------------------- Feature cards */
.feature-card {
  background: linear-gradient(160deg, var(--surface), var(--ink));
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  padding: 2.6rem 2.2rem;
  height: 100%;
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(201,163,92,0.12), transparent 60%);
  opacity: 0; transition: opacity 0.5s var(--ease);
}
.feature-card:hover { transform: translateY(-8px); border-color: var(--line); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: rgba(201,163,92,0.1);
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: 1.7rem;
  margin-bottom: 1.6rem;
  transition: all 0.5s var(--ease);
}
.feature-card:hover .feature-icon { background: var(--gold); color: var(--black); transform: rotate(-6deg); }
.feature-card h3 { font-size: 1.45rem; margin-bottom: 0.8rem; }
.feature-card p { color: var(--muted); font-size: 0.98rem; margin: 0; }
.feature-num {
  position: absolute; top: 1.4rem; right: 1.8rem;
  font-family: var(--font-display); font-size: 3.4rem; color: rgba(255,255,255,0.04);
  line-height: 1;
}

/* ------------------------------------------------------------- Steps */
.step {
  position: relative;
  padding: 2rem 1.6rem;
  border-radius: 18px;
  transition: all 0.5s var(--ease);
  height: 100%;
}
.step:hover { background: var(--surface); }
.step-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--black);
  background: var(--gold);
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 1.4rem;
  font-weight: 600;
}
.step h4 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.step p { color: var(--muted); font-size: 0.95rem; margin: 0; }
.step-connector { color: var(--line); font-size: 1.4rem; }

/* ------------------------------------------------------------- Chef cards */
.chef-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line-soft);
}
.chef-card .chef-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.chef-card .chef-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
  filter: grayscale(15%);
}
.chef-card:hover .chef-img img { transform: scale(1.07); filter: grayscale(0); }
.chef-card .chef-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,10,11,0.98) 0%, rgba(10,10,11,0.85) 22%, rgba(10,10,11,0.35) 48%, transparent 68%);
}
.chef-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.8rem;
  z-index: 2;
}
.chef-info .chef-cuisine {
  text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.7rem;
  color: var(--gold); margin-bottom: 0.4rem;
}
.chef-info h4 { font-size: 1.5rem; margin-bottom: 0.3rem; }
.chef-info .chef-meta { font-size: 0.85rem; color: var(--muted); }
.chef-rating { color: var(--gold); font-size: 0.85rem; }
.chef-badge {
  position: absolute; top: 1.2rem; left: 1.2rem; z-index: 3;
  background: rgba(10,10,11,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 30px;
}

/* ------------------------------------------------------------- Gallery */
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: block;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,10,11,0.85), transparent 55%);
  opacity: 0; transition: opacity 0.5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }
.gallery-caption {
  position: absolute; left: 1.4rem; bottom: 1.2rem; z-index: 2;
  opacity: 0; transform: translateY(12px);
  transition: all 0.5s var(--ease);
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }
.gallery-caption .gc-cat { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.gallery-caption .gc-title { font-family: var(--font-display); font-size: 1.2rem; color: var(--cream); }
/* Balanced bento gallery: one large feature (2x2) + four equal tiles (2x2). */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 232px;
  gap: 1.1rem;
}
.gallery-grid .gallery-item { height: 100%; }
.gallery-grid > :first-child { grid-column: span 2; grid-row: span 2; }

@media (max-width: 991.98px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gallery-grid > :first-child { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 575.98px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 210px; }
  .gallery-grid > :first-child { grid-column: span 1; grid-row: span 1; }
}

/* ------------------------------------------------------------- Split media */
.media-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
}
.media-frame img { width: 100%; display: block; }
.media-frame.bordered { padding: 12px; background: var(--surface); }
.media-badge {
  position: absolute; z-index: 3;
  background: rgba(10,10,11,0.7);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem 1.5rem;
}
.media-badge .mb-num { font-family: var(--font-display); font-size: 2.2rem; color: var(--gold); line-height: 1; }
.media-badge .mb-text { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.14em; }

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.check-list li:last-child { border-bottom: 0; }
.check-list i { color: var(--gold); font-size: 1.3rem; margin-top: 0.15rem; }
.check-list h5 { font-family: var(--font-display); font-size: 1.18rem; margin: 0 0 0.2rem; color: var(--cream); }
.check-list p { margin: 0; color: var(--muted); font-size: 0.94rem; }

/* ------------------------------------------------------------- Testimonials */
.testimonial {
  background: linear-gradient(160deg, var(--surface), var(--ink));
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  padding: 2.6rem;
  height: 100%;
  position: relative;
}
.testimonial .quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--line);
  line-height: 0.6;
  height: 2.2rem;
  display: block;
}
.testimonial p { font-size: 1.08rem; color: var(--text); font-style: italic; font-family: var(--font-display); font-weight: 400; }
.testimonial .t-stars { color: var(--gold); margin-bottom: 1rem; }
.t-author { display: flex; align-items: center; gap: 1rem; margin-top: 1.6rem; }
.t-author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.t-author .t-name { font-family: var(--font-display); color: var(--cream); font-size: 1.05rem; }
.t-author .t-role { font-size: 0.8rem; color: var(--muted); }

/* ------------------------------------------------------------- App CTA */
.app-cta {
  position: relative;
  overflow: hidden;
}
.phone-frame {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
  border-radius: 42px;
  border: 10px solid #1c1c20;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.9), 0 0 0 1px var(--line);
  overflow: hidden;
  background: #000;
}
.phone-frame img { display: block; width: 100%; }

/* ------------------------------------------------------------- Accordion */
.accordion-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-soft);
}
.accordion-button {
  background: transparent !important;
  color: var(--cream) !important;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  padding: 1.6rem 0;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) { color: var(--gold) !important; }
.accordion-button::after {
  background: none;
  content: "\F64D";
  font-family: "bootstrap-icons";
  font-size: 1.1rem;
  color: var(--gold);
  transform: none;
  transition: transform 0.4s var(--ease);
  width: auto; height: auto;
}
.accordion-button:not(.collapsed)::after { content: "\F63B"; transform: none; }
.accordion-body { color: var(--muted); padding: 0 0 1.6rem; font-size: 1rem; }

/* ------------------------------------------------------------- Contact */
.form-control, .form-select {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  color: var(--cream);
  border-radius: 12px;
  padding: 0.95rem 1.2rem;
  font-size: 0.98rem;
  transition: all 0.4s var(--ease);
}
.form-control::placeholder { color: var(--muted-2); }
.form-control:focus, .form-select:focus {
  background: var(--surface-2);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,163,92,0.12);
  color: var(--cream);
}
.form-label { color: var(--muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.5rem; }

.contact-info-item { display: flex; gap: 1.1rem; align-items: flex-start; padding: 1.3rem 0; border-bottom: 1px solid var(--line-soft); }
.contact-info-item i { color: var(--gold); font-size: 1.4rem; margin-top: 0.1rem; }
.contact-info-item .ci-label { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); }
.contact-info-item .ci-value { font-family: var(--font-display); color: var(--cream); font-size: 1.15rem; }

/* ------------------------------------------------------------- Page hero (inner) */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 5rem) 0 5rem;
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.page-hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, var(--black) 0%, rgba(10,10,11,0.72) 60%, rgba(10,10,11,0.85) 100%); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.5rem, 5.5vw, 4.4rem); margin-bottom: 1rem; }
.breadcrumb-lux { display: flex; gap: 0.6rem; align-items: center; justify-content: center; font-size: 0.82rem; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; }
.breadcrumb-lux a { color: var(--muted); }
.breadcrumb-lux a:hover { color: var(--gold); }
.breadcrumb-lux .sep { color: var(--gold); }

/* ------------------------------------------------------------- Blog */
.badge-cat {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--gold);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 0.35rem 0.9rem;
  background: rgba(201,163,92,0.05);
}

.post-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: linear-gradient(160deg, var(--surface), var(--ink));
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s var(--ease);
}
.post-card:hover { transform: translateY(-8px); border-color: var(--line); }
.post-thumb { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.post-card:hover .post-thumb img { transform: scale(1.07); }
.post-thumb .badge-cat { position: absolute; top: 1rem; left: 1rem; z-index: 2; background: rgba(10,10,11,0.7); backdrop-filter: blur(10px); }
.post-body { padding: 1.8rem; display: flex; flex-direction: column; flex: 1; }
.post-meta { display: flex; flex-wrap: wrap; gap: 1rem; color: var(--muted); font-size: 0.8rem; margin-bottom: 0.9rem; }
.post-meta i { color: var(--gold); margin-right: 0.35rem; }
.post-card h3 { font-size: 1.4rem; margin-bottom: 0.7rem; line-height: 1.25; }
.post-card h3 a { color: var(--cream); }
.post-card h3 a:hover { color: var(--gold); }
.post-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.2rem; }
.post-card .link-arrow { margin-top: auto; }

/* Featured post (horizontal) */
.post-featured { display: grid; grid-template-columns: 1.15fr 1fr; gap: 0; align-items: stretch; }
.post-featured .post-thumb { aspect-ratio: auto; height: 100%; min-height: 340px; }
.post-featured .post-body { padding: 2.6rem; justify-content: center; }
.post-featured h2 { font-size: clamp(1.6rem, 2.6vw, 2.3rem); margin-bottom: 1rem; line-height: 1.15; }
.post-featured h2 a { color: var(--cream); }
.post-featured h2 a:hover { color: var(--gold); }
@media (max-width: 767.98px) {
  .post-featured { grid-template-columns: 1fr; }
  .post-featured .post-thumb { min-height: 240px; aspect-ratio: 16/10; }
  .post-featured .post-body { padding: 2rem; }
}

/* Pagination */
.pagination-lux { display: flex; gap: 0.6rem; justify-content: center; align-items: center; }
.pagination-lux a, .pagination-lux span {
  min-width: 46px; height: 46px; display: grid; place-items: center;
  border-radius: 12px; border: 1px solid var(--line-soft);
  color: var(--muted); font-size: 0.95rem; transition: all 0.35s var(--ease);
}
.pagination-lux a:hover { border-color: var(--gold); color: var(--gold); }
.pagination-lux .active { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* Sidebar widgets */
.widget { background: linear-gradient(160deg, var(--surface), var(--ink)); border: 1px solid var(--line-soft); border-radius: 18px; padding: 1.8rem; margin-bottom: 1.6rem; }
.widget h5 { font-family: var(--font-display); font-size: 1.2rem; color: var(--cream); margin-bottom: 1.2rem; padding-bottom: 0.8rem; border-bottom: 1px solid var(--line-soft); }
.cat-list { list-style: none; padding: 0; margin: 0; }
.cat-list li { margin-bottom: 0.3rem; }
.cat-list a { display: flex; justify-content: space-between; align-items: center; color: var(--muted); padding: 0.6rem 0; font-size: 0.95rem; border-bottom: 1px solid var(--line-soft); }
.cat-list li:last-child a { border-bottom: 0; }
.cat-list a:hover { color: var(--gold); padding-left: 4px; }
.cat-list .count { font-size: 0.78rem; color: var(--muted-2); }
.mini-post { display: flex; gap: 1rem; align-items: center; padding: 0.7rem 0; border-bottom: 1px solid var(--line-soft); }
.mini-post:last-child { border-bottom: 0; }
.mini-post img { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
.mini-post .mp-title { font-family: var(--font-display); font-size: 0.98rem; color: var(--cream); line-height: 1.3; }
.mini-post .mp-title:hover { color: var(--gold); }
.mini-post .mp-date { font-size: 0.76rem; color: var(--muted); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag-cloud a { font-size: 0.82rem; color: var(--muted); border: 1px solid var(--line-soft); border-radius: 30px; padding: 0.35rem 0.85rem; }
.tag-cloud a:hover { border-color: var(--gold); color: var(--gold); }

/* ------------------------------------------------------------- Article / Prose */
.article-hero { position: relative; padding: calc(var(--nav-h) + 3.5rem) 0 3rem; overflow: hidden; }
.article-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.article-hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, var(--black) 2%, rgba(10,10,11,0.78) 55%, rgba(10,10,11,0.86) 100%); }
.article-hero-content { position: relative; z-index: 2; }
.article-hero h1 { font-size: clamp(2rem, 4.5vw, 3.6rem); margin: 1rem 0; }

.prose { color: var(--text); font-size: 1.08rem; line-height: 1.9; font-weight: 300; }
.prose > *:first-child { margin-top: 0; }
.prose h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin: 2.6rem 0 1rem; color: var(--cream); }
.prose h3 { font-size: 1.35rem; margin: 2rem 0 0.8rem; color: var(--gold); }
.prose p { margin: 0 0 1.3rem; color: var(--muted); }
.prose strong { color: var(--text); font-weight: 500; }
.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.prose ul, .prose ol { color: var(--muted); margin: 0 0 1.4rem; padding-left: 1.3rem; }
.prose li { margin-bottom: 0.6rem; }
.prose li::marker { color: var(--gold); }
.prose blockquote {
  border-left: 3px solid var(--gold);
  margin: 2rem 0; padding: 0.5rem 0 0.5rem 1.6rem;
  font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--cream);
}
.prose img { border-radius: 16px; margin: 1.6rem 0; }
.prose hr { border: 0; height: 1px; background: var(--line-soft); margin: 2.5rem 0; }
.prose .lead { font-size: 1.25rem; color: var(--text); font-weight: 300; font-family: var(--font-display); font-style: italic; }

.author-box { display: flex; gap: 1.4rem; align-items: center; background: var(--surface); border: 1px solid var(--line-soft); border-radius: 18px; padding: 1.8rem; }
.author-box img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); flex-shrink: 0; }
.author-box .ab-name { font-family: var(--font-display); font-size: 1.2rem; color: var(--cream); }
.author-box .ab-role { color: var(--gold); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.4rem; }
.author-box .ab-bio { color: var(--muted); font-size: 0.92rem; margin: 0; }

.share-row { display: flex; gap: 0.7rem; align-items: center; }
.share-row .sr-label { color: var(--muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.14em; }

/* Legal sidebar nav */
.legal-nav { position: sticky; top: 100px; list-style: none; padding: 0; margin: 0; }
.legal-nav li { margin-bottom: 0.4rem; }
.legal-nav a { display: flex; align-items: center; gap: 0.7rem; padding: 0.85rem 1.1rem; border-radius: 12px; color: var(--muted); font-size: 0.95rem; border: 1px solid transparent; }
.legal-nav a:hover { color: var(--gold); background: var(--surface); }
.legal-nav a.active { color: var(--gold); background: var(--surface); border-color: var(--line); }
.legal-nav a i { color: var(--gold); }
.legal-meta { color: var(--muted-2); font-size: 0.85rem; border-bottom: 1px solid var(--line-soft); padding-bottom: 1.4rem; margin-bottom: 2rem; }

/* ------------------------------------------------------------- Footer */
.footer { background: var(--black); border-top: 1px solid var(--line-soft); padding-top: 5rem; }
.footer-brand img { height: 34px; margin-bottom: 1.4rem; }
.footer-about { color: var(--muted); font-size: 0.96rem; max-width: 340px; }
.footer h6 {
  font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 0.78rem; color: var(--gold); margin-bottom: 1.4rem; font-weight: 600;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.85rem; }
.footer-links a { color: var(--muted); font-size: 0.95rem; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.social-row { display: flex; gap: 0.8rem; }
.social-link {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line); display: grid; place-items: center;
  color: var(--muted); font-size: 1.1rem; transition: all 0.4s var(--ease);
}
.social-link:hover { background: var(--gold); color: var(--black); border-color: var(--gold); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid var(--line-soft); margin-top: 4rem; padding: 1.8rem 0; }
.footer-bottom, .footer-bottom a { color: var(--muted-2); font-size: 0.85rem; }
.footer-bottom a:hover { color: var(--gold); }

/* ------------------------------------------------------------- App Modal */
.modal-backdrop.show { opacity: 1; background: rgba(6, 6, 7, 0.72); backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px); }

.app-modal .modal-dialog { max-width: 760px; }
.app-modal .modal-content {
  background: linear-gradient(160deg, var(--surface), var(--ink));
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  color: var(--text);
  box-shadow: 0 50px 120px -30px rgba(0, 0, 0, 0.85);
}
.app-modal .row { min-height: 100%; }
.app-modal-visual {
  position: relative;
  background-size: cover;
  background-position: top center;
  min-height: 420px;
}
.app-modal-visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(130deg, rgba(10,10,11,0.05) 30%, rgba(10,10,11,0.75) 100%);
}
.app-modal-visual .amv-badge {
  position: absolute; left: 1.3rem; bottom: 1.3rem; z-index: 2;
  background: rgba(10,10,11,0.6); backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: 14px; padding: 0.7rem 1rem;
}
.app-modal-visual .amv-badge .amv-num { font-family: var(--font-display); font-size: 1.4rem; color: var(--gold); line-height: 1; }
.app-modal-visual .amv-badge .amv-text { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; }

.app-modal-body { padding: 2.8rem 2.6rem; }
.app-modal-logo { height: 26px; margin-bottom: 1.5rem; }
.app-modal-body h3 { font-family: var(--font-display); font-size: 1.9rem; line-height: 1.1; margin-bottom: 0.9rem; color: var(--cream); }
.app-modal-body > p { color: var(--muted); font-size: 0.96rem; margin-bottom: 1.6rem; }
.app-modal-get { display: flex; gap: 1.2rem; align-items: stretch; }
.app-modal-badges { display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.app-modal-badges .store-badge { width: 100%; min-width: 0; }
.app-modal-qr {
  flex-shrink: 0;
  width: 138px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--cream);
  border-radius: 16px;
  padding: 0.8rem 0.8rem 0.7rem;
  text-align: center;
}
.app-modal-qr img { width: 108px; height: 108px; display: block; }
.app-modal-qr span {
  font-size: 0.62rem; color: #0a0a0b; margin-top: 0.45rem;
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; line-height: 1.3;
}
.app-modal-rating { margin-top: 1.4rem; display: flex; align-items: center; gap: 0.7rem; color: var(--muted); font-size: 0.84rem; }
.app-modal-rating .text-gold { letter-spacing: 0.05em; }

@media (max-width: 575.98px) {
  .app-modal-get { flex-direction: column; align-items: center; }
  .app-modal-badges { width: 100%; }
}

.app-modal-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 6;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line-soft); background: rgba(10,10,11,0.55);
  color: var(--cream); display: grid; place-items: center; font-size: 0.95rem;
  transition: all 0.4s var(--ease);
}
.app-modal-close:hover { background: var(--gold); color: var(--black); border-color: var(--gold); transform: rotate(90deg); }

@media (max-width: 575.98px) {
  .app-modal-body { padding: 2rem 1.6rem; }
  .app-modal-body h3 { font-size: 1.6rem; }
}

/* ------------------------------------------------------------- Reveal anim */
[data-reveal] {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero-bg { animation: none; }
}

/* ------------------------------------------------------------- Utilities */
.gold-rule { width: 60px; height: 2px; background: var(--gold); border: 0; opacity: 1; }
.overline-gold { color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.75rem; }
.bg-noise::before {
  content: ""; position: absolute; inset: 0; z-index: 1; opacity: 0.4; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}
.z-2 { position: relative; z-index: 2; }
.rounded-22 { border-radius: 22px; }
.object-cover { object-fit: cover; }

/* ------------------------------------------------------------- Responsive */
@media (max-width: 991.98px) {
  .hero { min-height: 92vh; }
  .stat + .stat::before { display: none; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-scroll { display: none; }
}
@media (max-width: 575.98px) {
  body { font-size: 1rem; }
  .section { padding: 4rem 0; }
  .btn { width: 100%; }
  .store-badge { width: 100%; justify-content: center; }
  .feature-card, .testimonial { padding: 2rem 1.6rem; }
}
