/* ==========================================================================
   KING VERSANT — shared stylesheet
   Design system v1
   Color tokens are interpretations of the official colors of the Big Three:
   Garfield (Purple & White), Franklin (Forest Green & Black),
   Rainier Beach (Blue & Orange).
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */

:root {
  /* School-derived brand colors */
  --garfield-purple: #5B2A86;
  --franklin-green:  #1E4D2B;
  --beach-blue:      #1D4E89;
  --beach-orange:    #E87722;

  /* Neutrals */
  --ink-black:     #141414;
  --archive-cream: #F4EFE6;
  --paper-white:   #FFFFFF;

  /* Derived tones (kept few on purpose) */
  --purple-deep:  #3E1C5C;
  --purple-tint:  #EFE7F5;
  --green-tint:   #E6EEE8;
  --cream-shade:  #E8E0D3;
  --ink-muted:    #4A4640;
  --rule:         #D8CFC0;

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino,
                  Georgia, "Times New Roman", serif;
  --font-body:    "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI",
                  Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Fluid type scale */
  --step--1: clamp(0.86rem, 0.83rem + 0.15vw, 0.94rem);
  --step-0:  clamp(1.05rem, 1.00rem + 0.25vw, 1.19rem);
  --step-1:  clamp(1.25rem, 1.15rem + 0.50vw, 1.55rem);
  --step-2:  clamp(1.55rem, 1.35rem + 1.00vw, 2.10rem);
  --step-3:  clamp(1.95rem, 1.60rem + 1.75vw, 3.00rem);
  --step-4:  clamp(2.40rem, 1.80rem + 3.00vw, 4.40rem);

  /* Space */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;

  /* Layout */
  --measure: 40rem;      /* readable line length */
  --wrap:    72rem;      /* page max width */
  --wrap-wide: 84rem;

  --radius: 4px;
  --shadow-soft: 0 1px 2px rgba(20, 20, 20, .06),
                 0 8px 24px rgba(20, 20, 20, .06);
}

/* --------------------------------------------------------------------------
   2. RESET / BASE
   -------------------------------------------------------------------------- */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--archive-cream);
  color: var(--ink-black);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.012em;
  margin: 0 0 var(--space-2);
  text-wrap: balance;
}

h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); color: var(--purple-deep); }
h3 { font-size: var(--step-1); }

p { margin: 0 0 var(--space-2); }
p:last-child { margin-bottom: 0; }

a { color: var(--beach-blue); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--garfield-purple); }

:focus-visible {
  outline: 3px solid var(--beach-orange);
  outline-offset: 3px;
  border-radius: 2px;
}

hr {
  border: 0;
  height: 1px;
  background: var(--rule);
  margin: var(--space-4) 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--garfield-purple);
  color: var(--paper-white);
  padding: var(--space-1) var(--space-2);
  z-index: 100;
}
.skip-link:focus { left: 0; }

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

/* --------------------------------------------------------------------------
   3. LAYOUT HELPERS
   -------------------------------------------------------------------------- */

.wrap      { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap-wide { width: min(100% - 2.5rem, var(--wrap-wide)); margin-inline: auto; }
.measure   { max-width: var(--measure); }

.section       { padding-block: var(--space-5); }
.section--tight{ padding-block: var(--space-4); }
.section--cream-deep { background: var(--cream-shade); }
.section--paper      { background: var(--paper-white); }
.section--purple {
  background: var(--purple-deep);
  color: var(--archive-cream);
}
.section--purple h2, .section--purple h3 { color: var(--paper-white); }
.section--purple a { color: #CDB6E4; }
.section--purple a:hover { color: var(--paper-white); }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--franklin-green);
  margin: 0 0 var(--space-1);
}
.section--purple .eyebrow { color: var(--beach-orange); }

