@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Crimson+Pro:ital,wght@0,400;0,500;0,600;1,400&family=Oswald:wght@300;400;500;600&display=swap');

:root {
  --ink: #0a0b0b;
  --ink-soft: #111312;
  --paper: #e9e1d2;
  --paper-bright: #f7f1e7;
  --smoke: #9e9a91;
  --line: rgba(233, 225, 210, 0.16);
  --brass: #b7984b;
  --brass-bright: #d0b56c;
  --danger: #a44f43;
  --display: 'Bebas Neue', sans-serif;
  --sans: 'Oswald', sans-serif;
  --serif: 'Crimson Pro', Georgia, serif;
  --max: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  background: var(--paper-bright);
  color: var(--ink);
  padding: 10px 16px;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .12em;
}

.skip-link:focus { transform: translateY(0); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 76px;
  padding: 0 42px;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(10, 11, 11, .96);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  position: relative;
  z-index: 2;
  text-decoration: none;
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: .9;
  letter-spacing: .1em;
}

.brand span { display: block; color: var(--brass); font-size: .62em; letter-spacing: .24em; }

.site-nav { justify-self: center; }
.site-nav ul { display: flex; gap: 27px; margin: 0; padding: 0; list-style: none; }
.site-nav a {
  position: relative;
  text-decoration: none;
  color: #d4cec2;
  font-family: var(--sans);
  font-size: .73rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.site-nav a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current='page']::after { transform: scaleX(1); }
.site-nav a[aria-current='page'] { color: var(--brass-bright); }

.site-nav .nav-social { display: inline-flex; align-items: center; gap: 8px; }
.site-nav .nav-social svg { flex: none; opacity: .85; transition: opacity .25s ease; }
.site-nav .nav-social:hover svg,
.site-nav .nav-social:focus-visible svg { opacity: 1; }

@media (max-width: 1180px) {
  .site-nav ul { gap: 20px; }
  .site-header { padding: 0 30px; }
}

.order-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--brass);
  background: var(--brass);
  color: var(--ink);
  text-decoration: none;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.order-link:hover, .button:hover { transform: translateY(-2px); background: var(--brass-bright); }
.button--ghost { background: transparent; color: var(--brass-bright); }
.button--ghost:hover { background: rgba(183, 152, 75, .1); }

.nav-toggle {
  display: none;
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--paper);
}
.nav-toggle span { position: absolute; left: 11px; width: 20px; height: 1px; background: currentColor; transition: transform .2s ease; }
.nav-toggle span:first-child { transform: translateY(-4px); }
.nav-toggle span:last-child { transform: translateY(4px); }
.site-header.is-open .nav-toggle span:first-child { transform: rotate(45deg); }
.site-header.is-open .nav-toggle span:last-child { transform: rotate(-45deg); }

main { min-height: 70vh; }
.shell { width: min(var(--max), calc(100% - 96px)); margin-inline: auto; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--brass-bright);
  font-family: var(--sans);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .28em;
}
.eyebrow::before { content: ''; width: 42px; height: 1px; background: currentColor; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: .94; letter-spacing: .025em; }
h1 { margin-bottom: 26px; font-size: clamp(4.3rem, 10vw, 9.2rem); }
h2 { margin-bottom: 24px; font-size: clamp(3rem, 6vw, 5.5rem); }
h3 { margin-bottom: 12px; font-size: clamp(1.75rem, 3vw, 2.6rem); }
.accent { color: var(--brass); }
.lede { max-width: 720px; color: #c8c0b3; font-size: clamp(1.2rem, 2vw, 1.5rem); line-height: 1.55; }

.home-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 100svh;
  padding: 138px 0 74px;
  overflow: hidden;
}
.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,11,11,.98) 8%, rgba(10,11,11,.83) 48%, rgba(10,11,11,.2)), url('/assets/baghdad-green-zone.jpg') center 35% / cover;
  filter: saturate(.72) contrast(1.05);
}
.home-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(260px, .55fr); gap: 80px; align-items: end; }
.home-copy { padding-bottom: 30px; }
.home-copy h1 span { display: block; }
.home-copy .lede { max-width: 590px; font-style: italic; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.publication { margin-top: 30px; color: var(--smoke); font-family: var(--sans); font-size: .72rem; text-transform: uppercase; letter-spacing: .2em; }
.hero-flash {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding: 9px 20px 9px 10px;
  border-radius: 999px;
  background: linear-gradient(100deg, var(--brass) 0%, var(--brass-bright) 55%, #e3cd8c 100%);
  box-shadow: 0 14px 38px rgba(183, 152, 75, .34);
  color: var(--ink);
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .16em;
  text-decoration: none;
  transition: box-shadow .3s ease, transform .3s ease;
}
.hero-flash::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: flash-pulse 2.6s ease-out infinite;
  pointer-events: none;
}
.hero-flash:hover, .hero-flash:focus-visible { transform: translateY(-3px); box-shadow: 0 18px 46px rgba(183, 152, 75, .5); }
.hero-flash-tag {
  padding: 4px 11px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--brass-bright);
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .22em;
}
.hero-flash-arrow { font-size: .95rem; transition: transform .3s ease; }
.hero-flash:hover .hero-flash-arrow { transform: translateX(5px); }
@keyframes flash-pulse {
  0% { box-shadow: 0 0 0 0 rgba(208, 181, 108, .55); }
  70% { box-shadow: 0 0 0 16px rgba(208, 181, 108, 0); }
  100% { box-shadow: 0 0 0 0 rgba(208, 181, 108, 0); }
}

