
.navbar {
    position: relative;
}

.nav-toggle {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: #333;
    display: block;
}

@media (max-width: 900px) {
    .navbar {
        justify-content: center;
        padding: 1rem 1.5rem;
    }

    .nav-right .icon-btn {
        display: none;
    }

    .nav-right .reservation-link {
        display: none;
    }

    .nav-right {
        flex: 0;
        gap: 0.5rem;
        margin-left: auto;
    }

    .mobile-reserve-btn {
        display: inline-block;
        padding: 0.5rem 1rem;
        background: #f7cdd4;
        color: #7a3f45;
        text-decoration: none;
        border-radius: 999px;
        font-weight: 600;
        font-size: 0.85rem;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(247, 205, 212, 0.3);
    }

    .mobile-reserve-btn:hover {
        background: #f4b8c1;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(247, 205, 212, 0.5);
    }

    .nav-center {
        flex: 0 0 auto;
        margin: 0 auto;
    }

    .mobile-reservation {
        display: inline-block;
        padding: 0.7rem 1.5rem;
        background: #f7cdd4;
        border-radius: 999px;
        font-weight: 600;
        margin: 0.5rem 1rem;
        text-align: center;
        color: #7a3f45;
        box-shadow: 0 4px 12px rgba(247, 205, 212, 0.4);
        transition: all 0.3s ease;
    }

    .mobile-reservation:hover {
        background: #f4b8c1;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(247, 205, 212, 0.6);
    }

    .menu-toggle {
        display: flex;
        margin-right: auto;
    }

    .nav-left {
        position: absolute;
        top: 100%;
        left: 1.5rem;
        right: 1.5rem;
        background: white;
        flex-direction: column;
        padding: 1rem 0;
        border-bottom: 1px solid #eee;
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s ease;
        border-radius: 0 0 12px 12px;
    }

    .nav-left .nav-link {
        padding: 0.75rem 1.5rem;
        border-bottom: 1px solid #f5f5f5;
    }

    .nav-left .nav-link:last-child {
        border-bottom: none;
    }

    .nav-toggle:checked + .menu-toggle + .nav-left {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    overflow-x: hidden;
}

header {
    background: white;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.nav-right {
    justify-content: flex-end;
    gap: 1.5rem;
}

.nav-center {
    flex: 0 0 auto;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #8b6f47;
}

.mobile-reservation {
    display: none;
}

.logo {
    text-decoration: none;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #333;
    letter-spacing: 1px;
}

.logo-of {
    font-style: italic;
    font-weight: 300;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #333;
    transition: color 0.3s ease;
}

.icon-btn:hover {
    color: #8b6f47;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    min-height: calc(100vh - 80px);
    position: relative;
}

.hero-left {
    background: #f5e6d3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-left-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.12);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}


.product-stack {
    position: relative;
    width: 280px;
    height: 400px;
}

.product-img {
    position: absolute;
    width: 240px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 1rem;
}

.product-1 {
    top: 0;
    left: 0;
    transform: rotate(-5deg);
    z-index: 3;
}

.product-2 {
    top: 80px;
    left: 20px;
    transform: rotate(2deg);
    z-index: 2;
}

.product-3 {
    top: 160px;
    left: 0;
    transform: rotate(-3deg);
    z-index: 1;
}

.hero-center {
    background: #e8d4b8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
}

.hero-badge {
    margin-bottom: 1.5rem;
}

.hero-badge img {
    width: 160px;
    height: auto;
}


.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #333;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.cta-btn {
    background: #8b5a3c;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
    background: #6d4530;
    transform: translateY(-2px);
}

.hero-right {
    background: #b8d4e8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.model-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.accessibility-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0066cc;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
    z-index: 1000;
}

.accessibility-btn:hover {
    background: #0052a3;
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .hero-left,
    .hero-center,
    .hero-right {
        min-height: 400px;
    }

    .navbar {
        padding: 1rem 1.5rem;
        flex-wrap: wrap;
    }

    .nav-left,
    .nav-right {
        gap: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-left,
    .nav-right {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .product-stack {
        width: 220px;
        height: 320px;
    }

    .product-img {
        width: 180px;
    }

    .accessibility-btn {
        bottom: 1rem;
        left: 1rem;
        width: 40px;
        height: 40px;
    }
}


.reservation-link {
    background: #f7cdd4;
    color: #7a3f45;
    padding: 0.55rem 1.8rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.6px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.reservation-link:hover {
    background: #f4b8c1;
    color: #4b2025;
    transform: translateY(-2px);
}

.mobile-reserve-btn {
    display: none;
}


.lineup {
    background: #fdf8f2;
    padding: 4rem 3rem 5rem;
}

.lineup-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
}

.lineup-kicker {
    letter-spacing: 0.3rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #a47c5e;
    margin-bottom: 0.3rem;
}

.lineup-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: #2f1c11;
}

.shop-all-link {
    text-decoration: none;
    letter-spacing: 0.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #7a3f45;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.product-info h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

@media (max-width: 768px) {
    .lineup {
        padding: 3rem 1.5rem;
    }

    .lineup-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}
.product-copy {
    font-size: 0.95rem;
    color: #6a5548;
    line-height: 1.4;
}



.spotlight {
    background: #fff;
    padding: 4rem 2rem 5rem;
}

.spotlight-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 1.5rem;
}

.spotlight-titles {
    text-align: center;
    flex: 1;
}

.spotlight-kicker {
    letter-spacing: 0.4rem;
    font-size: 0.85rem;
    color: #c19a84;
    margin-bottom: 0.3rem;
}

.spotlight-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    letter-spacing: 0.2rem;
    color: #1f1612;
}

.spotlight-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #d9cbc0;
    background: transparent;
    cursor: pointer;
    font-size: 1.5rem;
    color: #7a5b48;
}

.spotlight-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.spotlight-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

.spotlight-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.spotlight-caption {
    text-align: center;
    margin-top: 0.5rem;
    font-weight: 600;
    color: #4b3122;
}

@media (max-width: 768px) {
    .spotlight-header {
        flex-direction: column;
    }

    .spotlight-carousel {
        grid-auto-flow: column;
        grid-auto-columns: 60%;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .spotlight-card {
        scroll-snap-align: start;
    }
}


.our-house {
    background: #c98f86;
    color: #fffaf6;
    padding: 4.5rem 3rem 5.5rem;
}

.our-house-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.our-house-panel {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.our-house-panel--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our-house-panel--story {
    background: #f4e4da;
    color: #4b2f2d;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.our-house-kicker {
    font-size: 1rem;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    color: #b17063;
}

.our-house-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.75rem;
    line-height: 1.2;
}

.our-house-copy {
    line-height: 1.6;
    color: #5d4038;
}

.our-house-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    justify-content: center;
}

.product-box {
    background: #fff;
    border-radius: 18px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.product-box img {
    width: 100%;
    border-radius: 12px;
}

.our-house-panel--image.split::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.5);
    left: 50%;
}

