/* ─────────────────────────────────────────
   RESET & SYSTEM VARIABLE SYSTEM (DESIGN TOKENS)
   ──────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-natural:   #FAF7F2; /* Warm, rich cashmere background */
  --ink-deep:     #2D2926; /* Soft espresso black */
  --ink-medium:   #544E48; /* Medium warm charcoal-grey */
  --ink-light:    #8C847C; /* Soft taupe-grey */
  --terra-warm:   #C5A880; /* Elegant matte gold */
  --terra-light:  #D9BA90; /* Warm champagne gold */
  --sage-muted:   #B5945B; /* Rich antique gold */
  --sage-light:   #FAF3E3; /* Warm milk-ivory */
  --sand-light:   #EDE9E2; /* Soft sand cashmere */
  --sand-medium:  #DFD9CE; /* Medium sand cashmere */
  --white-ivory:  #FFFDFB; /* Warm alabaster */
  --glass-bg:     rgba(250, 247, 242, 0.94);
  --shadow-sm:    0 4px 20px rgba(45, 41, 38, 0.02);
  --shadow-md:    0 20px 50px rgba(45, 41, 38, 0.06);
  --shadow-lg:    0 30px 70px rgba(197, 168, 128, 0.15);
  --transition:   all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --font-serif:   'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-natural);
  color: var(--ink-deep);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   TYPOGRAPHY & BRAND ELEMENTS
   ──────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

.editorial-badge {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--terra-warm);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.editorial-badge::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background-color: var(--terra-warm);
}

.serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

/* ─────────────────────────────────────────
   NAV HEADER
   ──────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8%;
  background-color: transparent;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

#nav.shrink {
  height: 60px;
  background-color: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sand-light);
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink-deep);
}

.nav-logo span {
  font-weight: 300;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--terra-warm);
}

.nav-links {
  list-style: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 999;
}

.nav-links.active {
  opacity: 1;
  visibility: visible;
}

.nav-links a {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 500;
  color: var(--ink-deep);
  letter-spacing: 0.02em;
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: var(--terra-warm);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--terra-warm);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-cta {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 20px;
  background-color: var(--ink-deep);
  color: var(--white-ivory);
  border: 1px solid var(--ink-deep);
  transition: var(--transition);
}

.nav-cta:hover {
  background-color: transparent;
  color: var(--ink-deep);
  border-color: var(--ink-deep);
}

.menu-toggle {
  display: flex;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  width: 32px;
  height: 24px;
  justify-content: center;
  padding: 0;
  z-index: 1001;
}

.menu-toggle .bar {
  width: 100%;
  height: 1.5px;
  background-color: var(--ink-deep);
  transition: var(--transition);
}

.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(3.75px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
  transform: translateY(-3.75px) rotate(-45deg);
}

/* ─────────────────────────────────────────
   HERO MANIFESTO SECTION
   ──────────────────────────────────────── */
.hero-manifesto {
  padding: 180px 8% 100px 8%;
  background-color: var(--white-ivory);
  border-bottom: 1px solid var(--sand-light);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  width: 100%;
  max-width: 440px;
  border: 1px solid var(--sand-medium);
  padding: 10px 20px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-medium);
  margin-bottom: 30px;
  background-color: var(--white-ivory);
}

.manifesto-title {
  font-size: 54px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink-deep);
  margin-bottom: 36px;
  line-height: 1.1;
}

.manifesto-title-sub {
  display: block;
  font-size: 26px;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-medium);
  margin-top: 16px;
  line-height: 1.3;
}

.manifesto-essay {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-medium);
  margin-bottom: 40px;
}

.manifesto-essay p {
  margin-bottom: 20px;
}

.essay-highlight {
  border-left: 2px solid var(--terra-warm);
  padding-left: 24px;
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--ink-deep);
  line-height: 1.7;
}

.manifesto-actions {
  display: flex;
  gap: 24px;
  align-items: center;
}

.manifesto-btn-primary {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px 36px;
  background-color: var(--terra-warm);
  color: var(--white-ivory);
  border: 1px solid var(--terra-warm);
  transition: var(--transition);
}

.manifesto-btn-primary:hover {
  background-color: transparent;
  color: var(--terra-warm);
  box-shadow: var(--shadow-sm);
}

