/* ============================================
   NAILART STUDIO — Stylesheet
   Palette: cream, blush, rose, gold, charcoal
   ============================================ */

:root {
    --cream: #FDF8F4;
    --cream-dark: #F5EDE8;
    --blush: #E8C4B8;
    --blush-light: #F2DDD6;
    --rose: #D4A59A;
    --gold: #C9A87C;
    --gold-light: #DFC7A8;
    --charcoal: #2D2624;
    --charcoal-light: #4A3F3C;
    --warm-gray: #8A7E7A;
    --white: #FFFFFF;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Raleway', 'Segoe UI', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 248, 244, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 124, 0.15);
    transition: box-shadow 0.3s;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(45, 38, 36, 0.06);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--charcoal);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.nav-brand span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--charcoal-light);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-cta {
    padding: 12px 28px;
    background: var(--charcoal);
    color: var(--cream);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--white);
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.3s;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--cream) 0%, var(--blush-light) 40%, var(--cream-dark) 70%, var(--cream) 100%);
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,168,124,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212,165,154,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 30px;
}

.hero-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    position: relative;
}

.hero-tag::before,
.hero-tag::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    vertical-align: middle;
    margin: 0 16px;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    font-weight: 500;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero h1 em {
    font-style: italic;
    color: var(--rose);
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--warm-gray);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 42px;
    background: var(--charcoal);
    color: var(--cream);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.4s;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-cta:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201,168,124,0.3);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--warm-gray);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-scroll .line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ========== SECTION COMMON ========== */
.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: var(--warm-gray);
    max-width: 550px;
    line-height: 1.7;
}

.separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    margin: 0;
}

/* ========== SERVICES ========== */
.services {
    padding: 120px 0;
    background: var(--white);
}

.services-header {
    text-align: center;
    margin-bottom: 72px;
}

.services-header .section-subtitle {
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    border: 1px solid rgba(201,168,124,0.12);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--rose));
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(45,38,36,0.08);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.service-name {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.service-note {
    font-size: 0.82rem;
    color: var(--warm-gray);
    font-style: italic;
    margin-bottom: 12px;
    min-height: 20px;
}

.service-price {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.03em;
}

.service-price .amount {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--charcoal);
}

/* ========== GALLERY ========== */
.gallery {
    padding: 120px 0;
    background: var(--cream);
}

.gallery-header {
    margin-bottom: 64px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 280px 280px;
    gap: 16px;
}

.bento-item {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.bento-item.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-item.bento-wide {
    grid-column: span 2;
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.bento-item:hover img {
    transform: scale(1.05);
}

.bento-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255,255,255,0.8);
    text-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.bento-placeholder small {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-style: normal;
    opacity: 0.7;
}

.bento-item:nth-child(1) .bento-placeholder {
    background: linear-gradient(135deg, #E8C4B8 0%, #D4A59A 50%, #C9A87C 100%);
}

.bento-item:nth-child(2) .bento-placeholder {
    background: linear-gradient(135deg, #F2DDD6 0%, #E8C4B8 100%);
}

.bento-item:nth-child(3) .bento-placeholder {
    background: linear-gradient(135deg, #DFC7A8 0%, #C9A87C 100%);
}

.bento-item:nth-child(4) .bento-placeholder {
    background: linear-gradient(135deg, #F5EDE8 0%, #E8C4B8 50%, #D4A59A 100%);
}

/* ========== BOOKING ========== */
.booking {
    padding: 120px 0;
    background: var(--white);
}

.booking-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: start;
}

.booking-info {
    position: sticky;
    top: 100px;
}

.booking-info .section-title {
    font-size: 2.6rem;
}

.booking-info p {
    font-size: 0.95rem;
    color: var(--warm-gray);
    line-height: 1.8;
    margin-top: 16px;
}

.booking-notice {
    margin-top: 28px;
    padding: 20px 24px;
    background: var(--cream);
    border-radius: 12px;
    border-left: 3px solid var(--gold);
    font-size: 0.82rem;
    color: var(--charcoal-light);
    line-height: 1.7;
}

.booking-notice strong {
    color: var(--charcoal);
}

.booking-panel {
    background: var(--cream);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(201,168,124,0.15);
}

.booking-step {
    margin-bottom: 32px;
}

.step-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.step-num {
    width: 28px;
    height: 28px;
    background: var(--charcoal);
    color: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0;
    flex-shrink: 0;
}

/* Calendar */
.calendar {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(201,168,124,0.12);
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--charcoal);
    color: var(--cream);
}

.calendar-month {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
}

.calendar-nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: var(--cream);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.calendar-nav-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.4);
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    padding: 12px 12px 4px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--warm-gray);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 4px 12px 12px;
    gap: 4px;
}

.cal-date {
    padding: 10px 0;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--charcoal);
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    border: none;
    background: none;
    font-family: var(--font-sans);
}

