@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap");

:root {
  --bg: #f4f1ea;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --surface-dark: #182127;
  --text: #14202a;
  --muted: #55616d;
  --line: rgba(20, 32, 42, 0.12);
  --accent: #8f5b34;
  --accent-deep: #734726;
  --accent-soft: #e8d9cb;
  --accent-cool: #2f4b60;
  --link: #1f5672;
  --link-visited: #6c4668;
  --link-hover: #143b4f;
  --focus-ring: rgba(31, 86, 114, 0.24);
  --shadow: 0 18px 40px rgba(20, 32, 42, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(143, 91, 52, 0.16), transparent 30%),
    linear-gradient(180deg, #efe8de 0%, var(--bg) 30%, #f8f6f1 100%);
  line-height: 1.6;
}

body.home-page .hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-bottom: 2.5rem;
  background:
    linear-gradient(180deg, rgba(8, 13, 18, 0.58) 0%, rgba(8, 13, 18, 0.42) 34%, rgba(8, 13, 18, 0.18) 72%, rgba(244, 241, 234, 0) 100%),
    radial-gradient(circle at top, rgba(143, 91, 52, 0.18), transparent 34%),
    url("../../background.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

body.home-page .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0) 46%, rgba(10, 14, 18, 0.16) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  pointer-events: none;
}

a {
  color: var(--link);
  text-decoration-line: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.16em;
  transition:
    color 160ms ease,
    text-decoration-color 160ms ease,
    text-decoration-thickness 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}

a:visited {
  color: var(--link-visited);
}

a:hover {
  color: var(--link-hover);
  text-decoration-thickness: 2px;
}

a:focus-visible {
  outline: none;
  border-radius: 4px;
  box-shadow: 0 0 0 4px var(--focus-ring);
}

a.brand,
.button,
.skip-link,
.teaser-card,
.rsvp-photo-link {
  text-decoration: none;
}

a.brand,
.button,
.skip-link {
  color: inherit;
}

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

p,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

h1,
h2 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
}

h1 {
  font-size: clamp(2.3rem, 7vw, 4.7rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(1.7rem, 5vw, 2.6rem);
}

h3 {
  font-size: 1.1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.narrow {
  max-width: 780px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--surface-dark);
  color: #fff;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 1rem 0;
  backdrop-filter: blur(16px);
  background: rgba(244, 241, 234, 0.72);
  border-bottom: 1px solid rgba(20, 32, 42, 0.06);
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-kicker,
.eyebrow,
.panel-label,
.timeline-day {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--accent-deep);
}

.brand-title {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.nav-toggle {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  font: inherit;
  font-weight: 700;
}

.site-nav {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 1rem;
  right: 1rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: grid;
  gap: 0.35rem;
}

.site-nav a {
  padding: 0.9rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  color: var(--accent-cool);
  text-decoration-color: rgba(47, 75, 96, 0.34);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  background: var(--accent-soft);
  color: var(--text);
  text-decoration-color: rgba(20, 32, 42, 0.5);
}

.hero,
.page-hero {
  padding: 3.5rem 0 1.5rem;
}

.hero {
  padding-top: 4.5rem;
}

.hero-grid,
.feature-grid,
.rsvp-layout {
  display: grid;
  gap: 1.5rem;
}

.hero-shell {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

body.home-page .hero-shell {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: calc(var(--radius-lg) + 4px);
  background: linear-gradient(180deg, rgba(17, 24, 30, 0.62), rgba(17, 24, 30, 0.4));
  box-shadow: 0 24px 60px rgba(10, 14, 18, 0.2);
  backdrop-filter: blur(8px);
}

.hero-title {
  margin-bottom: 0.7rem;
  max-width: none;
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

body.home-page .hero .eyebrow {
  color: rgba(245, 240, 232, 0.78);
}

body.home-page .hero-title {
  color: #f8f6f1;
  text-shadow: 0 10px 28px rgba(8, 13, 18, 0.34);
}

.hero-rhythm {
  margin-bottom: 1rem;
  font-size: clamp(1rem, 3vw, 1.65rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-cool);
}

.hero-editorial {
  max-width: 24ch;
  margin: 0 auto;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(1.35rem, 3.2vw, 2.15rem);
  line-height: 1.2;
  color: rgba(20, 32, 42, 0.84);
}

.hero-editorial a {
  color: var(--link);
}

body.home-page .hero-editorial {
  color: rgba(248, 246, 241, 0.92);
}

body.home-page .hero-editorial a,
body.home-page .hero-editorial a:visited {
  color: #f4d4b7;
}

body.home-page .hero-editorial a:hover,
body.home-page .hero-editorial a:focus-visible {
  color: #fde8d5;
}

.hero-date {
  margin: 1.5rem 0 0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

body.home-page .hero-date {
  color: rgba(245, 240, 232, 0.76);
}

.rsvp-main {
  display: grid;
  gap: 1rem;
}

.hero-copy {
  max-width: 62ch;
  font-size: 1.05rem;
  color: var(--muted);
}

.hero-panel,
.info-card,
.callout {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 1.5rem;
}

.stat-list,
.simple-list {
  padding-left: 1.1rem;
  margin-bottom: 0;
}

.stat-list li + li,
.simple-list li + li {
  margin-top: 0.9rem;
}

.stat-title {
  display: block;
  margin-bottom: 0.2rem;
  font-weight: 800;
}

.stat-copy,
.muted,
.helper-text {
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-actions {
  justify-content: center;
  margin-top: 2.25rem;
}

body.home-page .button-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: #f8f6f1;
}

body.home-page .button-secondary:visited,
body.home-page .button-secondary:hover,
body.home-page .button-secondary:focus-visible {
  color: #f8f6f1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:visited {
  color: inherit;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--surface-dark);
  color: #fff;
  box-shadow: 0 12px 24px rgba(24, 33, 39, 0.18);
}

.button-primary:visited,
.button-primary:hover,
.button-primary:focus-visible {
  color: #fff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--line);
}

.button-wide {
  width: 100%;
  margin-top: 1rem;
}

.section {
  padding: 1.5rem 0 4rem;
}

.section-accent {
  padding-top: 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 1.5rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.teaser-grid {
  display: grid;
  gap: 1rem;
}

.teaser-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.teaser-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}

.teaser-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 18, 23, 0.02) 0%, rgba(12, 18, 23, 0.26) 42%, rgba(12, 18, 23, 0.82) 100%);
}

.teaser-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.45rem;
  padding: 1.35rem;
  color: #f8f6f1;
}

