:root {
    --primary: #c38a1b;
    --primary-dark: #9a690f;
    --text: #1f1f1f;
    --muted: #5a5a5a;
    --surface: #fff9f3;
    --card: rgba(255, 255, 255, 0.85);
    --border: rgba(195, 138, 27, 0.2);
    --shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    overflow-x: hidden;
    background: linear-gradient(180deg, #fcfaf4 0%, #f7f1e3 45%, #fdf9f3 100%);
    color: var(--text);
    line-height: 1.6;
}

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

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

section {
    padding: 80px 6% 60px;
}

.section-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 500;
    margin-bottom: 14px;
}

h1, h2, h3, h4, h5 {
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    color: var(--text);
    letter-spacing: 0.01em;
    line-height: 1.2;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 45px rgba(15, 23, 42, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 6%;
    z-index: 1000;
    transition: transform 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 6%;
}

.logo img {
    height: 48px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text);
    border-radius: 999px;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn.primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 20px 45px rgba(195, 138, 27, 0.35);
}

.btn.secondary {
    border-color: rgba(31, 31, 31, 0.2);
    color: var(--text);
    background: rgba(255, 255, 255, 0.7);
}

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

/* Hero */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 110px 6% 60px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    width: 100%;
}

.hero-eyebrow {
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 18px;
}

.hero-content h1 {
    font-size: clamp(2.8rem, 4.5vw, 4rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-description {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 28px;
}


.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 0;
}

.metrics-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 28px 6%;
    background: rgba(255, 255, 255, 0.55);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.metric {
    text-align: center;
    padding: 12px 8px;
    border-right: 1px solid var(--border);
}

.metric:last-child {
    border-right: none;
}

.metric span:not(.metric-value) {
    font-size: 0.8rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.metric-value {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-visual {
    position: relative;
}

.hero-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
    position: relative;
}

.hero-slideshow {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
}

.hero-slideshow .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slideshow .slide.active {
    opacity: 1;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(0, 0, 0, 0.45);
    border: none;
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 0.85rem;
    transition: background 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(4px);
}

.slide-btn:hover {
    background: rgba(195, 138, 27, 0.85);
    transform: translateY(-50%) scale(1.1);
}

.slide-btn.prev { left: 12px; }
.slide-btn.next { right: 12px; }

.slideshow-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 2;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.dot.active {
    background: #fff;
    transform: scale(1.3);
}


.hero-card-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 14px 20px;
    border-radius: 14px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.badge-label {
    font-weight: 700;
    display: block;
}


/* PayKoko BNPL Strip — shimmer handled in glow section below */
.bnpl-strip {
    padding: 12px 6%;
}

.bnpl-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.bnpl-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--primary);
    color: #fff;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.bnpl-text {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    margin: 0;
    text-align: center;
}

.bnpl-text strong {
    color: #fff;
}

