/* =========================================
   LTP WATCHES — LUXURY LANDING PAGE STYLES
   ========================================= */

/* ----- RESET & BASE ----- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: #0a0a0a;
    color: #e0e0e0;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

/* ----- CSS VARIABLES ----- */
:root {
    --black:      #0a0a0a;
    --dark-1:     #111111;
    --dark-2:     #171717;
    --dark-3:     #1f1f1f;
    --dark-4:     #272727;
    --grey-dark:  #3a3a3a;
    --grey:       #5e5e5e;
    --grey-mid:   #888888;
    --grey-light: #b0b0b0;
    --white-soft: #e0e0e0;
    --white:      #ffffff;
    --gold:       #c9a84c;
    --gold-light: #d8bc72;
    --gold-dark:  #a8883a;
    --gold-glow:  rgba(201, 168, 76, 0.14);
    --green-wa:   #25D366;
    --ease:       cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----- SCROLLBAR ----- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark-1); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ----- CONTAINER ----- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

/* ----- SECTION SHARED ----- */
section {
    padding: 110px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    color: var(--gold);
    margin-bottom: 14px;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 500;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 22px;
}

.gold-rule {
    width: 56px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto;
}

.gold-rule.left {
    margin: 0 0 32px 0;
}

/* ----- BUTTONS ----- */
.btn {
    display: inline-block;
    padding: 14px 38px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.28);
}

.btn-ghost {
    background: transparent;
    color: var(--white-soft);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* ----- SCROLL REVEAL ----- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    padding: 22px 0;
    transition: padding var(--transition), background var(--transition), border-color var(--transition);
    background: transparent;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 14px 0;
    background: rgba(8, 8, 8, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom-color: rgba(201, 168, 76, 0.12);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 58px;
    width: auto;
    transition: opacity var(--transition);
}

.logo-img:hover { opacity: 0.8; }

.logo-fallback {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.lf-ltp {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.08em;
}

.lf-sub {
    font-family: 'Raleway', sans-serif;
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    color: var(--grey-light);
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 38px;
}

.nav-links a {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(224, 224, 224, 0.85);
    position: relative;
    padding-bottom: 3px;
    transition: color var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.nav-cta {
    color: var(--gold);
}

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

.nav-links a.nav-cta {
    padding: 8px 20px;
    border: 1px solid var(--gold);
    font-size: 0.68rem;
}

.nav-links a.nav-cta::after { display: none; }

.nav-links a.nav-cta:hover {
    background: var(--gold);
    color: var(--black);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--white-soft);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =========================================
   HERO
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse 80% 60% at 65% 50%, #1c1508 0%, #0a0a0a 65%);
}

.hero-bg-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 40% 50% at 15% 85%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 85% 10%, rgba(201, 168, 76, 0.04) 0%, transparent 55%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    width: 100%;
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: center;
    min-height: 100vh;
}

.hero-content {
    padding: 120px 0 80px;
}

.hero-eyebrow {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.45em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 22px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5.5vw, 5.2rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 28px;
    letter-spacing: -0.01em;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 0.38s forwards;
}

.hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold-light);
}

.hero-divider {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 0.52s forwards;
}

.hero-desc {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--grey-mid);
    line-height: 1.9;
    max-width: 420px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 0.62s forwards;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 0.74s forwards;
}

.hero-brands-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 0.86s forwards;
}

.hero-brands-hint span {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--grey);
    text-transform: uppercase;
}

.hero-brands-hint .sep {
    color: var(--gold);
    font-size: 0.5rem;
    letter-spacing: 0;
}

/* Hero visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-watch-ring {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.12);
    animation: spin 25s linear infinite;
}

.ring-2 {
    width: 380px;
    height: 380px;
    border-color: rgba(201, 168, 76, 0.08);
    animation-direction: reverse;
    animation-duration: 18s;
}

.hero-watch-img {
    width: 380px;
    height: 380px;
    object-fit: cover;
    border-radius: 50%;
    opacity: 0.35;
    filter: grayscale(15%) brightness(0.85);
    position: relative;
    z-index: 1;
    animation: fadeIn 1.2s var(--ease) 0.5s both;
}

.hero-watch-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Scroll cue */
.scroll-cue {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    opacity: 0;
    animation: fadeIn 1s var(--ease) 1.4s forwards;
}

.scroll-line {
    display: block;
    width: 1px;
    height: 52px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: pulse 2.2s ease-in-out infinite;
}

.scroll-cue p {
    font-size: 0.58rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--grey);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* =========================================
   BRANDS MARQUEE
   ========================================= */
