@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@400;700&display=swap');

:root{
    --primary:#1A1A2E;
    --secondary:#16213E;
    --accent:#E94560;
    --bg:#f9f8f6;
    --surface:#fff;
    --text:#1a1a2e;
    --muted:#6b7280;
    --radius:16px;
    --shadow:0 4px 24px rgba(0,0,0,.10);
    --transition:all .3s cubic-bezier(.4,0,.2,1);
}

/* Global resets */
*,*::before,*::after{
    box-sizing:border-box;
    margin:0;
    padding:0;
}
html{
    scroll-behavior:smooth;
}
body{
    font-family:'Inter',sans-serif;
    background:var(--bg);
    color:var(--text);
    line-height:1.6;
}

/* Typography */
h1{
    font-family:'Playfair Display',serif;
    font-size:clamp(2.5rem,6vw,4rem);
    font-weight:700;
}
h2{
    font-family:'Playfair Display',serif;
    font-size:clamp(2rem,5vw,3rem);
    margin-bottom:.5em;
}
h3{
    font-family:'Playfair Display',serif;
    font-size:clamp(1.5rem,4vw,2rem);
    margin:.75em 0 .5em;
}
p,li{
    font-size:clamp(1rem,2.5vw,1.125rem);
}
a{
    color:inherit;
    text-decoration:none;
    transition:var(--transition);
}

/* Layout helpers */
.container{
    width:90%;
    max-width:1200px;
    margin:auto;
    padding:1rem;
}
.section{
    padding:4rem 0;
    background:var(--surface);
}
.section-title{
    text-align:center;
    margin-bottom:2rem;
}

/* Grid utilities */
.card-grid{
    display:grid;
    gap:1.5rem;
}
.three-col{
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
}
.two-col{
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
}
.six-col{
    grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
}

/* Glass navigation */
.glass-nav{
    position:sticky;
    top:0;
    backdrop-filter:blur(12px);
    background:rgba(255,255,255,.4);
    box-shadow:var(--shadow);
    z-index:10;
}
.glass-nav .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.logo{
    font-weight:600;
    font-size:1.25rem;
}
.nav-links{
    list-style:none;
    display:flex;
    gap:1.5rem;
}
.nav-links a{
    position:relative;
    font-weight:500;
}
.nav-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-2px;
    width:100%;
    height:2px;
    background:var(--primary);
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .3s ease;
}
.nav-links a:hover::after{
    transform:scaleX(1);
}

/* Hero */
.hero-section{
    position:relative;
    background-size:cover;
    background-position:center;
    color:#fff;
    min-height:70vh;
    display:flex;
    align-items:center;
}
.hero-section .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.4);
}
.hero-content{
    position:relative;
    text-align:center;
    max-width:800px;
    margin:auto;
}
.hero-cta{
    margin-top:2rem;
    display:flex;
    gap:1rem;
    justify-content:center;
}

/* Pill buttons */
.pill-btn{
    display:inline-block;
    padding:.75em 1.5em;
    border:none;
    border-radius:999px;
    font-weight:600;
    cursor:pointer;
    transition:var(--transition);
    background:linear-gradient(135deg,var(--primary),var(--accent));
    color:#fff;
    text-align:center;
}
.pill-btn.secondary{
    background:linear-gradient(135deg,var(--secondary),var(--accent));
}
.pill-btn:hover{
    transform:translateY(-2px);
    filter:brightness(1.08);
    box-shadow:0 8px 16px rgba(0,0,0,.15);
}

/* Cards */
.card{
    background:var(--surface);
    border-radius:var(--radius);
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:var(--transition);
    display:flex;
    flex-direction:column;
}
.card img{
    width:100%;
    height:auto;
    object-fit:cover;
}
.card:hover{
    transform:translateY(-6px);
}

/* Inputs & forms */
input,
textarea,
button{
    font-family:inherit;
}
input,
textarea{
    width:100%;
    padding:.75em 1em;
    border:1px solid var(--muted);
    border-radius:8px;
    background:var(--surface);
    transition:var(--transition);
}
input:focus,
textarea:focus{
    outline:none;
    border-color:var(--primary);
    box-shadow:0 0 0 3px rgba(26,26,46,.2);
}

/* Newsletter form */
.newsletter-form{
    display:flex;
    flex-wrap:wrap;
    gap:.75rem;
    margin-top:1.5rem;
}
.newsletter-form input{
    flex:1 1 250px;
}
.newsletter-form button{
    flex:0 0 auto;
}

/* Pricing table */
.pricing-table{
    display:grid;
    gap:2rem;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
}
.price-card{
    background:var(--surface);
    padding:2rem;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    text-align:center;
    display:flex;
    flex-direction:column;
}
.price-card.featured{
    border:2px solid var(--accent);
}
.price-card .price{
    font-size:clamp(1.75rem,4vw,2.5rem);
    margin:.5rem 0 1rem;
}
.price-card ul{
    list-style:none;
    margin:1rem 0;
    flex-grow:1;
}
.price-card li{
    margin:.25rem 0;
}

/* Table */
.hours-table{
    width:100%;
    border-collapse:collapse;
}
.hours-table th,
.hours-table td{
    padding:.75rem 1rem;
    text-align:left;
}
.hours-table th{
    background:var(--primary);
    color:#fff;
}

/* Footer */
.footer-section{
    background:var(--secondary);
    color:#fff;
    padding:3rem 0 1.5rem;
}
.footer-section a{
    color:#fff;
}
.footer-section .footer-col ul{
    list-style:none;
    margin-top:.5rem;
}
.footer-section .footer-col li{
    margin:.5rem 0;
}
.footer-bottom{
    border-top:1px solid rgba(255,255,255,.2);
    padding-top:1rem;
    text-align:center;
    font-size:.875rem;
}

/* Social links */
.social-links{
    display:flex;
    gap:.75rem;
}
.social-links a{
    text-decoration:underline;
}

/* Read more links */
.read-more{
    margin-top:auto;
    font-weight:600;
    color:var(--accent);
}

/* Reveal animation */
@keyframes fadeInUp{
    0%{
        opacity:0;
        transform:translateY(20px);
    }
    100%{
        opacity:1;
        transform:translateY(0);
    }
}
.reveal{
    opacity:0;
    transform:translateY(20px);
}
.reveal.active{
    animation:fadeInUp .6s forwards;
}

/* Responsive tweaks */
@media (max-width:640px){
    .nav-links{
        flex-direction:column;
        background:rgba(255,255,255,.9);
        position:absolute;
        top:100%;
        right:0;
        width:200px;
        padding:1rem;
        box-shadow:var(--shadow);
        display:none;
    }
    .nav-links.show{
        display:flex;
    }
    .hero-cta{
        flex-direction:column;
    }
    .card-grid{
        grid-template-columns:1fr;
    }
    .pricing-table{
        grid-template-columns:1fr;
    }
    .footer-section .container{
        grid-template-columns:1fr;
    }
}

/* Misc */
details{
    margin:.75rem 0;
    background:var(--surface);
    padding:1rem;
    border-radius:8px;
    box-shadow:var(--shadow);
}
summary{
    font-weight:600;
    cursor:pointer;
}
details[open] summary{
    margin-bottom:.5rem;
}
img{
    display:block;
    max-width:100%;
    height:auto;
}