/* =========================================================
   MULTI-PAGE ADDITIONS (nav, scroll cue, interior pages)
   ========================================================= */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-template-columns: none;
  transition: background 0.4s ease, padding 0.4s ease;
}
.nav.scrolled {
  background: rgba(9, 7, 5, 0.9);
  padding-top: 16px;
  padding-bottom: 16px;
}
.navLogo { display: inline-flex; }
.navLinks { display: flex; align-items: center; gap: 22px; }
.navLinks a {
  color: var(--white);
  opacity: 0.86;
  transition: opacity 0.25s ease, color 0.25s ease;
}
.navLinks a:hover { opacity: 1; color: var(--gold); }
.navLinks a[aria-current="page"] { color: var(--gold); opacity: 1; }

.navToggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0;
}
.navToggle span {
  display: block;
  height: 2px;
  width: 26px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* scroll cue */
.scrollCue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 6;
  display: inline-grid;
  justify-items: center;
  gap: 10px;
  color: rgba(255, 250, 240, 0.82);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0;
  animation: cueIn 1s ease 1s forwards;
  transition: opacity 0.5s ease;
}
.scrollCue i {
  position: relative;
  width: 1px;
  height: 48px;
  background: rgba(216, 179, 74, 0.28);
  overflow: hidden;
}
.scrollCue i::after {
  content: "";
  position: absolute;
  left: 0;
  top: -60%;
  width: 1px;
  height: 60%;
  background: var(--gold);
  animation: cueRun 1.9s ease-in-out infinite;
}
.scrollCue.gone { opacity: 0 !important; pointer-events: none; }
@keyframes cueIn { to { opacity: 1; } }
@keyframes cueRun { 0% { transform: translateY(0); } 100% { transform: translateY(220%); } }

/* interior page hero */
.pageHero {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: end;
  padding: 140px 36px 56px;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
}
.pageHero .fullImage {
  filter: saturate(0.92) brightness(0.6) contrast(1.04);
}
.pageHero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(9, 7, 5, 0.82), rgba(9, 7, 5, 0.18) 62%),
    linear-gradient(0deg, rgba(9, 7, 5, 0.92), rgba(9, 7, 5, 0.1) 60%);
}
.pageHeroInner { width: min(1320px, 100%); margin: 0 auto; }
.pageHero h1 {
  margin: 14px 0 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.86;
  font-size: clamp(64px, 9vw, 150px);
  max-width: 1100px;
}
.pageHero .lead {
  max-width: 580px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

/* generic editorial section */
.block { padding: 12svh 36px; background: var(--ink); }
.block.cream { background: var(--cream); color: var(--ink); }
.blockInner { width: min(1320px, 100%); margin: 0 auto; }
.lede {
  max-width: 940px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.12;
  margin: 0;
}
.block.cream .lede { color: var(--ink); }
.body2col {
  margin-top: 7svh;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4vw 6vw;
}
.body2col p {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
}
.block.cream .body2col p { color: var(--muted-dark); }

/* editorial pillars (rows, never boxes) */
.pillars { margin-top: 8svh; display: grid; gap: 0; border-top: 1px solid rgba(255,250,240,0.16); }
.block.cream .pillars { border-color: rgba(9,7,5,0.16); }
.pillar {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: 3vw;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255,250,240,0.16);
  align-items: baseline;
}
.block.cream .pillar { border-color: rgba(9,7,5,0.16); }
.pillar h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1;
}
.pillar p { margin: 0; font-size: 16px; line-height: 1.7; color: var(--muted); }
.block.cream .pillar p { color: var(--muted-dark); }

/* gallery */
.galleryGrid {
  width: min(1500px, 100%);
  margin: 0 auto;
  columns: 3;
  column-gap: 16px;
}
.galleryGrid figure {
  margin: 0 0 16px;
  break-inside: avoid;
  overflow: hidden;
  background: var(--ink);
}
.galleryGrid img {
  width: 100%;
  display: block;
  transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.6s ease;
  filter: saturate(0.95) contrast(1.03);
}
.galleryGrid figure:hover img { transform: scale(1.04); filter: saturate(1.05) contrast(1.05); }

