/* ══════════════════════════════════════════════════════════
   Martin's Harbour – Main Stylesheet
   Replaces Tailwind CDN with production-ready vanilla CSS
   ══════════════════════════════════════════════════════════ */

/* ── CSS Variables (Design Tokens) ── */
:root {
    --primary-bg: #F5F2ED;
    --secondary-bg: #EDE9E3;
    --tertiary-bg: #E5E0D8;
    --card-bg: #FAF8F5;
    --text-primary: #1C2329;
    --text-secondary: #6B6258;
    --gold-accent: #B8963F;
    --gold-hover: #B1904D;
    --footer-bg: #1B242C;
    --footer-text: #F5F2ED;
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Cormorant Garamond', serif;
}

/* ── Base Reset & Defaults ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    background: var(--primary-bg);
    color: var(--text-primary);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--text-primary);
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* ── Utility Classes ── */
.warm-shadow {
    box-shadow: 0 4px 20px -2px rgba(107, 98, 88, 0.08);
}

/* ── Section Padding ── */
section {
    padding-top: 60px;
    padding-bottom: 60px;
}

@media (min-width: 768px) {
    section {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

/* ── Custom Scrollbar ── */
.custom-scrollbar::-webkit-scrollbar {
    height: 3px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: var(--secondary-bg);
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: var(--gold-accent);
}

/* ── Animations ── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }


/* ════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════ */
.site-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    transition: all 0.5s ease;
}

.nav-scrolled {
    background-color: rgba(245, 242, 237, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(184, 150, 63, 0.1);
}

.nav-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 2rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    height: 3rem;
    width: auto;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.05));
    transition: all 0.3s ease;
    opacity: 0;
    mix-blend-mode: multiply;
}

@media (min-width: 768px) {
    .nav-logo { height: 4rem; }
}

.nav-links {
    display: none;
    align-items: center;
    gap: 3rem;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

@media (min-width: 1024px) {
    .nav-links { display: flex; }
}

.nav-links a {
    transition: color 0.3s ease;
}
.nav-links a:hover {
    color: var(--gold-accent);
}

/* Nav text color when scrolled */
.nav-scrolled .nav-links {
    color: var(--text-primary);
}
.nav-scrolled .mobile-menu-btn {
    color: var(--text-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-menu-btn {
    background: var(--gold-accent);
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
    display: block;
    text-align: center;
    text-decoration: none;
}

@media (min-width: 768px) {
    .nav-menu-btn {
        padding: 0.625rem 2rem;
    }
}

.nav-menu-btn:hover {
    background: var(--gold-hover);
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 50;
    padding: 0;
}

.mobile-menu-btn:hover {
    color: var(--gold-accent);
}

.mobile-menu-btn:focus {
    outline: none;
}

@media (min-width: 1024px) {
    .mobile-menu-btn { display: none; }
}


/* ════════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════════ */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 0.7cm;
    transform: scale(1.07);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), transparent, rgba(0,0,0,0.15));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 64rem;
}

.hero-content-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-tagline {
    color: var(--gold-accent);
    font-weight: 600;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    font-size: 10px;
    margin-bottom: 1.5rem;
    display: block;
    position: relative;
    top: -4cm;
}

@media (min-width: 768px) {
    .hero-tagline { font-size: 11px; }
}

.hero-heading {
    color: #fff;
    font-size: 1.875rem;
    font-family: var(--font-serif);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    max-width: 48rem;
    position: relative;
    top: 2cm;
    text-shadow: 0 2px 12px rgba(0,0,0,0.7), 0 1px 3px rgba(0,0,0,0.5);
}

@media (min-width: 768px) {
    .hero-heading { font-size: 3rem; }
}

.hero-subtitle {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 300;
    max-width: 42rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-family: var(--font-sans);
    position: relative;
    top: 2cm;
    text-shadow: 0 1px 8px rgba(0,0,0,0.6), 0 1px 2px rgba(0,0,0,0.4);
}

@media (min-width: 768px) {
    .hero-subtitle { font-size: 1rem; }
}

