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

:root {
  --ivory:    #faf7f1;
  --cream:    #f3eee3;
  --white:    #fffdf9;
  --ink:      #16130f;
  --ink-soft: #4c463d;
  --bronze:   #8a642c;
  --gold:     #b08b3e;
  --gold-lt:  #cfa95c;
  --line:     #e6ddcc;
  --line-dk:  rgba(207,169,92,0.35);
  --font-display: 'Cinzel', serif;
  --font-body:    'Jost', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  overflow-x: hidden;
}

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

::selection { background: var(--gold); color: #fff; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 2.2rem;
  background: rgba(22,19,15,0.55);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(250,247,241,0.12);
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.nav.nav-scrolled { box-shadow: 0 6px 24px rgba(22,19,15,0.18); }

.nav-logo {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.98rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-logo:hover { color: var(--gold-lt); }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.nav-links a {
  color: rgba(250,247,241,0.88);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--gold-lt); border-bottom-color: var(--gold-lt); }

.nav-cta {
  background: transparent;
  color: var(--gold-lt) !important;
  padding: 0.55rem 1.3rem !important;
  border: 1px solid var(--gold-lt) !important;
  letter-spacing: 0.1em;
  transition: background 0.25s, color 0.25s !important;
}
.nav-cta:hover { background: var(--gold-lt); color: var(--ink) !important; }

/* see-through header at the top of every page; the solid bar returns on scroll or open menu */
.nav:not(.nav-scrolled):not(.nav-open) {
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
}
.nav:not(.nav-scrolled):not(.nav-open) .nav-logo,
.nav:not(.nav-scrolled):not(.nav-open) .nav-toggle { color: var(--ivory); }
.nav:not(.nav-scrolled):not(.nav-open) .nav-links a,
.nav:not(.nav-scrolled):not(.nav-open) .nav-drop > button { color: rgba(250,247,241,0.88); }
.nav:not(.nav-scrolled):not(.nav-open) .nav-links a:hover,
.nav:not(.nav-scrolled):not(.nav-open) .nav-drop:hover > button,
.nav:not(.nav-scrolled):not(.nav-open) .nav-links a[aria-current="page"] { color: var(--gold-lt); border-bottom-color: var(--gold-lt); }
.nav:not(.nav-scrolled):not(.nav-open) .nav-cta {
  background: transparent;
  color: var(--gold-lt) !important;
  border-color: var(--gold-lt) !important;
}
.nav:not(.nav-scrolled):not(.nav-open) .nav-cta:hover { background: var(--gold-lt); color: var(--ink) !important; }

/* dropdown */
.nav-drop { position: relative; }
.nav-drop > button {
  background: none; border: none; cursor: pointer;
  color: rgba(250,247,241,0.88);
  font-family: var(--font-body);
  font-size: 0.86rem; font-weight: 500;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 0.4rem 0;
  display: inline-flex; align-items: center; gap: 0.35rem;
  transition: color 0.2s;
}
.nav-drop > button::after { content: "▾"; font-size: 0.7em; color: var(--gold); transition: transform 0.25s; }
.nav-drop:hover > button, .nav-drop.open > button { color: var(--gold-lt); }
.nav-drop.open > button::after { transform: rotate(180deg); }

.nav-drop-menu {
  position: absolute;
  top: calc(100% + 0.9rem); left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(22,19,15,0.12);
  min-width: 200px;
  padding: 0.5rem 0;
  list-style: none;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
}
.nav-drop.open .nav-drop-menu, .nav-drop:hover .nav-drop-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-drop-menu a {
  display: block;
  padding: 0.55rem 1.3rem;
  border-bottom: none !important;
  font-size: 0.84rem;
}
.nav-drop-menu a:hover { background: var(--cream); }
/* dropdown panel is always light, so its links are always ink — regardless of header state */
.nav .nav-drop-menu a { color: var(--ink-soft) !important; }
.nav .nav-drop-menu a:hover { color: var(--bronze) !important; }
.nav .nav-drop-menu a[aria-current="page"] { color: var(--bronze) !important; }

.nav-toggle {
  display: none;
  background: none; border: none;
  color: var(--ink);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

/* ── HERO (video) ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--ivory);
}
.hero-video, .hero-fallback {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(22,19,15,0.55) 0%, rgba(22,19,15,0.35) 45%, rgba(22,19,15,0.72) 100%);
  z-index: 1;
}
.hero-inner { position: relative; z-index: 2; padding: 7rem 1.5rem 5rem; max-width: 900px; }

/* ghosted brand mark centered over the video, echoing the original site */
.hero-logo {
  display: block;
  width: clamp(150px, 21vw, 235px);
  margin: 0 auto 1.7rem;
  filter: brightness(0) invert(1);
  opacity: 0.5;
}

.hero-kicker {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1.4rem;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.3rem, 6.5vw, 4.6rem);
  line-height: 1.12;
  letter-spacing: 0.04em;
  margin-bottom: 1.2rem;
  text-wrap: balance;
}
.hero-title em { font-style: normal; color: var(--gold-lt); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  max-width: 620px;
  margin: 0 auto 2.2rem;
  color: rgba(250,247,241,0.92);
}
.hero-date {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.9vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin: 0 0 2.4rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(250,247,241,0.75);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  animation: drift 2.6s ease-in-out infinite;
}
@keyframes drift { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(7px); } }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 2.2rem;
  cursor: pointer;
  transition: background 0.28s var(--ease), color 0.28s var(--ease), border-color 0.28s, transform 0.2s;
}
.btn:active { transform: translateY(1px); }
.btn-gold { background: var(--gold); color: #fff; border: 1px solid var(--gold); }
.btn-gold:hover { background: var(--bronze); border-color: var(--bronze); }
.btn-ghost { background: rgba(250,247,241,0.08); color: var(--ivory); border: 1px solid rgba(250,247,241,0.8); }
.btn-ghost:hover { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.btn-ink { background: var(--ink); color: var(--ivory); border: 1px solid var(--ink); }
.btn-ink:hover { background: transparent; color: var(--ink); }
.btn-outline { background: transparent; color: var(--bronze); border: 1px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: #fff; }
.btn-full { width: 100%; border-style: solid; }

/* ── COUNTDOWN ── */
.countdown-band {
  background: var(--ink);
  color: var(--ivory);
  text-align: center;
  padding: 3.2rem 1.5rem 3.6rem;
  position: relative;
  overflow: hidden;
}
.countdown-band::before {
  content: "";
  position: absolute; inset: 10px;
  border: 1px solid var(--line-dk);
  pointer-events: none;
}
.countdown-label {
  font-size: 0.8rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1.4rem;
}
.countdown {
  display: flex;
  justify-content: center;
  gap: clamp(1.2rem, 5vw, 3.4rem);
}
.count-unit { min-width: 70px; }
.count-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 600;
  color: var(--ivory);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.count-word {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250,247,241,0.6);
  margin-top: 0.55rem;
}
.countdown-date {
  margin-top: 1.6rem;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: rgba(250,247,241,0.85);
}
.countdown-over .countdown { display: none; }
.countdown-over-msg {
  display: none;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2.1rem);
  color: var(--gold-lt);
  letter-spacing: 0.05em;
}
.countdown-over .countdown-over-msg { display: block; }

/* ── SECTIONS ── */
.section { max-width: 1140px; margin: 0 auto; padding: 5.5rem 1.5rem; }
.section-tight { padding-top: 4rem; padding-bottom: 4rem; }
.section-cream { background: var(--cream); }
.section-full { max-width: none; padding-left: 0; padding-right: 0; }

.section-heading { text-align: center; margin-bottom: 3rem; }
.section-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.9rem;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  letter-spacing: 0.05em;
  color: var(--ink);
  text-wrap: balance;
}
.section-title em { font-style: normal; color: var(--gold); }
.section-rule {
  width: 72px; height: 2px;
  background: var(--gold);
  margin: 1.3rem auto 0;
}
.section-intro {
  max-width: 680px;
  margin: 1.4rem auto 0;
  color: var(--ink-soft);
  font-weight: 300;
  font-size: 1.04rem;
}

