/* ================================================
   ZIED BEJAUI — LUXURY REAL ESTATE
   Palette: Pure black / white / gold accent #C9A84C
   Type: Montserrat 100–300 throughout
   ================================================ */

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

:root {
  --black: #000000;
  --white: #ffffff;
  --off-white: #f8f8f6;
  --gray-light: #e8e8e8;
  --gray-mid: #999999;
  --gold: #C9A84C;
  --font: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-weight: 300;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ---- UTILITIES ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: 120px 0; }

.label-text {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.label-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 32px;
}

.section__heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 100;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--black);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 16px 40px;
  border: 1px solid var(--black);
  font-family: var(--font);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--black);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn:hover {
  background: var(--black);
  color: var(--white);
}

.btn--outline {
  border-color: var(--black);
  color: var(--black);
}

.btn--full {
  width: 100%;
  text-align: center;
  border: 1px solid var(--black);
}

/* Hero button white variant */
.hero .btn {
  border-color: var(--white);
  color: var(--white);
}
.hero .btn:hover {
  background: var(--white);
  color: var(--black);
}

/* ---- SCROLL ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.5s; }
.delay-3 { animation-delay: 0.7s; }
.delay-4 { animation-delay: 0.9s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 40px;
  transition: background 0.4s ease, padding 0.4s ease;
}

.nav.scrolled {
  background: rgba(0,0,0,0.97);
  padding: 18px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo-lockup {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-style: italic;
  color: var(--white);
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
}

.nav__logo-img {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__monogram {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav__logo-divider {
  width: 1px;
  height: 32px;
  background: rgba(201, 168, 76, 0.4);
  flex-shrink: 0;
}

.nav__wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
}

.nav__wordmark-name {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 21px;
  color: var(--white);
  white-space: nowrap;
}

.nav__wordmark-sub {
  font-family: var(--font);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

.logo-lockup__sub {
  font-family: var(--font);
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 5px;
  margin-right: 0.4em;
}

.nav__logo {
  font-size: 24px;
}

.nav__logo .logo-lockup__sub {
  font-size: 8px;
}

.nav__links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav__links a {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}

.nav__links a:hover { color: var(--white); }

.nav__cta {
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,0.5) !important;
  color: var(--white) !important;
  transition: background 0.3s, color 0.3s !important;
}

.nav__cta:hover {
  background: var(--white) !important;
  color: var(--black) !important;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* ---- MOBILE MENU ---- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu ul {
  text-align: center;
}

.mobile-menu li {
  margin: 24px 0;
}

.mobile-menu a {
  font-size: 28px;
  font-weight: 100;
  letter-spacing: 0.15em;
  color: var(--white);
  text-transform: uppercase;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--gold); }

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero__content {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.hero__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.hero__monogram--solo {
  height: clamp(90px, 12vw, 150px);
  width: auto;
  object-fit: contain;
}

.hero__rule {
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 32px;
}

.hero__tagline {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 200;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em;
  line-height: 1.7;
  margin-bottom: 48px;
  animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards,
             taglineBreathe 3s ease-in-out 2.2s infinite;
}

@keyframes taglineBreathe {
  0%, 100% { opacity: 0.65; }
  50% { opacity: 1; }
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 1s ease 1.4s forwards;
}

.hero__scroll span {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---- ABOUT ---- */
.about {
  background: var(--off-white);
}

.about__grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 80px;
  align-items: start;
}

.about__label {
  padding-top: 8px;
}

.about__text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: #333;
  margin-bottom: 24px;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-light);
}

.stat__number {
  display: block;
  font-size: 32px;
  font-weight: 100;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 8px;
}

