/* ── MAINTENANCE PAGE STYLES ── */

  .maint-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9rem 2rem 6rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }

  /* ── Decorative floating particles ── */
  .maint-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
  }
  .maint-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(201,168,76,0.12);
    animation: particleFloat linear infinite;
  }
  .maint-particle.p1 { width: 4px;  height: 4px;  top: 15%; left: 10%; animation-duration: 18s; animation-delay: 0s; }
  .maint-particle.p2 { width: 6px;  height: 6px;  top: 70%; left: 80%; animation-duration: 22s; animation-delay: -4s; }
  .maint-particle.p3 { width: 3px;  height: 3px;  top: 40%; left: 90%; animation-duration: 15s; animation-delay: -8s; }
  .maint-particle.p4 { width: 5px;  height: 5px;  top: 80%; left: 20%; animation-duration: 20s; animation-delay: -12s; }
  .maint-particle.p5 { width: 3px;  height: 3px;  top: 25%; left: 60%; animation-duration: 17s; animation-delay: -6s; }
  .maint-particle.p6 { width: 7px;  height: 7px;  top: 55%; left: 5%;  animation-duration: 24s; animation-delay: -2s; }

  @keyframes particleFloat {
    0%   { transform: translateY(0) rotate(0deg); opacity: 0.8; }
    50%  { opacity: 0.3; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
  }

  /* ── Content wrapper ── */
  .maint-wrap {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 720px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  /* ── Badge ── */
  .maint-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.4rem;
    border: 1px solid rgba(201,168,76,0.3);
    background: rgba(201,168,76,0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 100px;
    color: var(--gold);
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.9s ease 0.2s both;
  }
  .badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 8px rgba(201,168,76,0.8);
    animation: pulse 2s ease infinite;
  }

  /* ── Vertical line ornament ── */
  .maint-line {
    width: 1px; height: 64px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    margin-bottom: 2rem;
    animation: fadeDown 1s ease 0.4s both;
  }

  /* ── Heading ── */
  .maint-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin-bottom: 1.75rem;
    animation: fadeUp 1s ease 0.5s both;
  }
  .maint-title em {
    font-style: italic;
    color: var(--gold);
  }

  /* ── Sub copy ── */
  .maint-sub {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 2;
    letter-spacing: 0.05em;
    max-width: 500px;
    margin: 0 auto 3.5rem;
    animation: fadeUp 1s ease 0.65s both;
  }

  /* ── Contact cards ── */
  .maint-contacts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 520px;
    margin-bottom: 3rem;
    animation: fadeUp 1s ease 0.8s both;
  }

  .maint-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.75rem;
    background: rgba(25, 25, 25, 0.45);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    text-decoration: none;
    color: var(--white);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.35s,
                background 0.35s,
                box-shadow 0.35s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    text-align: left;
  }
  .maint-card:hover {
    transform: translateY(-3px);
    border-color: rgba(201,168,76,0.4);
    background: rgba(35, 35, 35, 0.55);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 0 1px rgba(201,168,76,0.12) inset;
  }

  .maint-card-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    transition: background 0.3s;
  }
  .maint-card:hover .maint-card-icon {
    background: rgba(201,168,76,0.18);
  }

  .maint-card-body {
    flex: 1;
  }
  .maint-card-label {
    font-size: 0.58rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
  }
  .maint-card-value {
    font-size: 0.88rem;
    color: var(--white-dim);
    font-weight: 400;
  }

  .maint-card-arrow {
    font-size: 1rem;
    color: rgba(201,168,76,0.5);
    transition: transform 0.3s, color 0.3s;
  }
  .maint-card:hover .maint-card-arrow {
    transform: translateX(4px);
    color: var(--gold);
  }

  /* ── Return home button ── */
  .maint-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 2.5rem;
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color 0.4s, box-shadow 0.4s;
    border-radius: 100px;
    margin-bottom: 3rem;
    animation: fadeUp 1s ease 0.95s both;
  }
  .maint-btn::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--gold);
    transform: translateX(-101%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .maint-btn span { position: relative; z-index: 1; }
  .maint-btn:hover::before { transform: translateX(0); }
  .maint-btn:hover {
    color: var(--black);
    box-shadow: 0 10px 30px rgba(201,168,76,0.25);
  }

  /* ── Location footnote ── */
  .maint-location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray);
    opacity: 0.6;
    animation: fadeUp 1s ease 1.1s both;
  }
  .maint-location svg { flex-shrink: 0; opacity: 0.7; }

  /* ── Responsive ── */
  @media (max-width: 600px) {
    .maint-page { padding: 8rem 1.5rem 5rem; }
    .maint-card { padding: 1rem 1.25rem; gap: 1rem; }
    .maint-card-value { font-size: 0.78rem; }
    .maint-contacts { max-width: 100%; }
  }