/* CocoPlum — Premium Editorial Studio
   Deep Plum + Warm Coconut / Cream
   Luxury Editorial Aesthetic
*/

:root {
  --plum-deep: #1F1224;
  --plum: #2A1A30;
  --plum-soft: #3D2A42;
  --cream: #F7F2EB;
  --cream-warm: #F0E9DF;
  --coconut: #EDE4D6;
  --text-primary: #1F1224;
  --text-secondary: #5C4A5E;
  --text-muted: #8A7A8C;
  --border-subtle: rgba(31, 18, 36, 0.08);
  --transition: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  --font-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-sans: "Inter", "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition);
}

a:hover {
  opacity: 0.7;
}

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

/* ========== ENTER PAGE ========== */
.enter-page {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: var(--plum-deep);
}

.enter-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.enter-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(31, 18, 36, 0.35) 0%,
    rgba(31, 18, 36, 0.15) 40%,
    rgba(31, 18, 36, 0.45) 100%
  );
  z-index: 2;
}

.enter-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 4.5rem 2rem 5rem;
}

.enter-logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  letter-spacing: 0.25em;
  color: var(--cream);
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.95;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-align: center;
}

.enter-logo .logo-tagline {
  color: rgba(247, 242, 235, 0.65);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
}

.enter-button {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(247, 242, 235, 0.5);
  padding: 1.1rem 3.2rem;
  background: transparent;
  cursor: pointer;
  transition: all 0.5s ease;
  text-decoration: none;
  display: inline-block;
}

.enter-button:hover {
  background: rgba(247, 242, 235, 0.12);
  border-color: var(--cream);
  opacity: 1;
}

/* ========== SHARED LAYOUT ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 242, 235, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.75rem 0;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.nav-left,
.nav-right {
  display: flex;
  gap: 2.8rem;
  align-items: center;
}

.nav-left {
  justify-content: flex-end;
}

.nav-right {
  justify-content: flex-start;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-primary);
  font-weight: 450;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--plum);
  transition: width 0.4s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--plum-deep);
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
}

.logo-tagline {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 18px;
  position: relative;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--plum-deep);
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 8px; }
.menu-toggle span:nth-child(3) { top: 16px; }

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 8px;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 90;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--plum-deep);
}

/* ========== MAIN CONTENT ========== */
.page {
  min-height: 100vh;
}

.section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.hero-statement {
  padding: 7.5rem 0 5.5rem;
  text-align: center;
}

.hero-statement h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  color: var(--plum-deep);
  margin-bottom: 2.8rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.22;
}

.hero-statement p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 2.05;
  letter-spacing: 0.01em;
}

/* Image Grid / Editorial */
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  padding: 3.5rem 0 6.5rem;
}

.editorial-grid.two-col {
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.editorial-grid.asymmetric {
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

.editorial-image {
  position: relative;
  overflow: hidden;
  background: var(--coconut);
}

.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.editorial-image:hover img {
  transform: scale(1.03);
}

.editorial-image.tall {
  aspect-ratio: 3/4;
}

.editorial-image.wide {
  aspect-ratio: 16/10;
}

.editorial-image.square {
  aspect-ratio: 1;
}

/* Confidentiality */
.confidential {
  padding: 6rem 0;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin: 4rem 0 5rem;
}

.confidential h3 {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 2.8rem;
  font-family: var(--font-sans);
  font-weight: 500;
}

.confidential p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 2.15;
}

/* Packages */
.packages {
  padding: 5rem 0 8rem;
}

.packages-header {
  text-align: center;
  margin-bottom: 5rem;
}

.packages-header h2 {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--plum);
  font-family: var(--font-sans);
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.package-group {
  margin-bottom: 5.5rem;
}

.package-group:last-child {
  margin-bottom: 0;
}

.package-category {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--plum-deep);
  text-align: center;
  margin-bottom: 3.2rem;
  letter-spacing: 0.04em;
}

