:root {
    /* "Zari Dusk" palette: warm parchment ground, deep wine ink/chrome, zari gold accent */
    --bg-neutral: #FAF3EC;
    --card-white: #FFFFFF;
    --text-dark: #2A1116;
    --accent-gold: #C79A49;
    --nav-muted: #8F7A72;
    --shadow-soft: rgba(58, 18, 32, 0.10);
    --black-overlay: rgba(20, 6, 10, 0.97);
    --border-light: #EDDFD2;
    --deep-wine: #3A1220;
    --ink-on-deep: #F6E9DD;
    --berry: #8A2846;
}

* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
    -webkit-tap-highlight-color: transparent; 
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height, 155px);
}

body { 
    font-family: 'Albert Sans', sans-serif; 
    background-color: var(--bg-neutral); 
    color: var(--text-dark); 
    min-height: 100vh; 
    display: flex;
    flex-direction: column;
    overflow-x: hidden; 
}

body.lock-scroll { 
    overflow: hidden; 
    position: fixed; 
    width: 100%; 
}

/* ==========================================
   ANNOUNCEMENT BAR STYLING
   ========================================== */
.announcement-bar {
    background: rgba(20, 6, 10, 0.75); /* wine-tinted, was translucent black */
    color: #FFFFFF;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
}