/* page hero (interior pages) */
.page-hero {
  background: var(--ink);
  color: var(--ivory);
  text-align: center;
  padding: 9.5rem 1.5rem 4.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: min(92%, 1080px); height: 1px;
  background: var(--line-dk);
}
.page-hero .section-kicker { color: var(--gold-lt); }

/* photo background heroes with a slow cinematic drift */
.page-hero-bg {
  position: absolute; inset: -4%;
  background-size: cover;
  background-position: center 28%;
  z-index: 0;
  animation: heroDrift 30s ease-in-out infinite alternate;
}
.page-hero.has-bg::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(22,19,15,0.62) 0%, rgba(22,19,15,0.55) 55%, rgba(22,19,15,0.78) 100%);
  z-index: 1;
}
.page-hero > *:not(.page-hero-bg) { position: relative; z-index: 2; }
@keyframes heroDrift {
  from { transform: scale(1.02) translateX(-1.2%); }
  to   { transform: scale(1.1) translateX(1.2%); }
}

/* CSS-designed heroes for the application pages (no photo):
   gold glow + woven lattice over ink, with a slow-breathing double diamond behind the title */
.page-hero.has-weave {
  background:
    radial-gradient(ellipse 70% 85% at 50% 10%, rgba(207,169,92,0.20), transparent 62%),
    repeating-linear-gradient(45deg, rgba(250,247,241,0.03) 0 2px, transparent 2px 13px),
    repeating-linear-gradient(-45deg, rgba(250,247,241,0.03) 0 2px, transparent 2px 13px),
    radial-gradient(ellipse 130% 80% at 50% 118%, #262015, transparent 72%),
    var(--ink);
}
.page-hero.has-weave::before {
  content: "";
  position: absolute; left: 50%; top: 56%;
  width: min(52vw, 350px); height: min(52vw, 350px);
  transform: translate(-50%, -50%) rotate(45deg);
  border: 1px solid rgba(207,169,92,0.30);
  outline: 1px solid rgba(207,169,92,0.12);
  outline-offset: 14px;
  pointer-events: none;
  animation: weaveBreathe 14s ease-in-out infinite alternate;
}
@keyframes weaveBreathe {
  from { transform: translate(-50%, -50%) rotate(45deg) scale(0.97); }
  to   { transform: translate(-50%, -50%) rotate(45deg) scale(1.05); }
}
@media (prefers-reduced-motion: reduce) {
  .page-hero.has-weave::before { animation: none; }
}

/* hero slideshow: stacked bg slides crossfading (shows page) */
.page-hero-bg.slide { opacity: 0; transition: opacity 1.4s ease; }
.page-hero-bg.slide.active { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .page-hero-bg { animation: none; }
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  letter-spacing: 0.05em;
  text-wrap: balance;
}
.page-hero p {
  max-width: 640px;
  margin: 1.2rem auto 0;
  color: rgba(250,247,241,0.85);
  font-weight: 300;
  font-size: 1.05rem;
}

/* ── CARDS (get involved) ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2.1rem 1.7rem 1.9rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.3s;
}
.card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: 0 22px 44px rgba(22,19,15,0.09); border-color: var(--gold-lt); }
.card:hover::before { transform: scaleX(1); }
.card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.card p { font-size: 0.93rem; color: var(--ink-soft); font-weight: 300; flex: 1; }
.card-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
}
.card-link::after { content: " →"; transition: margin-left 0.2s; }
.card:hover .card-link::after { margin-left: 4px; }

/* desktop stagger for the get-involved cards: 3 per row, alternating drop */
@media (min-width: 841px) {
  .cards-grid.stagger { grid-template-columns: repeat(3, 1fr); align-items: start; }
  .cards-grid.stagger .card:nth-child(even) { margin-top: 34px; }
}

/* ── DESIGNER LOGO MARQUEE ── */
.logo-marquee { overflow: hidden; position: relative; padding: 1.6rem 0; }
.logo-track { display: flex; width: max-content; animation: marquee 45s linear infinite; }
.logo-marquee:hover .logo-track { animation-play-state: paused; }
.logo-set { display: flex; align-items: center; gap: clamp(2.6rem, 6vw, 5rem); padding-right: clamp(2.6rem, 6vw, 5rem); }
.logo-set img {
  height: 72px; width: auto;
  filter: grayscale(1);
  opacity: 0.55;
  transition: filter 0.35s, opacity 0.35s;
}
.logo-set img:hover { filter: none; opacity: 1; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .logo-track { animation: none; width: auto; flex-wrap: wrap; justify-content: center; }
  .logo-set[aria-hidden="true"] { display: none; }
}

/* ── STORY PHOTO MARQUEE (home teaser) ── */
.story-marquee {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  position: relative;
}
.story-track { display: flex; width: max-content; animation: marquee 120s linear infinite; }
.story-marquee:hover .story-track { animation-play-state: paused; }
.story-set { display: flex; }
.story-set a {
  display: block;
  flex: 0 0 auto;
  width: 20vw;
  height: min(26vw, 480px);
  overflow: hidden;
  background: var(--cream);
}
.story-set img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease), filter 0.4s;
}
.story-set a:hover img { transform: scale(1.045); filter: brightness(1.05); }
@media (max-width: 1024px) { .story-set a { width: 25vw; height: 32vw; } }
@media (max-width: 640px)  { .story-set a { width: 40vw; height: 52vw; } }
@media (prefers-reduced-motion: reduce) {
  .story-track { animation: none; width: max-content; }
  .story-marquee { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .story-set[aria-hidden="true"] { display: none; }
}

/* ── GALLERY ── */
.year-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 2.6rem;
}
.year-tab {
  background: none;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  padding: 0.6rem 1.5rem;
  cursor: pointer;
  transition: all 0.25s;
}
.year-tab:hover { border-color: var(--gold); color: var(--bronze); }
.year-tab.active { background: var(--ink); color: var(--ivory); border-color: var(--ink); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 10px;
}
.gallery-grid a {
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--cream);
}
.gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.4s;
}
.gallery-grid a:hover img { transform: scale(1.045); filter: brightness(1.05); }

