/* =====================================================
   BRAND DESIGN SYSTEM — FINAL (DO NOT MODIFY)
   ===================================================== */

/* ---------- COLOR SYSTEM ---------- */
:root {
    /* Primary Brand */
    --color-maroon: #7A1F2B;
    /* Primary brand / wine */

    /* Accent */
    --color-gold: #C9A24D;
    /* Decorative accent only */

    /* Background */
    --color-bg-main: #FBF6F1;


    /* Text */
    --color-text-primary: #2B2B2B;
    --color-text-muted: #7A7A7A;

    /* Neutral */
    --color-white: #FFFFFF;
}

/* ---------- FONT FAMILIES ---------- */
:root {
    --font-heading: "Playfair Display", serif;
    --font-body: "Poppins", sans-serif;
}

/* ---------- FONT SIZE SCALE (px only) ---------- */
:root {
    --fs-10: 10px;
    --fs-12: 12px;
    --fs-14: 14px;
    --fs-16: 16px;
    --fs-18: 18px;
    --fs-20: 20px;
    --fs-24: 24px;
    --fs-30: 30px;
    --fs-36: 36px;
    --fs-44: 44px;
    --fs-52: 52px;
    --fs-62: 62px;
    --fs-74: 74px;
    --fs-86: 86px;
    --fs-98: 98px;
}

/* ---------- SPACING SCALE (px only) ---------- */
:root {
    --sp-2: 2px;
    --sp-4: 4px;
    --sp-8: 8px;
    --sp-12: 12px;
    --sp-16: 16px;
    --sp-24: 24px;
    --sp-32: 32px;
    --sp-48: 48px;
    --sp-64: 64px;
    --sp-80: 80px;
    --sp-96: 96px;
    --sp-128: 128px;
}

/* =====================================================
   BASE RESET & GLOBAL RULES
   ===================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-16);
    background-color: var(--color-bg-main);
    color: var(--color-text-primary);
    line-height: 1.6;
}


/* ---------- TYPOGRAPHY BASE ---------- */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-maroon);
}

p {
    font-size: var(--fs-16);
    color: var(--color-text-primary);
}

small,
.text-muted {
    font-size: var(--fs-12);
    color: var(--color-text-muted);
}

/* ---------- LINKS ---------- */

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

/* ---------- IMAGES ---------- */

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

/* =====================================================
   HEADER — LOGO ONLY (PHASE 1)
   ===================================================== */

.site-header {
    width: 100%;
    background-image: url("../images/backgrounds/bg-2.webp");
    background-color: var(--color-bg-main);
}

.header-container {
    max-width: 1200px;
    padding: var(--sp-12);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo img {
    max-width: 275px;
    height: auto;
}

/* =====================================================
   DESKTOP NAVIGATION
===================================================== */

.desktop-nav {
    width: 100%;
    padding: var(--sp-16);
    background-image: url("../images/backgrounds/bg-2.webp");
}

.desktop-nav-links {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--sp-24);
    list-style: none;
}

.desktop-nav-links a {
    font-family: var(--font-body);
    font-size: var(--fs-16);
    font-weight: 500;
    color: var(--color-maroon);
    position: relative;
    padding: var(--sp-8) 0;
}

.desktop-nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1px;
    background: var(--color-gold);
    transition: 0.4s ease;
}

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


/* =====================================================
   MOBILE SYSTEM (ONLY MOBILE)
===================================================== */

.mobile-hamburger {
    display: none;
}

.mobile-nav-overlay {
    display: none;
}


