/* ==========================================================================
   Kroon Charters — monochrome editorial system
   Black-and-white chrome, full-colour photography.
   Light by default; .inv flips the same tokens for dark bands.
   Display: Instrument Serif · Text: Instrument Sans
   ========================================================================== */

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

:root {
  /* Surfaces — paper */
  --bg:        #FAFAFA;
  --bg-2:      #F2F2F2;
  --bg-3:      #EBEBEB;
  --surface:   #E4E4E4;

  /* Lines */
  --line:      rgba(0, 0, 0, .12);
  --line-2:    rgba(0, 0, 0, .3);

  /* Type */
  --fg:        #131313;
  --fg-2:      #565656;
  --fg-3:      #858585;

  /* Emphasis */
  --hi:        #0A0A0A;
  --hi-soft:   rgba(0, 0, 0, .045);
  --on-hi:     #FAFAFA;

  /* Empty photo frames */
  --ph-1:      #E9E9E9;
  --ph-2:      #DCDCDC;
  --ph-3:      #D2D2D2;
  --icon:      rgba(0, 0, 0, .3);

  /* Form fields */
  --field:     rgba(0, 0, 0, .035);
  --field-2:   rgba(0, 0, 0, .065);
  --ph-text:   rgba(0, 0, 0, .3);

  --serif: 'Instrument Serif', Georgia, serif;
  --sans:  'Instrument Sans', 'Helvetica Neue', Helvetica, sans-serif;

  --wrap:      1100px;
  --wrap-mid:  820px;
  --gutter:    32px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* Dark bands — same tokens, flipped */
.inv {
  --bg:        #0E0E0E;
  --bg-2:      #151515;
  --bg-3:      #1B1B1B;
  --surface:   #1F1F1F;

  --line:      rgba(255, 255, 255, .13);
  --line-2:    rgba(255, 255, 255, .3);

  --fg:        #F4F4F4;
  --fg-2:      #ABABAB;
  --fg-3:      #7C7C7C;

  --hi:        #FFFFFF;
  --hi-soft:   rgba(255, 255, 255, .07);
  --on-hi:     #0E0E0E;

  --ph-1:      #232323;
  --ph-2:      #1A1A1A;
  --ph-3:      #131313;
  --icon:      rgba(255, 255, 255, .32);

  --field:     rgba(255, 255, 255, .045);
  --field-2:   rgba(255, 255, 255, .08);
  --ph-text:   rgba(255, 255, 255, .24);

  background: var(--bg);
  color: var(--fg);
}

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.65;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Fine film grain — fixed, non-interactive */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .022;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: var(--hi); color: var(--on-hi); }

/* --------------------------------------------------------------------------
   Primitives
   -------------------------------------------------------------------------- */

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--mid { max-width: var(--wrap-mid); }

section { padding: clamp(76px, 9vw, 136px) 0; position: relative; }

.band-2 { background: var(--bg-2); }
.band-3 { background: var(--bg-3); }
.band-edge { border-top: 1px solid var(--line); }

.eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--fg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  height: 1px;
  width: 30px;
  background: linear-gradient(to right, transparent, var(--line-2));
}
.eyebrow::after { background: linear-gradient(to left, transparent, var(--line-2)); }
.eyebrow--plain::before, .eyebrow--plain::after { display: none; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; letter-spacing: -.012em; }
.h-xl { font-size: clamp(46px, 8vw, 98px); line-height: 1.02; }
.h-lg { font-size: clamp(33px, 4.8vw, 58px); line-height: 1.1; }
.h-md { font-size: clamp(25px, 3vw, 36px); line-height: 1.18; }
em { font-style: italic; }
.hi { font-style: italic; color: var(--hi); }

.lede {
  font-size: clamp(15.5px, 1.4vw, 17.5px);
  line-height: 1.76;
  color: var(--fg-2);
}

