/* ================================================
   CSS VARIABLES & RESET
   ================================================ */
:root {
    --brand:        #501612;
    --brand-light:  #7a2218;
    --brand-dark:   #3a0e0c;
    --gold:         #c9a84c;
    --silver:       #8a9ba8;
    --off-black:    #1a1a1a;
    --body-text:    #3d3d3d;
    --light-bg:     #f8f5f1;
    --warm-white:   #fdfaf7;
    --white:        #ffffff;
    --border:       #e5ddd5;
    --shadow-sm:    rgba(0, 0, 0, 0.07);
    --shadow-md:    rgba(0, 0, 0, 0.14);
    --font-serif:   'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans:    'Inter', 'Segoe UI', Helvetica, Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--body-text);
    background-color: var(--warm-white);
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 28px;
}


/* ================================================
   BUTTONS
   ================================================ */
.btn {
    display: inline-block;
    padding: 14px 34px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.10em;
    line-height: 1;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--brand);
    color: var(--white);
    border-color: var(--brand);
}

.btn-primary:hover {
    background-color: var(--brand-light);
    border-color: var(--brand-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(80, 22, 18, 0.35);
}

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

.btn-outline:hover {
    background-color: var(--brand);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(80, 22, 18, 0.25);
}

.btn-white {
    background-color: var(--white);
    color: var(--brand);
    border-color: var(--white);
}

.btn-white:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}


/* ================================================
   HEADER SECTION
   ================================================ */

/* --- Top Contact Bar --- */
.top-bar {
    background-color: var(--off-black);
}

.top-bar-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
    height: 40px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #b8b8b8;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.top-bar-item svg {
    flex-shrink: 0;
    color: var(--gold);
    opacity: 0.85;
    transition: opacity 0.2s;
}

.top-bar-item:hover {
    color: var(--white);
}

.top-bar-item:hover svg {
    opacity: 1;
}

/* --- Main Header --- */
.site-header .main-header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 12px var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.site-header .main-header.scrolled {
    box-shadow: 0 4px 20px var(--shadow-md);
}

.main-header-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}

.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 72px;
    width: auto;
    object-fit: contain;
}

/* --- Desktop Navigation --- */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1;
    color: #444444;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 3px;
    position: relative;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background-color: var(--brand);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.nav-link:hover {
    color: var(--brand);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: var(--brand);
}

/* --- Hamburger Button --- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: none;
    border: 1px solid var(--border);
    border-radius: 4px;
    cursor: pointer;
    padding: 4px;
}

.ham-bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--off-black);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.ham-open .ham-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.ham-open .ham-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.ham-open .ham-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ================================================
   HERO SECTION
   ================================================ */

/*
 * Crossfade timing:
 *   5 000ms display  +  2 000ms fade  ×  2 images  =  14 000ms cycle
 *   5/14 = 35.71%  |  7/14 = 50%  |  12/14 = 85.71%
 */
.hero {
    position: relative;
    height: 650px;
    background-color: #2a1510; /* fallback while images load */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* --- Shared slide layer --- */
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
}

/* hero1.jpg — always below, always visible */
.hero-bg-1 {
    background-image: url('images/hero1.jpg');
    z-index: 1;
}

/* hero2.jpg — sits on top and fades in/out */
.hero-bg-2 {
    background-image: url('images/hero2.jpg');
    z-index: 2;
    opacity: 0;
    animation: heroCrossfade 14s infinite;
}

@keyframes heroCrossfade {
    /* show hero1 (hero2 invisible) */
    0%,    35.71% { opacity: 0; }
    /* crossfade into hero2 */
    50%,   85.71% { opacity: 1; }
    /* crossfade back to hero1 */
    100%          { opacity: 0; }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        170deg,
        rgba(15, 6, 4, 0.28) 0%,
        rgba(20, 8, 6, 0.48) 55%,
        rgba(20, 8, 6, 0.62) 100%
    );
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 700px;
    padding: 0 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.hero-welcome {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.24em;
    line-height: 1;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 78px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.02;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-sub {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.26em;
    line-height: 1;
    color: var(--gold);
    text-transform: uppercase;
    margin-top: -4px;
}

.hero-divider {
    width: 48px;
    height: 2px;
    background-color: var(--brand);
    border-radius: 2px;
}

.hero-desc {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.01em;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
}


/* ================================================
   SECTION 1: CUSTOMER NOTICE
   ================================================ */
.notice-section {
    background-color: var(--light-bg);
    padding: 64px 0;
    border-top: 4px solid var(--brand);
}

.notice-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-left: 5px solid var(--brand);
    border-radius: 5px;
    padding: 44px 52px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 24px var(--shadow-sm);
}