@media (max-width: 768px) {
    .our-house {
        padding: 3rem 1.5rem;
    }

    .our-house-panel--story {
        padding: 1.8rem;
    }
}


.site-footer {
    background: #fbf7f4;
    color: #5a4b43;
    padding: 4rem 3rem 3rem;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.footer-brand h3 {
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.2rem;
    margin-bottom: 0.5rem;
}

.footer-brand span {
    font-style: italic;
}

.footer-brand p {
    color: #8b6f5c;
}

.footer-column h4,
.footer-newsletter h4 {
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-column a {
    text-decoration: none;
    color: #5a4b43;
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.7rem 1rem;
    border: 1px solid #d9cbc0;
    border-radius: 4px;
}

.newsletter-form button {
    background: #a86a58;
    color: white;
    border: none;
    padding: 0.7rem 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    cursor: pointer;
    border-radius: 999px;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.footer-social a {
    text-decoration: none;
    color: #8b6f5c;
    border: 1px solid #d9cbc0;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    font-size: 0.8rem;
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: #8b6f5c;
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 0.95rem;
    }

    .navbar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }

    .nav-left,
    .nav-right {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .hero-left,
    .hero-center,
    .hero-right {
        min-height: 280px;
    }

    .hero-center {
        padding: 2rem 1.5rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .cta-btn {
        width: 100%;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .spotlight {
        padding: 3rem 1rem 4rem;
    }

    .spotlight-carousel {
        grid-auto-columns: 80%;
    }

    .our-house {
        padding: 3rem 1rem 4rem;
    }

    .our-house-panel--story {
        gap: 1rem;
    }

    .site-footer {
        padding: 3rem 1.5rem;
    }

    .footer-top {
        gap: 1.5rem;
    }
}


.our-house-products.centered {
    justify-content: center;
}

.our-house-products.centered .product-box {
    max-width: 220px;
}


.contact-hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    padding: 4rem 3rem;
    background: #fdf8f2;
    align-items: center;
}

.contact-hero-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-hero-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-kicker {
    letter-spacing: 0.3rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #a47c5e;
}

.contact-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #2f1c11;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 1.05rem;
    color: #6a5548;
    line-height: 1.6;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.contact-info-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2f1c11;
}

.contact-info-card p {
    color: #6a5548;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-hours {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e5e5;
    font-size: 0.95rem;
}

.contact-hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.contact-form-section {
    background: white;
    padding: 5rem 3rem;
}

.contact-form-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form-description {
    font-size: 1.05rem;
    color: #6a5548;
    line-height: 1.6;
    margin-top: 1rem;
}

.contact-form {
    background: #fdf8f2;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: #2f1c11;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1.2rem;
    border: 1px solid #d9cbc0;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    background: white;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #a47c5e;
    box-shadow: 0 0 0 3px rgba(164, 124, 94, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    background: #8b5a3c;
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.2s ease;
    width: 100%;
    display: block;
    text-align: center;
    text-decoration: none;
}

.contact-submit-btn:hover {
    background: #6d4530;
    transform: translateY(-2px);
    color: white;
}

.contact-locations {
    background: #c98f86;
    padding: 5rem 3rem;
}

.contact-locations-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-locations-header .lineup-title {
    color: #fffaf6;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.location-card {
    background: #f4e4da;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.location-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.location-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #2f1c11;
}

.location-address {
    font-weight: 600;
    color: #4b2f2d;
    font-size: 0.95rem;
}

.location-description {
    color: #5d4038;
    line-height: 1.6;
    flex: 1;
}

.location-link {
    display: inline-block;
    text-decoration: none;
    color: #7a3f45;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.location-link:hover {
    color: #4b2025;
}

.contact-faq {
    background: #fdf8f2;
    padding: 5rem 3rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: #2f1c11;
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: #6a5548;
    line-height: 1.6;
}
.contact-policy {
    background: #fff;
    padding: 4.5rem 3rem;
}

.policy-card {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: 28px;
    background: linear-gradient(135deg, #fdf8f2, #fbf3ea);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.policy-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 1.4rem;
    border-radius: 999px;
    background: rgba(138, 90, 60, 0.12);
    color: #7a3f45;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.policy-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.policy-body h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2f1c11;
}

.policy-lede {
    font-size: 1.1rem;
    color: #4b2f2d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.policy-list li {
    padding-left: 1.5rem;
    position: relative;
    color: #5d4038;
    line-height: 1.6;
}

.policy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c98f86;
}

.policy-footnote {
    font-size: 0.95rem;
    color: #7a5b48;
}

.policy-highlight {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: inset 0 0 0 1px rgba(121, 63, 69, 0.08);
}

.policy-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: #7a3f45;
    margin-bottom: 0.3rem;
}

.policy-support {
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-size: 0.85rem;
    color: #7a3f45;
    margin-bottom: 1.5rem;
}

.policy-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 1.5rem 0;
}

.policy-methods {
    font-weight: 600;
    letter-spacing: 0.2rem;
    color: #4b2f2d;
    margin-bottom: 0.5rem;
}

.policy-reminder {
    font-size: 0.9rem;
    color: #6a5548;
    letter-spacing: 0.1rem;
}

.policy-momo-label {
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    font-size: 0.75rem;
    color: #8b5a3c;
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.policy-momo-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: #7a3f45;
    font-weight: 600;
    margin-bottom: 0.3rem;
    letter-spacing: 0.05rem;
}

.policy-momo-name {
    font-size: 0.9rem;
    color: #5d4038;
    font-weight: 500;
}

@media (max-width: 900px) {
    .policy-grid {
        grid-template-columns: 1fr;
    }

    .policy-highlight {
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 1024px) {
    .contact-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-hero-image img {
        min-height: 400px;
    }

    .contact-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .contact-hero,
    .contact-form-section,
    .contact-locations,
    .contact-faq,
    .contact-policy {
        padding: 3rem 1.5rem;
    }

    .contact-title {
        font-size: 2.2rem;
    }

    .contact-subtitle {
        font-size: 1rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
    }

    .locations-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .policy-card {
        padding: 2rem 1.5rem;
    }

    .policy-body h2 {
        font-size: 2rem;
    }

    .policy-lede {
        font-size: 1rem;
    }

    .policy-amount {
        font-size: 2.5rem;
    }

    .policy-highlight {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 600px) {
    .contact-hero,
    .contact-form-section,
    .contact-locations,
    .contact-faq,
    .contact-policy {
        padding: 2rem 1rem;
    }

    .contact-title {
        font-size: 1.8rem;
    }

    .contact-subtitle {
        font-size: 0.95rem;
    }

    .contact-hero-image img {
        min-height: 300px;
    }

    .contact-info-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem 1rem;
    }

    .contact-form-description {
        font-size: 0.95rem;
    }

    .lineup-title {
        font-size: 2rem;
    }

    .policy-card {
        padding: 1.5rem 1rem;
    }

    .policy-body h2 {
        font-size: 1.6rem;
    }

    .policy-lede {
        font-size: 0.95rem;
    }

    .policy-list li {
        font-size: 0.9rem;
    }

    .policy-amount {
        font-size: 2rem;
    }

    .policy-badge {
        font-size: 0.7rem;
        letter-spacing: 0.2rem;
        padding: 0.3rem 1rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .faq-item h3 {
        font-size: 1.2rem;
    }

    .location-card {
        margin-bottom: 1rem;
    }

    .location-info {
        padding: 1.5rem;
    }
}