.section-head { text-align: center; max-width: 620px; margin-inline: auto; }
.section-head .lede { margin-top: 20px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 15px 34px;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .28s var(--ease), color .28s var(--ease),
              border-color .28s var(--ease), transform .2s var(--ease);
}
.btn--solid { background: var(--hi); color: var(--on-hi); }
.btn--solid:hover { background: var(--fg); transform: translateY(-2px); }
.btn--line { background: transparent; color: var(--fg); border-color: var(--line-2); }
.btn--line:hover { border-color: var(--hi); background: var(--hi-soft); transform: translateY(-2px); }

/* --------------------------------------------------------------------------
   Photo frames — composed empty state until a photo is supplied
   -------------------------------------------------------------------------- */

.frame {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  isolation: isolate;
}
.frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--ph-1) 0%, var(--ph-2) 55%, var(--ph-3) 100%);
}
.frame-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  text-align: center;
  padding: 20px;
}
.frame-ph svg { width: 28px; height: 28px; color: var(--icon); }
.frame-ph b {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s var(--ease), transform 1.4s var(--ease);
}
.frame img.is-loaded { opacity: 1; transform: scale(1); }
.frame img.is-missing { display: none; }

.frame--portrait { aspect-ratio: 2 / 3; }
.frame--photo    { aspect-ratio: 3 / 2; }
.frame--wide     { aspect-ratio: 16 / 9; }

/* --------------------------------------------------------------------------
   Navigation — three headers, centred wordmark
   -------------------------------------------------------------------------- */

.nav {
  --nav-fg:   #131313;
  --nav-fg-2: #565656;
  --nav-hi:   #0A0A0A;
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: 78px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease), height .4s var(--ease);
}
/* Over a dark hero the bar runs light until it sticks */
.over-hero .nav:not(.is-stuck) {
  --nav-fg:   #FFFFFF;
  --nav-fg-2: rgba(255, 255, 255, .82);
  --nav-hi:   #FFFFFF;
}
.nav.is-stuck {
  height: 66px;
  background: rgba(250, 250, 250, .86);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border-bottom-color: rgba(0, 0, 0, .1);
}
.nav-inner {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav-mark {
  grid-column: 2;
  justify-self: center;
  font-family: var(--serif);
  font-size: 21px;
  letter-spacing: .02em;
  color: var(--nav-fg);
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 11px;
  transition: color .3s var(--ease);
}
.nav-mark svg { width: 16px; height: 16px; color: var(--nav-fg-2); flex: none; }
.nav-menu { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-menu--left { grid-column: 1; }
.nav-menu--right { grid-column: 3; justify-content: flex-end; }
.nav-menu a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--nav-fg-2);
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  transition: color .25s var(--ease);
}
.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 12px;
  height: 1px; width: 0;
  background: var(--nav-hi);
  transition: width .32s var(--ease);
}
.nav-menu a:hover { color: var(--nav-hi); }
.nav-menu a:hover::after { width: 100%; }
.nav-menu a[aria-current="page"] { color: var(--nav-hi); }

.nav-burger {
  display: none;
  grid-column: 1;
  justify-self: start;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  flex-direction: column; align-items: flex-start; justify-content: center; gap: 6px;
}
.nav-burger i {
  display: block; width: 22px; height: 1px; background: var(--nav-fg);
  transition: transform .3s var(--ease), opacity .25s var(--ease), background .3s var(--ease);
}
.is-open .nav-burger i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.is-open .nav-burger i:nth-child(2) { opacity: 0; }
.is-open .nav-burger i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* Drawer open sits on paper, so the bars go dark regardless of the hero */
.is-open .nav:not(.is-stuck) { --nav-fg: #131313; --nav-fg-2: #565656; --nav-hi: #0A0A0A; }
.is-open .nav { background: rgba(250, 250, 250, .96); }

.nav-drawer {
  position: fixed;
  inset: 78px 0 auto 0;
  background: rgba(250, 250, 250, .98);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 0, 0, .12);
  display: none;
  flex-direction: column;
  padding: 12px 0 26px;
  z-index: 199;
}
.is-open .nav-drawer { display: flex; }
.nav-drawer a {
  font-family: var(--serif);
  font-size: 26px;
  color: #131313;
  text-decoration: none;
  padding: 13px var(--gutter);
  border-bottom: 1px solid rgba(0, 0, 0, .07);
}
.nav-drawer a:last-child { border-bottom: none; }