.announcement-track {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.announcement-phone {
    color: inherit;
    text-decoration: underline;
    font-weight: 800;
}

/* Larger, easier-to-read tap target on mobile, per accessibility feedback */
@media (max-width: 767px) {
    .announcement-bar {
        font-size: 1.05rem;
    }
    .announcement-phone {
        font-size: 1.2rem;
    }
}

.announcement-track .divider {
    color: var(--accent-gold);
    font-weight: 400;
}

/* ==========================================
   HEADER & ACTIONS STYLING
   ========================================== */
header {
    background: rgba(58, 18, 32, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(199, 154, 73, 0.25);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.logo-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo-box img { 
    height: 42px; 
    width: auto; 
    object-fit: contain; 
    display: block; 
}

/* Balanced Actions Area Positioning */
.header-actions {
    display: flex;
    align-items: center;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 14px;
}

.social-links a {
    color: var(--ink-on-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transform: translateY(0);
    transition: color 0.2s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-links svg {
    width: 22px;
    height: 22px;
}

.social-links a:active {
    color: var(--accent-gold);
    transform: translateY(-1px);
}

.social-links .jd-icon span {
    font-size: 0.72rem;
    font-weight: 800;
    border: 1.5px solid var(--ink-on-deep);
    padding: 2px 5px;
    border-radius: 4px;
    line-height: 1;
    letter-spacing: -0.2px;
    display: inline-block;
}

.social-links [aria-label="Instagram"],
.footer-social [aria-label="Instagram"] { color: #E1306C; }

.social-links [aria-label="Facebook"],
.footer-social [aria-label="Facebook"] { color: #1877F2; }

.social-links [aria-label="YouTube"],
.footer-social [aria-label="YouTube"] { color: #FF0000; }

.social-links [aria-label="Justdial"],
.footer-social [aria-label="Justdial"] { color: #F17722; }

.social-links [aria-label="Justdial"] span,
.footer-social [aria-label="Justdial"] span { border-color: currentColor; }

/* ==========================================
   HEADER SEARCH BAR
   ========================================== */
.header-search {
    display: flex;
    align-items: center;
    background: var(--bg-neutral);
    border: 1px solid var(--border-light);
    border-radius: 999px;
    padding: 4px 4px 4px 12px;
    gap: 6px;
    /* Sits as the last item in .explore-nav, right after the Categories dropdown */
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 2px;
}

.header-search-input {
    border: none;
    background: transparent;
    outline: none;
    font-family: 'Albert Sans', sans-serif;
    font-size: 0.75rem;
    width: 84px;
    color: var(--text-dark);
}

.header-search-input::placeholder {
    color: var(--nav-muted);
}

.header-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: none;
    background: var(--text-dark);
    color: #FFF;
    cursor: pointer;
}

.header-search-btn:active {
    background: var(--accent-gold);
}

/* ==========================================
   DROPDOWN MENU ARCHITECTURE
   ========================================== */
.explore-nav {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 10px;
    justify-items: center;
    align-items: center;
}

.nav-link,
.dropdown-btn {
    color: var(--ink-on-deep);
    background: none;
    border: none;
    font-family: 'Albert Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    white-space: nowrap;
    padding: 4px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.dropdown-btn {
    cursor: pointer;
}

.nav-link:active,
.dropdown-btn:active {
    color: var(--accent-gold);
}

/* Text-slide hover: the label and its off-white "shadow" copy sit in a
   clipped box and swap places on hover, like a vertical conveyor belt. */
.nav-link,
.dropdown-btn-text {
    position: relative;
    overflow: hidden;
}

.dropdown-btn-text {
    display: inline-block;
}

.nav-link span,
.dropdown-btn-text span {
    display: inline-block;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.25s;
    will-change: transform, opacity;
}

.nav-link::after,
.dropdown-btn-text::after {
    content: attr(data-alt);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.25s;
    pointer-events: none;
}

.dropdown {
    position: relative;
    display: flex;
    justify-content: center;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    min-width: 200px;
    max-width: 260px;
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border: 1px solid var(--border-light);
    z-index: 1010;
    max-height: 280px;
    overflow-y: auto;
}

.dropdown-content.show {
    display: block;
}

.dropdown-content a {
    color: var(--text-dark);
    padding: 12px 18px;
    text-decoration: none;
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    border-bottom: 1px solid #FAF9F7;
    transition: background 0.15s ease;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:active {
    background: var(--bg-neutral);
    color: var(--accent-gold);
}

/* ==========================================
   MAIN LAYOUT & GRID CONTENT
   ========================================== */
main {
    margin-top: var(--header-height, 155px); /* Kept in sync with the fixed header's real height via JS */
    flex: 1 0 auto; 
}

.section-wrap {
    padding: 30px 16px 10px 16px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-wrap + .section-wrap {
    border-top: 1px solid var(--border-light);
}

/* ── Homepage category accordion ── */
.cat-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid var(--border-light);
    padding: 12px 0 10px;
    cursor: pointer;
    text-align: left;
    color: inherit;
    gap: 12px;
}
.cat-accordion-header .section-title {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
    font-weight: 700;
    font-style: italic;
}
.cat-chevron {
    flex-shrink: 0;
    transition: transform 0.25s ease;
    opacity: 0.6;
}
.cat-accordion-header[aria-expanded="true"] .cat-chevron {
    transform: rotate(180deg);
    opacity: 1;
}
.cat-accordion-body {
    display: none;
    padding-top: 16px;
}
.cat-accordion-body.open {
    display: block;
    animation: catFadeIn 0.22s ease;
}
@keyframes catFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.section-title {
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.75rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 8px;
}

.section-intro {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--nav-muted);
    max-width: 640px;
    margin-top: -8px;
    margin-bottom: 20px;
}

/* ==========================================
   HERO / WELCOME SECTION
   ========================================== */
.hero-section {
    background: radial-gradient(circle at 50% 0%, rgba(132, 107, 67, 0.08), transparent 65%), var(--bg-neutral);
    border-bottom: 1px solid var(--border-light);
    padding: 44px 16px 40px;
    text-align: center;
}

.hero-content {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.9rem;
    line-height: 1.25;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--nav-muted);
    max-width: 480px;
    margin-bottom: 26px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 260px;
}

.hero-btn {
    text-decoration: none;
}

.hero-btn-secondary {
    width: 100%;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.hero-btn-secondary:active {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

/* ==========================================
   EXPLORE SECTION: VIDEO GRID
   ========================================== */
.explore-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 14px;
}

.explore-card {
    display: flex;
    flex-direction: column;
}

.explore-text {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text-dark);
    max-width: 700px;
    margin-bottom: 20px;
}

.explore-card .explore-text {
    font-size: 0.72rem;
    line-height: 1.5;
    max-width: none;
    margin-top: 10px;
    margin-bottom: 0;
}

.explore-card .explore-text + .explore-text {
    margin-top: 8px;
}

.video-embed-wrap {
    position: relative;
    width: 100%;
    max-width: 700px;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 2px 10px var(--shadow-soft);
}

.video-embed-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================
   ABOUT PAGE
   ========================================== */
.about-hero-image-wrap {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 16px 0;
}

.about-hero-img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 16px var(--shadow-soft);
    display: block;
}

/* Small photo strip breaking up the About page's text-heavy middle section */
.about-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 720px;
    margin: 0 auto;
}

.about-gallery-item {
    aspect-ratio: 3 / 4;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow-soft);
}

.about-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-lead {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 720px;
    margin-bottom: 16px;
}

.about-text {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text-dark);
    max-width: 720px;
    margin-bottom: 16px;
}

.about-text:last-child {
    margin-bottom: 0;
}

.about-subhead {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--text-dark);
    max-width: 720px;
    margin: 28px auto 12px;
}

.about-list {
    text-align: left;
    max-width: 720px;
    margin: 0 auto 16px;
    padding-left: 20px;
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text-dark);
}

.about-list li {
    margin-bottom: 6px;
}

.about-list li:last-child {
    margin-bottom: 0;
}

.about-list a {
    color: var(--text-dark);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--border-light);
    text-underline-offset: 2px;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.about-list a:hover,
.about-list a:active {
    color: var(--accent-gold);
    text-decoration-color: var(--accent-gold);
}

.search-tags-wrap {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
}

.search-tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.search-tag {
    background: var(--bg-neutral);
    color: var(--nav-muted);
    border: 1px solid var(--border-light);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.2s ease, border-color 0.2s ease;
}

a.search-tag:hover,
a.search-tag:active {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

/* Centered text treatment for the "About Us" and "Our Story" sections only */
#section-about-hero,
#section-our-story {
    text-align: center;
}

#section-about-hero .about-lead,
#section-about-hero .about-text,
#section-our-story .about-text {
    margin-left: auto;
    margin-right: auto;
}

.offer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.offer-tag {
    background: var(--card-white);
    color: var(--text-dark);
    border: 1px solid var(--border-light);
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px var(--shadow-soft);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.value-card {
    background: var(--card-white);
    border-radius: 12px;
    padding: 20px 16px;
    box-shadow: 0 2px 10px var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.value-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-neutral);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.value-text {
    font-size: 0.78rem;
    line-height: 1.6;
    color: var(--nav-muted);
}

.cta-card {
    background: var(--text-dark);
    border-radius: 16px;
    padding: 36px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.7rem;
    color: #FFFFFF;
}

.cta-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 400px;
    margin-bottom: 10px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 280px;
}

.cta-btn {
    text-decoration: none;
}

.cta-btn-secondary {
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.cta-btn-secondary:active {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

/* Same shape as cta-btn-secondary but for use directly on a light page
   background (e.g. the "Back" link on search.html and category subpages) --
   cta-btn-secondary itself is white-on-white outside a dark .cta-card. */
.link-back {
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border: 1px solid var(--text-dark);
    border-radius: 6px;
    height: 44px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.link-back:active,
.link-back:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

/* "View More Photos on Google Photos" link, shown after a category's own
   gallery once that category has an album configured (see script.js). */
.google-photos-cta {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.link-external {
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border: 1px solid var(--accent-gold);
    border-radius: 6px;
    height: 44px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.link-external:hover,
.link-external:active {
    background: var(--accent-gold);
    color: #FFFFFF;
}

/* ==========================================
   CONTACT PAGE: INFO CARD
   ========================================== */
.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
    min-width: 0;
}

.contact-card {
    background: var(--card-white);
    border-radius: 12px;
    box-shadow: 0 2px 10px var(--shadow-soft);
    padding: 4px 20px;
    max-width: 600px;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-light);
}

.contact-row:last-child {
    border-bottom: none;
}

.contact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-neutral);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 2px;
}

.contact-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--nav-muted);
}

