:root {
  --black: #070707;
  --charcoal: #151212;
  --off-white: #f7f1eb;
  --white: #ffffff;
  --accent: #d7a07f;
  --muted: #aaa9a5;
  --border: rgba(255,255,255,.14);
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 64px);
  background: linear-gradient(to bottom, rgba(0,0,0,.88), transparent);
  transition: background .25s ease, padding .25s ease;
}

.site-header.scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(7,7,7,.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.65rem;
  letter-spacing: .07em;
}

.logo span {
  color: var(--accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.site-nav a:not(.nav-cta):hover {
  color: var(--accent);
}

.nav-cta {
  border: 1px solid var(--accent);
  padding: 11px 16px;
  color: var(--accent);
}

.nav-cta:hover {
  background: var(--accent);
  color: var(--black);
}

.menu-toggle {
  display: none;
  background: transparent;
  color: white;
  border: 1px solid var(--border);
  padding: 8px 12px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 140px 24px 90px;
  background:
    url("https://images.unsplash.com/photo-1571266028243-d220c9c3b2d2?auto=format&fit=crop&w=2200&q=88")
    center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20,12,12,.9) 0%, rgba(20,12,12,.58) 55%, rgba(20,12,12,.34) 100%),
    linear-gradient(to top, rgba(0,0,0,.85), transparent 50%);
}

.hero-content {
  position: relative;
  width: min(var(--max-width), 100%);
  z-index: 1;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -.025em;
  line-height: 1.03;
}

h1 {
  max-width: 900px;
  margin-bottom: 28px;
  font-size: clamp(3.4rem, 8vw, 7.4rem);
}

h1 span {
  color: var(--accent);
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  margin-bottom: 28px;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 680px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255,255,255,.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .055em;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: var(--black);
}

.button-secondary {
  border-color: rgba(255,255,255,.55);
  background: rgba(0,0,0,.22);
  color: white;
}

.button-dark {
  background: var(--black);
  color: white;
}

.scroll-cue {
  position: absolute;
  right: clamp(24px, 4vw, 64px);
  bottom: 28px;
  z-index: 1;
  color: rgba(255,255,255,.6);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  writing-mode: vertical-rl;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--accent);
  color: var(--black);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.trust-bar span {
  text-align: center;
  padding: 18px 14px;
  border-right: 1px solid rgba(0,0,0,.2);
}

.section {
  padding: 110px clamp(22px, 5vw, 80px);
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin-inline: auto;
  color: #c2c0bb;
}

.services {
  background: var(--charcoal);
}

.card-grid {
  width: min(var(--max-width), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.service-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 50px);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.94), rgba(0,0,0,.4));
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card-weddings {
  background-image: url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1400&q=84");
}

.service-card-parties {
  background-image: url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=1400&q=84");
}

.service-card-interactive {
  background-image: url("https://images.unsplash.com/photo-1516280440614-37939bbacd81?auto=format&fit=crop&w=1400&q=84");
}

.service-card-audio {
  background-image: url("https://images.unsplash.com/photo-1598488035139-bdbb2231ce04?auto=format&fit=crop&w=1400&q=84");
}


.service-card h3 {
  font-size: 2rem;
}

.service-card p {
  max-width: 480px;
  margin-bottom: 0;
  color: rgba(255,255,255,.75);
}

.split-section {
  min-height: 760px;
  padding: 0;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  background: var(--off-white);
  color: var(--black);
}

.split-image {
  min-height: 620px;
  background:
    linear-gradient(to top, rgba(0,0,0,.28), transparent 55%),
    url("assets/images/event-setup-dj-jordan.jpg") center/cover no-repeat;
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 120px);
}

.split-content p:not(.eyebrow) {
  color: #4f4d48;
}

.text-link {
  width: fit-content;
  margin-top: 12px;
  font-weight: 800;
  text-transform: uppercase;
  border-bottom: 3px solid var(--accent);
}

