/* ==========================================================================
   BETOZOF GİRİŞ KAPISI - PREMIUM EDITORIAL DESIGN SYSTEM
   Domain: betozofkapi.online
   ========================================================================== */

:root {
  /* Royal Dark Palette */
  --bg-deep: #0a0b0e;
  --bg-surface: #101217;
  --bg-card: #151821;
  --bg-card-hover: #1b202c;
  --bg-subtle: #1e2330;
  
  /* Imperial Gold & Bronze Accents */
  --gold-primary: #d4af37;
  --gold-light: #f3e5ab;
  --gold-vibrant: #e6be44;
  --gold-dark: #917122;
  --gold-glow: rgba(212, 175, 55, 0.28);
  --bronze-accent: #b07d38;
  
  /* Forged Iron & Steel */
  --iron-border: #262b38;
  --iron-border-light: #363d50;
  --iron-steel: #7b8599;
  
  /* Wood Patina */
  --wood-warm: #8B5A2B;
  --wood-glow: rgba(139, 90, 43, 0.22);
  
  /* Typography */
  --text-pure: #ffffff;
  --text-main: #e6ebf5;
  --text-muted: #9aa4b8;
  --text-dim: #6c768a;
  
  /* Fonts */
  --font-serif: 'Cinzel', serif;
  --font-decorative: 'Cinzel Decorative', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Transitions & Shadows */
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-elastic: cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-lux: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 40px rgba(212, 175, 55, 0.08);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
  --container-max: 1240px;
}

/* Base Resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-deep);
  color: var(--text-main);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  line-height: 1.7;
  overflow-x: hidden;
  background: radial-gradient(circle at 50% 0%, #171b24 0%, var(--bg-deep) 65%);
  min-height: 100vh;
}

/* Accessibility */
.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;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Typography Helpers */
h1, h2, h3, h4, .serif-text {
  font-family: var(--font-serif);
  color: var(--text-pure);
  letter-spacing: 0.02em;
  font-weight: 700;
}

.gold-gradient {
  background: linear-gradient(135deg, #fff2c6 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.inline-text-link {
  color: var(--gold-light);
  text-decoration: underline;
  text-decoration-color: var(--gold-dark);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.inline-text-link:hover {
  color: #ffffff;
  text-decoration-color: var(--gold-primary);
}

/* ==========================================================================
   READING PROGRESS & ANNOUNCEMENT BAR
   ========================================================================== */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-primary), #fff0b8);
  z-index: 9999;
  box-shadow: 0 0 10px var(--gold-primary);
  transition: width 0.1s linear;
}

.top-announcement {
  background: #08090c;
  border-bottom: 1px solid var(--iron-border);
  padding: 0.5rem 0;
  font-size: 0.825rem;
  color: var(--text-muted);
  min-height: 38px;
  display: flex;
  align-items: center;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-primary);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.announcement-link {
  color: var(--gold-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.announcement-link:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 11, 14, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.3s var(--ease-smooth);
  min-height: 72px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-seal {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: radial-gradient(circle at 30% 30%, #2e2612 0%, #151821 80%);
  border: 1px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px var(--gold-glow);
  position: relative;
}

.seal-inner {
  font-family: var(--font-decorative);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-primary);
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--text-pure);
}

.brand-subtitle {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--gold-primary);
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 1.8rem;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s var(--ease-smooth);
  position: relative;
  padding: 0.3rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: width 0.25s var(--ease-smooth);
}

.nav-link:hover {
  color: var(--text-pure);
}

.nav-link:hover::after {
  width: 100%;
}

.btn-primary-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: #0b0c10;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px var(--gold-glow);
  cursor: pointer;
  transition: all 0.25s var(--ease-smooth);
}

.btn-primary-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.45);
}

/* ==========================================================================
   HERO SECTION & SYNCHRONIZED DUAL-CONTAINER
   ========================================================================== */
.hero-section {
  position: relative;
  padding-top: 3.5rem;
  padding-bottom: 5rem;
  overflow: hidden;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
}

.gold-glow {
  width: 600px;
  height: 350px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
}

.wood-glow {
  width: 500px;
  height: 400px;
  background: radial-gradient(circle, var(--wood-glow) 0%, transparent 70%);
  bottom: 0;
  right: 10%;
}