.teaser-overlay h3,
.teaser-overlay p {
  margin-bottom: 0;
}

.teaser-overlay h3 {
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.teaser-overlay p {
  max-width: 28ch;
  color: rgba(248, 246, 241, 0.82);
}

.teaser-kicker {
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(248, 246, 241, 0.74);
}

.teaser-madness .teaser-media {
  background-image:
    linear-gradient(135deg, rgba(17, 32, 43, 0.1), rgba(17, 32, 43, 0.34)),
    radial-gradient(circle at 22% 18%, rgba(255, 182, 110, 0.34), transparent 22%),
    linear-gradient(135deg, #3f5f75 0%, #1c2f3d 45%, #0f1a22 100%);
}

.teaser-skiing .teaser-media {
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(14, 22, 30, 0.3)),
    radial-gradient(circle at 78% 24%, rgba(255, 236, 195, 0.44), transparent 18%),
    linear-gradient(160deg, #dfe8ec 0%, #8da3af 32%, #49606c 64%, #182127 100%);
}

.teaser-gambling .teaser-media {
  background-image:
    linear-gradient(135deg, rgba(11, 20, 18, 0.12), rgba(11, 20, 18, 0.4)),
    radial-gradient(circle at 72% 18%, rgba(228, 198, 124, 0.4), transparent 20%),
    linear-gradient(155deg, #365246 0%, #1f352e 40%, #111d19 100%);
}

.teaser-house .teaser-media {
  background-image:
    linear-gradient(135deg, rgba(30, 20, 14, 0.1), rgba(30, 20, 14, 0.4)),
    radial-gradient(circle at 25% 22%, rgba(248, 203, 141, 0.38), transparent 18%),
    linear-gradient(150deg, #856347 0%, #4f392a 42%, #241915 100%);
}

.info-card {
  padding: 1.4rem;
}

.info-card-strong {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(232, 217, 203, 0.72));
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-item {
  padding: 1.2rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  padding: 1.4rem;
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.callout {
  padding: 1.4rem;
}

.embed-placeholder {
  min-height: 250px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  border: 2px dashed rgba(143, 91, 52, 0.35);
  border-radius: var(--radius-md);
  background: rgba(248, 244, 239, 0.88);
}

.embed-media-grid {
  display: grid;
  gap: 1rem;
}

.rsvp-photo-link {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.rsvp-photo {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.faq-stack {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  padding: 0 1.2rem;
  box-shadow: var(--shadow);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 0;
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding-bottom: 1.2rem;
}

.house-hero {
  padding-top: 4.5rem;
}

.house-hero-grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.house-hero-copy h1 {
  max-width: 12ch;
  margin-bottom: 1rem;
}

.house-hero-editorial {
  max-width: 34ch;
  margin-bottom: 1.5rem;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  line-height: 1.24;
  color: rgba(20, 32, 42, 0.82);
}

.house-hero-editorial a {
  color: var(--link);
}

.house-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.house-stat-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.6rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(20, 32, 42, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 10px 24px rgba(20, 32, 42, 0.05);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.house-hero-note {
  margin-bottom: 0;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--accent-cool);
}

.house-collage {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: stretch;
}

.house-shot {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.house-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 18, 24, 0) 45%, rgba(11, 18, 24, 0.14) 100%);
  pointer-events: none;
}

.house-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.house-shot-large {
  grid-row: span 2;
  min-height: 440px;
}

.house-shot-fireplace,
.house-shot-deck,
.house-shot-game {
  min-height: 140px;
}

.house-transition {
  padding-top: 0.5rem;
  padding-bottom: 2.5rem;
}

.house-transition p {
  margin-bottom: 0;
  text-align: center;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.2;
  color: rgba(20, 32, 42, 0.78);
}

.house-highlights-section {
  padding-top: 0;
}

.house-highlights-grid {
  display: grid;
  gap: 1rem;
}

.house-highlight-card {
  position: relative;
  padding: 1.35rem;
  border: 1px solid rgba(20, 32, 42, 0.09);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 241, 234, 0.9));
  box-shadow: var(--shadow);
}

.house-highlight-card h3,
.house-highlight-card p {
  margin-bottom: 0;
}

.house-highlight-card h3 {
  margin-bottom: 0.4rem;
  font-size: 1.2rem;
}

.house-highlight-card p {
  max-width: 28ch;
  color: var(--muted);
}

.house-highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--surface-dark), #355060);
  color: #f8f6f1;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.house-cta-panel {
  margin-top: 1.25rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(232, 217, 203, 0.68));
  box-shadow: var(--shadow);
}

