:root {
  --cwc-black: #030406;
  --cwc-ink: #090d13;
  --cwc-panel: rgba(8, 16, 24, 0.92);
  --cwc-panel-2: rgba(10, 27, 43, 0.88);
  --cwc-blue: #123a59;
  --cwc-blue-bright: #4f9ccf;
  --cwc-gold: #d6b45f;
  --cwc-gold-soft: #f2dd9a;
  --cwc-white: #f8f6ef;
  --cwc-muted: #cfd7df;
  --cwc-line: rgba(214, 180, 95, 0.34);
  --cwc-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
  color-scheme: dark;
}

html {
  min-height: 100%;
  background: var(--cwc-black);
}

body.cwc-luxury-page,
body.cqe-luxury-page {
  min-height: 100%;
  margin: 0 !important;
  color: var(--cwc-white) !important;
  font-family: "Optima", "Segoe UI", Calibri, Arial, sans-serif !important;
  line-height: 1.55;
  text-align: center;
  background:
    radial-gradient(circle at 50% 8%, rgba(22, 78, 119, 0.58), transparent 34rem),
    linear-gradient(135deg, rgba(3, 4, 6, 0.98), rgba(6, 13, 21, 0.98) 45%, rgba(4, 6, 9, 1));
  background-attachment: fixed;
}

body.cwc-luxury-page *,
body.cqe-luxury-page * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.cwc-topbar {
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 14px clamp(16px, 4vw, 48px);
  color: var(--cwc-white);
  background: rgba(3, 4, 6, 0.91);
  border-bottom: 1px solid var(--cwc-line);
  backdrop-filter: blur(14px);
}

.cwc-brand {
  color: var(--cwc-gold-soft) !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(1.05rem, 2.4vw, 1.55rem) !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  text-transform: uppercase;
  white-space: nowrap;
}

.cwc-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.cwc-nav a,
.cwc-mobile-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 14px;
  color: var(--cwc-white) !important;
  text-decoration: none !important;
  border: 1px solid rgba(214, 180, 95, 0.42);
  background: rgba(255, 255, 255, 0.05);
}

.cwc-nav a:hover,
.cwc-mobile-menu a:hover {
  color: #050505 !important;
  background: var(--cwc-gold);
}

.cwc-mobile-menu {
  display: none;
  position: relative;
  color: var(--cwc-white);
}

.cwc-mobile-menu summary {
  min-height: 40px;
  padding: 9px 14px;
  cursor: pointer;
  color: var(--cwc-gold-soft);
  border: 1px solid var(--cwc-line);
}

.cwc-mobile-menu div {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  display: grid;
  gap: 8px;
  min-width: min(86vw, 300px);
  padding: 12px;
  background: rgba(3, 4, 6, 0.97);
  border: 1px solid var(--cwc-line);
  box-shadow: var(--cwc-shadow);
}

.cwc-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(260px, 0.96fr);
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 24px;
  padding: clamp(28px, 5vw, 62px) 0 clamp(20px, 4vw, 42px);
  text-align: left;
}

.cwc-hero-copy {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.cwc-kicker {
  margin: 0;
  color: var(--cwc-gold-soft) !important;
  font-size: 0.82rem !important;
  font-weight: 700;
  text-transform: uppercase;
}

.cwc-hero h1 {
  margin: 0;
  color: var(--cwc-white) !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(2.25rem, 7vw, 5.5rem) !important;
  line-height: 0.98;
}

.cwc-hero p {
  max-width: 62ch;
  margin: 0;
  color: var(--cwc-muted) !important;
  font-size: clamp(1rem, 2vw, 1.2rem) !important;
}

.cwc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cwc-button,
a.cwc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  color: var(--cwc-white) !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  border: 1px solid var(--cwc-line);
  background: rgba(255, 255, 255, 0.06);
}

.cwc-button-primary,
a.cwc-button-primary {
  color: #050505 !important;
  background: linear-gradient(135deg, var(--cwc-gold-soft), var(--cwc-gold));
  border-color: transparent;
}

.cwc-ship {
  margin: 0;
  padding: 10px;
  background: linear-gradient(135deg, rgba(214, 180, 95, 0.35), rgba(79, 156, 207, 0.18));
  border: 1px solid var(--cwc-line);
  box-shadow: var(--cwc-shadow);
}

