/* ── Decorative background elements ── */

.coming-soon-body {
      font-family: 'DM Sans', sans-serif;
      background: #f0ede8;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px 20px;
      position: relative;
      overflow: hidden;
    }

.db-cs-deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

/* Dot grid top-left */
.db-cs-deco-dots {
    top: 24px;
    left: 80px;
    display: grid;
    grid-template-columns: repeat(5, 10px);
    gap: 8px;
}

.db-cs-deco-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-secondary);
    opacity: 0.5;
    display: block;
}

/* Corner bracket top-right */
.db-cs-deco-bracket {
    top: 20px;
    right: 48px;
    width: 48px;
    height: 48px;
    border-top: 3px solid var(--brand-secondary);
    border-right: 3px solid var(--brand-secondary);
    opacity: 0.5;
}

/* Squiggle left */
.db-cs-deco-squiggle {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.35;
}

/* Circle bottom-left */
.db-cs-deco-circle-bl {
    bottom: 32px;
    left: 48px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2.5px solid var(--brand-main);
    opacity: 0.2;
}

/* Circle bottom-right */
.db-cs-deco-circle-br {
    bottom: 20px;
    right: 60px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2.5px solid var(--brand-secondary);
    opacity: 0.25;
}

/* ── Main card ── */
.db-cs-card {
    position: relative;
    z-index: 1;
    background: var(--brand-cream);
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 20px 64px rgba(0,0,0,0.12);
}

/* ── Left panel ── */
.db-cs-left {
    padding: 48px 48px 52px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

/* Subtle diagonal shape behind content */
.db-cs-left::before {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -40px;
    width: 340px;
    height: 340px;
    background: linear-gradient(135deg, rgba(203,150,84,0.10) 0%, rgba(96,108,56,0.07) 100%);
    border-radius: 50%;
    pointer-events: none;
}

/* Logo row */
.db-cs-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 48px;
}

.db-cs-logo-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--brand-main);
    flex-shrink: 0;
}

.db-cs-logo-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-main);
    line-height: 1.3;
}

/* Heading */
.db-cs-heading {
    flex: 1;
    margin-bottom: 24px;
}

.db-cs-heading-light {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-secondary);
    line-height: 1;
    display: block;
    margin-bottom: 4px;
}

.db-cs-heading-bold {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--db-text);
    line-height: 1.05;
    display: block;
}

/* Body text */
.db-cs-body {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--db-muted);
    margin-bottom: 28px;
    max-width: 320px;
}

/* Email form */
.db-cs-form {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 999px;
    border: 1.5px solid #e8e2d8;
    overflow: hidden;
    max-width: 340px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.db-cs-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    color: var(--db-text);
    padding: 14px 20px;
}

.db-cs-input::placeholder {
    color: #c0bab0;
}

.db-cs-submit {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--brand-secondary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4px;
    transition: background 0.2s, transform 0.15s;
}

.db-cs-submit:hover {
    background: var(--brand-main);
    transform: scale(1.06);
}

.db-cs-submit svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #fff;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── Right panel — image ── */
.db-cs-right {
    position: relative;
    min-height: 460px;
}

.db-cs-right img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Placeholder until real image is added */
.db-cs-img-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #c8caba 0%, #a8b090 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
    font-style: italic;
    text-align: center;
    padding: 24px;
}

/* ── Mobile ── */
@media (max-width: 767.98px) {
    .db-cs-card {
    grid-template-columns: 1fr;
    }

    .db-cs-right {
    min-height: 260px;
    order: -1;
    }

    .db-cs-left {
    padding: 36px 28px 40px;
    }

    .db-cs-logo {
    margin-bottom: 32px;
    }
}