:root {
  --bg-deep: #060c14;
  --bg-mid: #0c1829;
  --bg-soft: #122238;
  --bg-card: rgba(14, 28, 48, 0.92);
  --cyan: #00c8f5;
  --cyan-dim: #00a3d4;
  --cyan-glow: rgba(0, 200, 245, 0.35);
  --gold: #d4af6a;
  --gold-soft: #e8cc8a;
  --text: #eef6fc;
  --text-soft: #b8cce0;
  --muted: #7a94ad;
  --line: rgba(0, 200, 245, 0.22);
  --line-gold: rgba(212, 175, 106, 0.25);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --display: "Playfair Display", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg-deep); }
body.tucc-site {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  line-height: 1.65;
  min-height: 100dvh;
  padding-bottom: 2rem;
}

/* Arka plan: koyu lacivert + hafif taç (logo siyah zeminle uyumlu) */
.tucc-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: radial-gradient(ellipse 120% 90% at 50% -10%, #1a3352 0%, var(--bg-deep) 55%, #040810 100%);
}
.tucc-bg__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.tucc-bg__glow--1 {
  width: 55vw;
  height: 55vw;
  left: -15%;
  top: 0;
  background: rgba(0, 160, 210, 0.22);
  opacity: 0.9;
}
.tucc-bg__glow--2 {
  width: 45vw;
  height: 45vw;
  right: -12%;
  bottom: -5%;
  background: rgba(0, 100, 160, 0.18);
  opacity: 0.85;
}
.tucc-bg__mesh {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 55% 45% at 15% 20%, rgba(0, 200, 245, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 10%, rgba(212, 175, 106, 0.08), transparent 50%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(0, 120, 180, 0.12), transparent 55%);
  filter: blur(2px);
}
.tucc-bg__grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, black 0%, transparent 85%);
}
.tucc-bg__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(4, 8, 16, 0.5) 100%);
  pointer-events: none;
}

.wrap { width: min(1140px, 92vw); margin-inline: auto; }

/* —— Yeni chrome / masthead (eski promo+header yok) —— */
.site-chrome {
  position: sticky;
  top: 0;
  z-index: 200;
  padding: 0.65rem 0 0.85rem;
}
.chrome-stack { display: flex; flex-direction: column; gap: 0.65rem; }
.chrome-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.chrome-strip__label { color: var(--cyan); font-weight: 800; }
.chrome-strip__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-soft);
  opacity: 0.8;
}
.chrome-strip__link {
  margin-left: auto;
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(8, 16, 28, 0.6);
  transition: border-color 0.2s, color 0.2s;
}
.chrome-strip__link:hover { border-color: var(--cyan); color: var(--cyan); }

.masthead {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem 1.25rem;
  padding: 0.65rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 200, 245, 0.18);
  background: linear-gradient(135deg, rgba(10, 20, 34, 0.92), rgba(6, 12, 20, 0.88));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  backdrop-filter: blur(24px);
}
.masthead__brand { line-height: 0; }
.masthead__logo {
  height: clamp(30px, 6vw, 40px);
  width: auto;
  max-width: min(200px, 58vw);
  object-fit: contain;
  display: block;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 0 18px rgba(0, 200, 245, 0.25));
}
.masthead__toggle { display: none; }
.masthead__cta {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  justify-self: end;
}
.pill-nav { justify-self: center; min-width: 0; }
.pill-nav ul {
  list-style: none;
  margin: 0;
  padding: 0.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.2rem;
  border-radius: 999px;
  background: rgba(4, 10, 18, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.pill-nav a {
  display: block;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-soft);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.pill-nav a:hover,
.pill-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(0, 200, 245, 0.12);
  box-shadow: 0 0 0 1px rgba(0, 200, 245, 0.25) inset;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text-soft);
  padding: 0.62rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.86rem;
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }

.menu-btn {
  display: none;
  margin-left: auto;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 0.5rem 0.85rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}

