/* ===========================
   Tokens — kid-friendly palette
=========================== */
:root {
    --bg: #fff8ed;
    --bg-soft: #fff1dc;
    --bg-card: #ffffff;
    --bg-dark: #2d3142;
    --ink: #2d3142;
    --ink-soft: #5b6072;
    --ink-mute: #8a8fa3;
    --line: #f0e3cf;

    --coral: #ff7e67;
    --coral-soft: #ffb09e;
    --mint: #6cc4a1;
    --mint-soft: #a8e0c5;
    --yellow: #ffc857;
    --yellow-soft: #ffe2a3;
    --purple: #c8a2c8;
    --purple-soft: #e0c4e0;
    --sky: #87ceeb;

    --display: 'Fredoka', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --body: 'Nunito', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

    --radius: 28px;
    --radius-lg: 36px;
    --radius-sm: 16px;
    --shadow-sm: 0 4px 14px rgba(45, 49, 66, 0.06);
    --shadow-md: 0 10px 28px rgba(45, 49, 66, 0.1);
    --shadow-lg: 0 22px 48px rgba(45, 49, 66, 0.14);

    --container: 1200px;
    --ease: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===========================
   Reset
=========================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--body);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ===========================
   Layout
=========================== */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: clamp(72px, 11vw, 130px) 0;
    position: relative;
}

.section-head {
    max-width: 740px;
    margin: 0 auto clamp(48px, 7vw, 72px);
    text-align: center;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(40px, 6vw, 72px);
    align-items: center;
}
@media (min-width: 880px) {
    .grid-2 { grid-template-columns: 1fr 1fr; }
}

/* ===========================
   Typography
=========================== */
h1, h2, h3 {
    font-family: var(--display);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: var(--ink);
}

h1 {
    font-size: clamp(2.75rem, 7vw, 5rem);
    font-weight: 700;
    margin-bottom: 24px;
}
h1 em {
    font-style: normal;
    color: var(--coral);
    display: inline-block;
    transform: rotate(-3deg);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 600;
    margin-bottom: 20px;
}
h2 em {
    font-style: normal;
    color: var(--coral);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.25rem, 2.2vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 12px;
}

p { margin-bottom: 16px; line-height: 1.7; }
p:last-child { margin-bottom: 0; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-soft);
    margin-bottom: 16px;
    background: var(--bg-soft);
    padding: 8px 16px;
    border-radius: 999px;
}
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--coral);
    display: inline-block;
}
.dot-mint { background: var(--mint); }
.dot-yellow { background: var(--yellow); }
.dot-purple { background: var(--purple); }
.dot-coral { background: var(--coral); }

.section-lead {
    color: var(--ink-soft);
    font-size: 1.0625rem;
    font-weight: 500;
}

.wave {
    display: inline-block;
    transform-origin: 70% 70%;
    animation: wave 3s ease-in-out infinite;
}
@keyframes wave {
    0%, 60%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(14deg); }
    20% { transform: rotate(-8deg); }
    30% { transform: rotate(14deg); }
    40% { transform: rotate(-4deg); }
    50% { transform: rotate(10deg); }
}