.manifesto-btn-secondary {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-medium);
  border-bottom: 1px solid var(--sand-medium);
  padding-bottom: 4px;
}

.manifesto-btn-secondary:hover {
  color: var(--ink-deep);
  border-color: var(--ink-deep);
}

.editorial-portrait-frame {
  position: relative;
  background-color: var(--bg-natural);
  padding: 24px;
  border: 1px solid var(--sand-light);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.editorial-portrait-frame:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.manifesto-photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 15%;
  border: 1px solid rgba(197, 168, 128, 0.2);
}

.manifesto-svg {
  width: 100%;
  height: 520px;
  background-color: var(--sand-light);
}

.portrait-watermark {
  position: absolute;
  top: 40px;
  right: -20px;
  font-family: var(--font-sans);
  font-size: 60px;
  font-weight: 900;
  color: var(--white-ivory);
  opacity: 0.35;
  letter-spacing: 0.15em;
  transform: rotate(90deg);
  transform-origin: right top;
  pointer-events: none;
}

.portrait-caption {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--sand-medium);
  padding-top: 16px;
}

.caption-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-deep);
}

.caption-title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-light);
}

/* ─────────────────────────────────────────
   BLOCK 1: HONEST DIALOGUES (ABOUT ME)
   ──────────────────────────────────────── */
.honest-dialogues {
  padding: 120px 8%;
  background-color: var(--bg-natural);
  border-bottom: 1px solid var(--sand-light);
}

.dialogues-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.dialogues-intro {
  position: sticky;
  top: 140px;
  height: fit-content;
}

.dialogues-heading {
  font-size: 42px;
  font-weight: 500;
  color: var(--ink-deep);
  margin-bottom: 24px;
  line-height: 1.2;
}

.dialogues-lead {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-medium);
  margin-bottom: 40px;
}

.signature-block {
  margin-top: 50px;
  padding-top: 36px;
  border-top: 1px solid var(--sand-medium);
}

.signature-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-deep);
  margin-bottom: 16px;
}

.signature-author {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--terra-warm);
}

.dialogues-qa {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dialogue-qa-card {
  background-color: var(--white-ivory);
  border: 1px solid var(--sand-light);
  padding: 24px 30px;
  cursor: pointer;
  transition: var(--transition);
}

.dialogue-qa-card:hover {
  border-color: var(--terra-warm);
  box-shadow: var(--shadow-sm);
}

.qa-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.qa-num {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--terra-warm);
  font-weight: 600;
}

.qa-title {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-deep);
  flex: 1;
}

.qa-icon {
  font-size: 20px;
  color: var(--terra-warm);
  transition: var(--transition);
  font-weight: 300;
}

.qa-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding-top: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-medium);
}

.qa-body p {
  padding-top: 16px;
}

.dialogue-qa-card.active {
  border-color: var(--terra-warm);
  background-color: var(--white-ivory);
  box-shadow: var(--shadow-sm);
}

.dialogue-qa-card.active .qa-icon {
  transform: rotate(45deg);
  color: var(--ink-deep);
}

.dialogue-qa-card.active .qa-body {
  max-height: 200px;
  opacity: 1;
}

/* ─────────────────────────────────────────
   BLOCK 2: STATE NAVIGATOR (RESONANCE)
   ──────────────────────────────────────── */
.state-navigator {
  padding: 120px 8%;
  background-color: var(--white-ivory);
  border-bottom: 1px solid var(--sand-light);
}

.navigator-header {
  max-width: 800px;
  margin-bottom: 60px;
}

.navigator-heading {
  font-size: 42px;
  font-weight: 500;
  color: var(--ink-deep);
  margin-bottom: 20px;
}

.navigator-sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-medium);
}

.navigator-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: flex-start;
}

.navigator-menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nav-state-btn {
  background: transparent;
  border: 1px solid var(--sand-light);
  padding: 24px 30px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
  border-radius: 4px;
}

.nav-state-btn:hover {
  border-color: var(--terra-warm);
  background-color: var(--bg-natural);
}

.state-btn-dot {
  width: 6px;
  height: 6px;
  background-color: var(--sand-medium);
  border-radius: 50%;
  transition: var(--transition);
}