.hero-cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    position: relative;
    top: 2cm;
}

@media (min-width: 768px) {
    .hero-cta-wrap { flex-direction: row; }
}

.hero-cta {
    padding: 1.25rem 3rem;
    border: 2px solid var(--gold-accent);
    background: rgba(0,0,0,0.4);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    border-radius: 2px;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    text-decoration: none;
    display: inline-block;
}

.hero-cta:hover {
    background: var(--gold-accent);
    color: #fff;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero-scroll-label {
    font-size: 9px;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.hero-scroll-icon {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
}


/* ════════════════════════════════════════════
   ABOUT SECTION
   ════════════════════════════════════════════ */
.about-section {
    background: var(--secondary-bg);
    padding-top: 0;
    padding-bottom: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 550px;
}

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

.about-img-wrap {
    position: relative;
    overflow: hidden;
    height: 16rem;
}

@media (min-width: 768px) {
    .about-img-wrap { height: auto; }
}

.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .about-img-wrap img {
        position: absolute;
        inset: 0;
    }
}

.about-text-block {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .about-text-block { padding: 6rem; }
}

.about-text-block--story {
    background: var(--secondary-bg);
}

.about-text-block--journey {
    background: var(--primary-bg);
}

.section-label {
    color: var(--gold-accent);
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-label { margin-bottom: 2rem; }
}

.section-heading {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .section-heading { font-size: 3.75rem; margin-bottom: 2rem; }
}

.section-text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 300;
    font-family: var(--font-sans);
}

@media (min-width: 768px) {
    .section-text { font-size: 1.125rem; margin-bottom: 2.5rem; }
}

.quote-block {
    background: var(--card-bg);
    padding: 1.5rem;
    box-shadow: 0 4px 20px -2px rgba(107, 98, 88, 0.08);
    border-left: 2px solid var(--gold-accent);
}

@media (min-width: 768px) {
    .quote-block { padding: 2.5rem; }
}

.quote-text {
    color: var(--text-primary);
    font-style: italic;
    font-size: 1.25rem;
    font-family: var(--font-serif);
    line-height: 1.6;
}

.quote-attribution {
    color: var(--gold-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 1rem;
    font-family: var(--font-sans);
}

.about-divider {
    border-top: 1px solid rgba(184, 150, 63, 0.1);
}

/* Journey section column reorder on mobile */
.about-grid--journey .about-text-block { order: 2; }
.about-grid--journey .about-img-wrap { order: 1; }

@media (min-width: 768px) {
    .about-grid--journey .about-text-block { order: 1; }
    .about-grid--journey .about-img-wrap { order: 2; }
}


/* ════════════════════════════════════════════
   MENU PREVIEW SECTION
   ════════════════════════════════════════════ */
.menu-section {
    background: var(--primary-bg);
}

.container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header-center {
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .section-header-center { margin-bottom: 6rem; }
}

.section-heading--xl {
    font-size: 1.875rem;
    margin-top: 1rem;
    font-weight: 300;
}

@media (min-width: 768px) {
    .section-heading--xl {
        font-size: 4.5rem;
        margin-top: 1.5rem;
    }
}

.section-divider-line {
    width: 4rem;
    height: 1px;
    background: rgba(184, 150, 63, 0.4);
    margin: 2.5rem auto 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

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

.featured-card {
    background: var(--card-bg);
    padding: 2rem;
    box-shadow: 0 4px 20px -2px rgba(107, 98, 88, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(184, 150, 63, 0.1);
}

.featured-card-img {
    overflow: hidden;
    margin-bottom: 2rem;
    aspect-ratio: 4/5;
    background: var(--secondary-bg);
}

.featured-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.featured-card:hover .featured-card-img img {
    transform: scale(1.05);
}

.featured-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-bg);
}

.featured-card-placeholder .material-icons {
    font-size: 3rem;
    color: rgba(184, 150, 63, 0.2);
}

.featured-card-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(107, 98, 88, 0.1);
    padding-bottom: 1rem;
}

.featured-card-name {
    font-size: 1.5rem;
    font-weight: 500;
}