.gallery-placeholder {
  aspect-ratio: 3 / 4;
  background: var(--cream);
  border: 1px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
}

/* lightbox */
.lightbox {
  position: fixed; inset: 0;
  z-index: 400;
  background: rgba(12,10,8,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.lightbox-btn {
  position: absolute;
  background: none; border: none;
  color: rgba(250,247,241,0.85);
  font-size: 2rem;
  cursor: pointer;
  padding: 1rem;
  transition: color 0.2s, transform 0.2s;
}
.lightbox-btn:hover { color: var(--gold-lt); transform: scale(1.1); }
.lightbox-close { top: 1rem; right: 1.4rem; }
.lightbox-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-count {
  position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%);
  color: rgba(250,247,241,0.6);
  font-size: 0.8rem; letter-spacing: 0.2em;
}

/* ── DESIGNER SPOTLIGHTS ── */
.designer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.6rem;
}
.designer-card { background: var(--white); border: 1px solid var(--line); overflow: hidden; transition: box-shadow 0.35s var(--ease); }
.designer-card:hover { box-shadow: 0 20px 40px rgba(22,19,15,0.08); }
.designer-card figure { aspect-ratio: 4 / 5; overflow: hidden; background: var(--cream); margin: 0; }
.designer-card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.designer-card:hover figure img { transform: scale(1.04); }
.designer-card .dc-body { padding: 1.3rem 1.4rem 1.5rem; }
.designer-card h4 { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0.06em; color: var(--ink); }
.designer-card .dc-craft { font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bronze); margin: 0.3rem 0 0.6rem; }
.designer-card p { font-size: 0.9rem; font-weight: 300; color: var(--ink-soft); }