/* gallery reel feature block */
.galleryReelBlock {
  padding-top: 8svh;
  padding-bottom: 4svh;
}
.galleryReelInner {
  width: min(1500px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}
.galleryReelInner .kicker {
  margin: 0;
}
.galleryReelTitle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(40px, 6vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--gold);
}
.galleryReelLead {
  margin: 0 0 12px;
  max-width: 640px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.galleryReelFrame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  overflow: hidden;
  border: 1px solid rgba(216, 179, 74, 0.18);
}
.galleryReel {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: var(--ink);
}

/* nominees / credits-style list */
.creditGroup { margin-top: 9svh; }
.creditGroup:first-of-type { margin-top: 6svh; }
.creditHead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,250,240,0.2);
}
.creditHead h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1;
}
.creditHead span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.creditList { display: grid; gap: 0; }
.credit {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.55fr);
  gap: 3vw;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255,250,240,0.12);
  align-items: baseline;
}
.credit .name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.04;
}
.credit .judgeField {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.block.cream .credit .judgeField { color: var(--gold-2); }
.block.cream .kicker { color: var(--gold-2); }
.block.cream .judgeBody .judgeField { color: var(--gold-2); }
.block.cream .judgeBody h3 { color: var(--ink); }
.block.cream .judgeBody .bio { color: var(--muted-dark); }
.credit .bio { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }

/* contrast safety: dark text/borders when credits sit on cream */
.block.cream .creditHead h2,
.block.cream .credit .name { color: var(--ink); }
.block.cream .credit .bio { color: var(--muted-dark); }
.block.cream .creditHead { border-color: rgba(9, 7, 5, 0.22); }
.block.cream .credit { border-color: rgba(9, 7, 5, 0.12); }
.block.cream .creditHead span { color: var(--gold-2); }
.block.cream .nomNames span small { color: var(--gold-2); }

/* judges editorial grid */
.judgesIntro {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.94;
  max-width: 980px;
}
.judgesGrid {
  margin-top: 8svh;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7svh 5vw;
}
.judge {
  display: grid;
  grid-template-columns: minmax(160px, 0.7fr) minmax(0, 1.4fr);
  gap: 28px;
  align-items: start;
}
.judgePortrait {
  position: relative;
  overflow: hidden;
}
.judgePortrait::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 30%;
  background: linear-gradient(0deg, rgba(9,7,5,0.55), transparent);
  pointer-events: none;
}
.judgePortrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(0.96) contrast(1.04);
  display: block;
}
.judgeBody { padding-top: 8px; }
.judgeBody .judgeField {
  margin: 0 0 12px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.judgeBody h3 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.04;
  color: var(--cream);
}
.judgeBody .bio {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
}
.block.cream .judgeBody h3 { color: var(--ink); }
.block.cream .judgeBody .bio { color: var(--muted-dark); }
.block.cream .judgeBody .judgeField { color: var(--gold-2); }

@media (max-width: 900px) {
  .judgesGrid { grid-template-columns: 1fr; gap: 6svh; }
  .judge { grid-template-columns: 1fr; gap: 18px; }
  .judgePortrait img { aspect-ratio: 5 / 5; }
  .judgesIntro { font-size: clamp(40px, 10vw, 60px); }
}

/* 2026 nominees: swipeable editorial reel */
.pageHeroHint {
  margin: 18px 0 0;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
}
.nomReel {
  padding: 8svh 0 4svh;
  background: var(--ink);
  color: var(--cream);
}

/* AMARI Icon block (per-year hero on /nominees)
   Magazine-cover layout: portrait centered, headline + lede below. */