.notice-title {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.2;
    color: var(--brand);
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.notice-body p {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.80;
    color: var(--body-text);
    margin-bottom: 14px;
}

.notice-body p:last-child {
    margin-bottom: 0;
}

.highlight {
    color: var(--brand);
    font-weight: 600;
}

.highlight-soft {
    color: var(--brand-light);
    font-style: italic;
    font-weight: 500;
}

.notice-thanks {
    margin-top: 6px;
    color: #888888 !important;
    font-size: 14px !important;
    font-style: italic;
}


/* ================================================
   SECTION 2: VISIT OUR STORE + PRODUCTS FOR SALE
   ================================================ */
.info-section {
    padding: 88px 0;
    background-color: var(--warm-white);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

/* --- Shared Column Typography --- */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1;
    color: var(--brand);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-eyebrow::before {
    content: '';
    display: block;
    width: 14px;
    height: 2px;
    background-color: var(--brand);
    flex-shrink: 0;
}

.section-heading {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.22;
    color: var(--off-black);
    margin-bottom: 22px;
}

.section-text {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.80;
    color: var(--body-text);
    margin-bottom: 16px;
}

.section-cta-line {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.6;
    color: var(--body-text);
    margin-bottom: 30px;
}

.inline-link {
    color: var(--brand);
    font-weight: 600;
    border-bottom: 1px solid rgba(80, 22, 18, 0.30);
    transition: border-color 0.2s;
}

.inline-link:hover {
    border-color: var(--brand);
}

/* --- Products Column --- */
.products-col {
    background-color: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 40px 36px;
}

.products-list {
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.products-list li {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.4;
    color: var(--body-text);
    padding: 13px 16px 13px 44px;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    position: relative;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.products-list li::before {
    content: '◆';
    position: absolute;
    left: 17px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brand);
    font-size: 7px;
}

.products-list li:hover {
    border-color: rgba(80, 22, 18, 0.35);
    box-shadow: 0 3px 10px var(--shadow-sm);
}


/* ================================================
   SECTION 3: TESTIMONIALS
   ================================================ */
.testimonials-section {
    background-color: var(--off-black);
    padding: 88px 0;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(80, 22, 18, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(80, 22, 18, 0.12) 0%, transparent 60%);
}

/* --- Section header & Google badge --- */
.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header .section-eyebrow {
    color: var(--gold);
}

.testimonials-header .section-eyebrow::before {
    background-color: var(--gold);
}

.testimonials-header .section-heading {
    color: var(--white);
    margin-bottom: 32px;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 16px 28px;
}

.google-g-icon {
    flex-shrink: 0;
}

.google-badge-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.badge-score {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--white);
}

.badge-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    color: var(--gold);
}

.badge-link {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1;
    color: rgba(255, 255, 255, 0.50);
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
    transition: color 0.2s, border-color 0.2s;
}

.badge-link:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.60);
}

/* --- Cards grid --- */
.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.testimonial-card {
    flex: 0 0 calc(33.33% - 16px);
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 6px;
    padding: 36px 32px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.testimonial-card:hover {
    background-color: rgba(255, 255, 255, 0.07);
    border-color: rgba(201, 168, 76, 0.30);
    transform: translateY(-3px);
}

/* Decorative open-quote */
.t-quote {
    font-family: var(--font-serif);
    font-size: 72px;
    font-weight: 700;
    line-height: 0.6;
    color: var(--brand);
    opacity: 0.55;
    margin-bottom: 16px;
    user-select: none;
}

.t-text {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.80;
    color: rgba(255, 255, 255, 0.72);
    flex: 1;
    margin-bottom: 24px;
}

/* Footer: stars + name */
.t-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 18px;
}

.t-stars {
    display: flex;
    gap: 2px;
    color: var(--gold);
    margin-bottom: 8px;
}

.t-name {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.3;
    color: var(--white);
}

.t-source {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 3px;
    text-transform: uppercase;
}

/* Responsive — testimonials */
@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 600px) {
    .testimonial-card {
        flex: 0 0 100%;
    }

    .google-badge {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 18px 20px;
    }

    .google-badge-info {
        align-items: center;
    }
}