.skip {
  position: fixed; top: -200px; left: 16px; z-index: 500;
  background: #0A0A0A; color: #FAFAFA;
  padding: 12px 22px; font-size: 13px; font-weight: 600; text-decoration: none;
}
.skip:focus { top: 12px; }

/* --------------------------------------------------------------------------
   Hero — colour photograph, scrim only where the type sits
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 0 110px;
  overflow: hidden;
  background: #0E0E0E;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(1.04) contrast(1.02);
}
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0, 0, 0, .42) 0%,
      rgba(0, 0, 0, .16) 30%,
      rgba(0, 0, 0, .2) 62%,
      rgba(0, 0, 0, .5) 100%),
    radial-gradient(ellipse 78% 58% at 50% 52%, rgba(0, 0, 0, .34) 0%, rgba(0, 0, 0, 0) 100%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; color: #FFFFFF; }
.hero .eyebrow { color: rgba(255, 255, 255, .8); }
.hero .eyebrow::before { background: linear-gradient(to right, transparent, rgba(255, 255, 255, .5)); }
.hero .eyebrow::after  { background: linear-gradient(to left,  transparent, rgba(255, 255, 255, .5)); }
.hero h1 { margin: 0 auto; max-width: 14ch; text-shadow: 0 3px 40px rgba(0, 0, 0, .55); }
.hero h1 .hi { color: #FFFFFF; }
.hero .lede {
  max-width: 48ch; margin: 28px auto 0;
  color: rgba(255, 255, 255, .9);
  text-shadow: 0 2px 22px rgba(0, 0, 0, .5);
}
.hero .btn--solid { background: #FFFFFF; color: #0E0E0E; }
.hero .btn--solid:hover { background: rgba(255, 255, 255, .86); }
.hero .btn { margin-top: 40px; }

.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll span { font-size: 9px; letter-spacing: .28em; text-transform: uppercase; color: rgba(255, 255, 255, .68); }
.hero-scroll i { display: block; width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255, 255, 255, .55), transparent); }

/* --------------------------------------------------------------------------
   Statement block
   -------------------------------------------------------------------------- */

.statement { text-align: center; }
.statement .h-lg { max-width: 17ch; margin: 0 auto; }
.statement .h-md { max-width: 20ch; margin: 0 auto; }
.statement .lede { max-width: 54ch; margin: 26px auto 0; }
.statement .btn { margin-top: 36px; }

/* --------------------------------------------------------------------------
   Charter types — two cards
   -------------------------------------------------------------------------- */

.charters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  margin-top: 62px;
}
.charter { text-decoration: none; display: block; }
.charter:nth-child(2) { margin-top: 44px; }
.charter .frame { margin-bottom: 22px; }
.charter:hover .frame img.is-loaded { transform: scale(1.05); }
.charter h3 { font-size: 30px; line-height: 1.18; margin-bottom: 10px; }
.charter p { font-size: 15px; color: var(--fg-2); line-height: 1.72; max-width: 40ch; }
.charter-more {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--fg-3);
  transition: color .28s var(--ease), gap .28s var(--ease);
}
.charter:hover .charter-more { color: var(--hi); gap: 14px; }

.aside-note {
  margin-top: 76px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 15px;
  color: var(--fg-2);
  max-width: 62ch;
  margin-inline: auto;
}
.aside-note b { color: var(--fg); font-weight: 500; }

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */

.about-media {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  margin-top: 58px;
  align-items: start;
}
.about-media .frame:last-child { margin-top: 56px; }
.about-copy { max-width: 60ch; margin: 60px auto 0; }
.about-copy p { color: var(--fg-2); font-size: 16.5px; line-height: 1.85; }
.about-copy p + p { margin-top: 20px; }
.about-copy .drop::first-letter {
  font-family: var(--serif);
  float: left;
  font-size: 60px;
  line-height: .84;
  padding: 5px 12px 0 0;
  color: var(--hi);
}
.signature {
  margin-top: 40px;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--fg);
}
.signature small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 9.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-top: 10px;
}