.package-section {
  background: #eee3da;
  color: var(--black);
}

.package-section .section-heading > p:last-child {
  color: #55514a;
}

.package-grid {
  width: min(var(--max-width), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.package-card {
  padding: 38px;
  background: white;
  border: 1px solid #d5d0c6;
  display: flex;
  flex-direction: column;
}

.package-card.featured {
  background: var(--black);
  color: white;
  transform: translateY(-18px);
  border-color: var(--black);
}

.package-label {
  color: #75716a;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.featured .package-label {
  color: var(--accent);
}

.package-card h3 {
  font-size: 1.8rem;
  min-height: 52px;
}

.price {
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  margin-bottom: 25px;
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
}

.package-card li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.12);
}

.featured li {
  border-color: rgba(255,255,255,.14);
}

.about-section {
  width: min(var(--max-width), calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}

.large-copy {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
}

.about-copy p:not(.eyebrow) {
  color: #c3c1bb;
}

.about-image {
  min-height: 650px;
  display: grid;
  place-items: end start;
  padding: 22px;
  background:
    linear-gradient(to top, rgba(0,0,0,.68), transparent 52%),
    url("assets/images/wedding-dj-jordan.jpg") center 28%/cover no-repeat;
}


.process-section {
  background: var(--accent);
  color: var(--black);
}

.section-heading.light .eyebrow {
  color: var(--black);
}

.process-grid {
  width: min(var(--max-width), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.process-grid article {
  padding: 38px;
  border-top: 1px solid rgba(0,0,0,.3);
  border-right: 1px solid rgba(0,0,0,.3);
}

.process-grid article:last-child {
  border-right: 0;
}

.process-grid span {
  display: block;
  margin-bottom: 60px;
  font-family: "Playfair Display", serif;
  font-size: 3rem;
}

.review-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
  width: min(var(--max-width), calc(100% - 40px));
  margin-inline: auto;
}

.review-card {
  padding: clamp(40px, 6vw, 75px);
  background: #171717;
  border: 1px solid var(--border);
}

.quote {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.35;
  font-weight: 600;
}

.reviewer {
  margin: 28px 0 0;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.review-copy p:not(.eyebrow) {
  color: #aaa;
}

.contact-section {
  padding: 110px clamp(22px, 7vw, 110px);
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(50px, 8vw, 120px);
  background: var(--off-white);
  color: var(--black);
}

.contact-section > div p:last-child {
  color: #55514a;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

label {
  display: grid;
  gap: 8px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;
  border: 0;
  border-bottom: 2px solid #c9c3b8;
  border-radius: 0;
  padding: 13px 4px;
  background: transparent;
  color: var(--black);
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--black);
}

textarea {
  resize: vertical;
}


footer {
  padding: 60px clamp(22px, 5vw, 80px) 30px;
  text-align: center;
  background: var(--black);
}

.footer-logo {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 2.4rem;
}

footer > p {
  color: #9d9b96;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 30px 0;
  font-weight: 700;
  text-transform: uppercase;
  font-size: .8rem;
}

.footer-links a:hover {
  color: var(--accent);
}

.copyright {
  margin: 0;
  font-size: .72rem;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    inset: 100% 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 24px 26px;
    background: rgba(7,7,7,.98);
    border-top: 1px solid var(--border);
  }

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

  .site-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--border);
  }

  .nav-cta {
    margin-top: 12px;
    text-align: center;
  }

  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid,
  .split-section,
  .about-section,
  .review-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .package-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .package-card.featured {
    transform: none;
  }

  .about-image {
    min-height: 520px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(0,0,0,.3);
  }
}