.stat__label {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

/* ---- WHY ---- */
.why {
  background: var(--black);
}

.why .section__heading { color: var(--white); }
.why .label-text { color: var(--gold); }

.why__header {
  margin-bottom: 72px;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
}

.why__card {
  background: var(--black);
  padding: 56px 48px;
  transition: background 0.3s ease;
}

.why__card:hover {
  background: #0d0d0d;
}

.why__number {
  font-size: 11px;
  font-weight: 200;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 24px;
}

.why__title {
  font-size: 20px;
  font-weight: 200;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.why__desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  background: var(--white);
}

.testimonials__header {
  margin-bottom: 72px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.testimonial {
  padding: 48px 40px;
  border: 1px solid var(--gray-light);
  transition: border-color 0.3s;
}

.testimonial:hover {
  border-color: var(--gold);
}

.testimonial__quote {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: #222;
  font-style: italic;
  margin-bottom: 32px;
}

.testimonial__name {
  display: block;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--black);
  margin-bottom: 4px;
}

.testimonial__role {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--gray-mid);
  text-transform: uppercase;
}

/* ---- VIDEO SECTION ---- */
.video-section {
  background: var(--off-white);
}

.video-section__header {
  margin-bottom: 72px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-card {
  aspect-ratio: 16/9;
  cursor: pointer;
}

.video-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--black);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #111 0%, #222 50%, #111 100%);
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.3s, border-color 0.3s;
}

.video-card:hover .video-play {
  background: var(--gold);
  border-color: var(--gold);
}

.video-overlay-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
}

