/*
Theme Name: Sunshine Childcare
Theme URI: https://www.sunshinechildcare.co.uk/
Author: Sunshine Childcare
Description: A bright, playful and professional theme for Sunshine Childcare. Built around the Sunshine logo palette — sunshine yellow, coral, sky blue, hot pink and soft purple — with rounded shapes, friendly typography and gentle decorative touches.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sunshine-childcare
Tags: childcare, bright, playful, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ============================================
   Brand tokens
   ============================================ */
:root {
    --sun-yellow: #FFD93D;
    --sun-yellow-soft: #FFE89A;
    --coral: #FF6B6B;
    --coral-soft: #FFB8B8;
    --sky: #4FC3F7;
    --sky-soft: #B3E5FC;
    --pink: #FF85A2;
    --pink-soft: #FFD1DC;
    --purple: #B39DDB;
    --purple-soft: #E1D7F5;
    --green: #7ED957;

    --cream: #FFF9F0;
    --cream-2: #FFF4E0;
    --ink: #2D2A4A;
    --ink-soft: #5A567A;
    --white: #ffffff;

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-pill: 999px;

    --shadow-sm: 0 4px 14px rgba(45, 42, 74, 0.08);
    --shadow-md: 0 10px 30px rgba(45, 42, 74, 0.12);
    --shadow-lg: 0 20px 50px rgba(45, 42, 74, 0.18);

    --container: 1180px;

    --font-display: 'Fredoka', 'Quicksand', system-ui, -apple-system, sans-serif;
    --font-body: 'Quicksand', 'Nunito', system-ui, -apple-system, sans-serif;
}

/* ============================================
   Reset / base
   ============================================ */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a {
    color: var(--coral);
    text-decoration: none;
    transition: color .2s ease, transform .2s ease, opacity .2s ease;
}
a:hover { color: var(--pink); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--ink);
    line-height: 1.15;
    margin: 0 0 .6em;
    letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); }

p { margin: 0 0 1em; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: clamp(56px, 8vw, 110px) 0;
    position: relative;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    text-decoration: none;
    line-height: 1;
}
.btn-primary {
    background: var(--coral);
    color: #fff;
    box-shadow: 0 6px 0 #d65656, var(--shadow-sm);
}
.btn-primary:hover {
    background: var(--pink);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 0 #c66386, var(--shadow-md);
}
.btn-secondary {
    background: var(--sky);
    color: #fff;
    box-shadow: 0 6px 0 #2ea2d6, var(--shadow-sm);
}
.btn-secondary:hover {
    background: var(--purple);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 0 #8d77c0, var(--shadow-md);
}
.btn-yellow {
    background: var(--sun-yellow);
    color: var(--ink);
    box-shadow: 0 6px 0 #e8b91d, var(--shadow-sm);
}
.btn-yellow:hover {
    background: #ffe25d;
    color: var(--ink);
    transform: translateY(-2px);
    box-shadow: 0 8px 0 #d6a719, var(--shadow-md);
}
.btn-outline {
    background: transparent;
    color: var(--ink);
    border: 2px solid var(--ink);
}
.btn-outline:hover {
    background: var(--ink);
    color: #fff;
    transform: translateY(-2px);
}

