/*
Theme Name: B3 Beauty
Theme URI: https://b3beautybybailey.com/
Author: B3 Beauty By Bailey
Author URI: https://b3beautybybailey.com/
Description: A custom WordPress theme for B3 Beauty By Bailey — converted from the original React/Vite design. Modern beauty, timeless elegance. Includes home (hero), services menu, shop, about, and contact templates.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: b3-beauty
Tags: custom-menu, featured-images, threaded-comments, translation-ready, theme-options, custom-logo, two-columns, right-sidebar
*/

/* =============================================================
   Design tokens — ported 1:1 from the React app's index.css
   ============================================================= */
:root {
    --background: 30 25% 97%;
    --foreground: 20 10% 15%;
    --card: 30 20% 95%;
    --card-foreground: 20 10% 15%;
    --primary: 350 35% 55%;
    --primary-foreground: 30 25% 97%;
    --secondary: 30 20% 92%;
    --secondary-foreground: 20 10% 25%;
    --muted: 30 15% 93%;
    --muted-foreground: 20 8% 45%;
    --accent: 38 60% 55%;
    --accent-foreground: 20 10% 15%;
    --border: 30 15% 88%;
    --input: 30 15% 88%;
    --ring: 350 35% 55%;
    --radius: 0.25rem;

    --blush: 350 35% 55%;
    --blush-light: 350 40% 92%;
    --gold: 38 60% 55%;
    --gold-light: 38 50% 90%;
    --cream: 30 25% 97%;
    --warm-gray: 20 8% 45%;
    --charcoal: 20 10% 15%;
    --services-bg: 330 60% 88%;
    --services-card-bg: 330 50% 82%;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;

    --shadow-soft: 0 4px 30px hsl(20 10% 15% / 0.06);
    --shadow-elevated: 0 10px 40px hsl(20 10% 15% / 0.1);

    --topbar-height: 36px;
    --nav-height: 80px;
    --header-total: 116px;
}

/* =============================================================
   Reset / base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.6;
    color: hsl(var(--foreground));
    background-color: hsl(var(--background));
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, picture, video, svg { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: color 0.3s ease; }
a:hover { color: hsl(var(--primary)); }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    margin: 0 0 0.5em;
    line-height: 1.2;
    color: hsl(var(--foreground));
}

p { margin: 0 0 1em; }

/* WP admin bar nudge */
.admin-bar .site-topbar { top: 32px; }
@media screen and (max-width: 782px) {
    .admin-bar .site-topbar { top: 46px; }
}

/* =============================================================
   Layout helpers
   ============================================================= */
.container {
    max-width: 80rem; /* 1280px */
    margin: 0 auto;
    padding: 0 1.5rem;
}
@media (min-width: 1024px) {
    .container { padding: 0 2.5rem; }
}

.section-narrow {
    max-width: 48rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}
@media (min-width: 1024px) {
    .section-narrow { padding: 0 2.5rem; }
}

/* =============================================================
   Buttons (port of the cva button variants)
   ============================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: 0.375rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid transparent;
}

.btn:focus-visible {
    outline: 2px solid hsl(var(--ring));
    outline-offset: 2px;
}

.btn-default {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}
.btn-default:hover {
    background-color: hsl(var(--primary) / 0.9);
    color: hsl(var(--primary-foreground));
}

.btn-hero {
    background-color: hsl(var(--primary-foreground));
    color: hsl(var(--foreground));
    font-family: var(--font-sans);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.75rem;
}
.btn-hero:hover {
    background-color: hsl(var(--primary-foreground) / 0.9);
    color: hsl(var(--foreground));
}

.btn-hero-outline {
    background-color: transparent;
    border-color: hsl(var(--primary-foreground) / 0.5);
    color: hsl(var(--primary-foreground));
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.75rem;
}
.btn-hero-outline:hover {
    background-color: hsl(var(--primary-foreground) / 0.1);
    color: hsl(var(--primary-foreground));
}

.btn-sm { height: 2.25rem; padding: 0 0.875rem; }
.btn-md { height: 2.5rem; padding: 0 1rem; }
.btn-lg { height: 2.75rem; padding: 0 2rem; }

.btn-uppercase-tight {
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

/* =============================================================
   Top bar
   ============================================================= */
