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

:root {
  --linen:    #EDE8DE;
  --linen-dk: #D0C8BA;
  --cotton:   #F5F2EB;
  --navy:     #1B2464;
  --navy-lt:  #252f78;
  --jute:     #B89468;
  --kraft:    #C4966A;
  --white:    #FFFFFF;
  --text:     #2A2015;
  --text-mid: #6A5538;
  --text-lt:  #9A8868;
}

html { scroll-behavior: smooth; }

body {
  background: var(--linen);
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

/* ── UTILITIES ────────────────── */
.eyebrow {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-lt);
  display: block;
  margin-bottom: 14px;
  font-weight: 400;
}
.eyebrow-inv {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  display: block;
  margin-bottom: 14px;
  font-weight: 400;
}
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}
.section { padding: 104px 0; }
.divider { border-top: 1px solid var(--linen-dk); }

/* ── HEADER ───────────────────── */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 60px;
  background: var(--linen);
  border-bottom: 1px solid var(--linen-dk);
  position: sticky;
  top: 0;
  z-index: 200;
}
.site-header .logo-wrap {
  height: 54px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.site-header .logo-wrap img {
  height: 200px;
  width: auto;
  flex-shrink: 0;
}
.site-header span {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-lt);
}

/* ── HERO ─────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,36,100,0.72) 0%, rgba(27,36,100,0.1) 55%, transparent 100%);
  pointer-events: none;
}
.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 64px 60px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  pointer-events: none;
}
.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 76px;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -1.5px;
  max-width: 640px;
}
.hero-content h1 em { font-style: italic; }
.hero-meta {
  text-align: right;
  padding-bottom: 8px;
}
.hero-meta p {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  line-height: 2;
}

/* ── META BAR ─────────────────── */
.meta-bar {
  background: var(--navy);
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.meta-bar .disciplines {
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
}
.meta-bar .disciplines span {
  color: rgba(255,255,255,0.25);
  padding: 0 10px;
}
.meta-bar .role {
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.38);
  font-weight: 300;
}

/* ── OVERVIEW ─────────────────── */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.overview-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}
.overview-text h2 em { font-style: italic; }
.overview-text p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 18px;
  text-wrap: pretty;
}
.overview-img {
  height: 600px;
  overflow: hidden;
  border-radius: 2px;
}
.overview-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── DARK SECTION (Brief/Challenge) ── */
.dark-section {
  background: var(--navy);
  padding: 104px 0;
}
.brief-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.brief-col h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 36px;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}
.brief-col h3 em { font-style: italic; font-weight: 300; }
.brief-col p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
  text-wrap: pretty;
  margin-bottom: 16px;
}
.challenge-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}
.challenge-item {
  padding-left: 20px;
  border-left: 2px solid var(--jute);
}
.challenge-item strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-bottom: 5px;
  letter-spacing: 0.3px;
}
.challenge-item span {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

/* ── PULL QUOTE ───────────────── */
.pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 36px;
  line-height: 1.3;
  color: var(--text);
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  letter-spacing: -0.3px;
  padding: 80px 60px;
  text-wrap: pretty;
}
.pull-quote::before {
  content: '"';
  font-size: 80px;
  font-style: normal;
  color: var(--jute);
  display: block;
  line-height: 0.7;
  margin-bottom: 24px;
  font-family: 'Cormorant Garamond', serif;
}

/* ── FULL-BLEED IMAGE ─────────── */
.full-img img {
  width: 100%;
  height: auto;
  display: block;
}
.full-img-crop {
  width: 100%;
  height: 640px;
  overflow: hidden;
}
.full-img-crop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── TWO COL COMPONENT ────────── */
.comp-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 72px;
  align-items: center;
}
.comp-grid.flip { direction: rtl; }
.comp-grid.flip > * { direction: ltr; }
.comp-img { overflow: hidden; border-radius: 2px; }
.comp-img img { width: 100%; height: 580px; object-fit: cover; }

.comp-text .eyebrow { margin-bottom: 12px; }
.comp-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 52px;
  line-height: 0.95;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.comp-text h2 em { font-style: italic; font-weight: 300; }
