/* Shield Pest Control — design system */

:root {
    --color-ink: #0f1f1a;
    --color-forest: #1a4d3e;
    --color-mint: #3d9b7a;
    --color-mint-light: #e8f5f0;
    --color-sand: #f6f4ef;
    --color-card: #ffffff;
    --color-muted: #5c6b66;
    --color-border: #e2e8e5;
    --color-danger: #b91c1c;
    --color-success: #166534;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow-sm: 0 1px 3px rgba(15, 31, 26, 0.06);
    --shadow-md: 0 4px 20px rgba(15, 31, 26, 0.08);
    --shadow-lg: 0 12px 40px rgba(15, 31, 26, 0.12);

    --font: 'Plus Jakarta Sans', system-ui, sans-serif;
    --container: 72rem;
    --header-h: 4.5rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-ink);
    background: var(--color-sand);
    -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

.container {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(246, 244, 239, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    min-height: var(--header-h);
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.brand-icon {
    width: 2.25rem;
    height: 2.25rem;
    color: var(--color-forest);
}

.brand-text { display: flex; flex-direction: column; }

.brand-name {
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: -0.02em;
    color: var(--color-ink);
}

.brand-tagline {
    font-size: 0.7rem;
    color: var(--color-muted);
    line-height: 1.2;
}

.nav {
    display: none;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-muted);
}

.nav a:hover { color: var(--color-forest); }

.header-phone {
    display: none;
    margin-left: auto;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-forest);
    white-space: nowrap;
}

.header-phone:hover { color: var(--color-mint); }

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.5rem;
    height: 2.5rem;
    margin-left: auto;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 1.25rem;
    height: 2px;
    background: var(--color-ink);
    border-radius: 1px;
    transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 1rem 1rem;
    border-bottom: 1px solid var(--color-border);
}

.mobile-nav[hidden] { display: none; }

.mobile-nav:not([hidden]) { display: flex; }

.mobile-nav a {
    padding: 0.75rem 0;
    font-weight: 500;
    color: var(--color-muted);
    border-bottom: 1px solid var(--color-border);
}

.mobile-nav a:last-child {
    color: var(--color-forest);
    font-weight: 600;
    border-bottom: none;
}

@media (min-width: 768px) {
    .nav { display: flex; }
    .header-phone { display: block; margin-left: 0; }
    .nav-toggle { display: none; }
    .mobile-nav { display: none !important; }
}

/* Typography & sections */
.eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-mint);
    margin: 0 0 0.75rem;
}

h1, h2, h3 {
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.25rem); }
h3 { font-size: 1.125rem; }

.section-header { margin-bottom: 2.5rem; max-width: 36rem; }
.section-header--center { text-align: center; margin-inline: auto; }
.section-lead { margin: 0.75rem 0 0; color: var(--color-muted); font-size: 1.05rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
    background: var(--color-forest);
    color: white;
    border-color: var(--color-forest);
}

.btn-primary:hover:not(:disabled) {
    background: var(--color-mint);
    border-color: var(--color-mint);
}

.btn-primary:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.btn-secondary {
    background: transparent;
    color: var(--color-forest);
    border-color: var(--color-border);
}

.btn-secondary:hover {
    border-color: var(--color-forest);
    background: white;
}

.btn-block { width: 100%; }

/* Hero */
.hero {
    padding: 3rem 0 4rem;
    background: linear-gradient(160deg, var(--color-sand) 0%, #eef5f2 50%, var(--color-sand) 100%);
    border-bottom: 1px solid var(--color-border);
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 900px) {
    .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.hero-subhead {
    margin: 1.25rem 0 0;
    font-size: 1.125rem;
    color: var(--color-muted);
    max-width: 32rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2.5rem 0 0;
    padding: 0;
    list-style: none;
}

@media (min-width: 640px) {
    .trust-row { grid-template-columns: repeat(4, 1fr); }
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-muted);
}

.trust-icon {
    width: 2rem;
    height: 2rem;
    border-radius: var(--radius-sm);
    background: var(--color-mint-light);
    position: relative;
}

.trust-icon::after {
    content: '';
    position: absolute;
    inset: 0.4rem;
    background: var(--color-forest);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

.trust-icon--shield::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 2L4 6v6c0 5.5 3.8 10.7 8 12 4.2-1.3 8-6.5 8-12V6l-8-4z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 2L4 6v6c0 5.5 3.8 10.7 8 12 4.2-1.3 8-6.5 8-12V6l-8-4z'/%3E%3C/svg%3E"); }
.trust-icon--clock::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E"); }
.trust-icon--star::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2l2.4 7.4H22l-6 4.6 2.3 7-6.3-4.6L5.7 21l2.3-7-6-4.6h7.6z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2l2.4 7.4H22l-6 4.6 2.3 7-6.3-4.6L5.7 21l2.3-7-6-4.6h7.6z'/%3E%3C/svg%3E"); }
.trust-icon--leaf::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M6 20c6-1 10-5 12-12-7 2-11 6-12 12z'/%3E%3Cpath d='M6 20c2-4 6-8 12-12'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M6 20c6-1 10-5 12-12-7 2-11 6-12 12z'/%3E%3Cpath d='M6 20c2-4 6-8 12-12'/%3E%3C/svg%3E"); }

.stat-strip {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.stat { display: flex; flex-direction: column; }
.stat-value { font-size: 1.5rem; font-weight: 800; color: var(--color-forest); letter-spacing: -0.03em; }
.stat-label { font-size: 0.8rem; color: var(--color-muted); }

.hero-visual { display: flex; justify-content: center; }

.hero-panel {
    position: relative;
    width: 100%;
    max-width: 22rem;
    aspect-ratio: 4/5;
    border-radius: var(--radius-xl);
    background: linear-gradient(145deg, var(--color-forest) 0%, #0d3328 100%);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(61, 155, 122, 0.4) 0%, transparent 50%);
}

.hero-shield {
    width: 55%;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.2));
    position: relative;
    z-index: 1;
}

.hero-panel-card {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-md);
    backdrop-filter: blur(8px);
    z-index: 2;
}

.hero-panel-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-muted); margin: 0; }
.hero-panel-value { font-size: 1.1rem; font-weight: 700; color: var(--color-ink); margin: 0.25rem 0 0; }
.hero-panel-note { font-size: 0.75rem; color: var(--color-muted); margin: 0.25rem 0 0; }