.book-wrap { position: relative; justify-self: end; width: min(100%, 390px); }
.book-wrap::before { content: ''; position: absolute; inset: 15% -20% -12%; background: radial-gradient(circle, rgba(183,152,75,.2), transparent 68%); }
.book-cover { position: relative; transform: perspective(1100px) rotateY(-7deg); box-shadow: -28px 34px 75px rgba(0,0,0,.75); transition: transform .5s ease; }
.book-cover:hover { transform: perspective(1100px) rotateY(0); }

.quote-band { border-block: 1px solid var(--line); background: var(--ink-soft); }
.quote-band .shell { display: grid; grid-template-columns: 1fr 1fr; }
.quote-band blockquote { margin: 0; padding: 42px 6vw; font-style: italic; text-align: center; }
.quote-band blockquote + blockquote { border-left: 1px solid var(--line); }
.quote-band cite { display: block; margin-top: 14px; color: var(--brass); font-family: var(--sans); font-size: .68rem; font-style: normal; text-transform: uppercase; letter-spacing: .18em; }

.home-paths { padding: 110px 0 125px; }
.home-paths-header { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: end; margin-bottom: 62px; }
.home-paths-header p { max-width: 570px; margin: 0 0 10px; color: var(--smoke); }
.path-grid { display: grid; grid-template-columns: repeat(12, 1fr); border-top: 1px solid var(--line); }
.path-card { position: relative; min-height: 270px; padding: 34px 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-decoration: none; overflow: hidden; }
.path-card:nth-child(1), .path-card:nth-child(4) { grid-column: span 7; }
.path-card:nth-child(2), .path-card:nth-child(3) { grid-column: span 5; }
.path-card::before { content: ''; position: absolute; inset: 0; opacity: 0; background: linear-gradient(135deg, rgba(183,152,75,.15), transparent 65%); transition: opacity .3s; }
.path-card:hover::before { opacity: 1; }
.path-num { color: var(--brass); font-family: var(--sans); font-size: .68rem; letter-spacing: .2em; }
.path-card h3 { margin-top: 70px; transition: transform .3s; }
.path-card:hover h3 { transform: translateX(10px); }
.path-card p { position: relative; max-width: 440px; color: var(--smoke); }

