/* ── CZAAH Global Styles ── */
/* Enhanced: cleaner design, refined animations, polished interactions */

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

:root {
  --gold: #C9A84C;
  --gold-light: #E2C97E;
  --gold-dim: rgba(201, 168, 76, 0.12);
  --gold-glow: rgba(201, 168, 76, 0.06);
  --black: #000000;
  --black-card: #080808;
  --black-elevated: #0F0F0F;
  --black-border: #1A1A1A;
  --white: #FFFFFF;
  --white-dim: rgba(255, 255, 255, 0.6);
  --white-muted: rgba(255, 255, 255, 0.38);
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis: none;
  text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

body {
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--black);
  color: var(--white);
  min-height: 100vh;
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: 0.3px;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Overflow wrapper — prevents any child from widening the viewport */
.page-wrap {
  overflow-x: hidden;
  width: 100%;
}

/* Subtle grain texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

.serif {
  font-family: 'Cinzel', Georgia, serif;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  border-bottom: 1px solid transparent;
  transition: all 0.5s var(--ease-smooth);
}

nav.scrolled {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity 0.3s;
  flex-shrink: 0;
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-logo .markhor-mark { height: 36px; width: auto; }

.nav-logo .nav-wordmark {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 8px;
  color: transparent;
  background: linear-gradient(135deg, #8a6f2e 0%, #c9a84c 30%, #e8c97a 50%, #c9a84c 70%, #8a6f2e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-indent: 8px;
  line-height: 1;
}

.nav-logo .nav-divider {
  width: 1px;
  height: 24px;
  background: rgba(201,168,76,0.3);
}

.nav-links {
  display: none;
  gap: 32px;
  list-style: none;
  align-items: center;
}

@media (min-width: 769px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-hamburger { display: none; }
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a,
.nav-links > li > .nav-dropdown-trigger {
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.3s var(--ease-out);
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-dropdown-trigger .chevron {
  font-size: 8px;
  transition: transform 0.3s var(--ease-smooth);
  display: inline-block;
}

.nav-links > li:hover > .nav-dropdown-trigger .chevron {
  transform: rotate(180deg);
}

.nav-links > li > a::after,
.nav-links > li > .nav-dropdown-trigger::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-smooth);
}

.nav-links > li > a:hover,
.nav-links > li > a.active,
.nav-links > li:hover > .nav-dropdown-trigger {
  color: var(--white);
}

.nav-links > li > a:hover::after,
.nav-links > li > a.active::after,
.nav-links > li:hover > .nav-dropdown-trigger::after {
  width: 100%;
}

/* ── DROPDOWN MENU ── */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: max-content;
  max-width: min(520px, 90vw);
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border: 1px solid var(--black-border);
  border-radius: 16px;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.35s var(--ease-smooth);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-links > li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--white-dim);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  transition: all 0.25s var(--ease-smooth);
}

.nav-dropdown a:hover {
  background: rgba(201, 168, 76, 0.06);
  color: var(--white);
}

.nav-dropdown a::after {
  display: none;
}

.nav-dropdown a .dd-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--gold);
  flex-shrink: 0;
  transition: background 0.25s;
}

.nav-dropdown a:hover .dd-icon {
  background: rgba(201, 168, 76, 0.18);
}

.nav-dropdown a .dd-text {
  display: flex;
  flex-direction: column;
}

.nav-dropdown a .dd-text span {
  font-weight: 500;
  font-size: 13px;
  color: var(--white);
  letter-spacing: 0;
}

.nav-dropdown a .dd-text small {
  font-size: 11px;
  color: var(--white-muted);
  margin-top: 1px;
}

.nav-dropdown .dd-divider {
  grid-column: 1 / -1;
  height: 1px;
  background: var(--black-border);
  margin: 8px 0;
}

.nav-dropdown.nav-dropdown-sm {
  min-width: 280px;
  grid-template-columns: 1fr;
}

.nav-cta {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--gold);
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.35s var(--ease-smooth);
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
}

/* ── SITE SEARCH ── */
.nav-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white-dim);
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
  flex-shrink: 0;
}

.nav-search-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.nav-search-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease-smooth), visibility 0.35s;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-overlay-inner {
  width: 100%;
  max-width: 640px;
  padding: 0 24px;
}

.search-overlay-input-wrap {
  position: relative;
  margin-bottom: 24px;
}

