/* ==========================================================================
   Falcon Timepieces — redesign layer
   Loaded after all other stylesheets; overrides legacy rules.
   ========================================================================== */

:root {
    --ink: #0c1f17;
    --forest: #06281b;
    --primary-green: #0a3d28;
    --primary-green-dark: #06281b;
    --cream: #f4efe3;
    --cream-dark: #e6dfcd;
    --gold: #bb9a57;
    --paper: #faf8f2;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

::selection {
    background: var(--gold);
    color: var(--ink);
}

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

body {
    background: var(--paper);
    color: var(--ink);
}

/* film grain */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9000;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   Custom cursor
   ========================================================================== */

.cursor-dot,
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9500;
    border-radius: 50%;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    margin: -3px 0 0 -3px;
    background: var(--gold);
}

.cursor-ring {
    width: 36px;
    height: 36px;
    margin: -18px 0 0 -18px;
    border: 1px solid rgba(187, 154, 87, 0.55);
    transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out),
        margin 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

body.cursor-hover .cursor-ring {
    width: 56px;
    height: 56px;
    margin: -28px 0 0 -28px;
    background: rgba(187, 154, 87, 0.08);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
    position: relative;
    height: 100svh;
    min-height: 600px;
    margin-top: -80px;
    padding: 0;
    display: block;
    overflow: hidden;
    background: var(--forest);
}

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

.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero.webgl-ready .hero-canvas {
    opacity: 1;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    transform: none;
}

.hero.webgl-ready .hero-slideshow {
    display: none;
}

.slideshow-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
    animation: none;
}

.slideshow-slide.active {
    opacity: 1;
    animation: none;
}

.hero-veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to top, rgba(6, 25, 17, 0.78) 0%, rgba(6, 25, 17, 0.15) 45%, rgba(6, 25, 17, 0.35) 100%);
}

.hero-frame {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 110px clamp(20px, 4vw, 56px) clamp(22px, 3.5vh, 40px);
}

.hero-top {
    display: flex;
    justify-content: space-between;
}

.hero-eyebrow {
    font-family: 'Lato', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(244, 239, 227, 0.75);
}

.hero-content {
    position: static;
    text-align: left;
    padding: 0;
    transform: none;
    margin-top: auto;
    margin-bottom: clamp(24px, 4vh, 48px);
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(3rem, 9.5vw, 8.6rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: 0.04em;
    color: var(--cream);
    text-transform: uppercase;
    margin: 0 0 clamp(22px, 3.5vh, 40px);
    animation: none;
}

.hero-line {
    display: block;
    overflow: hidden;
    padding-bottom: 0.08em;
    margin-bottom: -0.08em;
}

.hero-line-inner {
    display: block;
    will-change: transform;
}

body.has-motion .hero-line-inner {
    transform: translateY(115%);
}

.hero-line-serif {
    font-family: 'Cinzel', serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--cream);
}

body.has-motion [data-hero-fade] {
    opacity: 0;
}

.hero-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-subtitle-container {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0;
    animation: none;
}

.subtitle-item {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--cream);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.subtitle-separator {
    color: var(--gold);
    opacity: 0.8;
    font-size: 0.8rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 38px;
    background: var(--cream);
    border: 1px solid var(--cream);
    border-radius: 999px;
    color: var(--ink);
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: background 0.4s var(--ease-out), color 0.4s var(--ease-out);
    animation: none;
}

.hero-cta i {
    font-size: 0.75rem;
    transition: transform 0.4s var(--ease-out);
}

.hero-cta:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
}

.hero-cta:hover i {
    transform: translateX(5px);
}

.hero-cta:active {
    transform: scale(0.98);
}

.hero-link {
    position: relative;
    color: var(--cream);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding-bottom: 6px;
}

.hero-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(1);
    transform-origin: right;
    transition: transform 0.45s var(--ease-out);
}

.hero-link:hover::after {
    transform: scaleX(0);
    transform-origin: right;
    animation: linkSweep 0.9s var(--ease-out) forwards;
}