/* --------------------------------------------------------------------------
   Full-bleed feature band
   -------------------------------------------------------------------------- */

.feature { padding: 0; overflow: hidden; }
.feature-media { position: relative; height: clamp(320px, 54vh, 540px); }
.feature-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 46%;
  opacity: 0;
  transition: opacity 1.1s var(--ease);
}
.feature-media img.is-loaded { opacity: 1; }
.feature-media img.is-missing { display: none; }
.feature-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, .05) 45%, rgba(0, 0, 0, .55) 100%);
}
.feature-cap {
  position: absolute;
  left: 0; right: 0; bottom: clamp(26px, 5vw, 46px);
  z-index: 2;
  text-align: center;
  color: #FFFFFF;
}
.feature-cap p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(21px, 2.6vw, 31px);
  line-height: 1.35;
  max-width: 24ch;
  margin-inline: auto;
  text-shadow: 0 2px 26px rgba(0, 0, 0, .6);
}

/* --------------------------------------------------------------------------
   Journal
   -------------------------------------------------------------------------- */

.filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 38px; }
.filter {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--fg-3);
  font-family: var(--sans);
  font-size: 9.5px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  padding: 11px 22px; min-height: 42px; cursor: pointer;
  transition: color .26s var(--ease), border-color .26s var(--ease), background .26s var(--ease);
}
.filter:hover { color: var(--fg); border-color: var(--line-2); }
.filter[aria-pressed="true"] { color: var(--hi); border-color: var(--line-2); background: var(--hi-soft); }

.entries { margin-top: 52px; display: grid; gap: 26px; grid-template-columns: repeat(2, 1fr); }
.entry {
  display: flex; flex-direction: column;
  background: var(--bg-2);
  border: 1px solid var(--line);
  text-decoration: none;
  transition: border-color .35s var(--ease), transform .35s var(--ease), background .35s var(--ease);
}
.entry:hover { border-color: var(--line-2); transform: translateY(-4px); background: var(--bg-3); }
.entry .frame { aspect-ratio: 3 / 2; }
.entry:hover .frame img.is-loaded { transform: scale(1.05); }
.entry-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.entry-meta {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-size: 9px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  color: var(--fg-3); margin-bottom: 14px;
}
.tag { color: var(--fg); }
.dot { width: 3px; height: 3px; border-radius: 50%; background: var(--fg-3); }
.entry h3 { font-size: 24px; line-height: 1.22; margin-bottom: 11px; }
.entry p { font-size: 14.5px; color: var(--fg-2); line-height: 1.72; }
.entry-read {
  margin-top: auto; padding-top: 20px;
  font-size: 9.5px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--fg-3);
  display: inline-flex; align-items: center; gap: 8px;
  transition: color .28s var(--ease), gap .28s var(--ease);
}
.entry:hover .entry-read { color: var(--hi); gap: 14px; }

.is-hidden { display: none !important; }

/* Interior page masthead — clears the fixed navigation */
.page-head {
  padding-top: clamp(140px, 17vh, 196px);
  padding-bottom: clamp(44px, 6vw, 72px);
  text-align: center;
}
.page-head .lede { max-width: 52ch; margin: 24px auto 0; }

/* Long-form entries */
.article { padding: clamp(56px, 7vw, 92px) 0; border-top: 1px solid var(--line); }
.article:first-of-type { border-top: none; }
.article-head { text-align: center; max-width: 700px; margin-inline: auto; }
.article-head h2 { margin-top: 14px; }
.article .frame { margin: 42px auto 0; max-width: 880px; }
.article-copy { max-width: 60ch; margin: 42px auto 0; }
.article-copy p { color: var(--fg-2); font-size: 16.5px; line-height: 1.85; }
.article-copy p + p { margin-top: 20px; }
.article-copy blockquote {
  margin: 32px 0;
  padding: 2px 0 2px 26px;
  border-left: 1px solid var(--line-2);
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--fg);
}
.article-sign {
  margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--line);
  font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--fg-3);
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
}

