/* Grooming by Brianna — warm, local, mobile-first */

:root {
    --color-bg: #faf6ef;
    --color-bg-alt: #f0ebe1;
    --color-surface: #fffcf7;
    --color-ink: #1c1915;
    --color-ink-muted: #6b6358;
    --color-accent: #c45536;
    --color-accent-hover: #a8432a;
    --color-accent-soft: rgba(196, 85, 54, 0.08);
    --color-forest: #2d4a3e;
    --color-forest-soft: #3d6352;
    --color-forest-bg: rgba(45, 74, 62, 0.06);
    --font-display: "Fraunces", Georgia, serif;
    --font-body: "Source Sans 3", system-ui, sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(28, 25, 21, 0.07);
    --shadow-lg: 0 12px 40px rgba(28, 25, 21, 0.1);
    --shadow-sm: 0 2px 8px rgba(28, 25, 21, 0.05);
    --header-h: 4rem;
    --max: 1080px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--color-ink);
    background: var(--color-bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

main { flex: 1; }
img { max-width: 100%; height: auto; display: block; }

a {
    color: var(--color-forest-soft);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
    transition: color 0.2s var(--ease);
}
a:hover { color: var(--color-accent); }

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 100;
    padding: 0.75rem 1rem; background: var(--color-ink); color: var(--color-surface);
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; border-radius: 8px; }

.visually-hidden {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ===== Header ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(250, 246, 239, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(45, 74, 62, 0.08);
    transition: box-shadow 0.3s;
}

.header-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    height: var(--header-h);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--color-ink);
}
.logo:hover { color: var(--color-ink); }

.logo-mark { font-size: 1.6rem; line-height: 1; }

.logo-text { display: flex; flex-direction: column; gap: 0; }

.logo-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.2;
    letter-spacing: -0.015em;
}

.logo-sub {
    font-size: 0.7rem;
    color: var(--color-ink-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Hamburger */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.nav-toggle-bar {
    display: block;
    width: 1.35rem;
    height: 2px;
    background: var(--color-ink);
    border-radius: 2px;
    transition: all 0.25s var(--ease);
    transform-origin: center;
}

body.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.site-nav {
    position: fixed;
    inset: 0;
    top: var(--header-h);
    background: var(--color-bg);
    padding: 2rem 1.5rem 3rem;
    transform: translateX(100%);
    transition: transform 0.3s var(--ease);
    overflow-y: auto;
    z-index: 40;
}

.site-nav.is-open { transform: translateX(0); }

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.nav-list a {
    display: block;
    padding: 1rem 1.15rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-ink);
    transition: background 0.2s, color 0.2s;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
    background: var(--color-surface);
    color: var(--color-forest);
}

.nav-list a.nav-cta {
    background: var(--color-accent);
    color: #fff;
    text-align: center;
    margin-top: 0.75rem;
    border-radius: var(--radius);
    font-size: 1.05rem;
}
.nav-list a.nav-cta:hover { background: var(--color-accent-hover); color: #fff; }

body.nav-open { overflow: hidden; }

@media (min-width: 768px) {
    .nav-toggle { display: none; }
    body.nav-open { overflow: auto; }

    .site-nav {
        position: static;
        transform: none;
        padding: 0;
        background: transparent;
        overflow: visible;
    }

    .nav-list {
        flex-direction: row;
        align-items: center;
        gap: 0.2rem;
    }

    .nav-list a {
        padding: 0.5rem 0.85rem;
        font-size: 0.95rem;
    }

    .nav-list a.nav-cta {
        margin-top: 0;
        margin-left: 0.25rem;
        border-radius: 999px;
        padding: 0.5rem 1.15rem;
    }
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-ink);
}

h1 { font-size: clamp(2rem, 5vw, 2.75rem); margin: 0 0 0.65rem; }
h2 { font-size: clamp(1.4rem, 3vw, 1.8rem); margin: 0 0 0.75rem; }
h3 { font-size: 1.15rem; margin: 0 0 0.5rem; }

/* ===== Layout ===== */
.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 1.25rem;
}
.container.narrow { max-width: 40rem; }
.text-center { text-align: center; }

.lead {
    font-size: 1.15rem;
    color: var(--color-ink-muted);
    margin: 0 0 1.25rem;
    max-width: 34rem;
    line-height: 1.55;
}

.intro {
    color: var(--color-ink-muted);
    max-width: 42rem;
    line-height: 1.55;
}

.section { padding: 3rem 0; }
.section-alt {
    background: var(--color-bg-alt);
    border-block: 1px solid rgba(45, 74, 62, 0.06);
}
.section-cta { padding: 3.5rem 0; }
.section-heading { margin-top: 2.5rem; }