@keyframes linkSweep {
    0% { transform: scaleX(1); transform-origin: right; }
    50% { transform: scaleX(0); transform-origin: right; }
    51% { transform-origin: left; }
    100% { transform: scaleX(1); transform-origin: left; }
}

.hero-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.hero-counter {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: rgba(244, 239, 227, 0.85);
    font-variant-numeric: tabular-nums;
}

.hero-counter-sep {
    display: inline-block;
    width: 28px;
    height: 1px;
    background: rgba(244, 239, 227, 0.4);
}

.hero-bars {
    display: flex;
    gap: 8px;
}

.hero-bar {
    width: 34px;
    height: 22px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    position: relative;
}

.hero-bar::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: rgba(244, 239, 227, 0.35);
    transition: background 0.3s ease, transform 0.3s var(--ease-out);
}

.hero-bar:hover::after {
    background: rgba(244, 239, 227, 0.8);
}

.hero-bar.active::after {
    background: var(--gold);
    transform: scaleY(2.5);
}

/* ==========================================================================
   Section scaffolding
   ========================================================================== */

.section-head {
    display: flex;
    align-items: baseline;
    gap: 18px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 56px);
}

.section-index {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 0.95rem;
    color: var(--gold);
}

.section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink);
    opacity: 0.55;
    position: relative;
    padding-left: 46px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 34px;
    height: 1px;
    background: var(--gold);
}

.section-label-light {
    color: var(--cream);
    opacity: 0.7;
    display: inline-block;
}

.display-title {
    font-family: 'Cinzel', serif;
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1.12;
    text-transform: uppercase;
    color: var(--ink);
}

.split-word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    padding-bottom: 0.1em;
    margin-bottom: -0.1em;
}

.split-word-inner {
    display: inline-block;
    will-change: transform;
}

/* ==========================================================================
   About — "the house" intro
   ========================================================================== */

.about-house {
    max-width: 760px;
    margin: 0 auto clamp(50px, 7vh, 90px);
    text-align: center;
}

.about-house-statement {
    font-family: 'Cinzel', serif;
    font-weight: 500;
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    line-height: 1.2;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--ink);
    text-wrap: balance;
    margin-bottom: 24px;
}

.about-house-copy {
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(12, 31, 23, 0.78);
    max-width: 56ch;
    margin: 0 auto 30px;
}

.about-house-points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: clamp(20px, 4vw, 48px);
    flex-wrap: wrap;
}

.about-house-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink);
}

.about-house-points li::before {
    content: '\2726';
    color: var(--gold);
    font-size: 0.65rem;
}

/* ==========================================================================
   Reviews
   ========================================================================== */

.reviews-section {
    padding: clamp(80px, 10vh, 130px) 0;
    background: var(--cream);
}

.reviews-section .section-title {
    text-align: left;
    max-width: 1400px;
    margin: clamp(24px, 3.5vh, 42px) auto clamp(40px, 6vh, 64px);
    padding: 0 clamp(20px, 4vw, 56px);
    font-size: clamp(1.9rem, 4.2vw, 3.6rem);
    letter-spacing: 0.03em;
    color: var(--ink);
}

.testimonials-container {
    max-width: 1400px;
    padding: 0 clamp(20px, 4vw, 56px);
}

.review-card {
    background: var(--paper);
    border: 1px solid rgba(12, 31, 23, 0.06);
    border-radius: 2px;
    padding: 28px;
    box-shadow: 0 18px 40px -24px rgba(6, 40, 27, 0.25);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px -22px rgba(6, 40, 27, 0.35);
}

.review-avatar {
    background: var(--forest);
    color: var(--gold);
}

.review-author {
    color: var(--ink);
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.74rem;
}

.review-stars {
    color: var(--gold);
}

.review-text {
    font-family: 'Playfair Display', serif;
    font-size: 0.98rem;
    color: rgba(12, 31, 23, 0.8);
}

.reviews-google-link a {
    color: rgba(12, 31, 23, 0.55);
}

.reviews-google-link a:hover {
    color: var(--ink);
}

/* ==========================================================================
   Shop blocks
   ========================================================================== */

