/*
Theme Name: Posh Pet Parlor
Theme URI: https://poshpetparlor.com
Author: Posh Pet Parlor LLC
Description: Custom luxury one-on-one dog grooming theme for Posh Pet Parlor LLC. Teal, black, and white color palette with elegant typography.
Version: 2.0.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: posh-pet-parlor
*/

/* ===== CSS VARIABLES ===== */
:root {
    --teal: #12a9a2;
    --teal-hover: #0e8a84;
    --teal-light: #e6f5f4;
    --teal-xlight: #f2fafa;
    --black: #111111;
    --black-soft: #1a1a1a;
    --white: #ffffff;
    --offwhite: #fafafa;
    --gray-dark: #444444;
    --gray: #777777;
    --gray-light: #bbbbbb;
    --border: #e5e5e5;
    --border-dark: #222222;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--gray-dark);
    background: var(--white);
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color 0.2s; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--black);
    padding: 8px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    color: var(--gray-light);
}
.top-bar a { color: var(--teal); font-weight: 500; }
.top-bar-right { display: flex; gap: 16px; }
.top-bar-right a { color: var(--gray-light); }
.top-bar-right a:hover { color: var(--teal); }

/* ===== NAVIGATION ===== */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 50px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a {
    color: var(--gray-dark);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.nav-links a:hover { color: var(--teal); }
.nav-book {
    background: var(--teal) !important;
    color: var(--white) !important;
    padding: 8px 18px !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    font-size: 0.68rem !important;
    white-space: nowrap;
    border: 2px solid var(--teal) !important;
    transition: all 0.2s ease;
}
.nav-book:hover { background: var(--white) !important; color: var(--teal) !important; border-color: var(--teal) !important; }
.nav-book-2 {
    background: transparent !important;
    color: var(--teal) !important;
    border: 2px solid var(--teal) !important;
    padding: 8px 18px !important;
    transition: all 0.2s ease;
}
.nav-book-2:hover { background: var(--teal) !important; color: var(--white) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 22px; height: 1.5px; background: var(--black); display: block; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 15px 36px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}
.btn-teal { background: var(--teal); color: var(--white); border: 1.5px solid var(--teal); transition: all 0.2s ease; }
.btn-teal:hover { background: var(--white); color: var(--teal); border-color: var(--teal); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--black); border: 1.5px solid var(--border); transition: all 0.2s ease; }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.btn-outline-teal { background: transparent; color: var(--teal); border: 1.5px solid var(--teal); transition: all 0.2s ease; }
.btn-outline-teal:hover { background: var(--teal); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--teal); border: 1.5px solid var(--teal); transition: all 0.2s ease; }
.btn-outline-white:hover { background: var(--teal); color: var(--white); }
.sec-black .btn-teal:hover { background: var(--black); color: var(--teal); }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { transform: translateY(-2px); }

/* ===== SECTIONS ===== */
.sec-white { background: var(--white); padding: 60px 24px; }
.sec-offwhite { background: var(--offwhite); padding: 60px 24px; }
.svc-section-title { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 500; color: var(--teal); text-align: center; margin-bottom: 8px; }
.svc-section-title::after { content: ''; display: block; width: 50px; height: 2px; background: var(--teal); margin: 12px auto 28px; }
.promo-banner { background: linear-gradient(135deg, #0e8c86, var(--teal), #14c4bc, var(--teal), #0e8c86); background-size: 300% 100%; animation: promoShimmer 6s ease infinite; padding: 18px 24px; text-align: center; position: relative; overflow: hidden; box-shadow: 0 4px 16px rgba(18, 169, 162, 0.3); }
@keyframes promoShimmer { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.promo-banner::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent); animation: promoSweep 4s ease-in-out infinite; }
@keyframes promoSweep { 0% { left: -100%; } 100% { left: 100%; } }
.promo-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }
.promo-icon { font-size: 1.4rem; animation: promoBounce 2s ease infinite; }
@keyframes promoBounce { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.2); } }
.promo-text { color: var(--white); font-family: 'Montserrat', sans-serif; font-size: 0.92rem; font-weight: 600; letter-spacing: 0.03em; text-shadow: 0 1px 3px rgba(0,0,0,0.15); }
.promo-text strong { font-weight: 800; text-transform: uppercase; }
.promo-banner a { color: var(--white); text-decoration: underline; font-weight: 700; }
.sec-off { background: var(--offwhite); padding: 90px 24px; }
.sec-teal-light { background: var(--teal-xlight); padding: 90px 24px; }
.sec-black { background: var(--black); padding: 70px 24px; color: var(--white); }
.container { max-width: 1100px; margin: 0 auto; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; max-width: 580px; margin: 0 auto 56px; }
.section-tag { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; }
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 14px;
}
.sec-black .section-title { color: var(--white); }
.section-desc { font-size: 0.92rem; color: var(--gray); line-height: 1.8; font-weight: 300; }