.featured-card-price {
    color: var(--gold-accent);
    font-family: var(--font-serif);
    font-size: 1.125rem;
}

.featured-card-desc {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

.cta-center {
    margin-top: 5rem;
    display: flex;
    justify-content: center;
}

.btn-gold {
    padding: 1rem 2.5rem;
    background: var(--gold-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-gold:hover {
    background: var(--gold-hover);
}


/* ════════════════════════════════════════════
   GALLERY SECTION
   ════════════════════════════════════════════ */
.gallery-section {
    background: var(--primary-bg);
}

.gallery-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    gap: 2rem;
}

@media (min-width: 768px) {
    .gallery-header {
        flex-direction: row;
        align-items: flex-end;
        margin-bottom: 5rem;
    }
}

.gallery-header-text {
    text-align: center;
}

@media (min-width: 768px) {
    .gallery-header-text { text-align: left; }
}

.gallery-heading {
    font-size: 1.875rem;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .gallery-heading { font-size: 3.75rem; }
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    grid-auto-rows: 250px;
}

@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 350px;
    }
}

@media (min-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

.gallery-item {
    overflow: hidden;
    box-shadow: 0 4px 20px -2px rgba(107, 98, 88, 0.08);
    border-radius: 2px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* First image spans 2 cols and 2 rows on tablet+ */
@media (min-width: 640px) {
    .gallery-item--large {
        grid-column: span 2;
        grid-row: span 2;
    }
    .gallery-item--wide {
        grid-column: span 2;
    }
}

/* ── GALLERY COLLAGE (Homepage masonry) ── */
.gallery-collage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
    gap: 0.6rem;
    border-radius: 4px;
    overflow: hidden;
}

@media (min-width: 640px) {
    .gallery-collage {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 240px;
        gap: 0.75rem;
    }
}

@media (min-width: 960px) {
    .gallery-collage {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 260px;
        gap: 0.85rem;
    }
}

.collage-item {
    overflow: hidden;
    border-radius: 3px;
    position: relative;
    cursor: zoom-in;
    background: var(--secondary-bg);
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 0.4s ease;
    filter: brightness(0.95);
}

.collage-item:hover img {
    transform: scale(1.07);
    filter: brightness(1.05);
}

/* Span modifiers */
@media (min-width: 640px) {
    .collage-item--large {
        grid-column: span 2;
        grid-row: span 2;
    }
    .collage-item--wide {
        grid-column: span 2;
    }
    .collage-item--tall {
        grid-row: span 2;
    }
}

/* ── "View All Photos" CTA Button ── */
.gallery-cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

.gallery-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    background: transparent;
    border: 1.5px solid var(--gold-accent);
    color: var(--text-primary);
    padding: 0.75rem 1.75rem 0.75rem 0.85rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease,
                box-shadow 0.25s ease;
}

.gallery-view-all-btn:hover {
    background: var(--gold-accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -4px rgba(184, 150, 63, 0.35);
}

.gallery-plus-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--gold-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1;
    flex-shrink: 0;
    transition: background 0.25s;
}

.gallery-view-all-btn:hover .gallery-plus-icon {
    background: #fff;
    color: var(--gold-accent);
}

.gallery-plus-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gallery-count-badge {
    background: rgba(184, 150, 63, 0.15);
    color: var(--gold-accent);
    border-radius: 20px;
    padding: 0.1rem 0.55rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.gallery-view-all-btn:hover .gallery-count-badge {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

/* ── GALLERY LIGHTBOX MODAL ── */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    visibility: hidden;
    pointer-events: none;
}

.gallery-lightbox.is-open {
    visibility: visible;
    pointer-events: all;
}

.gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(28, 35, 41, 0.72);
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.35s ease;
    cursor: pointer;
}

.gallery-lightbox.is-open .gallery-lightbox-backdrop {
    opacity: 1;
}

.gallery-lightbox-panel {
    position: relative;
    width: min(92vw, 1100px);
    height: 100dvh;
    background: var(--primary-bg);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -12px 0 60px rgba(28, 35, 41, 0.22);
}