.package-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.package-card {
  border: 1px solid var(--border-subtle);
  padding: 2.8rem 2.2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.4);
  transition: border-color 0.4s ease, background 0.4s ease;
}

.package-card:hover {
  border-color: rgba(42, 26, 48, 0.18);
  background: rgba(255, 255, 255, 0.7);
}

.package-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--plum-deep);
  margin-bottom: 0.4rem;
}

.package-price {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--plum);
  margin-bottom: 1.4rem;
  font-weight: 500;
}

.package-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

/* Closing invitation */
.invitation {
  text-align: center;
  padding: 6rem 0 5rem;
}

.invitation h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--plum-deep);
  margin-bottom: 2rem;
  line-height: 1.25;
}

.invitation a {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--plum);
  padding-bottom: 0.3rem;
  color: var(--plum-deep);
}

/* ========== ABOUT ========== */
.about-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 8.5rem 2.5rem 10rem;
  text-align: center;
}

.about-content h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 3rem;
  color: var(--plum-deep);
}

.about-content .lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.disciplines {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 1.6rem;
  margin: 3rem 0 3.5rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--plum-deep);
  letter-spacing: 0.03em;
}

.disciplines span {
  opacity: 0.85;
}

.about-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1.6rem;
}

.about-content .closing {
  margin-top: 3rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--plum-deep);
  font-style: italic;
}

/* ========== CONTACT ========== */
.contact-section {
  max-width: 560px;
  margin: 0 auto;
  padding: 8rem 2.5rem 9rem;
  text-align: center;
}

.contact-section h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  margin-bottom: 3.5rem;
  color: var(--plum-deep);
  letter-spacing: 0.08em;
}

.contact-form {
  text-align: left;
}

.form-group {
  margin-bottom: 1.8rem;
}

.form-group label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.55rem;
  font-weight: 500;
}

.form-group.optional label {
  color: var(--text-muted);
  opacity: 0.7;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(31, 18, 36, 0.18);
  padding: 0.7rem 0;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--plum-deep);
  outline: none;
  transition: border-color 0.3s ease;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--plum);
}

.form-group textarea {
  min-height: 120px;
  line-height: 1.6;
}

.form-group.optional input {
  opacity: 0.85;
}

.submit-btn {
  display: inline-block;
  margin-top: 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--plum-deep);
  border: none;
  padding: 1.15rem 3.2rem;
  cursor: pointer;
  transition: background 0.4s ease, opacity 0.4s ease;
  width: 100%;
}

.submit-btn:hover {
  background: var(--plum);
}

.contact-email {
  margin-top: 5rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-align: center;
}

/* ========== FOOTER minimal ========== */
.site-footer {
  padding: 2.8rem 1.5rem 3rem;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}