.brands-strip {
    background: var(--dark-2);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    overflow: hidden;
    padding: 18px 0;
}

.brands-track {
    overflow: hidden;
}

.brands-content {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: marquee 22s linear infinite;
}

.brands-content span {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.32em;
    color: var(--grey-mid);
    padding: 0 28px;
    text-transform: uppercase;
    transition: color var(--transition);
}

.brands-content .dot {
    color: var(--gold);
    font-size: 0.45rem;
    padding: 0 4px;
    letter-spacing: 0;
}

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =========================================
   FEATURED COLLECTION
   ========================================= */
.collection {
    background: var(--black);
}

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

.watch-card {
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.watch-card:hover {
    border-color: rgba(201, 168, 76, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(201, 168, 76, 0.08);
    z-index: 1;
    position: relative;
}

.watch-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: var(--dark-3);
}

.watch-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

.watch-card:hover .watch-img-wrap img,
.sale-card:hover .watch-img-wrap img {
    transform: scale(1.07);
}

.watch-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.watch-card:hover .watch-hover-overlay,
.sale-card:hover .watch-hover-overlay {
    opacity: 1;
}

.inquire-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gold);
    color: var(--black);
    font-family: 'Raleway', sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: background var(--transition), transform var(--transition);
}

.inquire-btn:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.watch-info {
    padding: 20px 22px 22px;
    border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.watch-brand {
    display: block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    color: var(--gold);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.watch-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white-soft);
    margin-bottom: 8px;
    line-height: 1.2;
}

.watch-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.04em;
}

/* =========================================
   ON SALE
   ========================================= */
.on-sale {
    background: var(--dark-1);
    position: relative;
}

.sale-top-rule,
.sale-bottom-rule {
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, var(--gold) 50%, transparent 95%);
}

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

.sale-card {
    position: relative;
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.sale-card:hover {
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
    position: relative;
    z-index: 1;
}

.sale-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    background: var(--gold);
    color: var(--black);
    font-family: 'Raleway', sans-serif;
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    padding: 5px 11px;
    text-transform: uppercase;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-was {
    font-size: 0.85rem;
    color: var(--grey);
    text-decoration: line-through;
    font-weight: 400;
}

.price-sale {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.03em;
}

/* =========================================
   ABOUT
   ========================================= */
.about {
    background: var(--black);
    overflow: hidden;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.about-text .section-label {
    text-align: left;
}

.about-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 500;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 22px;
}

.about-desc {
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--grey-mid);
    line-height: 2;
    margin-bottom: 18px;
    max-width: 480px;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 44px;
    padding-top: 44px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-lbl {
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--grey);
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0 28px;
    flex-shrink: 0;
}

/* About visual */
.about-visual {
    position: relative;
    padding-bottom: 30px;
    padding-right: 30px;
}

.about-frame {
    position: relative;
    overflow: hidden;
}

.about-frame img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    filter: grayscale(20%) brightness(0.9);
    transition: filter 0.6s var(--ease);
}

.about-frame:hover img {
    filter: grayscale(0%) brightness(1);
}

.about-frame-border {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 168, 76, 0.18);
    pointer-events: none;
}

.about-frame::before {
    content: '';
    position: absolute;
    top: -14px;
    left: -14px;
    right: 14px;
    bottom: 14px;
    border: 1px solid rgba(201, 168, 76, 0.08);
    z-index: -1;
}

.about-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--gold);
    color: var(--black);
    padding: 20px 24px;
    text-align: center;
    line-height: 1;
}

.badge-since {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.badge-year {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
}

/* =========================================
   REVIEWS
   ========================================= */
.reviews {
    background: var(--dark-1);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 36px 32px;
    position: relative;
    transition: border-color var(--transition), transform var(--transition);
    overflow: hidden;
}

.review-card:hover {
    border-color: rgba(201, 168, 76, 0.22);
    transform: translateY(-4px);
}

.review-quote-mark {
    position: absolute;
    top: 14px;
    right: 24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 7rem;
    line-height: 1;
    color: rgba(201, 168, 76, 0.07);
    pointer-events: none;
    user-select: none;
}

.review-stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.review-text {
    font-size: 0.88rem;
    font-weight: 300;
    font-style: italic;
    color: var(--grey-mid);
    line-height: 1.85;
    margin-bottom: 28px;
}

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

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--black);
    flex-shrink: 0;
    letter-spacing: 0.05em;
}

.reviewer-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white-soft);
    margin-bottom: 2px;
}

.reviewer-loc {
    display: block;
    font-size: 0.72rem;
    color: var(--grey);
    letter-spacing: 0.06em;
}