.site-topbar {
    background-color: hsl(var(--foreground));
    color: hsl(var(--primary-foreground));
    padding: 0.5rem 0;
}
.site-topbar-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (min-width: 1024px) {
    .site-topbar-inner { padding: 0 2.5rem; }
}
.site-topbar a {
    color: hsl(var(--primary-foreground) / 0.7);
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}
.site-topbar a:hover { color: hsl(var(--primary-foreground)); }
.site-topbar svg { width: 14px; height: 14px; }
.site-topbar .topbar-social svg { width: 16px; height: 16px; }
.topbar-socials { display: flex; align-items: center; gap: 0.75rem; }
.site-topbar-right { display: flex; align-items: center; gap: 1rem; }

/* =============================================================
   Header / Navbar
   ============================================================= */
.site-header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
}

.site-nav {
    background-color: hsl(var(--background));
    border-bottom: 1px solid hsl(var(--border) / 0.5);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}
.site-nav-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
}
@media (min-width: 1024px) {
    .site-nav-inner { padding: 0 2.5rem; }
}
.site-logo img { height: 4rem; width: auto; }

.primary-menu {
    display: none;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
@media (min-width: 768px) {
    .primary-menu { display: flex; }
}
.primary-menu a {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: hsl(var(--foreground) / 0.7);
    transition: color 0.3s ease;
}
.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a,
.primary-menu .current-menu-ancestor > a {
    color: hsl(var(--foreground));
}
.primary-menu .menu-item { list-style: none; }
.primary-menu .book-now-btn { margin-left: 1rem; }

.menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--foreground));
    padding: 0.5rem;
}
@media (min-width: 768px) { .menu-toggle { display: none; } }
.menu-toggle svg { width: 24px; height: 24px; }
.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-open { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-menu {
    display: none;
    background-color: hsl(var(--background));
    border-bottom: 1px solid hsl(var(--border));
}
.mobile-menu.is-open { display: block; }
@media (min-width: 768px) { .mobile-menu { display: none !important; } }
.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.mobile-menu-list a {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: hsl(var(--foreground) / 0.7);
}
.mobile-menu-list a:hover { color: hsl(var(--foreground)); }
.mobile-menu .book-now-btn { margin-top: 0.5rem; align-self: flex-start; }

.site-content {
    padding-top: var(--header-total);
}
.site-content.no-top-pad {
    padding-top: 0;
}

/* =============================================================
   Hero section
   ============================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: calc(-1 * var(--header-total));
    padding-top: var(--header-total);
}
.hero-bg {
    position: absolute;
    inset: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
/* Crossfading hero slideshow (multiple images in assets/images/hero/) */
.hero-bg .hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}
.hero-bg .hero-slide.is-active {
    opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
    .hero-bg .hero-slide { transition: none; }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
        hsl(var(--foreground) / 0.6),
        hsl(var(--foreground) / 0.3),
        transparent);
}
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}
@media (min-width: 1024px) {
    .hero-content { padding: 0 2.5rem; }
}
.hero-inner { max-width: 40rem; }

.hero-headline {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.375rem;
    line-height: 1.3;
    color: hsl(var(--primary-foreground));
    margin: 0 0 1rem;
}
@media (min-width: 768px) {
    .hero-headline { font-size: 1.625rem; }
}
@media (min-width: 1024px) {
    .hero-headline { font-size: 1.875rem; }
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: hsl(var(--primary-foreground) / 0.8);
    margin: 0 0 1rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 0.95;
    color: hsl(var(--primary-foreground));
    margin: 0 0 1.5rem;
}
.hero-title-sub {
    display: block;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    font-size: 1.875rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}