.contact-value {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
}

a.contact-value {
    text-decoration: none;
    width: fit-content;
}

a.contact-value:active {
    color: var(--accent-gold);
}

.contact-wa-btn {
    display: flex;
    max-width: 320px;
    margin-top: 24px;
    text-decoration: none;
}

.contact-map-wrap {
    width: 100%;
    max-width: 600px;
    height: 300px;
    margin-top: 32px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow-soft);
}

.contact-map-wrap iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Standalone map embed for the homepage Location section -- deliberately
   separate from .contact-map-wrap, whose desktop rule assumes it's a flex
   child of .contact-layout (it would collapse to near-zero height here). */
.home-map-wrap {
    width: 100%;
    max-width: 700px;
    height: 320px;
    margin: 16px auto 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow-soft);
}

.home-map-wrap iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
}

.search-empty-message {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--nav-muted);
    text-align: center;
    padding: 24px 0;
}

.photo-cover {
    background: var(--card-white);
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 2px 10px var(--shadow-soft);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 316px;
    min-width: 0; /* lets grid shrink this item below its nowrap .photo-name content instead of overflowing the row */
}

.cover-frame {
    width: 100%;
    flex: 1 1 auto;
    min-height: 0;
    background: #FAFAFA;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.cover-frame img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Filename shown under each thumbnail (see script.js formatDisplayName) */
.photo-name {
    flex: 0 0 auto;
    margin: 0;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==========================================
   BUTTONS & FLOAT ACTIONS
   ========================================== */
.wa-order-btn { 
    background: var(--text-dark); 
    color: #FFF; 
    border: none; 
    width: 100%;
    height: 44px;
    font-weight: 700; 
    font-size: 0.68rem; 
    letter-spacing: 1px; 
    border-radius: 6px; 
    cursor: pointer; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-float { 
    position: fixed; 
    bottom: 20px; 
    right: 20px; 
    width: 54px; 
    height: 54px; 
    background: #25D366; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    z-index: 900; 
    box-shadow: 0 4px 16px rgba(0,0,0,0.2); 
}

#zoom-overlay { 
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--black-overlay); z-index: 9999; display: none; touch-action: none; overflow: hidden; 
}
#zoom-track { display: flex; width: auto; height: 100%; will-change: transform; }
.zoom-photo-box { flex: 0 0 100vw; height: 100vh; display: flex; align-items: center; justify-content: center; }
.zoom-photo-box img { max-width: 95%; max-height: 80%; object-fit: contain; }
.zoom-main-photo { transform: scale(1); transition: transform 0.2s ease; }
.zoom-neighbor-photo { transform: scale(0.9); opacity: 0.2; }
.close-zoom { position: absolute; top: 20px; right: 20px; font-size: 2.5rem; color: #fff; cursor: pointer; z-index: 10001; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.15); border-radius: 50%; line-height: 1; backdrop-filter: blur(5px); }

/* ==========================================
   FOOTER STYLING (mirrors header: brand + social,
   nav links, and contact info, on a dark surface)
   ========================================== */
footer {
    background: var(--text-dark);
    border-top: 3px solid var(--accent-gold);
    margin-top: 40px;
    flex-shrink: 0;
}

.footer-top {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 16px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-brand {
    gap: 14px;
}

.footer-logo-box {
    border-radius: 8px;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
}

.footer-logo-box img {
    height: 36px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    letter-spacing: 0.3px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-social a {
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-social a:active {
    color: var(--accent-gold);
}

.footer-social .jd-icon span {
    font-size: 0.62rem;
    font-weight: 800;
    border: 1.5px solid #FFFFFF;
    padding: 1px 4px;
    border-radius: 4px;
    line-height: 1;
    letter-spacing: -0.2px;
    display: inline-block;
    transition: border-color 0.2s ease;
}

.footer-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 2px;
    background: var(--accent-gold);
}

.footer-links,
.footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-links a,
.footer-info a,
.footer-info p {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.5;
    max-width: 260px;
    transition: color 0.2s ease;
}

.footer-links a {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links a:active,
.footer-info a:active {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-weight: 500;
}


/* ==========================================
   RESPONSIVE DESIGN UPGRADES (DESKTOP)
   ========================================== */
@media (min-width: 768px) {
    .header-inner {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 14px 4%;
        gap: 0;
        row-gap: 12px;
    }
    .logo-box img { 
        height: 48px; 
    }
    .logo-row {
        width: auto;
        flex-grow: 0;
        justify-content: flex-start;
        gap: 28px;
    }
    
    .header-actions {
        flex-grow: 0;
    }
    .social-links {
        gap: 18px;
    }
    .social-links a:hover {
        color: var(--accent-gold);
        transform: translateY(-3px);
    }
    .social-links .jd-icon span:hover {
        border-color: var(--accent-gold);
    }
    .explore-nav {
        width: auto;
        max-width: none;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-end;
        gap: 16px 24px;
        margin-left: auto;
    }
    .header-search {
        grid-column: auto;
        margin-top: 0;
    }
    .header-search-input {
        width: 140px;
    }
    .header-search-btn:hover {
        background: var(--accent-gold);
    }
    .nav-link:hover span,
    .dropdown-btn:hover .dropdown-btn-text span {
        transform: translateY(-100%);
        opacity: 0;
    }
    .nav-link:hover::after,
    .dropdown-btn:hover .dropdown-btn-text::after {
        transform: translateY(0);
        opacity: 1;
    }
    .dropdown-content a:hover {
        background: var(--bg-neutral);
        color: var(--accent-gold);
    }
    a.contact-value:hover {
        color: var(--accent-gold);
    }
    .contact-layout {
        flex-direction: row;
        align-items: flex-start;
    }
    .contact-map-wrap {
        flex: 1 1 0;
        max-width: none;
        height: auto;
        margin-top: 0;
        align-self: stretch;
    }
    .hero-section { padding: 64px 4% 56px; }
    .hero-title { font-size: 2.6rem; }
    .hero-subtitle { font-size: 1rem; max-width: 560px; }
    .hero-actions { flex-direction: row; justify-content: center; max-width: none; }
    .hero-btn, .hero-btn-secondary { width: 200px; }
    .hero-btn-secondary:hover {
        border-color: var(--accent-gold);
        color: var(--accent-gold);
    }
    .about-hero-image-wrap { padding: 32px 4% 0; }
    .about-hero-img { max-height: 520px; }
    .about-lead { font-size: 1.05rem; }
    .about-gallery-grid { grid-template-columns: repeat(4, 1fr); max-width: 1000px; gap: 20px; }
    .values-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .cta-card { padding: 48px 40px; }
    .cta-actions { flex-direction: row; justify-content: center; max-width: none; }
    .cta-btn, .cta-btn-secondary { width: 220px; }
    .cta-btn-secondary:hover {
        border-color: var(--accent-gold);
        color: var(--accent-gold);
    }
    .explore-grid { gap: 32px 24px; }
    .explore-card .explore-text { font-size: 0.82rem; }
    .grid-container { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 24px; }
    .photo-cover { height: 430px; padding: 12px; }
    .photo-name { font-size: 0.78rem; }
    .cover-frame:hover img { transform: scale(1.08); }
    .wa-order-btn { height: 48px; font-size: 0.75rem; letter-spacing: 1.5px; }
    .photo-cover .wa-order-btn:hover { color: var(--accent-gold); }

    /* Footer: left-aligned multi-column layout + hover states on desktop */
    .footer-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        text-align: left;
        padding: 56px 4% 40px;
    }
    .footer-col {
        align-items: flex-start;
    }
    .footer-heading::after {
        left: 0;
        transform: none;
    }
    .footer-links,
    .footer-info {
        align-items: flex-start;
    }
    .footer-social a:hover {
        color: var(--accent-gold);
    }
    .footer-social .jd-icon span:hover {
        border-color: var(--accent-gold);
    }
    .footer-links a:hover,
    .footer-info a:hover {
        color: var(--accent-gold);
    }
}

/* ==========================================
   Welcome Popup
========================================== */
#welcome-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10010;
    justify-content: center;
    align-items: center;
    padding: 16px;
    animation: welcomeOverlayFade 0.3s ease;
}

#welcome-modal .welcome-box {
    position: relative;
    background: var(--berry);
    padding: 36px 28px 28px;
    border-radius: 12px;
    width: 100%;
    max-width: 380px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: welcomePopIn 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#welcome-modal .welcome-box h3 {
    color: #FFFFFF;
}

#welcome-modal .welcome-box p {
    color: var(--ink-on-deep);
}

#welcome-modal .welcome-close {
    color: var(--ink-on-deep);
}