.tucc-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0.95rem;
}
.tucc-nav a {
  color: var(--text-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  transition: color 0.15s;
}
.tucc-nav a[aria-current="page"],
.tucc-nav a:hover { color: var(--cyan); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-royal {
  background: linear-gradient(135deg, #5ee4ff 0%, var(--cyan) 40%, var(--cyan-dim) 100%);
  color: #001018 !important;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 36px var(--cyan-glow), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}
.btn-ghost {
  background: rgba(18, 34, 56, 0.8);
  border: 1px solid var(--line);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-block { width: 100%; }
.btn-lg { padding: 0.95rem 1.85rem; font-size: 1.05rem; }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.85rem; }
.btn:hover { transform: translateY(-2px); }
.page-title--lux .page-sub {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 52ch;
}

.hero-aurora {
  position: relative;
  padding: 2.5rem 0 2.75rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 200, 245, 0.12);
}
.hero-aurora__mark {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: min(520px, 70vw);
  height: 180px;
  background: center / contain no-repeat;
  opacity: 0.06;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent 72%);
}
.hero-aurora__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.75fr);
  gap: 1.75rem;
  align-items: start;
}
.hero-aurora h1 {
  font-family: var(--display);
  font-size: clamp(2.1rem, 4.8vw, 3.35rem);
  line-height: 1.05;
  margin: 0 0 1rem;
}
.hero-metrics {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero-metrics li {
  flex: 1;
  min-width: 120px;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(8, 16, 28, 0.65);
}
.hero-metrics strong {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--cyan);
  line-height: 1.1;
}
.hero-metrics span { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

.glass-lux {
  border-radius: 18px;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(0, 200, 245, 0.2);
  background: linear-gradient(160deg, rgba(14, 28, 48, 0.85), rgba(8, 16, 28, 0.75));
  box-shadow: var(--shadow);
}
.panel-label {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-soft);
  font-weight: 700;
}
.panel-links {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}
.panel-links a {
  display: block;
  padding: 0.45rem 0;
  color: var(--text-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.panel-links a:hover { color: var(--cyan); }

.hero-tucc {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 1.75rem;
  padding: 2.75rem 0 2.25rem;
  align-items: start;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--gold-soft);
  margin: 0 0 0.85rem;
  font-weight: 700;
}
.eyebrow-crown { color: var(--cyan); margin-right: 0.35rem; }
.hero-tucc h1 {
  font-family: var(--display);
  font-size: clamp(2.05rem, 4.5vw, 3.15rem);
  line-height: 1.06;
  margin: 0 0 1rem;
  color: var(--text);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.brand-accent { color: var(--cyan); }
.hero-lead {
  color: var(--text-soft);
  max-width: 52ch;
  margin: 0 0 1.35rem;
  font-size: 1.05rem;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.15rem; }
.hero-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.hero-tags li {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(12, 24, 41, 0.75);
  color: var(--muted);
}

.hero-tucc__side { display: flex; flex-direction: column; gap: 0.85rem; }
.hero-grid4 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}
.hero-card {
  display: block;
  padding: 1.05rem 1rem;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.hero-card span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.25rem;
  font-weight: 700;
}
.hero-card strong { font-family: var(--display); font-size: 1.08rem; color: var(--text); }
.hero-card:hover {
  border-color: var(--cyan);
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(0, 200, 245, 0.12);
}

.glass {
  background: linear-gradient(145deg, rgba(20, 40, 68, 0.95), rgba(10, 20, 36, 0.98));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.35rem 1.4rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.glass::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  opacity: 0.5;
}
.hero-panel h2 {
  font-family: var(--display);
  margin: 0 0 0.85rem;
  font-size: 1.35rem;
  color: var(--text);
}
.feature-list { list-style: none; margin: 0 0 1.1rem; padding: 0; }
.feature-list li {
  display: flex;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
  color: var(--text-soft);
  font-size: 0.92rem;
}
.feat-dot {
  flex-shrink: 0;
  width: 0.45rem;
  height: 0.45rem;
  margin-top: 0.48rem;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan-glow);
}