/* ================================================
   PAGE TITLE BAR (Sub-pages only)
   ================================================ */
.page-title-bar {
    background-color: var(--brand);
    padding: 60px 0 52px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-title-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.25) 0%, transparent 60%);
    pointer-events: none;
}

.page-title-bar-inner {
    position: relative;
    z-index: 1;
}

.page-title {
    font-family: var(--font-serif);
    font-size: 46px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.12;
    color: var(--white);
    margin-bottom: 14px;
}

.page-subtitle {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.04em;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    max-width: 560px;
    margin: 0 auto;
}

.page-title-divider {
    width: 44px;
    height: 3px;
    background-color: var(--gold);
    border-radius: 2px;
    margin: 18px auto 0;
}


/* ================================================
   INNER PAGE — SHARED CONTENT SECTION BASE
   Used by FAQ, Gallery, and any future sub-pages.
   Page-specific styles follow below.
   ================================================ */
.inner-section {
    padding: 92px 0 100px;
    background-color: var(--warm-white);
}

.inner-section-container {
    max-width: 900px;
}

/* Shared sub-page lead paragraph */
.inner-lead {
    font-family: var(--font-serif);
    font-size: 27px;
    font-weight: 700;
    letter-spacing: -0.005em;
    line-height: 1.48;
    color: var(--off-black);
    margin-bottom: 32px;
    padding-bottom: 30px;
    border-bottom: 3px solid var(--brand);
}

/* Shared sub-page body text —
   Use :not() to prevent overriding any lead class */
.inner-section p:not(.inner-lead) {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.88;
    color: var(--body-text);
    margin-bottom: 20px;
}

@media (max-width: 480px) {
    .inner-section {
        padding: 60px 0 72px;
    }

    .inner-lead {
        font-size: 21px;
    }
}


/* ================================================
   GALLERY PAGE
   ================================================ */
.gallery-section {
    padding: 80px 0 100px;
    background-color: var(--warm-white);
}

/* --- Intro block --- */
.gallery-intro {
    max-width: 760px;
    margin-bottom: 52px;
}

.gallery-intro-text {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.78;
    color: var(--body-text);
    margin-top: 8px;
}

.gallery-intro-text strong {
    color: var(--off-black);
    font-weight: 600;
}

/* --- Uniform 3-column grid --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

/* --- Each grid cell --- */
.gallery-item {
    display: block;
    position: relative;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.gallery-thumb {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

/* Hover overlay */
.gallery-hover {
    position: absolute;
    inset: 0;
    background: rgba(80, 22, 18, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--white);
}

.gallery-item:hover .gallery-thumb img,
.gallery-item:focus-visible .gallery-thumb img {
    transform: scale(1.06);
}

.gallery-item:hover .gallery-hover,
.gallery-item:focus-visible .gallery-hover {
    opacity: 1;
}

.gallery-item:focus-visible {
    outline: 3px solid var(--brand);
    outline-offset: 2px;
}

/* --- Responsive grid --- */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .gallery-section {
        padding: 60px 0 72px;
    }
}

@media (max-width: 420px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}


/* ================================================
   LIGHTBOX
   ================================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.lb-open {
    opacity: 1;
    pointer-events: all;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 4, 3, 0.92);
    cursor: zoom-out;
}

/* Image stage */
.lightbox-stage {
    position: relative;
    z-index: 1;
    max-width: min(90vw, 1100px);
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    display: block;
    max-width: 100%;
    max-height: 88vh;
    width: auto;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
    object-fit: contain;
}

/* Close button */
.lightbox-close {
    position: fixed;
    top: 20px;
    right: 24px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Prev / Next buttons */
.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.20);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* Counter */
.lightbox-counter {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1;
    color: rgba(255, 255, 255, 0.60);
}

@media (max-width: 600px) {
    .lb-prev { left: 8px; }
    .lb-next { right: 8px; }

    .lightbox-nav {
        width: 42px;
        height: 42px;
    }
}


/* ================================================
   FAQ PAGE
   ================================================ */
.faq-section {
    padding: 88px 0 100px;
    background-color: var(--warm-white);
}

/* --- Intro block --- */
.faq-intro {
    max-width: 680px;
    margin-bottom: 56px;
}

.faq-intro .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.faq-intro-text {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.70;
    color: var(--body-text);
    margin-top: 6px;
}

/* --- FAQ list --- */
.faq-list {
    max-width: 820px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--border);
}

