/* ================================
   Funky Dogs — Custom Stylesheet
   ================================ */

:root {
    --brand: #8C4799;
    --brand-dark: #6B3276;
    --brand-light: #F3E9F5;
    --accent: #F2B705;
    --ink: #1C1B1F;
    --ink-soft: #49454F;
    --muted: #79747E;
    --cream: #FBF7F2;
    --cream-dark: #F3ECE1;
    --line: #E7E0D6;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px rgba(28,27,31,.06), 0 1px 3px rgba(28,27,31,.08);
    --shadow-md: 0 4px 12px rgba(28,27,31,.08), 0 2px 4px rgba(28,27,31,.06);
    --shadow-lg: 0 20px 40px -12px rgba(108,50,118,.25), 0 8px 16px rgba(28,27,31,.08);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.015em;
    margin: 0 0 .5em;
    line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); font-weight: 800; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.75rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: var(--brand); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--brand-dark); }

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

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
    margin: 0 0 1rem;
}
.eyebrow-dark { color: var(--brand); }

.lead { font-size: 1.1rem; color: var(--ink-soft); max-width: 620px; margin-left: auto; margin-right: auto; }

/* ================================
   Navigation
   ================================ */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(251,247,242,.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .25s ease, box-shadow .25s ease;
}
.site-nav.is-scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }

.nav-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.brand:hover { color: var(--brand); }
.brand-mark { font-size: 1.4rem; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.nav-menu a {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 10px;
    font-weight: 500;
    font-size: .95rem;
    color: var(--ink-soft);
    transition: background .2s ease, color .2s ease;
}
.nav-menu a:hover { background: var(--brand-light); color: var(--brand-dark); }
.nav-menu .nav-cta {
    background: var(--brand);
    color: var(--white);
    padding: 9px 18px;
    margin-left: 6px;
}
.nav-menu .nav-cta:hover { background: var(--brand-dark); color: var(--white); }
.nav-menu .nav-cta i { margin-right: 6px; font-size: .85em; }

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
}

/* ================================
   Hero
   ================================ */
.hero {
    position: relative;
    min-height: 92vh;
    padding: 160px 24px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(160deg, #2a1530 0%, var(--brand-dark) 55%, var(--brand) 100%);
    color: var(--white);
    text-align: center;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(242,183,5,.18), transparent 45%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,.1), transparent 50%),
        radial-gradient(circle at 50% 120%, rgba(140,71,153,.6), transparent 60%);
    pointer-events: none;
}
.hero-content { position: relative; max-width: 820px; z-index: 1; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero .accent { color: var(--accent); font-style: italic; font-weight: 600; }
.hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,.82);
    max-width: 620px;
    margin: 0 auto 2.2rem;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: clamp(20px, 5vw, 56px);
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}
.hero-trust li {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-trust strong {
    font-family: 'Fraunces', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}
.hero-trust span {
    font-size: .8rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
    margin-top: 6px;
}

/* ================================
   Buttons
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
    text-decoration: none;
    line-height: 1;
}
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-primary {
    background: var(--white);
    color: var(--brand-dark);
    box-shadow: var(--shadow-md);
}
.btn-primary:hover {
    background: var(--accent);
    color: var(--ink);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.4);
}
.btn-ghost:hover {
    background: rgba(255,255,255,.1);
    border-color: var(--white);
    color: var(--white);
}

/* Dark-on-light primary variant */
.section-contact .btn-primary {
    background: var(--accent);
    color: var(--ink);
}
.section-contact .btn-primary:hover { background: var(--white); }

/* ================================
   Sections (shared)
   ================================ */
.section { padding: clamp(64px, 9vw, 110px) 0; }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { margin-bottom: 14px; }
.section-head-light h2, .section-head-light .lead { color: var(--white); }
.section-head-light .lead { color: rgba(255,255,255,.82); }

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

.grid-two {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(32px, 6vw, 80px);
    align-items: center;
}

.about-img img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    background: var(--brand-light);
    aspect-ratio: 4/5;
    object-fit: cover;
    width: 100%;
}

.about-copy h2 { margin-top: 8px; }

.tick-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: grid;
    gap: 10px;
}
.tick-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--ink);
    font-weight: 500;
}
.tick-list i {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-light);
    color: var(--brand);
    border-radius: 50%;
    font-size: .7rem;
    margin-top: 3px;
}

/* ================================
   Services
   ================================ */
.section-services { background: var(--cream); }

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.service-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card.featured {
    border-color: var(--brand);
    background: linear-gradient(180deg, var(--white) 0%, var(--brand-light) 100%);
}

.badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--brand);
    color: var(--white);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--brand-light);
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
}

.service-card h3 { margin-bottom: 8px; }
.service-card p { font-size: .97rem; margin-bottom: 16px; }

.price {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--brand-dark);
    margin: 0;
}

.services-note {
    text-align: center;
    color: var(--muted);
    font-size: .95rem;
    margin-top: 40px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

/* ================================
   Why Us (dark band)
   ================================ */
.section-why {
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
    color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 28px;
}
.why-item i {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255,255,255,.12);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
}
.why-item h4 { color: var(--white); margin-bottom: 8px; }
.why-item p { color: rgba(255,255,255,.78); font-size: .97rem; margin: 0; }

/* ================================
   Gallery
   ================================ */
.section-gallery { background: var(--white); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}
.gallery-grid figure {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 4/5;
    background: var(--brand-light);
}
.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.gallery-grid figure:hover img { transform: scale(1.05); }

/* ================================
   Reviews
   ================================ */
.section-reviews { background: var(--cream-dark); }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.review {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    margin: 0;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
}
.stars { color: var(--accent); margin-bottom: 14px; letter-spacing: 2px; }
.review p {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    line-height: 1.55;
    color: var(--ink);
    margin-bottom: 18px;
}
.review footer {
    font-size: .9rem;
    font-weight: 600;
    color: var(--muted);
}

.review-featured {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 48px 40px;
    text-align: center;
    border: none;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.review-featured .stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.review-featured p {
    font-size: 1.35rem;
    line-height: 1.5;
    margin-bottom: 24px;
}
.review-featured footer { font-size: 1rem; }

.reviews-cta { text-align: center; margin: 36px 0 0; }

.btn-outline {
    background: transparent;
    color: var(--brand);
    border-color: var(--brand);
}
.btn-outline:hover {
    background: var(--brand);
    color: var(--white);
    border-color: var(--brand);
}

/* ================================
   Contact
   ================================ */
.section-contact {
    background: linear-gradient(180deg, #1f1022 0%, #2a1530 100%);
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
}
.contact-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: background .2s ease, border-color .2s ease;
}
.contact-card:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.18);
}
.contact-card i {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 14px;
}
.contact-card h4 { color: var(--white); margin-bottom: 10px; }
.contact-card a { color: var(--white); font-weight: 500; }
.contact-card a:hover { color: var(--accent); }
.contact-card .muted {
    display: block;
    font-size: .85rem;
    color: rgba(255,255,255,.55);
    margin: 10px 0 0;
}

.hours {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    font-size: .95rem;
}
.hours li {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    color: rgba(255,255,255,.8);
    border-bottom: 1px dashed rgba(255,255,255,.1);
}
.hours li:last-child { border-bottom: 0; }

.contact-foot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}
.social {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, transform .2s ease;
}
.social:hover { background: var(--accent); color: var(--ink); transform: translateY(-2px); }

/* ================================
   Footer
   ================================ */
.site-footer {
    background: #13070f;
    color: rgba(255,255,255,.7);
    padding: 40px 0;
}
.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
}
.site-footer .brand-name {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--white);
}
.site-footer .muted { font-size: .88rem; color: rgba(255,255,255,.55); margin: 4px 0 0; }
.footer-links { display: flex; gap: 18px; }
.footer-links a { color: rgba(255,255,255,.7); font-size: .92rem; }
.footer-links a:hover { color: var(--accent); }
.copyright { font-size: .82rem; }

.muted { color: var(--muted); }

/* ================================
   Responsive
   ================================ */
@media (max-width: 880px) {
    .grid-two { grid-template-columns: 1fr; }
    .about-img { max-width: 440px; margin: 0 auto; }

    .nav-toggle { display: inline-flex; }
    .nav-menu {
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        background: var(--cream);
        border-bottom: 1px solid var(--line);
        padding: 12px 16px 20px;
        gap: 2px;
        box-shadow: var(--shadow-md);
        display: none;
    }
    .nav-menu.is-open { display: flex; }
    .nav-menu a { padding: 12px 14px; border-radius: 10px; }
    .nav-menu .nav-cta { margin-left: 0; margin-top: 6px; text-align: center; }
}

@media (max-width: 520px) {
    .hero { padding-top: 130px; }
    .hero-trust { gap: 18px; }
    .hero-trust strong { font-size: 1.5rem; }
    .btn { padding: 13px 22px; font-size: .95rem; }
    .service-card { padding: 26px 22px; }
}
