/* ============================
   DIAL-UP DARLING BY CATIE
   Global Design System — Phase 1
   ============================ */

/* === DESIGN TOKENS === */
:root {
    --cream:        #f5e6c8;
    --cream-dark:   #edd9a8;
    --cream-deep:   #e0c680;
    --rose:         #c47075;
    --rose-light:   #d4888d;
    --rose-dark:    #9e5459;
    --olive:        #4b6243;
    --olive-light:  #5d7654;
    --olive-dark:   #374a31;
    --amber:        #d4852a;
    --amber-light:  #e3a048;
    --charcoal:     #2a2218;
    --off-white:    #fef9f0;

    --font-script:  'Pacifico', cursive;
    --font-hand:    'Dancing Script', cursive;
    --font-bold:    'Anton', sans-serif;
    --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

    --max-width: 1100px;
}

/* === RESET === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
    min-height: 100vh;
}

img  { max-width: 100%; display: block; }
a    { color: inherit; }

/* === CONTAINER === */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* === SPARKLE ELEMENTS === */
.sp {
    display: inline-block;
    font-style: normal;
    line-height: 1;
    user-select: none;
}
.sp--rose  { color: var(--rose); }
.sp--olive { color: var(--olive); }
.sp--amber { color: var(--amber); }
.sp--sm    { font-size: 14px; }
.sp--md    { font-size: 22px; }
.sp--lg    { font-size: 32px; }

/* === SITE HEADER / NAV === */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--cream);
    border-bottom: 3px solid var(--charcoal);
    padding: 0.85rem 0;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.nav-logo__text {
    font-family: var(--font-script);
    font-size: 1.4rem;
    color: var(--rose);
    text-shadow: 2px 2px 0 var(--rose-dark);
}

.nav-logo__sub {
    font-family: var(--font-hand);
    font-size: 0.85rem;
    color: var(--olive);
    font-weight: 600;
}

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
    transition: all 0.2s;
    color: var(--charcoal);
}

.nav-links a:hover {
    background: var(--cream-dark);
    color: var(--rose);
}

.nav-admin {
    background: var(--charcoal) !important;
    color: var(--cream) !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.03em;
    border: 2px solid var(--charcoal) !important;
}

.nav-admin:hover {
    background: var(--rose-dark) !important;
    color: var(--cream) !important;
    border-color: var(--rose-dark) !important;
}

/* === HERO === */
.hero {
    position: relative;
    overflow: hidden;
    padding: 5rem 0 5.5rem;
    border-bottom: 3px solid var(--charcoal);
}

/* Scattered sparkle decorations */
.sparkles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.sparkles .sp {
    position: absolute;
    animation: sparkle-float 4s ease-in-out infinite;
}

.sparkles .sp:nth-child(2)  { animation-delay: 0.7s; }
.sparkles .sp:nth-child(3)  { animation-delay: 1.3s; }
.sparkles .sp:nth-child(4)  { animation-delay: 0.4s; }
.sparkles .sp:nth-child(5)  { animation-delay: 2.1s; }
.sparkles .sp:nth-child(6)  { animation-delay: 1.5s; }
.sparkles .sp:nth-child(7)  { animation-delay: 0.9s; }
.sparkles .sp:nth-child(8)  { animation-delay: 2.4s; }
.sparkles .sp:nth-child(9)  { animation-delay: 1.1s; }
.sparkles .sp:nth-child(10) { animation-delay: 1.8s; }

@keyframes sparkle-float {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); opacity: 0.7; }
    50%       { transform: translateY(-7px) rotate(18deg) scale(1.12); opacity: 1; }
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Brand lockup — left column */
.brand-title {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 0.6rem;
}

.brand-title__line1 {
    font-family: var(--font-script);
    font-size: clamp(3rem, 8vw, 5.5rem);
    color: var(--rose);
    text-shadow: 5px 5px 0 var(--rose-dark);
    display: block;
}

.brand-title__line2 {
    font-family: var(--font-script);
    font-size: clamp(3rem, 8vw, 5.5rem);
    color: var(--olive);
    text-shadow: 5px 5px 0 var(--olive-dark);
    display: block;
}