/* --- Individual item --- */
.faq-item {
    border-bottom: 1px solid var(--border);
    transition: background-color 0.2s ease;
}

/* --- Question button --- */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 4px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.40;
    color: var(--off-black);
    transition: color 0.2s ease;
}

.faq-question:hover span,
.faq-item.faq-open .faq-question span {
    color: var(--brand);
}

/* Chevron icon */
.faq-chevron {
    color: var(--silver);
    flex-shrink: 0;
    transition: transform 0.3s ease, color 0.2s ease;
}

.faq-item.faq-open .faq-chevron {
    transform: rotate(180deg);
    color: var(--brand);
}

/* --- Answer panel --- */
.faq-answer {
    overflow: hidden;
}

.faq-answer[hidden] {
    display: none;
}

.faq-answer-inner {
    padding: 4px 4px 28px;
}

.faq-answer-inner p {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.85;
    color: var(--body-text);
    margin-bottom: 14px;
}

.faq-answer-inner p:last-child {
    margin-bottom: 0;
}

.faq-answer-inner strong {
    color: var(--off-black);
    font-weight: 600;
}

/* --- Warning callout box --- */
.faq-callout {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background-color: rgba(80, 22, 18, 0.06);
    border-left: 4px solid var(--brand);
    border-radius: 0 4px 4px 0;
    padding: 16px 20px;
    margin-top: 18px;
}

.faq-callout-icon {
    color: var(--brand);
    flex-shrink: 0;
    margin-top: 1px;
}

.faq-callout p {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.65;
    color: var(--brand-dark);
    margin-bottom: 0 !important;
}

.faq-callout p strong {
    color: var(--brand) !important;
    font-weight: 700;
}

/* --- CTA strip at bottom --- */
.faq-cta {
    max-width: 820px;
    margin-top: 56px;
    padding: 36px 40px;
    background-color: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.faq-cta p {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.3;
    color: var(--off-black);
}

.faq-cta-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .faq-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 24px;
    }

    .faq-section {
        padding: 60px 0 72px;
    }
}


/* ================================================
   ABOUT PAGE — CONTENT SECTION
   ================================================ */
.about-section {
    padding: 92px 0 100px;
    background-color: var(--warm-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 72px;
    align-items: start;
}

/* --- Lead paragraph --- */
.about-lead {
    font-family: var(--font-serif);
    font-size: 27px;
    font-weight: 700;
    letter-spacing: -0.005em;
    line-height: 1.48;
    color: var(--off-black);
    margin-bottom: 32px;
    padding-bottom: 30px;
    border-bottom: 3px solid var(--brand);
}

/* --- Body paragraphs (excludes the lead) --- */
.about-text p:not(.about-lead) {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.88;
    color: var(--body-text);
    margin-bottom: 20px;
}

.about-text p:not(.about-lead):last-of-type {
    margin-bottom: 0;
}

.about-closing {
    color: var(--off-black) !important;
    font-weight: 500 !important;
}

/* --- Signature --- */
.about-signature {
    margin-top: 36px;
}

.sig-divider {
    width: 52px;
    height: 2px;
    background: linear-gradient(90deg, var(--brand), var(--gold));
    border-radius: 2px;
    margin-bottom: 18px;
}

.sig-name {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.25;
    color: var(--brand);
    margin-bottom: 5px !important;
}

.sig-title {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.10em;
    line-height: 1;
    color: #999999;
    font-style: italic;
    margin-bottom: 0 !important;
}

/* --- Image column --- */
.about-image-col {
    position: sticky;
    top: 120px;
}

.about-image-wrapper {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.16);
    border: 1px solid var(--border);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
}

.about-image-caption {
    background-color: var(--brand);
    padding: 12px 18px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1;
    color: rgba(255, 255, 255, 0.80);
    text-align: center;
    text-transform: uppercase;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image-col {
        position: static;
        max-width: 520px;
    }
}

@media (max-width: 480px) {
    .about-lead {
        font-size: 21px;
    }

    .about-section {
        padding: 60px 0 72px;
    }
}


/* ================================================
   FAT FOOTER SECTION
   ================================================ */
.fat-footer {
    background-color: #1b120e;
    padding: 72px 0 60px;
    border-top: 4px solid var(--brand);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 52px;
}

