/* Cabin & Crumb — main stylesheet */

*, *::before, *::after { box-sizing: border-box; }

:root {
    /* Pixels of logo circle that peek above AND below the dark nav bar.
       Bar height = 200 - 2*--logo-peek (logo is 200px diameter).
       Change this one value to retune the whole effect. */
    --logo-peek: 40px;
}

body {
    margin: 0;
    padding-top: 4px;   /* breathing room so logo circle doesn't clip viewport top edge */
    font-family: Georgia, 'Times New Roman', serif;
    color: #2c2c2c;
    background: #faf8f4;
}

/* ── Nav ── */
nav {
    background: #3b2a1a;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    overflow: visible;
    position: relative;
    z-index: 100;
    margin-top: var(--logo-peek);
}

nav a {
    color: #f5e6cc;
    text-decoration: none;
    font-size: 1rem;
    font-family: sans-serif;
    white-space: nowrap;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-right: auto;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo {
    height: 200px;
    width: 200px;
    flex-shrink: 0;
    /* Symmetric peek: circle extends --logo-peek px above AND below the dark bar.
       nav padding is 0.75rem (12px) each side; negate that + the peek amount. */
    margin-top: calc(-1 * (var(--logo-peek) + 12px));
    margin-bottom: calc(-1 * (var(--logo-peek) + 12px));
    position: relative;
    z-index: 101;
}

.nav-brand-text {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #f9d98d;
}

nav a:not(.nav-brand):hover { text-decoration: underline; }
.nav-brand:hover { text-decoration: none; }

.nav-signout-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #f5e6cc;
    font-size: 1rem;
    font-family: sans-serif;
    white-space: nowrap;
}
.nav-signout-btn:hover { text-decoration: underline; }

/* ── Hero banner ── */
.site-hero {
    width: 100%;
    max-height: 420px;
    overflow: hidden;
    display: block;
    line-height: 0;
}

.site-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

/* ── Main ── */
main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 1rem 3rem;
}

/* ── Window banner ── */
.window-banner {
    border-radius: 6px;
    padding: 0.85rem 1.25rem;
    margin-bottom: 1rem;
    font-family: sans-serif;
    font-size: 0.95rem;
}

.window-banner p { margin: 0; }

