/* HAVERSHAM STANDALONE PAGE STYLES */

/* =========================================================
   SUGGESTION SECTION
   ========================================================= */

.suggestion-section {
    padding: 52px 24px 90px;
}

.suggestion-form-status {
    margin-top: 18px;
    padding: 12px 16px;

    border-radius: 12px;

    font-family:
        Baskerville,
        "Baskerville Old Face",
        "Times New Roman",
        serif;

    font-size: 17px;
    line-height: 1.3;
    text-align: center;
}

.suggestion-form-success {
    color: #245d35;
    background: #edf7ef;
    border: 1px solid #9bc8a5;
}

.suggestion-form-error {
    color: #7d2626;
    background: #faeeee;
    border: 1px solid #d7a0a0;
}

.suggestion-honeypot {
    position: absolute !important;
    left: -9999px !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* =========================================================
   SECTION HEADER
   ========================================================= */

.suggestion-section .greetings-header {
    width: min(1200px, 100%);
    margin: 0 auto 42px;
    text-align: center;
}

.suggestion-section .greetings-header h2 {
    margin: 0;

    color: var(--haversham-text, #292929);

    font-family:
        Baskerville,
        "Baskerville Old Face",
        "Times New Roman",
        serif;

    font-size: clamp(42px, 5vw, 64px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.05;
}

.suggestion-section .greetings-divider {
    display: block;

    width: min(1200px, 100%);
    height: auto;

    margin: 20px auto 0;
}


/* =========================================================
   MAIN CARD
   ========================================================= */

.suggestion-card {
    display: grid;
    grid-template-columns:
        minmax(0, 0.88fr)
        minmax(0, 1.12fr);

    gap: 68px;
    align-items: center;

    width: min(1140px, 100%);
    margin: 0 auto;
    padding: 48px 54px 52px;

    background: var(--haversham-white, #ffffff);

    border: 3px solid #666666;
    border-radius: 42px;

    box-shadow:
        0 14px 26px rgba(0, 0, 0, 0.24);
}


/* =========================================================
   SUGGESTION LEFT COPY COLUMN
   ========================================================= */

.suggestion-copy-column {
    min-width: 0;
    padding: 0 0 0 10px;

    transform: translateY(-5px);
}

.suggestion-haversham-image {
    display: block;

    width: min(210px, 75%);
    height: auto;

    margin: 0 auto 20px;
}

.suggestion-copy-column .haversham-about-intro {
    width: 100%;
    max-width: none;
    margin: 0;
    transform: none;

    color: var(--haversham-text, #292929);

    font-family:
        Baskerville,
        "Baskerville Old Face",
        "Times New Roman",
        serif;

    font-size: 20px;
    font-weight: 400;
    line-height: 1.28;
    text-align: left;
}

.suggestion-question-list {
	margin: 4px 0 18px;
	padding: 0;

	list-style: none;
}

.suggestion-question-list li {
	position: relative;

	margin: 0 0 12px;
	padding-left: 20px;
}

.suggestion-question-list li::before {
	content: "";

	position: absolute;
	top: 0.58em;
	left: 2px;

	width: 7px;
	height: 7px;

	background: var(--haversham-orange, #c86f2d);
	border-radius: 50%;

	transform: translateY(-50%);
}

.suggestion-copy-column .haversham-about-intro p {
    margin: 0 0 14px;
}

.suggestion-copy-column .haversham-about-intro p:last-child {
    margin-bottom: 0;
}

.suggestion-signature {
    margin-top: 22px !important;
    font-style: italic;
}


/* =========================================================
   SUGGESTION RIGHT FORM COLUMN
   ========================================================= */

.suggestion-form-column {
    min-width: 0;
    padding: 34px 38px 36px;

    background: #faf9f5;

    border: 1px solid rgba(80, 80, 80, 0.12);
    border-radius: 28px;

    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.14);
}

.suggestion-form-title {
    margin: 0 0 8px;

    color: var(--haversham-text, #292929);

    font-family:
        Baskerville,
        "Baskerville Old Face",
        "Times New Roman",
        serif;

    font-size: 32px;
    font-weight: 400;
    line-height: 1.1;
    text-align: center;
    text-transform: none;
}

.suggestion-form-intro {
    max-width: 470px;
    margin: 0 auto 28px;

    color: #555555;

    font-family:
        Baskerville,
        "Baskerville Old Face",
        "Times New Roman",
        serif;

    font-size: 17px;
    line-height: 1.35;
    text-align: center;
}

.suggestion-form {
    display: grid;
    gap: 20px;
}

.suggestion-name-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.suggestion-form .form-wrap {
    margin: 0;
}

.suggestion-form .form-label-outside {
    display: block;

    margin: 0 0 7px;

    color: #555555;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.suggestion-form .form-input {
    display: block;

    width: 100%;
    min-height: 50px;
    padding: 12px 16px;

    color: #333333;
    background: #ffffff;

    border: 1px solid #c8c8c8;
    border-radius: 12px;

    font-family:
        Baskerville,
        "Baskerville Old Face",
        "Times New Roman",
        serif;

    font-size: 16px;
    line-height: 1.3;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.suggestion-form .form-input:focus {
    border-color: var(--haversham-orange, #c86f2d);

    box-shadow:
        0 0 0 3px rgba(200, 111, 45, 0.16);
}

.suggestion-form .form-input::placeholder {
    color: #999999;
    opacity: 1;
}

.suggestion-form .suggestion-message {
    min-height: 180px;
    resize: vertical;
}

.suggestion-submit-button {
    width: 100%;
    min-height: 52px;
    margin: 2px 0 0;

    color: var(--haversham-cream, #f4efe3);
    background: var(--haversham-orange, #c86f2d);

    border: 2px solid var(--haversham-orange, #c86f2d);
    border-radius: 26px;

    font-family:
        Baskerville,
        "Baskerville Old Face",
        "Times New Roman",
        serif;

    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.suggestion-submit-button:hover {
    color: var(--haversham-orange, #c86f2d);
    background: var(--haversham-cream, #f4efe3);
    border-color: var(--haversham-orange, #c86f2d);

    transform: translateY(-2px);

    box-shadow:
        0 7px 14px rgba(0, 0, 0, 0.18);
}

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

.suggestion-email-contact {
    margin-top: 24px;
    padding-top: 20px;

    border-top: 1px solid rgba(80, 80, 80, 0.16);

    text-align: center;
}

.suggestion-email-contact span {
    display: block;

    margin-bottom: 4px;

    color: #555555;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.suggestion-email-contact a {
    color: var(--haversham-orange, #c86f2d);
    text-decoration: none;
}

.suggestion-email-contact a:hover {
    text-decoration: underline;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .suggestion-section {
        padding: 44px 22px 72px;
    }

    .suggestion-card {
        grid-template-columns: 1fr;
        gap: 42px;

        width: min(760px, 100%);
        padding: 42px 44px 46px;
    }

    .suggestion-copy-column {
        padding: 0;
    }

    .suggestion-copy-column .haversham-about-intro {
        font-size: 19px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 575px) {

    .suggestion-section {
        padding: 36px 14px 54px;
    }

    .suggestion-section .greetings-header {
        margin-bottom: 30px;
    }

    .suggestion-section .greetings-header h2 {
        font-size: 38px;
    }

    .suggestion-card {
        gap: 34px;
        padding: 30px 20px 32px;

        border-width: 2px;
        border-radius: 28px;
    }

    .suggestion-haversham-image {
        width: min(180px, 70%);
        margin-bottom: 22px;
    }

    .suggestion-copy-column .haversham-about-intro {
        font-size: 17px;
        line-height: 1.3;
    }

    .suggestion-form-column {
        padding: 28px 20px 30px;
        border-radius: 22px;
    }

    .suggestion-form-title {
        font-size: 28px;
    }

    .suggestion-name-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .suggestion-form .suggestion-message {
        min-height: 150px;
    }
}

/* =========================================================
   404 PAGE
   ========================================================= */


.error-404-section {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: calc(100vh - 70px);
    padding: 90px 24px;
}

.error-404-content {
    width: min(760px, 100%);
    margin: 0 auto;
    padding: 50px 42px;

    background: var(--haversham-white);

    border: 4px solid #666666;
    border-radius: 46px;

    box-shadow:
        0 14px 26px rgba(0, 0, 0, 0.24);
}

.header-404 {
    margin: 0;

    color: var(--haversham-ink);

    font-family:
        "Baskerville Old Face",
        Baskerville,
        "Times New Roman",
        serif;

    font-size: clamp(72px, 10vw, 140px);
    font-weight: 400;
    line-height: 0.9;
}

.header-404 small {
    display: block;

    margin-top: 18px;

    color: var(--haversham-ink);

    font-size: clamp(24px, 4vw, 42px);
    font-weight: 400;
    line-height: 1.1;
    text-transform: none;
}

.error-404-content .greetings-divider {
    display: block;

    width: min(500px, 90%);
    height: auto;

    margin: 28px auto;
}

.error-404-compass {
    display: block;

    width: min(260px, 60vw);
    height: auto;

    margin: 0 auto 28px;
}

.error-404-message {
    max-width: 580px;
    margin: 0 auto 28px;

    color: var(--haversham-ink);

    font-family:
        "Baskerville Old Face",
        Baskerville,
        "Times New Roman",
        serif;

    font-size: 21px;
    line-height: 1.4;
}

@media (max-width: 767px) {
    .error-404-section {
        padding: 48px 16px;
    }

    .error-404-content {
        padding: 36px 20px;

        border-width: 3px;
        border-radius: 28px;
    }

    .error-404-message {
        font-size: 18px;
    }
}

.error-404-content .btn {
    padding: 0;

    border: 0;
    background: transparent;

    color: #1a5fb4;

    font-size: 18px;
    text-decoration: underline;

    box-shadow: none;
}

.error-404-content .btn:hover,
.error-404-content .btn:focus {
    border: 0;
    background: transparent;

    color: var(--haversham-orange);

    box-shadow: none;
}