#welcome-modal .welcome-close:hover {
    color: #FFFFFF;
}

#welcome-modal .welcome-meta {
    margin-top: -6px;
    margin-bottom: 0;
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-weight: 600;
}

#welcome-modal .welcome-wa-btn {
    margin-top: 20px;
    text-decoration: none;
}

@keyframes welcomeOverlayFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ==========================================
   Top Banner Image
========================================== */
.top-banner {
    width: 100%;
    line-height: 0;
    text-align: center;
}

.top-banner img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: inline-block;
}

@keyframes welcomePopIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

#welcome-modal .welcome-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}

#welcome-modal h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

#welcome-modal p {
    font-size: 0.95rem;
    color: var(--nav-muted);
    line-height: 1.5;
    margin-bottom: 20px;
}

/* ==========================================
   WhatsApp Inquiry Modal
========================================== */
#wa-inquiry-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: var(--black-overlay);
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: welcomeOverlayFade 0.25s ease;
}

#wa-inquiry-modal .wa-inquiry-box {
    position: relative;
    background: var(--card-white);
    padding: 36px 28px 28px;
    border-radius: 14px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 12px 40px rgba(58, 18, 32, 0.25);
    animation: welcomePopIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

#wa-inquiry-modal .wa-inquiry-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: var(--nav-muted);
    padding: 0;
}
#wa-inquiry-modal .wa-inquiry-close:hover { color: var(--text-dark); }