/* ===========================
   Buttons
=========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 30px;
    font-family: var(--body);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 999px;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease-soft), background 0.25s var(--ease-soft);
    border: 3px solid transparent;
    white-space: nowrap;
}
.btn-primary {
    background: var(--coral);
    color: #fff;
    box-shadow: 0 6px 0 #d65a45, 0 10px 24px rgba(255, 126, 103, 0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 0 #d65a45, 0 14px 28px rgba(255, 126, 103, 0.4);
}
.btn-primary:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #d65a45, 0 4px 12px rgba(255, 126, 103, 0.3);
}
.btn-ghost {
    background: #fff;
    color: var(--ink);
    border-color: var(--ink);
    box-shadow: 0 6px 0 var(--ink);
}
.btn-ghost:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 0 var(--ink);
    background: var(--yellow);
}
.btn-ghost:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 var(--ink);
}

/* ===========================
   Header / Nav
=========================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 248, 237, 0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    transition: box-shadow 0.3s var(--ease-soft), background 0.3s var(--ease-soft);
}
.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(45, 49, 66, 0.06);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}
.brand {
    display: inline-flex;
    align-items: center;
}
.brand-logo {
    height: 56px;
    width: 56px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 3px 0 rgba(45, 49, 66, 0.1), var(--shadow-sm);
    transition: transform 0.3s var(--ease);
}
.brand:hover .brand-logo { transform: rotate(-4deg) scale(1.05); }

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}
.nav-links a {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--ink-soft);
    transition: color 0.2s var(--ease-soft);
}
.nav-links a:hover { color: var(--coral); }
.nav-links .nav-cta {
    background: var(--coral);
    color: #fff;
    padding: 11px 22px;
    border-radius: 999px;
    box-shadow: 0 4px 0 #d65a45;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease-soft);
}
.nav-links .nav-cta:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 5px 0 #d65a45;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: var(--coral);
    border-radius: 14px;
    box-shadow: 0 3px 0 #d65a45;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.25s var(--ease-soft), opacity 0.25s var(--ease-soft);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

@media (max-width: 760px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: absolute;
        top: 76px;
        left: 16px;
        right: 16px;
        flex-direction: column;
        gap: 0;
        background: #fff;
        border-radius: var(--radius);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        box-shadow: var(--shadow-lg);
        transition: max-height 0.3s var(--ease-soft), padding 0.3s var(--ease-soft), opacity 0.2s var(--ease-soft);
    }
    .nav-links.open {
        max-height: 420px;
        padding: 12px 24px 20px;
        opacity: 1;
        pointer-events: auto;
    }
    .nav-links li {
        width: 100%;
        border-bottom: 1px dashed var(--line);
    }
    .nav-links li:last-child { border-bottom: 0; }
    .nav-links a {
        display: block;
        padding: 16px 0;
        font-size: 1.05rem;
    }
    .nav-links .nav-cta {
        display: inline-block;
        margin: 8px 0;
        padding: 12px 24px;
    }
}

/* ===========================
   Hero
=========================== */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: clamp(80px, 12vw, 140px) 0 clamp(60px, 10vw, 100px);
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse at 90% 10%, rgba(255, 200, 87, 0.18), transparent 50%),
        radial-gradient(ellipse at 5% 90%, rgba(108, 196, 161, 0.15), transparent 55%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.35;
    animation: blob 18s ease-in-out infinite;
}
.blob-1 {
    width: 280px;
    height: 280px;
    background: var(--coral-soft);
    top: 12%;
    right: 8%;
    animation-delay: 0s;
}
.blob-2 {
    width: 220px;
    height: 220px;
    background: var(--mint-soft);
    bottom: 18%;
    left: 5%;
    animation-delay: -6s;
}
.blob-3 {
    width: 180px;
    height: 180px;
    background: var(--purple-soft);
    top: 50%;
    right: 35%;
    animation-delay: -12s;
}
@keyframes blob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.1); }
    66% { transform: translate(-20px, 30px) scale(0.95); }
}

.float-note, .float-star {
    position: absolute;
    width: 36px;
    height: 36px;
    animation: float 6s ease-in-out infinite;
}
.note-1 { top: 18%; left: 8%; animation-delay: 0s; }
.note-2 { top: 65%; right: 12%; animation-delay: -2s; width: 28px; height: 28px; }
.star-1 { top: 30%; right: 18%; animation-delay: -1s; width: 32px; height: 32px; }
.star-2 { bottom: 20%; left: 18%; animation-delay: -3s; width: 26px; height: 26px; }
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-8deg); }
    50% { transform: translateY(-18px) rotate(8deg); }
}

.hero-content {
    max-width: 880px;
    position: relative;
}
.hero-lead {
    font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
    color: var(--ink-soft);
    max-width: 620px;
    margin-bottom: 36px;
    font-weight: 500;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}
.hero-meta {
    display: flex;
    gap: clamp(20px, 4vw, 56px);
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 2px dashed var(--line);
}
.hero-meta li {
    display: flex;
    flex-direction: column;
    font-size: 0.92rem;
    color: var(--ink-mute);
    font-weight: 600;
}
.hero-meta strong {
    font-family: var(--display);
    font-weight: 700;
    font-size: 2.125rem;
    color: var(--ink);
    margin-bottom: 2px;
    letter-spacing: -0.01em;
}
.hero-meta li:nth-child(1) strong { color: var(--coral); }
.hero-meta li:nth-child(2) strong { color: var(--mint); }
.hero-meta li:nth-child(3) strong { color: var(--purple); }