.window-open  { background: #d4edda; border: 1px solid #b8dfc3; color: #1a5c2b; }
.window-closed { background: #fff3cd; border: 1px solid #ffe08a; color: #7a5a00; }

.btn-order-inline {
    display: inline-block;
    margin-left: 1rem;
    background: #3b2a1a;
    color: #f9d98d;
    padding: 0.3rem 0.85rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}

.btn-order-inline:hover { background: #5a3d24; }

/* ── Fulfillment info bar ── */
.fulfillment-info {
    background: #f0ece4;
    border-left: 4px solid #c8a96e;
    padding: 0.75rem 1.25rem;
    margin-bottom: 2rem;
    border-radius: 0 4px 4px 0;
    font-size: 0.9rem;
}

.fulfillment-info p { margin: 0; }

/* ── Menu sections ── */
.menu-section {
    margin-bottom: 3rem;
}

.menu-section h2 {
    font-size: 1.6rem;
    color: #3b2a1a;
    border-bottom: 2px solid #c8a96e;
    padding-bottom: 0.4rem;
    margin-bottom: 1.25rem;
}

.menu-section h2 small {
    font-size: 0.85rem;
    color: #7a6a55;
    font-weight: normal;
    margin-left: 0.5rem;
}

/* ── Product grid ── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: #fff;
    border: 1px solid #e0d8cc;
    border-radius: 8px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
}

.product-card h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #2c2c2c;
    line-height: 1.3;
}

.product-desc {
    margin: 0;
    font-size: 0.88rem;
    color: #5a5a5a;
    line-height: 1.5;
    flex: 1;
}

.price {
    margin: 0;
    font-size: 1.15rem;
    font-weight: bold;
    color: #3b2a1a;
    font-family: sans-serif;
}

.btn-add {
    display: block;
    text-align: center;
    background: #c8a96e;
    color: #fff;
    padding: 0.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-family: sans-serif;
    font-size: 0.9rem;
    font-weight: bold;
    margin-top: 0.25rem;
    transition: background 0.15s;
}

.btn-add:hover { background: #a88a50; }

/* ── Bottom CTA ── */
.cta-section {
    text-align: center;
    margin-top: 1rem;
}

.btn-order-lg {
    display: inline-block;
    background: #3b2a1a;
    color: #f9d98d;
    padding: 0.85rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-family: sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background 0.15s;
}

.btn-order-lg:hover { background: #5a3d24; }

/* ── Footer ── */
footer {
    text-align: center;
    padding: 1.25rem;
    background: #3b2a1a;
    color: #c8a96e;
    font-family: sans-serif;
    font-size: 0.85rem;
    margin-top: 2rem;
}

footer a { color: #c8a96e; }
footer p { margin: 0.25rem 0; }

/* ── Static content pages (privacy, etc.) ── */
/* ── Account / order history ── */
.account-empty { margin: 2rem 0; }

.account-order-card {
    border: 1px solid #ede7dc;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    background: #fff;
}

.account-order-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
    font-family: sans-serif;
    font-size: 0.9rem;
}

.account-order-num { font-weight: 700; color: #3b2a1a; }
.account-order-total { margin-left: auto; font-weight: 700; color: #3b2a1a; }
.account-order-date { color: #666; }

.account-order-status {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    background: #ede7dc;
    color: #3b2a1a;
}
.account-order-status.status-confirmed { background: #d4edda; color: #155724; }
.account-order-status.status-ready     { background: #fff3cd; color: #856404; }
.account-order-status.status-cancelled { background: #f8d7da; color: #842029; }

.account-order-items {
    list-style: none;
    padding: 0;
    margin: 0.25rem 0;
    font-size: 0.9rem;
    color: #2c2c2c;
}
.account-order-items li { padding: 0.1rem 0; }

.account-order-meta {
    font-size: 0.8rem;
    color: #888;
    font-family: sans-serif;
    margin-top: 0.4rem;
}
.content-page { max-width: 720px; margin: 0 auto; padding: 2rem 1rem 3rem; }
.content-page h2 { color: #3b2a1a; margin-top: 2rem; font-size: 1.2rem; }
.content-page h3 { color: #3b2a1a; margin-top: 1.25rem; font-size: 1rem; }
.content-meta { color: #888; font-size: 0.85rem; font-family: sans-serif; margin-bottom: 1.5rem; }

/* ── Order form ── */

h1 { color: #3b2a1a; font-size: 1.8rem; margin-bottom: 0.25rem; }

.order-intro {
    color: #5a5a5a;
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
    font-family: sans-serif;
}

.alert-error {
    background: #f8d7da;
    border: 1px solid #f1aeb5;
    color: #842029;
    border-radius: 4px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    font-family: sans-serif;
    font-size: 0.9rem;
}

.order-section {
    margin-bottom: 2rem;
}

.order-section h2 {
    font-size: 1.25rem;
    color: #3b2a1a;
    border-bottom: 2px solid #c8a96e;
    padding-bottom: 0.35rem;
    margin-bottom: 1rem;
}

.order-section h2 small {
    font-size: 0.8rem;
    color: #7a6a55;
    font-weight: normal;
    margin-left: 0.5rem;
}

.order-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid #ede7dc;
}

.order-row:last-child { border-bottom: none; }

.order-item-thumb {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    align-self: center;
}

.order-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
}

.order-item-name {
    font-weight: bold;
    font-size: 1rem;
    color: #2c2c2c;
}

.order-item-desc {
    font-size: 0.83rem;
    color: #5a5a5a;
    line-height: 1.4;
    font-family: sans-serif;
}

.order-item-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.qty-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #3b2a1a;
    white-space: nowrap;
}

.order-item-price {
    font-weight: bold;
    color: #3b2a1a;
    font-family: sans-serif;
    font-size: 1rem;
}

.qty-input {
    width: 64px;
    padding: 0.35rem 0.5rem;
    border: 1px solid #c8bfb0;
    border-radius: 4px;
    font-size: 1rem;
    text-align: center;
    font-family: sans-serif;
}

.qty-input:focus { outline: 2px solid #c8a96e; border-color: transparent; }

/* Running total */
.order-total-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    background: #3b2a1a;
    color: #f9d98d;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    font-family: sans-serif;
    font-size: 1.05rem;
    position: sticky;
    top: 0;
    z-index: 10;
}

/* Contact form */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.form-grid label,
.order-section > label {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-family: sans-serif;
    font-size: 0.9rem;
    color: #3b2a1a;
    font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea,
.order-section textarea {
    padding: 0.5rem 0.75rem;
    border: 1px solid #c8bfb0;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: sans-serif;
    background: #fff;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus,
.order-section textarea:focus { outline: 2px solid #c8a96e; border-color: transparent; }

.req { color: #c0392b; }

/* Fulfillment */
.radio-group { display: flex; flex-direction: column; gap: 0.6rem; }

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
}

/* Day picker */
.day-picker-hint {
    font-family: sans-serif;
    font-size: 0.88rem;
    color: #5a5a5a;
    margin: 0 0 0.75rem;
}

.day-picker-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-choose-day {
    display: inline-block;
    background: #fff;
    border: 2px solid #c8a96e;
    color: #3b2a1a;
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    font-family: sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}
.btn-choose-day:hover { background: #f0ece4; }
.btn-choose-day.has-date {
    border-color: #3b2a1a;
    background: #3b2a1a;
    color: #f9d98d;
}

.btn-change-day {
    background: none;
    border: none;
    color: #c8a96e;
    font-family: sans-serif;
    font-size: 0.88rem;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}
.btn-change-day:hover { color: #a88a50; }

/* Submit */
.submit-row {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

.btn-submit {
    background: #3b2a1a;
    color: #f9d98d;
    border: none;
    padding: 0.85rem 2.5rem;
    border-radius: 6px;
    font-family: sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.15s;
}

.btn-submit:hover:not(:disabled) { background: #5a3d24; }
.btn-submit:disabled {
    background: #c8bfb0;
    color: #7a6a55;
    cursor: not-allowed;
}

.submit-note {
    font-family: sans-serif;
    font-size: 0.85rem;
    color: #7a6a55;
    margin: 0;
}

/* OAuth prefill block on order form */
.oauth-prefill {
    background: #f0ece4;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.oauth-hint {
    margin: 0;
    font-family: sans-serif;
    font-size: 0.88rem;
    color: #5a5a5a;
    flex: 1;
}

.btn-oauth {
    display: inline-block;
    background: #fff;
    border: 1px solid #c8bfb0;
    color: #2c2c2c;
    padding: 0.45rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-family: sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.15s;
}

.btn-oauth:hover { background: #f0ece4; }

/* ── Payment page ── */
.payment-box {
    max-width: 520px;
    margin: 2rem auto;
    padding: 2rem 1.5rem;
    background: #fff;
    border: 1px solid #e0d8cc;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.payment-box h1 { font-size: 1.5rem; margin-bottom: 1rem; }

.order-summary {
    background: #f0ece4;
    border-radius: 6px;
    padding: 0.85rem 1rem;
    margin-bottom: 1.5rem;
    font-family: sans-serif;
    font-size: 0.9rem;
}

.order-summary p { margin: 0 0 0.3rem; }
.order-summary p:last-child { margin: 0; }
.summary-total { font-size: 1rem; color: #3b2a1a; }

.payment-error {
    background: #f8d7da;
    border: 1px solid #f1aeb5;
    color: #842029;
    border-radius: 4px;
    padding: 0.65rem 0.9rem;
    margin-bottom: 1rem;
    font-family: sans-serif;
    font-size: 0.88rem;
}

.payment-note {
    margin-top: 1rem;
    font-family: sans-serif;
    font-size: 0.8rem;
    color: #7a6a55;
    text-align: center;
}

/* Confirmation items */
.confirmation-items {
    background: #f0ece4;
    border-radius: 6px;
    padding: 0.85rem 1rem;
    margin: 1rem 0;
    font-family: sans-serif;
    font-size: 0.9rem;
    text-align: left;
}

.confirmation-item {
    display: flex;
    gap: 0.4rem;
    padding: 0.25rem 0;
    border-bottom: 1px solid #e0d8cc;
}

.confirmation-item:last-of-type { border-bottom: none; }

.conf-line-price {
    margin-left: auto;
    font-weight: bold;
    color: #3b2a1a;
}

.confirmation-total {
    padding-top: 0.5rem;
    text-align: right;
    font-size: 1rem;
    color: #3b2a1a;
}

/* Closed / Confirmation pages */
.closed-box,
.confirmation-box {
    max-width: 560px;
    margin: 3rem auto;
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border: 1px solid #e0d8cc;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.closed-box h1,
.confirmation-box h1 {
    color: #3b2a1a;
    margin-bottom: 1rem;
}

.closed-box p,
.confirmation-box p {
    font-family: sans-serif;
    font-size: 0.95rem;
    color: #5a5a5a;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.confirmation-icon {
    font-size: 3rem;
    color: #2d8a4e;
    margin-bottom: 0.5rem;
    line-height: 1;
}

/* ── Admin ── */
.admin-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.admin-header h1 {
    margin: 0;
    font-size: 1.4rem;
    color: #3b2a1a;
    flex: 1;
}

.alert-success {
    background: #d4edda;
    border: 1px solid #b8dfc3;
    color: #1a5c2b;
    border-radius: 4px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    font-family: sans-serif;
    font-size: 0.9rem;
}

.admin-stat-bar {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.admin-stat {
    background: #fff;
    border: 1px solid #e0d8cc;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 90px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.stat-num {
    font-size: 1.75rem;
    font-weight: bold;
    color: #3b2a1a;
    font-family: sans-serif;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: #7a6a55;
    font-family: sans-serif;
    margin-top: 0.2rem;
}

.admin-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.admin-section {
    background: #fff;
    border: 1px solid #e0d8cc;
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.admin-section h2 {
    font-size: 1.1rem;
    color: #3b2a1a;
    border-bottom: 2px solid #c8a96e;
    padding-bottom: 0.3rem;
    margin: 0 0 1rem;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-family: sans-serif;
    font-size: 0.88rem;
}

.admin-table th {
    text-align: left;
    padding: 0.5rem 0.75rem;
    background: #f0ece4;
    color: #3b2a1a;
    font-weight: 700;
    border-bottom: 2px solid #c8a96e;
    white-space: nowrap;
}

.admin-table td {
    padding: 0.6rem 0.75rem;
    border-bottom: 1px solid #ede7dc;
    vertical-align: top;
}

.admin-table-compact td,
.admin-table-compact th {
    padding: 0.3rem 0.5rem;
}

.admin-table tr.row-cancelled td { opacity: 0.55; }

.status-badge {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-size: 0.78rem;
    font-weight: 700;
    font-family: sans-serif;
}

.status-pending    { background: #fff3cd; color: #7a5a00; }
.status-confirmed  { background: #d4edda; color: #1a5c2b; }
.status-ready      { background: #cce5ff; color: #004085; }
.status-delivered  { background: #e0d8cc; color: #3b2a1a; }
.status-cancelled  { background: #f8d7da; color: #842029; }

.admin-status-select {
    padding: 0.25rem 0.4rem;
    border: 1px solid #c8bfb0;
    border-radius: 4px;
    font-family: sans-serif;
    font-size: 0.82rem;
    background: #fff;
}

.btn-sm {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-family: sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #c8bfb0;
    cursor: pointer;
    background: #f0ece4;
    color: #3b2a1a;
}

.btn-danger {
    background: #f8d7da;
    border-color: #f1aeb5;
    color: #842029;
}

.btn-danger:hover { background: #f1aeb5; }

.notes-flag { color: #c8a96e; font-size: 0.85em; margin-left: 0.25rem; cursor: help; }

.order-notes-row {
    background: #fdf8f0;
    border-left: 3px solid #c8a96e;
    padding: 0.5rem 0.85rem;
    margin-top: 0.5rem;
    font-family: sans-serif;
    font-size: 0.85rem;
    color: #5a5a5a;
}

/* ── Calendar dialog ── */
#dayPickerDialog {
    border: none;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    padding: 0;
    max-width: 336px;
    width: 90vw;
}

#dayPickerDialog::backdrop {
    background: rgba(0,0,0,0.35);
}

.cal-container { padding: 1.25rem 1rem; }

.cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.cal-nav-btn {
    background: none;
    border: 1px solid #c8bfb0;
    border-radius: 4px;
    padding: 0.2rem 0.6rem;
    cursor: pointer;
    font-size: 1.1rem;
    color: #3b2a1a;
    line-height: 1.4;
}
.cal-nav-btn:hover:not(:disabled) { background: #f0ece4; }
.cal-nav-btn:disabled { opacity: 0.3; cursor: default; }

.cal-month-label {
    font-size: 1rem;
    font-weight: 700;
    color: #3b2a1a;
    font-family: sans-serif;
}

.cal-dow {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 0.2rem;
}

.cal-dow span {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: #7a6a55;
    font-family: sans-serif;
    padding: 0.2rem 0;
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.cal-cell {
    text-align: center;
    padding: 0.42rem 0;
    border-radius: 4px;
    font-size: 0.88rem;
    font-family: sans-serif;
    cursor: pointer;
    color: #2c2c2c;
    user-select: none;
}

.cal-cell:hover:not(.cal-disabled):not(.cal-empty):not(.cal-selected) {
    background: #f0ece4;
}

.cal-cell.cal-disabled {
    color: #c8bfb0;
    cursor: default;
}

.cal-cell.cal-empty { cursor: default; }

.cal-cell.cal-selected {
    background: #3b2a1a;
    color: #f9d98d;
    font-weight: 700;
}

.cal-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.85rem;
}

.cal-cancel-btn {
    background: none;
    border: 1px solid #c8bfb0;
    border-radius: 4px;
    padding: 0.3rem 0.8rem;
    cursor: pointer;
    font-family: sans-serif;
    font-size: 0.85rem;
    color: #5a5a5a;
}
.cal-cancel-btn:hover { background: #f0ece4; }

/* ── Responsive ── */
@media (max-width: 600px) {
    .product-grid { grid-template-columns: 1fr; }
    nav { gap: 0.75rem; }
    .order-row { flex-direction: column; }
    .order-item-right { justify-content: space-between; width: 100%; }
    .form-grid { grid-template-columns: 1fr; }
}