:root {
  --bg:        #0c0c10;
  --bg-mid:    #111118;
  --border:    rgba(255,255,255,0.07);
  --gold:      #b89a5a;
  --gold-pale: #d4b97a;
  --text:      #c8c8d4;
  --text-dim:  #6a6a7a;
  --white:     #e8e8f0;
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

a { color: inherit; text-decoration: none; }

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  background: linear-gradient(to bottom, rgba(12,12,16,0.97), transparent);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.15rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.nav-links a { transition: color 0.3s; }
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 680px) {
  nav {
    padding: 20px 24px;
    background: rgba(12,12,16,0.98);
    flex-wrap: wrap;
    align-items: center;
  }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 8px 0 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links li {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { font-size: 0.9rem; color: var(--text); }
}

/* SECTIONS */
.page-body {
  flex: 1;
  padding-top: 120px;
}

section {
  padding: 80px 24px 120px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-label::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

/* PAGE HERO (inner pages) */
.page-hero {
  padding: 60px 60px 0;
  max-width: 1100px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
  padding-bottom: 60px;
}

.page-hero-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1.1;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 760px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

.about-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.25;
}

.about-body {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.9;
}

.about-body p + p { margin-top: 1.4em; }

/* DIVIDER */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  max-width: 1100px;
  margin: 0 auto;
}

/* INTERESTS */
.interests-intro {
  max-width: 560px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 80px;
}

.interests-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
}

.interest-card {
  background: var(--bg-mid);
  padding: 48px 36px;
  border: 1px solid var(--border);
  transition: border-color 0.4s, background 0.4s;
  cursor: default;
}

.interest-card:hover {
  border-color: rgba(184,154,90,0.25);
  background: #14141c;
}

.interest-number {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 24px;
}

.interest-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 16px;
}

.interest-body {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.8;
}

/* PRINCIPLES */
.principles-section {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 120px 24px;
}

.principles-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 60px;
}

@media (max-width: 760px) {
  .principles-grid { grid-template-columns: 1fr; gap: 40px; }
}

.principle-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
}

.principle-body {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.9;
}

/* CONTACT */
.contact-section {
  text-align: center;
  padding: 100px 24px 160px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 24px;
}

.contact-sub {
  font-size: 0.85rem;
  color: var(--text-dim);
  max-width: 400px;
  margin: 0 auto 56px;
  line-height: 1.8;
}

.contact-note {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--border);
  display: inline-block;
  padding: 16px 32px;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 680px) {
  footer { flex-direction: column; text-align: center; padding: 40px 24px; }
}

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--white);
}

.footer-right {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: right;
}

@media (max-width: 680px) {
  .footer-right { text-align: center; }
}