/* ===========================
   About
=========================== */
.section-about { background: var(--bg); }

.about-visual {
    position: relative;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    transform: rotate(-2deg);
    transition: transform 0.4s var(--ease);
}
.about-visual:hover { transform: rotate(0); }
.about-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 8px solid #fff;
}

.about-sticker {
    position: absolute;
    width: 90px;
    height: 90px;
    filter: drop-shadow(0 8px 16px rgba(45, 49, 66, 0.18));
    animation: bob 5s ease-in-out infinite;
}
.sticker-music {
    top: -16px;
    right: -16px;
    transform: rotate(12deg);
}
.sticker-star {
    bottom: -12px;
    left: -16px;
    transform: rotate(-12deg);
    animation-delay: -2s;
    width: 80px;
    height: 80px;
}
@keyframes bob {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -10px; }
}

.feature-list {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
}
.feature-list li {
    font-size: 0.98rem;
    color: var(--ink);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}
.feat-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    color: #fff;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 3px 0 rgba(45, 49, 66, 0.15);
}
@media (max-width: 520px) {
    .feature-list { grid-template-columns: 1fr; }
}

/* ===========================
   Interactive Piano
=========================== */
.section-play {
    background: var(--bg);
    position: relative;
}

.piano {
    max-width: 880px;
    margin: 0 auto;
    perspective: 1200px;
}
.piano-frame {
    background: linear-gradient(180deg, #2d3142 0%, #1a1d2a 100%);
    padding: 22px 22px 28px;
    border-radius: 22px;
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.08),
        inset 0 -2px 0 rgba(0, 0, 0, 0.3),
        0 18px 40px rgba(45, 49, 66, 0.25),
        0 4px 0 #0a0c14;
    position: relative;
}
.piano-frame::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 22px;
    right: 22px;
    height: 6px;
    background: linear-gradient(180deg, var(--coral) 0%, #d65a45 100%);
    border-radius: 999px;
    opacity: 0.85;
}

.piano-keyboard {
    position: relative;
    aspect-ratio: 8 / 3;
    margin-top: 14px;
}

.keys-white {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 4px;
}
.keys-black {
    position: absolute;
    inset: 0 0 auto 0;
    height: 62%;
    pointer-events: none;
}

.key {
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    font-family: var(--body);
    transition: transform 0.08s ease, background 0.08s ease, box-shadow 0.08s ease;
    border: 0;
    padding: 0;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 6px;
    padding-bottom: 14px;
    position: relative;
}
.key:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 3px;
    z-index: 3;
}