.state-btn-text {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-medium);
  line-height: 1.4;
  transition: var(--transition);
}

.nav-state-btn.active {
  background-color: var(--bg-natural);
  border-color: var(--terra-warm);
  box-shadow: var(--shadow-sm);
}

.nav-state-btn.active .state-btn-dot {
  background-color: var(--terra-warm);
  box-shadow: 0 0 10px rgba(197, 168, 128, 0.8);
  transform: scale(1.5);
}

.nav-state-btn.active .state-btn-text {
  color: var(--ink-deep);
}

.resonance-canvas {
  background-color: var(--bg-natural);
  border: 1px solid var(--sand-light);
  padding: 50px;
  box-shadow: var(--shadow-md);
  position: relative;
  min-height: 480px;
}

.resonance-slide {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.resonance-slide.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.slide-badge {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--terra-warm);
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 16px;
}

.slide-title {
  font-size: 28px;
  font-family: var(--font-serif);
  color: var(--ink-deep);
  margin-bottom: 20px;
  line-height: 1.3;
}

.slide-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-medium);
  margin-bottom: 30px;
}

.slide-methodology {
  border-top: 1px solid var(--sand-medium);
  padding-top: 24px;
  margin-bottom: 36px;
}

.methods-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-deep);
  margin-bottom: 16px;
}

.methods-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.methods-list li {
  font-size: 13px;
  color: var(--ink-medium);
  position: relative;
  padding-left: 16px;
  line-height: 1.6;
}

.methods-list li::before {
  content: '✦';
  color: var(--terra-warm);
  font-size: 10px;
  position: absolute;
  left: 0;
  top: 2px;
}

.methods-list li span {
  font-weight: 600;
  color: var(--ink-deep);
}

.slide-cta-btn {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 15px 30px;
  background-color: var(--ink-deep);
  color: var(--white-ivory);
  border: 1px solid var(--ink-deep);
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
}

.slide-cta-btn:hover {
  background-color: transparent;
  color: var(--ink-deep);
}

/* ─────────────────────────────────────────
   BLOCK 3: VECTORS OF PRACTICE
   ──────────────────────────────────────── */
.vectors-practice {
  padding: 120px 8%;
  background-color: var(--bg-natural);
  border-bottom: 1px solid var(--sand-light);
}

.vectors-header {
  max-width: 800px;
  margin-bottom: 80px;
}

.vectors-heading {
  font-size: 42px;
  font-weight: 500;
  color: var(--ink-deep);
  margin-bottom: 20px;
}

.vectors-sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-medium);
}

.vectors-catalog {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.vector-card {
  background-color: var(--white-ivory);
  border: 1px solid var(--sand-light);
  display: grid;
  grid-template-columns: 180px 1fr;
  padding: 50px 60px;
  position: relative;
  transition: var(--transition);
}

.vector-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--terra-warm);
}

.vector-visual-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.vector-number {
  font-family: var(--font-serif);
  font-size: 48px;
  font-style: italic;
  color: var(--terra-warm);
  line-height: 1;
  font-weight: 300;
}

.vector-line {
  width: 1px;
  height: 80px;
  background-color: var(--sand-medium);
  margin-top: 20px;
}

.vector-content-col {
  display: flex;
  flex-direction: column;
}

.vector-tag {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--terra-warm);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.vector-title {
  font-size: 28px;
  color: var(--ink-deep);
  margin-bottom: 20px;
}

.vector-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-medium);
  margin-bottom: 30px;
  max-width: 800px;
}

.vector-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
}

.vector-specs li {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  background-color: var(--bg-natural);
  color: var(--ink-deep);
  padding: 10px 20px;
  border: 1px solid var(--sand-light);
  cursor: pointer;
  transition: var(--transition);
}

.vector-specs li:hover {
  border-color: var(--terra-warm);
  background-color: var(--white-ivory);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────
   BLOCK 4: STANDARDS & CERTIFICATE VAULT
   ──────────────────────────────────────── */
.standards-vault {
  padding: 120px 8%;
  background-color: var(--white-ivory);
  border-bottom: 1px solid var(--sand-light);
}

.standards-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.standards-left, .standards-right {
  min-width: 0;
}

.standards-left {
  max-width: 540px;
}

.standards-title {
  font-size: 42px;
  font-weight: 500;
  color: var(--ink-deep);
  margin-bottom: 24px;
}

.standards-lead {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-medium);
  margin-bottom: 40px;
}