@media (max-width: 768px) {
    .brand-logo img {
        max-width: 80%;
        margin: auto;
    }

    /* HIDE DESKTOP NAV */
    .desktop-nav {
        display: none;
    }

    /* HAMBURGER */
    .mobile-hamburger {
        position: fixed;
        bottom: var(--sp-16);
        left: 50%;
        transform: translateX(-50%);
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: var(--color-maroon);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        z-index: 9999;
        cursor: pointer;
    }

    .mobile-hamburger span {
        width: 24px;
        height: 2px;
        background: var(--color-bg-main);
        transition: 0.4s ease;
    }

    .mobile-hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* OVERLAY */
    .mobile-nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: url("../images/backgrounds/bg-1.webp") center/cover no-repeat;
        z-index: 9998;
        transform: translateY(-100%);
        transition: 0.6s ease;
        overflow-y: auto;
    }

    .mobile-nav-overlay.active {
        transform: translateY(0);
    }

    .mobile-nav-inner {
        padding: var(--sp-48) var(--sp-24) var(--sp-96);
    }

    .mobile-nav-logo {
        text-align: center;
        margin-bottom: var(--sp-32);
    }

    .mobile-nav-logo img {
        max-width: 220px;
        margin: auto;
    }

    /* =====================================================
   MOBILE NAV OVERLAY IMAGES
   ===================================================== */

    .mobile-nav-image {
        width: 90vw;
        margin: var(--sp-24) auto;
        display: block;
    }

    .mobile-nav-image img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 10px;
    }

    .mobile-nav-layout {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--sp-32);
    }

    .mobile-nav-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: var(--sp-24);
    }

    .mobile-nav-links a {
        display: flex;
        align-items: center;
        font-family: var(--font-heading);
        font-size: var(--fs-20);
        font-weight: 600;
        color: var(--color-maroon);
    }

    .mobile-nav-links span {
        font-family: var(--font-heading);
        font-size: var(--fs-18);
        min-width: 32px;
    }

    .mobile-nav-social {
        display: flex;
        flex-direction: column;
        gap: var(--sp-16);
        justify-content: center;
        align-items: center;
    }

    .mobile-nav-social a {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: var(--color-maroon);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mobile-nav-social ion-icon {
        font-size: var(--fs-20);
        color: var(--color-bg-main);
    }
}

/* ==============================
   HERO SECTION — PREMIUM SYSTEM
================================ */

.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* BOTH IMAGES */
.hero-img {
    width: 100%;
    height: auto;
    display: block;
}

/* DESKTOP DEFAULT */
.desktop-hero {
    display: block;
}

.mobile-hero {
    display: none;
}

/* TEXT OVERLAY */
.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 540px;
    z-index: 5;
}

.hero-content h1 {
    font-size: var(--fs-52);
    line-height: 1.1;
    margin-bottom: var(--sp-16);
}

.hero-content p {
    font-size: var(--fs-18);
    margin-bottom: var(--sp-24);
    color: var(--color-text-primary);
}

.hero-buttons {
    display: flex;
    gap: var(--sp-16);
}

/* BUTTON SYSTEM */
.btn {
    padding: 12px 26px;
    font-size: var(--fs-14);
    font-weight: 600;
    border-radius: 10px;
    transition: 0.3s ease;
    display: inline-block;
}

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

.btn-primary:hover {
    background: #5f1620;
}

.btn-outline {
    border: 2px solid var(--color-gold);
    color: var(--color-maroon);
}

.btn-outline:hover {
    background: var(--color-maroon);
    color: white;
}

/* ==============================
   MOBILE HERO SYSTEM
================================ */

@media (max-width: 428px) {
    .hero-buttons {
        display: none;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        max-width: 520px;
    }
}

