@font-face {
  font-family: "Archivo Narrow";
  src: url("../fonts/archivo-narrow-700.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-400.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-500.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-600.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

:root {
  --charcoal: #121315;
  --ink: #171a1c;
  --amber: #d69a4a;
  --amber-light: #efb666;
  --harbour: #708a9b;
  --blue-dark: #24333d;
  --blue-deep: #17242c;
  --paper: #f2eee5;
  --paper-muted: #d8d3c9;
  --white: #fffdf8;
  --line: rgba(242, 238, 229, 0.22);
  --font-display: "Archivo Narrow", "Arial Narrow", sans-serif;
  --font-body: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--charcoal); }
body { margin: 0; background: var(--charcoal); color: var(--paper); font-family: var(--font-body); font-size: 16px; line-height: 1.65; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--amber-light); outline-offset: 4px; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; background: var(--paper); color: var(--charcoal); padding: .8rem 1rem; }
.skip-link:focus { top: 1rem; }
.shell { width: min(1320px, calc(100% - 7rem)); margin-inline: auto; }
.section-dark, .section-blue, .section-light, .section-amber { padding: clamp(6rem, 9vw, 9rem) 0; }
.section-dark { background: var(--charcoal); }
.section-blue { background: var(--blue-deep); }
.section-light { background: var(--paper); color: var(--ink); }
.section-amber { background: var(--amber); color: var(--ink); }
.section-label, .eyebrow { margin: 0 0 1.4rem; font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--amber-light); }
.section-label.ink { color: #80551d; }
h1, h2, h3, p, blockquote { margin-top: 0; }
h2 { margin-bottom: 0; font-family: var(--font-display); font-size: clamp(3.5rem, 6.7vw, 7.4rem); line-height: .9; letter-spacing: -.025em; text-transform: uppercase; }
h3 { font-size: 1.18rem; line-height: 1.35; }
p { color: rgba(242, 238, 229, .72); }
.section-light p, .section-amber p { color: rgba(23, 26, 28, .72); }
.lead { font-size: clamp(1.2rem, 2vw, 1.55rem); line-height: 1.55; color: var(--paper); }

.hero { position: relative; min-height: 100svh; overflow: hidden; isolation: isolate; background: #10161a; }
.hero-image { position: absolute; inset: 0; z-index: -3; background: url("../images/sydney-served-hero.webp") 64% center / cover no-repeat; animation: slowPush 14s ease-out both; }
.hero-shade { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(7, 13, 17, .88) 0%, rgba(7, 13, 17, .63) 38%, rgba(7, 13, 17, .08) 70%), linear-gradient(0deg, rgba(5, 8, 10, .82) 0%, transparent 42%); }
.site-header { position: absolute; inset: 0 0 auto; z-index: 5; height: 9rem; display: flex; align-items: center; justify-content: space-between; }
.wordmark { font-family: var(--font-body); font-size: .93rem; font-weight: 600; letter-spacing: .34em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: clamp(1.8rem, 3vw, 3.5rem); }
.desktop-nav a, .mobile-nav a { position: relative; font-size: .92rem; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; bottom: -.45rem; width: 100%; height: 1px; background: var(--amber); transform: scaleX(0); transform-origin: left; transition: transform .22s ease; }
.desktop-nav a:hover::after { transform: scaleX(1); }
.mobile-nav { display: none; }
.hero-content { padding-top: clamp(13rem, 26vh, 19rem); padding-bottom: 9rem; }
.hero-title { margin: 0 0 1.2rem; max-width: 39rem; font-family: var(--font-display); font-size: clamp(6rem, 11.6vw, 11rem); line-height: .72; letter-spacing: -.035em; text-transform: uppercase; }
.hero-title span { display: block; }
.hero-statement { margin-bottom: 1rem; font-family: var(--font-display); font-size: clamp(1.35rem, 2vw, 1.85rem); letter-spacing: .065em; text-transform: uppercase; color: var(--paper); }
.hero-copy { max-width: 34rem; margin-bottom: 1.8rem; font-size: 1.05rem; color: rgba(242, 238, 229, .82); }
.button { min-height: 3.4rem; display: inline-flex; align-items: center; justify-content: center; gap: 1.1rem; border: 1px solid currentColor; padding: .85rem 1.6rem; font-weight: 500; cursor: pointer; transition: color .24s ease, background .24s ease, transform .24s ease; }
.button:hover { transform: translateY(-2px); }
.button-outline { color: var(--amber-light); }
.button-outline:hover { background: var(--amber); color: var(--charcoal); }
.button-amber { background: var(--amber); color: var(--charcoal); border-color: var(--amber); }
.button-amber:hover { background: var(--paper); border-color: var(--paper); }
.hero-clock { position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%); display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: center; font-size: .65rem; }
.clock-line { position: relative; height: 1px; background: rgba(242, 238, 229, .35); }
.clock-line i { position: absolute; top: -5px; width: 1px; height: 10px; background: rgba(242, 238, 229, .32); }
.clock-line i:nth-child(1) { left: 8%; }.clock-line i:nth-child(2) { left: 25%; }.clock-line i:nth-child(3) { left: 42%; }.clock-line i:nth-child(4) { left: 58%; }.clock-line i:nth-child(5) { left: 75%; }.clock-line i:nth-child(6) { left: 92%; }
.clock-line b { position: absolute; left: 19.6%; top: -4px; width: 9px; height: 9px; border: 1px solid var(--amber); border-radius: 50%; box-shadow: 0 0 0 5px rgba(214, 154, 74, .08); }
.hero-clock strong { position: absolute; left: 19.6%; bottom: .7rem; transform: translateX(-45%); color: var(--amber-light); font-family: var(--font-display); font-size: 1rem; }
.hero-reveal { animation: fadeRise .8s ease both; }
.hero-title { animation-delay: .1s; }.hero-statement { animation-delay: .2s; }.hero-copy { animation-delay: .3s; }.hero-content .button { animation-delay: .4s; }