.brand-by {
    font-family: var(--font-hand);
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    color: var(--rose);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.brand-tag {
    font-family: var(--font-bold);
    font-size: clamp(1rem, 2.8vw, 1.55rem);
    letter-spacing: 0.08em;
    color: var(--charcoal);
}

/* Hero CTA — right column */
.hero-desc > p {
    font-size: 1.05rem;
    color: var(--charcoal);
    margin-bottom: 1.75rem;
    line-height: 1.7;
    max-width: 420px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.hero-phone {
    font-size: 4.5rem;
    display: block;
    transform: rotate(-8deg);
    margin-top: 0.5rem;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.75rem;
    border-radius: 40px;
    border: 2.5px solid var(--charcoal);
    text-decoration: none;
    transition: all 0.15s;
    cursor: pointer;
    letter-spacing: 0.01em;
}

.btn--primary {
    background: var(--rose);
    color: var(--off-white);
    box-shadow: 3px 3px 0 var(--rose-dark);
}

.btn--primary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 var(--rose-dark);
}

.btn--primary:active {
    transform: translate(1px, 1px);
    box-shadow: 1px 1px 0 var(--rose-dark);
}

.btn--outline {
    background: transparent;
    color: var(--charcoal);
    box-shadow: 3px 3px 0 var(--charcoal);
}

.btn--outline:hover {
    background: var(--charcoal);
    color: var(--cream);
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 rgba(42, 34, 24, 0.4);
}

/* === SHARED SECTION STYLES === */
.section {
    padding: 4.5rem 0;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.75rem;
}

.section-title {
    font-family: var(--font-script);
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    color: var(--charcoal);
    text-align: center;
}

/* === ABOUT SECTION === */
.about {
    background: var(--off-white);
    border-top: 3px solid var(--charcoal);
    border-bottom: 3px solid var(--charcoal);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.about-text .lead {
    font-family: var(--font-bold);
    font-size: 1.2rem;
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: var(--rose-dark);
    text-transform: uppercase;
}

.about-text p {
    margin-bottom: 0.85rem;
    font-size: 0.97rem;
    line-height: 1.75;
    opacity: 0.9;
}

.about-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.badge-card {
    background: var(--cream);
    border: 2.5px solid var(--charcoal);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 4px 4px 0 var(--cream-deep);
    transition: all 0.15s;
}

.badge-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--cream-deep);
}

.badge-icon { font-size: 1.75rem; flex-shrink: 0; }

.badge-label {
    font-size: 0.88rem;
    line-height: 1.4;
}

.badge-label strong {
    display: block;
    font-size: 0.97rem;
}

/* === SERVICES SECTION === */
.services {
    background: var(--cream);
}

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

.service-card {
    background: var(--off-white);
    border: 2.5px solid var(--charcoal);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    position: relative;
    box-shadow: 4px 4px 0 var(--cream-dark);
    transition: all 0.15s;
}

.service-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--cream-dark);
}

.service-card--featured {
    background: var(--cream-dark);
    border-color: var(--rose);
    box-shadow: 4px 4px 0 var(--rose-dark);
}

.service-card--featured:hover {
    box-shadow: 6px 6px 0 var(--rose-dark);
}

.service-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rose);
    color: var(--off-white);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: 20px;
    border: 2px solid var(--charcoal);
    white-space: nowrap;
}

.service-icon {
    font-size: 2.25rem;
    margin-bottom: 0.85rem;
}

.service-card h3 {
    font-family: var(--font-bold);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
}