/* ===== HERO ===== */
.hero { display: flex; align-items: center; background: var(--white); overflow: hidden; }
.hero-inner { max-width: 1100px; margin: 0 auto; padding: 40px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-tag { display: inline-flex; align-items: center; gap: 10px; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 20px; }
.hero-tag::before { content: ''; width: 28px; height: 1.5px; background: var(--teal); }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: 3.6rem; color: var(--black); line-height: 1.12; margin-bottom: 20px; font-weight: 500; }
.hero h1 em { font-style: italic; color: var(--teal); }
.hero-sub { font-size: 0.95rem; color: var(--gray); line-height: 1.8; margin-bottom: 36px; font-weight: 300; max-width: 440px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-img { position: relative; }
.hero-img-box { width: 100%; aspect-ratio: 4/4; max-height: 420px; background: var(--teal-light); border-radius: 200px 200px 16px 16px; display: flex; align-items: center; justify-content: center; border: 2px dashed var(--border); overflow: hidden; }
.hero-img-box img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.hero-float { position: absolute; bottom: 24px; left: -24px; background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 14px 18px; box-shadow: 0 6px 24px rgba(0,0,0,0.06); display: flex; align-items: center; gap: 10px; }
.hero-float-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--teal); }
.hero-float-text { font-size: 0.78rem; font-weight: 600; color: var(--black); }
.hero-float-text span { display: block; font-weight: 300; font-size: 0.7rem; color: var(--gray); }

/* ===== PLACEHOLDER ===== */
.placeholder { text-align: center; padding: 20px; font-size: 0.82rem; color: var(--gray); }
.placeholder-icon { font-size: 1.8rem; display: block; margin-bottom: 6px; opacity: 0.35; }

/* ===== USP GRID ===== */
.usp-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.usp-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--teal-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 1.3rem; }
.usp-item h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; color: var(--black); margin-bottom: 6px; }
.usp-item p { font-size: 0.83rem; color: var(--gray); line-height: 1.65; font-weight: 300; }

/* ===== SERVICE CARDS ===== */
.svc-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 36px 28px; text-align: center; transition: all 0.3s; position: relative; overflow: hidden; }
.svc-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--teal); transform: scaleX(0); transition: transform 0.3s; }
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.06); border-color: transparent; }
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.svc-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--black); margin-bottom: 8px; }
.svc-card p { font-size: 0.84rem; color: var(--gray); line-height: 1.65; font-weight: 300; }
.svc-price { margin-top: 14px; font-size: 0.88rem; color: var(--teal); font-weight: 600; }

/* ===== FEATURE SECTION ===== */
.feature-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.feature-img { width: 100%; aspect-ratio: 4/3; background: var(--teal-light); border: 2px dashed var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.feature-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.feature-text h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 500; color: var(--black); line-height: 1.2; margin-bottom: 18px; }
.feature-text p { font-size: 0.92rem; color: var(--gray); line-height: 1.8; font-weight: 300; margin-bottom: 12px; }
.feature-list { list-style: none; margin: 24px 0 32px; }
.feature-list li { display: flex; align-items: center; gap: 12px; padding: 8px 0; font-size: 0.88rem; color: var(--black); font-weight: 400; }
.feature-list li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }

/* ===== TESTIMONIALS ===== */
.test-carousel-wrap { max-width: 700px; margin: 0 auto; overflow: hidden; position: relative; }
.test-carousel { display: flex; transition: transform 0.5s ease; }
.test-carousel .test-card { min-width: 100%; box-sizing: border-box; }
.test-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 32px; text-align: center; }
.test-stars { color: var(--teal); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 14px; }
.test-text { font-family: 'Cormorant Garamond', serif; font-size: 1.08rem; font-style: italic; color: var(--gray-dark); line-height: 1.8; margin-bottom: 18px; }
.test-author { font-size: 0.82rem; font-weight: 600; color: var(--black); }
.test-pet { font-size: 0.75rem; color: var(--gray); font-weight: 300; }
.test-dots { text-align: center; margin-top: 20px; }
.test-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; background: var(--border); margin: 0 5px; cursor: pointer; transition: background 0.3s; }
.test-dot.active { background: var(--teal); }

/* ===== CTA BANNER ===== */
.cta-center { text-align: center; }
.cta-center h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 500; color: var(--white); margin-bottom: 12px; }
.cta-center p { font-size: 0.92rem; color: var(--gray-light); margin-bottom: 28px; font-weight: 300; }

/* ===== PAGE HERO ===== */
.page-hero { padding: 60px 24px; text-align: center; background: var(--teal-xlight); border-bottom: 1px solid var(--border); }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; color: var(--black); font-weight: 500; margin-bottom: 10px; }
.page-hero p { font-size: 0.95rem; color: var(--gray); font-weight: 300; }

/* ===== ABOUT ===== */
.about-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-grid-flip { direction: ltr; }
.about-grid-flip .about-text { order: 1; }
.about-grid-flip .about-img { order: 2; }
.about-img { width: 100%; aspect-ratio: 4/3; background: var(--teal-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; border: 2px dashed var(--border); overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.about-text h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 500; color: var(--black); margin-bottom: 18px; }
.about-text p { font-size: 0.9rem; color: var(--gray); line-height: 1.8; font-weight: 300; margin-bottom: 14px; }

/* ===== VALUES ===== */
.values-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.val-card { text-align: center; padding: 32px 20px; background: var(--white); border: 1px solid var(--border); border-radius: 8px; }
.val-icon { width: 50px; height: 50px; border-radius: 50%; background: var(--teal-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 1.2rem; }
.val-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; color: var(--black); margin-bottom: 8px; }
.val-card p { font-size: 0.82rem; color: var(--gray); line-height: 1.7; font-weight: 300; }

/* ===== SERVICES LIST ===== */
.svc-list { max-width: 750px; margin: 0 auto; }
.svc-row { display: grid; grid-template-columns: 56px 1fr auto; gap: 18px; align-items: start; padding: 24px 0; border-bottom: 1px solid var(--border); }
.svc-row:last-child { border-bottom: none; }
.svc-row-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--teal-light); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-top: 2px; }
.svc-row-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; color: var(--black); margin-bottom: 4px; }
.svc-row-info p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; font-weight: 300; }
.svc-row-price { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--teal); font-weight: 600; padding-top: 4px; }
.svc-has-details { grid-template-columns: 56px 1fr auto; }
.svc-toggle-row { grid-column: 1 / -1; padding-left: 74px; margin-top: -8px; }
.svc-details { grid-column: 1 / -1; }
.svc-has-details { cursor: default; }
.svc-toggle { display: inline-flex; align-items: center; gap: 4px; font-size: 0.78rem; font-weight: 600; color: var(--teal); cursor: pointer; margin-top: 8px; transition: color 0.2s; }
.svc-toggle:hover { color: var(--black); }
.svc-toggle-arrow { font-size: 0.9rem; transition: transform 0.3s; }
.svc-details { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; padding: 0 0 0 56px; }
.svc-details.open { max-height: 500px; padding: 12px 0 8px 74px; }
.svc-details ul { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 24px; }
.svc-details li { font-size: 0.84rem; color: var(--gray-dark); font-weight: 400; padding-left: 18px; position: relative; }
.svc-details li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700; font-size: 0.8rem; }
.svc-note { max-width: 900px; margin: 40px auto 0; padding: 24px; border: 1px solid var(--border); border-radius: 8px; background: var(--teal-xlight); font-size: 0.85rem; color: var(--gray-dark); line-height: 1.7; text-align: center; font-weight: 300; }
.svc-note strong { color: var(--teal); font-weight: 600; }

