.home { width: 100%; min-width: 0; max-width: none !important; padding: 0 !important; overflow: hidden; }
.hero {
  width: 100%;
  min-width: 0;
  min-height: clamp(650px, 76vh, 820px);
  display: grid;
  place-items: center;
  color: white;
  background:
    linear-gradient(90deg, rgba(4, 24, 40, .94) 0%, rgba(6, 44, 64, .83) 52%, rgba(8, 73, 84, .48) 100%),
    url("/images/Crystal_cruises_Symphony2.jpg") center/cover no-repeat;
}
.hero-inner { width: min(1120px, calc(100% - 40px)); min-width: 0; padding: 100px 0; }
.eyebrow {
  color: var(--gold-pale);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}
.hero h1 {
  max-width: 800px;
  margin: 18px 0 24px;
  color: white !important;
  font-size: clamp(45px, 7vw, 84px);
  font-weight: 500;
  letter-spacing: -.035em;
  overflow-wrap: anywhere;
}
.hero p { max-width: 720px; color: #e5eef1; font-size: clamp(18px, 2vw, 22px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.trust-strip {
  width: min(1240px, calc(100% - 48px));
  margin: -46px auto 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}
.trust-item { padding: 28px; border-right: 1px solid #e2e9eb; }
.trust-item:last-child { border: 0; }
.trust-item strong { display: block; color: var(--ink); font-family: Georgia, serif; font-size: 19px; }
.trust-item span { color: var(--muted); font-size: 13px; }
.section { width: min(1240px, calc(100% - 48px)); margin: auto; padding: 110px 0; }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section h2 { margin: 12px 0 18px; font-size: clamp(36px, 5vw, 58px); font-weight: 500; }
.section-heading p { color: var(--muted); font-size: 19px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  min-height: 360px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid #dce5e7;
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 8px 30px rgba(7, 27, 45, .06);
}
.card--dark { color: #dce8ed; border: 0; background: var(--navy); }
.card--ocean { color: #e8f2f2; border: 0; background: linear-gradient(145deg, #0d6675, #083d54); }
.card h3 { margin: 0 0 12px; font-size: 30px; }
.card--dark h3, .card--ocean h3 { color: white !important; }
.card p { margin: 0 0 24px; color: inherit; opacity: .88; }
.text-link { font-weight: 800; text-decoration: none; }
.card--dark .text-link, .card--ocean .text-link { color: var(--gold-pale); }
.card .clc-year-links a { color: var(--ink); }
.card--dark .clc-year-links a, .card--ocean .clc-year-links a { color: var(--ink); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.feature-list { display: grid; gap: 18px; }
.feature {
  padding: 22px 24px;
  border-left: 3px solid var(--gold);
  background: white;
  box-shadow: 0 5px 22px rgba(7, 27, 45, .05);
}
.feature strong { display: block; color: var(--ink); font-family: Georgia, serif; font-size: 21px; }
.feature span { color: var(--muted); }
.destinations { background: var(--mist); }
.pill-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.pill {
  padding: 13px 19px;
  border: 1px solid #cddbdd;
  border-radius: 999px;
  color: var(--ink);
  background: white;
  font-weight: 700;
  text-decoration: none;
}
.cta {
  padding: 84px 30px;
  color: white;
  text-align: center;
  background: linear-gradient(135deg, var(--ink), var(--navy-soft));
}
.cta h2 { max-width: 800px; margin: 0 auto 20px; color: white !important; font-size: clamp(38px, 5vw, 58px); }
.cta p { max-width: 650px; margin: 0 auto 30px; color: #cbdbe2; font-size: 19px; }
@media (max-width: 820px) {
  .hero { min-height: 620px; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .cards, .split { grid-template-columns: 1fr; }
  .split { gap: 38px; }
}
@media (max-width: 520px) {
  .hero {
    min-height: 680px;
    place-items: start;
    background-position: 58% center;
  }
  .hero-inner {
    width: calc(100vw - 40px) !important;
    max-width: calc(100vw - 40px) !important;
    min-width: 0;
    margin-left: 20px;
    margin-right: 20px;
    padding: 88px 0 100px;
    overflow: hidden;
  }
  .eyebrow {
    display: block;
    max-width: 100%;
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: .16em;
  }
  .hero h1 {
    width: calc(100vw - 40px) !important;
    max-width: calc(100vw - 40px) !important;
    min-width: 0;
    max-width: 100%;
    margin: 16px 0 22px;
    font-size: clamp(42px, 13.5vw, 58px);
    line-height: 1.02;
    letter-spacing: -.045em;
    white-space: normal !important;
    word-break: normal;
    overflow-wrap: break-word !important;
  }
  .hero p {
    width: calc(100vw - 40px) !important;
    max-width: calc(100vw - 40px) !important;
    min-width: 0;
    max-width: 100%;
    font-size: 17px;
    line-height: 1.6;
  }
  .hero-actions {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .clc-button { width: 100%; min-height: 52px; }
  .trust-strip {
    width: calc(100% - 32px);
    margin-top: -30px;
  }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-item { padding: 22px 26px; }
  .trust-item { border-right: 0; border-bottom: 1px solid #e2e9eb; }
  .section { width: calc(100% - 36px); padding: 72px 0; }
  .section h2 { font-size: clamp(34px, 11vw, 46px); }
  .section-heading p { font-size: 17px; }
  .card { min-height: 300px; padding: 28px; }
  .pill { flex: 1 1 calc(50% - 12px); text-align: center; }
  .cta { padding: 70px 20px 90px; }
}

@media (min-width: 1500px) {
  .hero-inner { width: min(1320px, calc(100% - 80px)); }
  .hero h1 { max-width: 920px; font-size: 90px; }
  .hero p { max-width: 760px; }
}