.pillar-row {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.pillar-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--sage-light);
  border: 1px solid var(--terra-warm);
  color: var(--terra-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
}

.pillar-details {
  display: flex;
  flex-direction: column;
}

.pillar-title {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-deep);
  margin-bottom: 8px;
}

.pillar-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-medium);
}

.diplomas-drawer-container {
  background-color: var(--bg-natural);
  border: 1px solid var(--sand-light);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.drawer-header {
  border-bottom: 1px solid var(--sand-medium);
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.drawer-heading {
  font-size: 20px;
  font-family: var(--font-serif);
  color: var(--ink-deep);
  margin-bottom: 8px;
}

.drawer-subtitle {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--ink-light);
}

.certs-catalog-flex {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 20px;
  scrollbar-width: none; /* Hide standard Firefox scrollbar */
  width: 100%;
  max-width: 452px; /* Show exactly 3 cards and enable scrolling carousel feel */
  margin: 0 auto;
}

.certs-catalog-flex::-webkit-scrollbar {
  display: none; /* Hide Chrome scrollbar */
}

.cert-item-card {
  flex: 0 0 140px;
  width: 140px !important;
  height: 230px !important;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.cert-item-card:hover {
  transform: translateY(-5px) scale(1.02);
}

.cert-svg-box {
  width: 140px;
  height: 190px;
  box-shadow: var(--shadow-sm);
  border-radius: 4px;
}

.cert-img-box {
  width: 140px !important;
  height: 190px !important;
  max-width: 140px !important;
  max-height: 190px !important;
  object-fit: contain;
  box-shadow: var(--shadow-sm);
  border-radius: 4px;
  border: 1px solid var(--sand-light);
  background-color: var(--white-ivory);
  transition: var(--transition);
  display: block;
}

.cert-label {
  margin-top: 12px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  color: var(--ink-medium);
}

.drawer-navigation {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
}

.drawer-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--sand-medium);
  background: var(--white-ivory);
  color: var(--ink-deep);
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  padding: 0;
  line-height: 1;
}

.drawer-btn:hover {
  border-color: var(--terra-warm);
  background-color: var(--bg-natural);
  color: var(--terra-warm);
}

/* ─────────────────────────────────────────
   BLOCK 5: SERVICES & CABINET (PRICE LEDGER)
   ──────────────────────────────────────── */
.services-cabinet {
  padding: 120px 8%;
  background-color: var(--bg-natural);
  border-bottom: 1px solid var(--sand-light);
}

.services-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
}

.ledger-column {
  display: flex;
  flex-direction: column;
}

.ledger-heading {
  font-size: 42px;
  font-weight: 500;
  color: var(--ink-deep);
  margin-bottom: 24px;
}

.ledger-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-medium);
  margin-bottom: 40px;
}

.price-ledger {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ledger-item {
  border-bottom: 1px solid var(--sand-medium);
  padding-bottom: 16px;
}

.ledger-top-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  transition: var(--transition);
}

.ledger-top-row:hover .ledger-title {
  color: var(--terra-warm);
}

.ledger-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.6s;
}

.ledger-item.active .ledger-details {
  max-height: 400px;
  padding-top: 16px;
}

.ledger-title {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-deep);
  transition: var(--transition);
}

.ledger-dots {
  flex: 1;
  border-bottom: 1px dotted var(--sand-medium);
  height: 1px;
}

.ledger-cost {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink-deep);
  display: flex;
  align-items: center;
}

.ledger-icon {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: 300;
  margin-right: 14px;
  color: var(--terra-warm);
  transition: var(--transition);
}

.ledger-item.active .ledger-icon {
  transform: rotate(45deg);
}

.ledger-sub-text {
  font-size: 13.5px;
  color: var(--ink-light);
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 90%;
}

.ledger-book-btn {
  background: transparent;
  border: 1px solid var(--sand-medium);
  padding: 8px 18px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-medium);
  cursor: pointer;
  transition: var(--transition);
}

