/* ═══════════════════════════════════════════════════
   SIMPLY PENNY — Global Styles
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500&display=swap');

:root {
    --cream: #fdf8f2;
    --soft-white: #fefcf9;
    --warm-gray: #f5efe7;
    --blush: #f9f0e6;
    --amber: #d4944a;
    --deep-amber: #b8782e;
    --peach: #e8b87d;
    --soft-gold: #f0c896;
    --rust: #c4713b;
    --burnt-orange: #d4804a;
    --terracotta: #b85c3a;
    --deep-slate: #2a3a4e;
    --twilight: #3d5068;
    --slate-blue: #4a6380;
    --soft-teal: #5a7d8a;
    --midnight: #1a2332;
    --muted-text: #6b7c8f;
    --warm-brown: #8b6f5c;
    --gradient-warm: linear-gradient(135deg, #f9f0e6 0%, #fdf8f2 50%, #f5efe7 100%);
    --gradient-sunset: linear-gradient(135deg, rgba(212, 148, 74, 0.08) 0%, rgba(196, 113, 59, 0.05) 50%, rgba(232, 184, 125, 0.08) 100%);
    --gradient-dusk: linear-gradient(135deg, #2a3a4e 0%, #4a6380 50%, #3d5068 100%);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Jost', sans-serif;
    --shadow-sm: 0 2px 8px rgba(26, 35, 50, 0.06);
    --shadow-md: 0 8px 30px rgba(26, 35, 50, 0.08);
    --shadow-lg: 0 20px 60px rgba(26, 35, 50, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--deep-slate);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.1rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(253, 248, 242, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 148, 74, 0.1);
    transition: all 0.4s ease;
}

nav.scrolled {
    padding: 0.7rem 2.5rem;
    background: rgba(253, 248, 242, 0.97);
    box-shadow: var(--shadow-sm);
}

.nav-brand {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--deep-slate);
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-brand:hover { color: var(--rust); }

.nav-brand-sub {
    display: block;
    font-family: var(--font-body);
    font-size: 0.58rem;
    font-weight: 300;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted-text);
    margin-top: -2px;
}

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

.nav-links a {
    color: var(--twilight);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1.5px;
    background: var(--rust);
    transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--rust); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--rust); }
.nav-links a.active::after { width: 100%; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--deep-slate);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2.2rem;
    border-radius: 3px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.35s ease;
    border: none;
}

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

.btn-primary:hover {
    background: var(--terracotta);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 113, 59, 0.3);
}

.btn-soft {
    background: var(--warm-gray);
    color: var(--deep-slate);
    border: 1px solid rgba(196, 113, 59, 0.15);
}

.btn-soft:hover {
    background: var(--blush);
    border-color: var(--rust);
    transform: translateY(-2px);
}

/* ─── SECTIONS ─── */
section { padding: 6rem 2rem; position: relative; }
.section-inner { max-width: 900px; margin: 0 auto; }

.section-label {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.section-label-light {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--soft-gold);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    color: var(--deep-slate);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-title-light {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    color: var(--peach);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* ─── ACCENT BAR ─── */
.accent-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--amber) 0%, var(--rust) 35%, var(--soft-teal) 65%, var(--twilight) 100%);
}

/* ─── SCROLL REVEAL ─── */
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── FOOTER ─── */
footer {
    padding: 3.5rem 2rem 2.5rem;
    text-align: center;
    background: var(--midnight);
    color: rgba(253, 248, 242, 0.7);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--amber) 0%, var(--rust) 40%, var(--soft-teal) 70%, var(--slate-blue) 100%);
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--peach);
    margin-bottom: 0.3rem;
}

.footer-tagline {
    font-size: 0.72rem;
    color: rgba(253, 248, 242, 0.3);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-socials {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border: 1px solid rgba(232, 184, 125, 0.2);
    border-radius: 50%;
    color: rgba(253, 248, 242, 0.45);
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    border-color: var(--rust);
    color: var(--peach);
    background: rgba(196, 113, 59, 0.15);
    transform: translateY(-2px);
}

.footer-socials svg { width: 15px; height: 15px; fill: currentColor; }

.footer-nav {
    margin-top: 1.3rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-nav a {
    color: rgba(253, 248, 242, 0.35);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

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

.footer-credit {
    font-size: 0.82rem;
    color: rgba(253, 248, 242, 0.5);
    margin-top: 1rem;
    letter-spacing: 0.05em;
}

.footer-credit a {
    color: rgba(253, 248, 242, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: var(--peach);
}

.footer-copy {
    margin-top: 1.3rem;
    font-size: 0.68rem;
    color: rgba(253, 248, 242, 0.18);
}

@keyframes fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: rgba(253, 248, 242, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(212, 148, 74, 0.1);
        box-shadow: var(--shadow-md);
    }
    .nav-links.open { display: flex; }
    .nav-toggle { display: block; }
    .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    section { padding: 4rem 1.5rem; }
    nav { padding: 0.9rem 1.5rem; }
    nav.scrolled { padding: 0.6rem 1.5rem; }
}