.shop-section {
    display: block;
    min-height: 0;
    padding: clamp(80px, 10vh, 130px) 0 0;
    background: var(--paper);
}

.shop-section-head {
    margin-bottom: clamp(28px, 4vh, 48px);
}

.shop-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(12px, 1.5vw, 20px);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 56px);
}

.shop-block {
    border-radius: 2px;
    min-height: clamp(380px, 60vh, 560px);
    align-items: flex-end;
    justify-content: flex-start;
}

.shop-block-bg {
    inset: 0;
    height: 115%;
    top: -7.5%;
    filter: saturate(0.9);
}

.shop-block::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(6, 25, 17, 0.75) 0%, rgba(6, 25, 17, 0.05) 55%);
    transition: background 0.5s ease;
}

.shop-block:hover .shop-block-bg {
    transform: scale(1.06);
}

.shop-block-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: clamp(24px, 3vw, 44px);
    width: 100%;
}

.shop-block-index {
    display: block;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.shop-block h2,
.shop-block:last-child h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 3.4vw, 3rem);
    letter-spacing: 0.12em;
    color: var(--cream);
    margin-bottom: 18px;
    transition: letter-spacing 0.5s var(--ease-out);
}

.shop-block:hover h2 {
    letter-spacing: 0.18em;
}

.shop-cta,
.shop-block:last-child .shop-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 0 8px;
    border: none;
    border-bottom: 1px solid rgba(244, 239, 227, 0.5);
    border-radius: 0;
    color: var(--cream);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.24em;
}

.shop-cta i {
    font-size: 0.7rem;
    transition: transform 0.4s var(--ease-out);
}

