/* ==========================================================================
   Rose Creek Crossing HOA — "The Association Record"

   Design thesis: an HOA is a small civic institution, not a condo sales
   brochure. So this reads like a well-set public record — a community
   newspaper nameplate, printed notices, a ruled directory — rather than a
   SaaS landing page.

   Deliberate departures from the generic AI-generated look:
     · Pine green is dominant, brass is the single accent. No purple, no indigo.
     · Warm paper ground, never plain white.
     · Fraunces + Atkinson Hyperlegible. No Inter, no Playfair.
     · Hairline rules carry the structure. No drop shadows on white cards.
     · Left-aligned and asymmetric. Nothing centred by default.
     · The services block is a numbered index, not three rounded cards.
     · No emoji standing in for icons.
   ========================================================================== */


:root {
  /* --- Ground: warm cream, kept light --- */
  --paper:        #f8f5ee;
  --paper-2:      #f1ece0;
  --paper-3:      #e6dfd0;

  /* --- Pine green is the dominant colour, carried over from the first
         build. Deep enough to anchor, warm enough to sit on cream. --- */
  --green:        #2f6b47;
  --green-deep:   #1d4830;
  --green-mid:    #4a8c63;
  --green-pale:   #dfe9e0;
  --green-tint:   rgba(47, 107, 71, 0.07);

  /* --- Brass: the one sharp accent. Warm, and neither red nor blue. --- */
  --brass:        #a8792b;
  --brass-soft:   #c2913d;

  --ink:          #1b211c;
  --ink-soft:     #4f5951;
  --ink-faint:    #7d867e;

  --rule:         #d3ccba;
  --rule-soft:    #e2dbca;

  /* The logo's own navy — used only where the logo itself appears. */
  --logo-navy:    #004a80;

  --display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --body: "Atkinson Hyperlegible", "Helvetica Neue", Arial, sans-serif;

  /* Depth. Two-layer, warm-toned and tight — a card resting on paper, not the
     weightless 0.1-opacity blur-on-white that reads as generic. */
  --lift-1: 0 1px 2px rgba(52, 44, 26, 0.07), 0 3px 10px rgba(52, 44, 26, 0.06);
  --lift-2: 0 2px 4px rgba(52, 44, 26, 0.09), 0 10px 26px rgba(52, 44, 26, 0.10);
  --lift-3: 0 4px 10px rgba(52, 44, 26, 0.11), 0 22px 48px rgba(52, 44, 26, 0.14);

  --wrap: 1340px;
  --gut: clamp(1.15rem, 4vw, 2.5rem);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

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

body {
  margin: 0;
  position: relative;
  /* A shallow tonal gradient rather than one flat hex — paper is never one value. */
  background:
    linear-gradient(178deg, #fbf9f3 0%, var(--paper) 38%, #f3efe5 100%)
    fixed;
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.02rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Paper grain. Fixed, screen-wide, barely there — it stops large flat fields
   reading as a solid colour swatch and gives the ground a surface. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.055'/%3E%3C/svg%3E");
}
body > * { position: relative; z-index: 1; }

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

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  font-variation-settings: "SOFT" 20, "WONK" 1;
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
  color: var(--green-deep);
}

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

/* Fraunces' own ampersand is a decorative form that reads as a stray glyph at
   heading sizes. Set ampersands in the body face instead — a normal thing to
   do in typesetting, and it keeps "CC&Rs" legible. */
.amp {
  font-family: var(--body);
  font-weight: 400;
  font-size: 0.86em;
  padding-inline: 0.02em;
}

a { color: var(--green-mid); text-underline-offset: 3px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.wrap-tight { max-width: 900px; }

/* --- Tracked label: the small uppercase line that titles a block --------- */
.label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 0.9rem;
  display: block;
}
.label-green { color: var(--green-mid); }
.label-paper { color: rgba(242, 238, 228, 0.65); }

/* Rules do the structural work that shadows would do elsewhere. Borders are
   applied directly on the elements that need them — see .directory, .roster,
   .spec and .dateline — so there are no standalone rule helpers here. */

/* ==========================================================================
   Masthead — the community's nameplate, set like a newspaper's
   ========================================================================== */

.masthead { background: var(--paper); padding-top: 0; }

.masthead-plate { border-top: 6px solid var(--green); }

.masthead-inner {
  padding-block: clamp(1.2rem, 2.6vw, 1.75rem) clamp(0.7rem, 1.5vw, 0.95rem);
  text-align: center;
}

.masthead-mark {
  width: min(360px, 68vw);
  margin: 0 auto;
}

.masthead-compact .masthead-inner { padding-block: 1.15rem 0.85rem; }
.masthead-compact .masthead-mark { width: min(230px, 52vw); }

/* Dateline: the strip of facts under the nameplate */
.dateline {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding-block: 0.6rem;
}
.dateline ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.dateline li { position: relative; }
.dateline li + li::before {
  content: "";
  position: absolute;
  left: -0.78rem;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--brass);
  transform: translateY(-50%);
}