.page-hero { position: relative; min-height: 58vh; padding: 170px 0 84px; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero::after { content: attr(data-index); position: absolute; right: 2vw; bottom: -7vw; color: rgba(233,225,210,.035); font-family: var(--display); font-size: 31vw; line-height: 1; }
.page-hero .shell { position: relative; z-index: 1; }
.page-hero h1 { max-width: 960px; margin-top: 30px; }
.page-hero .lede { margin-bottom: 0; }

.content-section { padding: 105px 0; }
.content-section--soft { background: var(--ink-soft); border-block: 1px solid var(--line); }
.split { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(54px, 8vw, 120px); align-items: start; }
.split--reverse { grid-template-columns: 1.15fr .85fr; }
.sticky-media { position: sticky; top: 112px; }
.image-frame { position: relative; }
.image-frame::after { content: ''; position: absolute; inset: 13px -13px -13px 13px; z-index: -1; border: 1px solid rgba(183,152,75,.35); }
.image-frame img { width: 100%; min-height: 420px; object-fit: cover; filter: saturate(.75) contrast(1.05); }
.caption { margin-top: 22px; color: var(--smoke); font-family: var(--sans); font-size: .68rem; text-transform: uppercase; letter-spacing: .18em; }
.prose { max-width: 760px; }
.prose p { color: #c8c0b3; font-size: 1.12rem; }
.prose p:first-of-type { font-size: 1.3rem; color: var(--paper-bright); }
.prose em { color: var(--paper-bright); }

.chapter-list { border-top: 1px solid var(--line); }
.chapter { display: grid; grid-template-columns: 130px 1fr; gap: 35px; padding: 36px 0; border-bottom: 1px solid var(--line); }
.chapter span { padding-top: 9px; color: var(--brass); font-family: var(--sans); font-size: .68rem; text-transform: uppercase; letter-spacing: .2em; }
.chapter p { margin-bottom: 0; color: var(--smoke); }

.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.gallery-card { grid-column: span 5; margin: 0; cursor: zoom-in; }
.gallery-card:nth-child(3n+1) { grid-column: span 7; }
.gallery-card img { width: 100%; height: 420px; object-fit: cover; filter: grayscale(.1) saturate(.74); transition: transform .45s ease, filter .45s ease; }
.gallery-card:nth-child(even) img { height: 550px; }
.gallery-card button { display: block; width: 100%; padding: 0; border: 0; background: none; overflow: hidden; cursor: inherit; }
.gallery-card button:hover img { transform: scale(1.02); filter: grayscale(0) saturate(.95); }
.gallery-card figcaption { display: flex; justify-content: space-between; gap: 20px; padding-top: 14px; color: var(--smoke); font-family: var(--sans); font-size: .68rem; text-transform: uppercase; letter-spacing: .16em; }
.gallery-card figcaption span:first-child { color: var(--paper); }

.lightbox { position: fixed; inset: 0; z-index: 300; display: none; place-items: center; padding: 42px; background: rgba(5,6,6,.96); }
.lightbox.is-open { display: grid; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 82vh; }
.lightbox-close { position: absolute; top: 24px; right: 25px; border: 0; background: none; color: var(--paper); font-family: var(--sans); font-size: .72rem; text-transform: uppercase; letter-spacing: .2em; cursor: pointer; }

.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.review { min-height: 330px; margin: 0; padding: 42px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.review:first-child { grid-row: span 2; display: flex; flex-direction: column; justify-content: flex-end; background: var(--brass); color: var(--ink); }
.review-label { font-family: var(--sans); font-size: .65rem; text-transform: uppercase; letter-spacing: .2em; opacity: .7; }
.review p { margin: 40px 0 25px; font-size: 1.3rem; font-style: italic; line-height: 1.48; }
.review:first-child p { font-size: 1.72rem; }
.review cite { font-family: var(--sans); font-size: .72rem; font-style: normal; text-transform: uppercase; letter-spacing: .16em; }
.review cite span { display: block; margin-top: 6px; font-family: var(--serif); font-size: .94rem; text-transform: none; letter-spacing: 0; opacity: .7; }
.press-review { max-width: 900px; }
.press-review details { margin-top: 28px; border-top: 1px solid var(--line); }
.press-review summary { padding: 22px 0; color: var(--brass-bright); font-family: var(--sans); font-size: .72rem; text-transform: uppercase; letter-spacing: .18em; cursor: pointer; }
.press-review details p { color: #c8c0b3; }
.review-stars { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 14px; margin-top: 18px; }
.review-stars > span:first-child { color: var(--brass-bright); font-size: .95rem; letter-spacing: .28em; }
.review-source { font-family: var(--sans); font-size: .68rem; text-transform: uppercase; letter-spacing: .16em; opacity: .65; }

.portrait-layout { display: grid; grid-template-columns: minmax(300px, .7fr) minmax(0, 1.3fr); gap: clamp(60px, 9vw, 140px); align-items: center; }
.portrait-layout img { width: 100%; max-height: 750px; object-fit: cover; object-position: center top; filter: saturate(.7); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 46px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.stat { padding: 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat strong { display: block; color: var(--brass); font-family: var(--display); font-size: 3rem; font-weight: 400; line-height: 1; }
.stat span { color: var(--smoke); font-family: var(--sans); font-size: .66rem; text-transform: uppercase; letter-spacing: .15em; }

.post-list { display: grid; grid-template-columns: .65fr 1.35fr; border-top: 1px solid var(--line); }
.post-meta { padding: 36px 36px 36px 0; color: var(--brass); font-family: var(--sans); font-size: .68rem; text-transform: uppercase; letter-spacing: .18em; }
.post { padding: 36px 0 42px 42px; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.post p { max-width: 720px; color: var(--smoke); }
.text-link { color: var(--brass-bright); font-family: var(--sans); font-size: .7rem; text-transform: uppercase; letter-spacing: .16em; text-underline-offset: 5px; }
.coming-note { max-width: 720px; padding: 30px; border: 1px solid var(--line); background: var(--ink-soft); color: var(--smoke); }

.blog-hero { min-height: 68vh; display: flex; align-items: end; background: radial-gradient(circle at 78% 35%, rgba(183,152,75,.08), transparent 28%); }
.blog-hero h1 { max-width: 1100px; font-size: clamp(5rem, 10.5vw, 10rem); line-height: .86; }
.blog-hero .lede { max-width: 660px; }
.article-section { padding: clamp(80px, 10vw, 145px) 0; }
.article-layout { display: grid; grid-template-columns: minmax(180px, .42fr) minmax(0, 1.58fr); gap: clamp(48px, 8vw, 130px); align-items: start; }
.article-rail { position: sticky; top: 120px; min-height: 430px; padding-top: 12px; border-top: 1px solid var(--line); }
.article-kicker, .article-byline { padding: 22px 0; border-bottom: 1px solid var(--line); color: var(--smoke); font-family: var(--sans); font-size: .68rem; line-height: 1.7; text-transform: uppercase; letter-spacing: .16em; }
.article-kicker em { color: var(--paper); font-family: var(--serif); font-size: .95rem; text-transform: none; letter-spacing: 0; }
.article-byline strong { color: var(--brass-bright); font-weight: 400; }
.article-marker { margin-top: 34px; color: rgba(233,225,210,.08); font-family: var(--display); font-size: 8rem; line-height: 1; }
.longform-article { width: min(100%, 790px); }
.longform-article > p { color: #c8c0b3; font-size: clamp(1.12rem, 1.7vw, 1.32rem); line-height: 1.76; }
.longform-article > p + p { margin-top: 1.65em; }
.article-opening { color: var(--paper-bright) !important; font-size: clamp(1.35rem, 2.2vw, 1.72rem) !important; line-height: 1.58 !important; }
.article-opening::first-letter { float: left; margin: .06em .11em 0 0; color: var(--brass); font-family: var(--display); font-size: 5.2em; line-height: .72; }
.article-beat { margin-block: 2em !important; color: var(--brass-bright) !important; font-family: var(--sans); font-size: .82rem !important; text-transform: uppercase; letter-spacing: .24em; }
.article-question { position: relative; margin: 2.4em 0 1.6em !important; padding: 30px 0 30px 40px; border-block: 1px solid var(--line); color: var(--paper-bright) !important; font-size: clamp(1.55rem, 3vw, 2.35rem) !important; font-style: italic; line-height: 1.25 !important; }
.article-question::before { content: ''; position: absolute; top: 30px; bottom: 30px; left: 0; width: 2px; background: var(--brass); }
.article-figure { width: min(1040px, calc(100vw - 96px)); margin: clamp(55px, 8vw, 90px) 0 clamp(48px, 7vw, 78px); }
.article-figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; filter: saturate(.72) contrast(1.04); }
.article-figure figcaption { margin-top: 12px; color: #77766f; font-family: var(--sans); font-size: .63rem; text-transform: uppercase; letter-spacing: .15em; }
.article-figure--offset { margin-left: clamp(-120px, -8vw, -55px); }
.article-closing { margin-top: 2.3em !important; color: var(--brass-bright) !important; font-size: clamp(2.5rem, 6vw, 5.1rem) !important; font-style: italic; line-height: 1 !important; }
.article-end { display: grid; grid-template-columns: 1fr auto; gap: 3px 24px; align-items: end; margin-top: 80px; padding: 28px 0; border-block: 1px solid var(--line); }
.article-end span { color: var(--smoke); font-family: var(--sans); font-size: .64rem; text-transform: uppercase; letter-spacing: .18em; }
.article-end strong { grid-column: 1; color: var(--paper-bright); font-family: var(--display); font-size: 2.35rem; font-weight: 400; line-height: 1; letter-spacing: .04em; }
.article-end .text-link { grid-column: 2; grid-row: 1 / span 2; align-self: center; }
.article-end .order-links { grid-column: 2; grid-row: 1 / span 2; display: grid; gap: 10px; justify-items: end; align-self: center; }

.signup-panel { position: relative; padding: 90px 0; overflow: hidden; background: linear-gradient(90deg, rgba(10,11,11,.94), rgba(10,11,11,.7)), url('/assets/deployment.jpg') center/cover; }
.signup-panel .shell { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.signup-form { display: flex; flex-wrap: wrap; }
.signup-form input { flex: 1; min-width: 0; border: 1px solid rgba(233,225,210,.35); border-right: 0; background: rgba(10,11,11,.7); color: var(--paper); padding: 14px 16px; border-radius: 0; }
.form-status { min-height: 1.5em; margin: 12px 0 0; color: var(--brass-bright); font-size: .9rem; }
.signup-form .form-status { flex-basis: 100%; }
.form-status.is-error { color: #d88172; }

.contact-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(60px, 10vw, 150px); }
.contact-details { position: sticky; top: 110px; }
.contact-details p { color: var(--smoke); }
.contact-email { display: inline-block; margin-top: 20px; color: var(--brass-bright); font-family: var(--sans); font-size: .76rem; text-transform: uppercase; letter-spacing: .16em; text-underline-offset: 6px; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field { display: grid; gap: 9px; }
.field--full { grid-column: 1 / -1; }
.field label { color: var(--brass-bright); font-family: var(--sans); font-size: .67rem; text-transform: uppercase; letter-spacing: .18em; }
.field input, .field textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(233,225,210,.32); background: transparent; color: var(--paper); padding: 12px 0; border-radius: 0; outline: none; transition: border-color .2s; }
.field input:focus, .field textarea:focus { border-color: var(--brass); }
.field textarea { min-height: 160px; resize: vertical; }
.contact-form .button { justify-self: start; margin-top: 10px; }
.contact-form .form-status { grid-column: 1 / -1; }

.site-footer { border-top: 1px solid var(--line); padding: 68px 0 32px; }
.footer-grid { display: grid; grid-template-columns: .85fr 1.3fr .85fr; gap: 60px; }
.footer-blurb { max-width: 330px; margin-top: 20px; color: var(--smoke); font-size: .95rem; }
.footer-title { color: var(--brass); font-family: var(--sans); font-size: .67rem; text-transform: uppercase; letter-spacing: .2em; }
.footer-nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 28px; margin-top: 20px; }
.footer-nav a { color: #ccc4b7; text-decoration: none; font-family: var(--sans); font-size: .76rem; text-transform: uppercase; letter-spacing: .13em; }
.footer-nav a:hover { color: var(--brass-bright); }
.footer-order { display: grid; justify-items: start; gap: 12px; align-self: start; }
.footer-order .footer-title { margin-bottom: 8px; }
.footer-small { display: flex; justify-content: space-between; gap: 30px; margin-top: 58px; padding-top: 24px; border-top: 1px solid var(--line); color: #77766f; font-family: var(--sans); font-size: .63rem; text-transform: uppercase; letter-spacing: .14em; }

.reveal { opacity: 1; transform: none; }
.has-reveal .reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.has-reveal .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1050px) {
  .site-header { padding: 0 24px; }
  .site-header > .order-link { display: none; }
  .nav-toggle { display: block; justify-self: end; }
  .site-nav { position: fixed; inset: 76px 0 auto; display: none; padding: 32px 24px 38px; background: rgba(10,11,11,.98); border-bottom: 1px solid var(--line); }
  .site-header.is-open .site-nav { display: block; }
  .site-nav ul { flex-direction: column; align-items: center; gap: 22px; }
  .site-nav a { font-size: .86rem; }
  .home-grid { grid-template-columns: 1fr .55fr; gap: 45px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-order { grid-column: 1 / -1; grid-template-columns: auto auto; justify-content: start; }
  .footer-order .footer-title { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  body { font-size: 17px; }
  .shell { width: min(100% - 40px, var(--max)); }
  .home-hero { min-height: auto; padding-top: 125px; }
  .home-hero::before { background: linear-gradient(180deg, rgba(10,11,11,.55), var(--ink) 64%), url('/assets/baghdad-green-zone.jpg') 58% top / auto 58% no-repeat; }
  .home-grid { grid-template-columns: 1fr; }
  .home-copy { padding-top: 36vh; }
  .home-copy h1 { font-size: clamp(4.8rem, 23vw, 7rem); }
  .hero-flash { gap: 10px; padding: 8px 16px 8px 8px; font-size: .72rem; letter-spacing: .12em; }
  .hero-flash-tag { padding: 3px 9px; font-size: .6rem; letter-spacing: .16em; }
  .book-wrap { justify-self: start; width: 230px; }
  .quote-band .shell { grid-template-columns: 1fr; }
  .quote-band blockquote + blockquote { border-top: 1px solid var(--line); border-left: 0; }
  .home-paths, .content-section { padding: 78px 0; }
  .home-paths-header, .split, .split--reverse, .portrait-layout, .signup-panel .shell, .contact-layout { grid-template-columns: 1fr; gap: 45px; }
  .path-card:nth-child(n) { grid-column: 1 / -1; min-height: 220px; border-left: 1px solid var(--line); }
  .page-hero { min-height: 54vh; padding: 135px 0 65px; }
  .page-hero h1 { font-size: clamp(4.2rem, 22vw, 7rem); }
  .sticky-media, .contact-details { position: static; }
  .chapter { grid-template-columns: 1fr; gap: 8px; }
  .gallery { gap: 36px; }
  .gallery-card, .gallery-card:nth-child(3n+1) { grid-column: 1 / -1; }
  .gallery-card img, .gallery-card:nth-child(even) img { height: min(78vw, 480px); }
  .reviews-grid { grid-template-columns: 1fr; }
  .review:first-child { grid-row: auto; }
  .review, .review:first-child { min-height: auto; }
  .post-list { grid-template-columns: 1fr; }
  .post-meta { padding-bottom: 10px; }
  .post { padding-left: 0; border-left: 0; }
  .blog-hero { min-height: 72vh; }
  .blog-hero h1 { font-size: clamp(4.2rem, 19vw, 7rem); }
  .article-layout { grid-template-columns: 1fr; gap: 45px; }
  .article-rail { position: static; min-height: auto; display: grid; grid-template-columns: 1fr 1fr; }
  .article-kicker { padding-right: 20px; }
  .article-byline { padding-left: 20px; border-left: 1px solid var(--line); }
  .article-marker { display: none; }
  .longform-article > p { font-size: 1.1rem; line-height: 1.72; }
  .article-opening { font-size: 1.35rem !important; }
  .article-question { padding-left: 25px; font-size: 1.65rem !important; }
  .article-figure, .article-figure--offset { width: 100%; margin: 52px 0; }
  .article-end { grid-template-columns: 1fr; }
  .article-end .text-link { grid-column: 1; grid-row: auto; margin-top: 20px; }
  .article-end .order-links { grid-column: 1; grid-row: auto; margin-top: 20px; justify-items: start; }
  .contact-form { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .stats { grid-template-columns: 1fr 1fr 1fr; }
  .stat { padding: 18px 10px; }
  .signup-form { flex-direction: column; gap: 10px; }
  .signup-form input { border-right: 1px solid rgba(233,225,210,.35); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-small { flex-direction: column; }
}