.site-footer p {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.site-footer .footer-email {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: none;
  color: rgba(92, 74, 94, 0.55);
  text-decoration: none;
  margin-top: 0.35rem;
}

.site-footer .footer-email:hover {
  opacity: 0.8;
}

/* Privacy always centered */
.confidential {
  text-align: center;
}
.confidential p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ========== ANIMATIONS ========== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: 1fr auto 1fr;
    padding: 0 1.1rem;
    align-items: center;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
    grid-column: 3;
  }

  .logo {
    font-size: 1.05rem;
    letter-spacing: 0.16em;
    justify-self: center;
    grid-column: 2;
  }

  .section {
    padding: 0 1.6rem;
  }

  .hero-statement {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .hero-statement h1 {
    padding: 0 0.3rem;
  }

  .hero-statement p,
  .about-content p,
  .belief-block p,
  .confidential p,
  .package-desc,
  .philosophy-intro p {
    padding-left: 0.35rem;
    padding-right: 0.35rem;
    line-height: 2;
  }

  .hero-statement h1 {
    margin-bottom: 2rem;
    line-height: 1.25;
  }

  .confidential h3 {
    margin-bottom: 2.2rem;
  }

  .invitation h2 {
    margin-bottom: 2.4rem;
  }

  .belief-block,
  .philosophy-intro,
  .about-content,
  .contact-section {
    padding-left: 1.6rem !important;
    padding-right: 1.6rem !important;
  }

  .hero-statement {
    padding: 5.5rem 0 4rem;
  }

  .editorial-grid.two-col,
  .editorial-grid.asymmetric {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .package-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .package-card {
    padding: 2.2rem 1.8rem;
  }

  .confidential {
    padding: 6.5rem 0;
  }

  .invitation {
    padding: 7rem 0 8rem;
  }

  .about-content {
    padding: 6.5rem 1.5rem 8rem;
  }

  .contact-section {
    padding: 6rem 1.5rem 7.5rem;
  }

  .enter-content {
    padding: 2.8rem 1.6rem 4rem;
  }

  .hero-statement p,
  .about-content p,
  .belief-block p,
  .confidential p {
    padding-left: 0.4rem;
    padding-right: 0.4rem;
  }
}

@media (max-width: 600px) {
  .enter-content {
    padding: 2.4rem 1.5rem 3.8rem;
  }

  .section {
    padding: 0 1.5rem;
  }

  .hero-statement p,
  .about-content p,
  .belief-block p,
  .confidential p,
  .package-desc {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .belief-block,
  .philosophy-intro,
  .about-content,
  .contact-section {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .package-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .hero-statement h1 {
    font-size: 2.1rem;
  }

  .package-category {
    font-size: 1.35rem;
  }
}

@media (max-width: 900px) {
  .hero-statement {
    padding-top: 5.75rem !important;
    padding-bottom: 3.5rem !important;
  }
  .hero-statement h1 {
    margin-bottom: 2.4rem !important;
    line-height: 1.28 !important;
  }
  .hero-statement p {
    line-height: 2.1 !important;
  }
  .confidential {
    padding: 4.5rem 0 !important;
    margin: 3rem 0 3.5rem !important;
  }
  .confidential h3 {
    margin-bottom: 2.4rem !important;
  }
  .confidential p {
    line-height: 2.15 !important;
  }
  .invitation {
    padding: 4rem 0 3.5rem !important;
  }
  .invitation h2 {
    margin-bottom: 1.8rem !important;
  }
  .editorial-grid {
    padding-bottom: 3rem !important;
    gap: 2.5rem !important;
  }
  .packages {
    padding-top: 3rem !important;
  }
}


/* Editorial layout — campaign groups */
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.editorial-item {
  margin: 0;
  overflow: hidden;
  background: #ebe4db;
}

.editorial-item img,
.editorial-item video {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.editorial-item.full {
  width: 100%;
}

.editorial-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.video-item video {
  width: 100%;
  height: auto;
  display: block;
  background: #111;
}

@media (max-width: 700px) {
  .editorial-pair {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .editorial-grid {
    gap: 1.1rem;
    padding: 1rem 0 2rem;
  }
}

/* Footer copyright */
.footer-copyright {
  font-size: 0.62rem !important;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
  color: rgba(92, 74, 94, 0.42) !important;
  max-width: 420px;
  margin: 0.85rem auto 0 !important;
  line-height: 1.55;
}

.site-footer .footer-email {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: none;
  color: rgba(92, 74, 94, 0.55);
  text-decoration: none;
  margin-top: 0.35rem;
}

/* Kill grey / black bars around media */
.editorial-item {
  background: transparent !important;
  margin: 0;
  overflow: hidden;
}
.editorial-item img,
.editorial-item video {
  width: 100%;
  height: auto;
  display: block;
  background: var(--cream, #f7f2eb);
}

.video-grid-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.video-cell {
  margin: 0;
  overflow: hidden;
  background: transparent;
  aspect-ratio: 9 / 16;
}
.video-cell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #f7f2eb;
}
@media (max-width: 700px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
  .video-cell {
    aspect-ratio: 16 / 10;
  }
}

/* Privacy centered */
.confidential {
  text-align: center !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.confidential p {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}


/* Keep site centered on wide desktops */
html { background: var(--cream, #f7f2eb); }
body {
  max-width: 1400px;
  margin: 0 auto;
  background: var(--cream, #f7f2eb);
}
.site-header {
  max-width: 1400px;
  margin: 0 auto;
  left: 0;
  right: 0;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
main, .section, .editorial-grid, .packages, .confidential, .invitation, .hero-statement {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.video-grid-section {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.site-footer {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}



/* FINAL spacing + layout fixes */
.editorial-grid {
  gap: 1.25rem !important;
  padding: 1.25rem 0 1.25rem !important;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.editorial-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem !important;
  align-items: start;
}
.editorial-item {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  line-height: 0;
}
.editorial-item img,
.editorial-item video {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
  vertical-align: top;
  background: transparent !important;
}
.section {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}
.hero-statement.section {
  padding-top: 5rem !important;
  padding-bottom: 2rem !important;
}
.confidential.section {
  padding-top: 1.5rem !important;
  padding-bottom: 2.5rem !important;
  margin-top: 0 !important;
}
.packages.section {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
.video-grid-section {
  padding: 1rem 1.5rem 1rem !important;
  margin-bottom: 0 !important;
}
.invitation.section {
  padding-top: 3rem !important;
  padding-bottom: 5rem !important;
  margin-bottom: 2rem !important;
}
.invitation h2 {
  margin-bottom: 1.5rem !important;
}
.site-footer {
  padding-top: 2.5rem !important;
  padding-bottom: 3rem !important;
}
@media (max-width: 700px) {
  .editorial-pair { grid-template-columns: 1fr !important; }
  .editorial-grid { gap: 1rem !important; padding: 1rem 0 1rem !important; }
  .invitation.section { padding-top: 2.5rem !important; padding-bottom: 4rem !important; }
}

/* Remove large white space under last photos + tighten video grid */
.editorial-grid.section:last-of-type,
.editorial-grid + .video-grid-section {
  padding-bottom: 0.5rem !important;
  margin-bottom: 0 !important;
}
.video-grid-section {
  padding-top: 0.75rem !important;
  padding-bottom: 1.5rem !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.confidential.section {
  margin-top: 0.5rem !important;
  padding-top: 2rem !important;
  padding-bottom: 2.5rem !important;
}
/* Ensure no extra gap after last image pair */
.editorial-grid {
  padding-bottom: 0.75rem !important;
}
.editorial-grid:last-of-type {
  padding-bottom: 0.5rem !important;
}

/* === CRITICAL FIX: compact video grid + kill white space after last photo === */
.editorial-grid {
  padding-top: 0.75rem !important;
  padding-bottom: 0.5rem !important;
  margin-bottom: 0 !important;
  gap: 1rem !important;
}
.editorial-grid:last-of-type {
  padding-bottom: 0.25rem !important;
  margin-bottom: 0 !important;
}
.video-grid-section {
  padding: 0.5rem 1.25rem 1rem !important;
  margin: 0 auto 0 !important;
  max-width: 1100px;
}
.video-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 0.85rem !important;
  margin: 0 !important;
}
.video-cell {
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: #ebe4db !important;
  aspect-ratio: 3 / 4 !important;   /* much less tall than 9/16 */
  position: relative;
  line-height: 0;
}
.video-cell video {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  background: #ebe4db;
}
.confidential.section {
  margin-top: 1rem !important;
  padding-top: 2rem !important;
  padding-bottom: 2.5rem !important;
}
@media (max-width: 700px) {
  .video-grid {
    grid-template-columns: 1fr 1fr !important; /* keep 2-col even on mobile for compactness */
    gap: 0.6rem !important;
  }
  .video-cell {
    aspect-ratio: 3 / 4 !important;
  }
  .editorial-grid {
    padding-bottom: 0.4rem !important;
  }
  .video-grid-section {
    padding: 0.4rem 1rem 0.8rem !important;
  }
}

/* Animated WebP loops in the grid */
.video-cell .loop-img,
.video-cell img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #ebe4db;
}
.video-cell {
  background: #ebe4db !important;
}
