/* GlowGuide Suites inquiry page (/get-suites).
   Split-screen on desktop: dark hero (left) + light "Request details" form
   (right). Stacks vertically on mobile: hero on top, form below.
   Reuses the font tokens defined in home.css (--ff-sans / --ff-mono / --ff-dm). */

:root {
    --suites-ink: #2b2318;          /* dark hero + button */
    --suites-cream: #f2ede6;        /* form column background */
    --suites-heading: #f5f0e8;      /* hero heading on dark */
    --suites-lavender: #cbc1ed;     /* "your suite." + checkmarks */
    --suites-terracotta: #cb734b;   /* eyebrow */
    --suites-muted: #7a6a58;        /* labels, subtitles */
    --suites-border: rgba(42, 31, 20, 0.15);
    --suites-placeholder: rgba(42, 31, 20, 0.3);
}

.suites-page {
    position: relative;
    min-height: 100vh;
    background: var(--suites-ink);
    color: var(--suites-heading);
}

/* The shared marketing header (home/_header.html) sits above the split as a
   normal opaque bar — 64px on mobile, 88px on desktop. The split fills the
   viewport below it. */

/* ---- Layout grid ---- */
.suites-grid {
    display: flex;
    flex-direction: column;
}

@media (min-width: 900px) {
    .suites-grid {
        display: grid;
        grid-template-columns: 547fr 893fr;
        min-height: calc(100vh - 88px);
    }
}

/* ---- Left: dark hero ---- */
.suites-hero {
    background: var(--suites-ink);
    padding: 56px 28px 48px;
    display: flex;
    flex-direction: column;
}

@media (min-width: 900px) {
    .suites-hero {
        padding: 80px 56px 56px;
        justify-content: space-between;
    }
}

.suites-eyebrow {
    margin: 0;
    color: var(--suites-terracotta);
    font-family: var(--ff-mono);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.25;
}

.suites-hero-title {
    margin: 20px 0 0;
    font-family: var(--ff-sans);
    font-weight: 400;
    line-height: 1.12;
}
.suites-hero-title .line-1 {
    display: block;
    color: var(--suites-heading);
    font-size: 38px;
}
.suites-hero-title .line-2 {
    display: block;
    color: var(--suites-lavender);
    font-size: 46px;
}

.suites-hero-body {
    margin: 24px 0 0;
    max-width: 360px;
    color: rgba(245, 240, 232, 0.8);
    font-family: var(--ff-dm);
    font-weight: 300;
    font-size: 14px;
    line-height: 1.7;
}

.suites-assurances {
    list-style: none;
    margin: 32px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.suites-assurances li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(245, 240, 232, 0.6);
    font-family: var(--ff-sans);
    font-size: 13px;
    line-height: 1.55;
}
.suites-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--suites-lavender);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--suites-lavender);
}
.suites-check svg {
    display: block;
    width: 10px;
    height: 8px;
}

@media (min-width: 900px) {
    .suites-hero-title { margin-top: 30px; }
    .suites-hero-title .line-1 { font-size: 54px; }
    .suites-hero-title .line-2 { font-size: 64px; }
    .suites-hero-body { font-size: 15px; }
    /* Push the assurances to the bottom of the column, as in the design. */
    .suites-assurances { margin-top: auto; padding-top: 56px; gap: 20px; }
}

/* ---- Right: form column ---- */
.suites-form-col {
    background: var(--suites-cream);
    padding: 40px 28px 48px;
    display: flex;
    justify-content: center;
}

@media (min-width: 900px) {
    .suites-form-col {
        align-items: center;
        padding: 80px;
    }
}

.suites-form-inner {
    width: 100%;
    max-width: 560px;
}

.suites-form-heading {
    margin: 0;
    color: var(--suites-ink);
    font-family: var(--ff-sans);
    font-weight: 400;
    font-size: 30px;
    line-height: 1.2;
}
.suites-form-sub {
    margin: 8px 0 0;
    color: var(--suites-muted);
    font-family: var(--ff-sans);
    font-size: 13px;
    line-height: 1.6;
}

