  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --orange:       #D4721A;
    --orange-mid:   #C26316;
    --orange-deep:  #A0480A;
    --orange-dark:  #3D1F0A;
    --orange-light: #E8956A;
    --orange-pale:  #F5E6D8;
    --cream:        #FDF6EE;
    --navy:         #1A2340;
    --white:        #ffffff;
  }

  html, body {
    height: 100%;
    font-family: 'Lato', sans-serif;
    overflow-x: hidden;
    background: var(--orange-dark);
  }

  /* ─── WAVE BACKGROUND ─── */
  .page {
    min-height: 100vh;
    background: linear-gradient(160deg, var(--orange) 0%, var(--orange-mid) 38%, var(--orange-deep) 68%, var(--orange-dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 60px 24px 40px;
  }

  /* Decorative wave ribbon like the deck */
  .wave-ribbon {
    position: absolute;
    pointer-events: none;
    inset: 0;
    z-index: 0;
  }
  .wave-ribbon svg {
    width: 100%;
    height: 100%;
  }

  /* Glow blobs */
  .glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
  }
  .glow-1 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(255,210,140,0.18) 0%, transparent 70%);
    top: -200px; right: -150px;
  }
  .glow-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,180,80,0.13) 0%, transparent 70%);
    bottom: -180px; left: -100px;
  }

  /* ─── CONTENT WRAPPER ─── */
  .content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 720px;
    width: 100%;
    gap: 0;
    animation: fadeUp 1.1s cubic-bezier(0.22,1,0.36,1) both;
  }

  /* ─── LOGO ─── */
  .logo-wrap {
    margin-bottom: 28px;
  }
  .logo-img {
    width: clamp(200px, 40vw, 380px);
    filter: drop-shadow(0 6px 32px rgba(0,0,0,0.22));
    display: block;
    margin: 0 auto;
    animation: logoFloat 6s ease-in-out infinite;
  }

  /* ─── COMING SOON PILL ─── */
  .pill {
    display: inline-block;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.22);
    color: rgba(255,255,255,0.9);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 8px 22px;
    border-radius: 40px;
    margin-bottom: 32px;
  }

  /* ─── HEADLINE ─── */
  .headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5.5vw, 68px);
    font-weight: 400;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }
  .headline em {
    font-style: italic;
    color: var(--orange-pale);
  }

  /* ─── ARABIC SUB ─── */
  .arabic-sub {
    font-family: 'Noto Naskh Arabic', serif;
    font-size: clamp(20px, 3vw, 34px);
    color: rgba(255,255,255,0.5);
    line-height: 1;
    margin-bottom: 32px;
    direction: rtl;
  }

  /* ─── TAGLINE ─── */
  .tagline {
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 300;
    color: rgba(255,255,255,0.78);
    line-height: 1.75;
    max-width: 560px;
    margin-bottom: 52px;
  }

  /* ─── DIVIDER ─── */
  .divider {
    width: 60px;
    height: 2px;
    background: var(--orange-pale);
    opacity: 0.5;
    margin: 0 auto 48px;
    border-radius: 2px;
  }

  /* ─── PILLARS ─── */
  .pillars {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
    width: 100%;
  }
  .pillar {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 28px 24px;
    flex: 1;
    min-width: 160px;
    max-width: 210px;
    transition: all 0.35s ease;
    cursor: default;
  }
  .pillar:hover {
    background: rgba(255,255,255,0.17);
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
  }
  .pillar-icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
  }
  .pillar-title {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
  }
  .pillar-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    line-height: 1.55;
  }

  /* ─── NOTIFY FORM ─── */
  .notify-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 14px;
    display: block;
  }
  .notify-form {
    display: flex;
    gap: 0;
    max-width: 440px;
    width: 100%;
    margin: 0 auto 16px;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
  }
  .notify-input {
    flex: 1;
    background: rgba(255,255,255,0.95);
    border: none;
    outline: none;
    padding: 16px 22px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: var(--orange-dark);
  }
  .notify-input::placeholder { color: rgba(61,31,10,0.45); }
  .notify-btn {
    background: var(--navy);
    color: white;
    border: none;
    padding: 16px 28px;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
  }
  .notify-btn:hover { background: #2c3b63; }

  .notify-note {
    font-size: 12px;
    color: rgba(255,255,255,0.42);
    letter-spacing: 0.04em;
    margin-bottom: 56px;
  }

  /* ─── QUOTE ─── */
  .quote-block {
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 32px 36px;
    max-width: 560px;
    margin: 0 auto 56px;
    position: relative;
  }
  .quote-block::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 100px;
    color: rgba(255,255,255,0.1);
    position: absolute;
    top: -16px; left: 16px;
    line-height: 1;
  }
  .quote-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(15px, 2vw, 18px);
    font-style: italic;
    color: rgba(255,255,255,0.85);
    line-height: 1.65;
    position: relative;
    z-index: 1;
  }

  /* ─── CONTACT LINKS ─── */
  .contact-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  .contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: all 0.3s;
  }
  .contact-link.primary {
    background: var(--white);
    color: var(--orange);
  }
  .contact-link.primary:hover {
    background: var(--orange-pale);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  }
  .contact-link.ghost {
    background: transparent;
    color: rgba(255,255,255,0.75);
    border: 1.5px solid rgba(255,255,255,0.35);
  }
  .contact-link.ghost:hover {
    background: rgba(255,255,255,0.1);
    color: white;
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
  }

  /* ─── FOOTER ─── */
  .page-footer {
    position: relative;
    z-index: 2;
    margin-top: 56px;
    text-align: center;
  }
  .footer-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-style: italic;
    color: rgba(255,255,255,0.38);
    letter-spacing: 0.04em;
  }

  /* ─── BOTTOM WAVE ─── */
  .bottom-wave {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    pointer-events: none;
    z-index: 1;
  }
  .bottom-wave svg { display: block; }

  /* ─── SCROLL PROGRESS ─── */
  .progress-bar {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    background: var(--orange-pale);
    z-index: 999;
    width: 0;
    transition: width 0.15s;
  }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
  }
  .stagger-1 { animation: fadeUp 0.9s 0.1s cubic-bezier(0.22,1,0.36,1) both; }
  .stagger-2 { animation: fadeUp 0.9s 0.25s cubic-bezier(0.22,1,0.36,1) both; }
  .stagger-3 { animation: fadeUp 0.9s 0.4s cubic-bezier(0.22,1,0.36,1) both; }
  .stagger-4 { animation: fadeUp 0.9s 0.55s cubic-bezier(0.22,1,0.36,1) both; }
  .stagger-5 { animation: fadeUp 0.9s 0.7s cubic-bezier(0.22,1,0.36,1) both; }
  .stagger-6 { animation: fadeUp 0.9s 0.85s cubic-bezier(0.22,1,0.36,1) both; }
  .stagger-7 { animation: fadeUp 0.9s 1.0s cubic-bezier(0.22,1,0.36,1) both; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 600px) {
    .pillars { gap: 12px; }
    .pillar { min-width: 130px; padding: 22px 16px; }
    .notify-form { flex-direction: column; border-radius: 16px; }
    .notify-input { border-radius: 16px 16px 0 0; padding: 14px 18px; }
    .notify-btn { border-radius: 0 0 16px 16px; padding: 14px 18px; }
    .quote-block { padding: 24px 20px; }
    .contact-row { flex-direction: column; align-items: center; }
  }

  /* Success message */
  .success-msg {
    display: none;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
  }