.opening-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(4rem, 9vw, 10rem); align-items: start; }
.opening-copy { max-width: 38rem; padding-top: 1rem; }
.opening-copy p { margin-bottom: 1.5rem; }
.text-link { display: inline-flex; gap: .8rem; margin-top: .75rem; color: var(--amber-light); border-bottom: 1px solid rgba(214, 154, 74, .45); padding-bottom: .3rem; }
.fact-strip { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 7rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fact-strip div { padding: 1.8rem 0; border-right: 1px solid var(--line); display: flex; align-items: baseline; gap: 1rem; }
.fact-strip div:last-child { border-right: 0; padding-left: 1.8rem; }
.fact-strip div:not(:first-child) { padding-left: 1.8rem; }
.fact-strip strong { font-family: var(--font-display); font-size: 2.6rem; color: var(--amber-light); }
.fact-strip span { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(242, 238, 229, .65); }

.manifesto blockquote { max-width: 72rem; margin: 3.2rem 0 7rem; font-family: var(--font-display); font-size: clamp(3rem, 6vw, 6.6rem); line-height: .95; letter-spacing: -.02em; text-transform: uppercase; }
.manifesto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 8vw, 8rem); border-top: 1px solid rgba(23, 26, 28, .25); padding-top: 3.2rem; }
.manifesto-grid h2 { font-size: clamp(2.5rem, 4.5vw, 5rem); }
.manifesto-grid div { max-width: 38rem; }

.section-heading { display: grid; grid-template-columns: 1fr .55fr; gap: 4rem; align-items: end; margin-bottom: 5rem; }
.section-heading > p { margin: 0; padding-bottom: .5rem; }
.ink-heading p { color: rgba(23, 26, 28, .72); }
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.story-card { min-height: 24rem; padding: 1.7rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; transition: background .3s ease, transform .3s ease; }
.story-card:hover { background: rgba(255,255,255,.035); transform: translateY(-3px); }
.story-meta { display: flex; justify-content: space-between; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(242, 238, 229, .5); }
.story-card .status { color: var(--amber-light); font-size: .65rem; letter-spacing: .16em; text-transform: uppercase; }
.story-card h3 { max-width: 17rem; font-family: var(--font-display); font-size: 2.3rem; line-height: .95; text-transform: uppercase; }
.story-card p:last-child { margin: 0; font-size: .88rem; }
.selection-note { margin: 2rem 0 0; font-size: .8rem; color: rgba(242, 238, 229, .55); }