/* Services */
.services {
    padding: 4rem 0;
    background: var(--color-card);
    border-bottom: 1px solid var(--color-border);
}

.services-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: var(--color-sand);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: box-shadow 0.2s, border-color 0.2s;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-mint);
}

.service-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 1rem;
    border-radius: var(--radius-sm);
    background: var(--color-mint-light);
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: 0.5rem;
    background: var(--color-forest);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

.service-icon--bug::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M8 8l-4 4 4 4M16 8l4 4-4 4M12 4v16'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M8 8l-4 4 4 4M16 8l4 4-4 4M12 4v16'/%3E%3C/svg%3E"); }
.service-icon--home::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M3 10.5L12 3l9 7.5V20a1 1 0 01-1 1H4a1 1 0 01-1-1v-9.5z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M3 10.5L12 3l9 7.5V20a1 1 0 01-1 1H4a1 1 0 01-1-1v-9.5z'/%3E%3C/svg%3E"); }
.service-icon--rodent::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M12 2v4M12 18v4M2 12h4M18 12h4'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M12 2v4M12 18v4M2 12h4M18 12h4'/%3E%3C/svg%3E"); }
.service-icon--wasp::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 2a4 4 0 014 4v2a4 4 0 01-8 0V6a4 4 0 014-4z'/%3E%3Cpath d='M8 14h8v6H8z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 2a4 4 0 014 4v2a4 4 0 01-8 0V6a4 4 0 014-4z'/%3E%3Cpath d='M8 14h8v6H8z'/%3E%3C/svg%3E"); }
.service-icon--building::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M4 20V8l8-4 8 4v12H4z'/%3E%3Cpath d='M9 20v-6h6v6'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M4 20V8l8-4 8 4v12H4z'/%3E%3Cpath d='M9 20v-6h6v6'/%3E%3C/svg%3E"); }
.service-icon--clipboard::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2'/%3E%3Crect x='9' y='3' width='6' height='4' rx='1'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2'/%3E%3Crect x='9' y='3' width='6' height='4' rx='1'/%3E%3C/svg%3E"); }

.service-card h3 { margin-bottom: 0.5rem; }
.service-card p { flex: 1; margin: 0; font-size: 0.9rem; color: var(--color-muted); }

.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.service-price { font-weight: 700; color: var(--color-forest); font-size: 0.95rem; }

.service-book {
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-mint);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    white-space: nowrap;
}

.service-book:hover { color: var(--color-forest); text-decoration: underline; }

/* Pricing */
.pricing {
    padding: 4rem 0;
    background: var(--color-sand);
    border-bottom: 1px solid var(--color-border);
}

.pricing-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
    align-items: stretch;
}

@media (min-width: 768px) {
    .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.pricing-card--featured {
    border-color: var(--color-mint);
    box-shadow: var(--shadow-md);
    transform: scale(1.02);
}

@media (max-width: 767px) {
    .pricing-card--featured { transform: none; }
}

.pricing-badge {
    position: absolute;
    top: -0.65rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: var(--color-mint);
    color: white;
    border-radius: 999px;
}

.pricing-amount {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-forest);
    margin: 0.5rem 0 1.25rem;
    letter-spacing: -0.03em;
}

.pricing-features {
    flex: 1;
    margin: 0 0 1.5rem;
    padding: 0;
    list-style: none;
}

.pricing-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-mint);
    font-weight: 700;
}

.pricing-note {
    margin: 2rem 0 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-muted);
}