.lede {
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--ink-muted);
}
.section--purple .lede { color: #E4DCCF; }

/* --------------------------------------------------------------------------
   4. HEADER + NAV
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 239, 230, 0.94);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--rule);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  min-height: 4.25rem;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--garfield-purple);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  white-space: nowrap;
}
.wordmark:hover { color: var(--purple-deep); }
.wordmark__crown { width: 1.35rem; height: auto; flex: none; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font: inherit;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: transparent;
  color: var(--garfield-purple);
  border: 1px solid var(--garfield-purple);
  border-radius: var(--radius);
  padding: .45rem .7rem;
  cursor: pointer;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--space-3);
}

.site-nav a {
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-black);
  text-decoration: none;
  padding-block: .35rem;
  border-bottom: 2px solid transparent;
  display: inline-block;
}
.site-nav a:hover { color: var(--garfield-purple); border-bottom-color: var(--garfield-purple); }
.site-nav a[aria-current="page"] {
  color: var(--garfield-purple);
  border-bottom-color: var(--beach-orange);
}

@media (max-width: 46.25rem) {
  .site-nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: var(--archive-cream);
    border-bottom: 1px solid var(--rule);
    padding: var(--space-2) 1.25rem var(--space-3);
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav li + li { border-top: 1px solid var(--rule); }
  .site-nav a { display: block; padding: .8rem 0; border-bottom: 0; }
}

@media (min-width: 46.3125rem) {
  .nav-toggle { display: none; }
}

/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background-color .15s ease, color .15s ease;
}
.btn:active { transform: translateY(1px); }

/* Orange = the one loud CTA per screen. Ink text on orange clears WCAG AA. */
.btn--cta {
  background: var(--beach-orange);
  color: var(--ink-black);
}
.btn--cta:hover { background: #D06A16; color: var(--ink-black); }

.btn--green {
  background: var(--franklin-green);
  color: var(--paper-white);
}
.btn--green:hover { background: #163A20; color: var(--paper-white); }

.btn--ghost {
  background: transparent;
  color: var(--garfield-purple);
  border-color: var(--garfield-purple);
}
.btn--ghost:hover { background: var(--garfield-purple); color: var(--paper-white); }

.section--purple .btn--ghost,
.hero .btn--ghost { color: var(--paper-white); border-color: rgba(255,255,255,.85); }
.section--purple .btn--ghost:hover,
.hero .btn--ghost:hover { background: var(--paper-white); color: var(--purple-deep); border-color: var(--paper-white); }

/* --------------------------------------------------------------------------
   6. MEDIA SLOTS (Higgsfield assets drop in here)
   -------------------------------------------------------------------------- */

.slot {
  position: relative;
  margin: 0;
  background: var(--cream-shade);
  border-radius: var(--radius);
  overflow: hidden;
}
.slot > img,
.slot > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slot--16x9  { aspect-ratio: 16 / 9; }
.slot--21x9  { aspect-ratio: 21 / 9; }
.slot--4x5   { aspect-ratio: 4 / 5; }

/* Visible placeholder, revealed by main.js when the asset file is missing. */
.slot__placeholder {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  text-align: center;
  padding: var(--space-2);
  background:
    repeating-linear-gradient(
      45deg,
      var(--cream-shade) 0 12px,
      #DED5C6 12px 24px
    );
  border: 2px dashed var(--garfield-purple);
  border-radius: var(--radius);
  color: var(--purple-deep);
  font-size: var(--step--1);
  line-height: 1.4;
}
.slot.is-missing > img,
.slot.is-missing > video { display: none; }
.slot.is-missing .slot__placeholder { display: flex; }

.slot__placeholder code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  background: var(--paper-white);
  padding: .15rem .4rem;
  border-radius: 2px;
  font-size: .85em;
}

.figure-note {
  font-size: var(--step--1);
  color: var(--ink-muted);
  margin-top: var(--space-1);
  font-style: italic;
}
.section--purple .figure-note { color: #C9BFB0; }

/* Diaspora map: portrait plate beside a list of where people landed. */
.map-layout {
  display: grid;
  gap: var(--space-4);
  align-items: center;
  margin-top: var(--space-4);
}
@media (min-width: 46.3125rem) {
  .map-layout { grid-template-columns: minmax(0, 25rem) minmax(0, 1fr); }
}
.map-plate {
  background: var(--archive-cream);
  border-radius: var(--radius);
  padding: var(--space-3);
  box-shadow: var(--shadow-soft);
  max-width: 25rem;
  margin-inline: auto;
}
.map-plate img { width: 100%; height: auto; }

.landed { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: var(--space-3); }
.landed li {
  break-inside: avoid;
  padding: .35rem 0 .35rem 1.4rem;
  position: relative;
  font-size: var(--step-0);
}
.landed li::before {
  content: "";
  position: absolute;
  left: 0; top: .85em;
  width: .55rem; height: .55rem;
  border-radius: 50%;
  background: var(--beach-orange);
}
.landed li.is-origin::before { box-shadow: 0 0 0 4px rgba(232,119,34,.28); }

/* Woven texture band — the AI weave sits on cream via multiply so its
   white ground drops out and the threads stay quiet behind text. */
.weave-band {
  position: relative;
  background: var(--archive-cream);
  overflow: hidden;
  isolation: isolate;
}
.weave-band__texture {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("assets/connect-weave.jpg");
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply;
  opacity: .26;
}
.weave-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to right,
    rgba(244,239,230,.30) 0%,
    rgba(244,239,230,.66) 50%,
    rgba(244,239,230,.86) 100%);
}

/* --------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  background: var(--purple-deep);
  color: var(--paper-white);
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img,
.hero__media video {
  width: 100%; height: 100%; object-fit: cover;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to bottom,
      rgba(30, 14, 45, .72) 0%,
      rgba(30, 14, 45, .55) 45%,
      rgba(30, 14, 45, .85) 100%);
}

.hero__inner {
  padding-block: clamp(5rem, 14vh, 9rem);
  max-width: 46rem;
}

.hero h1 {
  color: var(--paper-white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: var(--step-2);
  line-height: 1.25;
  color: #F3E7D6;
  margin: 0 0 var(--space-2);
}

.hero__sub {
  font-size: var(--step-1);
  color: #E4DCCF;
  max-width: 34rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

/* --------------------------------------------------------------------------
   8. CARDS / DOORS / GRIDS
   -------------------------------------------------------------------------- */

.grid {
  display: grid;
  gap: var(--space-3);
}
@media (min-width: 46.3125rem) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
}