@media (max-width: 768px) {


    .desktop-hero {
        display: none;
    }

    .mobile-hero {
        display: block;
    }

    .hero-content {
        top: 8%;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        max-width: 90%;
        width: 84%;
    }

    .hero-content h1 {
        font-size: var(--fs-36);
    }

    .hero-content p {
        font-size: var(--fs-16);
        margin-bottom: var(--fs-16);
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ==============================
   ANNOUNCEMENT BAR — PREMIUM
================================ */

.announcement-bar {
    width: 100%;
    background: linear-gradient(270deg, #7A1F2B, #5f1620);
    overflow: hidden;
    padding: var(--sp-8) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 50;
}

.announcement-track {
    display: flex;
    width: max-content;
    animation: marquee 28s linear infinite;
}

.announcement-track span {
    white-space: nowrap;
    padding-right: 60px;
    font-size: var(--fs-14);
    font-weight: 500;
    color: var(--color-bg-main);
    letter-spacing: 0.3px;
    font-family: var(--font-body);
}

/* Smooth infinite animation */
@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Mobile refinement */
@media (max-width: 768px) {
    .announcement-bar {
        padding: var(--sp-8) 0;
    }

    .announcement-track span {
        font-size: var(--fs-12);
    }
}

.for-mobile {
    display: none;
}

@media (max-width: 428px) {
    .for-mobile {
        display: inline-block;
        margin: var(--sp-16) auto;
        width: 90%;
        text-align: center;
    }
}

.flex-centre {
    display: flex;
    justify-content: center;
    align-items: center;
}

.texture-bg-2 {
    background: url("../images/backgrounds/bg-2.webp") center/cover no-repeat;
}

/* =====================================================
   TRUST SECTION
   ===================================================== */

.trust-section {
    width: 100%;
    padding: var(--sp-64) var(--sp-24);
}

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

/* ---------- HEADER ---------- */

.trust-header {
    text-align: center;
    margin-bottom: var(--sp-48);
}

.trust-title {
    font-size: var(--fs-44);
    margin-bottom: var(--sp-12);
}

.trust-subtitle {
    font-size: var(--fs-16);
    color: var(--color-text-muted);
    max-width: 620px;
    margin: 0 auto;
}

/* ---------- GRID ---------- */

.trust-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--sp-32);
}

/* ---------- CARD ---------- */

.trust-card {
    text-align: center;
    padding: var(--sp-16);
    border-radius: 14px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
}

.trust-card img {
    width: 200px;
    height: auto;
}

/* ---------- HOVER ---------- */

.trust-card:hover {
    transform: translateY(-6px);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .trust-section {
        padding: var(--sp-32) var(--sp-24);
    }

    .trust-title {
        font-size: var(--fs-30);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--sp-24);
    }
}

/* =====================================================
   SIGNATURE COLLECTIONS
   ===================================================== */

.signature-collections {
    padding: var(--sp-64) var(--sp-16);
}

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

/* ---------- Heading ---------- */

.signature-heading {
    text-align: center;
    margin-bottom: var(--sp-64);
}

.signature-heading h2 {
    font-size: var(--fs-36);
    margin-bottom: var(--sp-12);
}

.signature-heading p {
    font-size: var(--fs-16);
    color: var(--color-text-muted);
    max-width: 680px;
    margin: 0 auto;
}

/* ---------- Grid ---------- */

.signature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-32);
}

/* ---------- Cards ---------- */

.signature-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

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

/* ---------- Overlay ---------- */

.signature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(122, 31, 43, 0.75),
            rgba(0, 0, 0, 0.05));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--sp-32);
}

.signature-overlay h3 {
    font-size: var(--fs-24);
    color: var(--color-white);
    margin-bottom: var(--sp-8);
}

.signature-overlay span {
    font-size: var(--fs-14);
    color: var(--color-gold);
    letter-spacing: 0.5px;
}

/* ---------- Hover ---------- */

.signature-card:hover img {
    transform: scale(1.08);
}

/* ---------- Mobile ---------- */

@media (max-width: 768px) {

    .signature-collections {
        padding: var(--sp-32) var(--sp-24);
    }

    .signature-heading {
        margin-bottom: var(--sp-48);
    }

    .signature-heading h2 {
        font-size: var(--fs-30);
    }

    .signature-grid {
        grid-template-columns: 1fr;
        gap: var(--sp-16);
    }

    .signature-overlay {
        padding: var(--sp-24);
    }

    .signature-overlay h3 {
        font-size: var(--fs-20);
    }
}

/* =====================================================
   OUR STORY & CRAFTSMANSHIP
   ===================================================== */

.craftsmanship {
    padding: var(--sp-64) var(--sp-16);
    background-color: var(--color-white);
}

.craftsmanship-container {
    max-width: 880px;
    margin: 0 auto;
}

/* ---------- Heading ---------- */

.craftsmanship-heading {
    text-align: center;
    margin-bottom: var(--sp-48);
}

.craftsmanship-heading h2 {
    font-size: var(--fs-36);
    margin-bottom: var(--sp-12);
}

.craftsmanship-heading p {
    font-size: var(--fs-16);
    color: var(--color-text-muted);
    max-width: 680px;
    margin: 0 auto;
}

/* ---------- Content ---------- */

