/* ============================================================
   BluLis Boutique — style.css
   Design system: blush + cream + charcoal, Cormorant Garamond serif
   Mobile-first, 375px → desktop
   ============================================================ */

/* ── DESIGN TOKENS ── */
:root {
    --blu-blush:    #f5e6e0;
    --blu-cream:    #faf6f1;
    --blu-charcoal: #2a2520;
    --blu-rose:     #c9847a;
    --blu-rose-dk:  #a8645a;
    --blu-gold:     #b89968;
    --blu-gold-lt:  #d4b98a;
    --blu-warm-gray:#8a7f78;
    --blu-border:   #e8ddd6;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --banner-h: 40px;   /* mockup banner height, used as top offset */
    --header-h: 64px;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    --shadow-sm:  0 1px 3px rgba(42,37,32,0.08);
    --shadow-md:  0 4px 16px rgba(42,37,32,0.10);
    --shadow-lg:  0 12px 40px rgba(42,37,32,0.14);

    --transition: 0.2s ease;
}

/* ── FOCUS INDICATORS (keyboard navigation) ── */
:focus-visible {
    outline: 2px solid var(--blu-rose);
    outline-offset: 3px;
    border-radius: 2px;
}

.btn:focus-visible,
.nav-toggle:focus-visible,
.site-nav a:focus-visible {
    outline: 2px solid var(--blu-rose);
    outline-offset: 3px;
}

/* ── RESET ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    /* Offset anchor targets so they clear the sticky header + banner */
    scroll-padding-top: calc(var(--banner-h) + var(--header-h) + 8px);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--blu-charcoal);
    background-color: var(--blu-cream);
    -webkit-font-smoothing: antialiased;
}

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

address {
    font-style: normal;
}

a {
    color: var(--blu-rose);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--blu-rose-dk);
}

/* ── CONTAINER ── */
.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 640px) {
    .container { padding: 0 32px; }
}

@media (min-width: 1024px) {
    .container { padding: 0 48px; }
}

/* ── BUTTONS ── */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background-color: var(--blu-rose);
    color: #fff;
    border-color: var(--blu-rose);
}

.btn-primary:hover {
    background-color: var(--blu-rose-dk);
    border-color: var(--blu-rose-dk);
    color: #fff;
}

.btn-outline {
    background-color: transparent;
    color: var(--blu-charcoal);
    border-color: var(--blu-charcoal);
}

.btn-outline:hover {
    background-color: var(--blu-charcoal);
    color: #fff;
}

/* ── SECTION SHARED TYPOGRAPHY ── */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blu-rose);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--blu-charcoal);
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--blu-warm-gray);
    max-width: 520px;
}

/* ── IMAGE PLACEHOLDERS ── */
.img-placeholder {
    position: relative;
    background-color: var(--blu-blush);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        rgba(201,132,122,0.08) 0px,
        rgba(201,132,122,0.08) 1px,
        transparent 1px,
        transparent 18px
    );
}

.placeholder-caption {
    position: relative;
    z-index: 1;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--blu-rose-dk);
    text-align: center;
    line-height: 1.6;
    padding: 16px;
    background: rgba(250,246,241,0.85);
    border: 1px dashed var(--blu-rose);
    border-radius: var(--radius-sm);
}

/* ======================================================
   MOCKUP BANNER
   ====================================================== */
.mockup-banner {
    position: sticky;
    top: 0;
    z-index: 200;
    background-color: var(--blu-charcoal);
    color: var(--blu-gold);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-align: center;
    padding: 10px 16px;
    line-height: 1.4;
    min-height: var(--banner-h);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.mockup-banner a {
    color: var(--blu-gold-lt);
    text-decoration: underline;
    white-space: nowrap;
}

.mockup-banner a:hover {
    color: #fff;
}

/* ======================================================
   STICKY HEADER / NAV
   ====================================================== */
.site-header {
    position: sticky;
    top: var(--banner-h);
    z-index: 100;
    background: var(--blu-cream);
    border-bottom: 1px solid var(--blu-border);
    height: var(--header-h);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: baseline;
    gap: 6px;
    text-decoration: none;
    color: var(--blu-charcoal);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--blu-charcoal);
    line-height: 1;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blu-warm-gray);
    padding-bottom: 2px;
}

/* Desktop nav */
.site-nav {
    display: none;
    gap: 32px;
    align-items: center;
}

.site-nav a {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blu-charcoal);
    text-decoration: none;
    transition: color var(--transition);
    position: relative;
    padding-bottom: 2px;
}

.site-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--blu-rose);
    transition: width var(--transition);
}

.site-nav a:hover {
    color: var(--blu-rose);
}

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

@media (min-width: 768px) {
    .site-nav {
        display: flex;
    }
    .nav-toggle {
        display: none;
    }
}

/* Mobile hamburger */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--blu-charcoal);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8.25px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8.25px) rotate(-45deg);
}

/* Mobile nav open state */
@media (max-width: 767px) {
    .site-nav {
        display: flex;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--blu-cream);
        border-bottom: 1px solid var(--blu-border);
        box-shadow: var(--shadow-md);
        padding: 12px 0 20px;
        transform: translateY(-4px);
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition), transform var(--transition);
    }

    .site-nav.open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
    }

    .site-nav a {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .site-nav a::after {
        display: none;
    }
}

/* ======================================================
   HERO
   ====================================================== */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 300px;
    max-height: 620px;
    /* Taller on mobile for impact */
}