.hero-links3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}
.hero-links3 a {
  text-align: center;
  padding: 0.7rem 0.5rem;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.8rem;
  transition: border-color 0.2s, background 0.2s;
}
.hero-links3 a:hover { border-color: var(--gold-soft); color: var(--gold-soft); }

.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding-bottom: 2rem;
}
.tile {
  display: block;
  padding: 1.35rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow);
  transition: transform 0.2s, border-color 0.2s;
}
.tile span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--gold-soft);
  margin-bottom: 0.35rem;
  font-weight: 700;
}
.tile strong { font-family: var(--display); font-size: 1.25rem; }
.tile:hover { transform: translateY(-4px); border-color: var(--cyan); }

.article-section { padding-bottom: 2.75rem; }
.section-head { margin-bottom: 1.25rem; }
.section-kicker {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 700;
}
.section-h {
  font-family: var(--display);
  font-size: 1.9rem;
  margin: 0.4rem 0 0;
  color: var(--text);
}

.page-main { padding: 1.75rem 0 2.5rem; }
.page-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 700;
}
.page-title h1 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3vw, 2.55rem);
  margin: 0 0 1rem;
  color: var(--text);
}

.article-body { color: var(--text-soft); font-size: 1rem; max-width: 72ch; }
.article-body--card {
  max-width: none;
  background: linear-gradient(180deg, rgba(16, 32, 54, 0.98), rgba(8, 16, 28, 0.99));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.85rem 2rem;
  box-shadow: var(--shadow);
}
.article-body .lead { color: var(--text); font-size: 1.1rem; line-height: 1.75; }
.article-body h2 {
  font-family: var(--display);
  color: var(--text);
  font-size: 1.45rem;
  margin: 2.25rem 0 0.85rem;
  scroll-margin-top: 5.5rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--line-gold);
}
.article-body p { margin: 0 0 1rem; }
.article-body ul, .article-body ol { margin: 0 0 1rem; padding-left: 1.3rem; }
.article-body a:not([class*="btn"]) { color: var(--cyan); }
.article-body a.btn,
.article-body a.btn-royal {
  color: #001018 !important;
  text-decoration: none;
}
.article-toc {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  margin-bottom: 1.5rem;
  background: rgba(0, 200, 245, 0.06);
}
.toc-title { margin: 0 0 0.5rem; font-weight: 700; color: var(--text); }
.article-toc a { color: var(--cyan); text-decoration: none; font-weight: 600; }
.article-toc a:hover { text-decoration: underline; }

.royal-cta { padding: 2.25rem 0; }
.royal-cta__inner {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  text-align: center;
  background: linear-gradient(165deg, rgba(22, 44, 72, 0.95), rgba(8, 16, 28, 0.98));
  box-shadow: var(--shadow);
  position: relative;
}
.royal-cta__inner::before {
  content: "♔";
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  color: var(--gold-soft);
  opacity: 0.35;
}
.royal-cta__badge { margin: 0 0 0.35rem; color: var(--gold-soft); font-weight: 700; letter-spacing: 0.1em; font-size: 0.8rem; }
.royal-cta h2 { font-family: var(--display); margin: 0 0 0.5rem; color: var(--text); font-size: 1.65rem; }
.royal-cta p { color: var(--text-soft); max-width: 42ch; margin: 0 auto 1.25rem; }

.tucc-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 1rem;
  background: rgba(4, 8, 14, 0.92);
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.footer-cols h2 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.footer-cols ul { list-style: none; margin: 0; padding: 0; }
.footer-cols a { color: var(--text-soft); text-decoration: none; }
.footer-cols a:hover { color: var(--cyan); }
.footer-brand { font-family: var(--display); font-size: 1.4rem; color: var(--cyan); margin: 0 0 0.5rem; }
.footer-note { font-size: 0.88rem; color: var(--muted); margin: 0 0 1rem; }
.copy { font-size: 0.82rem; color: var(--muted); padding: 1rem 0; border-top: 1px solid var(--line); margin-top: 1rem; }

