/* ── Shared Header ── */
.header-solid {
    background: rgba(0,0,0,0.92) !important;
    backdrop-filter: blur(12px);
}

/* ── Body Backgrounds ── */
.cafe-body,
.cowork-body {
    background: #080808;
    color: #fff;
}

/* ── Hero ── */
.hero {
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 70px;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.hero-cafe {
    background-image: url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?w=1200&q=75&auto=format');
}

.hero-cowork {
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1200&q=75&auto=format');
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    animation: fadeInUp 0.8s ease-out both;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.3px;
    animation: fadeInUp 0.8s ease-out 0.15s both;
}

/* ── Sections ── */
.section {
    padding: 90px 40px;
}

.section-light {
    background: #0d0d0d;
}

.section-cafe-themed {
    background: #0a0805;
}

.section-cowork-themed {
    background: #060810;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0.6rem;
    letter-spacing: -0.3px;
}

.section-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.2px;
}

/* ── Glass Card ── */
.glass-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 14px;
    padding: 2rem;
    transition: var(--transition-medium);
}

@media (hover: hover) {
    .glass-card:hover {
        background: rgba(255,255,255,0.06);
        transform: translateY(-4px);
    }
}

/* ── Menu ── */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.menu-category {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 14px;
    padding: 2rem;
    transition: var(--transition-medium);
}

@media (hover: hover) {
    .menu-category:hover {
        background: rgba(255,255,255,0.06);
        transform: translateY(-4px);
    }
}

.menu-icon {
    margin: 0 auto 1.2rem;
    text-align: center;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
}

.cafe-body .menu-icon {
    background: rgba(200, 129, 58, 0.1);
    border-color: rgba(200, 129, 58, 0.2);
}

.menu-icon svg {
    color: rgba(255,255,255,0.8);
    width: 22px;
    height: 22px;
}

.cafe-body .menu-icon svg {
    color: var(--color-cafe-accent);
}

.menu-category h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1.4rem;
    text-align: center;
    font-weight: 400;
}

.menu-items {
    list-style: none;
}

.menu-items li {
    display: flex;
    justify-content: space-between;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.78);
    font-size: 0.9rem;
}

.menu-items li span:last-child {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.menu-items li:last-child { border-bottom: none; }

.menu-addon {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    font-style: italic;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 0.75rem;
}

/* ── Chef's Specials ── */
.specials-section {
    margin-top: 3rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 16px;
    padding: 2.5rem;
}

.specials-header {
    text-align: center;
    margin-bottom: 2rem;
}

.specials-label {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--color-cafe-accent);
}

.specials-header p {
    margin-top: 0.4rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    overflow: hidden;
}

.special-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 1.4rem;
    background: #0d0d0d;
    transition: background 0.2s;
}

.special-item:hover { background: rgba(255,255,255,0.04); }

.special-info h4 {
    font-size: 0.92rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.2rem;
}

.special-info p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.4;
}

.special-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-cafe-accent);
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── Amenities ── */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.amenity-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 14px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-medium);
}

@media (hover: hover) {
    .amenity-card:hover {
        background: rgba(255,255,255,0.07);
        transform: translateY(-5px);
    }
}

.amenity-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
}

.cafe-body .amenity-icon {
    background: rgba(200, 129, 58, 0.12);
    border-color: rgba(200, 129, 58, 0.25);
}

.cowork-body .amenity-icon {
    background: rgba(78, 142, 247, 0.12);
    border-color: rgba(78, 142, 247, 0.25);
}

.amenity-icon svg {
    width: 26px;
    height: 26px;
    color: rgba(255,255,255,0.85);
}

.cafe-body .amenity-icon svg { color: var(--color-cafe-accent); }
.cowork-body .amenity-icon svg { color: var(--color-cowork-accent); }

.amenity-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.amenity-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

/* ── Co-Working About (Image + Text) ── */
.cw-about-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.cw-about-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
    align-items: center;
}

.cw-about-image {
    border-radius: 12px;
    overflow: hidden;
    line-height: 0;
    flex-shrink: 0;
}

.cw-space-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    transition: transform 0.5s ease;
}

.cw-space-img:hover {
    transform: scale(1.03);
}

.cw-about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.cw-about-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-cowork-accent);
    margin-bottom: 0.25rem;
}

.cw-about-desc {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.85;
    color: rgba(255,255,255,0.82);
    letter-spacing: -0.1px;
}

/* ── Membership Plans Header ── */
.cw-plans-header {
    margin-bottom: 4.5rem;
    max-width: 740px;
}

.cw-plans-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-cowork-accent);
    margin-bottom: 0.85rem;
}

.cw-plans-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.cw-plans-divider {
    width: 48px;
    height: 2px;
    background: var(--color-cowork-accent);
    margin: 1.4rem 0;
    border-radius: 2px;
    opacity: 0.7;
}