.search-overlay-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 14px;
  padding: 20px 24px 20px 56px;
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  font-weight: 400;
  outline: none;
  transition: border-color 0.3s ease;
}

.search-overlay-input:focus {
  border-color: var(--gold);
}

.search-overlay-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.search-overlay-input-wrap svg {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.6;
}

.search-overlay-close {
  position: absolute;
  top: 32px;
  right: 40px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white-dim);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.search-overlay-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.search-overlay-hint {
  font-size: 11px;
  color: var(--white-muted);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.search-results {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 400px;
  overflow-y: auto;
}

.search-results::-webkit-scrollbar { width: 4px; }
.search-results::-webkit-scrollbar-track { background: transparent; }
.search-results::-webkit-scrollbar-thumb { background: rgba(201, 168, 76, 0.3); border-radius: 2px; }

.search-result-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--white);
  transition: all 0.25s var(--ease-smooth);
  border: 1px solid transparent;
}

.search-result-item:hover,
.search-result-item.active {
  background: rgba(201, 168, 76, 0.06);
  border-color: rgba(201, 168, 76, 0.15);
}

.search-result-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.12);
}

.search-result-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.search-result-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.search-result-desc {
  font-size: 12px;
  color: var(--white-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-tag {
  margin-left: auto;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
  font-weight: 500;
}

.search-no-results {
  text-align: center;
  padding: 40px 0;
  color: var(--white-muted);
  font-size: 14px;
}

@media (max-width: 768px) {
  .search-overlay { padding-top: 80px; }
  .search-overlay-input { font-size: 16px; padding: 16px 20px 16px 48px; }
  .search-overlay-close { top: 20px; right: 20px; }
}

/* ── HERO WRAPPER (full-width background) ── */
.v-hero-wrapper {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.v-hero-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.55) 40%,
    rgba(0, 0, 0, 0.82) 100%
  );
  z-index: 1;
}

/* ── HERO (Vertical Pages) ── */
.v-hero {
  position: relative;
  z-index: 2;
  padding: 160px 48px 100px;
  max-width: 1200px;
  margin: 0 auto;
  display: block;
  align-items: center;
}

.v-hero-text .label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 400;
}

.v-hero-text .back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--white-muted);
  text-decoration: none;
  margin-bottom: 20px;
  transition: all 0.3s var(--ease-out);
}

.v-hero-text .back-link:hover {
  color: var(--gold);
  gap: 10px;
}

.v-hero-text h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.v-hero-text h1 .gold {
  color: var(--gold);
  font-style: italic;
}

.v-hero-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--white-dim);
  max-width: 560px;
  margin-bottom: 32px;
}

.v-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v-hero-graphic {
  width: 100%;
  aspect-ratio: 1;
  max-width: 420px;
  border-radius: 24px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.6s var(--ease-smooth);
}

.v-hero-graphic:hover {
  border-color: rgba(201, 168, 76, 0.2);
}

.v-hero-graphic .glow {
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
  pointer-events: none;
  animation: breathe 6s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
}

.v-hero-graphic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform 8s var(--ease-smooth), opacity 0.6s;
  opacity: 0.85;
}

.v-hero-graphic:hover img {
  transform: scale(1.04);
}

.v-hero-graphic .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.15) 100%);
  z-index: 1;
  pointer-events: none;
}

.v-hero-graphic .icon-large {
  font-size: 80px;
  color: var(--gold);
  opacity: 0.15;
  position: relative;
  z-index: 2;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── SECTIONS ── */
.section {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-center {
  text-align: center;
}

.section h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.section h2 .gold {
  color: var(--gold);
  font-style: italic;
}

.section .subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.7;
  color: var(--white-dim);
  max-width: 560px;
  margin-bottom: 48px;
  letter-spacing: 0.5px;
}

.section-center .subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ── DIVIDER ── */
.divider {
  width: 100%;
  height: 1px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  background: linear-gradient(90deg, transparent, var(--black-border) 20%, var(--black-border) 80%, transparent);
}

/* ── MODEL FLOW ── */
.model-flow {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
}

.model-step {
  display: flex;
  align-items: center;
  gap: 0;
}

.model-step .step-box {
  padding: 14px 24px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.4s var(--ease-smooth);
}

.model-step .step-box:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.08);
}