.footer-col-heading {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 26px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--brand);
}

/* --- Contact Column --- */
.footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 20px;
}

.footer-contact-row:last-child {
    margin-bottom: 0;
}

.footer-icon {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-text {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.65;
    color: #bbb0a5;
}

.footer-contact-text p {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.65;
    color: #bbb0a5;
}

.footer-contact-text a {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1;
    color: #bbb0a5;
    transition: color 0.2s;
}

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

/* --- Hours Column --- */
.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table td {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1;
    color: #bbb0a5;
    padding: 9px 0;
}

.hours-table td:first-child {
    font-weight: 500;
    color: var(--white);
    padding-right: 18px;
    white-space: nowrap;
}

.hours-table .row-closed td {
    color: #6e6560;
    font-style: italic;
}

.hours-table .row-closed td:first-child {
    color: #6e6560;
}

/* --- Map Column --- */
.map-wrapper {
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.10);
    line-height: 0;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 210px;
}


/* ================================================
   COPYRIGHT FOOTER BAR
   ================================================ */
.copyright-bar {
    background-color: #0d0d0d;
    padding: 16px 0;
    border-top: 1px solid #252525;
}

.copyright-bar p {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.4;
    color: #5a5a5a;
    text-align: center;
}

.copyright-bar a {
    color: #7a7a7a;
    transition: color 0.2s;
}

.copyright-bar a:hover {
    color: #b0b0b0;
}


/* ================================================
   MOBILE STICKY PHONE BAR
   ================================================ */
.mobile-phone-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background-color: var(--brand);
    border-top: 2px solid var(--brand-light);
    height: 52px;
}

.mobile-phone-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 100%;
    width: 100%;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1;
    color: var(--white);
    text-transform: uppercase;
}


/* ================================================
   RESPONSIVE — 1024px
   ================================================ */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 64px;
    }

    .footer-grid {
        gap: 36px;
    }

    .info-grid {
        gap: 48px;
    }
}


/* ================================================
   RESPONSIVE — 768px (Tablet / Mobile breakpoint)
   ================================================ */
@media (max-width: 768px) {

    /* Top bar */
    .top-bar-inner {
        justify-content: center;
        gap: 18px;
        height: auto;
        padding: 8px 16px;
    }

    .top-bar-item .tb-text {
        display: none;
    }

    /* Main header */
    .main-header-inner {
        height: 74px;
        padding: 0 16px;
    }

    .logo-img {
        height: 50px;
    }

    /* Hamburger visible */
    .hamburger {
        display: flex;
    }

    /* Mobile nav */
    .main-nav {
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        background-color: var(--white);
        border-bottom: 3px solid var(--brand);
        box-shadow: 0 8px 28px var(--shadow-md);
        display: none;
        z-index: 999;
    }

    .main-nav.nav-open {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 0 12px;
    }

    .nav-link {
        display: block;
        padding: 14px 24px;
        font-size: 14px;
        border-radius: 0;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--brand);
        background-color: rgba(80, 22, 18, 0.05);
    }

    /* Hero */
    .hero {
        height: 560px;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-welcome {
        font-size: 11px;
        letter-spacing: 0.20em;
    }

    .hero-sub {
        font-size: 13px;
        letter-spacing: 0.20em;
    }

    .hero-desc {
        font-size: 15px;
    }

    /* Notice */
    .notice-card {
        padding: 30px 26px;
    }

    /* Info section */
    .info-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    /* Page title bar */
    .page-title {
        font-size: 34px;
    }

    .page-subtitle {
        font-size: 15px;
    }

    /* Sticky phone bar */
    .mobile-phone-bar {
        display: block;
    }

    body {
        padding-bottom: 52px;
    }
}


/* ================================================
   RESPONSIVE — 480px (Small mobile)
   ================================================ */
@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }

    .hero {
        height: 500px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-content {
        gap: 14px;
    }

    .hero-desc {
        font-size: 14px;
    }

    .section-heading {
        font-size: 26px;
    }

    .notice-title {
        font-size: 22px;
    }

    .notice-card {
        padding: 24px 20px;
    }

    .products-col {
        padding: 28px 22px;
    }

    .page-title {
        font-size: 28px;
    }

    .page-subtitle {
        font-size: 14px;
    }

    .fat-footer {
        padding: 52px 0 48px;
    }
}