/* ==========================================================================
   Navigation — a slim green bar that sticks
   ========================================================================== */

.nav-bar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--green);
  color: var(--paper);
}

.nav-bar .wrap { display: flex; align-items: center; gap: 1rem; min-height: 52px; }

.nav-home {
  display: none;
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--paper);
  text-decoration: none;
  margin-right: auto;
  white-space: nowrap;
}
.nav-bar.compact .nav-home { display: block; }

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0 auto 0 0;
  padding: 0;
}
.nav-bar.compact .nav { margin-left: 0; }

.nav a:not(.portal) {
  display: block;
  padding: 0.45rem 0.72rem;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(242, 238, 228, 0.74);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s;
  white-space: nowrap;
}
.nav a:not(.portal):hover { color: var(--paper); border-bottom-color: var(--brass-soft); }
.nav a:not(.portal)[aria-current="page"] { color: var(--paper); border-bottom-color: var(--brass); }

.portal {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.95rem;
  background: var(--brass);
  color: #fff;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.18s;
  white-space: nowrap;
}
.portal:hover { background: var(--brass-soft); }
.portal::after { content: "↗"; font-size: 0.85em; }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid rgba(242, 238, 228, 0.35);
  color: var(--paper);
  padding: 0.35rem 0.6rem;
  font: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
}

/* ==========================================================================
   Notice board — real information, above the fold, instead of a sales hero
   ========================================================================== */

/* The lead: the notice set over the photograph, the way a front page runs its
   lead story across the main picture. One image, one story, one screen — rather
   than stacking a decorative hero above a separate notice band. */
.notices {
  position: relative;
  overflow: hidden;
  border-top: 5px solid var(--green);
  box-shadow: inset 0 -14px 26px -14px rgba(20, 34, 24, 0.55),
              0 10px 26px -12px rgba(52, 44, 26, 0.28);
  background: var(--green-pale);
}

.notices .lead-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
}

/* Weighted left so the text side is legible and the right half of the
   photograph stays bright enough to actually read as a photograph. */
.notices::before {
  content: "";
  position: absolute;
  inset: 0;
  /* z-index matters: ::before is inserted as the FIRST child, so without it the
     photograph paints over the scrim and the text sits on bare image. */
  z-index: 1;
  background:
    linear-gradient(100deg,
      rgba(18, 40, 27, 0.93) 0%,
      rgba(18, 40, 27, 0.86) 34%,
      rgba(18, 40, 27, 0.55) 62%,
      rgba(18, 40, 27, 0.34) 100%);
}