.thanks-note {
  max-width: 640px;
  margin: 2.6rem auto 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--bronze);
  line-height: 1.6;
}

/* ── FORMS ── */
.form-wrap { max-width: 640px; margin: 0 auto; }
.form-note {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 1.1rem 1.4rem;
  font-size: 0.93rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}
.app-form { display: flex; flex-direction: column; gap: 1.15rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field label .req { color: var(--bronze); }
.field .hint { font-size: 0.8rem; color: var(--ink-soft); font-weight: 300; letter-spacing: 0; text-transform: none; }
.app-form input, .app-form select, .app-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.app-form input:focus, .app-form select:focus, .app-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176,139,62,0.14);
}
.app-form textarea { resize: vertical; min-height: 110px; }

.check-row { display: flex; align-items: flex-start; gap: 0.7rem; }
.check-row input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 3px;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.check-row span { font-size: 0.92rem; color: var(--ink-soft); }

.form-status { display: none; padding: 1.1rem 1.4rem; font-size: 0.95rem; }
.form-status.ok { display: block; background: #eef3e9; border-left: 3px solid #5a7a4a; color: #33471f; }
.form-status.err { display: block; background: #f6ecea; border-left: 3px solid #a2543f; color: #6b2f1e; }

/* honeypot */
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* shareable flier card (models / designers pages) */
.flier-card { max-width: 380px; margin: 2.6rem auto 0; }
.flier-card a { display: block; }
.flier-card img {
  width: 100%;
  border: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(22,19,15,0.12);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.flier-card a:hover img { transform: translateY(-4px); box-shadow: 0 22px 46px rgba(22,19,15,0.16); }
.flier-card figcaption { text-align: center; margin-top: 1.1rem; color: var(--ink-soft); font-size: 0.95rem; }

/* embedded Google Forms */
.gform-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 0.4rem;
}
.gform-wrap iframe { width: 100%; border: 0; display: block; }

/* escape hatch under each embed: Google blocks sign-in inside an iframe, so
   anyone who hits that wall (or a blocked-cookie browser) can still apply */
.gform-fallback {
  text-align: center;
  margin-top: 1.1rem;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink-soft);
}
.gform-fallback a { color: var(--bronze); }

/* form launch card: kept for reuse if we ever move back to launch buttons */
.form-launch {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2.8rem 1.8rem;
  text-align: center;
  position: relative;
}
.form-launch::before { content: ""; position: absolute; inset: 8px; border: 1px solid var(--line); pointer-events: none; }
.form-launch > * { position: relative; }
.form-launch p { color: var(--ink-soft); max-width: 470px; margin: 0 auto 1.8rem; }
.form-launch .fl-sub { font-size: 0.9rem; margin: 1.6rem auto 0; }

/* ── SPONSOR TIERS ── */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
  align-items: stretch;
}
.tier {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--tier-c, var(--gold));
  padding: 1.9rem 1.6rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.tier:hover { transform: translateY(-5px); box-shadow: 0 22px 44px rgba(22,19,15,0.09); }