.cwc-ship img {
  display: block;
  width: 100%;
  min-height: 260px;
  max-height: 560px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.cwc-summary,
.cwc-inquiry,
.cwc-ai-summary,
.cwc-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 22px auto;
  padding: clamp(18px, 4vw, 34px);
  color: var(--cwc-white) !important;
  background: var(--cwc-panel);
  border: 1px solid var(--cwc-line);
  box-shadow: var(--cwc-shadow);
}

.cwc-summary {
  display: grid;
  gap: 10px;
  text-align: center;
}

.cwc-summary h2,
.cwc-inquiry h2,
.cwc-ai-summary h2 {
  margin: 0 0 10px;
  color: var(--cwc-gold-soft) !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(1.45rem, 3vw, 2.2rem) !important;
  line-height: 1.12;
}

.cwc-summary p,
.cwc-inquiry p,
.cwc-ai-summary p,
.cwc-footer p {
  margin: 0 auto 12px;
  max-width: 80ch;
  color: var(--cwc-muted) !important;
}

.cwc-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.cwc-faq-grid article {
  padding: 18px;
  text-align: left;
  background: var(--cwc-panel-2);
  border: 1px solid rgba(214, 180, 95, 0.22);
}

.cwc-faq-grid h3 {
  margin: 0 0 8px;
  color: var(--cwc-white) !important;
  font-size: 1.08rem !important;
}

.cwc-footer {
  margin-bottom: 0;
  border-bottom: 0;
}

body.cwc-luxury-page > :not(.cwc-topbar):not(.cwc-hero):not(.cwc-summary):not(.cwc-inquiry):not(.cwc-ai-summary):not(.cwc-footer):not(script):not(style),
body.cqe-luxury-page > :not(.cwc-topbar):not(.cwc-hero):not(.cwc-summary):not(.cwc-inquiry):not(.cwc-ai-summary):not(.cwc-footer):not(script):not(style) {
  max-width: 1120px;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.cwc-luxury-page table,
body.cqe-luxury-page table {
  width: min(100%, 1120px) !important;
  max-width: calc(100vw - 24px) !important;
  margin: 18px auto !important;
  color: var(--cwc-white) !important;
  background: rgba(7, 16, 25, 0.94) !important;
  border: 1px solid var(--cwc-line) !important;
  border-collapse: collapse !important;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
}

body.cwc-luxury-page td,
body.cwc-luxury-page th,
body.cqe-luxury-page td,
body.cqe-luxury-page th {
  color: var(--cwc-white) !important;
  background: rgba(10, 26, 41, 0.84) !important;
  border-color: rgba(214, 180, 95, 0.28) !important;
  padding: 8px !important;
}

body.cwc-luxury-page a,
body.cqe-luxury-page a {
  color: var(--cwc-gold-soft) !important;
  text-decoration-color: rgba(214, 180, 95, 0.55) !important;
}

body.cwc-luxury-page a:hover,
body.cqe-luxury-page a:hover {
  color: #ffffff !important;
}

body.cwc-luxury-page h1,
body.cwc-luxury-page h2,
body.cwc-luxury-page h3,
body.cqe-luxury-page h1,
body.cqe-luxury-page h2,
body.cqe-luxury-page h3 {
  color: var(--cwc-white) !important;
}

body.cwc-luxury-page p,
body.cwc-luxury-page li,
body.cwc-luxury-page span,
body.cwc-luxury-page font,
body.cqe-luxury-page p,
body.cqe-luxury-page li,
body.cqe-luxury-page span,
body.cqe-luxury-page font {
  color: inherit;
}

body.cwc-luxury-page img,
body.cqe-luxury-page img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 820px) {
  .cwc-topbar {
    align-items: flex-start;
  }

  .cwc-nav {
    display: none;
  }

  .cwc-mobile-menu {
    display: block;
  }

  .cwc-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cwc-hero-copy {
    justify-items: center;
  }

  .cwc-actions {
    justify-content: center;
  }

  .cwc-faq-grid {
    grid-template-columns: 1fr;
  }

  body.cwc-luxury-page table,
  body.cqe-luxury-page table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

@media (max-width: 520px) {
  .cwc-topbar {
    padding: 12px;
  }

  .cwc-brand {
    white-space: normal;
  }

  .cwc-button,
  a.cwc-button {
    width: 100%;
  }
}