/* ===== GALLERY ===== */
.gallery-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery-item { aspect-ratio: 1; background: var(--teal-light); border: 2px dashed var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: all 0.3s; cursor: pointer; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item:hover { transform: scale(1.02); box-shadow: 0 6px 24px rgba(0,0,0,0.06); }
.gallery-item.big { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }

/* ===== CONTACT ===== */
.contact-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 500; color: var(--black); margin-bottom: 24px; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-detail-icon { width: 42px; height: 42px; border-radius: 50%; background: var(--teal-light); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-detail h4 { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--black); font-weight: 600; margin-bottom: 2px; }
.contact-detail p { font-size: 0.88rem; color: var(--gray); font-weight: 300; }
.contact-hours { margin-top: 28px; padding: 24px 28px; background: var(--white); border: 2px solid var(--teal); border-radius: 8px; }
.contact-hours h4 { font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; }
.hours-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 0.88rem; color: var(--gray-dark); border-bottom: 1px solid var(--border); font-weight: 400; }
.hours-row span:last-child { font-weight: 500; color: var(--black); }
.hours-row:last-child { border-bottom: none; }
.map-box { margin-top: 28px; width: 100%; height: 240px; background: var(--teal-light); border: 2px dashed var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.map-box iframe { width: 100%; height: 100%; border: none; }

.contact-form { background: var(--offwhite); border: 1px solid var(--border); border-radius: 8px; padding: 36px; }
.contact-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--black); margin-bottom: 24px; text-align: center; }

/* Form styling */
.contact-form form { border: none !important; padding: 0 !important; background: transparent !important; }
.contact-form label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--black);
    letter-spacing: 0.02em;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="url"],
.contact-form input[type="number"],
.contact-form select,
.contact-form textarea {
    width: 100% !important;
    padding: 12px 14px !important;
    border: 1px solid var(--border) !important;
    border-radius: 6px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.88rem !important;
    color: var(--black) !important;
    background: var(--white) !important;
    transition: border-color 0.2s !important;
    box-sizing: border-box !important;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none !important;
    border-color: var(--teal) !important;
    box-shadow: 0 0 0 2px rgba(18, 169, 162, 0.15) !important;
}
.contact-form textarea {
    min-height: 120px !important;
    resize: vertical !important;
}
.contact-form button[type="submit"],
.contact-form input[type="submit"],
.contact-form .wp-block-button .wp-block-button__link,
.contact-form .wp-block-jetpack-button button {
    background: var(--teal) !important;
    color: var(--white) !important;
    border: none !important;
    padding: 14px 36px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
    width: 100% !important;
    margin-top: 8px !important;
}
.contact-form button[type="submit"]:hover,
.contact-form input[type="submit"]:hover,
.contact-form .wp-block-button .wp-block-button__link:hover {
    background: var(--black) !important;
}
/* Phone input overrides */
.contact-form .phone-input-wrap,
.contact-form .jetpack-field-phone {
    width: 100% !important;
}
.contact-form .phone-input-wrap input {
    width: 100% !important;
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--black); font-weight: 600; margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 4px; font-family: 'Montserrat', sans-serif; font-size: 0.85rem; color: var(--black); background: var(--white); transition: border-color 0.2s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--teal); }
.form-group textarea { height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ===== BOOKING EMBED ===== */
.booking-area { max-width: 860px; margin: 0 auto; text-align: center; }
.booking-embed { margin-top: 36px; min-height: 480px; background: var(--offwhite); border: 2px dashed var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; padding: 40px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--black); color: var(--gray-light); padding: 52px 24px 24px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 0.8fr 1fr; gap: 32px; align-items: start; }
.footer-brand img { height: 50px; margin-bottom: 14px; }
.footer-brand p { font-size: 0.82rem; line-height: 1.7; max-width: 260px; font-weight: 300; }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a { width: 34px; height: 34px; border-radius: 4px; border: 1px solid var(--border-dark); display: flex; align-items: center; justify-content: center; color: var(--gray-light); font-size: 0.8rem; }
.footer-social a:hover { border-color: var(--teal); color: var(--teal); }
.site-footer h4 { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); font-weight: 600; margin-bottom: 16px; text-align: center; }
.footer-links { text-align: center; }
.footer-contact { text-align: center; }
.footer-hours { text-align: center; }
.footer-hours-row { justify-content: center; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--gray-light); font-size: 0.82rem; font-weight: 300; }
.footer-links a:hover { color: var(--teal); }
.footer-contact li { font-size: 0.82rem; color: var(--gray-light); font-weight: 300; }
.footer-contact a { color: var(--gray-light); }
.footer-hours { margin-top: 0; }
.footer-hours-row { display: flex; justify-content: space-between; font-size: 0.82rem; color: var(--gray-light); font-weight: 300; margin-bottom: 4px; gap: 12px; }
.footer-bottom { max-width: 1100px; margin: 32px auto 0; padding-top: 20px; border-top: 1px solid var(--border-dark); display: flex; justify-content: space-between; font-size: 0.72rem; font-weight: 300; }

