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

:root {
  --bg:       #ffffff;
  --prussian: #003153;
  --dark:     #0a0a0a;
  --muted:    #8a8580;
  --border:   #e8e4df;
  --serif:    'Cormorant Garamond', serif;
  --sans:     'Inter', sans-serif;
  --ease:     cubic-bezier(0.65, 0, 0.35, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--dark);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 56px;
  z-index: 200;
  transition: background 0.4s ease, padding 0.4s ease;
}

.nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  padding: 18px 56px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4px;
  text-decoration: none;
  color: var(--dark);
}

.nav-links {
  display: flex;
  gap: 48px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  transition: color 0.2s;
}

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

.nav-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-menu span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--dark);
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 56px 80px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.hero-pre {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 36px;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(72px, 10vw, 148px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 48px;
}

.hero-title em {
  font-style: italic;
  color: var(--prussian);
}

.hero-sub {
  font-size: 11px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-line {
  position: absolute;
  right: 56px;
  bottom: 80px;
  width: 1px;
  height: 80px;
  background: var(--border);
}

/* ── SECTIONS ── */
.section {
  padding: 120px 56px;
  border-bottom: 1px solid var(--border);
}

.section-dark {
  background: var(--prussian);
  border-bottom: none;
}

.section-contact {
  background: #f8f6f2;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
}

.col-label {
  margin-bottom: 72px;
}

.section-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}

.section-dark .section-label { color: rgba(255,255,255,0.35); }
.section-contact .section-label { color: var(--muted); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -1px;
}

.section-title em {
  font-style: italic;
  color: var(--prussian);
}

.section-title.light { color: white; }
.section-title.light em { color: rgba(255,255,255,0.55); }

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

.about-right p {
  font-size: 17px;
  line-height: 1.85;
  color: #555050;
  font-weight: 300;
  margin-bottom: 24px;
  max-width: 540px;
}

.about-stats {
  margin-top: 48px;
  border-top: 1px solid var(--border);
}

.stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  gap: 24px;
}

.stat-word {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--prussian);
  white-space: nowrap;
}

.stat-desc {
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--muted);
  text-align: right;
}

/* ── APPROACH ── */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 80px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.approach-item {
  padding: 48px 56px 48px 0;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.approach-item:first-child { padding-left: 0; }
.approach-item:nth-child(2) { padding-left: 56px; }
.approach-item:last-child {
  padding-left: 56px;
  padding-right: 0;
  border-right: none;
}

.approach-num {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.25);
  margin-bottom: 28px;
}

.approach-item h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 300;
  color: white;
  margin-bottom: 16px;
  line-height: 1.15;
}

.approach-item p {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
}

/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  padding: 20px 0;
  background: var(--bg);
}

.marquee-track {
  display: flex;
  gap: 48px;
  align-items: center;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}

.marquee-dot { color: var(--prussian); }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── CONTACT ── */
.contact-inner {
  max-width: 600px;
}

.contact-inner .section-title {
  margin-bottom: 24px;
}

.contact-desc {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 48px;
}

.contact-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-contact {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  background: var(--prussian);
  padding: 16px 40px;
  border: 1px solid var(--prussian);
  transition: all 0.25s ease;
}

.btn-contact:hover {
  background: transparent;
  color: var(--prussian);
}

.btn-outline {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--dark);
  background: transparent;
  padding: 16px 40px;
  border: 1px solid var(--border);
  transition: all 0.25s ease;
}

.btn-outline:hover {
  border-color: var(--dark);
}

.contact-insta {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-insta:hover { color: var(--dark); }

/* ── FOOTER ── */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 56px;
}

.footer-logo {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
}

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

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

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

/* ── MOBILE ── */
@media (max-width: 900px) {
  .nav { padding: 20px 28px; }
  .nav.scrolled { padding: 14px 28px; }
  .nav-links { display: none; }
  .nav-menu { display: flex; }

  .hero { padding: 0 28px 60px; }
  .hero-line { display: none; }

  .section { padding: 80px 28px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    border-top: none;
  }

  .approach-item {
    border-right: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 40px 0 !important;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 28px;
  }
}