.model-step .arrow {
  color: var(--gold);
  font-size: 18px;
  padding: 0 12px;
}

/* ── DETAIL GRID ── */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.detail-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.5s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.5s var(--ease-smooth);
}

.detail-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(201, 168, 76, 0.08);
}

.detail-card:hover::before {
  opacity: 1;
}

.detail-card .card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 18px;
  transition: all 0.4s var(--ease-smooth);
}

.detail-card:hover .card-icon {
  background: rgba(201, 168, 76, 0.18);
  transform: scale(1.05);
}

.detail-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.detail-card p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--white-muted);
}

/* ── KEY RELATIONSHIPS ── */
.relationships {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.rel-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 28px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 14px;
  transition: all 0.5s var(--ease-smooth);
}

.rel-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.rel-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 16px;
  transition: all 0.4s var(--ease-smooth);
}

.rel-card:hover .rel-icon {
  background: rgba(201, 168, 76, 0.18);
}

.rel-card h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.rel-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--white-muted);
}

/* ── STATS ROW ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 48px 0;
}

.stat-item {
  text-align: center;
  padding: 36px 16px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 16px;
  transition: all 0.5s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width 0.6s var(--ease-smooth);
}

.stat-item:hover {
  border-color: rgba(201, 168, 76, 0.15);
  transform: translateY(-3px);
}

.stat-item:hover::after {
  width: 60%;
}

.stat-item .number {
  font-family: 'Cinzel', serif;
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 8px;
}

.stat-item .label {
  font-size: 12px;
  color: var(--white-muted);
  letter-spacing: 0.03em;
  line-height: 1.5;
}

/* ── PROCESS LIST ── */
.process-list {
  display: grid;
  gap: 16px;
  margin-top: 48px;
  counter-reset: process;
}

.process-item {
  counter-increment: process;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 14px;
  transition: all 0.5s var(--ease-smooth);
}

.process-item:hover {
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateX(4px);
}

.process-item::before {
  content: counter(process, decimal-leading-zero);
  font-family: 'Cinzel', serif;
  font-size: 32px;
  color: rgba(201, 168, 76, 0.15);
  line-height: 1;
  flex-shrink: 0;
  min-width: 48px;
  transition: color 0.4s var(--ease-smooth);
}

.process-item:hover::before {
  color: rgba(201, 168, 76, 0.35);
}

.process-item h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.process-item p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--white-muted);
}

/* ── OPPORTUNITY BANNER ── */
.opportunity {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 16px;
  padding: 48px;
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 48px;
  transition: border-color 0.5s var(--ease-smooth);
}

.opportunity:hover {
  border-color: rgba(201, 168, 76, 0.2);
}

.opportunity .opp-highlight {
  font-family: 'Cinzel', serif;
  font-size: 56px;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
}

.opportunity h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.opportunity p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--white-dim);
}

/* ── TWO COLUMN SPLIT ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.split h3 {
  font-family: 'Cinzel', serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 16px;
}

.split p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--white-dim);
  margin-bottom: 12px;
}

.split .tag {
  display: inline-block;
  padding: 5px 14px;
  background: var(--gold-dim);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 6px;
  font-weight: 500;
  margin-right: 8px;
  margin-bottom: 8px;
  transition: all 0.3s var(--ease-smooth);
}

.split .tag:hover {
  background: rgba(201, 168, 76, 0.2);
  transform: translateY(-1px);
}

/* ── CTA BANNER ── */
.cta-banner {
  text-align: center;
  padding: 100px 48px;
  position: relative;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 65%);
  pointer-events: none;
  animation: breathe 8s ease-in-out infinite;
}

.cta-banner h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 16px;
}

.cta-banner p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--white-dim);
  max-width: 440px;
  margin: 0 auto 36px;
  line-height: 1.7;
  letter-spacing: 0.5px;
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.4s var(--ease-smooth);
  border: none;
  cursor: pointer;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s var(--ease-smooth);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.25);
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--black-border);
  transition: all 0.4s var(--ease-smooth);
  cursor: pointer;
  font-family: inherit;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.08);
}

/* ── FOOTER ── */
footer {
  padding: 80px 48px 40px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--black-border);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  line-height: 1;
}

.footer-brand .footer-markhor { height: 52px; width: auto; }

