.specialties {
  background: var(--warm-cream);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.specialties::before,
.collective::before {
  content: "";
  position: absolute;
  top: 0;
  left: 6%;
  width: 88%;
  height: 1px;
  background: linear-gradient(90deg, rgba(184, 138, 74, 0), rgba(184, 138, 74, 0.35), rgba(184, 138, 74, 0));
}

.specialties-visual { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }

.specialty-img {
  min-height: 360px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--soft-shadow);
  clip-path: polygon(var(--cut-large) 0, 100% 0, 100% calc(100% - var(--cut-large)), calc(100% - var(--cut-large)) 100%, 0 100%, 0 var(--cut-large));
}

.specialty-img.europe { background-image: url("/images/europe-mediterranean.jpg"); transform: translateY(24px); }
.specialty-img.caribbean { background-image: url("/images/caribbean.jpg"); transform: translateY(-8px); }
.specialty-img.asia { background-image: url("/images/asia.jpg"); transform: translateY(24px); }

.specialties-visual.in-view .specialty-img.europe { animation: regionLiftEurope 1.1s ease forwards; }
.specialties-visual.in-view .specialty-img.caribbean { animation: regionLiftCaribbean 1.1s ease 0.14s forwards; }
.specialties-visual.in-view .specialty-img.asia { animation: regionLiftAsia 1.1s ease 0.28s forwards; }

@keyframes regionLiftEurope {
  from { opacity: 0; transform: translateY(54px) scale(1.025); }
  to { opacity: 1; transform: translateY(24px) scale(1); }
}

@keyframes regionLiftCaribbean {
  from { opacity: 0; transform: translateY(34px) scale(1.025); }
  to { opacity: 1; transform: translateY(-8px) scale(1); }
}

@keyframes regionLiftAsia {
  from { opacity: 0; transform: translateY(54px) scale(1.025); }
  to { opacity: 1; transform: translateY(24px) scale(1); }
}

.region-link { font-weight: 500; color: var(--slate); border-bottom: 1px solid rgba(184, 138, 74, 0.5); }

.collective {
  background: radial-gradient(circle at 88% 18%, rgba(216, 189, 147, 0.22), transparent 32%), linear-gradient(180deg, var(--ivory), #f7efe4);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
  overflow: hidden;
}

.collective::after {
  content: "Where you go matters. How it fits matters more.";
  position: absolute;
  right: -3vw;
  bottom: 22px;
  font-family: var(--heading-font);
  font-size: clamp(3.4rem, 8vw, 8rem);
  line-height: 0.9;
  color: rgba(184, 138, 74, 0.08);
  pointer-events: none;
  white-space: nowrap;
}

.collective-visual { position: relative; min-height: 560px; z-index: 1; }

.collective-img-main,
.collective-img-small {
  position: absolute;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  clip-path: polygon(var(--cut-large) 0, 100% 0, 100% calc(100% - var(--cut-large)), calc(100% - var(--cut-large)) 100%, 0 100%, 0 var(--cut-large));
}

.collective-img-main {
  inset: 0 72px 56px 0;
  background-image: linear-gradient(180deg, rgba(47, 63, 70, 0.06), rgba(47, 63, 70, 0.16)), url("/images/japan.jpg");
}

.collective-img-small {
  right: 0;
  bottom: 0;
  width: 46%;
  min-height: 245px;
  background-image: linear-gradient(180deg, rgba(47, 63, 70, 0.04), rgba(47, 63, 70, 0.12)), url("/images/turks.jpg");
  border: 10px solid var(--ivory);
}

.collective-statement {
  position: absolute;
  left: 28px;
  bottom: 88px;
  width: min(78%, 360px);
  background: rgba(251, 247, 239, 0.92);
  border: 1px solid var(--border);
  padding: 22px 24px;
  box-shadow: var(--soft-shadow);
  clip-path: polygon(var(--cut-medium) 0, 100% 0, 100% calc(100% - var(--cut-medium)), calc(100% - var(--cut-medium)) 100%, 0 100%, 0 var(--cut-medium));
}

.collective-statement p { font-family: var(--heading-font); font-size: 1.62rem; line-height: 1.08; color: var(--slate); }
.collective-content { position: relative; z-index: 2; }
.collective-content .section-copy { max-width: 660px; line-height: 1.65; }

.collective-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
  align-items: stretch;
}

.collective-card {
  position: relative;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--border);
  padding: 30px 24px 28px;
  min-height: 220px;
  box-shadow: 0 16px 38px rgba(47, 63, 70, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  clip-path: polygon(var(--cut-medium) 0, 100% 0, 100% calc(100% - var(--cut-medium)), calc(100% - var(--cut-medium)) 100%, 0 100%, 0 var(--cut-medium));
}