@media (max-width: 640px) {
    .hero-img {
        aspect-ratio: 4 / 5;
        max-height: 540px;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(
        to top,
        rgba(42,37,32,0.72) 0%,
        rgba(42,37,32,0.28) 45%,
        transparent 75%
    );
    padding-bottom: 40px;
}

.hero-content {
    color: #fff;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blu-gold-lt);
    margin-bottom: 12px;
}

.hero-heading {
    font-family: var(--font-display);
    font-size: clamp(3rem, 9vw, 6rem);
    font-weight: 300;
    line-height: 1.0;
    color: #fff;
    margin-bottom: 12px;
}

.hero-heading em {
    font-style: italic;
    font-weight: 400;
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-style: italic;
    font-weight: 300;
    color: rgba(255,255,255,0.88);
    margin-bottom: 28px;
}

/* ======================================================
   SHOP TEASER
   ====================================================== */
.shop-section {
    padding: 80px 0 64px;
    background: #fff;
}

.section-header {
    margin-bottom: 48px;
}

/* 6-tile grid: auto-fit → 2 col mobile, 3 col mid, 6 col large */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

@media (min-width: 640px) {
    .shop-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .shop-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.shop-tile {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--blu-cream);
    border: 1px solid var(--blu-border);
    transition: box-shadow var(--transition), transform var(--transition);
    cursor: default;
}

.shop-tile:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.shop-tile--sale .tile-title {
    color: var(--blu-rose-dk);
}

.tile-img {
    width: 100%;
    aspect-ratio: 4 / 5;
}

.tile-img .placeholder-caption {
    font-size: 0.7rem;
    padding: 10px;
}

.tile-body {
    padding: 12px 14px 16px;
}

.tile-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--blu-charcoal);
    margin-bottom: 2px;
}

.tile-sub {
    font-size: 0.75rem;
    color: var(--blu-warm-gray);
}

/* Shop CTA */
.shop-cta {
    margin-top: 48px;
    padding: 32px 40px;
    background: var(--blu-blush);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

@media (min-width: 640px) {
    .shop-cta {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.shop-cta-text {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--blu-charcoal);
    line-height: 1.3;
}

/* ======================================================
   ABOUT
   ====================================================== */
.about-section {
    padding: 80px 0;
    background: var(--blu-cream);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 768px) {
    .about-inner {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

@media (min-width: 1024px) {
    .about-inner {
        grid-template-columns: 3fr 2fr;
    }
}

.about-lead {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--blu-charcoal);
    margin-bottom: 20px;
}

.about-body {
    font-size: 1rem;
    color: var(--blu-warm-gray);
    line-height: 1.75;
}

.about-body em {
    color: var(--blu-charcoal);
    font-style: italic;
}

.about-photo-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img {
    width: 100%;
    aspect-ratio: 4 / 5;
    min-height: 280px;
}

/* ======================================================
   VISIT
   ====================================================== */
.visit-section {
    padding: 80px 0;
    background: #fff;
}

.visit-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

@media (min-width: 768px) {
    .visit-inner {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}


.address-block {
    margin-bottom: 40px;
}

.address-block address {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--blu-charcoal);
    margin-bottom: 12px;
}

.parking-note {
    font-size: 0.85rem;
    color: var(--blu-warm-gray);
    font-style: italic;
}

/* Hours table */
.hours-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.hours-table td {
    padding: 9px 0;
    border-bottom: 1px solid var(--blu-border);
    color: var(--blu-charcoal);
}

.hours-table td:first-child {
    font-weight: 500;
    width: 110px;
}

.hours-val {
    color: var(--blu-warm-gray);
}

.hours-row--highlight td {
    color: var(--blu-rose-dk);
    font-weight: 500;
}

/* Map iframe */
.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--blu-border);
}

.visit-map iframe {
    display: block;
    width: 100%;
    height: 400px;
}

@media (max-width: 640px) {
    .visit-map iframe {
        height: 280px;
    }
}

/* ======================================================
   CONTACT
   ====================================================== */
.contact-section {
    padding: 80px 0;
    background: var(--blu-blush);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

@media (min-width: 768px) {
    .contact-inner {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.contact-lead {
    font-size: 1.05rem;
    color: var(--blu-warm-gray);
    margin-top: 8px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    flex-shrink: 0;
    width: 20px;
    color: var(--blu-rose);
    margin-top: 3px;
}

.contact-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blu-warm-gray);
    margin-bottom: 3px;
}

.contact-value {
    font-size: 1rem;
    color: var(--blu-charcoal);
    font-weight: 500;
}

a.contact-value:hover {
    color: var(--blu-rose);
}

/* Social row */
.social-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--blu-charcoal);
    padding: 10px 18px;
    border: 1.5px solid var(--blu-border);
    border-radius: var(--radius-sm);
    background: #fff;
    transition: border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.social-link:hover {
    border-color: var(--blu-rose);
    color: var(--blu-rose);
    box-shadow: var(--shadow-sm);
}

.contact-cta {
    align-self: flex-start;
}

/* ======================================================
   FOOTER
   ====================================================== */
.site-footer {
    background: var(--blu-charcoal);
    color: rgba(255,255,255,0.7);
    padding: 40px 0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

@media (min-width: 640px) {
    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-brand .logo-text {
    color: #fff;
    font-size: 1.5rem;
}

.footer-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
}

.footer-legal {
    text-align: right;
    font-size: 0.8rem;
    line-height: 1.7;
}

@media (max-width: 639px) {
    .footer-legal {
        text-align: left;
    }
}

.footer-credit {
    color: rgba(255,255,255,0.4);
}

.footer-credit a {
    color: var(--blu-gold-lt);
}

.footer-credit a:hover {
    color: #fff;
}