.comp-text .sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 19px;
  color: var(--text-mid);
  display: block;
  margin-bottom: 28px;
}
.comp-text p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  text-wrap: pretty;
  margin-bottom: 16px;
}
.specs {
  border-top: 1px solid var(--linen-dk);
  padding-top: 22px;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.spec {
  display: flex;
  gap: 20px;
  font-size: 12px;
  font-weight: 300;
  color: var(--text-mid);
}
.spec b {
  font-weight: 500;
  font-size: 11px;
  color: var(--text);
  min-width: 90px;
  letter-spacing: 0.3px;
  flex-shrink: 0;
}

/* ── TAG FEATURE ──────────────── */
.tag-feature {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}
.tag-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.tag-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,22,50,0.85) 0%, transparent 55%);
  pointer-events: none;
}
.tag-feature-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 56px 60px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  pointer-events: none;
}
.tag-feature-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 56px;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 12px;
}
.tag-feature-text h3 em { font-style: italic; color: var(--jute); }
.tag-feature-text p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  max-width: 400px;
  line-height: 1.7;
}
.tag-feature-right {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-align: right;
  line-height: 2.2;
}

/* ── DESIGNED LIST ────────────── */
.designed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  margin-top: 56px;
  border: 1px solid rgba(255,255,255,0.08);
}
.designed-item {
  padding: 28px 32px;
  background: var(--navy-lt);
}
.designed-item p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 12px;
}
.designed-item p::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--jute);
  flex-shrink: 0;
}

/* ── OUTCOME SECTION ──────────── */
.outcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.outcome-col h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 40px;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}
.outcome-col h3 em { font-style: italic; }
.outcome-col p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.85;
  text-wrap: pretty;
}

/* ── REFLECTION ───────────────── */
.reflection {
  background: var(--cotton);
  padding: 120px 60px;
  text-align: center;
  border-top: 1px solid var(--linen-dk);
}
.reflection blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 40px;
  line-height: 1.3;
  color: var(--text);
  max-width: 780px;
  margin: 0 auto 32px;
  letter-spacing: -0.3px;
  text-wrap: pretty;
}
.reflection blockquote em { color: var(--jute); font-style: normal; }
.reflection cite {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-lt);
  font-style: normal;
}

/* ── FOOTER ───────────────────── */
.site-footer {
  border-top: 1px solid var(--linen-dk);
  padding: 56px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-footer .logo-wrap {
  height: 64px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.site-footer .logo-wrap img {
  height: 240px;
  width: auto;
  flex-shrink: 0;
  opacity: 0.7;
}
.site-footer-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.site-footer-meta .designer-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--text);
}
.site-footer-meta .designer-contact {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.site-footer-meta .designer-contact a {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-lt);
  letter-spacing: 0.5px;
  text-decoration: none;
}
.site-footer-meta .designer-contact a:hover { color: var(--text-mid); }
.site-footer p {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-lt);
}

/* ── RESPONSIVE ───────────────── */
@media (max-width: 920px) {
  .site-header, .wrap, .meta-bar { padding-left: 28px; padding-right: 28px; }
  .hero-content { padding: 40px 28px; }
  .hero-content h1 { font-size: 48px; }
  .overview-grid, .comp-grid, .comp-grid.flip,
  .brief-grid, .outcome-grid { grid-template-columns: 1fr; direction: ltr; gap: 40px; }
  .overview-img, .comp-img img { height: 380px; }
  .tag-feature { height: 420px; }
  .tag-feature-text { padding: 32px 28px; }
  .tag-feature-text h3 { font-size: 36px; }
  .tag-feature-right { display: none; }
  .pull-quote { font-size: 26px; padding: 60px 28px; }
  .reflection { padding: 80px 28px; }
  .reflection blockquote { font-size: 28px; }
  .site-footer { flex-direction: column; gap: 20px; text-align: center; padding: 40px 28px; }
  .designed-grid { grid-template-columns: 1fr; }
}
/* Scroll fade-in */
.fade-section {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}