@media (max-width: 620px) {
  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  h1 {
    font-size: clamp(3.4rem, 17vw, 5.6rem);
  }

  h2 {
    font-size: clamp(2.6rem, 13vw, 4.4rem);
  }

  .hero {
    align-items: end;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-bar {
    grid-template-columns: 1fr;
  }

  .trust-bar span {
    border-right: 0;
    border-bottom: 1px solid rgba(0,0,0,.2);
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 360px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}


.other-events-section {
  background: linear-gradient(to top, rgba(0,0,0,.68), transparent 52%),
    url("assets/images/wedding-dj-jordan.jpg") center 28%/cover no-repeat;
}

.other-events-section .section-heading > p:last-child {
  color: #625d57;
}

.other-events-grid {
  width: min(var(--max-width), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #d8cec5;
  border-left: 1px solid #d8cec5;
}

.other-events-grid article {
  min-height: 220px;
  padding: 34px;
  border-right: 1px solid #d8cec5;
  border-bottom: 1px solid #d8cec5;
  background: rgba(255,255,255,.45);
}

.other-events-grid h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  margin-bottom: 14px;
}

.other-events-grid p {
  margin-bottom: 0;
  color: #625d57;
}

@media (max-width: 900px) {
  .other-events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .other-events-grid {
    grid-template-columns: 1fr;
  }
}

.logo {
  text-transform: none;
  letter-spacing: .025em;
}

.site-nav {
  letter-spacing: .035em;
}


/* Wedding inquiry page */
.inquiry-page,
.thank-you-page {
  background: #f7f1eb;
  color: var(--black);
}

.inquiry-page .site-header {
  position: fixed;
}

.inquiry-back {
  display: inline-flex;
}

.inquiry-main {
  padding: 150px clamp(20px, 5vw, 72px) 100px;
}

.inquiry-intro {
  width: min(820px, 100%);
  margin: 0 auto 48px;
  text-align: center;
}

.inquiry-intro h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6rem);
}

.inquiry-intro > p:last-child {
  max-width: 650px;
  margin-inline: auto;
  color: #625d57;
  font-size: 1.08rem;
}

.inquiry-card {
  width: min(900px, 100%);
  margin-inline: auto;
  background: white;
  box-shadow: 0 28px 80px rgba(61, 44, 35, .12);
}

.inquiry-form {
  display: grid;
}

.form-section {
  padding: clamp(32px, 6vw, 64px);
  border-bottom: 1px solid #e7ded6;
}

.form-section-heading {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 34px;
}

.form-section-heading > span {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  font-weight: 700;
}

.form-section-heading h2 {
  margin: 0 0 5px;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.form-section-heading p {
  margin: 0;
  color: #756e68;
}

.inquiry-form label,
.inquiry-form legend {
  color: #26211e;
}

.inquiry-form input,
.inquiry-form textarea,
.inquiry-form select {
  padding: 14px 2px;
}

.service-options {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  border: 0;
}

.service-options legend {
  margin-bottom: 10px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.check-option {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border: 1px solid #ded4cc;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
}

.check-option:hover {
  border-color: var(--accent);
  background: #fcf7f3;
}

.check-option input {
  width: auto;
  margin-top: 4px;
  accent-color: var(--accent);
}

.check-option span {
  display: grid;
  gap: 3px;
}

.check-option strong {
  font-size: .98rem;
}

.check-option small {
  color: #756e68;
  font-size: .83rem;
  font-weight: 400;
}

.inquiry-submit {
  padding: clamp(32px, 6vw, 56px);
  text-align: center;
  background: #171313;
  color: white;
}

.inquiry-submit .button {
  min-width: min(100%, 320px);
}

.inquiry-submit p {
  margin: 18px 0 0;
  color: #c9c1bc;
  font-size: .82rem;
}

.inquiry-submit a {
  color: var(--accent);
  text-decoration: underline;
}

.inquiry-footer {
  background: #0b0909;
}

.thank-you-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.thank-you-card {
  width: min(680px, 100%);
  padding: clamp(42px, 8vw, 78px);
  text-align: center;
  background: white;
  box-shadow: 0 25px 70px rgba(61, 44, 35, .12);
}

.thank-you-card h1 {
  font-size: clamp(3.2rem, 8vw, 6rem);
  margin-bottom: 24px;
}

.thank-you-card > p:not(.eyebrow) {
  color: #625d57;
  margin-bottom: 32px;
}

@media (max-width: 620px) {
  .inquiry-main {
    padding-top: 120px;
    padding-inline: 14px;
  }

  .inquiry-card {
    box-shadow: none;
  }

  .form-section-heading {
    gap: 13px;
  }

  .inquiry-back {
    font-size: .7rem;
    padding: 9px 11px;
  }
}


/* Photo and video showcase */
.media-section {
  background: #f7f1eb;
  color: var(--black);
}

.media-section .section-heading > p:last-child {
  color: #625d57;
}

.featured-video {
  width: min(var(--max-width), 100%);
  margin: 0 auto 28px;
}

.video-placeholder {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  padding: 30px;
  text-align: center;
  color: white;
  background:
    linear-gradient(rgba(14,10,10,.64), rgba(14,10,10,.64)),
    url("assets/images/wedding-dj-jordan.jpg") center 25%/cover no-repeat;
}

.video-placeholder h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  margin: 18px 0 8px;
}

.video-placeholder p {
  color: rgba(255,255,255,.78);
}

.play-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: auto;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  font-size: 1.55rem;
  padding-left: 4px;
}