.door {
  display: flex;
  flex-direction: column;
  background: var(--paper-white);
  border: 1px solid var(--rule);
  border-top: 5px solid var(--garfield-purple);
  border-radius: var(--radius);
  padding: var(--space-3);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-soft);
  transition: transform .15s ease, box-shadow .15s ease;
}
.door:hover {
  transform: translateY(-3px);
  box-shadow: 0 2px 4px rgba(20,20,20,.07), 0 14px 34px rgba(20,20,20,.10);
  color: inherit;
}
.door--green { border-top-color: var(--franklin-green); }
.door--blue  { border-top-color: var(--beach-blue); }

.door h3 { color: var(--purple-deep); margin-bottom: var(--space-1); }
.door--green h3 { color: var(--franklin-green); }
.door--blue h3  { color: var(--beach-blue); }

.door p { color: var(--ink-muted); font-size: var(--step-0); flex: 1; }

.door__more {
  margin-top: var(--space-2);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--beach-blue);
}
.door:hover .door__more { color: var(--garfield-purple); }

/* --------------------------------------------------------------------------
   9. BIG THREE PANELS
   -------------------------------------------------------------------------- */

.big-three {
  display: grid;
  gap: var(--space-2);
  grid-template-columns: 1fr;
}
@media (min-width: 40rem) {
  .big-three { grid-template-columns: repeat(3, 1fr); }
}