.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(6, 12, 20, 0.96);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}
.sticky-inner { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.sticky-inner span { color: var(--text-soft); }

.crumb { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.75rem; }
.crumb ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.35rem; }
.crumb a { color: var(--cyan); }
.blog-list { list-style: none; padding: 0; margin: 0; }
.blog-list li {
  margin-bottom: 0.85rem;
  padding: 1.1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-card);
  box-shadow: var(--shadow);
}
.blog-list a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-family: var(--display);
  font-size: 1.12rem;
}
.blog-list a:hover { color: var(--cyan); }
.blog-excerpt { margin: 0.35rem 0 0; font-size: 0.9rem; color: var(--muted); }
.cta-row {
  margin: 0 0 1.75rem;
  padding: 1.35rem 1.5rem;
  border-radius: 18px;
  text-align: center;
  background: linear-gradient(145deg, rgba(0, 200, 245, 0.14), rgba(212, 175, 106, 0.1));
  border: 1px solid var(--line-gold);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.cta-row .btn-royal { min-width: min(100%, 340px); }
.page-title {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-gold);
}
.page-title h1 {
  text-shadow: 0 0 40px rgba(0, 200, 245, 0.15);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--cyan);
  color: #000;
  padding: 0.75rem 1rem;
  z-index: 9999;
}
.skip:focus { left: 1rem; top: 1rem; }

/* —— Ultra lüks hero + logo arka plan —— */
.hero-luxe {
  position: relative;
  padding: 2rem 0 2.5rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-luxe__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-luxe__logo {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  width: min(70vw, 620px);
  height: min(26vw, 200px);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.2;
  filter: drop-shadow(0 0 60px var(--cyan-glow));
  mask-image: radial-gradient(ellipse 62% 52% at 50% 50%, black 20%, transparent 75%);
}
.hero-luxe__crowns {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cg fill='%2300c8f5'%3E%3Cpath d='M45 105 L54 72 L72 86 L90 52 L108 86 L126 72 L135 105 Z M43 110 H137 V118 H43 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 200px 200px;
}
.hero-luxe--cinema .hero-luxe__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(4, 10, 18, 0.92) 0%, rgba(6, 12, 20, 0.78) 45%, rgba(4, 10, 18, 0.88) 100%);
}
.hero-luxe__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(1.05) contrast(1.05);
}
.hero-luxe--cinema { padding: 2.5rem 0 3rem; min-height: min(88vh, 720px); display: flex; align-items: center; }

.page-inner { padding-bottom: 2rem; }
.article-hero {
  margin: 0 0 1.5rem;
  position: relative;
  line-height: 0;
  border-bottom: 1px solid var(--line);
  max-height: min(52vh, 420px);
  overflow: hidden;
}
.article-hero img {
  width: 100%;
  height: min(52vh, 420px);
  object-fit: cover;
  display: block;
}
.article-hero figcaption {
  position: absolute;
  left: 1rem;
  bottom: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.cat-rail { padding: 0.5rem 0 2rem; }
.cat-rail__track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
}
.cat-rail__item {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-card);
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow);
  transition: transform 0.25s, border-color 0.25s;
}
.cat-rail__item img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}
.cat-rail__item span {
  display: block;
  padding: 0.55rem 0.65rem;
  font-size: 0.78rem;
  line-height: 1.3;
}
.cat-rail__item strong { font-weight: 700; color: var(--text); }
.cat-rail__item:hover { transform: translateY(-4px); border-color: var(--cyan); }