.hero-content-top {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin-bottom: 2.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: 9999px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.badge-icon {
  font-size: 0.85rem;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  min-height: 2.3em;
}

.hero-description {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto 2rem auto;
}

.hero-description strong {
  color: var(--gold-light);
  font-weight: 600;
}

/* Model Switcher */
.model-selector-bar {
  display: inline-flex;
  gap: 0.75rem;
  background: rgba(20, 24, 33, 0.7);
  padding: 0.35rem;
  border-radius: 14px;
  border: 1px solid var(--iron-border-light);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
}

.model-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.25rem;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s var(--ease-smooth);
  text-align: left;
}

.model-btn strong {
  display: block;
  font-size: 0.875rem;
  color: var(--text-pure);
}

.model-btn small {
  display: block;
  font-size: 0.725rem;
  color: var(--text-dim);
}

.model-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--iron-steel);
  transition: all 0.25s var(--ease-smooth);
}

.model-btn:hover {
  color: var(--text-pure);
  background: rgba(255, 255, 255, 0.03);
}

.model-btn.active {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(20, 24, 33, 0.9) 100%);
  border-color: var(--gold-primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.model-btn.active .model-dot {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-primary);
}

.model-btn.active strong {
  color: var(--gold-light);
}

/* ==========================================================================
   HERO STAGE: DUAL SYNCHRONIZED TOUCHING CONTAINERS (CRITICAL)
   ========================================================================== */
.hero-stage-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-stage-container {
  max-width: 1100px;
}

.door-chassis {
  background: linear-gradient(180deg, #161922 0%, #0d0f14 100%);
  border: 1px solid var(--iron-border-light);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow-lux);
  position: relative;
  overflow: hidden;
}

.door-chassis::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  opacity: 0.6;
}

/* Status Strip */
.door-status-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--iron-border);
  flex-wrap: wrap;
  gap: 0.75rem;
}

.status-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.1);
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.pulse-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #34d399;
  box-shadow: 0 0 8px #34d399;
  animation: pulseDot 1.5s infinite;
}

.status-tip {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.status-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.frame-counter {
  font-family: monospace;
  font-size: 0.85rem;
  color: var(--gold-primary);
  font-weight: 700;
  background: #090a0d;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  border: 1px solid var(--iron-border);
}

.btn-reveal-split {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--iron-steel);
  color: var(--text-main);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s var(--ease-smooth);
}

.btn-reveal-split:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

.btn-reveal-split.active {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: #0b0c10;
}

/* ==========================================================================
   THE SPLIT CONTAINER (ZERO PADDING, ZERO SPACE, TOUCHING FLUSH)
   ========================================================================== */
.hero-split-container {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 0 !important;             /* STRICT ZERO GAP */
  padding: 0 !important;         /* STRICT ZERO PADDING */
  margin: 0 auto;
  border: none;
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 1344 / 768;      /* Exact aspect ratio matching original sequence frames */
  position: relative;
  background: #050608;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  user-select: none;
  cursor: grab;
}

.hero-split-container:active {
  cursor: grabbing;
}

/* Two distinct sides touching flush with 0px space */
.split-wing-box {
  flex: 0 0 50%;
  max-width: 50%;
  width: 50%;
  height: 100%;
  aspect-ratio: 672 / 768;
  position: relative;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  transition: transform 0.45s var(--ease-smooth);
  will-change: transform;
}

/* Canvas fills each half */
.split-wing-box canvas {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  padding: 0;
  border: none;
  image-rendering: -webkit-optimize-contrast;
}

/* Subtle corner badge on hover */
.wing-identifier {
  position: absolute;
  bottom: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-pure);
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 0.25s ease;
  z-index: 5;
}

.hero-split-container:hover .wing-identifier {
  opacity: 1;
}

.left-tag {
  left: 12px;
}

.right-tag {
  right: 12px;
}

.wing-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-primary);
}

/* Visual Split Reveal Demonstration Mode */
.hero-split-container.is-split .left-wing {
  transform: translateX(-16px);
  box-shadow: -10px 0 25px rgba(0, 0, 0, 0.9);
}

.hero-split-container.is-split .right-wing {
  transform: translateX(16px);
  box-shadow: 10px 0 25px rgba(0, 0, 0, 0.9);
}