.tier-copper   { --tier-c: #a56a3a; }
.tier-bronze   { --tier-c: #8a642c; }
.tier-silver   { --tier-c: #9aa2ad; }
.tier-gold     { --tier-c: #b08b3e; }
.tier-platinum { --tier-c: #6e6e78; }
.tier h3 { font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--tier-c, var(--bronze)); }
.tier-price { font-family: var(--font-display); font-size: 1.9rem; color: var(--ink); margin: 0.5rem 0 1.1rem; }
.tier ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.tier li { font-size: 0.9rem; font-weight: 300; color: var(--ink-soft); padding-left: 1.2rem; position: relative; }
.tier li::before { content: "·"; color: var(--gold); font-weight: 700; position: absolute; left: 0.2rem; font-size: 1.2rem; line-height: 1.1; }

/* ── ETIQUETTE / CONTENT BLOCKS ── */
.rule-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.1rem; }
.rule-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  padding: 1.4rem 1.7rem;
}
.rule-item h3 { font-family: var(--font-display); font-size: 1.02rem; letter-spacing: 0.07em; color: var(--ink); margin-bottom: 0.4rem; }
.rule-item p { font-size: 0.95rem; font-weight: 300; color: var(--ink-soft); }

.callout {
  max-width: 760px;
  margin: 3rem auto 0;
  background: var(--ink);
  color: var(--ivory);
  text-align: center;
  padding: 2.4rem 2rem;
  position: relative;
}
.callout::before { content: ""; position: absolute; inset: 8px; border: 1px solid var(--line-dk); pointer-events: none; }
.callout h3 { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 0.08em; color: var(--gold-lt); margin-bottom: 0.6rem; }
.callout p { font-weight: 300; color: rgba(250,247,241,0.9); }

/* prose (about page) */
.prose { max-width: 720px; margin: 0 auto; }
.prose p { margin-bottom: 1.4rem; font-weight: 300; color: var(--ink-soft); font-size: 1.03rem; }
.prose p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.1em;
  float: left;
  line-height: 0.85;
  padding-right: 0.12em;
  color: var(--gold);
}

/* team */
.team-card {
  max-width: 880px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2.6rem 2.4rem;
}
.team-card.has-photo {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 2.4rem;
  align-items: start;
}
.team-photo { margin: 0; }
.team-photo img, .team-photo-ph {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}
.team-photo-ph {
  background: var(--cream);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}
@media (max-width: 720px) {
  .team-card.has-photo { grid-template-columns: 1fr; }
  .team-photo { max-width: 300px; margin: 0 auto; width: 100%; }
}
.team-card h3 { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.08em; color: var(--ink); }
.team-role { font-size: 0.8rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--bronze); margin: 0.4rem 0 1.3rem; }
.team-card p { font-weight: 300; color: var(--ink-soft); margin-bottom: 1.1rem; }
.team-card p:last-child { margin-bottom: 0; }