.ledger-book-btn:hover {
  border-color: var(--terra-warm);
  background-color: var(--white-ivory);
  color: var(--terra-warm);
}

.sanctuary-column {
  background-color: var(--white-ivory);
  border: 1px solid var(--sand-light);
  padding: 50px;
  box-shadow: var(--shadow-md);
}

.sanctuary-title {
  font-size: 32px;
  font-weight: 500;
  color: var(--ink-deep);
  margin-bottom: 24px;
}

.sanctuary-lead {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-medium);
  margin-bottom: 30px;
}

.sanctuary-specifications {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.sanctuary-specifications p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-medium);
}

.view-gallery-btn {
  width: 100%;
  padding: 16px 24px;
  background-color: var(--bg-natural);
  border: 1px solid var(--sand-medium);
  color: var(--ink-deep);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  margin-bottom: 40px;
}

.view-gallery-btn:hover {
  border-color: var(--terra-warm);
  background-color: var(--white-ivory);
  color: var(--terra-warm);
}

.sanctuary-mini-frame {
  border: 1px solid var(--sand-light);
  padding: 8px;
  background-color: var(--bg-natural);
}

.sanctuary-svg-frame {
  display: block;
}

/* ─────────────────────────────────────────
   BLOCK 6: CONVERSATIONAL BOOKING LOUNGE
   ──────────────────────────────────────── */
.booking-lounge-section {
  padding: 120px 8%;
  background-color: var(--white-ivory);
  border-bottom: 1px solid var(--sand-light);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.booking-intro, .booking-form-wrapper {
  min-width: 0;
}

.booking-intro {
  max-width: 500px;
}

.booking-heading {
  font-size: 42px;
  font-weight: 500;
  color: var(--ink-deep);
  margin-bottom: 24px;
}

.booking-lead {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-medium);
  margin-bottom: 40px;
}

.booking-alternative-contacts {
  border-top: 1px solid var(--sand-medium);
  padding-top: 36px;
}

.contacts-title {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-deep);
  margin-bottom: 20px;
}

.direct-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.direct-contact-btn {
  padding: 14px 24px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: var(--transition);
  text-align: center;
}

.direct-contact-btn.telegram {
  background-color: #E2ECF5;
  color: #1A5A96;
  border: 1px solid #C0D6EB;
}

.direct-contact-btn.telegram:hover {
  background-color: #1A5A96;
  color: #FFFFFF;
}

.direct-contact-btn.whatsapp {
  background-color: #E6F3EE;
  color: #1B7A57;
  border: 1px solid #C2E3D6;
}

.direct-contact-btn.whatsapp:hover {
  background-color: #1B7A57;
  color: #FFFFFF;
}

.direct-email-address {
  font-size: 13.5px;
  color: var(--ink-medium);
}

.email-link {
  font-weight: 600;
  color: var(--ink-deep);
  border-bottom: 1px solid var(--sand-medium);
  padding-bottom: 2px;
  margin-left: 6px;
}

.email-link:hover {
  border-color: var(--ink-deep);
}

.booking-form-wrapper {
  background-color: var(--bg-natural);
  padding: 4px;
  border: 1px solid var(--sand-light);
  box-shadow: var(--shadow-md);
}

.conversational-card {
  background-color: var(--white-ivory);
  border: 1px solid var(--sand-light);
  padding: 50px;
}

.conversational-heading {
  font-size: 24px;
  font-family: var(--font-serif);
  color: var(--ink-deep);
  margin-bottom: 36px;
  border-bottom: 1px solid var(--sand-medium);
  padding-bottom: 16px;
}

.conversational-form {
  display: flex;
  flex-direction: column;
}

.conversational-sentence {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 2;
  color: var(--ink-deep);
  margin-bottom: 40px;
  word-spacing: 0.05em;
}

.inline-input-wrapper {
  display: inline-block;
  position: relative;
  margin: 0 4px;
}

.inline-input {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--sand-medium);
  color: var(--terra-warm);
  padding: 0 8px;
  outline: none;
  width: 200px;
  transition: var(--transition);
}

