/* ============================================================
   Yasara & Simon — site-wide styles
   Extends colors_and_type.css with editorial layout primitives.
   ============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--canvas-light);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
}

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

/* ---------- LAYOUT PRIMITIVES ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ---------- EYEBROW / SIDE LABEL ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: var(--charcoal);
  letter-spacing: 0;
}

/* Side label sitting left of a content block, like in the reference */
.side-label {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  color: var(--charcoal);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 96px 24px 48px;
  background: var(--canvas-light);
}
.hero-frame {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  height: 540px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #111;
}
.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}
.hero-frame image-slot { width: 100%; height: 100%; display: block; }
.hero-frame::before,
.hero-frame::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1.5px solid rgba(255,255,255,0.5);
  z-index: 2;
}
.hero-frame::before { top: 12px; left: 12px; border-right: 0; border-bottom: 0; }
.hero-frame::after { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }

.hero-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1.5px solid rgba(255,255,255,0.5);
  z-index: 2;
}
.hero-corner.tr { top: 12px; right: 12px; border-left: 0; border-bottom: 0; }
.hero-corner.bl { bottom: 12px; left: 12px; border-right: 0; border-top: 0; }

.hero-caption {
  position: absolute;
  left: 48px;
  bottom: 48px;
  z-index: 3;
  color: #fff;
  max-width: 60%;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin: 0;
  color: #fff;
}
.hero-tags {
  display: flex;
  gap: 8px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.1px;
  white-space: nowrap;
}

/* ---------- OVERVIEW (two-col text after hero) ---------- */
.overview {
  padding: 56px 48px 96px;
}
.overview-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 7fr;
  gap: 48px;
  align-items: start;
}
.overview-body {
  display: grid;
  grid-template-columns: 4fr 3fr;
  gap: 64px;
  max-width: 920px;
  margin-left: auto;
}
.overview-lead {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.overview-supporting {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.55;
  color: var(--mute);
  margin: 0;
}

/* ---------- BAND: concept (text-card + image) ---------- */
.band {
  padding: 32px 48px;
  background: var(--canvas-light);
}
.band-soft { background: var(--surface-soft); padding: 80px 48px; }

.concept-row {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 16px;
  align-items: stretch;
}
.concept-card {
  background: var(--surface-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  position: relative;
}
.concept-card .side-label { margin-bottom: 24px; }
.concept-card-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
}
.concept-card-foot {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--body);
  line-height: 1.5;
  letter-spacing: 0.24px;
  margin-top: 24px;
}
.concept-card-foot p + p,
.concept-card-foot div + div { margin-top: 16px; }
.concept-card-foot a { color: var(--blue-link); text-decoration: underline; text-underline-offset: 2px; }
.concept-card-foot a:hover { color: var(--cobalt-deep); }
.concept-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #ddd;
  min-height: 360px;
  position: relative;
}
.concept-image img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.concept-image image-slot { width: 100%; height: 100%; min-height: 360px; display: block; }
.concept-image::before,
.concept-image::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1.5px solid rgba(255,255,255,0.55);
  z-index: 2;
}
.concept-image::before { top: 12px; left: 12px; border-right: 0; border-bottom: 0; }
.concept-image::after { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }

/* ---------- SPATIAL (3-col with overlapping images) ---------- */
.spatial {
  padding: 64px 48px;
}
.spatial-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 2fr 1.2fr;
  gap: 16px;
  align-items: end;
}
.spatial-small {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #ddd;
}
.spatial-small img { width: 100%; height: 100%; object-fit: cover; }
.spatial-small image-slot { width: 100%; height: 100%; display: block; }
.spatial-main image-slot { width: 100%; height: 100%; display: block; }
.spatial-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #ddd;
  position: relative;
}
.spatial-main img { width: 100%; height: 100%; object-fit: cover; }
.spatial-main .float-label {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
}
.spatial-text {
  padding: 16px 8px 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.spatial-text h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.25;
  color: var(--ink);
  margin: 0;
}
.spatial-text p {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.55;
  color: var(--mute);
  margin: 0;
}

/* ---------- DETAILS (intro + photo grid) ---------- */
.details {
  background: var(--surface-soft);
  padding: 88px 48px;
}
.details-intro {
  max-width: 1200px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 1fr 4fr 2fr;
  gap: 48px;
  align-items: start;
}
.details-intro h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
  max-width: 40ch;
}
.details-intro p {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--mute);
  margin: 0;
  max-width: 28ch;
}
.details-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.details-tile {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #ccc;
  position: relative;
}
.details-tile img { width: 100%; height: 100%; object-fit: cover; }
.details-tile image-slot { width: 100%; height: 100%; display: block; }