/* event info strip (models casting) */
.event-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  max-width: 900px;
  margin: 0 auto;
}
.event-cell { background: var(--white); padding: 1.7rem 1.4rem; text-align: center; }
.event-cell .ec-label { font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--bronze); margin-bottom: 0.5rem; }
.event-cell .ec-value { font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); line-height: 1.4; }
.event-cell .ec-sub { font-size: 0.85rem; font-weight: 300; color: var(--ink-soft); margin-top: 0.3rem; }

/* ── SPLIT: image beside text, echoing the original site ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.2rem);
  align-items: center;
}
.split .section-heading { text-align: left; margin-bottom: 1.6rem; }
.split .section-rule { margin-left: 0; }
.split .section-intro { margin-left: 0; margin-right: 0; }
.split .prose { max-width: none; margin: 0; }
.split-media { position: relative; margin: 0; }
.split-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}
.split-media.landscape img { aspect-ratio: 4 / 3; }
.split-media::after {
  content: "";
  position: absolute; inset: 12px;
  border: 1px solid rgba(176,139,62,0.45);
  pointer-events: none;
}
.split.flip .split-media { order: -1; }
@media (max-width: 840px) {
  .split { grid-template-columns: 1fr; }
  .split.flip .split-media { order: 0; }
  .split .section-heading { text-align: center; }
  .split .section-rule { margin-left: auto; margin-right: auto; }
}

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* photo reveals: images wipe open as they scroll into view */
.split-media.reveal, figure.reveal { opacity: 1; transform: none; }
.split-media.reveal img, .team-card.reveal .team-photo img {
  clip-path: inset(0 100% 0 0);
  transform: scale(1.07);
  transition: clip-path 1.1s var(--ease), transform 1.5s var(--ease);
}
.split.flip .split-media.reveal img { clip-path: inset(0 0 0 100%); }
.split-media.reveal.in img, .team-card.reveal.in .team-photo img,
.split.flip .split-media.reveal.in img { clip-path: inset(0 0 0 0); transform: scale(1); }