/* Over the photograph the text inverts. */
.notices .label { color: var(--brass-soft); }
.notices h1, .notices h2 { color: #fff; text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4); }

.notices .wrap { position: relative; z-index: 2; padding-block: clamp(2.75rem, 6vw, 4.25rem); }

.notice-grid {
  display: grid;
  gap: 1.75rem 3rem;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  align-items: start;
}

.notice-lead h1,
.notice-lead h2 {
  font-size: clamp(1.85rem, 4.2vw, 2.9rem);
  margin-bottom: 0.6rem;
}
.notice-lead p { color: rgba(255, 255, 255, 0.88); max-width: 48ch; }

.notice-meta { border-left: 1px solid rgba(255, 255, 255, 0.32); padding-left: 1.75rem; }
.notice-meta dl { margin: 0; display: grid; gap: 0.85rem; }
.notice-meta dt {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.notice-meta dd {
  margin: 0.1rem 0 0;
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
}
.notice-meta dd a { color: #fff; }

.link-brass {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.15rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--brass);
  text-decoration: none;
  border-bottom: 2px solid var(--brass);
  padding-bottom: 3px;
  transition: gap 0.18s, color 0.18s;
}
.link-brass:hover { gap: 0.75rem; color: #fff; }

/* ==========================================================================
   Sections
   ========================================================================== */

.section { padding-block: clamp(2.25rem, 4.6vw, 3.4rem); }
.section-paper2 { background: var(--paper-2); }
.section-ruled { border-top: 1px solid var(--rule); }

.section-head { max-width: 62ch; margin-bottom: clamp(1.35rem, 2.8vw, 1.85rem); }
.section-head h2 { font-size: clamp(1.75rem, 4vw, 2.7rem); margin-bottom: 0.4rem; }
.section-head p { color: var(--ink-soft); font-size: 1.06rem; margin: 0; }

/* --- Page banner for interior pages --- */
/* Interior page banners are banded, not blacked out — same logic as the
   notice board. Keeps the whole site light. */
.page-banner {
  background: var(--green-pale);
  border-top: 5px solid var(--green);
  border-bottom: 1px solid var(--rule);
}
.page-banner .wrap { padding-block: clamp(2.1rem, 5vw, 3.1rem); }
.page-banner h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 0.45rem; }
.page-banner p { color: var(--ink-soft); max-width: 60ch; margin: 0; font-size: 1.06rem; }

/* ==========================================================================
   Quick links — the three errands, compact

   These were tall panels carrying a paragraph, a three-row spec table and a
   full-width button apiece: about 350px of height each for information nobody
   reads on the way to clicking. Cut to a single compact tile — label, name, one
   line, arrow — which buys back the vertical room the lead photograph needs.
   Still no rounded corners, no shadow, no icon.
   ========================================================================== */

/* Real gaps rather than 1px hairlines, so each tile is its own object with its
   own shadow instead of three panes of one flat slab. */
.quicklinks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.8vw, 1.35rem);
}

/* Each tile is a printed card: a solid colour header with the name reversed out
   of it, then a cream body. The header block is what stops it reading as a flat
   rectangle with text on it — the card has two materials, not one. */
.qlink {
  display: flex;
  flex-direction: column;
  min-height: 232px;
  background: #fdfbf6;
  border: 1px solid var(--rule-soft);
  box-shadow: var(--lift-1);
  padding: 0;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.24s, transform 0.24s;
}
.qlink:hover { box-shadow: var(--lift-2); transform: translateY(-3px); }

.qlink .qname {
  display: block;
  padding: 1.15rem 1.5rem 1.2rem;
  background: var(--green);
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1.24rem, 2.1vw, 1.48rem);
  font-weight: 600;
  line-height: 1.14;
  /* A hairline of the accent along the bottom of the header, so the two
     materials meet on an edge instead of just changing colour. */
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.16);
}
.qlink:nth-child(2) .qname { background: var(--brass); }
.qlink:nth-child(3) .qname { background: var(--green-deep); }

.qlink .qnote {
  padding: 1.3rem 1.5rem 0;
  font-size: 0.94rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.qlink .qgo {
  margin: auto 1.5rem 1.35rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--rule-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--brass);
}
.qlink .qgo span { transition: transform 0.2s; font-size: 1.15em; }
.qlink:hover .qgo { color: var(--green-deep); border-top-color: var(--green-mid); }
.qlink:hover .qgo span { transform: translateX(5px); }

/* ==========================================================================
   Directory — a numbered index, deliberately not a row of cards
   ========================================================================== */

.directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.8vw, 1.35rem);
}

.dir-row {
  display: flex;
  flex-direction: column;
  background: #fdfbf6;
  border: 1px solid var(--rule-soft);
  border-top: 3px solid var(--green-mid);
  box-shadow: var(--lift-1);
  padding: 1.3rem 1.4rem 1.2rem;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.24s, transform 0.24s;
}
.dir-row:hover { box-shadow: var(--lift-2); transform: translateY(-3px); }

.dir-num {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brass);
  font-variant-numeric: tabular-nums;
  margin-bottom: 0.5rem;
}

.dir-body h3 { font-size: clamp(1.1rem, 1.9vw, 1.3rem); margin-bottom: 0.3rem; }
.dir-body p { color: var(--ink-soft); margin: 0 0 1rem; font-size: 0.9rem; line-height: 1.45; }

