@charset "UTF-8";

/* =========================
   Hero
========================= */
.hero {
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.98) 0%,
      rgba(255,255,255,0.95) 30%,
      rgba(255,255,255,0.85) 50%,
      rgba(255,255,255,0.50) 70%,
      rgba(255,255,255,0.15) 90%
    ),
    url("../img/FV001.png") right center / cover no-repeat;
}

.hero-copy,
.hero-text {
  max-width: 520px;
}

/* =========================
   Pickup
========================= */
.pickup {
  background: var(--soft);
  overflow: hidden;
}

.pickup-slider {
  position: relative;
  overflow: hidden;
}

.pickup-track {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.pickup-card {
  display: block;
  flex: 0 0 260px;
  color: var(--black);
  opacity: 0.22;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.pickup-card:hover {
  opacity: 1;
}

.pickup-card.is-visible {
  opacity: 0.68;
}

.pickup-card.is-center {
  opacity: 1;
}

.pickup-image {
  width: 260px;
  aspect-ratio: 1 / 1;
  margin-bottom: 12px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #ececec;
}

.pickup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pickup-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--black);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.6em * 2);
}

.pickup-slider::before,
.pickup-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 110px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.pickup-slider::before {
  left: 0;
  background: linear-gradient(
    to right,
    var(--soft) 0%,
    rgba(243,243,243,0.92) 38%,
    rgba(243,243,243,0.45) 72%,
    rgba(243,243,243,0) 100%
  );
}

.pickup-slider::after {
  right: 0;
  background: linear-gradient(
    to left,
    var(--soft) 0%,
    rgba(243,243,243,0.92) 38%,
    rgba(243,243,243,0.45) 72%,
    rgba(243,243,243,0) 100%
  );
}

/* =========================
   Business
========================= */
.business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.business-image {
  aspect-ratio: 16 / 10;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
}

.business-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   Coconut
========================= */
.coconut-inner {
  max-width: 1200px;
}

.coconut-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.coconut-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.coconut-copy {
  max-width: 100%;
}

.coconut-features {
  margin: 20px 0 0;
  padding-left: 1.2em;
}

.coconut-features li {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--black);
}

.coconut-image {
  aspect-ratio: 4 / 5;
  max-height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.coconut-image img {
  width: 100%;
  height: 100%;
  padding-left: 30px;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.4s ease;
}

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

.coconut .btn-group {
  margin-top: 24px;
}

/* =========================
   Movies
========================= */
.movies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.movie iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: var(--radius);
}

/* =========================
   Salon CTA
========================= */
.salon-cta {
  background: var(--soft);
}

.salon-cta-inner {
  text-align: center;
}

.salon-cta .btn-group.center {
  padding-top: 20px;
}

/* =========================
   Contact
========================= */
.contact {
  background: var(--soft);
}

.contact-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.contact .section-heading {
  text-align: center;
}

.contact-text {
  margin: 16px 0 32px;
}

.contact .btn-group {
  justify-content: center;
}