/* ---------- REFLECTIONS (centered heading + single large image with crosshairs) ---------- */
.reflections {
  padding: 120px 48px;
  text-align: center;
}
.reflections-eyebrow {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: var(--charcoal);
  margin: 0 0 16px;
}
.reflections-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 auto 24px;
  max-width: 22ch;
}
.reflections-sub {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--mute);
  max-width: 52ch;
  margin: 0 auto 64px;
}
.reflections-image {
  max-width: 620px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #ccc;
  position: relative;
}
.reflections-image img { width: 100%; height: 100%; object-fit: cover; }
.reflections-image image-slot { width: 100%; height: 100%; display: block; }
.reflections-image .crosshair {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.9);
}
.reflections-image .ch-tl { top: 24px; left: 24px; }
.reflections-image .ch-tr { top: 24px; right: 24px; }
.reflections-image .ch-bl { bottom: 24px; left: 24px; }
.reflections-image .ch-br { bottom: 24px; right: 24px; }
.reflections-image .ch-c {
  top: 50%; left: 50%;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.6);
  transform: translate(-50%, -50%);
}
.reflections-image .ch-c::after {
  content: "✦";
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 12px;
}

/* ---------- EXPLORE (side-by-side text + image) ---------- */
.explore {
  padding: 88px 24px;
  background: var(--canvas-light);
}
.explore-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: start;
}
.explore-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 12px 0 24px;
}
.explore-text p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  letter-spacing: 0.12px;
}
.explore-text p + p { margin-top: 16px; }
.explore-places {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.explore-place dt {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 6px;
}
.explore-place dd {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  letter-spacing: 0.12px;
}
.explore-image {
  position: sticky;
  top: 32px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #ddd;
}
@media (max-width: 920px) {
  .explore { padding: 56px 20px; }
  .explore-inner { grid-template-columns: 1fr; gap: 32px; }
  .explore-image { position: relative; top: 0; max-width: 480px; }
}

/* ---------- NEXT-PAGE CARD (Most Work analog) ---------- */
.nextpage {
  padding: 64px 48px 88px;
}
.nextpage-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 16px;
  align-items: stretch;
}
.nextpage-text {
  padding: 24px 8px 24px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
}
.nextpage-text h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
}
.nextpage-text p {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.55;
  color: var(--mute);
  margin: 0;
  max-width: 32ch;
}
.nextpage-tags { display: flex; gap: 6px; margin-top: 4px; }
.nextpage-tag {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--ink);
  border: 1px solid var(--hairline-light);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  white-space: nowrap;
}
.nextpage-cta {
  align-self: flex-start;
  margin-top: 16px;
  background: var(--cobalt-violet);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nextpage-cta:hover { background: var(--cobalt-deep); color: #fff; text-decoration: none; }
.nextpage-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #ccc;
  min-height: 360px;
  position: relative;
}
.nextpage-image img { width: 100%; height: 100%; object-fit: cover; }
.nextpage-image image-slot { width: 100%; height: 100%; min-height: 360px; display: block; }
.nextpage-image::before,
.nextpage-image::after {
  content: "";
  position: absolute;
  width: 10px; height: 10px;
  border: 1.5px solid rgba(255,255,255,0.6);
  z-index: 2;
}
.nextpage-image::before { top: 12px; left: 12px; border-right: 0; border-bottom: 0; }
.nextpage-image::after { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }

/* ---------- CONTACT BAND (sun-streaked photo + form on right) ---------- */
.contact-band {
  padding: 0 48px 88px;
}
.contact-frame {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #1d2228;
  min-height: 520px;
  color: #fff;
}
.contact-photo {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #d4a86a 0%, #e6c290 40%, #f5dab4 100%);
}
.contact-photo img { width: 100%; height: 100%; object-fit: cover; }
.contact-photo image-slot { width: 100%; height: 100%; display: block; }
.contact-photo--split {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
}
.contact-photo .rays {
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg, transparent 30%, rgba(255,240,210,0.35) 45%, transparent 55%),
    linear-gradient(120deg, transparent 50%, rgba(255,235,200,0.25) 60%, transparent 70%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.contact-form-wrap {
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  color: var(--ink);
}
.contact-form-wrap .eyebrow { color: var(--charcoal); margin-bottom: 8px; }
.contact-form-wrap h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 8px;
}
.contact-form-wrap p.sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--mute);
  line-height: 1.5;
  margin: 0 0 24px;
  max-width: 38ch;
}
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form .full { grid-column: 1 / -1; }
.contact-form .field input,
.contact-form .field select,
.contact-form .field textarea {
  height: 44px;
  border-radius: var(--radius-md);
  padding: 0 14px;
  font-size: 14px;
}
.contact-form .field textarea { height: 88px; padding: 12px 14px; }
.contact-form .field label {
  font-size: 12px;
  color: var(--mute);
  font-weight: 400;
  font-style: italic;
}
.contact-form button {
  grid-column: 1 / -1;
  margin-top: 8px;
  border: 0;
  background: var(--warning);
  color: #fff;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 160ms var(--ease-out);
}
.contact-form button:hover { background: #d36f00; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--canvas-light);
  padding: 48px 48px 0;
  border-top: 1px solid var(--hairline-light);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-mark {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-monogram {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cobalt-violet);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.02em;
}
.footer-blurb {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 13px;
  color: var(--mute);
  max-width: 26ch;
  line-height: 1.5;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: italic;
  font-size: 13px;
  color: var(--charcoal);
  margin: 0 0 16px;
}
.footer-col a {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.footer-col a:hover { color: var(--cobalt-violet); text-decoration: none; }

.footer-wordmark {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(80px, 16vw, 240px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--ink);
  text-align: center;
  padding: 24px 0 0;
  white-space: nowrap;
  overflow: hidden;
  user-select: none;
}

/* ---------- NAV ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--hairline-light);
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
}
.nav-brand-mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cobalt-violet);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
}
.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
  position: relative;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--cobalt-violet); text-decoration: none; }
.nav-links a.active { color: var(--cobalt-violet); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--cobalt-violet);
  border-radius: 2px;
}
.nav-cta {
  background: var(--warning);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05px;
}
.nav-cta:hover { background: #d36f00; color: #fff; text-decoration: none; }

/* ---------- HAIRLINE DIVIDER ---------- */
.hairline-divider {
  border: 0;
  border-top: 1px solid var(--hairline-light);
  margin: 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- FAQ LIST (Q&A page) ---------- */
.faq-list {
  padding: 88px 48px;
}
.faq-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 48px;
  align-items: start;
}
.faq-items {
  border-top: 1px solid var(--hairline-light);
}
.faq-item {
  border-bottom: 1px solid var(--hairline-light);
  padding: 28px 0;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out);
}
.faq-item:hover { background: rgba(0,0,0,0.01); }
.faq-q {
  display: grid;
  grid-template-columns: 48px 1fr 28px;
  align-items: baseline;
  gap: 24px;
}
.faq-num {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--stone);
  letter-spacing: 0.08em;
}
.faq-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.faq-toggle {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--cobalt-violet);
  text-align: right;
  font-weight: 400;
  line-height: 1;
}
.faq-a {
  padding: 16px 28px 4px 72px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--mute);
  max-width: 64ch;
}
.faq-a a { color: var(--blue-link); }