@media (min-width: 768px) {
    .hero-title { font-size: 4.5rem; }
    .hero-title-sub { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
    .hero-title { font-size: 6rem; }
    .hero-title-sub { font-size: 3rem; }
}

.hero-lede {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: hsl(var(--primary-foreground) / 0.8);
    margin: 0 0 2rem;
    max-width: 28rem;
    line-height: 1.6;
}
@media (min-width: 768px) {
    .hero-lede { font-size: 1.25rem; }
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* =============================================================
   About section
   ============================================================= */
.about {
    padding: 6rem 0;
    background-color: hsl(var(--background));
}
@media (min-width: 768px) {
    .about { padding: 8rem 0; }
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}
@media (min-width: 768px) {
    .about-grid { grid-template-columns: 1fr 1fr; }
}
.about-image {
    overflow: hidden;
    border-radius: var(--radius);
}
.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center 20%;
}
.about-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: hsl(var(--muted-foreground));
    margin: 0 0 0.75rem;
}
.about-title {
    font-family: var(--font-display);
    font-size: 2.25rem;
    color: hsl(var(--foreground));
    margin: 0 0 1.5rem;
    line-height: 1.15;
}
@media (min-width: 768px) {
    .about-title { font-size: 3rem; }
}
.about-title-italic {
    display: block;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    color: hsl(var(--primary));
}
.about-body {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
}
.about-body p + p { margin-top: 1rem; }
.about-stats {
    margin-top: 2rem;
    display: flex;
    gap: 3rem;
}
.about-stat-number {
    font-family: var(--font-display);
    font-size: 1.875rem;
    color: hsl(var(--foreground));
    margin: 0;
}
.about-stat-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: hsl(var(--muted-foreground));
    margin: 0.25rem 0 0;
}

/* =============================================================
   Services section
   ============================================================= */
.services {
    min-height: 100vh;
    background-color: hsl(var(--services-bg));
}
/* Photo background behind the Services section only (not the FAQ, which
   reuses .services). A scrim keeps the service list readable. */
#services {
    background-image:
        linear-gradient( hsl(var(--services-bg) / 0.86), hsl(var(--services-bg) / 0.86) ),
        url("assets/images/services-bg.jpg");
    background-size: cover;
    background-position: center;
}
.services-inner {
    padding: 6rem 0;
}
@media (min-width: 768px) {
    .services-inner { padding: 8rem 0; }
}
.services-heading {
    text-align: center;
    margin-bottom: 4rem;
}
.services-heading h1,
.services-heading h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    color: hsl(var(--foreground));
    margin: 0;
}
@media (min-width: 768px) {
    .services-heading h1,
    .services-heading h2 { font-size: 3.75rem; }
}
.services-card {
    background-color: hsl(var(--services-card-bg) / 0.4);
    border-radius: 1rem;
    padding: 3.5rem 2rem;
}
@media (min-width: 768px) {
    .services-card { padding: 3.5rem 4rem; }
}
.service-category { text-align: center; }
.service-category + .service-category { margin-top: 3.5rem; }
.service-category-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.5rem;
    color: hsl(var(--foreground));
    margin: 0 0 1.5rem;
    font-weight: 500;
}
@media (min-width: 768px) {
    .service-category-title { font-size: 1.875rem; }
}
.service-list { list-style: none; margin: 0; padding: 0; }
.service-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: hsl(var(--foreground) / 0.8);
    padding: 0.375rem 0;
    flex-wrap: wrap;
}
.service-dash { color: hsl(var(--foreground) / 0.4); }
.service-price {
    font-weight: 500;
    color: hsl(var(--foreground));
}
.service-note {
    margin-top: 1rem;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.875rem;
    color: hsl(var(--foreground) / 0.7);
}
.service-divider {
    border-bottom: 1px solid hsl(var(--foreground) / 0.1);
    margin: 2.5rem 0 0;
}

/* =============================================================
   Reviews / testimonials
   ============================================================= */