@media (min-width: 768px) {
    .gallery-lightbox-panel {
        width: min(80vw, 1100px);
    }
}

.gallery-lightbox.is-open .gallery-lightbox-panel {
    transform: translateX(0);
}

.gallery-lightbox-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(184, 150, 63, 0.15);
    flex-shrink: 0;
}

.gallery-lightbox-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.15rem;
}

.gallery-lightbox-count {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-accent);
}

.gallery-lightbox-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(107, 98, 88, 0.25);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: background 0.2s, border-color 0.2s;
}

.gallery-lightbox-close:hover {
    background: var(--secondary-bg);
    border-color: var(--gold-accent);
}

.gallery-lightbox-grid {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem 2rem 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    align-content: start;
}

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

.lightbox-grid-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 3px;
    background: var(--secondary-bg);
    cursor: pointer;
}

.lightbox-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
    filter: brightness(0.92);
}

.lightbox-grid-item:hover img {
    transform: scale(1.06);
    filter: brightness(1.04);
}

.lightbox-item-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(28, 35, 41, 0.75));
    color: #fff;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 1.5rem 0.65rem 0.55rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-grid-item:hover .lightbox-item-caption {
    opacity: 1;
}




/* ════════════════════════════════════════════
   REVIEWS SECTION
   ════════════════════════════════════════════ */
.reviews-section {
    background: var(--secondary-bg);
    overflow: hidden;
}

.reviews-heading {
    font-size: 1.875rem;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .reviews-heading { font-size: 3.75rem; }
}

.reviews-carousel {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4rem;
    gap: 1.5rem;
    scroll-snap-type: x mandatory;
}

.review-card-wrap {
    min-width: 300px;
    scroll-snap-align: center;
}

@media (min-width: 768px) {
    .review-card-wrap { min-width: 420px; }
}

.review-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 2px;
    box-shadow: 0 4px 20px -2px rgba(107, 98, 88, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(184, 150, 63, 0.1);
}

@media (min-width: 768px) {
    .review-card { padding: 3rem; }
}

.review-card-body {
    margin-bottom: 2.5rem;
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 2rem;
}

.review-stars .material-icons {
    color: var(--gold-accent);
    font-size: 1.125rem;
}

.review-text {
    font-size: 1.875rem;
    font-style: italic;
    line-height: 1.4;
    font-family: var(--font-serif);
}

.review-footer {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(107, 98, 88, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    object-fit: cover;
}

.review-author {
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

.review-role {
    color: var(--gold-accent);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 0.5rem;
    letter-spacing: 0.2em;
}


/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
.site-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 6rem 2rem 3rem;
}

.footer-inner {
    max-width: 80rem;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

.footer-brand-logo {
    height: 6rem;
    width: auto;
    opacity: 1;
    margin-bottom: 2rem;
    filter: invert(1) brightness(2);
    mix-blend-mode: screen;
}

@media (min-width: 768px) {
    .footer-brand-logo { height: 8rem; }
}

.footer-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(245, 242, 237, 0.6);
    max-width: 20rem;
    font-weight: 300;
}

.footer-heading {
    color: #fff;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 11px;
    font-family: var(--font-sans);
}

.footer-text-line {
    font-size: 13px;
    margin-bottom: 0.5rem;
    color: rgba(245, 242, 237, 0.7);
    font-weight: 300;
}

.footer-text-line a {
    transition: color 0.2s ease;
}

.footer-text-line a:hover {
    color: var(--gold-accent);
}

.footer-link-gold {
    color: var(--gold-accent);
    font-size: 10px;
    display: inline-flex;
    align-items: center;
    margin-top: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    transition: color 0.2s ease;
    text-decoration: none;
}

.footer-link-gold:hover {
    color: #fff;
}

.footer-link-gold .material-icons {
    font-size: 0.875rem;
    margin-right: 0.5rem;
}

.footer-social-link {
    color: var(--gold-accent);
    font-size: 10px;
    margin-top: 1.5rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.footer-social-link:hover {
    color: #fff;
}

.footer-social-link .material-icons {
    font-size: 0.875rem;
}

.footer-hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 0.75rem;
    color: rgba(245, 242, 237, 0.7);
    font-weight: 300;
}

.footer-hours-closed {
    color: rgba(245, 242, 237, 0.4);
    font-style: italic;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-bottom { flex-direction: row; }
}

.footer-bottom-links {
    display: flex;
    gap: 2.5rem;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    color: rgba(245, 242, 237, 0.5);
}

.footer-bottom-links a {
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: var(--gold-accent);
}

.footer-copyright {
    font-size: 9px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(245, 242, 237, 0.3);
}

.footer-copyright a {
    color: inherit;
    text-decoration: none;
    cursor: default;
    user-select: none;
}


/* ════════════════════════════════════════════
   SCROLL TO TOP (Circular Progress)
   ════════════════════════════════════════════ */
#scrollTop {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    background: rgba(10,10,10,0.88);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.85);
    transition: opacity 0.3s, transform 0.3s;
    z-index: 200;
    padding: 0;
}
#scrollTop.visible {
    opacity: 1;
    pointer-events: all;
    transform: scale(1);
}
#scrollTop .material-icons {
    font-size: 20px;
    color: var(--gold-accent);
    z-index: 1;
}
.progress-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.ring-track {
    fill: none;
    stroke: rgba(184,150,63,0.2);
    stroke-width: 3;
}
.ring-fill {
    fill: none;
    stroke: var(--gold-accent);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 113.1;
    stroke-dashoffset: 113.1;
    transition: stroke-dashoffset 0.15s linear;
}