.inline-input::placeholder {
  color: var(--ink-light);
  font-size: 20px;
  opacity: 0.6;
}

.inline-input:focus {
  border-bottom-color: var(--terra-warm);
  background-color: var(--bg-natural);
}

/* Adjust wrapper widths for dynamic alignment */
.name-wrapper .inline-input {
  width: 160px;
}

.message-wrapper .inline-input {
  width: 320px;
}

.phone-wrapper .inline-input {
  width: 220px;
}

.inline-select {
  font-family: var(--font-serif);
  font-size: 21px;
  font-style: italic;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--sand-medium);
  color: var(--terra-warm);
  padding: 0 4px;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.inline-select:focus {
  border-bottom-color: var(--terra-warm);
  background-color: var(--bg-natural);
}

.select-wrapper::after {
  content: '▼';
  font-size: 9px;
  color: var(--sand-medium);
  position: absolute;
  right: 6px;
  bottom: 14px;
  pointer-events: none;
}

.form-bottom-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.btn-submit {
  width: 100%;
  padding: 18px 30px;
  background-color: var(--ink-deep);
  color: var(--white-ivory);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid var(--ink-deep);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-submit:hover {
  background-color: transparent;
  color: var(--ink-deep);
}

.btn-submit:disabled {
  background-color: var(--sand-medium);
  border-color: var(--sand-medium);
  color: var(--ink-light);
  cursor: not-allowed;
}

.form-feedback-message {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  padding: 14px 20px;
  border-radius: 4px;
  display: none;
}

.form-feedback-message.success {
  background-color: #E6F3EE;
  color: #1B7A57;
  border: 1px solid #C2E3D6;
}

.form-feedback-message.error {
  background-color: #F9EBEB;
  color: #A94442;
  border: 1px solid #EBCCD1;
}

.conversational-privacy {
  font-family: var(--font-sans);
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--ink-light);
}

/* ─────────────────────────────────────────
   FOOTER
   ──────────────────────────────────────── */
footer {
  padding: 80px 8% 40px 8%;
  background-color: var(--ink-deep);
  color: var(--white-ivory);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 40px;
  margin-bottom: 30px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--white-ivory);
}

.footer-logo span {
  font-style: italic;
  font-weight: 300;
  color: var(--terra-warm);
}

.footer-nav {
  display: flex;
  gap: 30px;
}

.footer-nav a {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.footer-nav a:hover {
  color: var(--white-ivory);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.footer-design {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terra-warm);
}

.footer-dev {
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, 0.4);
}

.footer-dev a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: var(--transition);
}

.footer-dev a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ─────────────────────────────────────────
   LOCATION DISPLAY FOR SANCTUARY CABINET
   ──────────────────────────────────────── */
.sanctuary-locations {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

.sanctuary-location-item {
  border-left: 2px solid var(--terra-warm);
  padding-left: 20px;
  transition: var(--transition);
}

.sanctuary-location-item:hover {
  border-left-color: var(--sage-muted);
  transform: translateX(4px);
}

.sanctuary-location-item h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-deep);
  margin-bottom: 8px;
}

.sanctuary-location-item p {
  font-size: 13.5px;
  color: var(--ink-medium);
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   REVEAL ON SCROLL EFFECTS
   ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ──────────────────────────────────────── */
@media (min-width: 992px) {
  .ledger-icon {
    display: none;
  }
  .ledger-details {
    max-height: none !important;
    overflow: visible;
    padding-top: 16px;
  }
  .ledger-top-row {
    cursor: default;
  }
  .ledger-top-row:hover .ledger-title {
    color: var(--ink-deep);
  }
}

@media (max-width: 1200px) {
  #nav {
    padding: 0 5%;
  }
  .hero-manifesto, .honest-dialogues, .state-navigator, .vectors-practice, .standards-vault, .services-cabinet, .booking-lounge-section, footer {
    padding-left: 5%;
    padding-right: 5%;
  }
  .manifesto-grid {
    gap: 40px;
  }
  .manifesto-title {
    font-size: 46px;
  }
  .dialogues-grid {
    gap: 60px;
  }
}

