/* ========================================
   Push Pin Boutique Vintage - CSS
   Vintage, Curated, Timeless Aesthetic
   ======================================== */

:root {
    /* Earthy, Muted Palette */
    --cream: #f9f6f1;
    --sand: #e8dfd3;
    --terracotta: #c9a88a;
    --rust: #a67c5d;
    --sage: #a8b5a0;
    --charcoal: #3d3936;
    --warm-gray: #6b635e;
    --soft-white: #fefdfb;
    --border-light: #e2d9cc;
    --shadow: rgba(61, 57, 54, 0.08);
    --shadow-md: rgba(61, 57, 54, 0.12);
    --shadow-lg: rgba(61, 57, 54, 0.18);
    
    /* Typography */
    --font-serif: 'Cormorant', Georgia, serif;
    --font-sans: 'Jost', -apple-system, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    
    /* Borders */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

/* ========================================
   Base & Reset
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* Film Grain Overlay */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2.5' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    color: var(--charcoal);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

ul {
    list-style: none;
}

/* ========================================
   Navigation
   ======================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(249, 246, 241, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--charcoal);
}

.logo-icon {
    font-size: 1.3rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: var(--space-md);
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--warm-gray);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--rust);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--charcoal);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: var(--space-lg);
    padding: calc(70px + var(--space-lg)) var(--space-md) var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rust);
    background: var(--sand);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: var(--space-md);
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.2s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease-out forwards;
}

.title-line:nth-child(1) { animation-delay: 0.3s; }
.title-line:nth-child(2) { animation-delay: 0.5s; }
.title-line:nth-child(3) { animation-delay: 0.7s; }

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight {
    font-style: italic;
    color: var(--rust);
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--warm-gray);
    max-width: 520px;
    margin-bottom: var(--space-md);
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.9s forwards;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    opacity: 0;
    animation: fadeIn 0.8s ease-out 1s forwards;
}

.rating-stars {
    color: #d4a574;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.rating-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.9rem;
}

.rating-details strong {
    color: var(--charcoal);
}

.rating-details span {
    color: var(--warm-gray);
    font-size: 0.85rem;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    opacity: 0;
    animation: fadeIn 0.8s ease-out 1.1s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--rust);
    color: var(--soft-white);
    border: 2px solid var(--rust);
}

.btn-primary:hover {
    background: var(--charcoal);
    border-color: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--border-light);
}

.btn-outline:hover {
    border-color: var(--rust);
    color: var(--rust);
}

.hero-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 1.2s forwards;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--warm-gray);
}

.detail-item svg {
    flex-shrink: 0;
    color: var(--rust);
}

.hero-image {
    opacity: 0;
    animation: fadeIn 1s ease-out 1.3s forwards;
}

.image-placeholder {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--sand) 0%, var(--border-light) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px var(--shadow-lg);
}

.placeholder-content svg {
    opacity: 0.3;
    color: var(--rust);
}

/* ========================================
   About Section
   ======================================== */

.about {
    padding: var(--space-xl) var(--space-md);
    background: var(--soft-white);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: var(--space-sm);
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.lead {
    font-size: 1.2rem;
    color: var(--charcoal);
    font-weight: 400;
    line-height: 1.7;
}

.about-text p {
    color: var(--warm-gray);
    line-height: 1.8;
}

.about-features {
    margin-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.feature {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--cream);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 16px var(--shadow);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.feature-content p {
    color: var(--warm-gray);
    font-size: 0.95rem;
}

.about-image {
    position: relative;
}

.image-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-lg);
}

.placeholder-large {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--sand) 0%, var(--border-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-large svg {
    opacity: 0.3;
    color: var(--rust);
}

.about-stat {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--soft-white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px var(--shadow-lg);
    text-align: center;
    min-width: 140px;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--rust);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--warm-gray);
    margin-top: 4px;
}

/* ========================================
   Reviews Section
   ======================================== */

.reviews {
    padding: var(--space-xl) var(--space-md);
    background: var(--cream);
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-sm);
}

.rating-summary {
    margin-top: var(--space-md);
}

.stars-large {
    color: #d4a574;
    font-size: 2rem;
    letter-spacing: 4px;
    margin-bottom: 8px;
}