.shop-block:hover .shop-cta,
.shop-block:last-child:hover .shop-cta {
    background: transparent;
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.shop-block:hover .shop-cta i {
    transform: translateX(5px);
}

/* ==========================================================================
   Instagram
   ========================================================================== */

.instagram-section {
    padding: clamp(80px, 10vh, 130px) 0 clamp(70px, 9vh, 110px);
    background: var(--paper);
}

.instagram-header {
    text-align: left;
    max-width: 1400px;
    margin: clamp(24px, 3.5vh, 42px) auto clamp(36px, 5vh, 56px);
    padding: 0 clamp(20px, 4vw, 56px);
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.instagram-header h2 {
    font-size: clamp(1.5rem, 3.4vw, 3rem);
    letter-spacing: 0.05em;
    color: var(--ink);
    margin: 0;
    text-transform: lowercase;
}

.instagram-header .hero-link {
    color: var(--ink);
    opacity: 0.7;
}

.instagram-header .hero-link:hover {
    opacity: 1;
}

.instagram-item {
    border-radius: 2px;
    overflow: hidden;
    margin-right: 10px;
    background: var(--cream);
}

.instagram-item img {
    filter: saturate(0.95);
}

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

/* ==========================================================================
   Inquiry + community (dark finale)
   ========================================================================== */

.watch-inquiry-section {
    background: var(--forest);
    padding: clamp(90px, 13vh, 160px) clamp(20px, 4vw, 56px);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.watch-inquiry-section::before {
    content: '';
    position: absolute;
    right: -10%;
    top: -30%;
    width: 60%;
    height: 160%;
    background: radial-gradient(closest-side, rgba(187, 154, 87, 0.12), transparent 70%);
    pointer-events: none;
}

.watch-inquiry-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.inquiry-title {
    font-size: clamp(2rem, 5vw, 4.4rem);
    color: var(--cream);
    margin: clamp(20px, 3vh, 34px) 0 clamp(20px, 3vh, 30px);
    letter-spacing: 0.03em;
    animation: none;
    max-width: 18ch;
}

.inquiry-subtitle {
    font-size: 1rem;
    color: rgba(244, 239, 227, 0.72);
    max-width: 52ch;
    margin: 0 0 clamp(30px, 4.5vh, 48px);
    line-height: 1.85;
    animation: none;
}

.inquiry-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--cream);
    color: var(--ink);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    animation: none;
    transition: background 0.4s var(--ease-out), color 0.4s var(--ease-out);
}

.inquiry-whatsapp-btn:hover {
    background: var(--gold);
    color: var(--ink);
    transform: none;
}

.inquiry-whatsapp-btn i {
    margin: 0;
    font-size: 1rem;
}

.whatsapp-community {
    background: var(--ink);
    padding: clamp(80px, 11vh, 140px) clamp(20px, 4vw, 56px);
    text-align: center;
    border-top: 1px solid rgba(244, 239, 227, 0.07);
}

.whatsapp-community .section-label {
    color: var(--cream);
    opacity: 0.6;
    display: inline-block;
    padding-left: 0;
    margin-bottom: 22px;
}

.whatsapp-community .section-label::before {
    display: none;
}

.whatsapp-community h2 {
    font-size: clamp(1.7rem, 4vw, 3.4rem);
    color: var(--cream);
    letter-spacing: 0.06em;
    margin-bottom: 22px;
}

.whatsapp-community p {
    color: rgba(244, 239, 227, 0.7);
    font-size: 1rem;
    line-height: 1.85;
    max-width: 54ch;
}

.whatsapp-community-btn {
    border-radius: 999px;
    background: transparent;
    border: 1px solid rgba(244, 239, 227, 0.4);
    color: var(--cream);
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 18px 42px;
    transition: background 0.4s var(--ease-out), color 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}

.whatsapp-community-btn:hover {
    background: var(--cream);
    border-color: var(--cream);
    color: var(--ink);
    transform: none;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background: var(--ink);
    border-top: 1px solid rgba(244, 239, 227, 0.07);
}

.footer-brand p,
.footer-column a,
.footer-bottom p,
.swiftloop-credit,
.swiftloop-credit a {
    color: rgba(244, 239, 227, 0.65);
}

.footer-column a:hover,
.swiftloop-credit a:hover {
    color: var(--gold);
}

/* ==========================================================================
   Header refinements
   ========================================================================== */

.header {
    padding: 18px clamp(16px, 3vw, 40px);
}

.header-icon:hover {
    color: var(--gold);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
    .hero {
        height: 100svh;
        min-height: 540px;
        position: relative;
    }
    .hero-frame {
        padding-top: 96px;
    }
    .hero-top {
        justify-content: space-between;
        gap: 18px;
        flex-wrap: wrap;
    }
    .hero-title {
        font-size: clamp(2.6rem, 13vw, 4.4rem);
        letter-spacing: 0.03em;
    }
    .hero-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 26px;
    }
    .subtitle-item {
        font-size: 0.72rem;
        letter-spacing: 0.24em;
    }
    /* flags removed from the currency selector — keep the 3-letter code
       visible on mobile (responsive.css used to hide it in favour of the flag) */
    .currency-code {
        display: inline;
    }
    .shop-blocks {
        grid-template-columns: 1fr;
    }
    .shop-block {
        min-height: 320px;
    }
    .testimonials-container {
        height: 460px;
    }
    /* third review column off on tablets/phones */
    .review-column:nth-child(3) {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 100svh;
        min-height: 520px;
        position: relative;
    }
    .hero-title {
        font-size: clamp(2.3rem, 12.5vw, 3.2rem);
        letter-spacing: 0.03em;
        margin-top: 0;
    }
    .hero-cta {
        padding: 16px 30px;
        font-size: 0.72rem;
    }
    .hero-eyebrow {
        font-size: 0.62rem;
    }
    .hero-bar {
        width: 24px;
    }
    .section-label {
        letter-spacing: 0.24em;
    }
    .review-column:nth-child(2) {
        display: none;
    }
    .testimonials-container {
        height: 420px;
    }
    .reviews-section {
        padding: 70px 0;
    }
    .watch-inquiry-section {
        padding: 80px 20px;
    }
    .inquiry-title {
        font-size: clamp(1.7rem, 9vw, 2.2rem);
        letter-spacing: 0.04em;
    }
    .whatsapp-community {
        padding: 70px 20px;
    }
    .whatsapp-community h2 {
        font-size: 1.5rem;
        letter-spacing: 0.05em;
    }
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    .testimonials-column {
        animation: none !important;
    }
    .hero-canvas {
        transition: none;
    }
}