.reviews {
    padding: 6rem 0;
    background-color: hsl(var(--secondary));
}
@media (min-width: 768px) {
    .reviews { padding: 8rem 0; }
}
.reviews-heading {
    text-align: center;
    margin-bottom: 4rem;
}
.reviews-heading h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: hsl(var(--foreground));
    margin: 0;
}
@media (min-width: 768px) {
    .reviews-heading h1 { font-size: 2.5rem; }
}
.reviews-rating {
    margin-top: 1rem;
}
.reviews-rating .review-stars {
    justify-content: center;
    margin-bottom: 0.4rem;
}
.reviews-rating-text {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    color: hsl(var(--foreground) / 0.7);
    margin: 0;
}
/* Home rotating carousel (one card at a time, crossfade) */
.reviews-rotator {
    display: grid;
    max-width: 44rem;
    margin: 0 auto;
}
.reviews-rotator .review-slide {
    grid-area: 1 / 1;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease-in-out;
}
.reviews-rotator .review-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}
.review-card {
    background-color: hsl(var(--background));
    border: 1px solid hsl(var(--border) / 0.5);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.review-stars { display: flex; gap: 0.15rem; color: #d9a93f; }
.review-stars svg { width: 18px; height: 18px; }
.review-text {
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    line-height: 1.6;
    color: hsl(var(--foreground) / 0.85);
    margin: 0;
    flex: 1;
}
.review-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: auto;
}
.review-name {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--foreground));
}
.review-source {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: hsl(var(--foreground) / 0.55);
}
.reviews-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Leave a Review form */
.review-form-section {
    padding: 4rem 0;
    background-color: hsl(var(--background));
}
@media (min-width: 768px) {
    .review-form-section { padding: 5rem 0; }
}
.review-form-heading {
    text-align: center;
    margin-bottom: 2rem;
}
.review-form-heading h2 {
    font-family: var(--font-display);
    font-size: 1.875rem;
    color: hsl(var(--foreground));
    margin: 0 0 0.5rem;
}
.review-form-heading p {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: hsl(var(--foreground) / 0.7);
    margin: 0;
}
.review-form {
    max-width: 34rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}
.review-form-stars {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 0.25rem;
}
.review-form-stars input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
}
.review-form-stars label {
    cursor: pointer;
    line-height: 0;
    color: hsl(var(--foreground) / 0.25);
    transition: color 0.15s ease;
}
.review-form-stars label svg { width: 30px; height: 30px; }
.review-form-stars label:hover,
.review-form-stars label:hover ~ label,
.review-form-stars input:checked ~ label { color: #d9a93f; }
.review-form-stars input:focus-visible + label {
    outline: 2px solid hsl(var(--foreground) / 0.4);
    outline-offset: 2px;
    border-radius: 2px;
}
.review-form-field {
    width: 100%;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    padding: 0.75rem 1rem;
    border: 1px solid hsl(var(--border));
    border-radius: 0.5rem;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
}
textarea.review-form-field { resize: vertical; }
.review-form-hp {
    position: absolute !important;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}
.review-form-feedback {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    text-align: center;
    margin: 0;
}
.review-form-feedback.is-success { color: #2e7d32; }
.review-form-feedback.is-error { color: #c0392b; }
.b3-turnstile {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.b3-turnstile-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    color: hsl(var(--foreground) / 0.6);
}
.cf-turnstile { margin: 0.25rem 0; }

/* =============================================================
   Shop Policies
   ============================================================= */
.policies-card { text-align: left; }
.policies-intro {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: hsl(var(--foreground) / 0.85);
    margin: 0 0 1rem;
}
.policies-heading {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.5rem;
    color: hsl(var(--foreground));
    margin: 2rem 0 0.75rem;
}
.policies-card p {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    line-height: 1.7;
    color: hsl(var(--foreground) / 0.8);
    margin: 0 0 0.75rem;
}
.policies-card ul {
    margin: 0 0 0.75rem;
    padding-left: 1.25rem;
    list-style: disc;
}
.policies-card li {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    line-height: 1.7;
    color: hsl(var(--foreground) / 0.8);
    margin: 0.3rem 0;
}
.policies-outro {
    margin-top: 1.5rem !important;
    font-style: italic;
}

/* =============================================================
   FAQ accordion
   ============================================================= */
.faq-card { padding: 1rem 1.5rem; }
@media (min-width: 768px) {
    .faq-card { padding: 1.5rem 3rem; }
}
.faq-item {
    border-bottom: 1px solid hsl(var(--foreground) / 0.12);
}
.faq-item:last-child { border-bottom: 0; }
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    cursor: pointer;
    list-style: none;
    padding: 1.5rem 0;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: hsl(var(--foreground));
}
.faq-question::-webkit-details-marker { display: none; }
@media (min-width: 768px) {
    .faq-question { font-size: 1.25rem; }
}
.faq-icon {
    position: relative;
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
}
.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background-color: hsl(var(--foreground) / 0.55);
    transition: transform 0.3s ease;
}
.faq-icon::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 0; width: 1.5px; height: 100%; transform: translateX(-50%); }
.faq-item[open] .faq-icon::after { transform: translateX(-50%) scaleY(0); }
.faq-answer {
    padding: 0 0 1.5rem;
    max-width: 46rem;
}
.faq-answer p {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    line-height: 1.7;
    color: hsl(var(--foreground) / 0.8);
}
.faq-answer > * + * { margin-top: 0.75rem; }
.faq-answer ul {
    margin: 0;
    padding-left: 1.25rem;
    list-style: disc;
}
.faq-answer li {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    line-height: 1.7;
    color: hsl(var(--foreground) / 0.8);
}
.faq-answer li + li { margin-top: 0.35rem; }
.faq-answer a {
    color: hsl(var(--foreground));
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.3s ease;
}
.faq-answer a:hover { opacity: 0.7; }