.key-white {
    background: linear-gradient(180deg, #fff 0%, #faf2dd 100%);
    border-radius: 0 0 12px 12px;
    box-shadow:
        inset 0 -8px 12px rgba(45, 49, 66, 0.08),
        inset 0 0 0 2px rgba(255, 255, 255, 0.6),
        0 4px 0 rgba(45, 49, 66, 0.25);
    color: var(--ink-mute);
}
.key-white .key-name {
    font-family: var(--display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
}
.key-white .key-letter {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--ink-mute);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: var(--bg-soft);
    padding: 3px 8px;
    border-radius: 999px;
    opacity: 0.85;
}

.key-black {
    position: absolute;
    width: 9%;
    height: 100%;
    background: linear-gradient(180deg, #3a3f54 0%, #0e0f15 100%);
    border-radius: 0 0 8px 8px;
    box-shadow:
        inset 0 -8px 12px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        0 5px 0 #000,
        0 8px 18px rgba(0, 0, 0, 0.4);
    pointer-events: auto;
    color: rgba(255, 255, 255, 0.7);
    z-index: 2;
}
.key-black[data-pos="1"] { left: calc(12.5% - 4.5%); }
.key-black[data-pos="2"] { left: calc(25% - 4.5%); }
.key-black[data-pos="4"] { left: calc(50% - 4.5%); }
.key-black[data-pos="5"] { left: calc(62.5% - 4.5%); }
.key-black[data-pos="6"] { left: calc(75% - 4.5%); }

.key-black .key-letter {
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(255, 255, 255, 0.08);
    padding: 2px 6px;
    border-radius: 999px;
}

/* Pressed state */
.key.is-pressed.key-white {
    background: linear-gradient(180deg, var(--coral-soft) 0%, var(--coral) 100%);
    transform: translateY(3px);
    box-shadow: inset 0 -4px 8px rgba(0,0,0,0.15), 0 1px 0 rgba(45, 49, 66, 0.25);
}
.key.is-pressed.key-white .key-name,
.key.is-pressed.key-white .key-letter {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
}

.key.is-pressed.key-black {
    background: linear-gradient(180deg, var(--coral) 0%, #b8412a 100%);
    transform: translateY(4px);
    box-shadow: inset 0 -4px 8px rgba(0,0,0,0.4), 0 1px 0 #000;
}
.key.is-pressed.key-black .key-letter {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

@media (max-width: 640px) {
    .piano-frame {
        padding: 16px 14px 20px;
    }
    .key-white .key-letter { display: none; }
    .key-black .key-letter { font-size: 0.55rem; padding: 1px 4px; }
    .key-white .key-name { font-size: 0.95rem; }
    .key-white { padding-bottom: 10px; }
}

.piano-songs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
}
.songs-label {
    font-weight: 700;
    color: var(--ink-soft);
    margin-right: 4px;
}
.song-btn {
    padding: 10px 20px;
    font-family: var(--body);
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--ink);
    background: #fff;
    border: 2px solid var(--line);
    border-radius: 999px;
    transition: transform 0.2s var(--ease), background 0.2s var(--ease-soft), border-color 0.2s var(--ease-soft);
    box-shadow: 0 3px 0 var(--line);
}
.song-btn:hover {
    transform: translateY(-1px);
    border-color: var(--coral);
    background: #fff8ed;
    box-shadow: 0 4px 0 var(--coral);
}
.song-btn:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 var(--coral);
}
.song-btn.is-playing {
    background: var(--coral);
    color: #fff;
    border-color: var(--coral);
    box-shadow: 0 3px 0 #d65a45;
}
.song-stop {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
    box-shadow: 0 3px 0 #0a0c14;
}
.song-stop:hover {
    background: var(--burgundy, #6b2a2e);
    border-color: var(--burgundy, #6b2a2e);
}

/* ===========================
   Services
=========================== */
.section-services {
    background: var(--bg-soft);
    position: relative;
}
.section-services::before, .section-services::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0 40 Q300 0 600 20 T1200 0 V40Z' fill='%23fff8ed'/%3E%3C/svg%3E");
    background-size: 100% 100%;
}
.section-services::before { top: -1px; transform: scaleY(-1); }
.section-services::after { bottom: -1px; }

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.card {
    background: var(--bg-card);
    padding: 40px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease-soft);
    border: 3px solid transparent;
    position: relative;
}
.card:hover {
    transform: translateY(-6px) rotate(-1deg);
    box-shadow: var(--shadow-lg);
}
.card-coral:hover { border-color: var(--coral); }
.card-mint:hover { border-color: var(--mint); }
.card-yellow:hover { border-color: var(--yellow); }
.card-purple:hover { border-color: var(--purple); }

.card-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transform: rotate(-4deg);
    transition: transform 0.3s var(--ease);
}
.card:hover .card-icon { transform: rotate(4deg) scale(1.05); }
.card-icon svg { width: 44px; height: 44px; }
.card-coral .card-icon { background: var(--coral); box-shadow: 0 5px 0 #d65a45; }
.card-mint .card-icon { background: var(--mint); box-shadow: 0 5px 0 #4aa583; }
.card-yellow .card-icon { background: var(--yellow); box-shadow: 0 5px 0 #d6a13a; }
.card-purple .card-icon { background: var(--purple); box-shadow: 0 5px 0 #a081a0; }

.card p {
    color: var(--ink-soft);
    font-size: 0.95rem;
    margin-bottom: 0;
    font-weight: 500;
}

/* ===========================
   Pricing
=========================== */
.section-pricing { background: var(--bg); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-bottom: 32px;
}
.price-card {
    background: var(--bg-soft);
    padding: 40px 32px;
    border-radius: var(--radius);
    border: 3px solid transparent;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease-soft);
    position: relative;
}
.price-card:not(.price-featured):hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--mint);
}
.price-featured {
    background: linear-gradient(160deg, var(--coral) 0%, #ff9f7d 100%);
    color: #fff;
    border-color: var(--coral);
    box-shadow: 0 8px 0 #d65a45, var(--shadow-md);
    transform: translateY(-8px);
}
.price-featured:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 0 #d65a45, var(--shadow-lg);
}
.price-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--yellow);
    color: var(--ink);
    font-family: var(--display);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 999px;
    box-shadow: 0 4px 0 #d6a13a;
    white-space: nowrap;
}
.price-featured h3 { color: #fff; }
.price-featured .price-head p { color: rgba(255, 255, 255, 0.85); }
.price-featured .price-list li { border-bottom-color: rgba(255, 255, 255, 0.18); }
.price-featured .price-duration { color: rgba(255, 255, 255, 0.85); }
.price-featured .price-amount { color: #fff; }

.price-head {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px dashed var(--line);
}
.price-featured .price-head {
    border-bottom: 2px dashed rgba(255, 255, 255, 0.3);
}
.price-head p {
    color: var(--ink-mute);
    font-size: 0.92rem;
    margin: 0;
    font-weight: 500;
}
.price-list { flex: 1; }
.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 16px 0;
    border-bottom: 1px dashed var(--line);
}
.price-list li:last-child { border-bottom: 0; }
.price-duration {
    font-size: 0.98rem;
    color: var(--ink-soft);
    font-weight: 600;
}
.price-amount {
    font-family: var(--display);
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--ink);
}
.price-note {
    color: var(--ink-mute);
    font-size: 0.9rem;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed var(--line);
    font-weight: 500;
}
.pricing-footnote {
    text-align: center;
    color: var(--ink-soft);
    font-size: 0.95rem;
    max-width: 640px;
    margin: 32px auto 0;
    font-weight: 500;
}

