@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --deep: #041419;
  --abyss: #0a2329;
  --teal-dark: #325f63;
  --teal: #4e7e81;
  --teal-mid: #759c9c;
  --teal-light: #99b8b8;
  --mist: #bbd2d3;
  --pale: #dbedee;
  --white: #fbfdfd;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--deep);
  color: var(--pale);
  line-height: 1.7;
  font-size: 15px;
  overflow-x: hidden;
}

::selection {
  background-color: var(--teal);
  color: var(--white);
}

.nav-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 72px;
  height: 100vh;
  background-color: var(--abyss);
  border-right: 1px solid rgba(78,126,129,0.15);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 0;
  transition: width 0.35s ease;
  overflow: hidden;
}

.nav-sidebar:hover {
  width: 220px;
}

.nav-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 2rem;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
  flex: 1;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
  color: var(--teal-light);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.nav-item:hover {
  color: var(--white);
  background-color: rgba(78,126,129,0.12);
  border-left-color: var(--teal);
}

.nav-item i {
  font-size: 1.15rem;
  min-width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.nav-footer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  padding-top: 1rem;
  border-top: 1px solid rgba(78,126,129,0.12);
}

.main-content {
  margin-left: 72px;
  min-height: 100vh;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
  background: var(--deep);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(78,126,129,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-center {
  text-align: center;
  max-width: 780px;
  position: relative;
  z-index: 1;
}

.hero-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 2rem;
  box-shadow: 0 0 60px rgba(78,126,129,0.2);
}

.hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 400;
  font-style: italic;
  color: var(--teal-light);
  margin-bottom: 2.5rem;
}

.hero p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--teal-light);
  max-width: 620px;
  margin: 0 auto 1.5rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.top-bar {
  background-color: var(--abyss);
  border-bottom: 1px solid rgba(78,126,129,0.12);
  padding: 0.7rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  font-size: 0.78rem;
  color: var(--teal-light);
}

.top-bar a {
  color: var(--mist);
  text-decoration: none;
  transition: color 0.2s;
}

.top-bar a:hover {
  color: var(--white);
}

.top-bar i {
  margin-right: 0.4rem;
  color: var(--teal);
}

.disclosure-card {
  background-color: var(--abyss);
  border: 1px solid rgba(78,126,129,0.12);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.35s ease;
  margin-bottom: 1rem;
}

.disclosure-card:hover {
  border-color: rgba(78,126,129,0.3);
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.disclosure-card.expanded {
  border-color: rgba(78,126,129,0.35);
}

.disclosure-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s;
}

.disclosure-header:hover {
  background-color: rgba(78,126,129,0.06);
}

.disclosure-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--teal);
  min-width: 40px;
  text-align: center;
  line-height: 1;
}

.disclosure-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  flex: 1;
  line-height: 1.2;
}

.disclosure-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(78,126,129,0.3);
  background: transparent;
  color: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.disclosure-toggle i {
  transition: transform 0.35s ease;
  font-size: 0.85rem;
}

.disclosure-card.expanded .disclosure-toggle {
  background-color: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.disclosure-card.expanded .disclosure-toggle i {
  transform: rotate(180deg);
}

.disclosure-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease;
  opacity: 0;
}

.disclosure-card.expanded .disclosure-body {
  max-height: 3000px;
  opacity: 1;
}

.disclosure-inner {
  padding: 0 2rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.disclosure-inner.full {
  grid-template-columns: 1fr;
}

.disclosure-inner .text-col {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--teal-light);
}

.disclosure-inner .text-col p {
  margin-bottom: 1.25rem;
}

.disclosure-inner .text-col strong {
  color: var(--white);
  font-weight: 600;
}

.disclosure-inner .text-col em {
  color: var(--mist);
}

.content-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.35rem 0.8rem;
  background-color: rgba(78,126,129,0.15);
  color: var(--teal-light);
  border-radius: 3px;
  margin-bottom: 1.25rem;
}

.section-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}

.section-list li {
  padding: 0.65rem 0 0.65rem 1.5rem;
  position: relative;
  border-bottom: 1px solid rgba(78,126,129,0.1);
  font-size: 0.9rem;
  line-height: 1.6;
}

.section-list li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--teal);
}

.disclosure-img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.img-caption {
  font-size: 0.72rem;
  color: var(--teal-mid);
  font-style: italic;
  margin-top: 0.5rem;
}

.quote-block {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
  color: var(--white);
  border-left: 3px solid var(--teal);
  padding-left: 1.25rem;
  margin: 2rem 0;
}

.section-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--teal);
  margin-bottom: 1rem;
}

.glow-line {
  height: 1px;
  background: rgba(78,126,129,0.15);
  margin: 0;
}

.btn-glow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.85rem 2rem;
  border: 1px solid var(--teal);
  color: var(--teal-light);
  background: transparent;
  text-decoration: none;
  border-radius: 3px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-glow:hover {
  background-color: var(--teal);
  color: var(--white);
  box-shadow: 0 0 25px rgba(78,126,129,0.25);
}

.btn-glow-solid {
  background-color: var(--teal);
  color: var(--white);
}

.btn-glow-solid:hover {
  background-color: var(--teal-dark);
  border-color: var(--teal-dark);
}

.page-footer {
  background-color: var(--abyss);
  border-top: 1px solid rgba(78,126,129,0.12);
  padding: 4rem 2rem 2rem;
}

.footer-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.footer-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--teal-light);
  max-width: 700px;
}

.footer-text strong {
  color: var(--white);
}

.footer-text a {
  color: var(--mist);
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (max-width: 991px) {
  .nav-sidebar {
    width: 100%;
    height: auto;
    position: fixed;
    top: auto;
    bottom: 0;
    flex-direction: row;
    padding: 0.5rem;
    border-right: none;
    border-top: 1px solid rgba(78,126,129,0.15);
    justify-content: center;
    gap: 0.25rem;
  }

  .nav-sidebar:hover {
    width: 100%;
  }

  .nav-logo,
  .nav-footer {
    display: none;
  }

  .nav-links {
    flex-direction: row;
    justify-content: center;
    gap: 0;
  }

  .nav-item {
    padding: 0.5rem 0.75rem;
    border-left: none;
    border-bottom: 2px solid transparent;
  }

  .nav-item:hover {
    border-left-color: transparent;
    border-bottom-color: var(--teal);
  }

  .nav-item span {
    display: none;
  }

  .main-content {
    margin-left: 0;
    margin-bottom: 60px;
  }

  .disclosure-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 6rem 1.5rem;
  }

  .top-bar {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    padding: 0.7rem 1rem;
  }
}

@media (max-width: 576px) {
  .disclosure-header {
    padding: 1.25rem 1.25rem;
  }

  .disclosure-inner {
    padding: 0 1.25rem 1.5rem;
  }

  .disclosure-title {
    font-size: 1.25rem;
  }

  .disclosure-number {
    font-size: 1.5rem;
  }
}
