:root {
    --primary: #FF7B9C;
    --primary-hover: #FF6086;
    --secondary: #A0C4FF;
    --dark: #2B2D42;
    --text-main: #333333;
    --text-muted: #8D99AE;
    --bg-color: #F8F9FA;
    --card-bg: #FFFFFF;
    --border-radius: 16px;
    --input-radius: 12px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, #FFD6E0 0%, #C8E7FF 100%);
    background-attachment: fixed;
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.auth-body {
    background: linear-gradient(135deg, #1a1410 0%, #2d1f17 50%, #8B5A2B 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.landing-body {
    display: block;
    padding: 0;
    background: linear-gradient(180deg, #EFE9E5 0%, #E7DFD8 45%, #EFE9E4 100%);
}

.lp-shell {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.lp-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(245, 239, 234, 0.86);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(90, 58, 42, 0.12);
}

.lp-header-inner {
    min-height: 84px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.lp-header-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.lp-logo span {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8A5A3C;
    font-weight: 600;
}

.lp-logo strong {
    font-size: 2rem;
    color: #281C16;
}

.lp-phone {
    text-decoration: none;
    color: #4A2E22;
    font-weight: 700;
    padding: 0.55rem 1rem;
    border: 1px solid #D5BDAF;
    border-radius: 999px;
    background: #F7F0E9;
}

.lp-social-links {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.lp-social-link {
    width: 2.55rem;
    height: 2.55rem;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    border: 1px solid #D8C4B7;
    background: #FFF8F3;
    color: #4A2E22;
    box-shadow: 0 8px 18px rgba(45, 29, 20, 0.08);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.lp-social-link:hover {
    transform: translateY(-1px);
    background: #4A2E22;
    color: #FFF7F2;
    border-color: #4A2E22;
}

.lp-social-link svg {
    width: 1.05rem;
    height: 1.05rem;
    fill: currentColor;
}

.lp-main {
    padding-bottom: 2rem;
}

.lp-hero {
    padding: 2.2rem 0;
    background: radial-gradient(circle at 78% 18%, rgba(195, 126, 77, 0.35) 0%, transparent 40%),
        linear-gradient(135deg, #1E1512 0%, #36231B 45%, #5A3A2B 100%);
    color: #FDF5EE;
}

.lp-kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.76rem;
    color: #EBC7AD;
    margin-bottom: 0.8rem;
}

.lp-hero h1 {
    color: #FFE8D6;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.1;
    max-width: 820px;
    margin-bottom: 1rem;
}

.lp-hero p {
    max-width: 820px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #F5E9DF;
}

.lp-chip-row {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.lp-chip-row span {
    border: 1px solid rgba(255, 225, 199, 0.5);
    background: rgba(255, 245, 236, 0.12);
    color: #FFE7D5;
    padding: 0.45rem 0.78rem;
    border-radius: 999px;
    font-size: 0.9rem;
}

.lp-section {
    padding: 2.4rem 0;
}

.lp-section-title {
    color: #2A1E18;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 1.25rem;
}

.lp-gallery {
    background: linear-gradient(180deg, #EFE8E3 0%, #F7F3EF 100%);
}

.lp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.lp-gallery-grid-more {
    margin-top: 1rem;
}

.lp-gallery-item {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(45, 29, 20, 0.12);
    background: #FFF;
    aspect-ratio: 1 / 1;
}

.lp-gallery-large {
    grid-column: span 2;
    aspect-ratio: 16 / 10;
}

.lp-gallery-tall {
    grid-row: span 2;
    aspect-ratio: 0.82 / 1;
}

.lp-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lp-gallery-toggle {
    border: 1px solid #D5BDAF;
    background: #FFF7F0;
    color: #4A2E22;
    border-radius: 999px;
    padding: 0.72rem 1rem;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
    margin-top: 1.5rem;
    display: block;
}

.lp-gallery-toggle:hover {
    transform: translateY(-1px);
    background: #F6E8DE;
    border-color: #CFAE9A;
}

.lp-gallery-more[hidden] {
    display: none;
}

.lp-cream {
    background: #F8F4F1;
}

.lp-warm {
    background: linear-gradient(180deg, #F4ECE6 0%, #EEE1D6 100%);
}

.lp-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.lp-two-col h2 {
    margin-bottom: 0.9rem;
    color: #2A1E18;
    font-size: 2rem;
}

.lp-two-col p,
.lp-two-col li {
    color: #4B3A30;
    font-size: 1.12rem;
    line-height: 1.65;
}

.lp-two-col ul {
    padding-left: 1.25rem;
}

.lp-cake-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.lp-cake-item {
    border-radius: 16px;
    border: 1px solid #E3D6CB;
    background: #FFF;
    padding: 1.1rem;
}

.lp-cake-item h3 {
    color: #38261D;
    font-size: 1.15rem;
    margin-bottom: 0.45rem;
}

.lp-cake-item p {
    color: #5F4A3D;
    font-size: 0.98rem;
    line-height: 1.55;
}

.lp-cta {
    background: #E9799A;
    width: auto;
    display: inline-block;
    margin-top: 1rem;
}

.lp-cta:hover {
    background: #D96388;
}

.lp-order-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lp-order-form h2 {
    color: #2A1E18;
    font-size: 1.65rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.lp-order-form .input-group {
    margin-bottom: 0.75rem;
}

.lp-order-form label {
    font-weight: 500;
    margin-bottom: 0.35rem;
    color: #4B3A30;
    font-size: 0.9rem;
    display: block;
}

.lp-order-form input,
.lp-order-form select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #E3D6CB;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: #4B3A30;
    background-color: #FFF;
    transition: border-color 0.2s ease;
    outline: none;
}

.lp-order-form input:focus,
.lp-order-form select:focus {
    border-color: #C9804F;
    box-shadow: 0 0 0 2px rgba(201, 128, 79, 0.12);
}

.lp-order-form input::placeholder {
    color: #BBA99A;
}

.lp-order-form .row {
    display: flex;
    gap: 1rem;
}

.lp-order-form .half {
    flex: 1;
}

.lp-order-form .input-group.half {
    margin-bottom: 0;
}

.lp-order-form .btn {
    margin-top: 0.5rem;
}

.image-thumbnail {
    display: inline-block;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.image-thumbnail:hover {
    transform: scale(1.05);
}

.image-thumbnail img {
    display: block;
}

.lp-map-section {
    background: linear-gradient(180deg, #F4ECE6 0%, #EFE7E2 100%);
}

.lp-map-frame {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(45, 29, 20, 0.12);
    border: 1px solid #E1D4CB;
    background: #FFF;
}

.lp-map-frame iframe {
    display: block;
    width: 100%;
    min-height: 420px;
}

.lp-two-col a {
    color: #3D251A;
    font-weight: 700;
    text-decoration: none;
}

.lp-two-col a:hover {
    text-decoration: underline;
}

.lp-footer {
    border-top: 1px solid rgba(90, 58, 42, 0.14);
    background: rgba(255, 255, 255, 0.55);
}

.lp-footer-inner {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: #665346;
    font-size: 0.95rem;
}

.landing-shell {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.landing-nav-wrap {
    border-bottom: 1px solid rgba(90, 58, 42, 0.1);
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(2px);
}

.landing-nav {
    min-height: 86px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-logo strong {
    color: #2A1E18;
    font-size: 2rem;
}

.landing-brand-kicker {
    color: #8A5A3C;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.landing-nav-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #6D5A4E;
    font-size: 0.95rem;
}

.landing-nav-contact a {
    text-decoration: none;
    color: #4B2E20;
    font-weight: 700;
    background: #F6F0EB;
    border: 1px solid #D8C0B0;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
}

.landing-main {
    padding: 2rem 0 2.5rem;
}

.landing-hero-section {
    margin-bottom: 1.2rem;
}

.landing-hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 1.1rem;
}

.landing-hero-content {
    border-radius: 26px;
    background: radial-gradient(circle at 80% 20%, rgba(201, 132, 82, 0.38) 0%, transparent 40%),
        linear-gradient(135deg, #201614 0%, #33211A 45%, #5D3A2B 100%);
    color: #FFF;
    padding: 2rem;
    min-height: 430px;
    box-shadow: 0 20px 38px rgba(36, 22, 17, 0.22);
}

.landing-hero-visual {
    border-radius: 26px;
    background: linear-gradient(160deg, #F8F6F4 0%, #ECE8E5 100%);
    border: 1px solid #E1D4CB;
    padding: 2rem;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    color: #4E3B31;
    justify-content: center;
}

.landing-visual-badge {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #6E4633, #B17856);
    color: #FFF;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.landing-hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.17em;
    font-size: 0.72rem;
    color: #F3D2BD;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.landing-text {
    margin: 1rem 0 1.2rem;
    color: #F7ECE4;
    font-size: 1.03rem;
    line-height: 1.65;
    max-width: 90%;
}

.landing-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.landing-tags span {
    font-size: 0.85rem;
    background: rgba(255, 242, 231, 0.14);
    color: #FFE9D8;
    border: 1px solid rgba(255, 226, 199, 0.42);
    padding: 0.38rem 0.65rem;
    border-radius: 999px;
}

.landing-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.landing-actions .btn {
    width: auto;
    margin-top: 0;
}

.landing-contact-btn {
    width: 100%;
    margin-top: 1.2rem;
}

.landing-cards-section {
    margin-top: 1rem;
}

.landing-cards-grid {
    display: grid;
    gap: 1.1rem;
    grid-template-columns: 1.3fr 0.7fr;
}

.landing-menu-card,
.landing-info-card,
.landing-note-card,
.landing-story-card {
    background: rgba(255, 255, 255, 0.94);
    border-radius: 26px;
    box-shadow: var(--shadow);
    padding: 1.85rem;
    border: 1px solid #E6DCD4;
}

.landing-story-card {
    background: linear-gradient(135deg, #FFFDFC 0%, #F4ECE5 100%);
}

.landing-info-card,
.landing-menu-card {
    min-height: 195px;
}

.landing-info-card h2,
.landing-menu-card h2 {
    font-size: 1.25rem;
    margin-bottom: 0.65rem;
}

.landing-menu-card ul {
    padding-left: 1.1rem;
    margin-top: 0.4rem;
    color: var(--text-main);
}

.landing-menu-card li {
    margin: 0.45rem 0;
}

.landing-note-card {
    display: flex;
    align-items: center;
    min-height: 120px;
    background: linear-gradient(135deg, #FFFDFB 0%, #F8EFE7 100%);
    border: 1px solid #EAD8CB;
}

.landing-note-card p {
    color: #5C4639;
    line-height: 1.5;
    font-size: 0.98rem;
}

.landing-footer {
    border-top: 1px solid rgba(90, 58, 42, 0.1);
    background: rgba(255, 255, 255, 0.6);
}

.landing-footer-inner {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: #6F5D51;
    font-size: 0.92rem;
}

.auth-shell {
    width: 100%;
    max-width: 460px;
}

.auth-card {
    background: rgba(255, 255, 255, 0.99);
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
    border: 1.5px solid rgba(201, 128, 79, 0.4);
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #C9804F 0%, #D9966F 100%);
}

.auth-header {
    margin-bottom: 2rem;
    text-align: center;
}

.auth-kicker {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #F5E9DF;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.auth-card h1 {
    font-size: 2.8rem;
    color: #FFF;
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.1;
}

.auth-subtitle {
    color: #F0E6DD;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.auth-form .input-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 0;
}

.auth-form label {
    font-weight: 600;
    color: #FFF;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.auth-form input {
    padding: 1.1rem 1rem;
    border: 2px solid #E1D4CB;
    border-radius: 14px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: #2A1E18;
    background: linear-gradient(135deg, #FFFDF9 0%, #FFF 100%);
    transition: all 0.3s ease;
    outline: none;
}

.auth-form input:focus {
    border-color: #C9804F;
    box-shadow: 0 0 0 4px rgba(201, 128, 79, 0.25), inset 0 1px 3px rgba(0, 0, 0, 0.05);
    background: #FFF;
}

.auth-form input::placeholder {
    color: #CCC;
}

.auth-btn {
    background: linear-gradient(135deg, #D4956A 0%, #A0602B 100%);
    color: #FFF;
    padding: 1.35rem 2rem;
    border: none;
    border-radius: 14px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.25rem;
    box-shadow: 0 12px 30px rgba(201, 128, 79, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 -2px 8px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.04em;
    position: relative;
    overflow: hidden;
}

.auth-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.auth-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(201, 128, 79, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 -2px 12px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #E0A87A 0%, #B07038 100%);
}

.auth-btn:hover::before {
    left: 100%;
}

.auth-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 128, 79, 0.35), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}

.auth-error {
    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    background: rgba(220, 38, 38, 0.08);
    color: #991B1B;
    font-weight: 500;
    border-left: 4px solid #DC2626;
}

.auth-hint {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: none;
}

.form-container,
.success-container {
    width: 100%;
    max-width: 550px;
}

.form-card,
.success-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

h1 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.subtitle {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1rem;
    font-weight: 400;
}

.input-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-size: 0.95rem;
    transition: var(--transition);
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid #E2E8F0;
    border-radius: var(--input-radius);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--text-main);
    background-color: #F8FAFC;
    transition: var(--transition);
    outline: none;
}

.input-group input:focus,
.input-group select:focus {
    border-color: var(--primary);
    background-color: #FFF;
    box-shadow: 0 0 0 3px rgba(255, 123, 156, 0.15);
}

.input-group input::placeholder {
    color: #CBD5E1;
}

.row {
    display: flex;
    gap: 1.5rem;
}

.half {
    flex: 1;
}

.btn {
    display: inline-block;
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: var(--input-radius);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    margin-top: 1rem;
}

.btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(255, 123, 156, 0.3);
}

.success-card {
    text-align: center;
}

.success-card p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-card,
.success-card {
    animation: fadeIn 0.6s ease-out forwards;
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.brand-kicker {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-hover);
    margin-bottom: 0.35rem;
}

.login-link {
    width: auto;
    margin-top: 0.15rem;
    white-space: nowrap;
}

.contact-line {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.contact-line a {
    color: var(--dark);
    font-weight: 600;
    text-decoration: none;
}

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

.logout-form {
    margin-left: auto;
}

.logout-form .btn {
    width: auto;
    margin-top: 0;
    padding: 0.8rem 1.2rem;
}

@media (max-width: 600px) {
    .row {
        flex-direction: column;
        gap: 0;
    }

    .form-header {
        flex-direction: column;
        align-items: stretch;
    }

    .login-link {
        width: 100%;
        text-align: center;
    }

    .form-card {
        padding: 2rem;
    }

    .landing-actions {
        flex-direction: column;
    }

    .landing-actions .btn {
        width: 100%;
        text-align: center;
    }

    .landing-text {
        max-width: 100%;
    }

    .landing-main {
        padding-top: 1.2rem;
    }

    .landing-hero-content,
    .landing-hero-visual,
    .landing-menu-card,
    .landing-info-card,
    .landing-note-card,
    .landing-story-card {
        border-radius: 18px;
        padding: 1.25rem;
    }

    .landing-footer-inner {
        min-height: unset;
        padding: 0.9rem 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .lp-gallery-grid {
        grid-template-columns: 1fr;
    }

    .lp-gallery-large,
    .lp-gallery-tall {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 1 / 1;
    }

    .lp-map-frame iframe {
        min-height: 300px;
    }

    .lp-header-inner {
        min-height: unset;
        padding: 0.9rem 0;
        flex-wrap: wrap;
        justify-content: center;
    }

    .lp-header-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .lp-gallery-toggle {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .landing-nav {
        min-height: unset;
        padding: 0.9rem 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }

    .landing-nav-contact {
        width: 100%;
        justify-content: space-between;
    }

    .landing-hero-grid,
    .landing-cards-grid {
        grid-template-columns: 1fr;
    }

    .lp-cake-grid,
    .lp-two-col {
        grid-template-columns: 1fr;
    }

    .landing-hero-content,
    .landing-hero-visual,
    .landing-info-card,
    .landing-menu-card,
    .landing-note-card,
    .landing-story-card {
        min-height: unset;
        padding: 1.5rem;
    }

    .lp-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .lp-gallery-large {
        grid-column: span 2;
    }

    .lp-gallery-tall {
        grid-row: span 1;
    }

    .admin-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .logout-form {
        margin-left: 0;
    }
}

/* Final login page overrides to guarantee readability on /login */
body.auth-body {
    background: linear-gradient(135deg, #1a1410 0%, #2d1f17 50%, #8b5a2b 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

body.auth-body .auth-shell {
    width: 100%;
    max-width: 520px;
}

body.auth-body .auth-card {
    background: rgba(34, 24, 18, 0.72);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 223, 198, 0.22);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.38);
}

body.auth-body .auth-card::before {
    content: "";
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #e1a06c, #f6c8a2);
    margin-bottom: 1.2rem;
}

body.auth-body .auth-kicker,
body.auth-body .auth-card h1,
body.auth-body .auth-subtitle,
body.auth-body .auth-form label {
    color: #fff;
}

body.auth-body .auth-card h1 {
    font-size: 2.5rem;
    margin-bottom: 0.4rem;
}

body.auth-body .auth-subtitle {
    opacity: 0.9;
    margin-bottom: 1.4rem;
}

body.auth-body .auth-form input {
    background: #fff;
    color: #2a1e18;
    border: 1.5px solid rgba(212, 170, 143, 0.7);
    border-radius: 12px;
    padding: 0.95rem 1rem;
}

body.auth-body .auth-form input:focus {
    border-color: #e3a46f;
    box-shadow: 0 0 0 4px rgba(227, 164, 111, 0.25);
}

body.auth-body .auth-btn {
    width: 100%;
    border: 0;
    border-radius: 14px;
    padding: 1rem 1.2rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #d69363 0%, #a66231 100%);
    box-shadow: 0 10px 22px rgba(166, 98, 49, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

body.auth-body .auth-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
    box-shadow: 0 14px 26px rgba(166, 98, 49, 0.45);
}