.cw-plans-sub {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.52);
    max-width: 600px;
}

.cw-plan-divider {
    height: 1px;
    background: rgba(255,255,255,0.07);
    margin: 4rem 0;
}

/* ── 5-column amenity grid ── */
.amenities-grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

/* ── Standard Amenities + Booking ── */
.cw-amenities-booking {
    background: #0a0a10 !important;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cw-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.cw-block-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0.6rem;
    letter-spacing: -0.2px;
}

.cw-block-sub {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 1.6rem;
    line-height: 1.7;
}

.cw-amenities-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.cw-amenities-list li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.93rem;
    color: rgba(255,255,255,0.8);
}

.cw-amenities-list li svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    color: var(--color-cowork-accent);
}

.cw-contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.cw-contact-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.cw-contact-item svg { color: var(--color-cowork-accent); flex-shrink: 0; }

.cw-contact-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.cw-contact-item a:hover { color: #fff; }

/* ── Plan Blocks ── */
.cw-plan-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.cw-plan-label {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.cw-plan-desc {
    font-size: 0.97rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.55);
    margin-bottom: 2rem;
}

.cw-plan-rates {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.cw-rate-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 1.3rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 10px;
    transition: background 0.2s;
}

.cw-rate-item:hover { background: rgba(255,255,255,0.07); }

.cw-plan-private .cw-rate-item {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.12);
}

.cw-rate-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
}

.cw-rate-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.cw-rate-period {
    font-size: 0.78rem;
    font-weight: 400;
    color: rgba(255,255,255,0.4);
    margin-left: 2px;
}

.cw-plan-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    padding: 3.5rem 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.09);
}

.cw-visual-desk {
    background: rgba(78, 142, 247, 0.05);
}

.cw-visual-office {
    background: rgba(255,255,255,0.03);
}

.cw-visual-icon svg {
    color: var(--color-cowork-accent);
    opacity: 0.8;
}

.cw-visual-desk p,
.cw-visual-office p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    padding: 0.85rem 2rem;
    border: 1.5px solid rgba(255,255,255,0.3);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    min-height: 48px;
}

@media (hover: hover) {
    .btn-outline-light:hover {
        background: rgba(255,255,255,0.08);
        border-color: rgba(255,255,255,0.6);
    }
}

/* ── Contact Section ── */
.contact-section {
    background: #060606;
    padding: 100px 40px;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-map {
    margin-top: 60px;
    border-radius: 14px;
    overflow: hidden;
    border: 1.5px solid rgba(255,255,255,0.28);
    line-height: 0;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 8px 32px rgba(0,0,0,0.5);
    outline: none;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 360px;
    filter: grayscale(30%) brightness(0.88);
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 360px;
    background: rgba(255,255,255,0.03);
    cursor: pointer;
    gap: 12px;
    transition: background 0.25s;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

@media (hover: hover) {
    .map-placeholder:hover {
        background: rgba(255,255,255,0.06);
    }
}

.map-placeholder svg {
    color: rgba(255,255,255,0.4);
}

.map-placeholder span {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.3px;
    font-family: var(--font-body);
}

.contact-title {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #fff;
}

.contact-subtitle {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg { color: rgba(255,255,255,0.7); }

.contact-text h4 {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contact-text p {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
}

.contact-text a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-text a:hover { color: #fff; }

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.3s;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
    .social-link:hover {
        background: rgba(255,255,255,0.09);
        border-color: rgba(255,255,255,0.2);
        color: #fff;
        transform: translateY(-2px);
    }
}

.social-link svg { width: 18px; height: 18px; }

/* ── Contact Form ── */
.contact-form-wrapper {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 2.8rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-family: var(--font-body);
    transition: all 0.3s;
    -webkit-appearance: none;
    appearance: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.07);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.25);
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.45)' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
}

.form-group select option {
    background: #1a1a1a;
    color: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 28px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 6px;
    font-family: var(--font-body);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    min-height: 48px;
}

@media (hover: hover) {
    .submit-btn:hover {
        background: rgba(255,255,255,0.9);
        transform: translateY(-2px);
    }
}

/* ── Responsive ── */
@media (max-width: 1200px) {
    .amenities-grid-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
    .menu-grid,
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }

    .cw-about-grid,
    .cw-info-grid,
    .cw-plan-block { grid-template-columns: 1fr; gap: 2.5rem; }

    .cw-space-img { height: 260px; }

    .cw-plan-private .cw-plan-visual { order: -1; }

    .cw-plans-title { font-size: 2.4rem; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .section { padding: 60px 24px; }
    .section-title { font-size: 2rem; }

    .menu-grid,
    .amenities-grid { grid-template-columns: 1fr; }

    .amenities-grid-5 { grid-template-columns: repeat(2, 1fr); }

    .cw-about-grid { gap: 2rem; }
    .cw-space-img { height: 220px; }
    .cw-about-desc { font-size: 1.1rem; }

    .cw-plans-title { font-size: 2rem; }
    .cw-plan-divider { margin: 2.5rem 0; }

    .contact-content { grid-template-columns: 1fr; gap: 50px; }
    .contact-section { padding: 70px 24px; }
    .specials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 1.75rem; }
    .cw-plans-title { font-size: 1.7rem; }
    .cw-space-img { height: 190px; }
    .amenities-grid-5 { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 1.8rem; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Cafe Carousel ── */
.cafe-carousel-section {
    background: #080808;
    line-height: 0;
}

.cafe-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 82vh;
    overflow: hidden;
    background: #111;
    user-select: none;
}

.carousel-track {
    display: flex;
    height: 100%;
    will-change: transform;
    transform: translateX(0%);
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    pointer-events: none;
}

.carousel-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 45%,
        rgba(0,0,0,0.18) 65%,
        rgba(0,0,0,0.62) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.22s ease, transform 0.22s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    outline: none;
}