/* ============================================
   Header
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 249, 240, 0.92);
    backdrop-filter: saturate(160%) blur(10px);
    -webkit-backdrop-filter: saturate(160%) blur(10px);
    border-bottom: 3px dotted var(--pink-soft);
}
.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 0;
    position: relative;
}
.site-branding { display: flex; align-items: center; gap: 14px; }
.custom-logo-link img,
.site-logo img {
    max-height: 96px;
    width: auto;
    height: auto;
}
@media (max-width: 600px) {
    .custom-logo-link img,
    .site-logo img { max-height: 64px; }
}
.site-title-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--ink);
    margin: 0;
}
.site-title-text a { color: inherit; }

.main-navigation { display: flex; align-items: center; gap: 8px; }
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}
.main-navigation li a {
    display: inline-block;
    padding: 10px 18px;
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 500;
    border-radius: var(--radius-pill);
    transition: background .2s ease, color .2s ease;
}
.main-navigation li a:hover,
.main-navigation li.current-menu-item > a,
.main-navigation li.current_page_item > a {
    background: var(--sun-yellow);
    color: var(--ink);
}
.main-navigation li.cta-item a {
    background: var(--coral);
    color: #fff;
    box-shadow: 0 4px 0 #d65656;
}
.main-navigation li.cta-item a:hover {
    background: var(--pink);
    color: #fff;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--coral);
    color: #fff;
    border: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 0 #d65656, var(--shadow-sm);
    transition: transform .15s ease, background .2s ease;
}
.menu-toggle:hover { background: var(--pink); }
.menu-toggle:active { transform: translateY(2px); box-shadow: 0 2px 0 #d65656; }

.menu-toggle .bars {
    position: relative;
    display: block;
    width: 22px;
    height: 16px;
    pointer-events: none;
}
.menu-toggle .bars::before,
.menu-toggle .bars::after,
.menu-toggle .bars i {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease, top .25s ease;
}
.menu-toggle .bars::before { top: 0; }
.menu-toggle .bars i       { top: 50%; transform: translateY(-50%); display: block; }
.menu-toggle .bars::after  { top: calc(100% - 3px); }

.main-navigation.is-open ~ .menu-toggle .bars::before,
.menu-toggle[aria-expanded="true"] .bars::before {
    top: 50%; transform: translateY(-50%) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .bars i { opacity: 0; }
.menu-toggle[aria-expanded="true"] .bars::after {
    top: 50%; transform: translateY(-50%) rotate(-45deg);
}

@media (max-width: 880px) {
    .menu-toggle { display: inline-flex; }
    .main-navigation { position: static; }
    .main-navigation ul {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        left: auto;
        flex-direction: column;
        align-items: stretch;
        background: #fff;
        padding: 12px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-lg);
        min-width: 240px;
        display: none;
        gap: 2px;
        border: 3px solid var(--sun-yellow);
        z-index: 200;
    }
    .main-navigation.is-open ul { display: flex; }
    .main-navigation li { width: 100%; }
    .main-navigation li a {
        width: 100%;
        padding: 12px 16px;
        text-align: left;
    }
    .main-navigation li.cta-item a { box-shadow: none; }
}

/* ============================================
   Hero
   ============================================ */