.service-card p {
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.coming-chip {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 10px;
    background: var(--olive);
    color: var(--cream);
    border: 1.5px solid var(--olive-dark);
    cursor: default;
}

.coming-chip--soon {
    background: var(--cream-deep);
    color: var(--charcoal);
    border-color: var(--amber);
}

/* === SHOP / GALLERY SECTION === */
.shop {
    background: var(--cream-dark);
    border-top: 3px solid var(--charcoal);
    border-bottom: 3px solid var(--charcoal);
}

.shop-coming {
    display: flex;
    justify-content: center;
}

.coming-soon-card {
    background: var(--off-white);
    border: 2.5px solid var(--charcoal);
    border-radius: 20px;
    padding: 3rem 4rem;
    text-align: center;
    max-width: 500px;
    box-shadow: 6px 6px 0 var(--cream-deep);
}

.coming-stars {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.coming-soon-card h3 {
    font-family: var(--font-bold);
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.coming-soon-card p {
    font-size: 0.93rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.65;
}

/* === NEWSLETTER SECTION === */
.newsletter {
    background: var(--rose);
    border-top: 3px solid var(--charcoal);
    border-bottom: 3px solid var(--charcoal);
}

.newsletter-inner {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.newsletter-sparkles {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.newsletter-sparkles .sp { color: var(--off-white) !important; }

.newsletter h2 {
    font-family: var(--font-script);
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    color: var(--off-white);
    text-shadow: 3px 3px 0 var(--rose-dark);
    margin-bottom: 0.6rem;
}

.newsletter > .newsletter-inner > p {
    color: var(--off-white);
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.75rem;
}

.newsletter-placeholder {
    background: rgba(255, 255, 255, 0.18);
    border: 2px dashed rgba(255, 255, 255, 0.55);
    border-radius: 14px;
    padding: 1.5rem 2rem;
}

.newsletter-coming {
    font-family: var(--font-hand);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 0.3rem;
}

.newsletter-note {
    font-size: 0.85rem;
    color: var(--off-white);
    opacity: 0.72;
}

/* === CONTACT SECTION === */
.contact { background: var(--cream); }

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.contact-item {
    text-align: center;
    background: var(--off-white);
    border: 2.5px solid var(--charcoal);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 4px 4px 0 var(--cream-dark);
    transition: all 0.15s;
}

.contact-item:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--cream-dark);
}

.contact-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.contact-item strong {
    display: block;
    font-family: var(--font-bold);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    color: var(--olive);
}

.contact-item p {
    font-size: 0.9rem;
    opacity: 0.75;
}

/* === SITE FOOTER === */
.site-footer {
    background: var(--charcoal);
    padding: 2.75rem 0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-script);
    font-size: 1.6rem;
    color: var(--rose);
    text-shadow: 2px 2px 0 var(--rose-dark);
    line-height: 1;
}

.footer-sub {
    font-family: var(--font-hand);
    font-size: 0.9rem;
    color: var(--olive-light);
    font-weight: 600;
}

.footer-tag {
    font-family: var(--font-bold);
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    color: var(--cream);
    opacity: 0.4;
}

.footer-links {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.88rem;
    opacity: 0.65;
    transition: opacity 0.15s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--rose-light);
}

.footer-copy {
    font-size: 0.78rem;
    color: var(--cream);
    opacity: 0.4;
}

.footer-copy a {
    color: var(--cream);
    text-decoration: underline;
    opacity: 1;
}

/* === RESPONSIVE — TABLET (max 768px) === */
@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 0.85rem);
        left: -1.25rem;
        right: -1.25rem;
        background: var(--cream);
        border-top: 2px solid var(--cream-dark);
        border-bottom: 3px solid var(--charcoal);
        flex-direction: column;
        padding: 0.75rem 1.25rem 1rem;
        gap: 0.2rem;
        align-items: stretch;
    }

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

    .nav-links a {
        padding: 10px 16px;
        border-radius: 10px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-desc > p { max-width: 100%; }
    .hero-actions  { justify-content: center; }
    .hero-phone    { display: none; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }

    .coming-soon-card {
        padding: 2.5rem 1.75rem;
    }
}

/* === RESPONSIVE — MOBILE (max 480px) === */
@media (max-width: 480px) {
    .section { padding: 3rem 0; }

    .brand-title__line1,
    .brand-title__line2 {
        font-size: clamp(2.6rem, 15vw, 3.5rem);
    }

    .sparkles .sp--lg { font-size: 20px; }
    .sparkles .sp--md { font-size: 14px; }

    .coming-soon-card { padding: 2rem 1.25rem; }
}