/* Booking */
.booking {
    padding: 4rem 0 5rem;
    background: var(--color-card);
}

.booking-layout {
    display: grid;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 900px) {
    .booking-layout { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

.booking-calendar-panel,
.booking-details-panel {
    padding: 1.5rem;
    background: var(--color-sand);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

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

.calendar-month {
    font-size: 1.1rem;
    font-weight: 700;
}

.calendar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: white;
    color: var(--color-ink);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.calendar-nav:hover {
    border-color: var(--color-mint);
    background: var(--color-mint-light);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-muted);
    text-align: center;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.35rem;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 500;
    border: none;
    border-radius: var(--radius-sm);
    background: white;
    color: var(--color-ink);
    cursor: pointer;
    transition: background 0.15s, box-shadow 0.15s, color 0.15s;
    position: relative;
}

.cal-day--empty {
    background: transparent;
    cursor: default;
}

.cal-day--past,
.cal-day--weekend {
    background: #f0f2f1;
    color: #aab4af;
    cursor: not-allowed;
}

.cal-day--blocked {
    background: #fef2f2;
    color: #b91c1c;
    text-decoration: line-through;
    cursor: not-allowed;
}

.cal-day--blocked::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px dashed #fca5a5;
    pointer-events: none;
}

.cal-day--available:hover:not(.cal-day--selected) {
    background: var(--color-mint-light);
    color: var(--color-forest);
}

.cal-day--selected {
    background: var(--color-mint);
    color: white;
    box-shadow: 0 0 0 3px rgba(61, 155, 122, 0.35);
    font-weight: 700;
}

.cal-day:focus-visible {
    outline: 2px solid var(--color-forest);
    outline-offset: 2px;
}

.calendar-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
    font-size: 0.75rem;
    color: var(--color-muted);
}

.legend-item { display: flex; align-items: center; gap: 0.4rem; }

.legend-dot {
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
}

.legend-dot--available { background: var(--color-mint); }
.legend-dot--blocked { background: #fca5a5; }
.legend-dot--unavailable { background: #d1d9d5; }

.booking-service-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    margin-bottom: 1.25rem;
    background: var(--color-mint-light);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
}

.chip-label { font-weight: 600; color: var(--color-muted); }
.chip-value { font-weight: 700; color: var(--color-forest); }

.booking-selected-date {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--color-border);
}

.selected-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-muted);
}

.selected-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-ink);
    margin-top: 0.25rem;
}

.time-slots {
    border: none;
    margin: 0 0 1.25rem;
    padding: 0;
}

.time-slots legend {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-muted);
    margin-bottom: 0.75rem;
}

.slot-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.slot-option { cursor: pointer; }

.slot-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.slot-card {
    display: flex;
    flex-direction: column;
    padding: 0.875rem 1rem;
    background: white;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: border-color 0.15s, background 0.15s;
}

.slot-period { font-weight: 700; font-size: 0.9rem; }
.slot-range { font-size: 0.75rem; color: var(--color-muted); margin-top: 0.15rem; }

.slot-option input:checked + .slot-card {
    border-color: var(--color-mint);
    background: var(--color-mint-light);
}

.slot-option input:focus-visible + .slot-card {
    outline: 2px solid var(--color-forest);
    outline-offset: 2px;
}

.time-slots.is-disabled .slot-option {
    opacity: 0.45;
    pointer-events: none;
}

.booking-blocked-msg {
    margin: 0 0 1rem;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-danger);
    background: #fef2f2;
    border-radius: var(--radius-sm);
    border: 1px solid #fecaca;
}

.form-field { margin-bottom: 1rem; }

.form-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-muted);
    margin-bottom: 0.35rem;
}

.form-field input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: inherit;
    font-size: 0.9rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: white;
    transition: border-color 0.15s;
}

.form-field input:focus {
    outline: none;
    border-color: var(--color-mint);
    box-shadow: 0 0 0 3px rgba(61, 155, 122, 0.15);
}

.form-error {
    margin: 0 0 0.75rem;
    font-size: 0.85rem;
    color: var(--color-danger);
    min-height: 1.25rem;
}

.booking-success {
    text-align: center;
    padding: 1.5rem 0;
}

.success-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    background: var(--color-success);
    border-radius: 50%;
}

.booking-success h3 { margin-bottom: 0.5rem; }
.booking-success p { color: var(--color-muted); margin: 0 0 1.25rem; }

.booking-form.is-hidden { display: none; }

/* Footer */
.site-footer {
    padding: 2.5rem 0;
    background: var(--color-ink);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-inner {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .footer-inner {
        grid-template-columns: 1fr auto;
        align-items: start;
    }
    .footer-copy { grid-column: 1 / -1; }
}

.footer-name { font-weight: 700; color: white; margin: 0; }
.footer-tagline { margin: 0.25rem 0 0; font-size: 0.85rem; }

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.footer-contact a:hover { color: var(--color-mint); }

.footer-copy {
    margin: 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
}