/* =============================================================
   Shop page
   ============================================================= */
.shop {
    padding: 6rem 0;
    background-color: hsl(var(--secondary));
}
@media (min-width: 768px) {
    .shop { padding: 8rem 0; }
}
.shop-heading {
    text-align: center;
    margin-bottom: 4rem;
}
.shop-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: hsl(var(--muted-foreground));
    margin: 0 0 0.75rem;
}
.shop-heading h1 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    color: hsl(var(--foreground));
    margin: 0 0 1rem;
}
@media (min-width: 768px) {
    .shop-heading h1 { font-size: 3rem; }
}
.shop-heading p {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    max-width: 32rem;
    margin: 0 auto;
}
.shop-empty {
    text-align: center;
    padding: 4rem 0;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
}

/* =============================================================
   Contact section
   ============================================================= */
.contact {
    padding: 6rem 0;
    background-color: hsl(var(--blush-light));
}
@media (min-width: 768px) {
    .contact { padding: 8rem 0; }
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}
@media (min-width: 768px) {
    .contact-grid { grid-template-columns: 1fr 1fr; }
}
.contact-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: hsl(var(--muted-foreground));
    margin: 0 0 0.75rem;
}
.contact-title {
    font-family: var(--font-display);
    font-size: 2.25rem;
    color: hsl(var(--foreground));
    margin: 0 0 1.5rem;
}
@media (min-width: 768px) {
    .contact-title { font-size: 3rem; }
}
.contact-title-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    color: hsl(var(--primary));
}
.contact-lede {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
    margin: 0 0 2.5rem;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.contact-info-item svg {
    color: hsl(var(--primary));
    flex-shrink: 0;
    margin-top: 0.25rem;
    width: 20px;
    height: 20px;
}
.contact-info-label {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--foreground));
    margin: 0;
}
.contact-info-value {
    font-family: var(--font-serif);
    color: hsl(var(--muted-foreground));
    margin: 0;
}

.contact-form-card {
    background-color: hsl(var(--background));
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}
@media (min-width: 768px) {
    .contact-form-card { padding: 2.5rem; }
}
.contact-form-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: hsl(var(--foreground));
    margin: 0 0 1.5rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-form label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: hsl(var(--muted-foreground));
    margin-bottom: 0.375rem;
    display: block;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    background-color: hsl(var(--secondary));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    font-family: var(--font-serif);
    font-size: 1rem;
    color: hsl(var(--foreground));
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: hsl(var(--muted-foreground) / 0.6);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 1px hsl(var(--primary));
}
.contact-form textarea { resize: vertical; }
.contact-form-submit {
    width: 100%;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.75rem;
}
.contact-form-feedback {
    margin: 0;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-family: var(--font-serif);
    font-size: 0.95rem;
}
.contact-form-feedback.is-success {
    background-color: hsl(var(--gold-light));
    color: hsl(var(--accent-foreground));
}
.contact-form-feedback.is-error {
    background-color: hsl(0 60% 92%);
    color: hsl(0 50% 35%);
}