.video-tag {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.video-overlay-text p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

/* ---- BLOG ---- */
.blog {
  background: var(--white);
}

.blog__header {
  margin-bottom: 72px;
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 56px;
}

.blog__card {
  border-top: 1px solid var(--gray-light);
  padding-top: 32px;
  transition: border-color 0.3s;
}

.blog__card:hover { border-color: var(--black); }

.blog__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.blog__category {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.blog__date {
  font-size: 11px;
  font-weight: 300;
  color: var(--gray-mid);
}

.blog__title {
  font-size: 18px;
  font-weight: 200;
  line-height: 1.4;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.blog__excerpt {
  font-size: 14px;
  font-weight: 300;
  color: #555;
  line-height: 1.75;
  margin-bottom: 24px;
}

.blog__link {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  transition: color 0.2s, letter-spacing 0.2s;
}

.blog__link:hover {
  color: var(--gold);
  letter-spacing: 0.3em;
}

.blog__more {
  text-align: center;
}

/* ---- CONTACT ---- */
.contact {
  background: var(--off-white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.contact__sub {
  font-size: 15px;
  font-weight: 300;
  color: #555;
  line-height: 1.85;
  margin: 24px 0 48px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 300;
  color: #333;
}

.contact__icon {
  color: var(--gold);
  font-size: 10px;
}

/* ---- FORM ---- */
.form__group {
  margin-bottom: 24px;
}

.form__label {
  display: block;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 10px;
}

.form__input {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid #ccc;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 300;
  color: var(--black);
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.form__input:focus {
  border-bottom-color: var(--black);
}

.form__select {
  cursor: pointer;
}

.form__textarea {
  resize: none;
  min-height: 100px;
}

.form__note {
  margin-top: 16px;
  font-size: 11px;
  font-weight: 300;
  color: var(--gray-mid);
  text-align: center;
  letter-spacing: 0.05em;
}

/* ---- AREAS WE SERVE ---- */
.areas {
  background: var(--black);
}

.areas .section__heading { color: var(--white); }
.areas .label-text { color: var(--gold); }

.areas__header {
  margin-bottom: 64px;
}

.areas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
}

.areas__card {
  background: var(--black);
  padding: 48px 40px;
  transition: background 0.3s ease;
}

.areas__card:hover {
  background: #0d0d0d;
}

.areas__title {
  font-size: 18px;
  font-weight: 200;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.areas__desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--black);
  padding: 80px 0 40px;
}

.footer__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__logo-img {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.footer__monogram-img {
  height: 120px;
  width: auto;
  object-fit: contain;
}

.footer__tagline {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 40px;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 32px;
}

.footer__links a {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--white); }

.footer__social {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 56px;
}

.footer__social a {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.footer__social a:hover { color: var(--gold); }

.footer__licenses {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
}

.footer__licenses a {
  color: rgba(255,255,255,0.35);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.footer__licenses a:hover { color: var(--gold); }

.footer__divider { color: rgba(255,255,255,0.2); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
}

.footer__bottom p {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.25);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .section { padding: 80px 0; }

  .hero {
    align-items: flex-start;
    padding: 130px 0 60px;
  }

  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav { padding: 24px; }
  .nav.scrolled { padding: 16px 24px; }

  .about__grid { grid-template-columns: 1fr; gap: 0; }
  .about__label { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
  .about__label .label-line { margin-bottom: 0; }

  .about__stats { grid-template-columns: repeat(3, 1fr); gap: 24px; }

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

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

  .testimonials__grid { grid-template-columns: 1fr; gap: 24px; }

  .video-grid { grid-template-columns: 1fr; gap: 16px; }

  .blog__grid { grid-template-columns: 1fr; gap: 32px; }

  .contact__grid { grid-template-columns: 1fr; gap: 56px; }
}

@media (max-width: 600px) {
  .hero {
    min-height: 600px;
    height: 100vh;
    align-items: flex-start;
    padding: 110px 0 60px;
  }
  .hero__logo-wrap {
    margin-bottom: 20px;
  }
  .hero__monogram--solo {
    height: clamp(64px, 18vw, 90px);
  }
  .hero__rule {
    margin: 0 auto 20px;
  }
  .hero__tagline {
    margin-bottom: 32px;
  }
  .hero__content {
    padding: 0 24px;
  }
  .nav__wordmark-name {
    font-size: 16px;
  }
  .nav__wordmark-sub {
    font-size: 8px;
    letter-spacing: 0.22em;
  }
  .nav__monogram {
    height: 34px;
  }
  .nav__logo-divider {
    height: 24px;
  }
  .about__stats { grid-template-columns: 1fr 1fr; gap: 20px; }
  .why__card { padding: 40px 28px; }
}

/* ================================================
   CAROUSEL SYSTEM (testimonials, videos, articles)
   ================================================ */
.carousel {
  position: relative;
  overflow: hidden;
}

.carousel__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.carousel__track.testimonials__grid,
.carousel__track.video-grid,
.carousel__track.blog__grid {
  display: flex;
  flex-wrap: nowrap;
}

.carousel__item {
  flex: 0 0 calc((100% - 2 * 40px) / 3);
  min-width: calc((100% - 2 * 40px) / 3);
}

.testimonials__grid .carousel__item { margin-right: 40px; }
.video-grid .carousel__item { margin-right: 24px; }
.blog__grid .carousel__item { margin-right: 40px; }

.testimonials__grid .carousel__item:last-child,
.video-grid .carousel__item:last-child,
.blog__grid .carousel__item:last-child {
  margin-right: 0;
}

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.carousel__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gray-light);
  background: transparent;
  color: var(--black);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.video-section .carousel__arrow,
.why .carousel__arrow {
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
}

.carousel__arrow:hover:not(:disabled) {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.video-section .carousel__arrow:hover:not(:disabled) {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.carousel__arrow:disabled {
  opacity: 0.25;
  cursor: default;
}

.carousel__dots {
  display: flex;
  gap: 8px;
}

.carousel__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: var(--gray-light);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.video-section .carousel__dot {
  background: rgba(255,255,255,0.25);
}

.carousel__dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ---- VIDEO MODAL ---- */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeUp 0.3s ease forwards;
}

.video-modal {
  position: relative;
  width: 100%;
  max-width: 900px;
}

.video-modal__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}

.video-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 900px) {
  .carousel__item {
    flex: 0 0 100%;
    min-width: 100%;
    margin-right: 0 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-up, .reveal { animation: none; opacity: 1; transform: none; }
}