.dir-go {
  margin-top: auto;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--brass);
}
.dir-go::after { content: " \2192"; }
.dir-row:hover .dir-go { color: var(--green-deep); }

/* ==========================================================================
   Facilities — two abreast, not two stacked spreads

   These were full-width alternating image/text spreads: about 1100px of height
   between them. Side by side they cost roughly half that and use the width the
   page already has.
   ========================================================================== */

.facilities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.6vw, 2rem);
}

.facility {
  display: flex;
  flex-direction: column;
  background: #fdfbf6;
  border: 1px solid var(--rule-soft);
  border-top: 5px solid var(--green);
  box-shadow: var(--lift-1);
}
.facility:nth-child(2) { border-top-color: var(--brass); }

.facility img { width: 100%; aspect-ratio: 2 / 1; object-fit: cover; }

.facility-body { padding: 1.15rem 1.4rem 1.3rem; display: flex; flex-direction: column; flex: 1; }
.facility-body h3 { font-size: clamp(1.35rem, 2.2vw, 1.65rem); margin-bottom: 0.4rem; }
.facility-body > p { color: var(--ink-soft); font-size: 0.96rem; }
.facility-body .spec { margin-top: auto; padding-top: 0.35rem; }

/* --- Spec list: a label/value pair per row, ruled. Used in the facility cards,
       the clubhouse facilities table and the covenants comparison. --------- */
.spec {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
  border-top: 1px solid var(--rule);
}
.spec li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.42rem 0;
  border-bottom: 1px solid var(--rule-soft);
  font-size: 0.88rem;
}
.spec li span:first-child {
  flex: none;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: var(--ink-faint);
}
.spec li span:last-child { text-align: right; color: var(--ink); }

/* --- Two-column prose block, used on the CC&Rs page --------------------- */
.spread {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.35rem, 3vw, 2.5rem);
  align-items: start;
}
.spread-body h3 { font-size: clamp(1.35rem, 2.4vw, 1.75rem); margin-bottom: 0.45rem; }
.spread-body p { color: var(--ink-soft); }
@media (max-width: 760px) { .spread { grid-template-columns: minmax(0, 1fr); } }

/* ==========================================================================
   Roster — the board, set as a credits block
   ========================================================================== */

.roster {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(1.5rem, 3vw, 3rem);
  border-top: 2px solid var(--green);
}
.roster-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: baseline;
  padding: 0.95rem 0.25rem;
  border-bottom: 1px solid var(--rule);
}
.roster-row .name { font-family: var(--display); font-size: 1.25rem; font-weight: 600; color: var(--green-deep); }
.roster-row .role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.roster-row.vacant .name { color: var(--brass); font-style: italic; }

/* ==========================================================================
   Panels, notes, documents
   ========================================================================== */

.panel { background: #fdfbf6; border: 1px solid var(--rule-soft); box-shadow: var(--lift-1); padding: clamp(1.35rem, 4vw, 2.35rem); }
.panel-green { background: var(--green); color: var(--paper); border-color: var(--green); }
.panel-split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
}
@media (max-width: 760px) { .panel-split { grid-template-columns: minmax(0, 1fr); } }
.panel-green h2, .panel-green h3 { color: var(--paper); }
.panel-green p { color: rgba(242, 238, 228, 0.82); }

.standfirst {
  font-family: var(--display);
  font-size: clamp(1.12rem, 2.4vw, 1.4rem);
  line-height: 1.4;
  color: var(--green-deep);
  border-left: 3px solid var(--brass);
  padding-left: 1.15rem;
  margin-bottom: 1.75rem;
}

.note {
  border-top: 2px solid var(--brass);
  background: var(--paper-2);
  padding: 1.1rem 1.3rem;
  margin-bottom: 1.5rem;
}
.note strong { color: var(--brass); letter-spacing: 0.04em; }

/* Long-form policy text */
.prose h2 { font-size: 1.6rem; margin-top: 2.4rem; }
.prose h3 {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 2rem;
  margin-bottom: 0.6rem;
}
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose ul { margin: 0 0 1.2rem; padding-left: 1.15rem; }
.prose li { margin-bottom: 0.4rem; }
.prose li::marker { color: var(--brass); }