.clock-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(4rem, 10vw, 11rem); }
.clock-intro { position: sticky; top: 4rem; align-self: start; }
.clock-intro h2 { margin-bottom: 2rem; font-size: clamp(3.5rem, 5.8vw, 6.5rem); }
.clock-intro > p:last-child { max-width: 31rem; }
.timeline-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.timeline-list li { display: grid; grid-template-columns: 8rem 1fr; gap: 2rem; padding: 2.4rem 0; border-bottom: 1px solid var(--line); }
.timeline-list time { font-family: var(--font-display); font-size: 2.2rem; color: var(--amber-light); }
.timeline-list h3 { margin-bottom: .4rem; font-size: 1.4rem; }
.timeline-list p { margin: 0; }

.theme-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(23, 26, 28, .2); border-left: 1px solid rgba(23, 26, 28, .2); }
.theme-grid article { min-height: 16rem; padding: 1.8rem; border-right: 1px solid rgba(23, 26, 28, .2); border-bottom: 1px solid rgba(23, 26, 28, .2); }
.theme-grid span { font-size: .7rem; letter-spacing: .15em; color: #80551d; }
.theme-grid h3 { margin: 4rem 0 .5rem; font-family: var(--font-display); font-size: 2.3rem; text-transform: uppercase; }

.production-steps { list-style: none; margin: 0; padding: 0; border-top: 1px solid rgba(23, 26, 28, .3); }
.production-steps li { display: grid; grid-template-columns: 7rem 1fr; gap: 2rem; padding: 2.2rem 0; border-bottom: 1px solid rgba(23, 26, 28, .3); }
.production-steps > li > span { font-family: var(--font-display); font-size: 2rem; }
.production-steps div { display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 2rem; align-items: start; }
.production-steps p { margin: 0; }
.production-steps h3 { margin: 0; font-size: 1.35rem; }

.involved-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(4rem, 10vw, 10rem); }
.involved-grid h2 { margin-bottom: 2.3rem; }
.involved-options { border-top: 1px solid var(--line); }
.involved-options article { display: grid; grid-template-columns: 3rem 1fr; gap: 1.5rem; padding: 1.6rem 0; border-bottom: 1px solid var(--line); }
.involved-options span { color: var(--amber-light); font-family: var(--font-display); }
.involved-options h3 { margin-bottom: .3rem; }
.involved-options p { margin: 0; font-size: .9rem; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(4rem, 11vw, 12rem); }
.contact-grid h2 { margin-bottom: 2rem; }
.contact-form { display: grid; gap: 1.3rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.contact-form label { display: grid; gap: .45rem; font-size: .73rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(242, 238, 229, .72); }
.contact-form label span { text-transform: none; letter-spacing: 0; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(242, 238, 229, .35); background: rgba(255,255,255,.025); color: var(--paper); border-radius: 0; padding: .9rem .8rem; outline: 0; }
.contact-form select option { color: var(--ink); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--amber-light); background: rgba(255,255,255,.045); }
.contact-form .button { justify-self: start; margin-top: 1rem; }

.site-footer { padding-bottom: 2rem; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-end; padding-bottom: 4rem; border-bottom: 1px solid var(--line); }
.footer-mark { margin: 0; color: var(--paper); font-family: var(--font-display); font-size: clamp(4rem, 8vw, 8rem); line-height: .8; text-transform: uppercase; }
.footer-top > p:last-child { margin: 0; }
.footer-bottom { padding-top: 1.8rem; display: flex; justify-content: space-between; font-size: .72rem; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 1rem 2rem; }

@keyframes fadeRise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slowPush { from { transform: scale(1); } to { transform: scale(1.035); } }