.iconBlock {
  background: var(--ink);
  color: var(--cream);
  padding: 9svh 28px 8svh;
  text-align: center;
}
.iconInner {
  width: min(1100px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 4vw, 52px);
}
.iconPortrait {
  position: relative;
  width: min(560px, 86vw);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 6px;
  background: #0c0a08;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.65);
}
.iconPortrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.iconCopy {
  max-width: 64ch;
}
.iconCopy .kicker {
  color: var(--gold);
  letter-spacing: 0.18em;
  margin: 0 0 14px;
}
.iconCopy h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(44px, 5.4vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
  color: var(--cream);
}
.iconLede {
  font-size: clamp(16px, 1.15vw, 18.5px);
  line-height: 1.7;
  color: rgba(247, 237, 219, 0.88);
  margin: 0 auto;
}
@media (max-width: 700px) {
  .iconBlock { padding: 6svh 22px 5svh; }
  .iconCopy h2 { font-size: clamp(38px, 9vw, 54px); }
}

/* Year picker (2025 / 2026 toggle on /nominees) */
.yearPicker {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 6svh 24px 0;
  background: var(--ink);
}
.yearPill {
  appearance: none;
  background: transparent;
  border: 1px solid rgba(216, 179, 74, 0.45);
  color: var(--cream);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}