/* Drag Overlay Hint */
.drag-surface {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: auto;
}

.drag-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(10, 12, 16, 0.85);
  border: 1px solid var(--gold-primary);
  border-radius: 9999px;
  padding: 0.6rem 1.4rem;
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  pointer-events: none;
  box-shadow: 0 0 30px var(--gold-glow);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-split-container:hover .drag-indicator {
  opacity: 0.9;
}

.hero-split-container.is-active .drag-indicator {
  opacity: 0 !important;
}

/* ==========================================================================
   CONTROLS DECK
   ========================================================================== */
.door-controls-deck {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--iron-border);
}

.btn-playback, .btn-playback-reverse {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--iron-border-light);
  background: #191d26;
  color: var(--gold-primary);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s var(--ease-smooth);
  flex-shrink: 0;
}

.btn-playback:hover, .btn-playback-reverse:hover {
  background: var(--gold-primary);
  color: #0b0c10;
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px var(--gold-glow);
}

.scrubber-bar-wrapper {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.custom-range-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  border-radius: 4px;
  background: #090a0d;
  border: 1px solid var(--iron-border);
  outline: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.custom-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--gold-light) 0%, var(--gold-primary) 60%, var(--gold-dark) 100%);
  border: 2px solid #ffffff;
  box-shadow: 0 0 10px var(--gold-glow);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.custom-range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.custom-range-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-primary);
  border: 2px solid #ffffff;
  cursor: pointer;
}

.scrubber-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: var(--text-dim);
  padding: 0 2px;
}

.stage-footer-note {
  display: flex;
  justify-content: space-between;
  font-size: 0.725rem;
  color: var(--text-dim);
  margin-top: 0.85rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ==========================================================================
   KEYWORD / STATS STRIP
   ========================================================================== */
.seo-keywords-strip {
  background: #0b0d12;
  border-top: 1px solid var(--iron-border);
  border-bottom: 1px solid var(--iron-border);
  padding: 2.2rem 0;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.strip-item {
  padding: 0.5rem 1rem;
  border-right: 1px solid var(--iron-border);
}

.strip-item:last-child {
  border-right: none;
}

.strip-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-primary);
  margin-bottom: 0.25rem;
}

.strip-label {
  font-size: 0.825rem;
  color: var(--text-muted);
}

/* ==========================================================================
   BLOG EDITORIAL ARTICLES (THE LEGEND & THE CRAFT)
   ========================================================================== */
.blog-article {
  padding: 5rem 0;
  position: relative;
}

.article-container {
  max-width: 860px;
}

.article-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.article-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--gold-primary);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.meta-dot {
  color: var(--iron-steel);
}

.article-main-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.article-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  font-style: italic;
  max-width: 720px;
  margin: 0 auto;
}

.article-body {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text-main);
}

.article-body p {
  margin-bottom: 1.75rem;
}

.lead-paragraph p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-pure);
}

.lead-paragraph p::first-letter {
  font-family: var(--font-decorative);
  font-size: 3.5rem;
  float: left;
  line-height: 0.85;
  margin-right: 0.85rem;
  color: var(--gold-primary);
  text-shadow: 0 0 10px var(--gold-glow);
}

.article-body strong {
  color: var(--gold-light);
  font-weight: 600;
}

.imperial-quote {
  margin: 2.5rem 0;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.07) 0%, rgba(18, 21, 29, 0.8) 100%);
  border-left: 4px solid var(--gold-primary);
  border-radius: 0 12px 12px 0;
  box-shadow: var(--shadow-card);
}

