/* Jordan For Vacation — native WordPress comment form */
.comment-respond {
    max-width: 920px;
    margin: 42px auto 72px;
    padding: 34px;
    border: 1px solid #e6dfd5;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 55px rgba(8, 37, 54, .09);
    color: #263640;
    font-family: "Montserrat", Arial, sans-serif;
}
.comment-respond * { box-sizing: border-box; }
.comment-respond .comment-reply-title {
    margin: 0 0 10px;
    color: #153b52;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.03em;
}
.comment-respond .comment-notes,
.comment-respond .logged-in-as {
    margin: 0 0 22px;
    color: #65737c;
    font-size: 13px;
}
.comment-respond #commentform {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.comment-respond #commentform > p { margin: 0; }
.comment-respond .comment-notes,
.comment-respond .logged-in-as,
.comment-respond .comment-form-comment,
.comment-respond .jfv-comment-captcha,
.comment-respond .comment-form-cookies-consent,
.comment-respond .form-submit { grid-column: 1 / -1; }
.comment-respond label {
    display: block;
    margin-bottom: 7px;
    color: #153b52;
    font-size: 12px;
    font-weight: 700;
}
.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond input[type="url"],
.comment-respond input[type="number"],
.comment-respond textarea {
    width: 100%;
    border: 1px solid #d9d4cc;
    border-radius: 10px;
    outline: 0;
    background: #fff;
    color: #263640;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 14px;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond input[type="url"],
.comment-respond input[type="number"] {
    min-height: 50px;
    padding: 0 14px;
}
.comment-respond textarea {
    min-height: 180px;
    padding: 14px;
    resize: vertical;
}
.comment-respond input:focus,
.comment-respond textarea:focus {
    border-color: #e1a148;
    box-shadow: 0 0 0 4px rgba(225, 161, 72, .14);
}
.jfv-comment-captcha {
    padding: 18px;
    border: 1px solid #e6dfd5;
    border-radius: 12px;
    background: #fbf8f3;
}
.jfv-comment-captcha label {
    margin-bottom: 4px;
    font-size: 14px;
}
.jfv-comment-captcha strong { color: #c66a2f; font-size: 17px; }
.jfv-comment-captcha-help {
    display: block;
    margin-bottom: 10px;
    color: #65737c;
    font-size: 12px;
}
.jfv-comment-captcha input[type="number"] { max-width: 180px; background: #fff; }
.comment-respond .comment-form-cookies-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #65737c;
    font-size: 12px;
}
.comment-respond .comment-form-cookies-consent input { margin-top: 4px; }
.comment-respond .comment-form-cookies-consent label { margin: 0; color: #65737c; font-weight: 500; }
.comment-respond .required { color: #c66a2f; }
.comment-respond .form-submit input[type="submit"] {
    min-height: 50px;
    border: 0;
    border-radius: 10px;
    padding: 0 24px;
    cursor: pointer;
    background: linear-gradient(135deg, #153b52, #1f526d);
    color: #fff;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(21, 59, 82, .18);
    transition: transform .2s ease, box-shadow .2s ease;
}
.comment-respond .form-submit input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(21, 59, 82, .26);
}
@media (max-width: 720px) {
    .comment-respond { margin: 28px 16px 50px; padding: 22px; border-radius: 14px; }
    .comment-respond #commentform { grid-template-columns: 1fr; }
    .comment-respond #commentform > p { grid-column: 1; }
}