@media (max-width: 980px) {
  .shell { width: min(100% - 3rem, 780px); }
  .desktop-nav { display: none; }
  .mobile-nav { display: block; position: relative; }
  .mobile-nav summary { list-style: none; cursor: pointer; font-size: .85rem; text-transform: uppercase; letter-spacing: .12em; }
  .mobile-nav summary::-webkit-details-marker { display: none; }
  .mobile-nav nav { position: absolute; right: 0; top: 2.2rem; min-width: 14rem; padding: 1rem; display: grid; background: rgba(18,19,21,.97); border: 1px solid var(--line); }
  .mobile-nav nav a { padding: .7rem; }
  .hero-content { padding-top: 13rem; }
  .hero-image { background-position: 68% center; }
  .opening-grid, .manifesto-grid, .clock-layout, .involved-grid, .contact-grid { grid-template-columns: 1fr; }
  .opening-copy { max-width: 44rem; }
  .section-heading { grid-template-columns: 1fr; gap: 1.7rem; }
  .story-grid, .theme-grid { grid-template-columns: repeat(2, 1fr); }
  .clock-intro { position: static; }
  .production-steps div { grid-template-columns: 1fr 1fr; }
  .production-steps div p:last-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  .shell { width: min(100% - 2rem, 600px); }
  .section-dark, .section-blue, .section-light, .section-amber { padding: 5.2rem 0; }
  .site-header { height: 6rem; }
  .wordmark { font-size: .72rem; letter-spacing: .26em; }
  .hero { min-height: 48rem; }
  .hero-content { padding-top: 10.5rem; }
  .hero-title { font-size: clamp(5.1rem, 27vw, 7.7rem); max-width: 22rem; }
  .hero-statement { max-width: 17rem; font-size: 1.25rem; }
  .hero-copy { max-width: 20rem; font-size: .93rem; }
  .hero-shade { background: linear-gradient(90deg, rgba(7,13,17,.9), rgba(7,13,17,.35)), linear-gradient(0deg, rgba(5,8,10,.88), transparent 50%); }
  .hero-clock { bottom: 1.2rem; }
  .hero-clock strong { display: none; }
  h2 { font-size: clamp(3.2rem, 16vw, 5rem); }
  .fact-strip { grid-template-columns: 1fr 1fr; margin-top: 4rem; }
  .fact-strip div:nth-child(2) { border-right: 0; }
  .fact-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .fact-strip div:nth-child(3) { padding-left: 0; }
  .manifesto blockquote { margin-bottom: 4rem; font-size: clamp(2.7rem, 13vw, 4.4rem); }
  .story-grid, .theme-grid { grid-template-columns: 1fr; }
  .story-card { min-height: 20rem; }
  .timeline-list li { grid-template-columns: 5.5rem 1fr; gap: 1rem; }
  .timeline-list time { font-size: 1.7rem; }
  .production-steps li { grid-template-columns: 3rem 1fr; gap: 1rem; }
  .production-steps div { grid-template-columns: 1fr; gap: .7rem; }
  .production-steps div p:last-child { grid-column: auto; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top, .footer-bottom { align-items: flex-start; flex-direction: column; gap: 1.5rem; }
  .footer-bottom div { flex-wrap: wrap; gap: 1rem 1.5rem; }
}

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

/* WordPress integration */
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.screen-reader-text:focus { position: fixed !important; top: 1rem; left: 1rem; z-index: 100000; width: auto; height: auto; clip: auto; padding: .8rem 1rem; background: var(--paper); color: var(--charcoal); }
.admin-bar .site-header { top: 32px; }
.menu { display: flex; align-items: center; gap: clamp(1.8rem, 3vw, 3.5rem); margin: 0; padding: 0; list-style: none; }
.menu a { position: relative; font-size: .92rem; }
.menu a::after { content: ""; position: absolute; left: 0; bottom: -.45rem; width: 100%; height: 1px; background: var(--amber); transform: scaleX(0); transform-origin: left; transition: transform .22s ease; }
.menu a:hover::after, .menu .current-menu-item a::after { transform: scaleX(1); }
.menu-toggle { display: none; border: 1px solid rgba(242,238,229,.35); background: rgba(18,19,21,.35); color: var(--paper); padding: .6rem .8rem; font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; cursor: pointer; }
.mobile-menu { display: none; }
.page-hero { position: relative; min-height: min(82svh, 52rem); display: flex; align-items: flex-end; padding: 13rem 0 7.5rem; overflow: hidden; background: var(--blue-deep); isolation: isolate; }
.page-hero::before { content: ""; position: absolute; inset: -3%; z-index: -2; background: url("../images/sydney-served-hero.webp") 62% center / cover no-repeat; filter: saturate(.72) contrast(1.04); opacity: .7; animation: slowPush 14s ease-out both; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(7,12,15,.98) 0%, rgba(7,12,15,.82) 46%, rgba(7,12,15,.16) 76%), linear-gradient(0deg, rgba(5,8,10,.94) 0%, transparent 52%); }
.page-hero-the-story::before { background-image: url("../images/the-story-hero.webp"); background-position: 64% center; }
.page-hero-the-people::before, .page-hero-stories::before { background-image: url("../images/the-people-hero.webp"); background-position: 72% center; filter: saturate(.68) hue-rotate(4deg); }
.page-hero-the-journey::before { background-image: url("../images/the-journey-hero.webp"); background-position: 64% center; filter: saturate(.82) sepia(.04); }
.page-hero-get-involved::before { background-image: url("../images/get-involved-hero.webp"); background-position: 76% center; filter: saturate(.72) brightness(.82); }
.page-hero-contact::before { background-image: url("../images/contact-hero.webp"); background-position: 76% center; filter: saturate(.62) brightness(.78); }
.page-hero-privacy::before { background-image: url("../images/privacy-hero.webp"); background-position: 70% center; filter: saturate(.52) brightness(.78); }
.page-hero-layout { display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: end; }
.page-hero-copy { max-width: 68rem; }
.page-hero h1 { max-width: 62rem; margin: 0; font-family: var(--font-display); font-size: clamp(6.5rem, 13vw, 13rem); line-height: .72; letter-spacing: -.04em; text-transform: uppercase; text-wrap: balance; }
.page-hero-statement { max-width: 40rem; margin: 2.2rem 0 0; color: rgba(242,238,229,.82); font-size: clamp(1.05rem, 1.8vw, 1.35rem); line-height: 1.5; }
.page-code { min-width: 7rem; padding-left: 1.5rem; border-left: 1px solid rgba(242,238,229,.28); display: grid; align-self: end; }
.page-code span { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(242,238,229,.52); }
.page-code strong { font-family: var(--font-display); font-size: 5.5rem; line-height: .9; color: var(--paper); }
.page-code time { color: var(--amber-light); font-family: var(--font-display); font-size: 1.5rem; }
.page-hero-timeline { position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%); display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: center; color: rgba(242,238,229,.62); font-size: .62rem; }
.page-hero-timeline i { position: relative; height: 1px; background: rgba(242,238,229,.3); }
.page-hero-timeline i::before, .page-hero-timeline i::after { content: ""; position: absolute; top: -5px; width: 1px; height: 11px; background: rgba(242,238,229,.28); }
.page-hero-timeline i::before { left: 25%; }
.page-hero-timeline i::after { left: 75%; }
.page-hero-timeline b { position: absolute; left: 34%; width: 9px; height: 9px; border: 1px solid var(--amber-light); border-radius: 50%; background: var(--charcoal); box-shadow: 0 0 0 5px rgba(214,154,74,.1); }
.page-transition { position: relative; overflow: hidden; padding: clamp(4rem, 7vw, 7rem) 0; background: var(--amber); color: var(--ink); }
.page-transition::after { content: attr(data-chapter); position: absolute; right: -1rem; bottom: -3.5rem; font-family: var(--font-display); font-size: 13rem; color: rgba(23,26,28,.07); }
.page-transition p { max-width: 70rem; margin: 0; font-family: var(--font-display); font-size: clamp(3.5rem, 7vw, 7.4rem); line-height: .9; letter-spacing: -.02em; text-transform: uppercase; color: var(--ink); }
.page-the-people .page-transition, .page-contact .page-transition { background: var(--harbour); }
.page-privacy .page-transition { background: var(--paper); }
.entry-section { background: var(--charcoal); color: var(--paper); padding: clamp(6rem, 10vw, 10rem) 0; }
.cinematic-entry-grid { display: grid; grid-template-columns: minmax(10rem, 15rem) minmax(0, 1fr); gap: clamp(4rem, 9vw, 10rem); align-items: start; }
.page-rail { position: sticky; top: 3rem; display: grid; grid-template-columns: 1fr auto; gap: .8rem; align-items: end; }
.page-rail-number { grid-column: 1 / -1; font-family: var(--font-display); font-size: clamp(6rem, 10vw, 9rem); line-height: .75; color: var(--paper); }
.page-rail-line { grid-column: 1 / -1; position: relative; height: 1px; margin: 1rem 0; background: rgba(242,238,229,.25); }
.page-rail-line i { position: absolute; left: 34%; top: -5px; width: 1px; height: 11px; background: var(--amber); }
.page-rail-line b { position: absolute; right: 0; top: -4px; width: 9px; height: 9px; border: 1px solid var(--amber); border-radius: 50%; }
.page-rail time { font-family: var(--font-display); font-size: 1.6rem; color: var(--amber-light); }
.page-rail p { margin: 0; font-size: .65rem; letter-spacing: .14em; text-align: right; text-transform: uppercase; color: rgba(242,238,229,.5); }
.entry-content { width: min(920px, 100%); }
.entry-content > *:first-child { margin-top: 0; }
.entry-content h2 { margin: 0 0 3rem; color: var(--paper); font-size: clamp(4rem, 8vw, 8rem); }
.entry-content h3 { margin: 5.5rem 0 1.4rem; padding-top: 2rem; border-top: 1px solid rgba(242,238,229,.22); font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4.8rem); line-height: .9; text-transform: uppercase; color: var(--paper); }
.entry-content h3::before { content: "•"; display: block; margin-bottom: 1rem; font-family: var(--font-body); font-size: 1rem; color: var(--amber); }
.entry-content p, .entry-content li { color: rgba(242,238,229,.7); font-size: 1.08rem; }
.entry-content p { max-width: 47rem; }
.entry-content .lead { max-width: 52rem; color: var(--paper); font-size: clamp(1.45rem, 2.6vw, 2rem); line-height: 1.5; }
.entry-content ul { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin: 3rem 0; padding: 1px; list-style: none; background: rgba(242,238,229,.2); }
.entry-content li { min-height: 10rem; margin: 0; padding: 1.6rem; background: var(--charcoal); }
.entry-content li strong { display: block; margin-bottom: .6rem; color: var(--amber-light); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.entry-content a { color: var(--amber-light); border-bottom: 1px solid rgba(214,154,74,.5); }
.entry-content .form-wrap { width: 100%; max-width: 920px; margin-top: 6rem; padding: clamp(2rem, 5vw, 4rem); border: 1px solid rgba(242,238,229,.2); background: var(--blue-deep); color: var(--paper); box-shadow: 1.5rem 1.5rem 0 rgba(112,138,155,.12); }
.entry-content .contact-form label { color: rgba(242,238,229,.75); }
.entry-content .contact-form input, .entry-content .contact-form select, .entry-content .contact-form textarea { color: var(--paper); }
.entry-content .contact-form p { color: rgba(242,238,229,.62); }
.form-wrap { width: 100%; }
.form-notice { margin: 0 0 1.5rem; padding: 1rem 1.2rem; border-left: 3px solid var(--amber); background: rgba(214,154,74,.1); color: var(--paper) !important; }
.form-notice-error { border-color: #d97867; background: rgba(217,120,103,.12); }
.honeypot { position: absolute !important; left: -9999px !important; }
.contact-form label em { color: var(--amber-light); font-style: normal; }
.form-privacy { margin: .4rem 0 0; font-size: .73rem; line-height: 1.6; color: rgba(242,238,229,.52); }
.page-hero-story::before { background-image: var(--story-hero, url("../images/the-people-hero.webp")); }
.story-archive { padding: clamp(6rem, 10vw, 10rem) 0; background: var(--charcoal); color: var(--paper); }
.story-listing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; padding: 1px; background: rgba(242,238,229,.2); }
.story-listing article { min-height: 30rem; background: var(--charcoal); padding: 1.5rem; transition: background .25s ease, transform .25s ease; }
.story-listing article:hover { z-index: 1; background: var(--blue-deep); transform: translateY(-4px); }
.story-listing img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; filter: saturate(.68) contrast(1.04); }
.story-listing .status { margin: 1.5rem 0 .5rem; color: var(--amber-light); font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; }
.story-listing h2 { margin: 0 0 1rem; font-family: var(--font-display); font-size: clamp(2.5rem, 4vw, 4rem); line-height: .9; text-transform: uppercase; }
.story-listing p { color: rgba(242,238,229,.65); }
.empty-stories { max-width: 52rem; padding: 4rem 0; color: rgba(242,238,229,.68); font-size: clamp(1.4rem, 2.8vw, 2rem); }
.not-found { position: relative; min-height: 100svh; display: grid; place-items: center; overflow: hidden; padding: 10rem 1rem 5rem; background: linear-gradient(90deg, rgba(7,12,15,.94), rgba(7,12,15,.52)), url("../images/sydney-served-hero.webp") 65% center / cover no-repeat; text-align: center; }
.not-found h1 { font-family: var(--font-display); font-size: clamp(5rem, 15vw, 11rem); line-height: .8; text-transform: uppercase; }
.not-found p { max-width: 36rem; }
.wp-caption, .gallery-caption { max-width: 100%; }
.wp-caption-text { font-size: .8rem; }
.alignwide { width: min(1100px, 100%); }
.alignfull { width: 100vw; margin-left: calc(50% - 50vw); }
.bypostauthor { display: block; }