.yearPill:hover { background: rgba(216, 179, 74, 0.08); }
.yearPill.is-active {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.nomYear[hidden] { display: none; }
@media (max-width: 700px) {
  .yearPicker { padding: 4svh 18px 0; gap: 8px; }
  .yearPill { padding: 12px 18px; font-size: 11.5px; letter-spacing: 0.12em; }
}
.nomCat {
  padding: 6svh 0 7svh;
  border-top: 1px solid rgba(255, 250, 240, 0.08);
}
.nomCat:first-child { border-top: 0; padding-top: 2svh; }
.nomCatHead {
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: 0 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 4svh;
}
.nomCatHead .kicker {
  grid-column: 1 / -1;
  margin: 0 0 6px;
}
.nomCatHead h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 84px);
  font-weight: 600;
  line-height: 1;
  color: var(--cream);
}
.nomCount {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  padding-bottom: 6px;
}
.nomTrack {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 36px 22px;
  scrollbar-width: thin;
  scrollbar-color: rgba(216, 179, 74, 0.36) transparent;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
}
@media (min-width: 1100px) {
  /* shrink cards slightly on wide desktop so 4 fit comfortably inside the 1320 column */
  .nomCard { flex: 0 0 clamp(240px, 22vw, 300px); }
}
.nomTrack.dragging { cursor: grabbing; }
.nomTrack::-webkit-scrollbar { height: 2px; }
.nomTrack::-webkit-scrollbar-thumb { background: rgba(216, 179, 74, 0.36); border-radius: 2px; }
.nomCard {
  flex: 0 0 clamp(260px, 28vw, 380px);
  aspect-ratio: 4 / 5;
  position: relative;
  background: rgba(255, 250, 240, 0.04) center/cover no-repeat;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  scroll-snap-align: start;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.22, 0.7, 0.2, 1), filter 0.5s ease;
  filter: saturate(0.95) contrast(1.04);
}
.nomCard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 7, 5, 0.78), rgba(9, 7, 5, 0.06) 60%);
  pointer-events: none;
}
.nomCard::after {
  content: "Read";
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(9, 7, 5, 0.62);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border: 1px solid rgba(216, 179, 74, 0.32);
  border-radius: 999px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.nomCard:hover { filter: saturate(1) contrast(1.05) brightness(1.04); }
.nomCard:hover::after { opacity: 1; transform: translateY(0); }
.nomCard:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.nomName {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(22px, 1.6vw, 28px);
  line-height: 1.06;
  color: var(--cream);
  text-align: left;
  text-shadow: 0 2px 18px rgba(9, 7, 5, 0.55);
}
.nomFooterCta {
  padding: 12svh 36px 16svh;
  background: var(--ink);
}
.nomFooterCta .lede { color: var(--cream); max-width: 980px; }

/* modal reveal */
.nomModal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.nomModal[aria-hidden="false"] {
  pointer-events: auto;
  opacity: 1;
}
.nomModalScrim {
  position: absolute;
  inset: 0;
  background: rgba(9, 7, 5, 0.88);
  backdrop-filter: blur(8px);
}
body.modalOpen { overflow: hidden; }
.nomModalCard {
  position: relative;
  width: min(1080px, 94vw);
  max-height: 92svh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr);
  background: var(--ink);
  border: 1px solid rgba(216, 179, 74, 0.24);
  overflow: hidden;
  transform: translateY(20px) scale(0.985);
  transition: transform 0.55s cubic-bezier(0.22, 0.7, 0.2, 1);
}
.nomModal[aria-hidden="false"] .nomModalCard { transform: none; }
.nomModalImage {
  position: relative;
  overflow: hidden;
  background: #1a1310;
}
.nomModalImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: saturate(0.96) contrast(1.04);
}
.nomModalBody {
  padding: 56px 56px 48px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.nomModalCat {
  margin: 0 0 18px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.nomModalName {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 0.98;
  color: var(--cream);
  max-width: 12ch;
}
.nomModalBio {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  max-width: 56ch;
}
.nomModalNote {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 250, 240, 0.12);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.nomModalClose {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(216, 179, 74, 0.28);
  background: rgba(9, 7, 5, 0.58);
  backdrop-filter: blur(8px);
  color: var(--cream);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: border-color 0.35s ease, transform 0.35s ease;
}
.nomModalClose:hover { border-color: var(--gold); transform: rotate(90deg); }

@media (max-width: 900px) {
  .nomCatHead { padding: 0 22px; grid-template-columns: 1fr; gap: 10px; }
  .nomCatHead h2 { font-size: clamp(36px, 9vw, 56px); }
  .nomTrack { padding: 0 22px 18px; gap: 14px; }
  .nomCard { flex: 0 0 78vw; }
  .nomFooterCta { padding: 10svh 22px 14svh; }
  .nomModalCard { grid-template-columns: 1fr; max-height: 94svh; }
  .nomModalImage { aspect-ratio: 4 / 3; max-height: 38svh; }
  .nomModalBody { padding: 36px 28px 32px; }
  .nomModalName { font-size: clamp(36px, 9vw, 52px); }
}

/* nominee name lists (no boxes) */
.nomNames {
  margin-top: 22px;
  columns: 2;
  column-gap: 6vw;
}
.nomNames span {
  display: block;
  break-inside: avoid;
  padding: 12px 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1.2;
  color: var(--cream);
}
.block.cream .nomNames span { color: var(--ink); }
.nomNames span small {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
@media (max-width: 700px) {
  .nomNames { columns: 1; }
}

/* contact */
.contactGrid {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 6vw;
  align-items: start;
}
.field { display: grid; gap: 8px; margin-bottom: 20px; }
.field label {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: rgba(255, 250, 240, 0.05);
  border: 1px solid rgba(255, 250, 240, 0.22);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  padding: 14px 16px;
  border-radius: 2px;
  -webkit-appearance: none;
  appearance: none;
}
.field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 22px) 22px, calc(100% - 16px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
  cursor: pointer;
}
.field select option { background: var(--ink); color: var(--cream); }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus { outline: none; border-color: var(--gold); }
.contactStatus {
  margin: 14px 0 0;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}
.contactStatus.error { color: #e2a5a5; }
.contactStatus a { color: var(--gold); text-decoration: underline; }
.contactSubmit:disabled { opacity: 0.65; cursor: wait; }
.contactSubmit {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}
.contactAside p { color: var(--muted); font-size: 17px; line-height: 1.7; margin: 0; }
.contactAside a { color: var(--gold); }
.contactAside { display: grid; gap: 0; }
.contactChannel {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 250, 240, 0.14);
}
.contactChannel:first-of-type { padding-top: 0; }
.contactChannel:last-of-type { border-bottom: 0; }
.contactChannel .channelLabel {
  margin: 0 0 6px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.contactChannel .channelDesc {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.contactChannel .channelEmail {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.005em;
  text-decoration: none;
  border-bottom: 1px solid rgba(216, 179, 74, 0.3);
  padding-bottom: 4px;
  transition: border-color 0.4s ease, color 0.4s ease;
}
.contactChannel .channelEmail:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.contactChannel.partnerChannel .channelLabel { color: var(--gold); }
.contactChannel.featured {
  position: relative;
  padding: 30px 28px 34px;
  margin: 0 0 12px;
  border: 1px solid rgba(216, 179, 74, 0.32);
  background: linear-gradient(180deg, rgba(216, 179, 74, 0.06), rgba(216, 179, 74, 0.015) 60%, transparent);
}
.contactChannel.featured:first-of-type { padding-top: 30px; }
.contactChannel.featured .channelLabel {
  color: var(--gold);
  font-size: 12px;
}
.contactChannel.featured .channelHeadline {
  margin: 14px 0 14px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(26px, 2.3vw, 34px);
  line-height: 1.04;
  color: var(--cream);
  letter-spacing: -0.005em;
}
.contactChannel.featured .channelDesc { font-size: 14.5px; line-height: 1.7; }
.contactChannel.featured .channelEmail {
  margin-top: 6px;
  font-size: clamp(20px, 2vw, 26px);
}
.formIntro {
  margin: 0 0 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 250, 240, 0.12);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.formIntro a { color: var(--gold); }
.faq { margin-top: 7svh; border-top: 1px solid rgba(255,250,240,0.16); }
.faq details {
  border-bottom: 1px solid rgba(255,250,240,0.16);
  padding: 20px 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); }
.faq details[open] summary::after { content: "\2013"; }
.faq p { margin: 16px 0 0; color: var(--muted); font-size: 16px; line-height: 1.7; }

/* shared footer */
.siteFooter {
  background: var(--ink);
  color: var(--white);
  padding: 12svh 36px 8svh;
  border-top: 1px solid rgba(255, 250, 240, 0.12);
}
.footerInner {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 5vw;
  align-items: end;
}
.footerInner img { width: min(300px, 60vw); margin-bottom: 26px; }
.footerInner h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(40px, 5.5vw, 84px);
  line-height: 0.9;
}
.footerLinks { display: grid; gap: 12px; justify-items: start; }
.footerLinks a {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.02em;
}
.footerLinks a:hover { color: var(--gold); }
.footerNav { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 26px; }
.footerNav a { color: var(--gold); font-size: 12px; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.footerNote {
  width: min(1320px, 100%);
  margin: 7svh auto 0;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 250, 240, 0.12);
  color: rgba(255, 250, 240, 0.5);
  font-size: 12px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    display: flex;
    background: linear-gradient(180deg, rgba(9,7,5,0.82), rgba(9,7,5,0.2) 80%, transparent);
    backdrop-filter: none;
    padding: 16px 20px;
    z-index: 110;
  }
  .nav.scrolled { background: rgba(9,7,5,0.94); }
  .navToggle { display: flex; position: relative; z-index: 130; }
  .navLinks {
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    padding: 96px 28px 32px;
    background: var(--ink);
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
    z-index: 120;
    overflow-y: auto;
  }
  .nav.open .navLinks { transform: none; }
  .nav .navLinks a,
  .nav .navLinks a:not(:last-child) { display: inline-flex; }
  .navLinks a {
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 600;
    opacity: 1;
  }
  .navLinks a:last-child {
    border: 1px solid var(--gold);
    color: var(--gold);
    margin-top: 12px;
    font-family: var(--sans);
    font-size: 14px;
  }
  .nav.open .navToggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav.open .navToggle span:nth-child(2) { opacity: 0; }
  .nav.open .navToggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .pageHero { padding: 110px 22px 40px; min-height: 70svh; }
  .block { padding: 80px 22px; }
  .body2col { grid-template-columns: 1fr; }
  .pillar { grid-template-columns: 1fr; gap: 10px; }
  .galleryGrid { columns: 2; column-gap: 12px; }
  .galleryGrid figure { margin-bottom: 12px; }
  .credit { grid-template-columns: 1fr; gap: 10px; }
  .contactGrid { grid-template-columns: 1fr; gap: 40px; }
  .footerInner { grid-template-columns: 1fr; gap: 40px; align-items: start; }
}

@media (max-width: 560px) {
  .galleryGrid { columns: 1; }
}