.craftsmanship-content p {
    font-size: var(--fs-16);
    color: var(--color-maroon);
    line-height: 1.85;
    text-align: center;
    font-style: italic;
    margin-bottom: var(--sp-16);
}

.craftsmanship-content img {
    width: 50%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.craftsmanship-content p:last-child {
    margin-bottom: 0;
}

/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 768px) {

    .craftsmanship {
        padding: var(--sp-32) var(--sp-24);
    }

    .craftsmanship-heading {
        margin-bottom: var(--sp-32);
    }

    .craftsmanship-heading h2 {
        font-size: var(--fs-30);
    }
}

/* ---------- Showroom Images ---------- */

.showroom-image-wrapper img {
    width: 100%;
    height: auto;
}

/* Default: Desktop view */
.showroom-desktop {
    display: block;
}

.showroom-mobile {
    display: none;
}

/* ---------- Mobile Switch ---------- */

@media (max-width: 768px) {
    .showroom-desktop {
        display: none;
    }

    .showroom-mobile {
        display: block;
    }
}

/* =====================================================
   VISIT OUR SHOWROOM
   ===================================================== */

.showroom {
    position: relative;
    padding: var(--sp-96) var(--sp-16);
    background-image: url("../images/backgrounds/bg-3.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.showroom-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.showroom-content {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

/* ---------- Headings ---------- */

.showroom-content h2 {
    font-size: var(--fs-36);
    margin-bottom: var(--sp-12);
}

.showroom-intro {
    font-size: var(--fs-16);
    color: var(--color-text-muted);
    margin-bottom: var(--sp-32);
    line-height: 1.8;
}

.showroom-generic-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: var(--sp-32);
}

/* ---------- Details ---------- */

.showroom-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-32);
    text-align: left;
    margin-bottom: var(--sp-48);
}

.showroom-block h4 {
    font-size: var(--fs-18);
    margin-bottom: var(--sp-8);
    color: var(--color-maroon);
}

.showroom-block p {
    font-size: var(--fs-16);
    color: var(--color-text-primary);
    line-height: 1.7;
}

/* ---------- Actions ---------- */

.showroom-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--sp-16);
    margin-bottom: var(--sp-24);
}

.btn-primary-showroom {
    padding: var(--sp-12) var(--sp-24);
    background: var(--color-maroon);
    color: var(--color-white);
    font-size: var(--fs-16);
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s ease;
}

.btn-primary-showroom:hover {
    background: #611823;
}

.btn-outline-showroom {
    padding: var(--sp-12) var(--sp-24);
    border: 1px solid var(--color-maroon);
    color: var(--color-maroon);
    font-size: var(--fs-16);
    font-weight: 500;
    border-radius: 4px;
    transition: 0.3s ease;
}

.btn-outline-showroom:hover {
    background: var(--color-maroon);
    color: var(--color-white);
}

/* ---------- Trust Line ---------- */

.showroom-trust {
    font-size: var(--fs-14);
    color: var(--color-text-muted);
}

/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 768px) {

    .showroom {
        padding: var(--sp-64) var(--sp-24);
    }

    .showroom-content h2 {
        font-size: var(--fs-30);
    }

    .showroom-details {
        grid-template-columns: 1fr;
        gap: var(--sp-24);
        text-align: center;
    }

    .showroom-actions {
        flex-direction: column;
    }

    .btn-primary-showroom,
    .btn-outline-showroom {
        text-align: center;
        width: 100%;
    }
}

/* =====================================================
   COLLECTION SHOWCASE SLIDERS
   ===================================================== */

.collection-showcase {
    padding: var(--sp-64) 0;
    display: flex;
    flex-direction: column;
    gap: var(--sp-32);
    overflow: hidden;
}

/* ---------- Slider Wrapper ---------- */

.collection-slider {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x;
}

.collection-slider::-webkit-scrollbar {
    display: none;
}

/* ---------- Track ---------- */

.slider-track {
    display: flex;
    gap: var(--sp-16);
    width: max-content;
    padding: 0 var(--sp-16);
}

/* ---------- Slide ---------- */

