.book-cover{
  min-height:420px;
  border-radius:14px;
  background:#ffffff;
  border:1px solid rgba(38,59,76,.08);
  box-shadow:0 12px 30px rgba(29,47,61,.10);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px;
  overflow:hidden;
}

.book-cover img{
  width:100%;
  height:100%;
  max-height:520px;
  object-fit:contain;
  border-radius:8px;
}

/* -------------------------------------------------
   CONTACT
-------------------------------------------------- */

.contact-section{
    background:var(--cream);
    border-top:1px solid rgba(38,59,76,.06);
}

.contact-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:80px;
    align-items:center;
}

.contact-copy{
    max-width:500px;
}

.contact-copy .eyebrow{
    margin-bottom:14px;
}

.contact-copy h2{
    margin-bottom:24px;
}

.contact-lead{
    margin:0 0 20px;
    font-size:1.15rem;
    line-height:1.65;
    color:var(--navy);
}

.contact-copy p{
    color:var(--muted);
}

.contact-note{
    margin-top:28px;
    font-size:.95rem;
    font-weight:800;
    color:var(--coral) !important;
}


/* White form card */

.contact-card{
    background:var(--paper);
    border:1px solid rgba(38,59,76,.10);
    border-radius:var(--radius);
    padding:44px;
    box-shadow:
        0 18px 50px rgba(29,47,61,.08);
}

.contact-card form{
    display:grid;
    gap:22px;
}


/* Name + email beside each other */

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}


/* Individual fields */

.form-field{
    display:grid;
    gap:8px;
}

.form-field label{
    font-size:.92rem;
    font-weight:800;
    color:var(--navy);
}

.optional{
    font-weight:500;
    color:var(--muted);
}


/* Inputs */

.form-field input,
.form-field textarea{
    width:100%;
    padding:14px 16px;

    border:1px solid var(--line);
    border-radius:12px;

    background:#fff;

    color:var(--ink);
    font:inherit;
    font-size:1rem;

    transition:
        border-color .18s ease,
        box-shadow .18s ease,
        background .18s ease;
}

.form-field input{
    min-height:52px;
}

.form-field textarea{
    min-height:170px;
    resize:vertical;
}


/* Placeholder */

.form-field input::placeholder,
.form-field textarea::placeholder{
    color:#a2aaaf;
}


/* Focus */

.form-field input:focus,
.form-field textarea:focus{
    outline:none;
    border-color:var(--navy);
    box-shadow:0 0 0 4px rgba(38,59,76,.08);
    background:#fff;
}


/* Submit button */

.contact-submit{
    width:100%;
    min-height:52px;

    margin-top:4px;
    padding:13px 22px;

    border:0;
    border-radius:999px;

    background:var(--navy);
    color:#fff;

    font:inherit;
    font-weight:900;

    cursor:pointer;

    transition:
        transform .18s ease,
        background .18s ease,
        box-shadow .18s ease;
}

.contact-submit:hover{
    transform:translateY(-2px);
    background:var(--navy-deep);
    box-shadow:0 10px 24px rgba(29,47,61,.16);
}

.contact-submit:active{
    transform:translateY(0);
}


/* Privacy note */

.form-privacy{
    margin:0;
    text-align:center;

    font-size:.82rem;
    line-height:1.5;

    color:var(--muted);
}


/* Tablet */

@media(max-width:960px){

    .contact-grid{
        grid-template-columns:1fr;
        gap:42px;
    }

    .contact-copy{
        max-width:680px;
        margin-inline:auto;
        text-align:center;
    }

    .contact-card{
        max-width:700px;
        width:100%;
        margin-inline:auto;
    }
}


/* Phone */

@media(max-width:600px){

    .contact-card{
        padding:28px 22px;
    }

    .form-row{
        grid-template-columns:1fr;
    }

    .contact-copy{
        text-align:left;
    }
}
@media(max-width:960px){

    .contact-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .contact-copy{
        max-width:none;
        text-align:center;
    }

    .contact-submit{
        justify-self:center;
    }

}

.success-image{
    margin-bottom:32px;
}

.success-image img{
    display:block;
    width:100%;
    max-width:600px;
    margin:0 auto;
    height:auto;
}

.language-switcher{
    display:flex;
    align-items:center;
    gap:4px;
    padding:4px;
    border:1px solid rgba(61,47,36,.12);
    border-radius:999px;
    background:rgba(255,255,255,.7);
}

.language-switcher a{
    min-width:38px;
    height:34px;
    padding:0 10px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:999px;
    text-decoration:none;

    font-size:.82rem;
    font-weight:800;
    color:var(--muted);
}

.language-switcher a:hover{
    background:rgba(61,47,36,.08);
    color:var(--ink);
}

.language-switcher a.active{
    background:var(--ink);
    color:#fff;
}