.imperial-quote p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.imperial-quote cite {
  font-size: 0.85rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legend-proverb-card {
  margin: 2.5rem 0;
  padding: 2rem;
  background: radial-gradient(circle at 50% 50%, #1c212e 0%, #11131a 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.card-ornament {
  font-size: 1.8rem;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.proverb-text {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: #ffffff !important;
  line-height: 1.6;
  margin-bottom: 0 !important;
}

.legend-proverb-card.accent-border {
  border-color: var(--gold-primary);
  background: #141822;
}

.section-divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  max-width: 600px;
  margin: 2rem auto;
  opacity: 0.6;
}

.ornament-line {
  height: 1px;
  flex-grow: 1;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.ornament-gem {
  color: var(--gold-primary);
  font-size: 1.2rem;
}

/* ==========================================================================
   STILL DOOR SHOWCASE: DUAL TOUCHING FLUSH CONTAINERS (IN-BLOG)
   User Requirement: "each image should be converted to webp and then split down the middle ,
   and each for those containers will have a left and right container placed flush with each other
   and touching with 0 space between them ."
   ========================================================================== */
.door-feature-block {
  margin: 3.5rem -2rem;
}

@media (max-width: 768px) {
  .door-feature-block {
    margin: 2.5rem 0;
  }
}

.split-door-figure {
  background: #0d0e13;
  border: 1px solid var(--iron-border-light);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.split-door-figure:hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 30px var(--gold-glow);
}

.split-door-outer {
  background: #050608;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--iron-border);
}

/* CRITICAL: The two containers touching with 0 space */
.split-door-canvas-box {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 0 !important;             /* STRICT ZERO GAP */
  margin: 0 !important;          /* STRICT ZERO MARGIN */
  padding: 0 !important;         /* STRICT ZERO PADDING */
  border: none !important;
  width: 100%;
  aspect-ratio: 1376 / 768;      /* Still door aspect ratio */
  line-height: 0;
  font-size: 0;
}

.door-half-container {
  flex: 0 0 50%;
  max-width: 50%;
  width: 50%;
  height: 100%;
  aspect-ratio: 688 / 768;
  position: relative;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  overflow: hidden;
}

.door-half-container img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  transition: transform 0.4s var(--ease-smooth);
}

.split-door-figure:hover .door-half-container img {
  transform: scale(1.02);
}

.half-side-badge {
  position: absolute;
  bottom: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  background: rgba(10, 12, 16, 0.75);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  opacity: 0.7;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.left-half-box .half-side-badge {
  left: 8px;
}

.right-half-box .half-side-badge {
  right: 8px;
}

.split-door-figure:hover .half-side-badge {
  opacity: 1;
}

.split-door-caption {
  margin-top: 1.25rem;
  padding: 0 0.5rem;
}

.caption-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.model-code {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
}

.split-indicator-pill {
  font-size: 0.7rem;
  color: var(--text-dim);
  background: #141720;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  border: 1px solid var(--iron-border);
}

.split-door-outer {
  background: #050608;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--iron-border);
  position: relative;
}

.split-door-outer.is-split .left-half-box {
  transform: translateX(-16px);
  box-shadow: -10px 0 25px rgba(0, 0, 0, 0.9);
}

.split-door-outer.is-split .right-half-box {
  transform: translateX(16px);
  box-shadow: 10px 0 25px rgba(0, 0, 0, 0.9);
}

.door-half-container {
  flex: 0 0 50%;
  max-width: 50%;
  width: 50%;
  height: 100%;
  position: relative;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  overflow: hidden;
  transition: transform 0.45s var(--ease-smooth);
  will-change: transform;
}

.caption-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.btn-toggle-door-split {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--iron-border-light);
  color: var(--text-muted);
  font-size: 0.725rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-toggle-door-split:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

.btn-toggle-door-split.active {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: #0b0c10;
}

.split-door-caption h3, .split-door-caption h4 {
  font-size: 1.15rem;
  color: var(--text-pure);
  margin-bottom: 0.4rem;
}

.split-door-caption p {
  font-size: 0.925rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

/* ==========================================================================
   TECHNICAL CRAFT CARDS & INFOGRAPHICS
   ========================================================================= */
.craft-step-card {
  background: #11141c;
  border: 1px solid var(--iron-border);
  border-radius: 16px;
  padding: 2.2rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.craft-step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold-primary) 0%, transparent 100%);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.step-number {
  font-family: var(--font-decorative);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.1);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  flex-shrink: 0;
}

.step-title-group h3 {
  font-size: 1.4rem;
  color: var(--text-pure);
  margin-bottom: 0.25rem;
}

.step-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.06em;
}

.formula-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1rem;
  margin: 1.75rem 0;
}

.formula-item {
  background: #171b26;
  border: 1px solid var(--iron-border-light);
  border-radius: 10px;
  padding: 1.2rem;
  text-align: center;
}