.collective-card:nth-child(2) { transform: translateY(26px); }
.collective-card:nth-child(3) { transform: translateY(8px); }

.collective-card::before {
  content: "";
  display: block;
  width: 38px;
  height: 1px;
  background: var(--soft-gold);
  margin-bottom: 20px;
  opacity: 0.65;
}

.collective-card:hover { transform: translateY(-6px); box-shadow: var(--soft-shadow); border-color: rgba(184, 138, 74, 0.36); }
.collective-card:nth-child(2):hover { transform: translateY(18px); }
.collective-card:nth-child(3):hover { transform: translateY(0); }
.collective-card h3 { font-size: 1.42rem; line-height: 1.08; font-weight: 400; margin-bottom: 14px; }
.collective-card p { color: var(--muted); font-size: 0.94rem; line-height: 1.55; }

.cta {
  background: linear-gradient(180deg, rgba(47, 63, 70, 0.42), rgba(47, 63, 70, 0.66)), radial-gradient(circle at center, rgba(47, 63, 70, 0.12), rgba(47, 63, 70, 0.55)), url("/images/cta-travel.jpg") center/cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 118px 6%;
  overflow: hidden;
}

.cta .reveal-slow {
  width: min(100%, 880px);
  margin: 0 auto;
  padding: 36px 28px;
  background: rgba(47, 63, 70, 0.12);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.cta h2 { max-width: 780px; margin: 0 auto 24px; color: var(--white); font-size: clamp(2.8rem, 5vw, 5rem); text-wrap: balance; }
.cta p { max-width: 760px; margin: 0 auto 34px; color: rgba(255, 255, 255, 0.93); font-size: 1.08rem; }

.site-footer {
  background: var(--slate);
  color: rgba(255, 255, 255, 0.84);
  padding: 58px 6% 34px;
  font-family: var(--body-font);
}

.footer-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 40px; margin-bottom: 38px; }
.footer-logo img { width: 190px; margin-bottom: 20px; }
.footer-grid p { max-width: 560px; font-size: 0.95rem; line-height: 1.55; }
.footer-contact { font-size: 0.92rem; line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.14); padding-top: 22px; font-size: 0.78rem; color: rgba(255, 255, 255, 0.62); }

@media (max-width: 1250px) {
  .travel-ways .section-heading h2 { white-space: normal; }
  .ways-grid { grid-template-columns: repeat(2, 1fr); }
  .way-card h3 { white-space: normal; }
  .specialties, .collective { grid-template-columns: 1fr; }
  .specialties-visual { max-width: 900px; }
  .collective-visual { min-height: 520px; max-width: 760px; }
}

@media (max-width: 1100px) {
  .intro { grid-template-columns: 1fr; }
  .collective-grid { grid-template-columns: 1fr; }
  .collective-card,
  .collective-card:nth-child(2),
  .collective-card:nth-child(3),
  .collective-card:hover,
  .collective-card:nth-child(2):hover,
  .collective-card:nth-child(3):hover { transform: none; }
}

@media (max-width: 820px) {
  .site-header { position: absolute; align-items: flex-start; gap: 18px; }
  .nav { display: none; }
  .logo img { width: 165px; }
  .hero { padding-top: 124px; min-height: 88vh; }
  .hero h1 { font-size: 3rem; white-space: normal; }
  .hero h1 .no-break { white-space: normal; }
  section { padding: 72px 7%; }
  .ways-grid { grid-template-columns: 1fr; }
  .specialties-visual { grid-template-columns: 1fr; }

  .specialty-img.europe,
  .specialty-img.caribbean,
  .specialty-img.asia { transform: none; min-height: 310px; }

  .specialties-visual.in-view .specialty-img.europe,
  .specialties-visual.in-view .specialty-img.caribbean,
  .specialties-visual.in-view .specialty-img.asia { animation: mobileRegionLift 1.1s ease forwards; }

  @keyframes mobileRegionLift {
    from { opacity: 0; transform: translateY(40px) scale(1.02); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }

  .collective-visual { min-height: 430px; }
  .collective-img-main { inset: 0 36px 86px 0; }
  .collective-img-small { width: 54%; min-height: 190px; }
  .collective-statement { left: 18px; bottom: 70px; width: 78%; padding: 18px 20px; }
  .collective-statement p { font-size: 1.28rem; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-slow, .stagger > *, .image-reveal { opacity: 1 !important; transform: none !important; }
}