.rating-summary p {
    color: var(--warm-gray);
    font-size: 1.05rem;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--space-md);
}

.testimonial {
    background: var(--soft-white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow);
}

.testimonial-stars {
    color: #d4a574;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: var(--space-sm);
    border-top: 1px solid var(--border-light);
}

.author-initial {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--sand);
    color: var(--rust);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.author-name {
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 2px;
}

.author-label {
    font-size: 0.85rem;
    color: var(--warm-gray);
}

/* ========================================
   Visit Section
   ======================================== */

.visit {
    padding: var(--space-xl) var(--space-md);
    background: var(--soft-white);
}

.visit-container {
    max-width: 1200px;
    margin: 0 auto;
}

.visit-subtitle {
    color: var(--warm-gray);
    font-size: 1rem;
    margin-top: 8px;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.visit-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.info-block {
    background: var(--cream);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    display: flex;
    gap: var(--space-sm);
}

.info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--sand);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rust);
}

.info-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.info-content p {
    color: var(--warm-gray);
    line-height: 1.7;
    margin-bottom: 4px;
}

.plus-code {
    font-size: 0.8rem;
    color: var(--warm-gray);
    font-family: monospace;
    background: var(--sand);
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 6px;
}

.phone-link {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--rust);
    display: block;
    margin-bottom: 4px;
}

.phone-link:hover {
    color: var(--charcoal);
}

.phone-note {
    font-size: 0.85rem;
    color: var(--warm-gray);
}

.hours {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.95rem;
}

.hour-row span:first-child {
    color: var(--charcoal);
    font-weight: 500;
}

.hour-row span:last-child {
    color: var(--warm-gray);
}

.hour-row.closed span:last-child {
    color: var(--rust);
    opacity: 0.7;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}

.service-list li {
    color: var(--warm-gray);
    font-size: 0.95rem;
    padding-left: 20px;
    position: relative;
}

.service-list li::before {
    content: '•';
    position: absolute;
    left: 6px;
    color: var(--rust);
}

.maps {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.map-wrapper h4 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.map-wrapper iframe {
    border-radius: var(--radius-md);
    box-shadow: 0 4px 16px var(--shadow);
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--charcoal);
    color: var(--sand);
    padding: var(--space-lg) var(--space-md) var(--space-md);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--soft-white);
    margin-bottom: 12px;
}

.footer-brand p {
    color: var(--sand);
    opacity: 0.8;
    margin-bottom: var(--space-sm);
}

.footer-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.footer-rating .stars {
    color: #d4a574;
    letter-spacing: 2px;
}

.footer-contact h4,
.footer-hours h4 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--soft-white);
    margin-bottom: var(--space-sm);
}

.footer-contact p,
.footer-hours p {
    color: var(--sand);
    opacity: 0.8;
    line-height: 1.7;
    font-size: 0.9rem;
}

.footer-contact a {
    color: var(--terracotta);
    font-weight: 500;
    display: block;
    margin-top: 8px;
}

.footer-contact a:hover {
    color: var(--soft-white);
}

.footer-bottom {
    border-top: 1px solid rgba(232, 223, 211, 0.2);
    padding-top: var(--space-md);
    text-align: center;
}

.demo-notice {
    font-size: 0.85rem;
    color: var(--sand);
    opacity: 0.6;
    margin-bottom: 8px;
    font-style: italic;
}

.footer-bottom p {
    color: var(--sand);
    opacity: 0.7;
    font-size: 0.85rem;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 968px) {
    .hero,
    .about-container,
    .visit-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-stat {
        position: static;
        margin-top: var(--space-md);
        display: inline-block;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--soft-white);
        flex-direction: column;
        padding: var(--space-md);
        box-shadow: 0 4px 12px var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-menu a {
        padding: var(--space-sm) 0;
        border-bottom: 1px solid var(--border-light);
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    :root {
        --space-lg: 3rem;
        --space-xl: 4rem;
    }
    
    .hero {
        padding: calc(70px + var(--space-md)) var(--space-sm) var(--space-md);
    }
    
    .hero-title {
        font-size: 2rem;
    }
}
