.elementor-4061 .elementor-element.elementor-element-566dda9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-35a43ce */*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy:    #1B2A4A;
    --deep:    #0D1829;
    --gold:    #C9A84C;
    --gold-lt: #E2C97A;
    --cream:   #F7F3EC;
    --sand:    #EDE5D4;
    --mist:    #8A9BB0;
    --ink:     #2C3240;
    --sea:     #2A6EA6;
    --coral:   #C4553A;
    --white:   #FFFFFF;
  }

  html { scroll-behavior: smooth !important; }

  body {
    background: var(--cream) !important;
    color: var(--ink) !important;
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 20px;
    line-height: 1.75;
    overflow-x: hidden;
  }

  /* ── HERO ─────────────────────────────────────────────────── */
  .hero {
    position: relative;
    min-height: 100vh;
    background: var(--deep);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
  }

  .hero-gradient {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 60% 30%, rgba(42,110,166,0.18) 0%, transparent 70%),
      radial-gradient(ellipse 50% 40% at 20% 70%, rgba(201,168,76,0.12) 0%, transparent 60%),
      linear-gradient(170deg, #0D1829 0%, #1B2A4A 50%, #0D1829 100%);
  }

  /* Animated constellation dots */
  .stars {
    position: absolute;
    inset: 0;
    overflow: hidden;
  }
  .star {
    position: absolute;
    background: var(--gold);
    border-radius: 50%;
    animation: twinkle var(--dur, 3s) ease-in-out infinite var(--delay, 0s);
    opacity: 0;
  }
  @keyframes twinkle {
    0%, 100% { opacity: 0; transform: scale(0.8); }
    50% { opacity: var(--op, 0.6); transform: scale(1); }
  }

  /* Horizontal rule decorative */
  .hero-rule {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
    transform: translateY(-50%);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 8vw 8vh;
    animation: heroReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  @keyframes heroReveal {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .hero-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: heroReveal 1.4s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(3.5rem, 9vw, 8rem);
    font-weight: 300;
    line-height: 1.0;
    color: var(--white);
    margin-bottom: 0.3rem;
    animation: heroReveal 1.4s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero-title em {
    font-style: italic;
    color: var(--gold-lt);
  }

  .hero-subtitle {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.1rem, 2.5vw, 1.7rem);
    font-weight: 300;
    font-style: italic;
    color: var(--mist);
    margin-top: 1.2rem;
    max-width: 640px;
    animation: heroReveal 1.4s 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero-meta {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: heroReveal 1.4s 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero-date {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  .hero-divider {
    width: 40px;
    height: 1px;
    background: rgba(201,168,76,0.4);
  }

  .hero-location {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    color: var(--mist);
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  /* Scroll indicator */
  .scroll-hint {
    position: absolute;
    bottom: 2rem;
    right: 8vw;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: heroReveal 1.4s 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  .scroll-hint span {
    font-family: 'DM Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    color: var(--mist);
    text-transform: uppercase;
    writing-mode: vertical-rl;
  }
  .scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
  }

  /* ── LAYOUT ───────────────────────────────────────────────── */
  .container {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 6vw;
  }

  .container--wide {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 6vw;
  }

  /* ── LEDE ─────────────────────────────────────────────────── */
  .lede {
    padding: 7rem 4vw 4rem;
    max-width: 820px;
    margin: 0 auto;
  }

  .lede-dropcap {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    line-height: 1.8;
    color: var(--ink);
  }

  .lede-dropcap::first-letter {
    font-size: 5.5em;
    font-weight: 600;
    float: left;
    line-height: 0.78;
    margin-right: 0.08em;
    margin-top: 0.06em;
    color: var(--navy);
    font-family: 'Cormorant Garamond', Georgia, serif;
  }

  /* ── SECTION DIVIDERS ─────────────────────────────────────── */
  .ornament {
    text-align: center;
    padding: 3rem 0;
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 0.5em;
    opacity: 0.7;
  }

  /* ── PULL QUOTE ───────────────────────────────────────────── */
  .pullquote {
    margin: 4rem -4vw;
    padding: 3.5rem 8vw;
    background: var(--navy);
    position: relative;
    overflow: hidden;
  }
  .pullquote::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--gold);
  }
  .pullquote::after {
    content: '';
    position: absolute;
    right: -60px; top: -60px;
    width: 200px; height: 200px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.15);
  }
  .pullquote p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    line-height: 1.4;
    position: relative;
    z-index: 1;
  }
  .pullquote cite {
    display: block;
    margin-top: 1rem;
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    color: var(--gold);
    text-transform: uppercase;
    font-style: normal;
  }

  /* ── BODY TEXT ────────────────────────────────────────────── */
  .body-text {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 4vw;
  }

  .body-text p {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height: 1.85;
    color: var(--ink);
    margin-bottom: 1.5rem;
  }

  .body-text strong {
    color: var(--navy);
    font-weight: 600;
  }

  /* ── SECTION HEADERS ──────────────────────────────────────── */
  .section-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
    display: block;
  }

  .section-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 1.5rem;
  }

  .section-heading em {
    font-style: italic;
    color: var(--sea);
  }

  /* ── VENUE CARDS ──────────────────────────────────────────── */
  .venue-section {
    padding: 5rem 0;
    border-top: 1px solid rgba(27,42,74,0.1);
  }

  .venue-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5px;
    margin: 2.5rem -6vw;
    background: rgba(27,42,74,0.08);
  }

  .venue-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    position: relative;
    transition: background 0.3s ease;
  }
  .venue-card:hover { background: var(--sand); }

  .venue-card-number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 4rem;
    font-weight: 300;
    color: rgba(27,42,74,0.07);
    line-height: 1;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    user-select: none;
  }

  .venue-card-night {
    font-family: 'DM Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
  }

  .venue-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 0.6rem;
  }

  .venue-card-loc {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: var(--mist);
    text-transform: uppercase;
    margin-bottom: 1rem;
  }

  .venue-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4A5568;
  }

  .venue-card-tag {
    display: inline-block;
    margin-top: 1.2rem;
    padding: 0.25rem 0.8rem;
    background: var(--navy);
    color: var(--gold);
    font-family: 'DM Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  /* ── DARK SECTION ─────────────────────────────────────────── */
  .dark-section {
    background: var(--navy);
    padding: 6rem 6vw;
    margin: 4rem 0;
  }

  .dark-section .section-heading {
    color: var(--white);
  }

  .dark-section .section-label {
    color: var(--gold);
  }

  .activity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 3rem;
    background: rgba(255,255,255,0.08);
  }

  .activity-item {
    background: var(--navy);
    padding: 2rem 1.5rem;
    border-top: 2px solid transparent;
    transition: border-color 0.3s, background 0.3s;
  }
  .activity-item:hover {
    border-top-color: var(--gold);
    background: rgba(255,255,255,0.04);
  }

  .activity-region {
    font-family: 'DM Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
  }

  .activity-item h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }

  .activity-item p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
  }

  .activity-cap {
    display: inline-block;
    margin-top: 1rem;
    font-family: 'DM Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.12em;
    color: var(--gold);
    opacity: 0.7;
  }

  /* ── DISCOVERY STRIP ──────────────────────────────────────── */
  .discovery-strip {
    background: var(--sand);
    padding: 4rem 6vw;
    border-top: 1px solid rgba(27,42,74,0.08);
    border-bottom: 1px solid rgba(27,42,74,0.08);
  }

  .discovery-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
    max-width: 900px;
  }

  .discovery-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
  }

  .discovery-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
  }

  .discovery-item h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.3rem;
  }

  .discovery-item p {
    font-size: 0.9rem;
    color: #5A6478;
    line-height: 1.6;
  }

  .discovery-item .new-badge {
    display: inline-block;
    margin-left: 0.5rem;
    padding: 0.1rem 0.5rem;
    background: var(--coral);
    color: var(--white);
    font-family: 'DM Mono', monospace;
    font-size: 0.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    vertical-align: middle;
    position: relative;
    top: -2px;
  }

  /* ── URGENCY BLOCK ────────────────────────────────────────── */
  .urgency-block {
    margin: 5rem auto;
    max-width: 820px;
    padding: 0 6vw;
  }

  .urgency-inner {
    border: 1px solid rgba(27,42,74,0.15);
    padding: 3rem;
    position: relative;
  }

  .urgency-inner::before {
    content: '';
    position: absolute;
    top: -1px; left: 2rem;
    width: 60px; height: 3px;
    background: var(--gold);
  }

  .rooms-visual {
    display: flex;
    gap: 3px;
    margin: 1.5rem 0;
    flex-wrap: wrap;
  }

  .room-dot {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    transition: opacity 0.2s;
  }
  .room-dot.taken { background: var(--navy); }
  .room-dot.open  { background: var(--sand); border: 1px solid rgba(27,42,74,0.2); }

  .rooms-legend {
    display: flex;
    gap: 2rem;
    margin-top: 0.8rem;
    margin-bottom: 1.5rem;
  }
  .legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mist);
  }
  .legend-dot {
    width: 10px; height: 10px;
    border-radius: 2px;
  }

  .urgency-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    line-height: 1.4;
    color: var(--navy);
    margin-bottom: 1rem;
  }

  .urgency-sub {
    font-size: 0.95rem;
    color: #5A6478;
    line-height: 1.7;
    max-width: 520px;
  }

  /* ── CLOSING ──────────────────────────────────────────────── */
  .closing {
    background: var(--deep);
    padding: 7rem 6vw;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .closing::before {
    content: 'MARSEILLE';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(6rem, 18vw, 16rem);
    font-weight: 300;
    color: rgba(255,255,255,0.03);
    white-space: nowrap;
    user-select: none;
    letter-spacing: 0.05em;
  }

  .closing-inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
  }

  .closing-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 2rem;
  }

  .closing-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 2rem;
  }

  .closing-title em {
    font-style: italic;
    color: var(--gold-lt);
  }

  .closing-body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2rem;
    font-style: italic;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 3rem;
  }

  .closing-detail {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    color: var(--mist);
    text-transform: uppercase;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  /* ── UTILITIES ────────────────────────────────────────────── */
  .gold { color: var(--gold); }
  .mt-sm { margin-top: 1.5rem; }
  .mt-md { margin-top: 3rem; }
  .mt-lg { margin-top: 5rem; }

  @media (max-width: 700px) {
    .venue-grid { grid-template-columns: 1fr; }
    .activity-grid { grid-template-columns: 1fr; }
    .discovery-items { grid-template-columns: 1fr; }
    .pullquote { margin: 3rem 0; }
    .venue-card-number { display: none; }
  }/* End custom CSS */