@media (max-width: 991px) {
  #nav {
    height: 80px;
  }
  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .manifesto-right {
    max-width: 500px;
    margin: 0 auto;
  }
  .dialogues-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .dialogues-intro {
    position: static;
  }
  .navigator-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .resonance-canvas {
    min-height: auto;
    padding: 40px;
  }
  .vector-card {
    grid-template-columns: 1fr;
    padding: 40px;
    gap: 20px;
  }
  .vector-visual-col {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  .vector-line {
    width: 80px;
    height: 1px;
    margin-top: 0;
  }
  .standards-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 767px) {

  
  .nav-cta {
    display: none;
  }
  
  .hero-manifesto {
    padding-top: 130px;
    padding-bottom: 70px;
  }
  
  .honest-dialogues, .state-navigator, .vectors-practice, .standards-vault, .services-cabinet, .booking-lounge-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  
  .manifesto-title {
    font-size: 34px;
  }
  .manifesto-title-sub {
    font-size: 19px;
  }
  .manifesto-photo, .manifesto-svg {
    height: 380px;
  }
  .dialogues-heading, .navigator-heading, .vectors-heading, .standards-title, .ledger-heading, .booking-heading {
    font-size: 30px;
  }
  .conversational-card {
    padding: 30px 20px;
  }
  .sanctuary-column, .diplomas-drawer-container {
    padding: 35px 24px;
  }
  .portrait-watermark {
    display: none !important;
  }

  .dialogue-qa-card {
    padding: 20px 24px;
  }

  .nav-state-btn {
    padding: 16px 20px;
  }

  .resonance-canvas {
    padding: 30px 24px;
  }

  .vector-card {
    padding: 30px 24px;
  }

  .vector-specs li {
    padding: 8px 14px;
  }

  .ledger-book-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }

  .conversational-sentence {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  .inline-input-wrapper {
    display: block;
    width: 100% !important;
    margin: 4px 0 10px 0;
  }

  .inline-input, .inline-select {
    display: block;
    width: 100% !important;
    font-size: 18px;
    padding: 10px 0;
    border-bottom: 1.5px solid var(--sand-medium);
  }

  .name-wrapper .inline-input,
  .message-wrapper .inline-input,
  .phone-wrapper .inline-input {
    width: 100% !important;
  }

  .select-wrapper::after {
    bottom: 14px;
    right: 8px;
  }
  
  .hero-slider-btn {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  
  .hero-slider-dots {
    bottom: 12px;
  }

  .portrait-caption {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .punct {
    display: none;
  }

  .footer-top {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
  .footer-nav {
    flex-direction: column;
    gap: 15px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/* ─────────────────────────────────────────
   TINY MOBILE SCREEN ADAPTATIONS
   ──────────────────────────────────────── */
@media (max-width: 480px) {
  .ledger-top-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .ledger-dots {
    display: none !important;
  }

  .ledger-cost {
    font-size: 18px;
    margin-top: 4px;
  }
}

/* ─────────────────────────────────────────
   13. HERO SLIDER PREMIUM CAROUSEL
   ──────────────────────────────────────── */
.hero-slider-container {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  border: 1px solid rgba(197, 168, 128, 0.2);
}

.hero-slides-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.8s;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Elegant control buttons */
.hero-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(250, 247, 242, 0.85);
  border: 1px solid var(--sand-medium);
  color: var(--ink-deep);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 999 !important;
  padding: 0;
  line-height: 1;
  user-select: none;
  backdrop-filter: blur(4px);
}

.hero-slider-btn:hover {
  background-color: var(--white-ivory);
  border-color: var(--terra-warm);
  color: var(--terra-warm);
  box-shadow: var(--shadow-sm);
}

.hero-slider-btn.prev {
  left: 16px;
}

.hero-slider-btn.next {
  right: 16px;
}

.hero-slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 999 !important;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(250, 247, 242, 0.5);
  border: 1px solid rgba(45, 41, 38, 0.2);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot:hover {
  background-color: rgba(250, 247, 242, 0.9);
}

.hero-dot.active {
  background-color: var(--terra-warm);
  border-color: var(--terra-warm);
  transform: scale(1.25);
  box-shadow: 0 0 8px rgba(197, 168, 128, 0.6);
}

@media (max-width: 576px) {
  .hero-slider-container {
    height: 380px;
  }
}