.footer-brand .footer-wordmark {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 10px;
  color: transparent;
  background: linear-gradient(135deg, #8a6f2e 0%, #c9a84c 30%, #e8c97a 50%, #c9a84c 70%, #8a6f2e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-indent: 10px;
}

.footer-brand .footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 3px;
  color: rgba(201,168,76,0.5);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--white-muted);
}

.footer-cols {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 16px;
  font-weight: 500;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--white-muted);
  text-decoration: none;
  margin-bottom: 10px;
  transition: all 0.3s var(--ease-out);
}

.footer-col a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--black-border);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom span {
  font-size: 12px;
  color: var(--white-muted);
}

.footer-bottom .entities {
  display: flex;
  gap: 24px;
}

.footer-bottom .entities span {
  font-size: 11px;
  color: var(--white-muted);
  letter-spacing: 0.04em;
}

/* ── ANIMATIONS ── */

/* Base fade-in (scroll triggered) */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-smooth), transform 0.9s var(--ease-smooth);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Direction variants */
.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s var(--ease-smooth), transform 0.9s var(--ease-smooth);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s var(--ease-smooth), transform 0.9s var(--ease-smooth);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.9s var(--ease-smooth), transform 0.9s var(--ease-smooth);
}

.fade-in-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children animation */
.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.3s; }
.stagger.visible > *:nth-child(7) { transition-delay: 0.35s; }
.stagger.visible > *:nth-child(8) { transition-delay: 0.4s; }

/* Hero entrance animation */
.hero-enter {
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 1s var(--ease-smooth) forwards;
}

.hero-enter-delay-1 { animation-delay: 0.15s; }
.hero-enter-delay-2 { animation-delay: 0.3s; }
.hero-enter-delay-3 { animation-delay: 0.45s; }
.hero-enter-delay-4 { animation-delay: 0.6s; }

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gold accent line */
.gold-line {
  display: block;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 20px;
  transition: width 1s var(--ease-smooth);
}

.gold-line.visible,
.visible .gold-line {
  width: 48px;
}

/* Smooth number count */
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── HAMBURGER MENU ── */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  transition: border-color 0.3s;
  flex-shrink: 0;
}