.ed-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
.ed-card {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-card);
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.ed-card--lg {
  grid-column: span 2;
  grid-row: span 2;
}
.ed-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  background: #0a1420;
}
.ed-card--lg .ed-card__media { min-height: 280px; }
.ed-card:not(.ed-card--lg) .ed-card__media { height: 160px; }
.ed-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.ed-card:hover .ed-card__media img { transform: scale(1.06); }
.ed-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(4, 10, 18, 0.75) 100%);
  pointer-events: none;
}
.ed-card__tag {
  position: absolute;
  left: 0.75rem;
  bottom: 0.65rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan);
  z-index: 1;
}
.ed-card__body {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.1rem 1.15rem;
  flex: 1;
}
.ed-card__body strong {
  font-family: var(--display);
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
  line-height: 1.3;
}
.ed-card--lg .ed-card__body strong { font-size: 1.35rem; }
.ed-card__body p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  flex: 1;
  line-height: 1.5;
}
.ed-card__body em {
  margin-top: 0.75rem;
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cyan);
}
.ed-card:hover { border-color: var(--cyan); transform: translateY(-4px); box-shadow: 0 28px 70px rgba(0, 200, 245, 0.12); }
.hero-luxe__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 1.75rem;
  align-items: start;
}
.hero-luxe__main { padding-top: 0.5rem; }
.trust-band {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.trust-band span {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line-gold);
  background: rgba(8, 16, 28, 0.65);
  color: var(--text-soft);
}
.aside-stack { display: flex; flex-direction: column; gap: 0.75rem; }
.quick-links { list-style: none; margin: 0 0 1rem; padding: 0; }
.quick-links li { margin-bottom: 0.45rem; }
.quick-links a {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}
.quick-links a:hover { color: var(--gold-soft); }

.lux-categories {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.65rem;
  padding: 2rem 0;
}
.lux-cat {
  display: block;
  padding: 1rem 0.85rem;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow);
  transition: transform 0.2s, border-color 0.2s;
}
.lux-cat em {
  display: block;
  font-style: normal;
  font-size: 0.65rem;
  color: var(--gold-soft);
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}
.lux-cat strong { display: block; font-family: var(--display); font-size: 1rem; margin-bottom: 0.2rem; }
.lux-cat span { font-size: 0.72rem; color: var(--muted); line-height: 1.35; display: block; }
.lux-cat:hover { transform: translateY(-3px); border-color: var(--cyan); }

.section-block { padding-bottom: 1.5rem; }
.mag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.mag-card {
  display: flex;
  flex-direction: column;
  padding: 1.2rem 1.25rem;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow);
  min-height: 100%;
  transition: border-color 0.2s, transform 0.2s;
}
.mag-card__k {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-soft);
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.mag-card strong { font-family: var(--display); font-size: 1.08rem; margin-bottom: 0.45rem; line-height: 1.25; }
.mag-card p { margin: 0; font-size: 0.88rem; color: var(--muted); flex: 1; }
.mag-card__go { margin-top: 0.75rem; font-size: 0.82rem; font-weight: 700; color: var(--cyan); }
.mag-card:hover { border-color: var(--cyan); transform: translateY(-3px); }

.faq-luxe { padding-bottom: 2rem; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.55rem;
  background: var(--bg-card);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin: 0.65rem 0 0; color: var(--text-soft); font-size: 0.92rem; }

@media (max-width: 860px) {
  .menu-btn { display: block; }
  .masthead {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }
  .masthead__brand { grid-column: 1; }
  .masthead__toggle { grid-column: 2; grid-row: 1; }
  .masthead__cta {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-end;
  }
  .masthead__cta .btn-outline { display: none; }
  .pill-nav {
    display: none;
    grid-column: 1 / -1;
    order: 4;
    width: 100%;
  }
  .pill-nav.is-open { display: block; }
  .pill-nav ul {
    flex-direction: column;
    border-radius: 14px;
    padding: 0.5rem;
  }
  .hero-aurora__inner { grid-template-columns: 1fr; }
  .lux-categories { grid-template-columns: 1fr 1fr; }
  .ed-showcase { grid-template-columns: 1fr; }
  .ed-card--lg { grid-column: span 1; grid-row: span 1; }
  .hero-grid4 { grid-template-columns: 1fr 1fr; }
  .article-body { max-width: none; }
  .article-body--card { padding: 1.25rem 1.15rem; }
  .chrome-strip__link { margin-left: 0; width: 100%; text-align: center; }
}