.cal-date.empty {
    visibility: hidden;
    pointer-events: none;
}

.cal-date.past {
    color: var(--cream-dark);
    cursor: not-allowed;
    pointer-events: none;
}

.cal-date.today {
    background: var(--blush-light);
    font-weight: 700;
}

.cal-date.selected {
    background: var(--charcoal);
    color: var(--cream);
    font-weight: 700;
}

.cal-date:not(.empty):not(.selected):not(.past):hover {
    background: var(--cream-dark);
}

/* Time slots */
.time-slots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.time-slot {
    padding: 12px 8px;
    background: var(--white);
    border: 1px solid rgba(201,168,124,0.15);
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 500;
    font-family: var(--font-sans);
    color: var(--charcoal);
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.time-slot.selected {
    background: var(--charcoal);
    color: var(--cream);
    border-color: var(--charcoal);
}

.time-slot:not(.selected):hover {
    border-color: var(--gold);
    background: rgba(201,168,124,0.08);
}

.time-slot-placeholder {
    grid-column: span 4;
    text-align: center;
    padding: 20px;
    color: var(--warm-gray);
    font-size: 0.85rem;
    font-style: italic;
}

/* Service selector */
.service-select {
    width: 100%;
    padding: 14px 40px 14px 20px;
    background: var(--white);
    border: 1px solid rgba(201,168,124,0.2);
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    color: var(--charcoal);
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C9A87C' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    transition: border-color 0.3s;
}

.service-select:focus {
    outline: none;
    border-color: var(--gold);
}

/* Form fields */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--charcoal-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-field input {
    padding: 13px 18px;
    background: var(--white);
    border: 1px solid rgba(201,168,124,0.2);
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    color: var(--charcoal);
    transition: border-color 0.3s;
}

.form-field input:focus {
    outline: none;
    border-color: var(--gold);
}

.form-field input::placeholder {
    color: var(--warm-gray);
    font-weight: 300;
}

/* Book button */
.btn-book {
    width: 100%;
    padding: 16px 32px;
    background: var(--charcoal);
    color: var(--cream);
    border: none;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s;
    margin-top: 8px;
}

.btn-book:hover:not(:disabled) {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201,168,124,0.3);
}

.btn-book:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.form-disclaimer {
    text-align: center;
    font-size: 0.72rem;
    color: var(--warm-gray);
    margin-top: 12px;
}

/* Booking confirmation */
.booking-confirmation {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.booking-confirmation.visible {
    display: block;
}

.confirmation-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold), var(--rose));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.booking-confirmation h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.booking-confirmation p {
    font-size: 0.92rem;
    color: var(--warm-gray);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--charcoal);
    color: rgba(253,248,244,0.7);
    padding: 80px 0 40px;
}

.footer .container {
    max-width: 1200px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand-name {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 16px;
}

.footer-brand-name span {
    color: var(--gold);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,124,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.footer-col h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    line-height: 1.5;
}

.footer-col li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--gold);
}

.footer-col a {
    color: rgba(253,248,244,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(201,168,124,0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ========== SCROLL ANIMATIONS ========== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== KEYFRAMES ========== */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .container { padding: 0 40px; }
    .nav-container { padding: 16px 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 220px 220px 220px;
    }
    .bento-item.bento-large { grid-column: span 2; grid-row: span 1; }
    .bento-item.bento-wide { grid-column: span 2; }
    .booking-layout { grid-template-columns: 1fr; }
    .booking-info { position: static; }
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .nav-container { padding: 14px 24px; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(253, 248, 244, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px 24px;
        gap: 0;
        border-bottom: 1px solid rgba(201,168,124,0.15);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        padding: 12px 0;
        border-bottom: 1px solid rgba(201,168,124,0.08);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero h1 { font-size: 2.8rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-cta { padding: 16px 32px; font-size: 0.8rem; }

    .services { padding: 80px 0; }
    .services-grid { grid-template-columns: 1fr; }

    .gallery { padding: 80px 0; }
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 200px);
    }
    .bento-item.bento-large,
    .bento-item.bento-wide { grid-column: span 1; grid-row: span 1; }

    .booking { padding: 80px 0; }
    .booking-panel { padding: 28px 20px; }
    .time-slots { grid-template-columns: repeat(3, 1fr); }
    .time-slot-placeholder { grid-column: span 3; }
    .form-row { grid-template-columns: 1fr; }

    .section-title { font-size: 2.2rem; }
    .booking-info .section-title { font-size: 2.2rem; }

    .footer { padding: 60px 0 32px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .hero-tag::before,
    .hero-tag::after { width: 20px; margin: 0 10px; }
    .section-title { font-size: 1.8rem; }
    .booking-info .section-title { font-size: 1.8rem; }
    .time-slots { grid-template-columns: repeat(2, 1fr); }
    .time-slot-placeholder { grid-column: span 2; }
}