.house-cta-panel p:last-of-type {
  margin-bottom: 1.1rem;
}

.guys-page {
  padding-top: 4.5rem;
}

.guys-intro {
  max-width: 760px;
  margin: 0 auto 1.75rem;
  text-align: center;
}

.guys-intro h1 {
  margin-bottom: 0.8rem;
  max-width: none;
  font-size: clamp(2.9rem, 9vw, 5.4rem);
  text-transform: uppercase;
}

.guys-subheadline {
  margin-bottom: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 2.05rem);
  line-height: 1.18;
  color: rgba(20, 32, 42, 0.8);
}

.guys-cta {
  margin-top: 1.5rem;
}

.guys-cta .button {
  min-width: 220px;
}

.guys-cta-note {
  margin: 0.85rem 0 0;
  font-size: 0.98rem;
  color: var(--muted);
}

.snapshot-section {
  position: relative;
  padding-top: 2rem;
}

.snapshot-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(47, 75, 96, 0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(143, 91, 52, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(232, 217, 203, 0.2));
  pointer-events: none;
}

.snapshot-section .container {
  position: relative;
}

.snapshot-heading {
  max-width: 760px;
  margin: 0 auto 1.6rem;
  text-align: center;
}

.snapshot-heading h2 {
  margin-bottom: 0.8rem;
}

.snapshot-copy {
  margin-bottom: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(1.15rem, 2.8vw, 1.55rem);
  line-height: 1.28;
  color: rgba(20, 32, 42, 0.8);
}

.snapshot-grid {
  display: grid;
  gap: 1rem;
}

.snapshot-card {
  position: relative;
  padding: 1.35rem;
  border: 1px solid rgba(20, 32, 42, 0.1);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 242, 236, 0.92));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.snapshot-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--accent), var(--accent-cool));
}

.snapshot-card h3,
.snapshot-card p {
  margin-bottom: 0;
}

.snapshot-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.45rem;
}

.snapshot-card p {
  max-width: 30ch;
  color: var(--muted);
}

.snapshot-day {
  margin-bottom: 0.6rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.guys-grid {
  display: grid;
  gap: 1.2rem;
}

.guy-card {
  position: relative;
}

.guy-card-frame {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 420px;
  border-radius: 26px;
  border: 1px solid rgba(20, 32, 42, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(233, 226, 216, 0.9));
  box-shadow: 0 22px 50px rgba(20, 32, 42, 0.1);
}

.guy-card-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 18px;
  pointer-events: none;
}