/* ===========================
   Contact
=========================== */
.section-contact {
    background: var(--bg-soft);
    position: relative;
}
.section-contact::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0 40 Q300 0 600 20 T1200 0 V40Z' fill='%23fff8ed'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    transform: scaleY(-1);
}

.contact-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.social-inline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    color: var(--ink-soft);
    font-size: 0.98rem;
    font-weight: 600;
    transition: color 0.2s var(--ease-soft), transform 0.2s var(--ease-soft);
}
.social-inline:hover {
    color: var(--coral);
    transform: translateX(2px);
}
.social-inline svg { width: 22px; height: 22px; }

.contact-card {
    background: #fff;
    padding: clamp(32px, 4vw, 44px);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 3px solid var(--bg-soft);
    position: relative;
    transform: rotate(1.5deg);
    transition: transform 0.4s var(--ease);
}
.contact-card:hover { transform: rotate(0); }
.contact-card-deco {
    position: absolute;
    top: -20px;
    right: -16px;
    width: 60px;
    height: 60px;
    background: var(--yellow);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(8deg);
    box-shadow: 0 5px 0 #d6a13a;
    animation: bob 5s ease-in-out infinite;
}
.contact-card-deco svg { width: 32px; height: 32px; }
.contact-card h3 {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px dashed var(--line);
}
.contact-info {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 14px 24px;
    align-items: baseline;
}
.contact-info dt {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-mute);
    font-weight: 700;
}
.contact-info dd {
    margin: 0;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 600;
}
.contact-info dd a:hover { color: var(--coral); }

@media (max-width: 480px) {
    .contact-info {
        grid-template-columns: 1fr;
        gap: 4px 0;
    }
    .contact-info dd { margin-bottom: 14px; }
    .contact-info dd:last-of-type { margin-bottom: 0; }
}

/* ===========================
   Footer
=========================== */
.site-footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 64px 0 36px;
    position: relative;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media (min-width: 720px) {
    .footer-grid {
        grid-template-columns: 2fr 1.2fr 1.5fr;
        align-items: start;
    }
}
.footer-about {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-logo {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}
.footer-tag {
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}
.footer-meta p {
    font-size: 0.95rem;
    margin-bottom: 6px;
    font-weight: 500;
}
.footer-meta a:hover { color: var(--yellow); }
.footer-social { margin-top: 12px; }
.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.75);
}
.footer-social svg { width: 18px; height: 18px; }
.footer-social a:hover { color: var(--yellow); }
.footer-copy {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}
.footer-copy span { color: var(--coral); }
@media (min-width: 720px) {
    .footer-copy { text-align: right; }
}

/* ===========================
   Reveal animation
=========================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-soft), transform 0.7s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