@media (min-width: 900px) {
    .suites-form-heading { font-size: 38px; line-height: 1.2; }
    .suites-form-sub { margin-top: 10px; font-size: 14.5px; }
}

.suites-form {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 900px) {
    .suites-form { margin-top: 40px; gap: 24px; }
}

.suites-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.suites-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.suites-label {
    color: var(--suites-muted);
    font-family: var(--ff-sans);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.25;
}
@media (min-width: 900px) {
    .suites-label { font-size: 12px; letter-spacing: 1.6px; }
}

.suites-optional {
    color: #b8a898;
    font-family: var(--ff-sans);
    font-size: 10px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
@media (min-width: 900px) {
    .suites-optional { font-size: 11px; letter-spacing: 0.88px; }
}

.suites-input,
.suites-textarea {
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid var(--suites-border);
    border-radius: 6px;
    color: var(--suites-ink);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    padding: 15px 17px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.suites-input { height: 50px; }
.suites-textarea {
    min-height: 130px;
    line-height: 24px;
    resize: vertical;
}
@media (min-width: 900px) {
    .suites-input { height: 52.5px; }
    .suites-textarea { min-height: 150px; }
}

.suites-input::placeholder,
.suites-textarea::placeholder {
    color: var(--suites-placeholder);
}
.suites-textarea::placeholder { color: rgba(42, 31, 20, 0.5); }

.suites-input:focus,
.suites-textarea:focus {
    outline: none;
    border-color: var(--suites-ink);
    box-shadow: 0 0 0 1px var(--suites-ink);
}

/* Email + phone share a row on desktop. */
.suites-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media (min-width: 900px) {
    .suites-row {
        flex-direction: row;
        gap: 16px;
    }
    .suites-row .suites-field { flex: 1 1 0; min-width: 0; }
}

.suites-hint {
    margin: -4px 0 0;
    color: var(--suites-muted);
    font-family: var(--ff-dm);
    font-size: 12px;
    line-height: 1.5;
}
@media (min-width: 900px) {
    .suites-hint { font-size: 12.5px; }
}

.suites-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: var(--suites-ink);
    border: none;
    border-radius: 6px;
    color: #fff;
    font-family: var(--ff-sans);
    font-size: 14px;
    letter-spacing: 0.15px;
    padding: 15px 24px;
    cursor: pointer;
    transition: background 0.15s ease;
}
.suites-submit:hover { background: #3a2f20; }
.suites-submit svg { flex-shrink: 0; }
@media (min-width: 900px) {
    .suites-submit { font-size: 15px; padding: 16px 24px; }
}

.suites-disclaimer {
    margin: 0;
    text-align: center;
    color: rgba(122, 106, 88, 0.7);
    font-family: var(--ff-dm);
    font-size: 12px;
    line-height: 1.6;
}

.suites-error {
    background: rgba(203, 115, 75, 0.1);
    border: 1px solid rgba(203, 115, 75, 0.35);
    border-radius: 6px;
    color: #8a4a2a;
    font-family: var(--ff-sans);
    font-size: 13px;
    line-height: 1.5;
    padding: 12px 16px;
}

/* ---- Thank-you state ---- */
.suites-thankyou {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.suites-thankyou .suites-form-heading { margin-bottom: 0; }
.suites-thankyou p {
    margin: 0;
    color: var(--suites-muted);
    font-family: var(--ff-dm);
    font-size: 15px;
    line-height: 1.7;
    max-width: 460px;
}
.suites-thankyou-back {
    margin-top: 12px;
    align-self: flex-start;
    color: var(--suites-ink);
    font-family: var(--ff-sans);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid rgba(42, 31, 20, 0.3);
    padding-bottom: 2px;
}
.suites-thankyou-back:hover { border-color: var(--suites-ink); }
