/* Venue Styling page styles */

.vs-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-ink);
}

.vs-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/public/media/venue-styling-hero.webp');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 0;
}

.vs-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 24, 25, 0.85) 0%, rgba(23, 24, 25, 0.55) 50%, rgba(23, 24, 25, 0.25) 100%);
  z-index: 1;
}

.vs-hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.vs-hero__content {
  max-width: 720px;
  color: var(--color-ivory);
  padding-block: var(--space-10);
}

.vs-hero__caption {
  display: inline-block;
  margin-block-end: var(--space-4);
  padding-inline-start: var(--space-4);
  border-inline-start: 2px solid var(--color-champagne);
}

.vs-hero__title {
  color: var(--color-ivory);
  font-size: var(--text-h1);
  line-height: var(--leading-h1);
  margin-block-end: var(--space-5);
  max-width: 12ch;
}

.vs-hero__text {
  max-width: 38ch;
  margin-block-end: var(--space-6);
  color: var(--color-ivory);
}

.vs-hero__text p {
  margin-block-end: var(--space-4);
}

.vs-hero__text p:last-child {
  margin-block-end: 0;
}

.vs-hero__cta {
  min-width: 220px;
}

.vs-what {
  background-color: var(--color-ivory);
}

.vs-what__intro {
  max-width: 800px;
  margin-block-end: var(--space-8);
}

.vs-what__intro h2 {
  margin-block-start: var(--space-3);
  margin-block-end: var(--space-4);
}

.vs-what__intro p:last-child {
  max-width: 65ch;
}

.vs-what__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

.vs-what__card {
  background-color: var(--color-ivory);
  border: var(--border-default);
  border-radius: var(--radius-sm);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  min-width: 0;
  transition: transform var(--transition-transform), border-color var(--transition-color);
}

.vs-what__card:hover {
  transform: translateY(-4px);
  border-color: var(--color-royal);
}

.vs-what__card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-ink);
  border-radius: var(--radius-sm);
}

.vs-what__card-icon-shape {
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-champagne);
  transform: rotate(45deg);
}

.vs-what__card h3 {
  margin-block-end: 0;
}

.vs-what__card p {
  margin-block-end: 0;
}

.vs-process {
  background-color: var(--color-ink);
  color: var(--color-ivory);
}

.vs-process__header {
  margin-block-end: var(--space-8);
}

.vs-process__header h2 {
  color: var(--color-ivory);
  margin-block-start: var(--space-3);
  margin-block-end: 0;
}

.vs-process__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-7);
}

.vs-process__step {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: var(--space-6);
  align-items: start;
  min-width: 0;
}

.vs-process__num {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-champagne);
}

.vs-process__body {
  min-width: 0;
}

.vs-process__body h3 {
  color: var(--color-ivory);
  margin-block-end: var(--space-3);
}

.vs-process__body p {
  margin-block-end: 0;
  max-width: 70ch;
}

.vs-concepts {
  background-color: var(--color-ivory);
}

.vs-concepts__header {
  margin-block-end: var(--space-8);
}

.vs-concepts__header h2 {
  margin-block-start: var(--space-3);
  margin-block-end: 0;
}

.vs-concepts__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

.vs-concept-card {
  background-color: var(--color-ivory);
  border: var(--border-default);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: border-color var(--transition-color);
}

.vs-concept-card:hover {
  border-color: var(--color-royal);
}

.vs-concept-card__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: var(--color-silver);
}

.vs-concept-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-transform);
}

.vs-concept-card:hover .vs-concept-card__media img {
  transform: scale(1.02);
}

.vs-concept-card__content {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
}

.vs-concept-card__content h3 {
  margin-block-end: 0;
}

.vs-concept-card__content p {
  margin-block-end: 0;
  max-width: 60ch;
}

.vs-why {
  background-color: #E8E6E1;
}

.vs-why__grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: var(--space-8);
  align-items: center;
}

.vs-why__content {
  min-width: 0;
}

.vs-why__content h2 {
  margin-block-start: var(--space-3);
  margin-block-end: var(--space-6);
}

.vs-why__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.vs-why__list li {
  min-width: 0;
}

.vs-why__list h3 {
  margin-block-end: var(--space-2);
}

.vs-why__list p {
  margin-block-end: 0;
  max-width: 65ch;
}

.vs-why__decor {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  align-items: flex-end;
  min-width: 0;
}

.vs-why__decor-line {
  width: 100%;
  max-width: 280px;
  height: 2px;
  background-color: var(--color-champagne);
}

.vs-why__decor-line:nth-child(2) {
  max-width: 200px;
}

.vs-why__decor-line:nth-child(3) {
  max-width: 240px;
}

.vs-testimonial {
  background-color: var(--color-ivory);
}

.vs-testimonial__panel {
  background-color: #F0E8DC;
  border: 1px solid var(--color-champagne);
  border-radius: var(--radius-sm);
  padding: var(--space-8);
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.vs-testimonial__quote {
  margin: 0;
  padding: 0;
  border: none;
  font-style: normal;
}

.vs-testimonial__mark {
  display: block;
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 0.8;
  color: var(--color-champagne);
  margin-block-end: var(--space-4);
}

.vs-testimonial__quote p {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  line-height: var(--leading-h3);
  font-weight: 600;
  max-width: 50ch;
  margin-inline: auto;
  margin-block-end: var(--space-5);
}

.vs-testimonial__attribution {
  font-size: var(--text-caption);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-ink);
}

.vs-cta {
  background-color: var(--color-ink);
  color: var(--color-ivory);
  text-align: center;
}

.vs-cta__content {
  max-width: 600px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  align-items: center;
}

.vs-cta__content h2 {
  color: var(--color-ivory);
  margin-block-end: 0;
  max-width: 20ch;
}

.vs-cta__content p {
  margin-block-end: 0;
  max-width: 50ch;
}

.vs-cta__button {
  min-width: 220px;
}

@media (max-width: 1024px) {
  .vs-what__grid,
  .vs-concepts__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vs-why__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .vs-why__decor {
    display: none;
  }

  .vs-process__step {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: var(--space-5);
  }

  .vs-process__num {
    font-size: clamp(2rem, 4vw, 3rem);
  }
}

@media (max-width: 768px) {
  .vs-hero {
    min-height: 80vh;
  }

  .vs-hero__bg {
    background-position: center center;
  }

  .vs-hero__overlay {
    background: linear-gradient(180deg, rgba(23, 24, 25, 0.7) 0%, rgba(23, 24, 25, 0.55) 100%);
  }

  .vs-hero__content {
    padding-block: var(--space-8);
  }

  .vs-hero__title {
    max-width: 100%;
  }

  .vs-hero__text {
    max-width: 100%;
  }

  .vs-hero__cta {
    width: 100%;
  }

  .vs-what__grid,
  .vs-concepts__grid {
    grid-template-columns: 1fr;
  }

  .vs-process__step {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .vs-process__num {
    font-size: 2rem;
  }

  .vs-testimonial__panel {
    padding: var(--space-6);
  }

  .vs-testimonial__quote p {
    font-size: var(--text-h3);
  }

  .vs-cta__button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .vs-hero__title {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .vs-what__card,
  .vs-concept-card__content {
    padding: var(--space-5);
  }

  .vs-process__list {
    gap: var(--space-6);
  }
}