.photo-gallery {
  width: min(var(--max-width), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
}

.photo-gallery figure {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  background: #171313;
}

.photo-gallery .gallery-large {
  grid-row: span 2;
  min-height: 738px;
}

.photo-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-gallery .gallery-large img {
  object-position: center 22%;
}

.photo-gallery figure:nth-child(2) img {
  object-position: center;
}

.photo-gallery figure:nth-child(3) img {
  object-position: center 20%;
}

.photo-gallery figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 12px;
  background: rgba(10,8,8,.76);
  color: white;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .photo-gallery {
    grid-template-columns: 1fr;
  }

  .photo-gallery .gallery-large,
  .photo-gallery figure {
    grid-row: auto;
    min-height: 470px;
  }
}


/* Corrected media sizing: display photos without enlarging them into grainy backgrounds */
.split-image {
  min-height: 0;
  padding: clamp(24px, 4vw, 52px);
  display: grid;
  place-items: center;
  background: #1a1513 !important;
}

.split-image img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 720px;
  height: auto;
  object-fit: contain;
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
}

.about-image {
  min-height: 0;
  padding: clamp(24px, 4vw, 48px);
  display: grid;
  place-items: center;
  background: #171313 !important;
}

.about-image img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 650px;
  height: auto;
  object-fit: contain;
}

.video-placeholder {
  background:
    linear-gradient(rgba(14,10,10,.58), rgba(14,10,10,.58)),
    url("assets/images/wedding-dance.jpg") center/contain no-repeat,
    #171313 !important;
}

.refined-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.refined-gallery figure,
.refined-gallery .gallery-large {
  min-height: 0;
  grid-row: auto;
  background: transparent;
  overflow: visible;
}

.gallery-image-frame {
  display: grid;
  place-items: center;
  height: 520px;
  padding: 18px;
  background: #171313;
  overflow: hidden;
}

.gallery-image-frame.landscape-frame {
  height: 420px;
}

.gallery-image-frame img,
.refined-gallery img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.refined-gallery figcaption {
  position: static;
  display: block;
  margin-top: 10px;
  padding: 0;
  background: transparent;
  color: #302824;
  font-size: .76rem;
}

@media (max-width: 760px) {
  .refined-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-image-frame,
  .gallery-image-frame.landscape-frame {
    height: auto;
    min-height: 320px;
    max-height: 600px;
  }

  .gallery-image-frame img {
    max-height: 560px;
  }
}


/* Final selected photo placement */
.split-image {
  min-height: 700px;
  padding: clamp(28px, 4vw, 58px);
  display: grid;
  place-items: center;
  background: #171313 !important;
}