.nav-hamburger:hover {
  border-color: var(--gold);
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  border-radius: 1px;
  transition: all 0.3s var(--ease-smooth);
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* ── MOBILE DRAWER ── */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-drawer.active {
  display: block;
}

/* Search bar inside drawer */
.mobile-drawer-search {
  position: relative;
  margin-bottom: 16px;
}

.mobile-drawer-search input {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 10px;
  padding: 12px 16px 12px 40px;
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.mobile-drawer-search input:focus {
  border-color: var(--gold);
}

.mobile-drawer-search input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.mobile-drawer-search svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.5;
}

.mobile-drawer-search .mobile-search-results {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-drawer-search .mobile-search-results a {
  padding: 10px 12px;
  border-radius: 8px;
  border-bottom: none;
  font-size: 13px;
}

.mobile-drawer-search .mobile-search-results a:hover {
  background: rgba(201, 168, 76, 0.06);
}

/* Two-column grid for nav sections */
.mobile-drawer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}

.mobile-drawer-col {
  min-width: 0;
}

.mobile-drawer a {
  display: block;
  padding: 8px 0;
  color: var(--white-dim);
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  border-bottom: none;
  transition: color 0.3s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-drawer a:hover,
.mobile-drawer a.active {
  color: var(--gold);
}

.mobile-drawer .mobile-section-title {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 14px 0 6px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  margin-bottom: 4px;
  font-weight: 500;
}

.mobile-drawer .mobile-nav-cta {
  display: block;
  text-align: center;
  padding: 12px 20px;
  margin-top: 16px;
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
  font-size: 13px;
  border-radius: 8px;
  border-bottom: none;
  white-space: nowrap;
}

.mobile-drawer .mobile-nav-cta:hover {
  color: var(--black);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .detail-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Nav */
  nav { padding: 0 16px; gap: 8px; }
  /* nav-links, nav-cta, hamburger handled by min-width:769px */
  .nav-search-btn { display: none; }
  .nav-logo .nav-wordmark { font-size: 18px; letter-spacing: 5px; text-indent: 5px; }
  .nav-logo .markhor-mark { height: 28px; }
  .nav-logo .nav-divider { height: 20px; }
  .nav-logo { gap: 8px; }

  /* Hero */
  .v-hero { padding: 100px 20px 48px; }
  .v-hero-text h1 { font-size: clamp(26px, 6vw, 36px); margin-bottom: 16px; }
  .v-hero-text p { font-size: 15px; margin-bottom: 24px; }
  .v-hero-text .label { font-size: 12px; margin-bottom: 14px; }

  /* Sections */
  .section { padding: 60px 20px; }
  .section h2 { font-size: clamp(22px, 5vw, 32px); }
  .section .subtitle { font-size: 15px; margin-bottom: 32px; }

  /* Grids */
  .detail-grid { grid-template-columns: 1fr; gap: 14px; }
  .detail-card { padding: 24px 20px; }
  .relationships { grid-template-columns: 1fr; gap: 14px; }
  .rel-card { padding: 20px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-item { padding: 24px 12px; }
  .stat-item .number { font-size: 28px; }

  /* Split & opportunity */
  .split { grid-template-columns: 1fr; gap: 32px; }
  .opportunity { flex-direction: column; padding: 24px 20px; gap: 20px; }
  .opportunity .opp-highlight { font-size: 40px; }

  /* Process */
  .process-item { padding: 20px; gap: 14px; }
  .process-item::before { font-size: 24px; min-width: 36px; }

  /* CTA */
  .cta-banner { padding: 60px 20px; }
  .cta-banner p { font-size: 15px; }

  /* Buttons */
  .btn-gold { padding: 12px 24px; font-size: 13px; }
  .btn-outline { padding: 12px 24px; font-size: 13px; }

  /* Footer */
  footer { padding: 40px 16px 24px; }
  .footer-top { flex-direction: column; margin-bottom: 24px; gap: 24px; }
  .footer-brand .footer-wordmark { font-size: 20px; letter-spacing: 5px; text-indent: 5px; }
  .footer-brand .footer-markhor { height: 36px; }
  .footer-brand p { font-size: 12px; }
  .footer-brand .footer-tagline { font-size: 11px; letter-spacing: 2px; }
  .footer-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
  }
  .footer-col h4 { font-size: 10px; margin-bottom: 10px; }
  .footer-col a { font-size: 11px; margin-bottom: 6px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
  .footer-bottom span { font-size: 11px; }
  .footer-bottom .entities { flex-direction: column; gap: 4px; }
  .footer-bottom .entities span { font-size: 10px; }

  /* Search */
  .search-overlay { padding-top: 80px; }
  .search-overlay-input { font-size: 16px; padding: 16px 20px 16px 48px; }
  .search-overlay-close { top: 20px; right: 20px; }

  /* Dropdown (shouldn't show on mobile but safety) */
  .nav-dropdown { display: none !important; }

  /* Model flow */
  .model-flow { flex-direction: column; gap: 8px; margin-bottom: 36px; }
  .model-step .arrow { transform: rotate(90deg); padding: 4px 0; }
}

@media (max-width: 480px) {
  nav { padding: 0 12px; }
  .nav-logo .nav-wordmark { font-size: 16px; letter-spacing: 4px; text-indent: 4px; }

  .v-hero { padding: 88px 16px 40px; }
  .v-hero-text h1 { font-size: 24px; }
  .v-hero-text p { font-size: 14px; }

  .section { padding: 48px 16px; }
  .section h2 { font-size: 22px; }
  .section .subtitle { font-size: 14px; margin-bottom: 24px; }

  .detail-card { padding: 20px 16px; }
  .rel-card { padding: 16px; }
  .stat-item { padding: 20px 10px; }
  .stat-item .number { font-size: 24px; }
  .stat-item .label { font-size: 11px; }

  .process-item { padding: 16px; }
  .opportunity .opp-highlight { font-size: 32px; }

  .footer-cols { gap: 16px 12px; }
  .footer-col a { font-size: 10px; margin-bottom: 4px; }
  .footer-col h4 { font-size: 9px; }
  .footer-brand .footer-wordmark { font-size: 18px; letter-spacing: 4px; }

  .cta-banner { padding: 48px 16px; }

  .model-step .step-box { padding: 10px 14px; font-size: 12px; }

  .btn-gold { padding: 11px 20px; font-size: 13px; width: 100%; justify-content: center; }
  .btn-outline { padding: 11px 20px; font-size: 13px; width: 100%; justify-content: center; }
}

/* ── WhatsApp Floating Button ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