.hero {
    position: relative;
    padding: clamp(60px, 10vw, 120px) 0 clamp(80px, 12vw, 140px);
    background: linear-gradient(180deg, #FFF4E0 0%, #FFE7C2 60%, var(--cream) 100%);
    overflow: hidden;
}
.hero::before {
    /* big sun glow */
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(255,217,61,.7) 0%, rgba(255,217,61,0) 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-eyebrow {
    display: inline-block;
    background: var(--white);
    color: var(--coral);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .95rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 18px;
}
.hero h1 {
    margin: 0 0 18px;
    font-size: clamp(2.4rem, 6vw, 4.2rem);
}
.hero h1 .word-1 { color: var(--coral); }
.hero h1 .word-2 { color: var(--sky); }
.hero h1 .word-3 { color: var(--pink); }
.hero h1 .word-4 { color: var(--purple); }
.hero p.lead {
    font-size: 1.15rem;
    color: var(--ink-soft);
    max-width: 540px;
    margin: 0 0 28px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-art {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 460px;
    margin: 0 auto;
}
.hero-art .blob {
    position: absolute;
    inset: 0;
    background: var(--sky-soft);
    border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
    animation: blob 14s ease-in-out infinite;
}
.hero-art .blob.b2 {
    background: var(--pink-soft);
    inset: 30px 20px 20px 30px;
    animation-duration: 18s;
    animation-direction: reverse;
}
.hero-art .blob.b3 {
    background: var(--sun-yellow-soft);
    inset: 60px 50px 40px 60px;
    animation-duration: 22s;
}
.hero-art img {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 78%;
    z-index: 2;
}
@keyframes blob {
    0%,100% { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; }
    50%     { border-radius: 40% 60% 45% 55% / 60% 40% 60% 40%; }
}
@media (max-width: 820px) {
    .hero-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero-art { max-width: 320px; }
}

/* ============================================
   Decorative section dividers (wave)
   ============================================ */
.wave-divider {
    display: block;
    width: 100%;
    height: 60px;
    margin-top: -1px;
}

/* ============================================
   Feature cards
   ============================================ */
.features { background: var(--cream); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.feature-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 3px solid transparent;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--sun-yellow);
}
.feature-icon {
    width: 84px; height: 84px;
    border-radius: 50%;
    display: grid; place-items: center;
    margin: 0 auto 18px;
    font-size: 2rem;
}
.feature-card:nth-child(1) .feature-icon { background: var(--sun-yellow-soft); color: #c69800; }
.feature-card:nth-child(2) .feature-icon { background: var(--sky-soft);        color: #0277bd; }
.feature-card:nth-child(3) .feature-icon { background: var(--pink-soft);       color: #c2185b; }
.feature-card:nth-child(4) .feature-icon { background: var(--purple-soft);     color: #5e35b1; }

.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: var(--ink-soft); margin: 0; }

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

/* ============================================
   Section heads
   ============================================ */
.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}
.section-head .eyebrow {
    color: var(--coral);
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: .85rem;
    margin-bottom: 10px;
    display: block;
}
.section-head h2 .accent {
    background: linear-gradient(180deg, transparent 60%, var(--sun-yellow) 60%);
    padding: 0 4px;
}
.section-head p { color: var(--ink-soft); font-size: 1.1rem; }

/* ============================================
   About preview / split
   ============================================ */
.split {
    background: linear-gradient(135deg, var(--purple-soft) 0%, var(--sky-soft) 100%);
}
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.split-art {
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    background: #fff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="100" cy="100" r="60" fill="%23FFD93D"/></svg>') center/40% no-repeat;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}
.split ul.checks {
    list-style: none; padding: 0; margin: 18px 0 28px;
}
.split ul.checks li {
    padding: 8px 0 8px 36px;
    position: relative;
    font-weight: 500;
}
.split ul.checks li::before {
    content: '';
    position: absolute; left: 0; top: 12px;
    width: 24px; height: 24px;
    background: var(--coral);
    border-radius: 50%;
    box-shadow: inset 0 0 0 6px #fff, inset 0 0 0 8px var(--coral);
}
@media (max-width: 820px) {
    .split-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Gallery
   ============================================ */
.gallery-section { background: var(--cream); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.gallery-grid .gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1/1;
    background: var(--sky-soft);
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
    position: relative;
}
.gallery-grid .gallery-item:hover {
    transform: scale(1.02) rotate(-.5deg);
    box-shadow: var(--shadow-md);
}
.gallery-grid .gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
}
.gallery-grid .gallery-placeholder {
    width: 100%; height: 100%;
    display: grid; place-items: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--ink);
    background: linear-gradient(135deg, var(--sun-yellow) 0%, var(--coral) 100%);
}
.gallery-grid .gallery-item:nth-child(3n) .gallery-placeholder { background: linear-gradient(135deg, var(--sky) 0%, var(--purple) 100%); color: #fff; }
.gallery-grid .gallery-item:nth-child(3n+1) .gallery-placeholder { background: linear-gradient(135deg, var(--pink) 0%, var(--coral) 100%); color: #fff; }

@media (max-width: 720px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   Testimonial / pull
   ============================================ */
.testimonial {
    background: var(--sun-yellow);
    text-align: center;
}
.testimonial blockquote {
    max-width: 760px;
    margin: 0 auto;
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 1.4;
    color: var(--ink);
    font-style: italic;
}
.testimonial cite {
    display: block;
    margin-top: 18px;
    font-style: normal;
    font-weight: 600;
    color: var(--ink);
}

/* ============================================
   CTA banner
   ============================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--coral) 0%, var(--pink) 100%);
    color: #fff;
    text-align: center;
    padding: 80px 24px;
    border-radius: var(--radius-lg);
    margin: 60px auto;
    max-width: var(--container);
    box-shadow: var(--shadow-md);
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,.9); max-width: 540px; margin: 0 auto 24px; }
.cta-banner .btn-yellow { box-shadow: 0 6px 0 #d6a719; }

/* ============================================
   Page header (interior pages)
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--sky-soft) 0%, var(--pink-soft) 100%);
    padding: clamp(56px, 9vw, 110px) 0 clamp(56px, 9vw, 110px);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before,
.page-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.page-hero::before {
    width: 180px; height: 180px;
    background: var(--sun-yellow-soft);
    top: -40px; left: -40px;
}
.page-hero::after {
    width: 220px; height: 220px;
    background: var(--purple-soft);
    bottom: -80px; right: -40px;
}
.page-hero .eyebrow {
    color: var(--coral);
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: .9rem;
}
.page-hero h1 { margin: 8px 0 12px; }
.page-hero p { color: var(--ink-soft); max-width: 640px; margin: 0 auto; font-size: 1.1rem; }

/* ============================================
   Page content
   ============================================ */
.page-content {
    background: var(--cream);
    padding: clamp(56px, 8vw, 100px) 0;
}
.page-content .entry {
    max-width: 820px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: clamp(28px, 5vw, 64px);
    box-shadow: var(--shadow-sm);
}
.page-content .entry img { border-radius: var(--radius-md); margin: 1.2em 0; }
.page-content .entry h2,
.page-content .entry h3 { margin-top: 1.4em; }
.page-content .entry h2 { color: var(--coral); }
.page-content .entry h3 { color: var(--sky); }
.page-content .entry ul li::marker { color: var(--coral); }
.page-content .entry blockquote {
    border-left: 5px solid var(--sun-yellow);
    padding: 8px 20px;
    margin: 1.4em 0;
    background: var(--cream-2);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: var(--ink);
}

/* ============================================
   About page
   ============================================ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 28px;
}
.value-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.value-card .icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    margin: 0 auto 12px;
    display: grid; place-items: center;
    font-size: 1.6rem;
}
.value-card:nth-child(1) .icon { background: var(--sun-yellow); }
.value-card:nth-child(2) .icon { background: var(--sky-soft); color: #0277bd; }
.value-card:nth-child(3) .icon { background: var(--pink-soft); color: #c2185b; }
.value-card:nth-child(4) .icon { background: var(--purple-soft); color: #5e35b1; }
.value-card h4 { margin: 0 0 8px; font-family: var(--font-display); }
.value-card p { color: var(--ink-soft); margin: 0; font-size: .95rem; }
@media (max-width: 820px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   Contact page
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 36px;
    align-items: start;
}
.contact-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}
.contact-info-list {
    list-style: none; padding: 0; margin: 18px 0 0;
}
.contact-info-list li {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 14px 0;
    border-bottom: 2px dotted var(--pink-soft);
}
.contact-info-list li:last-child { border-bottom: none; }
.contact-info-list .icon {
    flex: 0 0 44px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--sun-yellow-soft);
    display: grid; place-items: center;
    color: #c69800;
}
.contact-info-list li:nth-child(2) .icon { background: var(--sky-soft); color: #0277bd; }
.contact-info-list li:nth-child(3) .icon { background: var(--pink-soft); color: #c2185b; }
.contact-info-list li:nth-child(4) .icon { background: var(--purple-soft); color: #5e35b1; }
.contact-info-list strong { display: block; font-family: var(--font-display); }
.contact-info-list a { color: var(--ink); }

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

/* WPForms friendly tweaks */
.wpforms-container .wpforms-field-label,
.wpforms-container label {
    font-family: var(--font-display);
    color: var(--ink);
}
.wpforms-container input[type=text],
.wpforms-container input[type=email],
.wpforms-container input[type=tel],
.wpforms-container input[type=url],
.wpforms-container input[type=number],
.wpforms-container input[type=date],
.wpforms-container select,
.wpforms-container textarea {
    border-radius: var(--radius-sm) !important;
    border: 2px solid #ECE6D8 !important;
    padding: 12px 14px !important;
    background: #fff !important;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.wpforms-container input:focus,
.wpforms-container select:focus,
.wpforms-container textarea:focus {
    border-color: var(--sky) !important;
    box-shadow: 0 0 0 4px var(--sky-soft) !important;
    outline: none !important;
}
.wpforms-container .wpforms-submit-container button[type=submit],
.wpforms-container .wpforms-page-button {
    background: var(--coral) !important;
    color: #fff !important;
    border: none !important;
    padding: 14px 32px !important;
    border-radius: var(--radius-pill) !important;
    font-family: var(--font-display) !important;
    font-weight: 600 !important;
    font-size: 1.05rem !important;
    box-shadow: 0 6px 0 #d65656 !important;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}
.wpforms-container .wpforms-submit-container button[type=submit]:hover {
    background: var(--pink) !important;
    transform: translateY(-2px);
}

/* No-form placeholder */
.form-placeholder {
    border: 3px dashed var(--pink);
    background: var(--pink-soft);
    border-radius: var(--radius-md);
    padding: 28px;
    color: var(--ink);
    text-align: center;
}
.form-placeholder strong { color: var(--coral); display: block; margin-bottom: 6px; }

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: var(--ink);
    color: #E5E1FB;
    padding: 70px 0 30px;
    margin-top: 0;
}
.site-footer a { color: var(--sun-yellow); }
.site-footer a:hover { color: var(--pink); }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 40px;
}
.footer-brand img { background: #fff; padding: 10px 16px; border-radius: var(--radius-md); max-width: 220px; }
.footer-brand p { color: #C8C3E8; max-width: 320px; margin-top: 16px; }
.footer-col h4 {
    color: #fff;
    margin: 0 0 14px;
    font-size: 1.05rem;
    letter-spacing: .04em;
}
.footer-col ul {
    list-style: none; padding: 0; margin: 0;
}
.footer-col ul li { padding: 6px 0; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 22px;
    display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    color: #9892C0;
    font-size: .9rem;
}

@media (max-width: 820px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Utility
   ============================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.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;
}
.screen-reader-text { @extend .sr-only; }

/* WP alignment fallbacks */
.alignleft  { float: left; margin: 0 1.4em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.4em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignwide  { max-width: 1100px; margin-left: auto; margin-right: auto; }
.alignfull  { width: 100vw; max-width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