.split-image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 690px;
  object-fit: contain;
  box-shadow: 0 18px 48px rgba(0,0,0,.2);
}

.about-image {
  min-height: 650px;
  padding: clamp(28px, 4vw, 52px);
  display: grid;
  place-items: center;
  background: #171313 !important;
}

.about-image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 640px;
  object-fit: contain;
}

/* Keep More Than Weddings clean and text-only */
.other-events-section {
  background: var(--off-white) !important;
  background-image: none !important;
}

.other-events-grid,
.other-events-grid article {
  background-image: none !important;
}

.other-events-grid article {
  background: rgba(255,255,255,.45) !important;
}

@media (max-width: 900px) {
  .split-image,
  .about-image {
    min-height: 0;
  }

  .split-image img,
  .about-image img {
    max-height: 600px;
  }
}


/* Final heading color adjustment */
.other-events-section .section-heading h2 {
  color: var(--accent);
}

.other-events-grid h3 {
  color: var(--black);
}


/* Move the More Than Weddings section to the end of the homepage */
main {
  display: flex;
  flex-direction: column;
}

.other-events-section {
  order: 999;
}


/* Keep the non-wedding offerings and custom package together at the end */
main {
  display: flex;
  flex-direction: column;
}

.other-events-section {
  order: 998;
}

.custom-event-section {
  order: 999;
  background: #171313;
  color: white;
}

.custom-event-wrap {
  width: min(var(--max-width), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}

.custom-event-copy h2 {
  color: var(--accent);
}

.custom-event-copy > p:last-child {
  max-width: 650px;
  color: #c9c1bc;
}

.custom-event-card {
  padding: clamp(32px, 5vw, 52px);
  background: var(--off-white);
  color: var(--black);
}

.custom-event-card .package-label {
  color: #756e68;
}

.custom-event-card ul {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}

.custom-event-card li {
  padding: 12px 0;
  border-bottom: 1px solid #d7cec6;
}

.custom-event-card .button {
  width: 100%;
}

@media (max-width: 900px) {
  .custom-event-wrap {
    grid-template-columns: 1fr;
  }
}


/* Third wedding package card */
.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.premier-package {
  background: #fffaf6;
}

.premier-package .package-label {
  color: #8a6a58;
}

@media (max-width: 900px) {
  .package-grid {
    grid-template-columns: 1fr;
  }
}


/* Reviews */
.reviews-section {
  background: var(--black);
  color: white;
}

.reviews-heading {
  margin-bottom: 48px;
}

.reviews-heading h2 {
  color: white;
  max-width: 900px;
  margin-inline: auto;
}

.reviews-grid {
  width: min(var(--max-width), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 22px;
}

.testimonial-card {
  min-height: 430px;
  padding: clamp(32px, 5vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #191919;
  border: 1px solid rgba(255,255,255,.15);
}

.review-stars {
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 1.05rem;
  letter-spacing: .18em;
}

.testimonial-quote {
  margin-bottom: 36px;
  color: #f4f0ec;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.65;
  font-weight: 500;
}

.testimonial-author {
  display: grid;
  gap: 5px;
}

.testimonial-author strong {
  color: white;
  font-size: 1rem;
}

.testimonial-author span {
  color: var(--accent);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.testimonial-link-card {
  background: #221b18;
}

.testimonial-link-card h3 {
  font-family: "Playfair Display", serif;
  margin: 12px 0 18px;
  color: white;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.testimonial-link-copy {
  color: #c9c1bc;
}

.testimonial-link-card .button {
  width: 100%;
}

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-height: 0;
  }
}


/* Inquiry page logo override */
body.inquiry-page .logo span,
.inquiry-page .logo span{
    color:#F5F1EB !important;
}

.video-showcase{padding:80px 24px;background:#171313}
.video-wrap{max-width:1000px;margin:0 auto}
.video-wrap video{width:100%;display:block;border-radius:8px}