.contact-map {
    width: 100%;
    height: 400px;
    line-height: 0;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* =============================================================
   Footer
   ============================================================= */
.site-footer {
    background-color: hsl(var(--background));
    border-top: 1px solid hsl(var(--border) / 0.5);
    padding: 4rem 0;
}
.site-footer-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
@media (min-width: 768px) {
    .site-footer-inner { flex-direction: row; }
}
.site-footer-brand { text-align: center; }
@media (min-width: 768px) {
    .site-footer-brand { text-align: left; }
}
.site-footer-brand img { height: 4rem; width: auto; margin: 0 auto; }
@media (min-width: 768px) {
    .site-footer-brand img { margin: 0; }
}
.site-footer-tagline {
    font-family: var(--font-serif);
    font-size: 0.875rem;
    color: hsl(var(--foreground));
    margin: 0.5rem 0 0;
}
.site-footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}
.site-footer-motto {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.95rem;
    color: hsl(var(--foreground) / 0.85);
    margin: 0;
}
.site-footer-location {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
    color: hsl(var(--foreground) / 0.65);
    margin: 0;
}
.site-footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 0;
}
.site-footer-links a {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: hsl(var(--foreground) / 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}
.site-footer-links a:hover { color: hsl(var(--foreground)); }
.site-footer-social {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.site-footer-social a {
    color: hsl(var(--foreground) / 0.5);
    transition: color 0.3s ease;
}
.site-footer-social a:hover { color: hsl(var(--foreground)); }
.site-footer-social svg { width: 20px; height: 20px; }
.site-footer-bottom {
    border-top: 1px solid hsl(var(--border) / 0.5);
    margin-top: 2.5rem;
    padding-top: 2rem;
    text-align: center;
}
.site-footer-bottom p {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: hsl(var(--foreground) / 0.6);
    letter-spacing: 0.15em;
    margin: 0;
}

/* =============================================================
   Default WordPress content (single post, page, archive)
   ============================================================= */
.default-content {
    max-width: 48rem;
    margin: 0 auto;
    padding: 6rem 1.5rem;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    line-height: 1.7;
    color: hsl(var(--foreground));
}
.default-content h1,
.default-content h2,
.default-content h3 { margin-top: 2rem; }
.default-content a { color: hsl(var(--primary)); text-decoration: underline; text-underline-offset: 4px; }
.default-content img { border-radius: var(--radius); margin: 1.5rem 0; }
.default-content .entry-meta {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: hsl(var(--muted-foreground));
    margin-bottom: 2rem;
}

.pagination {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 3rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
}
.pagination .page-numbers {
    padding: 0.5rem 0.875rem;
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    color: hsl(var(--foreground));
}
.pagination .page-numbers.current {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    border-color: hsl(var(--primary));
}

/* 404 */
.error-404 {
    text-align: center;
    padding: 8rem 1.5rem;
}
.error-404 h1 {
    font-family: var(--font-display);
    font-size: 4rem;
    margin: 0 0 1rem;
}
.error-404 p {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    margin: 0 0 2rem;
}

/* Screen reader only */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: hsl(var(--foreground));
    color: hsl(var(--primary-foreground));
    padding: 0.75rem 1rem;
    z-index: 100;
}
.skip-link:focus {
    left: 0;
    top: 0;
    outline: 2px solid hsl(var(--primary));
}

/* WordPress alignment helpers */
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 1.5rem auto; }
.alignwide { max-width: 90rem; }
.alignfull { width: 100vw; margin-left: calc(50% - 50vw); }

/* Fade-in on scroll (subtle replacement for framer-motion) */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