.school {
  padding: var(--space-3);
  border-radius: var(--radius);
  color: var(--paper-white);
  display: flex;
  flex-direction: column;
  gap: .35rem;
  min-height: 100%;
}
.school h3 {
  color: var(--paper-white);
  font-size: var(--step-1);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* Monogram patch — letterforms only, no mascot art.
   The tile is the site's paper surface; the letter carries the school's
   primary color and the bar underneath carries the secondary. Nothing
   crosses over: orange appears on Rainier Beach and nowhere else. */
.school__monogram {
  align-self: flex-start;
  background: var(--paper-white);
  border-radius: 3px;
  padding: .55rem .95rem .45rem;
  margin-bottom: var(--space-2);
  box-shadow: 0 2px 0 rgba(0,0,0,.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  min-width: 4.75rem;
}
.school__letter {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: .01em;
  display: block;
}
.school__rule {
  display: block;
  width: 100%;
  height: 5px;
  border-radius: 1px;
}

.school--garfield .school__letter { color: var(--garfield-purple); }
.school--garfield .school__rule   { background: var(--garfield-purple); }

.school--franklin .school__letter { color: var(--franklin-green); }
.school--franklin .school__rule   { background: var(--ink-black); }

.school--beach .school__letter    { color: var(--beach-blue); letter-spacing: -.02em; }
.school--beach .school__rule      { background: var(--beach-orange); }
.school__mascot {
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .9;
}
.school p { font-size: var(--step--1); line-height: 1.55; margin: .4rem 0 0; }

.school--garfield { background: var(--garfield-purple); }
.school--franklin { background: var(--franklin-green); }
.school--beach    { background: var(--beach-blue); border-bottom: 6px solid var(--beach-orange); }

.school__colors {
  display: flex;
  gap: .3rem;
  margin-top: auto;
  padding-top: var(--space-2);
}
.school__swatch {
  width: 1.5rem; height: .5rem; border-radius: 1px;
  border: 1px solid rgba(255,255,255,.5);
}

/* --------------------------------------------------------------------------
   10. TIMELINE / FACT BLOCKS
   -------------------------------------------------------------------------- */

.fact {
  border-left: 4px solid var(--beach-orange);
  padding: var(--space-1) 0 var(--space-1) var(--space-3);
  margin: var(--space-3) 0;
}
.fact__number {
  font-family: var(--font-display);
  font-size: var(--step-3);
  line-height: 1;
  color: var(--purple-deep);
  display: block;
  margin-bottom: .25rem;
}
.section--purple .fact__number { color: var(--beach-orange); }
.fact p { font-size: var(--step-0); color: var(--ink-muted); margin: 0; }
.section--purple .fact p { color: #E4DCCF; }

.pullquote {
  font-family: var(--font-display);
  font-size: var(--step-2);
  line-height: 1.3;
  color: var(--purple-deep);
  border-top: 2px solid var(--rule);
  border-bottom: 2px solid var(--rule);
  padding: var(--space-3) 0;
  margin: var(--space-4) 0;
  max-width: 36rem;
}
.section--purple .pullquote { color: var(--paper-white); border-color: rgba(255,255,255,.28); }

/* --------------------------------------------------------------------------
   11. FORMS
   -------------------------------------------------------------------------- */

.signup {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: flex-end;
  margin-top: var(--space-3);
}
.field { display: flex; flex-direction: column; gap: .35rem; flex: 1 1 16rem; }
.field label {
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--franklin-green);
}
.field input, .field select {
  font: inherit;
  font-size: var(--step-0);
  padding: .7rem .8rem;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--paper-white);
  color: var(--ink-black);
  width: 100%;
}
.field input:focus, .field select:focus { border-color: var(--garfield-purple); }

.form-note { font-size: var(--step--1); color: var(--ink-muted); margin-top: var(--space-2); }

/* --------------------------------------------------------------------------
   12. PLACEHOLDER + SOURCES
   -------------------------------------------------------------------------- */

.ph {
  background: var(--purple-tint);
  border: 1px dashed var(--garfield-purple);
  border-radius: 2px;
  padding: .1em .4em;
  font-size: .92em;
  font-weight: 600;
  color: var(--purple-deep);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.sources { font-size: var(--step--1); color: var(--ink-muted); }
.sources ol { padding-left: 1.2rem; }
.sources li { margin-bottom: .5rem; }

.tag-soon {
  display: inline-block;
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--franklin-green);
  background: var(--green-tint);
  border: 1px solid var(--franklin-green);
  border-radius: 999px;
  padding: .25rem .8rem;
  margin-bottom: var(--space-2);
}

/* --------------------------------------------------------------------------
   13. FOOTER
   -------------------------------------------------------------------------- */

/* The schools' signature line. Garfield purple, Franklin green, then Rainier
   Beach's blue and orange together — so all three schools' actual colors are
   present and no school's color turns up under another's name. */
.school-line {
  height: 6px;
  background: linear-gradient(
    to right,
    var(--garfield-purple) 0 33.333%,
    var(--franklin-green)  33.333% 66.666%,
    var(--beach-blue)      66.666% 83.333%,
    var(--beach-orange)    83.333% 100%
  );
}

.site-footer {
  background: var(--ink-black);
  color: #CFC8BC;
  padding-block: var(--space-4);
  font-size: var(--step--1);
}
.site-footer a { color: #A9C4E6; text-decoration: none; }
.site-footer a:hover { color: var(--paper-white); text-decoration: underline; }

.site-footer__grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}
@media (min-width: 46.3125rem) {
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

.site-footer h4 {
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--paper-white);
  margin: 0 0 var(--space-1);
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .4rem; }

.site-footer__mark {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--paper-white);
  margin-bottom: var(--space-1);
}

.site-footer__legal {
  margin-top: var(--space-3);
  padding-top: var(--space-2);
  border-top: 1px solid #2E2E2E;
  color: #8F8A82;
}

/* --------------------------------------------------------------------------
   14. AERIAL PHOTOGRAPHS
   Real photographs, shot over King County by the founder's drone.
   These are the only photographic images on the site; everything else
   is illustration and labeled as such.
   -------------------------------------------------------------------------- */

.photo-strip {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
@media (min-width: 46.3125rem) {
  .photo-strip { grid-template-columns: repeat(3, 1fr); }
}
.photo-strip figure { margin: 0; }
.photo-strip img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.photo-band { margin: var(--space-4) 0 0; }
.photo-band img {
  width: 100%;
  height: auto;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.photo-band--tall img { aspect-ratio: 16 / 9; }
@media (max-width: 46.25rem) {
  .photo-band img, .photo-band--tall img { aspect-ratio: 4 / 3; }
}

/* --------------------------------------------------------------------------
   15. MOTION
   -------------------------------------------------------------------------- */

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

/* --------------------------------------------------------------------------
   16. PRINT
   -------------------------------------------------------------------------- */

@media print {
  .site-header, .site-footer, .hero__media, .nav-toggle { display: none !important; }
  body { background: #fff; color: #000; }
}