/* ════════════════════════════════════════════
   MOBILE DRAWER MENU
   ════════════════════════════════════════════ */
.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 60;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
}

@media (min-width: 1024px) {
    .mobile-drawer { display: none; }
}

.mobile-drawer.open {
    transform: translateX(0);
}

.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.mobile-drawer-panel {
    position: relative;
    margin-left: auto;
    width: 80%;
    max-width: 24rem;
    height: 100%;
    background: var(--primary-bg);
    display: flex;
    flex-direction: column;
    padding: 2rem;
    z-index: 10;
    box-shadow: -10px 0 40px rgba(0,0,0,0.25);
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.mobile-drawer-brand {
    color: var(--gold-accent);
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
}

.mobile-drawer-close {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
}

.mobile-drawer-close:hover {
    color: var(--gold-accent);
}

.mobile-drawer-close:focus {
    outline: none;
}

.mobile-drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 600;
}

.mobile-nav-link {
    color: var(--text-primary);
    transition: color 0.3s ease;
    text-decoration: none;
}

.mobile-nav-link:hover {
    color: var(--gold-accent);
}

.mobile-drawer-cta {
    padding-top: 2rem;
    border-top: 1px solid rgba(107, 98, 88, 0.1);
}

.mobile-drawer-cta a {
    background: var(--gold-accent);
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    text-decoration: none;
}

.mobile-drawer-cta a:hover {
    background: var(--gold-hover);
}

.mobile-drawer-footer {
    margin-top: auto;
    text-align: center;
}

.mobile-drawer-footer-label {
    color: var(--text-secondary);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    font-family: var(--font-sans);
}

.mobile-drawer-phone {
    color: var(--gold-accent);
    font-weight: 600;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    font-family: var(--font-sans);
    transition: color 0.3s ease;
    text-decoration: none;
}

.mobile-drawer-phone:hover {
    color: var(--text-primary);
}


/* ════════════════════════════════════════════
   MATERIAL ICONS (utility)
   ════════════════════════════════════════════ */
.icon-sm { font-size: 0.875rem; }
.icon-lg { font-size: 1.5rem; }
.icon-xl { font-size: 3rem; }

/* Habrix Developer Credit */
.footer-copyright-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-copyright-group {
        align-items: flex-end;
    }
}

.habrix-credit {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.habrix-credit:hover {
    color: #ffffff;
}

.habrix-logo {
    height: 22px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.habrix-credit:hover .habrix-logo {
    transform: scale(1.08);
}