.slide {
    flex: 0 0 auto;
    width: 260px;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* ---------- Auto Scroll Animations ---------- */

@keyframes autoScrollLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes autoScrollRight {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.auto-scroll-left .slider-track {
    animation: autoScrollLeft 70s linear infinite;
}

.auto-scroll-right .slider-track {
    animation: autoScrollRight 70s linear infinite;
}

/* ---------- Pause on Interaction ---------- */

.collection-slider:hover .slider-track,
.collection-slider:active .slider-track {
    animation-play-state: paused;
}

/* ---------- Mobile ---------- */

@media (max-width: 768px) {

    .collection-showcase {
        padding: var(--sp-48) 0;
        gap: var(--sp-24);
    }

    .slide {
        width: 180px;
    }

}

/* =====================================================
   GOLD COLLECTIONS
   ===================================================== */

.gold-collections {
    padding: var(--sp-64) var(--sp-16);
}

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

/* ---------- Heading ---------- */

.gold-heading {
    text-align: center;
    margin-bottom: var(--sp-64);
}

.gold-heading h2 {
    font-size: var(--fs-36);
    margin-bottom: var(--sp-12);
}

.gold-heading p {
    font-size: var(--fs-16);
    color: var(--color-text-muted);
}

/* ---------- Grid ---------- */

.gold-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-32);
}

/* ---------- Cards ---------- */

.gold-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: var(--color-white);
}

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

/* ---------- Hover ---------- */

.gold-card:hover img {
    transform: scale(1.06);
}

/* ---------- Mobile ---------- */

@media (max-width: 768px) {

    .gold-collections {
        padding: var(--sp-32) var(--sp-24);
    }

    .gold-heading {
        margin-bottom: var(--sp-48);
    }

    .gold-heading h2 {
        font-size: var(--fs-30);
    }

    .gold-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--sp-16);
    }
}

/* =====================================================
   CORE COLLECTIONS (GOLD / SILVER / DIAMOND)
   ===================================================== */

.core-collections {
    padding: var(--sp-64) var(--sp-16);
}

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

/* ---------- Heading ---------- */

.core-heading {
    text-align: center;
    margin-bottom: var(--sp-64);
}

.core-heading h2 {
    font-size: var(--fs-36);
    margin-bottom: var(--sp-12);
}

.core-heading p {
    font-size: var(--fs-16);
    color: var(--color-text-muted);
    max-width: 680px;
    margin: 0 auto;
}

/* ---------- Grid ---------- */

.core-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-32);
}

/* ---------- Cards ---------- */

.core-card {
    text-align: center;
    display: block;
}

.core-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: var(--sp-16);
    transition: transform 0.6s ease;
}

.core-card span {
    font-size: var(--fs-18);
    font-weight: 500;
    color: var(--color-maroon);
    letter-spacing: 0.3px;
}

/* ---------- Hover (Luxury Subtle) ---------- */

.core-card:hover img {
    transform: scale(1.04);
}

/* ---------- Mobile ---------- */

@media (max-width: 768px) {

    .core-collections {
        padding: var(--sp-48) var(--sp-24);
    }

    .core-heading {
        margin-bottom: var(--sp-48);
    }

    .core-heading h2 {
        font-size: var(--fs-30);
    }

    .core-grid {
        grid-template-columns: 1fr;
        gap: var(--sp-24);
    }
}

/* =====================================================
   FOOTER — IMAGE ONLY
   ===================================================== */

.site-footer {
    width: 100%;
}

.footer-image-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.footer-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

/* ---------- Overlay Text ---------- */

.footer-credit {
    position: absolute;
    top: 160px;
    left: 50%;
    width: 90%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 88px;
    font-weight: 700;
    color: var(--color-maroon);
    font-style: italic;
    text-align: center;
    letter-spacing: 0.5px;
}

@media (max-width: 1024px) {

    .footer-credit {
        top: var(--sp-64);
        font-size: var(--fs-62);
    }
}

/* ---------- Mobile ---------- */
@media (max-width: 768px) {

    .footer-credit {
        top: var(--sp-48);
        font-size: var(--fs-44);
    }
}

@media (max-width: 570px) {

    .footer-credit {
        top: var(--sp-32);
        font-size: var(--fs-36);
    }
}

