
:root{
  --navy:#0F2D52;
  --navy-dark:#071B31;
  --ink:#101522;
  --muted:#646B78;
  --line:#E4E8EE;
  --paper:#FFFFFF;
  --soft:#F7F8FA;
  --max:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Arial,sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.55;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  padding:24px 5vw;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(15,45,82,.1);
}
.logo{
  font-size:14px;
  letter-spacing:.1em;
  font-weight:900;
  color:var(--navy);
}
.nav{display:flex;align-items:center;gap:32px}
.nav a{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:900;
  color:var(--navy);
  padding-bottom:5px;
  border-bottom:1px solid transparent;
}
.nav a:hover,.nav a.active{border-color:var(--navy)}
.mobile-toggle{display:none;color:var(--navy);font-size:22px;font-weight:900}

/* Hero */
.hero{
  display:grid;
  grid-template-columns:minmax(0,52%) minmax(0,48%);
  min-height:calc(100vh - 73px);
  background:#fff;
  border-bottom:1px solid var(--line);
  overflow:hidden;
}
.hero-copy-block{
  padding:8vw 5vw 7vw;
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-width:0;
}
.eyebrow{
  color:var(--navy);
  font-size:12px;
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.hero h1{
  font-family:Georgia,'Times New Roman',serif;
  color:var(--navy);
  font-weight:600;
  font-size:clamp(60px,5.2vw,104px);
  line-height:.9;
  letter-spacing:-.055em;
  margin:30px 0 0;
  max-width:100%;
}
.hero-positioning{
  margin-top:42px;
  max-width:700px;
  font-size:clamp(26px,2.05vw,38px);
  font-weight:900;
  line-height:1.15;
  letter-spacing:-.04em;
}
.hero-description{
  margin-top:28px;
  max-width:680px;
  color:var(--muted);
  font-size:18px;
  line-height:1.7;
}
.actions{
  margin-top:42px;
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  min-width:190px;
  padding:16px 28px;
  border:1px solid var(--navy);
  background:var(--navy);
  color:#fff;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.13em;
  font-weight:900;
}
.btn.secondary,.btn.light{
  background:transparent;
  color:var(--navy);
}
.hero-image{
  position:relative;
  min-height:calc(100vh - 73px);
  overflow:hidden;
  background:#EEF1F5;
  border-left:1px solid var(--line);
}
.hero-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center center;
  opacity:0;
  transform:scale(1.025);
  animation:fadeHero 32s infinite ease-in-out;
}
.hero-slide:nth-child(1){background-image:url('../images/hero/hero-01.jpg');animation-delay:0s}
.hero-slide:nth-child(2){background-image:url('../images/hero/hero-02.jpg');animation-delay:8s}
.hero-slide:nth-child(3){background-image:url('../images/hero/hero-03.jpg');animation-delay:16s}
.hero-slide:nth-child(4){background-image:url('../images/hero/hero-04.jpg');animation-delay:24s}
@keyframes fadeHero{
  0%{opacity:0;transform:scale(1.025)}
  6%{opacity:1}
  25%{opacity:1}
  33%{opacity:0;transform:scale(1)}
  100%{opacity:0}
}
.hero-dots{
  position:absolute;
  left:36px;
  bottom:30px;
  display:flex;
  gap:10px;
  z-index:4;
}
.hero-dots span{
  width:36px;
  height:2px;
  background:rgba(255,255,255,.55);
}
.hero-dots span:nth-child(1){animation:dotPulse 32s infinite}
.hero-dots span:nth-child(2){animation:dotPulse 32s infinite 8s}
.hero-dots span:nth-child(3){animation:dotPulse 32s infinite 16s}
.hero-dots span:nth-child(4){animation:dotPulse 32s infinite 24s}
@keyframes dotPulse{
  0%,31%,100%{background:rgba(255,255,255,.45)}
  6%,25%{background:#fff}
}

/* Sections */
.section{
  max-width:var(--max);
  margin:0 auto;
  padding:105px 5vw;
}
.section.soft{
  max-width:none;
  background:var(--soft);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section-inner{max-width:var(--max);margin:0 auto}
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:30px;
  margin-bottom:46px;
}
.section h2{
  margin:12px 0 0;
  font-family:Georgia,'Times New Roman',serif;
  color:var(--ink);
  font-weight:500;
  font-size:clamp(38px,4.8vw,68px);
  line-height:1;
  letter-spacing:-.05em;
}
.lead{
  margin:0;
  max-width:980px;
  font-size:clamp(25px,3vw,42px);
  line-height:1.25;
  letter-spacing:-.04em;
}

/* Featured */
.featured-layout{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:28px;
}
.featured-main{
  display:grid;
  grid-template-columns:1fr 1fr;
  border:1px solid var(--line);
  background:#fff;
  min-height:430px;
  transition:.25s ease;
}
.featured-main:hover,.article-card:hover,.timeline-card:hover,.interest-card:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 45px rgba(15,45,82,.10);
}
.featured-main img{
  width:100%;
  height:100%;
  min-height:430px;
  object-fit:cover;
}
.featured-main-body{
  padding:42px;
  display:flex;
  flex-direction:column;
  justify-content:end;
}
.kicker{
  color:var(--navy);
  font-size:11px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.featured-main h3{
  margin:14px 0 18px;
  font-family:Georgia,'Times New Roman',serif;
  font-size:42px;
  line-height:1.02;
  letter-spacing:-.05em;
}
.featured-main p,.article-card p,.timeline-card p,.interest-card p{
  color:var(--muted);
}
.featured-side{display:grid;gap:18px}
.article-mini{
  border:1px solid var(--line);
  background:#fff;
  padding:26px;
}
.article-mini h3{
  margin:10px 0 0;
  font-family:Georgia,'Times New Roman',serif;
  font-size:26px;
  line-height:1.05;
  letter-spacing:-.04em;
}

/* Experience */
.timeline{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.timeline-card{
  background:#fff;
  border:1px solid var(--line);
  padding:34px;
  min-height:360px;
  transition:.25s ease;
}
.timeline-card .year{
  color:var(--navy);
  font-size:12px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.timeline-card h3{
  margin:26px 0 16px;
  font-size:30px;
  letter-spacing:-.04em;
}
.tags{display:flex;flex-wrap:wrap;gap:8px;margin-top:26px}
.tag{
  border:1px solid var(--line);
  color:var(--navy);
  background:#fff;
  padding:7px 10px;
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

/* Interests */
.interest-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.interest-card{
  border:1px solid var(--line);
  padding:28px;
  background:#fff;
  min-height:190px;
  transition:.25s ease;
}
.interest-card h3{
  margin:0 0 12px;
  font-size:24px;
  letter-spacing:-.03em;
}

/* About */
.about-band{
  background:var(--navy);
  color:#fff;
  padding:110px 5vw;
}
.about-inner{
  max-width:var(--max);
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1.15fr;
  gap:70px;
}
.about-inner h2{
  margin:0;
  font-family:Georgia,'Times New Roman',serif;
  font-size:clamp(42px,5vw,78px);
  line-height:.98;
  letter-spacing:-.055em;
}
.about-inner p{
  margin:0 0 20px;
  color:rgba(255,255,255,.82);
  font-size:18px;
  line-height:1.75;
}
.about-band .btn{margin-top:20px;border-color:#fff}
.about-band .btn.secondary{color:#fff}

/* Archive / Article */
.page-hero{
  padding:130px 5vw 75px;
  background:var(--soft);
  border-bottom:1px solid var(--line);
}
.page-hero-inner{max-width:var(--max);margin:0 auto}
.page-title{
  margin:16px 0 0;
  font-family:Georgia,'Times New Roman',serif;
  font-size:clamp(54px,8vw,112px);
  line-height:.9;
  letter-spacing:-.065em;
}
.archive-grid{
  max-width:var(--max);
  margin:0 auto;
  padding:72px 5vw 110px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.article-card{
  border:1px solid var(--line);
  background:#fff;
  transition:.25s ease;
}
.article-card img{
  width:100%;
  height:190px;
  object-fit:cover;
}
.article-body{padding:24px}
.article-body h3{
  margin:10px 0 12px;
  font-family:Georgia,'Times New Roman',serif;
  font-size:27px;
  line-height:1.05;
  letter-spacing:-.04em;
}
.article-page{
  max-width:820px;
  margin:0 auto;
  padding:125px 5vw 100px;
}
.back-link{
  display:inline-block;
  margin-bottom:35px;
  color:var(--navy);
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.article-page h1{
  margin:0 0 28px;
  font-family:Georgia,'Times New Roman',serif;
  font-size:clamp(44px,6vw,82px);
  line-height:.96;
  letter-spacing:-.055em;
}
.article-meta{color:var(--muted);margin-bottom:40px}
.article-page p{
  font-size:20px;
  line-height:1.72;
  color:#333;
}

/* Footer */
.footer{
  padding:58px 5vw;
  border-top:1px solid var(--line);
}
.footer-inner{
  max-width:var(--max);
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  gap:30px;
  color:var(--muted);
}
.footer strong{color:var(--navy)}

/* Animation */
.section,.about-band,.timeline-card,.interest-card,.article-card,.featured-main,.article-mini{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .7s ease,transform .7s ease,box-shadow .25s ease;
}
.section.is-visible,.about-band.is-visible,.timeline-card.is-visible,.interest-card.is-visible,.article-card.is-visible,.featured-main.is-visible,.article-mini.is-visible{
  opacity:1;
  transform:translateY(0);
}

/* Responsive */
@media(max-width:1100px){
  .hero{grid-template-columns:1fr;min-height:auto}
  .hero-image{
    order:1;
    min-height:420px;
    height:52vh;
    border-left:0;
    border-bottom:1px solid var(--line);
  }
  .hero-copy-block{order:2;padding:78px 6vw 88px}
  .hero h1{font-size:clamp(58px,13vw,108px)}
  .featured-layout,.featured-main,.about-inner{grid-template-columns:1fr}
  .timeline,.interest-grid,.archive-grid{grid-template-columns:1fr}
  .featured-main img{min-height:300px}
}
@media(max-width:900px){
  .site-header{padding:22px 6vw}
  .nav{display:none}
  .mobile-toggle{display:block}
  .section{padding:78px 6vw}
  .section-head{display:block}
  .btn{width:100%;margin-bottom:14px}
  .hero h1{
    font-size:clamp(46px,13vw,68px);
    line-height:.92;
    letter-spacing:-.045em;
  }
  .hero-positioning{font-size:clamp(28px,8vw,40px)}
  .hero-description{font-size:19px}
  .hero-image{min-height:330px;height:43vh}
  .about-band{padding:78px 6vw}
  .footer-inner{display:block}
}
@media(min-width:901px) and (max-width:1150px){
  .archive-grid{grid-template-columns:repeat(2,1fr)}
}


/* Mobile menu fix */
.mobile-toggle {
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  color: var(--navy);
  font-size: 24px;
  font-weight: 900;
  z-index: 10001;
}

@media(max-width:900px){
  .site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 24px 6vw 28px;
    border-top: 1px solid rgba(15,45,82,.1);
    border-bottom: 1px solid rgba(15,45,82,.1);
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    z-index: 9998;
    box-shadow: 0 18px 35px rgba(15,45,82,.08);
  }

  .nav.is-open {
    display: flex !important;
  }

  .nav a {
    font-size: 13px;
    padding-bottom: 0;
  }
}


/* Featured Perspectives tablet / mobile fix */
@media (max-width: 1180px){.featured-layout{display:block}.featured-main{display:block!important;min-height:0}.featured-main img{width:100%;height:auto!important;min-height:0!important;object-fit:contain}.featured-main-body{position:relative!important;padding:32px 28px!important;background:#fff}.featured-side{margin-top:22px}}