.carousel-btn:hover {
    background: rgba(255,255,255,0.28);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev { left: 28px; }
.carousel-btn-next { right: 28px; }

.carousel-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 28px 24px;
    gap: 0;
}

.carousel-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.carousel-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, width 0.35s cubic-bezier(0.4,0,0.2,1), border-radius 0.35s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    outline: none;
    min-width: 20px;
    min-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-dot.active {
    background: #fff;
    width: 24px;
    border-radius: 4px;
}

.carousel-counter {
    position: absolute;
    right: 28px;
    bottom: 26px;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1.5px;
    font-family: var(--font-body);
    line-height: 1;
}

.carousel-sep { margin: 0 1px; }

@media (max-width: 1024px) {
    .cafe-carousel { aspect-ratio: 3 / 2; }
}

@media (max-width: 768px) {
    .cafe-carousel {
        aspect-ratio: 1 / 1;
        max-height: none;
    }

    .carousel-btn {
        width: 38px;
        height: 38px;
    }

    .carousel-btn-prev { left: 14px; }
    .carousel-btn-next { right: 14px; }

    .carousel-counter { display: none; }
}

@media (max-width: 480px) {
    .cafe-carousel { aspect-ratio: 4 / 5; }
    .carousel-btn { display: none; }
    .carousel-footer { padding-bottom: 18px; }
}

/* ── Footer Policy Link ── */
.footer-policy-link {
    color: inherit;
    opacity: 0.65;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-policy-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* ── Privacy Policy Page ── */
.policy-hero {
    background: #0f0f0f;
    padding: 100px 24px 60px;
    text-align: center;
}

.policy-hero-inner h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.policy-hero-inner p {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
    margin: 0;
    letter-spacing: 0.5px;
}

.policy-body {
    background: #fafaf8;
    padding: 72px 24px 96px;
}

.policy-container {
    max-width: 760px;
    margin: 0 auto;
}

.policy-intro {
    font-family: var(--font-body);
    font-size: 1.08rem;
    line-height: 1.8;
    color: #444;
    background: #fff;
    border-left: 3px solid #1a1a1a;
    padding: 20px 24px;
    margin-bottom: 52px;
    border-radius: 0 6px 6px 0;
}

.policy-intro strong { color: #1a1a1a; }

.policy-section {
    margin-bottom: 44px;
    padding-bottom: 44px;
    border-bottom: 1px solid #e8e8e4;
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-section h2 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
}

.policy-section p {
    font-family: var(--font-body);
    font-size: 0.96rem;
    line-height: 1.8;
    color: #555;
    margin: 0 0 14px;
}

.policy-section p:last-child { margin-bottom: 0; }

.policy-section ul {
    font-family: var(--font-body);
    font-size: 0.96rem;
    line-height: 1.8;
    color: #555;
    margin: 8px 0 14px 20px;
    padding: 0;
}

.policy-section ul li { margin-bottom: 6px; }

.policy-section a {
    color: #1a1a1a;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s;
}

.policy-section a:hover { opacity: 0.6; }

.policy-section strong { color: #333; font-weight: 600; }

.policy-contact-info {
    background: #fff;
    border: 1px solid #e8e8e4;
    border-radius: 8px;
    padding: 24px 28px;
    margin-top: 20px;
}

.policy-contact-info p {
    margin: 0 0 6px;
    font-size: 0.94rem;
    color: #444;
}

.policy-contact-info p:last-child { margin-bottom: 0; }

.policy-contact-info a {
    color: #1a1a1a;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 640px) {
    .policy-hero { padding: 80px 20px 48px; }
    .policy-body { padding: 48px 20px 72px; }
    .policy-intro { padding: 16px 18px; font-size: 1rem; }
    .policy-section h2 { font-size: 1.1rem; }
    .policy-contact-info { padding: 18px 20px; }
}