/* Empty state for guest notes */
.awaiting {
  margin-top: 48px;
  border: 1px dashed var(--line-2);
  background: var(--hi-soft);
  padding: clamp(40px, 6vw, 60px) 32px;
  text-align: center;
}
.awaiting svg { width: 32px; height: 32px; color: var(--icon); margin: 0 auto 18px; }
.awaiting h3 { font-size: 26px; margin-bottom: 12px; }
.awaiting p { color: var(--fg-2); max-width: 46ch; margin: 0 auto; font-size: 15px; }
.awaiting .btn { margin-top: 26px; }

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */

.form { margin-top: 46px; display: grid; gap: 20px; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field label {
  font-size: 9px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--fg-3);
}
.field input, .field select, .field textarea {
  background: var(--field);
  border: 1px solid var(--line);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 15px;
  padding: 14px 16px;
  width: 100%;
  outline: none;
  border-radius: 0;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--line-2);
  background: var(--field-2);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ph-text); }
.field select { appearance: none; cursor: pointer; }
.field select option { background: var(--bg); color: var(--fg); }
.field textarea { resize: vertical; min-height: 118px; }
.field-note { font-size: 12px; color: var(--fg-3); }
.hp { position: absolute; left: -9999px; }

.form .btn { justify-self: center; margin-top: 6px; }
.form-msg {
  display: none;
  border: 1px solid var(--line-2);
  background: var(--hi-soft);
  color: var(--fg);
  padding: 18px 22px;
  font-size: 14.5px;
  line-height: 1.65;
  text-align: center;
}
.form-msg.is-shown { display: block; }
.form-msg.is-error { border-style: dashed; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.foot { border-top: 1px solid var(--line); padding: 62px 0 32px; }
.foot-top { display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; }
.foot-mark { font-family: var(--serif); font-size: 23px; display: flex; align-items: center; gap: 11px; }
.foot-mark svg { width: 17px; height: 17px; color: var(--fg-2); }
.foot-links { display: flex; gap: 28px; flex-wrap: wrap; list-style: none; }
.foot-links a {
  font-size: 10px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  color: var(--fg-2); text-decoration: none; transition: color .25s var(--ease);
}
.foot-links a:hover { color: var(--hi); }
.foot-bar {
  margin-top: 46px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 12px; color: var(--fg-3);
}
.foot-bar a { text-decoration: none; transition: color .25s var(--ease); }
.foot-bar a:hover { color: var(--hi); }

/* --------------------------------------------------------------------------
   Motion
   -------------------------------------------------------------------------- */

.rv { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.rv.is-in { opacity: 1; transform: none; }
.rv-1 { transition-delay: .09s; }
.rv-2 { transition-delay: .18s; }
.rv-3 { transition-delay: .27s; }

.lift { opacity: 0; transform: translateY(22px); animation: lift .95s var(--ease) forwards; }
.lift-1 { animation-delay: .15s; }
.lift-2 { animation-delay: .32s; }
.lift-3 { animation-delay: .5s; }
.lift-4 { animation-delay: .68s; }
@keyframes lift { to { opacity: 1; transform: none; } }

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--hi);
  outline-offset: 3px;
}

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

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 860px) {
  :root { --gutter: 22px; }

  .nav-menu { display: none; }
  .nav, .nav.is-stuck { height: 78px; }
  .nav-burger { display: flex; }

  .hero { min-height: 92svh; padding: 118px 0 92px; }

  .charters { grid-template-columns: 1fr; gap: 46px; }
  .charter:nth-child(2) { margin-top: 0; }
  .charter .frame { aspect-ratio: 4 / 3; }

  .about-media { grid-template-columns: 1fr; }
  .about-media .frame:last-child { margin-top: 0; }

  .entries { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .foot-top { flex-direction: column; align-items: flex-start; gap: 26px; }
  .foot-bar { justify-content: center; text-align: center; }

  .article .frame { max-width: none; }
}

@media (max-width: 480px) {
  .hero .btn { width: 100%; }
  .about-copy .drop::first-letter { font-size: 48px; }
  .feature-media { height: 300px; }
}