.formula-icon {
  font-size: 1.6rem;
  color: var(--gold-primary);
  display: block;
  margin-bottom: 0.5rem;
}

.formula-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  color: var(--text-pure);
}

.formula-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.45;
}

/* 3-Layer Breakdown */
.layers-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.75rem 0;
}

.layer-row {
  display: flex;
  align-items: center;
  background: #171b26;
  border: 1px solid var(--iron-border-light);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .layer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

.layer-tag-col {
  min-width: 190px;
}

.layer-direction {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--gold-primary);
  letter-spacing: 0.1em;
}

.layer-tag-col strong {
  font-size: 0.95rem;
  color: var(--text-pure);
}

.layer-desc-col {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.craft-callout-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 10px;
  padding: 1.25rem;
  margin-top: 1.5rem;
}

.callout-icon {
  font-size: 1.5rem;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.callout-text {
  font-size: 0.925rem;
  color: var(--text-main);
  line-height: 1.6;
}

.craft-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.craft-bullets li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.98rem;
  color: var(--text-main);
  line-height: 1.7;
}

.craft-bullets li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold-primary);
  font-size: 0.9rem;
}

/* ==========================================================================
   COMPARISON TABLE SECTION
   ========================================================================== */
.comparison-section {
  padding: 5rem 0;
  background: #0d0f14;
  border-top: 1px solid var(--iron-border);
  border-bottom: 1px solid var(--iron-border);
}

.section-title-center {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3rem auto;
}

.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.table-responsive {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid var(--iron-border-light);
  box-shadow: var(--shadow-card);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background: #11141c;
  font-size: 0.95rem;
}

.comparison-table th, .comparison-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--iron-border);
}

.comparison-table thead th {
  background: #161a24;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--text-pure);
}

.th-betozof {
  background: linear-gradient(135deg, #241e12 0%, #171b26 100%) !important;
  color: var(--gold-light) !important;
  border-bottom: 2px solid var(--gold-primary) !important;
}

.td-betozof {
  background: rgba(212, 175, 55, 0.05);
  color: #fff !important;
  font-weight: 600;
}

.comparison-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-section {
  padding: 5rem 0;
}

.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #13161f;
  border: 1px solid var(--iron-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.35);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-pure);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--gold-primary);
  line-height: 1;
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==========================================================================
   CONTACT / INQUIRY SECTION
   ========================================================================== */
.contact-section {
  padding: 5rem 0;
  background: radial-gradient(circle at 80% 50%, #1d1b14 0%, #0c0d12 70%);
  border-top: 1px solid var(--iron-border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}

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

.contact-p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-perks {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.perk-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.perk-icon {
  color: var(--gold-primary);
  font-weight: 800;
  font-size: 1.1rem;
}

.perk-item strong {
  display: block;
  color: var(--text-pure);
  font-size: 0.95rem;
}

.perk-item p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

.contact-form-box {
  background: #141720;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 18px;
  padding: 2.25rem;
  box-shadow: var(--shadow-lux);
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
}

.form-group input, .form-group select, .form-group textarea {
  background: #090a0d;
  border: 1px solid var(--iron-border-light);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-glow);
}

.btn-submit-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
  color: #0b0c10;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.85rem 1.5rem;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s var(--ease-smooth);
  box-shadow: 0 4px 15px var(--gold-glow);
  margin-top: 0.5rem;
}

.btn-submit-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.45);
}

.privacy-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #07080a;
  border-top: 1px solid var(--iron-border);
  padding: 4rem 0 2rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 850px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.seal-small {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--gold-primary);
  color: #0b0c10;
  font-family: var(--font-decorative);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.domain-tag {
  font-size: 0.8rem;
  color: var(--gold-primary);
}

.footer-col h4 {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  color: var(--text-pure);
  letter-spacing: 0.05em;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.footer-col ul a:hover {
  color: var(--gold-light);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.keyword-chip {
  background: #11141d;
  border: 1px solid var(--iron-border-light);
  color: var(--text-muted);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  font-size: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid var(--iron-border);
  padding-top: 2rem;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.artisan-badge {
  color: var(--gold-primary);
  font-weight: 600;
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 900px) {
  .nav-list {
    display: none; /* Can be toggled or kept lean for single page blog */
  }
}