.bnpl-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(195, 138, 27, 0.15);
    border: 1.5px solid rgba(195, 138, 27, 0.5);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.bnpl-logo-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.bnpl-logo {
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.bnpl-logo strong {
    font-weight: 800;
}

.bnpl-logo-link i {
    font-size: 0.75rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.about-stats div {
    background: var(--card);
    padding: 18px;
    border-radius: 16px;
    border: 1px solid var(--border);
    text-align: center;
}

.about-stats span {
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
    color: var(--primary);
}

.feature-list {
    list-style: none;
    display: grid;
    gap: 12px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.feature-list i {
    color: var(--primary);
}

/* Workshop Video Section */
.workshop-section {
    background: var(--card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.workshop-container {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.workshop-video-wrap {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(15, 23, 42, 0.18);
    line-height: 0;
}

.workshop-video {
    width: 100%;
    height: auto;
    display: block;
}

.workshop-heading {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 18px;
}

.workshop-desc {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 28px;
}

.workshop-points {
    list-style: none;
    display: grid;
    gap: 12px;
}

.workshop-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
}

.workshop-points li i {
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}

@media (max-width: 860px) {
    .workshop-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .workshop-video-wrap {
        max-width: 420px;
        margin: 0 auto;
    }
}

/* Products */
.products-section {
    text-align: center;
}

.section-title {
    font-size: clamp(2.4rem, 3.2vw, 3.4rem);
    font-weight: 600;
    margin-bottom: 45px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.product-card {
    padding: 30px;
    border-radius: 24px;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.9), rgba(255, 245, 229, 0.9));
    border: 1px solid var(--border);
    border-top: 3px solid var(--primary);
    text-align: left;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 32px 72px rgba(15, 23, 42, 0.13);
}

.icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(195, 138, 27, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
}

.product-card ul {
    padding-left: 18px;
    color: var(--muted);
}

/* Gallery */
.gallery-section {
    text-align: center;
    background: #fff;
}

.gallery-header {
    max-width: 700px;
    margin: 0 auto 48px;
}

.gallery-title {
    font-size: clamp(2.4rem, 3.2vw, 3.4rem);
    font-weight: 600;
    margin-bottom: 12px;
}

.gallery-subtitle {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Filter Tabs */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 44px;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: 50px;
    border: 1.5px solid rgba(195, 138, 27, 0.3);
    background: transparent;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.filter-btn i {
    font-size: 0.82rem;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(195, 138, 27, 0.06);
    transform: translateY(-1px);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 6px 20px rgba(195, 138, 27, 0.35);
}

/* Gallery Grid */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 3;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item.hidden {
    display: none;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.14);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.45s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(10, 8, 5, 0.72));
    display: flex;
    align-items: flex-end;
    padding: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-label {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.025em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

@keyframes galleryFadeIn {
    from { opacity: 0; transform: translateY(10px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0)   scale(1);    }
}

/* Lightbox */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    background: rgba(0, 0, 0, 0.93);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 16px;
    animation: lightboxFadeIn 0.22s ease;
}

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

.lightbox-image {
    max-width: 92vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    display: block;
}

.close-btn {
    position: absolute;
    top: 18px;
    right: 26px;
    color: #fff;
    font-size: 38px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.75;
    transition: opacity 0.2s;
    user-select: none;
}

.close-btn:hover {
    opacity: 1;
}

.caption-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    font-family: 'Inter', sans-serif;
    background: rgba(0, 0, 0, 0.45);
    padding: 5px 16px;
    border-radius: 20px;
    max-width: 90vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Support */
.support-section {
    background: #fff;
}

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

.support-intro h2 {
    font-size: clamp(2.3rem, 3.2vw, 3.2rem);
    margin-bottom: 15px;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.support-card {
    background: var(--card);
    border-radius: 24px;
    padding: 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.support-card ul {
    margin-top: 15px;
    padding-left: 18px;
    color: var(--muted);
}

.image-card {
    padding: 0;
    overflow: hidden;
}

.image-card img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.image-card-content {
    padding: 24px;
}

.hours-card {
    background: linear-gradient(160deg, #fff7eb, #fef4e4);
}

.support-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.support-table th,
.support-table td {
    text-align: left;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hours-note {
    font-size: 0.9rem;
    color: var(--muted);
}

/* Feedback */
.feedback-section {
    background: radial-gradient(circle at 20% 20%, rgba(255, 232, 204, 0.4), transparent 35%),
        radial-gradient(circle at 80% 0%, rgba(255, 196, 150, 0.35), transparent 30%),
        #fff;
    text-align: center;
    padding-top: 80px;
}

.feedback-header {
    max-width: 980px;
    margin: 0 auto 32px;
}

.feedback-title {
    font-size: clamp(2.2rem, 3vw, 3rem);
    margin-bottom: 12px;
}

.feedback-subtitle {
    color: var(--muted);
    max-width: 680px;
    margin: 0 auto;
}

.feedback-pill-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 18px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(245, 161, 58, 0.12);
    color: #b05a00;
    border: 1px solid rgba(240, 163, 51, 0.25);
    font-weight: 600;
    font-size: 0.95rem;
}

.feedback-container {
    max-width: 1160px;
    margin: 0 auto;
}

.feedback-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    align-items: start;
}

.feedback-summary {
    text-align: left;
    background: linear-gradient(180deg, rgba(255, 241, 225, 0.8), #fff);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.feedback-summary h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.feedback-summary p {
    color: var(--muted);
}

.feedback-highlights {
    list-style: none;
    padding: 0;
    margin: 18px 0;
    display: grid;
    gap: 12px;
}

.feedback-highlights li {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.feedback-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.meta-card {
    padding: 12px 14px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.meta-label {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.feedback-form {
    background: #fff;
    color: var(--text);
    border-radius: 30px;
    padding: 32px;
    border: 1px solid var(--border);
    box-shadow: 0 22px 70px rgba(15, 23, 42, 0.07);
}

.form-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.half-width {
    min-width: 260px;
}

.form-group {
    flex: 1;
    margin-bottom: 18px;
    text-align: left;
}

.form-group label {
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrap i {
    position: absolute;
    left: 14px;
    color: var(--muted);
    pointer-events: none;
}

.input-wrap input,
.input-wrap select,
.input-wrap textarea {
    width: 100%;
    padding: 14px 16px 14px 42px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #faf8f4;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.input-wrap select option {
    color: #111;
}

.input-wrap textarea {
    min-height: 150px;
    resize: vertical;
}

.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(195, 138, 27, 0.15);
    background: #fff;
}

.textarea-wrap i {
    top: 18px;
}

.checkbox-group {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #faf8f4;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.checkbox-group input {
    margin-top: 4px;
}

.checkbox-label label {
    margin-bottom: 4px;
    display: block;
}

.helper-text {
    color: var(--muted);
    font-size: 0.88rem;
}

.helper-text.subtle {
    margin-top: 8px;
    text-align: center;
}

.submit-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
}

.submit-btn {
    background: linear-gradient(135deg, #f0a334, #f57c00);
    color: #0f141d;
    border: none;
    border-radius: 14px;
    padding: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.2s ease;
}

.submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(245, 124, 0, 0.35);
}

.success-message {
    display: none;
    margin-top: 20px;
    background: #d4edda;
    border-radius: 16px;
    padding: 18px;
}

/* Contact */
.contact-section {
    background: #fff;
}

.contact-title {
    text-align: center;
    font-size: clamp(2.4rem, 3.2vw, 3.4rem);
    margin-bottom: 45px;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    align-items: start;
}

.contact-details {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow);
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.contact-list i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 4px;
}

.map-iframe-container {
    position: relative;
    padding-bottom: 60%;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-iframe-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


/* Footer */
.footer {
    background: linear-gradient(160deg, #1c1208 0%, #120d07 50%, #1a1008 100%);
    color: rgba(255, 255, 255, 0.55);
    padding: 24px 6% 18px;
    border-top: 1px solid rgba(195, 138, 27, 0.2);
}

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

.footer-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    white-space: nowrap;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
    justify-content: center;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 8px;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(195, 138, 27, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px solid rgba(195, 138, 27, 0.1);
    padding-top: 14px;
    font-size: 0.8rem;
}

.footer-contact-inline {
    display: flex;
    align-items: center;
    gap: 6px 14px;
    flex-wrap: wrap;
}

.footer-contact-inline i {
    color: var(--primary);
    font-size: 0.78rem;
}

.footer-contact-inline a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-inline a:hover {
    color: var(--primary);
}

/* Scroll top */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 92px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 15px 30px rgba(195, 138, 27, 0.4);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1500;
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-5px);
}


/* FAQ */
.faq {
    background: linear-gradient(120deg, #fff9f3 0%, #ffffff 55%, #fff3e3 100%);
}

.faq-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
}

.faq-item h3 {
    margin-bottom: 8px;
}

.faq-item p {
    color: var(--muted);
}

/* =========================================
   GLOW & AMBIENT DESIGN ENHANCEMENTS
   ========================================= */

/* Gold gradient text on hero heading */
.hero-content h1 {
    background: linear-gradient(135deg, #1f1f1f 0%, #b87c10 40%, #e8b84b 60%, #1f1f1f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero-inner {
    position: relative;
    z-index: 1;
}

/* Section eyebrow glow */
.section-eyebrow {
    text-shadow: 0 0 20px rgba(195, 138, 27, 0.5);
}

/* Metric card hover glow */
.metric {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 48px rgba(195, 138, 27, 0.2), 0 0 0 1.5px rgba(195, 138, 27, 0.3);
}

/* Workshop text glass card */
.workshop-text {
    background: rgba(255, 252, 245, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 28px;
    padding: 44px;
    border: 1px solid rgba(195, 138, 27, 0.2);
    box-shadow: 0 8px 40px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Gallery item hover — gold border glow */
.gallery-item:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 24px 52px rgba(195, 138, 27, 0.22), 0 0 0 2px rgba(195, 138, 27, 0.45);
}

/* Gallery title gradient */
.gallery-title {
    background: linear-gradient(135deg, #1f1f1f 0%, #c38a1b 50%, #1f1f1f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* FAQ item hover — gold glow */
.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 48px rgba(195, 138, 27, 0.15), 0 0 0 1.5px rgba(195, 138, 27, 0.25);
}

/* Support card hover glow */
.support-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 60px rgba(195, 138, 27, 0.14), 0 0 0 1.5px rgba(195, 138, 27, 0.15);
}

/* Navbar stronger glass when scrolled */
.navbar.scrolled {
    box-shadow: 0 1px 0 rgba(195, 138, 27, 0.15), 0 8px 32px rgba(15, 23, 42, 0.1);
}

/* BNPL strip gold shimmer sweep */
@keyframes bnplShimmer {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}

.bnpl-strip {
    background: linear-gradient(
        110deg,
        #0a0805 0%, #0a0805 30%,
        #2d1e08 48%, #3d2a0a 50%, #2d1e08 52%,
        #0a0805 70%, #0a0805 100%
    );
    background-size: 300% 100%;
    animation: bnplShimmer 5s linear infinite;
    border-bottom: 1px solid rgba(195, 138, 27, 0.3);
    padding: 12px 6%;
}

/* Icon glow on feature lists */
.feature-list li i,
.hero-highlights li i,
.workshop-points li i {
    filter: drop-shadow(0 0 6px rgba(195, 138, 27, 0.6));
}

/* Social icon hover glow */
.social-icon:hover {
    box-shadow: 0 0 18px rgba(195, 138, 27, 0.65), 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Filter button active glow */
.filter-btn.active {
    box-shadow: 0 6px 20px rgba(195, 138, 27, 0.4), 0 0 0 0 rgba(195, 138, 27, 0);
}

/* Scroll reveal */
.sr-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.sr-reveal.sr-visible {
    opacity: 1;
    transform: translateY(0);
}

.sr-d1 { transition-delay: 0.08s; }
.sr-d2 { transition-delay: 0.16s; }
.sr-d3 { transition-delay: 0.26s; }
.sr-d4 { transition-delay: 0.36s; }

/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 72px;
        right: -100%;
        width: 70%;
        max-width: 320px;
        background: #fff;
        flex-direction: column;
        padding: 40px 30px;
        gap: 18px;
        box-shadow: var(--shadow);
        height: calc(100vh - 72px);
        transition: right 0.4s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        padding-top: 140px;
    }

    .brand-strip {
        margin: 40px 3%;
    }
}

@media (max-width: 900px) {
    /* Stack hero columns on tablet */
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 110px 5% 70px;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 5% 50px;
    }

    .form-row {
        flex-direction: column;
    }

    .cta-content {
        padding: 40px;
    }

    .gallery-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 6px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .gallery-filters::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 540px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        text-align: center;
        width: 100%;
    }
}

/* Mobile — phones */
@media (max-width: 640px) {
    /* Section padding */
    section {
        padding: 60px 4% 40px;
    }

    /* Hero top padding override (class specificity beats section rule) */
    .hero {
        padding-top: 90px;
        min-height: auto;
    }

    /* Hero: show slideshow on mobile */
    .hero-visual {
        display: block;
    }

    .hero-slideshow {
        aspect-ratio: 16 / 9;
    }

    /* Larger touch targets for slide arrows */
    .slide-btn {
        width: 44px;
        height: 44px;
        font-size: 0.95rem;
    }

    /* Prevent hero card shadow causing horizontal scroll */
    .hero-card {
        box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
    }

    /* Badge covers image on small screens — hide it */
    .hero-card-badge {
        display: none;
    }

    /* Metrics strip: 2×2 on phones */
    .metrics-strip {
        grid-template-columns: repeat(2, 1fr);
        padding: 16px 4%;
        gap: 10px;
    }

    .hero-eyebrow {
        letter-spacing: 0.1em;
        font-size: 0.8rem;
    }

    .metric-value {
        font-size: 1.8rem;
    }

    /* Section title */
    .section-title {
        display: block;
        text-align: center;
    }

    /* Gallery */
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .filter-btn {
        padding: 10px 16px;
        font-size: 0.82rem;
        min-height: 42px;
    }

    /* Workshop */
    .workshop-container {
        gap: 24px;
    }

    .workshop-heading {
        font-size: 1.6rem;
    }

    /* Services */
    .support-grid {
        grid-template-columns: 1fr;
    }

    .support-card {
        padding: 20px;
    }

    /* Feedback */
    .feedback-form {
        padding: 20px 16px;
        border-radius: 20px;
    }

    .feedback-summary {
        padding: 0;
    }

    /* Contact */
    .contact-details {
        padding: 20px 16px;
    }

    .contact-title {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
    }

    .contact-list li {
        flex-wrap: wrap;
        gap: 6px;
    }

    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
    }

    /* BNPL */
    .bnpl-inner {
        gap: 8px;
    }

    .bnpl-text {
        font-size: 0.88rem;
    }

    /* Footer */
    .footer-top-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* BNPL strip on mobile — compact single line */
@media (max-width: 600px) {
    .bnpl-strip {
        padding: 10px 4%;
    }

    .bnpl-inner {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: center;
    }

    .bnpl-text {
        font-size: 0.82rem;
        line-height: 1.5;
    }
}

/* Screen reader utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* AI chat assistant */
.chat-toggle {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: linear-gradient(135deg, #c1913b 0%, #f0c879 100%);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    font-weight: 600;
    cursor: pointer;
    z-index: 1320;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chat-toggle i {
    font-size: 1.1rem;
}

.chat-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.25);
}

.chat-toggle.is-open {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.18);
}

.chat-overlay {
    position: fixed;
    inset: 0;
    background: rgba(21, 21, 21, 0.3);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 1200;
}

.chat-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.chat-window {
    position: fixed;
    bottom: 104px;
    right: 24px;
    width: min(400px, calc(100% - 48px));
    height: min(560px, calc(100vh - 130px));
    padding: 0;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 32px 72px rgba(15, 23, 42, 0.22), 0 0 0 1px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(16px) scale(0.97);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 1310;
}

.chat-window.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    visibility: visible;
}

.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 18px;
    background: linear-gradient(135deg, #1f1f1f 0%, #3b2c16 60%, #c3891b 110%);
    color: #fff;
    flex-shrink: 0;
}

.chat-identity {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: grid;
    place-items: center;
    color: #f5d7a1;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.chat-title {
    font-weight: 700;
    font-size: 0.97rem;
    line-height: 1.3;
}

.chat-subtitle {
    font-size: 0.77rem;
    opacity: 0.75;
    margin-top: 2px;
}

.chat-close {
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.chat-close:hover {
    background: rgba(255,255,255,0.2);
}

/* Messages area */
.chat-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    background: #f7f4ef;
    overflow: hidden;
}

.chat-messages {
    flex: 1;
    min-height: 0;
    padding: 16px 14px 8px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    scroll-behavior: smooth;
}

.chat-messages::-webkit-scrollbar {
    width: 4px;
}

.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.15);
    border-radius: 4px;
}

.chat-message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.95rem;
    line-height: 1.6;
    align-self: flex-start;
    word-break: break-word;
}

.chat-message.assistant {
    background: #ffffff;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    color: #1a1208;
}

.chat-message.user {
    align-self: flex-end;
    background: var(--primary);
    color: #fff;
    border-bottom-right-radius: 4px;
    box-shadow: 0 4px 14px rgba(195, 138, 27, 0.35);
}

/* Quick prompts */
.chat-prompts {
    padding: 8px 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-shrink: 0;
}

.chat-prompts-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #8a7560;
    margin: 0 0 4px;
}

.chat-pill {
    border: 1px solid rgba(195, 138, 27, 0.25);
    background: #fff;
    color: #3b2c16;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s ease, border-color 0.15s ease;
    line-height: 1.3;
}

.chat-pill:hover {
    background: #fdf6e8;
    border-color: var(--primary);
    color: #1a1208;
}

/* Input form */
.chat-form {
    padding: 10px 14px 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    background: #fff;
    flex-shrink: 0;
}

.chat-input-row {
    display: flex;
    gap: 8px;
    align-items: center;
    background: #f7f4ef;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 4px 4px 4px 14px;
    transition: border-color 0.2s ease;
}

.chat-input-row:focus-within {
    border-color: var(--primary);
}

.chat-input-row input {
    flex: 1;
    border: none;
    padding: 10px 0;
    font-size: 0.95rem;
    background: transparent;
    color: var(--text);
    min-width: 0;
}

.chat-input-row input::placeholder {
    color: #a09080;
}

.chat-input-row input:focus-visible {
    outline: none;
}

.chat-input-row button {
    border: none;
    background: var(--primary);
    color: #fff;
    border-radius: 9px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 0.9rem;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.chat-input-row button:hover {
    background: var(--primary-dark);
}

@media (max-width: 680px) {
    .chat-toggle {
        right: 16px;
        bottom: 16px;
        padding: 12px 16px;
    }

    .chat-toggle span {
        display: none;
    }

    .chat-window {
        right: 12px;
        left: 12px;
        width: auto;
        bottom: 90px;
    }

    .scroll-top {
        right: 16px;
        bottom: 90px;
    }
}