#wa-inquiry-modal h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.35rem;
    color: var(--deep-wine);
    margin: 0;
}

#wa-inquiry-modal p {
    font-size: 0.9rem;
    color: var(--nav-muted);
    margin: -6px 0 0;
    line-height: 1.4;
}

.wa-inquiry-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: -6px;
}

.wa-inquiry-input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border-light);
    border-radius: 8px;
    font-family: 'Albert Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--bg-neutral);
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s;
}
.wa-inquiry-input:focus { border-color: var(--accent-gold); }

.wa-inquiry-check-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-dark);
    cursor: pointer;
    line-height: 1.4;
}
.wa-inquiry-check-label input[type="checkbox"] {
    margin-top: 2px;
    width: 16px;
    height: 16px;
    accent-color: var(--accent-gold);
    flex-shrink: 0;
    cursor: pointer;
}

#wa-inquiry-send {
    margin-top: 4px;
    width: 100%;
}

/* Google Review Button */
.google-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #3c4043;
    border: 1.5px solid #dadce0;
    border-radius: 6px;
    padding: 10px 20px;
    font-family: 'Albert Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    cursor: pointer;
    transition: box-shadow 0.18s, border-color 0.18s;
    white-space: nowrap;
}
.google-review-btn:hover {
    box-shadow: 0 2px 8px rgba(60,64,67,0.18);
    border-color: #bbb;
}
.google-review-btn .g-logo {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.google-review-btn .g-stars {
    color: #fbbc04;
    font-size: 0.8rem;
    letter-spacing: 1px;
}