/* ===== WORDPRESS OVERRIDES ===== */
.wp-block-post-content { max-width: 100%; }
.entry-content > * { max-width: 1100px; margin-left: auto; margin-right: auto; }

/* Logo sizing */
.nav-logo img,
.nav-logo .custom-logo-link img,
.nav-logo img.custom-logo {
    height: 50px;
    width: auto;
    max-height: 50px;
}
.footer-brand img,
.footer-brand .custom-logo-link img,
.footer-brand img.custom-logo {
    height: 50px;
    width: auto;
    max-height: 50px;
    margin-bottom: 14px;
}

/* Custom logo sizing - WordPress outputs img.custom-logo inside a.custom-logo-link */
.nav-logo .custom-logo-link,
.nav-logo .custom-logo-link img,
.nav-logo img.custom-logo,
.nav-logo img {
    height: 50px;
    width: auto;
    max-height: 50px;
}
.footer-brand .custom-logo-link,
.footer-brand .custom-logo-link img,
.footer-brand img.custom-logo,
.footer-brand img {
    height: 50px;
    width: auto;
    max-height: 50px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-sub { margin: 0 auto 36px; }
    .hero-btns { justify-content: center; }
    .hero-img-box { max-width: 360px; margin: 0 auto; }
    .hero-float { left: 50%; transform: translateX(-50%); }
    .usp-grid, .svc-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
    .feature-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-info { text-align: left; }
    .contact-info h2 { text-align: center; }
    .contact-detail { justify-content: flex-start; }
    .contact-hours { text-align: center; }
    .contact-hours .hours-row { justify-content: center; gap: 24px; }
    .feature-text { text-align: center; }
    .feature-text .btn { display: inline-block; }
    .feature-list { display: inline-block; text-align: left; }
    .about-text { text-align: center; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-brand { text-align: center; grid-column: span 2; }
    .footer-brand img { margin: 0 auto 14px; display: block; }
    .footer-brand p { margin: 0 auto; max-width: 320px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.big { grid-column: span 1; grid-row: span 1; }
    .values-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
}

@media (max-width: 640px) {
    .top-bar { display: none; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); padding: 20px 24px; border-bottom: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,0.05); z-index: 999; }
    .hero h1 { font-size: 2.4rem; }
    .hero-btns { flex-direction: column; align-items: center; }
    .section-title, .page-hero h1 { font-size: 2rem; }
    .footer-inner { grid-template-columns: 1fr; text-align: center; }
    .footer-brand { grid-column: span 1; }
    .footer-social { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 4px; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .svc-row { grid-template-columns: 1fr; text-align: center; gap: 12px; }
    .svc-row-icon { margin: 0 auto; }
    .svc-toggle-row { padding-left: 0; text-align: center; }
    .svc-details { padding-left: 0 !important; }
    .svc-details.open { padding-left: 0 !important; }
    .svc-details ul { grid-template-columns: 1fr; }
}