.page-head { padding: 2.75rem 0 1.25rem; }
.page-head-book { padding-bottom: 0.5rem; }
.page-head .lead { margin-bottom: 0; }

.eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-accent);
    margin: 0 0 0.75rem;
}

/* ===== Hero ===== */
.hero {
    padding: 3rem 0 3.5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -20%;
    width: 70%;
    height: 160%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,85,54,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 50%;
    height: 120%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45,74,62,0.05) 0%, transparent 65%);
    pointer-events: none;
}

.hero-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 1.25rem;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.2rem, 6vw, 3.25rem);
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.hero .lead {
    max-width: 30rem;
    font-size: 1.2rem;
    margin-bottom: 1.75rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 1.4rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s var(--ease);
    -webkit-tap-highlight-color: transparent;
}

.btn-primary {
    background: var(--color-accent);
    color: #fff;
    box-shadow: 0 2px 8px rgba(196,85,54,0.2);
}
.btn-primary:hover {
    background: var(--color-accent-hover);
    color: #fff;
    box-shadow: 0 4px 16px rgba(196,85,54,0.25);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--color-surface);
    color: var(--color-forest);
    border-color: rgba(45, 74, 62, 0.2);
    box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
    border-color: var(--color-forest);
    background: var(--color-forest-bg);
    color: var(--color-forest);
}

.btn-ghost {
    background: transparent;
    color: var(--color-ink);
    border-color: rgba(28, 25, 21, 0.18);
}
.btn-ghost:hover {
    background: var(--color-surface);
    border-color: rgba(28, 25, 21, 0.3);
    color: var(--color-ink);
}

.btn-lg {
    padding: 0.85rem 2rem;
    font-size: 1.05rem;
}

/* ===== Feature grid (homepage) ===== */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1rem;
}
@media (min-width: 540px) {
    .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.25rem;
    text-align: center;
    border: 1px solid rgba(45,74,62,0.06);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.6rem;
}

.feature-card h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--color-forest);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--color-ink-muted);
    margin: 0;
    line-height: 1.45;
}

/* ===== Prose (letter) ===== */
.prose p { margin: 0 0 1rem; }
.prose .signature {
    margin-top: 1.5rem;
    font-style: italic;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-forest);
}

.letter-section {
    position: relative;
}

.letter-section::before {
    content: "\201C";
    position: absolute;
    top: -0.35rem;
    left: -0.25rem;
    font-family: var(--font-display);
    font-size: 4rem;
    color: rgba(196,85,54,0.12);
    line-height: 1;
    pointer-events: none;
}
@media (min-width: 540px) {
    .letter-section::before { font-size: 6rem; left: -1rem; top: -0.5rem; }
}

/* ===== Summary list ===== */
.summary-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 36rem;
}

.summary-list li {
    position: relative;
    padding: 0.9rem 0 0.9rem 2rem;
    border-bottom: 1px solid rgba(45, 74, 62, 0.08);
    font-size: 1.05rem;
}

.summary-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.25rem;
    width: 0.5rem;
    height: 0.5rem;
    background: var(--color-accent);
    border-radius: 50%;
}

.summary-list li:last-child { border-bottom: none; }

/* ===== Cards ===== */
.card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.35rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(45, 74, 62, 0.06);
}

.card-parking {
    border-left: 4px solid var(--color-forest);
}

.card-parking h3 { color: var(--color-forest); }

.card-inline-cta {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    background: var(--color-forest);
    color: #fff;
    border-color: transparent;
}

.card-inline-cta p { color: rgba(255,255,255,0.92); }
.card-inline-cta strong { color: #fff; }

.card-inline-cta .btn-primary {
    background: #fff;
    color: var(--color-forest);
    box-shadow: none;
}
.card-inline-cta .btn-primary:hover {
    background: var(--color-bg);
    color: var(--color-forest);
}

@media (min-width: 540px) {
    .card-inline-cta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .card-inline-cta p { margin: 0; }
}

/* ===== CTA section ===== */
.section-cta {
    background: var(--color-forest);
    color: #fff;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -25%;
    width: 60%;
    height: 200%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 60%);
    pointer-events: none;
}