/* =========================================
   CONTACT
   ========================================= */
.contact {
    background: var(--black);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.contact .section-title {
    text-align: center;
}

.contact-desc {
    max-width: 580px;
    margin: 0 auto 52px;
    font-size: 0.93rem;
    font-weight: 300;
    color: var(--grey-mid);
    line-height: 1.9;
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 1px solid;
    transition: var(--transition);
}

.contact-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.whatsapp-btn {
    color: var(--green-wa);
    border-color: var(--green-wa);
    background: transparent;
}

.whatsapp-btn:hover {
    background: var(--green-wa);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.22);
}

.instagram-btn {
    color: var(--white-soft);
    border-color: rgba(255, 255, 255, 0.2);
    background: transparent;
}

.instagram-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: #060606;
    border-top: 1px solid rgba(201, 168, 76, 0.12);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 48px 60px;
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
    gap: 60px;
}

.footer-logo {
    height: 68px;
    width: auto;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.footer-about {
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--grey);
    line-height: 1.8;
    max-width: 280px;
}

.footer-heading {
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--white-soft);
    margin-bottom: 22px;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-list li,
.footer-list a {
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--grey);
    transition: color var(--transition);
}

.footer-list a:hover { color: var(--gold); }

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--grey);
    transition: color var(--transition);
}

.social-link svg {
    width: 15px;
    height: 15px;
    fill: var(--gold);
    flex-shrink: 0;
}

.social-link:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 48px;
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.72rem;
    color: var(--grey-dark);
    letter-spacing: 0.08em;
}

.home-loading { grid-column: 1/-1; text-align: center; padding: 48px 0; color: #555; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; }

/* =========================================
   FLOATING WHATSAPP
   ========================================= */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: var(--green-wa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.38);
    transition: transform var(--transition), box-shadow var(--transition);
}

.wa-float::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--green-wa);
    opacity: 0.4;
    animation: wa-pulse 2.5s ease-in-out infinite;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.wa-float svg {
    width: 28px;
    height: 28px;
    fill: white;
    position: relative;
    z-index: 1;
}

@keyframes wa-pulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50%       { transform: scale(1.45); opacity: 0; }
}

/* =========================================
   RESPONSIVE — TABLET (≤ 1024px)
   ========================================= */
@media (max-width: 1024px) {
    .container { padding: 0 32px; }
    .nav-container { padding: 0 32px; }
    .hero-inner { padding: 0 32px; grid-template-columns: 60% 40%; }
    .footer-inner { padding: 60px 32px 48px; grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-bottom { padding: 20px 32px; }

    .watches-grid { grid-template-columns: repeat(2, 1fr); }
    .sale-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }

    .about-inner { grid-template-columns: 1fr; gap: 56px; }
    .about-visual { display: none; }

    .hero-watch-ring { width: 360px; height: 360px; }
    .ring-2 { width: 280px; height: 280px; }
    .hero-watch-img { width: 280px; height: 280px; }
}

/* =========================================
   RESPONSIVE — MOBILE (≤ 768px)
   ========================================= */
@media (max-width: 768px) {
    /* Nav */
    .hamburger { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(300px, 85vw);
        height: 100vh;
        background: #0d0d0d;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        transition: right 0.42s var(--ease);
        border-left: 1px solid rgba(201, 168, 76, 0.1);
    }

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

    .nav-links a { font-size: 0.82rem; letter-spacing: 0.2em; }
    .nav-links a.nav-cta { padding: 10px 28px; }

    /* Hero */
    .hero-inner {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }

    .hero-visual { display: none; }
    .hero-content { padding: 110px 0 70px; }
    .hero-title { font-size: clamp(2.4rem, 8vw, 3.2rem); }
    .hero-desc { font-size: 0.88rem; }
    .hero-ctas { flex-direction: column; max-width: 280px; }
    .btn { text-align: center; }

    /* Sections */
    section { padding: 72px 0; }
    .container { padding: 0 22px; }

    .watches-grid { grid-template-columns: 1fr; gap: 2px; }
    .sale-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }

    .about-stats { flex-direction: column; gap: 28px; }
    .stat-divider { width: 48px; height: 1px; margin: 0; }

    .contact-actions { flex-direction: column; align-items: center; }
    .contact-btn { width: 100%; max-width: 320px; justify-content: center; }

    .footer-inner { grid-template-columns: 1fr; gap: 36px; padding: 52px 22px 40px; }
    .footer-bottom { padding: 18px 22px; }
}

/* =========================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ========================================= */
@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .logo-img { height: 46px; }
    .section-title { font-size: 1.8rem; }
}