.gallery-grid.reveal { opacity: 1; transform: none; }
.gallery-grid.reveal a { clip-path: inset(0 0 100% 0); transition: clip-path 0.85s var(--ease); }
.gallery-grid.reveal a:nth-child(8n+2) { transition-delay: 0.07s; }
.gallery-grid.reveal a:nth-child(8n+3) { transition-delay: 0.14s; }
.gallery-grid.reveal a:nth-child(8n+4) { transition-delay: 0.21s; }
.gallery-grid.reveal a:nth-child(8n+5) { transition-delay: 0.07s; }
.gallery-grid.reveal a:nth-child(8n+6) { transition-delay: 0.14s; }
.gallery-grid.reveal a:nth-child(8n+7) { transition-delay: 0.21s; }
.gallery-grid.reveal a:nth-child(8n)   { transition-delay: 0.28s; }
.gallery-grid.reveal.in a { clip-path: inset(0 0 0 0); }

@media (prefers-reduced-motion: reduce) {
  .split-media.reveal img, .team-card.reveal .team-photo img, .gallery-grid.reveal a { clip-path: none; transform: none; transition: none; }
}
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-scroll { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ── FOOTER ── */
.footer {
  background: var(--ink);
  color: rgba(250,247,241,0.8);
  padding: 4rem 1.5rem 2.4rem;
  margin-top: 0;
}
.footer-grid {
  max-width: 1140px;
  margin: 0 auto 2.6rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-brand img { height: 280px; width: auto; max-width: 100%; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.95; }
@media (max-width: 840px) { .footer-brand img { height: 190px; } }
.footer-brand p { font-size: 0.92rem; font-weight: 300; margin-top: 1rem; max-width: 320px; }
.footer h4 { font-size: 0.78rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 1rem; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer a { color: rgba(250,247,241,0.8); text-decoration: none; font-size: 0.92rem; font-weight: 300; transition: color 0.2s; }
.footer a:hover { color: var(--gold-lt); }

.social-link { display: inline-flex; align-items: center; gap: 0.6rem; }
.social-ico { width: 18px; height: 18px; flex-shrink: 0; opacity: 0.85; }
.social-link:hover .social-ico { opacity: 1; }
@media (max-width: 840px) {
  .footer .social-link { justify-content: center; }
}

.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  border-top: 1px solid rgba(250,247,241,0.14);
  padding-top: 1.6rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(250,247,241,0.55);
}
.footer-credit-line { margin-top: 0.5rem; font-size: 0.78rem; }
/* Rush Webworks brand blue — dark-background variant per brand rule */
.footer-credit { color: #5b82ff; font-weight: 500; text-decoration: none; }
.footer-credit:hover { text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 840px) {
  .nav { flex-wrap: wrap; }
  .nav-logo { order: 1; font-size: 0.86rem; }
  .nav-toggle { display: block; order: 2; }
  .nav-links {
    order: 3;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.1rem;
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--line);
    max-height: calc(100svh - 90px);
    overflow-y: auto;
  }
  .nav.nav-open .nav-links { display: flex; }
  .nav-links a, .nav-drop > button { display: block; width: 100%; text-align: center; padding: 0.8rem; font-size: 0.95rem; }
  .nav-drop-menu {
    position: static;
    transform: none;
    opacity: 1; visibility: visible;
    display: none;
    box-shadow: none;
    border: none;
    background: var(--cream);
    min-width: 0;
  }
  .nav-drop.open .nav-drop-menu { display: block; }
  .nav-drop:hover .nav-drop-menu { transform: none; }
  .nav-cta { margin: 0.5rem auto 0; width: min(280px, 100%); text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .footer-brand img { margin: 0 auto; }
  .footer-brand p { margin-left: auto; margin-right: auto; }
}