.section-cta h2 { color: #fff; }
.section-cta p { color: rgba(255,255,255,0.82); max-width: 32rem; margin-left: auto; margin-right: auto; }

.section-cta .btn-primary {
    background: #fff;
    color: var(--color-forest);
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.section-cta .btn-primary:hover {
    background: var(--color-bg);
    transform: translateY(-1px);
    color: var(--color-forest);
}

/* ===== Tables (services) ===== */
.table-wrap {
    overflow-x: auto;
    margin: 0 0 1rem;
    border-radius: var(--radius);
    border: 1px solid rgba(45, 74, 62, 0.1);
    background: var(--color-surface);
    box-shadow: var(--shadow-sm);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.96rem;
}

.price-table th,
.price-table td {
    padding: 0.9rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(45, 74, 62, 0.06);
}

.price-table th {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: var(--color-forest-bg);
    color: var(--color-forest);
}

.price-table tbody tr:last-child td { border-bottom: none; }

.price-table tbody tr:hover { background: rgba(45,74,62,0.02); }

.price-table .price-col,
.price-table tbody tr td:last-child:not(.price-col) {
    font-weight: 700;
    color: var(--color-forest);
    white-space: nowrap;
    text-align: right;
}

.fine-print {
    font-size: 0.88rem;
    color: var(--color-ink-muted);
    margin: 0.5rem 0 1rem;
}

/* ===== Contact grid ===== */
.grid-contact {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .grid-contact { grid-template-columns: repeat(2, 1fr); }
    .contact-block-wide { grid-column: 1 / -1; }
}

.contact-block {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid rgba(45,74,62,0.06);
    box-shadow: var(--shadow-sm);
}

.contact-block h2 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--color-forest);
}

.contact-dl { margin: 0; }

.contact-dl dt {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-ink-muted);
    margin-top: 0.75rem;
}
.contact-dl dt:first-child { margin-top: 0; }

.contact-dl dd {
    margin: 0.2rem 0 0;
    font-size: 1.15rem;
    font-weight: 600;
}

.contact-dl a { text-decoration: none; color: var(--color-accent); }
.contact-dl a:hover { text-decoration: underline; }

.hours-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(45, 74, 62, 0.06);
    font-size: 0.95rem;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li span:first-child { font-weight: 600; }

.address-block {
    font-style: normal;
    margin: 0 0 1rem;
    line-height: 1.7;
}

.amenity-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.amenity-list li {
    background: var(--color-forest-bg);
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--color-forest);
}

/* ===== Footer ===== */
.site-footer {
    background: var(--color-forest);
    color: rgba(255, 252, 247, 0.9);
    padding: 2.5rem 1.25rem 2rem;
    margin-top: auto;
}

.footer-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    gap: 1.25rem;
    text-align: center;
}

@media (min-width: 640px) {
    .footer-inner { grid-template-columns: 1fr 1fr; text-align: left; }
    .footer-copy { grid-column: 1 / -1; }
}

.footer-brand p, .footer-contact p {
    margin: 0.35rem 0 0;
    font-size: 0.92rem;
    opacity: 0.85;
}

.site-footer a { color: #fff; text-decoration: none; font-weight: 600; }
.site-footer a:hover { text-decoration: underline; color: #fff; }

.footer-hours { font-size: 0.88rem; opacity: 0.75; }

.footer-copy {
    font-size: 0.8rem;
    opacity: 0.6;
    margin: 0.5rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ===== Mobile floating CTA ===== */
.mobile-cta {
    display: block;
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 30;
    background: var(--color-accent);
    color: #fff;
    text-align: center;
    padding: 0.85rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(196,85,54,0.35);
    transition: transform 0.2s var(--ease), opacity 0.2s;
    font-family: var(--font-body);
}
.mobile-cta:hover { background: var(--color-accent-hover); color: #fff; }
.mobile-cta.hidden { transform: translateY(120%); opacity: 0; pointer-events: none; }

@media (min-width: 768px) {
    .mobile-cta { display: none; }
}

/* ===== Review card (cancel + book) ===== */
.review-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.25rem;
    border: 1px solid rgba(45,74,62,0.08);
    box-shadow: var(--shadow-sm);
}

.review-card h3 {
    color: var(--color-forest);
    margin-top: 1.25rem;
    font-size: 1rem;
}
.review-card h3:first-child { margin-top: 0; }
.review-card p { margin: 0.25rem 0; }

/* ===== Success icon ===== */
.success-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--color-forest);
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 16px rgba(45,74,62,0.2);
}

/* ===== Responsive touch targets ===== */
@media (max-width: 767px) {
    .btn { min-height: 48px; }
    .price-table th, .price-table td { padding: 0.75rem 0.65rem; }
    .section { padding: 2.25rem 0; }
}

/* ===== Smooth fade-in on load ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-inner,
.page-head .container {
    animation: fadeUp 0.5s var(--ease) both;
}