@media (max-width: 980px) {
  .primary-menu { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-menu { position: fixed; inset: 0; z-index: 4; padding: 8rem 1.5rem 2rem; background: rgba(18,19,21,.98); }
  .mobile-menu:not([hidden]) { display: block; }
  .mobile-menu .menu { display: grid; gap: 0; }
  .mobile-menu .menu li { border-bottom: 1px solid var(--line); }
  .mobile-menu .menu a { display: block; padding: 1.1rem 0; font-family: var(--font-display); font-size: 2.4rem; text-transform: uppercase; }
  .mobile-menu .menu a::after { display: none; }
  body.menu-open { overflow: hidden; }
  .page-hero { min-height: 44rem; }
  .page-hero-layout { grid-template-columns: 1fr; gap: 2rem; }
  .page-code { position: absolute; right: 1.5rem; bottom: 5rem; min-width: 6rem; }
  .page-code strong { font-size: 4.5rem; }
  .page-hero-copy { padding-right: 7rem; }
  .cinematic-entry-grid { grid-template-columns: 1fr; gap: 4rem; }
  .page-rail { position: static; max-width: 16rem; }
  .entry-content { width: 100%; }
  .story-listing { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

@media (max-width: 640px) {
  .page-hero { min-height: 42rem; padding: 10rem 0 6rem; }
  .page-hero::before { background-position: 72% center; }
  .page-hero-copy { padding-right: 0; padding-bottom: 6.5rem; }
  .page-hero h1 { font-size: clamp(5.2rem, 25vw, 8rem); }
  .page-hero-statement { font-size: 1rem; }
  .page-code { left: 1rem; right: auto; bottom: 4.8rem; display: flex; align-items: baseline; gap: .8rem; border-left: 0; padding-left: 0; }
  .page-code strong { font-size: 3.5rem; }
  .page-code time { font-size: 1.3rem; }
  .page-hero-timeline { bottom: 1.25rem; }
  .page-transition p { font-size: clamp(3rem, 14vw, 4.6rem); }
  .cinematic-entry-grid { gap: 3rem; }
  .entry-content h2 { font-size: clamp(3.5rem, 17vw, 5.2rem); }
  .entry-content h3 { margin-top: 4rem; font-size: clamp(2.5rem, 13vw, 4rem); }
  .entry-content ul { grid-template-columns: 1fr; }
  .entry-content li { min-height: auto; }
  .story-listing { grid-template-columns: 1fr; }
  .entry-content .form-wrap { width: calc(100% + 2rem); margin-left: -1rem; padding: 1.5rem 1rem; }
}