/* ---------- RSVP PAGE form ---------- */
.rsvp-page {
  padding: 64px 48px 96px;
}
.rsvp-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.rsvp-aside {
  position: sticky;
  top: 96px;
  padding: 8px 0;
}
.rsvp-aside .side-label { margin-bottom: 16px; }
.rsvp-aside h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 16px;
}
.rsvp-aside p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--mute);
  line-height: 1.6;
  margin: 0 0 16px;
  max-width: 32ch;
}
.rsvp-meta {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline-light);
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--charcoal);
  line-height: 1.7;
}
.rsvp-meta strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.rsvp-form {
  background: var(--surface-soft);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.rsvp-form-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rsvp-form-section h3 {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  color: var(--charcoal);
  margin: 0 0 8px;
}
.rsvp-form-section .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.rsvp-form .field input,
.rsvp-form .field select,
.rsvp-form .field textarea {
  background: #fff;
  height: 48px;
  padding: 0 14px;
  font-size: 15px;
  border-radius: var(--radius-md);
}
.rsvp-form .field textarea { height: 88px; padding: 12px 14px; }
.rsvp-form .field label {
  font-size: 12px;
  font-style: italic;
  color: var(--mute);
  font-weight: 400;
}
.rsvp-pick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.rsvp-pick button {
  appearance: none;
  border: 1px solid var(--hairline-light);
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  cursor: pointer;
  font-family: var(--font-body);
  text-align: left;
  transition: all 160ms var(--ease-out);
}
.rsvp-pick button:hover { border-color: var(--ink); }
.rsvp-pick button[aria-pressed="true"] {
  border-color: var(--cobalt-violet);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(73, 79, 223, 0.12);
}
.rsvp-pick .pick-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.rsvp-pick .pick-sub {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--mute);
}
.rsvp-submit {
  border: 0;
  background: var(--cobalt-violet);
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  align-self: flex-start;
  margin-top: 8px;
}
.rsvp-submit:hover { background: var(--cobalt-deep); }

@media (max-width: 920px) {
  .faq-inner, .rsvp-inner { grid-template-columns: 1fr; gap: 24px; }
  .rsvp-aside { position: static; }
  .rsvp-form { padding: 24px; }
  .faq-a { padding-left: 0; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 920px) {
  .site-nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { padding: 80px 16px 32px; }
  .hero-frame { height: 420px; }
  .hero-caption { left: 24px; bottom: 24px; max-width: 90%; }
  .overview, .band, .spatial, .details, .reflections, .nextpage, .contact-band, .site-footer { padding-left: 20px; padding-right: 20px; }
  .overview-inner, .overview-body { grid-template-columns: 1fr; gap: 24px; }
  .concept-row, .spatial-inner, .nextpage-inner { grid-template-columns: 1fr; }
  .details-intro { grid-template-columns: 1fr; gap: 16px; }
  .details-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-frame { grid-template-columns: 1fr; }
  .contact-photo { min-height: 240px; }
  .contact-form-wrap { padding: 32px 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
}