.guy-card-locked .guy-card-frame {
  background:
    radial-gradient(circle at top left, rgba(183, 122, 79, 0.22), transparent 28%),
    linear-gradient(160deg, #fcfaf6 0%, #eee4d8 44%, #dac8b4 100%);
}

.guy-card-locked .guy-card-frame::after,
.guy-card-placeholder .guy-card-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 43%, rgba(255, 255, 255, 0.2) 43% 46%, transparent 46% 100%);
  pointer-events: none;
}

.guy-card-media {
  position: relative;
  min-height: 320px;
  padding: 0.85rem 0.85rem 0;
}

.poster-trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: 18px 18px 10px 10px;
  background: transparent;
  cursor: zoom-in;
}

.poster-trigger:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--focus-ring);
}

.guy-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px 18px 10px 10px;
  border: 1px solid rgba(20, 32, 42, 0.09);
  background: #d8d0c7;
}

.guy-card-footer {
  position: relative;
  z-index: 1;
  padding: 1rem 1.05rem 1.1rem;
}

.guy-card-slot {
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.guy-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.guy-card-footer h2 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 4vw, 1.8rem);
}

.guy-card-footer p:last-child {
  margin-bottom: 0;
}

.guy-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--surface-dark), #355060);
  color: #f8f6f1;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.guy-card-placeholder .guy-card-frame {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(238, 233, 225, 0.9));
}

.guy-card-placeholder .guy-card-frame::before {
  border-style: dashed;
  border-color: rgba(47, 75, 96, 0.22);
}

.guy-placeholder-art {
  position: relative;
  min-height: 320px;
  margin: 0.85rem 0.85rem 0;
  border-radius: 18px 18px 10px 10px;
  border: 1px solid rgba(47, 75, 96, 0.16);
  background:
    radial-gradient(circle at top, rgba(143, 91, 52, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(244, 241, 234, 0.9), rgba(223, 230, 234, 0.7));
  overflow: hidden;
}

.guy-placeholder-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(47, 75, 96, 0.06) 0,
      rgba(47, 75, 96, 0.06) 12px,
      transparent 12px,
      transparent 28px
    );
}

.guy-silhouette {
  position: absolute;
  left: 50%;
  bottom: 1.35rem;
  width: 58%;
  aspect-ratio: 0.78;
  transform: translateX(-50%);
  border-radius: 45% 45% 18% 18%;
  background:
    radial-gradient(circle at 50% 22%, rgba(47, 75, 96, 0.7) 0 18%, transparent 18.5%),
    radial-gradient(circle at 50% 56%, rgba(47, 75, 96, 0.28) 0 34%, transparent 34.5%),
    linear-gradient(180deg, rgba(47, 75, 96, 0.2), rgba(47, 75, 96, 0.52));
  filter: drop-shadow(0 16px 24px rgba(20, 32, 42, 0.12));
}

.guy-card-placeholder .guy-card-footer p:last-child {
  color: var(--muted);
}

.poster-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.poster-lightbox[hidden] {
  display: none;
}

.poster-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 13, 18, 0.82), rgba(8, 13, 18, 0.68)),
    radial-gradient(circle at top, rgba(143, 91, 52, 0.16), transparent 28%);
  backdrop-filter: blur(8px);
}

.poster-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 760px);
}

.poster-lightbox-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(17, 24, 30, 0.74);
  color: #f8f6f1;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(8, 13, 18, 0.28);
}

.poster-lightbox-frame {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(17, 24, 30, 0.92);
  box-shadow: 0 28px 70px rgba(8, 13, 18, 0.34);
}

.poster-lightbox-image {
  display: block;
  width: 100%;
  max-height: min(84vh, 1100px);
  object-fit: contain;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-shell {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(20, 32, 42, 0.08);
  color: var(--muted);
  font-size: 0.95rem;
}

@media (min-width: 720px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero,
  .page-hero {
    padding: 5rem 0 2rem;
  }

  .hero {
    padding-top: 6rem;
  }

  .hero-editorial {
    max-width: 34ch;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.9fr);
    align-items: start;
  }

  .feature-grid,
  .rsvp-layout {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }

  .house-hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: 2rem;
  }

  .house-collage {
    grid-template-columns: 1.08fr 0.92fr;
    grid-template-rows: 1fr 1fr 1fr;
  }

  .house-shot-large {
    grid-row: 1 / span 3;
    min-height: 510px;
  }

  .house-shot-fireplace,
  .house-shot-deck,
  .house-shot-game {
    min-height: 155px;
  }

  .three-up {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .teaser-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .house-highlights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .snapshot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guys-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .embed-media-grid {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.85fr);
    align-items: stretch;
  }

  .footer-shell {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 1100px) {
  .snapshot-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .guys-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