@media (max-width: 448px) {

    .footer-credit {
        top: var(--sp-24);
        font-size: var(--fs-24);
    }
}

/* =====================================================
   CONTACT FORM
   ===================================================== */

.contact-section {
    padding: var(--sp-96) var(--sp-16);
    background-image: url("../images/backgrounds/bg-2.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.contact-container {
    max-width: 720px;
    margin: 0 auto;
}

.contact-heading {
    text-align: center;
    font-size: var(--fs-36);
    margin-bottom: var(--sp-48);
}

/* ---------- Form ---------- */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--sp-24);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--sp-8);
}

.form-group label {
    font-size: var(--fs-14);
    font-weight: 500;
    color: var(--color-text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: var(--fs-16);
    padding: var(--sp-12) var(--sp-16);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    background: var(--color-white);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-maroon);
}

/* ---------- Button ---------- */

.form-btn {
    margin-top: var(--sp-16);
    padding: var(--sp-16);
    font-size: var(--fs-16);
    font-weight: 600;
    font-family: var(--font-body);
    background: var(--color-maroon);
    color: var(--color-white);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-btn:hover {
    background: #641922;
}

/* ---------- Mobile ---------- */

@media (max-width: 768px) {

    .contact-section {
        padding: var(--sp-64) var(--sp-24);
    }

    .contact-heading {
        font-size: var(--fs-30);
        margin-bottom: var(--sp-32);
    }

}

/* =====================================================
   LINKED IMAGE SECTION
   ===================================================== */

.linked-image-section {
    width: 100%;
    padding: var(--sp-64) 0;
    display: flex;
    justify-content: center;
    background-image: url("../images/backgrounds/bg-2.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.linked-image-wrap {
    width: 70vw;
    /* 70% viewport width on laptop */
    display: block;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.linked-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

/* Subtle luxury hover */
.linked-image-wrap:hover {
    transform: scale(1.02);
}

/* ---------- Mobile ---------- */

@media (max-width: 768px) {

    .linked-image-section {
        padding: var(--sp-24) 0;
    }

    .linked-image-wrap {
        width: 90vw;
        /* 100% viewport width on mobile */
        border-radius: 0;
    }
}

/* =====================================================
   LEGAL SECTIONS — PRIVACY & TERMS
===================================================== */

.legal-section {
    padding: var(--sp-64) var(--sp-16);
    background-image: url("../images/backgrounds/bg-3.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: var(--fs-36);
    margin-bottom: var(--sp-8);
    text-align: center;
}

.legal-date {
    text-align: center;
    font-size: var(--fs-14);
    color: var(--color-text-muted);
    margin-bottom: var(--sp-48);
}

.legal-container h2 {
    font-size: var(--fs-20);
    margin-top: var(--sp-32);
    margin-bottom: var(--sp-12);
}

.legal-container p {
    font-size: var(--fs-16);
    margin-bottom: var(--sp-16);
    line-height: 1.7;
}

.legal-container ul {
    padding-left: var(--sp-24);
    margin-bottom: var(--sp-16);
}

.legal-container ul li {
    margin-bottom: var(--sp-8);
    font-size: var(--fs-16);
}

.legal-credit {
    margin-top: var(--sp-48);
    padding-top: var(--sp-24);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
}

.legal-credit p {
    margin-bottom: var(--sp-8);
    font-weight: 500;
}

.legal-credit a {
    font-size: var(--fs-14);
    color: var(--color-maroon);
    text-decoration: underline;
}

/* ---------- Mobile Refinement ---------- */

@media (max-width: 768px) {
    .legal-section {
        padding: var(--sp-48) var(--sp-24);
    }

    .legal-container h1 {
        font-size: var(--fs-30);
    }

    .legal-container h2 {
        font-size: var(--fs-18);
    }
}

.gallery-section {
    padding: var(--sp-64) var(--sp-16);
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-16);
}

.gallery-item {
    border-radius: 14px;
    overflow: hidden;
}

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

/* Random large cards */
.gallery-item.wide {
    grid-column: span 2;
}

/* Tablet */
@media (max-width: 1024px) {
    .gallery-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.wide {
        grid-column: span 1;
    }
}