/* --- Embeds --- */
.embed { border: 1px solid var(--rule-soft); background: #fff; box-shadow: var(--lift-2); }
.embed iframe { display: block; width: 100%; border: 0; }
.embed-doc iframe { height: min(80vh, 880px); }
.embed-map iframe { height: min(70vh, 620px); }

.film { max-width: 400px; border: 1px solid var(--green); background: #000; box-shadow: var(--lift-3); }
.film video { display: block; width: 100%; }

.placeholder {
  border: 1px dashed var(--rule);
  border-top: 2px solid var(--brass);
  background: var(--paper-2);
  padding: clamp(2rem, 6vw, 3.25rem);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.placeholder h3 { font-size: 1.45rem; }
.placeholder p { color: var(--ink-soft); max-width: 52ch; }

/* ==========================================================================
   Buttons + forms
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 1.35rem;
  border: 1px solid var(--green);
  background: var(--green);
  color: var(--paper);
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.btn:hover { background: var(--green-deep); }
.btn-brass { background: var(--brass); border-color: var(--brass); color: #fff; }
.btn-brass:hover { background: var(--brass-soft); border-color: var(--brass-soft); }
.btn-ghost { background: transparent; color: var(--green); }
.btn-ghost:hover { background: var(--green); color: var(--paper); }
.btn-block { width: 100%; justify-content: center; }

.field { margin-bottom: 1.15rem; }
.field label {
  display: block;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}
.field .req { color: var(--brass); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.68rem 0.8rem;
  font-family: var(--body);
  font-size: 0.98rem;
  color: var(--ink);
  background: #fbf9f4;
  border: 1px solid var(--rule);
  border-radius: 0;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: inset 0 -2px 0 var(--brass);
}
.field textarea { min-height: 132px; resize: vertical; }
.form-note { font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.85rem; }

/* ==========================================================================
   Colophon (footer)
   ========================================================================== */

.colophon { background: var(--green-deep); color: rgba(242, 238, 228, 0.72); font-size: 0.92rem; }
.colophon .wrap { padding-block: 2.75rem 1.75rem; }
.colophon-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.colophon h4 {
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: rgba(242, 238, 228, 0.45);
  margin-bottom: 0.85rem;
}
.colophon ul { list-style: none; margin: 0; padding: 0; }
.colophon li { margin-bottom: 0.42rem; }
.colophon a { color: rgba(242, 238, 228, 0.72); text-decoration: none; }
.colophon a:hover { color: #fff; text-decoration: underline; }
.colophon-mark img { width: 168px; filter: brightness(0) invert(1); opacity: 0.72; margin-bottom: 0.9rem; }
.colophon-bottom {
  margin-top: 2.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(242, 238, 228, 0.16);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.5rem;
  justify-content: space-between;
  font-size: 0.79rem;
  color: rgba(242, 238, 228, 0.5);
}

/* ==========================================================================
   Load choreography — one staggered reveal, not scattered micro-interactions
   ========================================================================== */

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

.reveal { animation: rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both; }
.reveal-1 { animation-delay: 0.05s; }
.reveal-2 { animation-delay: 0.16s; }
.reveal-3 { animation-delay: 0.27s; }
.reveal-4 { animation-delay: 0.38s; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .nav-bar .wrap { position: relative; flex-wrap: wrap; }
  .nav-home { display: block; margin-right: auto; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.4rem var(--gut) 1rem;
    background: var(--green);
    border-top: 1px solid rgba(242, 238, 228, 0.16);
  }
  .nav.open { display: flex; }
  .nav a:not(.portal) { padding: 0.72rem 0; border-bottom: 1px solid rgba(242, 238, 228, 0.1); }
  .nav .portal { margin-top: 0.85rem; justify-content: center; }

  .notice-grid { grid-template-columns: minmax(0, 1fr); }
  .notice-meta { border-left: 0; border-top: 1px solid rgba(242, 238, 228, 0.28); padding-left: 0; padding-top: 1.35rem; }

  .spread, .spread-flip { grid-template-columns: minmax(0, 1fr); }
  .spread-flip .spread-media { order: 0; }

  .quicklinks { grid-template-columns: minmax(0, 1fr); }
  .facilities { grid-template-columns: minmax(0, 1fr); }
  .directory { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .roster { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 620px) {
  .directory { grid-template-columns: minmax(0, 1fr); }
  .roster-row { grid-template-columns: minmax(0, 1fr); gap: 0.1rem; }
  .notices::after { display: none; }
  .spread-media::before { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
