:root {
    --primary: #6b21a8;
    --secondary: #faf5ff;
    --accent: #f97316;
    --text: #2d2416;
    --bg: #f5f0e8;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(14px, 4vw, 16px);
}

h1, h2, h3, h4 {
    font-weight: 700;
}

section {
    padding: 16px 0;
}

.card {
    background: #ffffff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(76, 61, 35, 0.08);
}

.btn-cta {
    background-color: var(--accent);
    color: #ffffff !important;
    border-radius: 8px;
    font-weight: 700;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-cta:hover {
    background-color: #ea580c;
}

/* Accessibility SR-ONLY */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Gallery Styles */
.gallery-main {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.3s ease-in-out;
}

/* Gallery logic via CSS */
#img-1:checked ~ .gallery-main .slide-1,
#img-2:checked ~ .gallery-main .slide-2,
#img-3:checked ~ .gallery-main .slide-3,
#img-4:checked ~ .gallery-main .slide-4 {
    opacity: 1;
    z-index: 10;
}

#img-1:checked ~ .thumbnails label[for="img-1"],
#img-2:checked ~ .thumbnails label[for="img-2"],
#img-3:checked ~ .thumbnails label[for="img-3"],
#img-4:checked ~ .thumbnails label[for="img-4"] {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary);
}