



:root {
    --bg: #080808;
    --bg-2: #0e0e0e;
    --bg-card: #141414;
    --bg-light: #ffffff;
    
    /* Metallic Gold Text Gradient */
    --gold: #D4AF37;
    --gold-light: #F3D266;
    --gold-dark: #AA771C;
    --gold-metallic: linear-gradient(105deg, #BF953F 0%, #FCF6BA 25%, #D4AF37 50%, #AA771C 75%, #F3D266 100%);
    
    /* Subtle & Elegant Gold Button Gradient */
    --gold-subtle: linear-gradient(135deg, #E6C266 0%, #D4AF37 50%, #B8860B 100%);
    --gold-subtle-hover: linear-gradient(135deg, #F3D266 0%, #E6C266 50%, #D4AF37 100%);
    
    --gold-dim: rgba(212, 175, 55, 0.1);
    
    --text: #F5F5F5;
    --text-muted: #B0B0B0;
    --text-dim: #707070;
    --text-dark: #0a0a0a;
    --text-dark-muted: #555555;
    
    --line: rgba(255, 255, 255, 0.08);
    --line-dark: rgba(0, 0, 0, 0.1);
    
    --font-heading: 'Titillium Web', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --ease: cubic-bezier(0.25, 1, 0.5, 1);
}
html { scroll-behavior: smooth; }
.ftlp * { margin: 0; padding: 0; box-sizing: border-box; }.ftlp { scroll-behavior: auto; -webkit-font-smoothing: antialiased; }.ftlp {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    overflow-x: clip;
    line-height: 1.7;
    font-weight: 300;
}.ftlp img { max-width: 100%; display: block; }.ftlp a { color: inherit; text-decoration: none; }.ftlp button { font-family: inherit; }.ftlp h1, .ftlp h2, .ftlp h3, .ftlp h4, .ftlp h5 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.015em;
}.ftlp /* Metallic Gold Text Effect */
.gold-text {
    background: var(--gold-metallic);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--gold);
    display: inline-block;
}.ftlp .eyebrow {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    font-weight: 600;
    color: var(--gold);
    display: inline-block;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 40px;
}.ftlp .eyebrow::before {
    content: ''; position: absolute; left: 0; top: 50%;
    width: 30px; height: 1px; background: var(--gold);
}.ftlp /* Hero heading reduced by 80% (from ~5rem to ~1rem equivalent clamp) */
.title-xl { font-size: clamp(2.4rem, 4vw, 4.2rem); line-height: 1.1; }.ftlp .title-l { font-size: clamp(2.2rem, 3.6vw, 3.8rem); }.ftlp .title-m { font-size: clamp(1.6rem, 2.2vw, 2.4rem); }.ftlp .title-s { font-size: clamp(1.2rem, 1.4vw, 1.5rem); }.ftlp .body-xl { font-size: clamp(1.05rem, 1.2vw, 1.25rem); line-height: 1.8; font-weight: 300; color: #E8E8E8; }.ftlp .body-l { font-size: 1.05rem; line-height: 1.8; color: var(--text-muted); }.ftlp .body-m { font-size: 0.95rem; line-height: 1.7; color: var(--text-muted); }.ftlp .container { width: 88%; max-width: 1400px; margin: 0 auto; }.ftlp .section { padding: clamp(5rem, 10vw, 9rem) 0; position: relative; }.ftlp /* NAVIGATION */
.nav {
    position: fixed; top: 0; left: 0; width: 100%;
    padding: 25px 5%;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 1000;
    background: rgba(8, 8, 8, 0.7);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    transition: all 0.4s var(--ease);
}.ftlp .nav.scrolled { padding: 15px 5%; background: rgba(8, 8, 8, 0.95); }.ftlp .logo { display: flex; align-items: center; gap: 14px; }.ftlp .logo-mark {
    width: 42px; height: 42px;
    background: var(--gold-subtle);
    display: flex; align-items: center; justify-content: center;
    color: #000; font-size: 1.2rem;
    font-family: var(--font-heading); font-weight: 700;
    transition: all 0.4s var(--ease);
    border-radius: 2px;
}.ftlp .logo:hover .logo-mark { background: var(--gold-subtle-hover); transform: rotate(-5deg); }.ftlp .logo-text { display: flex; flex-direction: column; line-height: 1; }.ftlp .logo-text strong {
    font-size: 1.1rem; color: var(--text);
    letter-spacing: 1.5px; font-weight: 500;
    text-transform: uppercase; font-family: var(--font-body);
}.ftlp .logo-text small {
    font-size: 0.65rem; color: var(--text-muted);
    letter-spacing: 2.5px; text-transform: uppercase; margin-top: 5px;
}.ftlp .nav-links { display: flex; gap: 36px; align-items: center; }.ftlp .nav-links a {
    color: var(--text); text-transform: uppercase;
    font-size: 0.75rem; letter-spacing: 2px; font-weight: 500;
    transition: color 0.3s; position: relative;
}.ftlp .nav-links a:not(.btn-nav)::after {
    content: ''; position: absolute; bottom: -6px; left: 0;
    width: 0; height: 1px; background: var(--gold);
    transition: width 0.4s var(--ease);
}.ftlp .nav-links a:not(.btn-nav):hover { color: var(--gold); }.ftlp .nav-links a:not(.btn-nav):hover::after { width: 100%; }.ftlp .btn-nav {
    padding: 12px 28px; 
    background: var(--gold-subtle);
    color: #000; font-weight: 600;
    transition: all 0.4s var(--ease);
}.ftlp .btn-nav:hover { background: var(--gold-subtle-hover); transform: translateY(-2px); }.ftlp .menu-toggle { display: none; background: transparent; border: none; color: var(--text); font-size: 1.8rem; cursor: pointer; }.ftlp /* BUTTONS - Subtle Gradient */
.btn-gold, .ftlp .btn-outline {
    display: inline-flex; align-items: center; justify-content: center; gap: 12px;
    padding: 18px 40px;
    font-weight: 600; font-family: var(--font-body);
    text-transform: uppercase; letter-spacing: 2px;
    border: none; transition: all 0.4s var(--ease);
    font-size: 0.78rem; cursor: pointer;
    position: relative; overflow: hidden;
}.ftlp .btn-gold { background: var(--gold-subtle); color: #000; box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15); }.ftlp .btn-gold:hover { background: var(--gold-subtle-hover); transform: translateY(-3px); box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25); }.ftlp .btn-outline { background: transparent; border: 1px solid var(--gold); color: var(--gold); }.ftlp .btn-outline:hover { background: var(--gold); color: #000; transform: translateY(-3px); }.ftlp /* HERO */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    padding: 140px 0 80px;
    background: linear-gradient(105deg, rgba(8,8,8,0.98) 0%, rgba(8,8,8,0.85) 45%, rgba(8,8,8,0.4) 100%),
                url('no-decor-24.webp') no-repeat center center / cover;
    position: relative;
}.ftlp .hero::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, var(--bg) 0%, transparent 25%);
    pointer-events: none;
}.ftlp .hero-content {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 6vw;
    width: 88%; max-width: 1400px; margin: 0 auto; align-items: center;
}.ftlp .hero-text { max-width: 680px; }.ftlp .hero-text h1 { margin-bottom: 32px; text-shadow: 2px 2px 10px rgba(0,0,0,0.6); }.ftlp .hero-text .body-xl { margin-bottom: 40px; text-shadow: 1px 1px 6px rgba(0,0,0,0.6); }.ftlp .hero-list { list-style: none; margin-bottom: 45px; }.ftlp .hero-list li {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 18px; font-size: 1.05rem; color: #E8E8E8;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.6);
}.ftlp .hero-list i { color: var(--gold); font-size: 1.5rem; }.ftlp /* LEAD PANEL */
.lead-panel {
    background: var(--bg-light); color: var(--text-dark);
    padding: 50px 45px; border-radius: 2px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.6);
    position: relative;
}.ftlp .lead-panel::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gold-subtle);
}.ftlp .lead-panel h3 { color: var(--text-dark); margin: 10px 0 15px; }.ftlp .lead-panel .body-m { color: var(--text-dark-muted); margin-bottom: 35px; }.ftlp .lead-panel .eyebrow { color: var(--gold-dark); }.ftlp /* UI FIX: Full Border Inputs */
.form-group { margin-bottom: 24px; position: relative; }.ftlp .form-group label {
    display: block; font-size: 0.7rem;
    text-transform: uppercase; letter-spacing: 1.8px;
    font-weight: 700; color: var(--text-dark-muted);
    margin-bottom: 10px; transition: color 0.3s;
}.ftlp .form-group input, .ftlp .form-group textarea {
    width: 100%; background: #F9F9F9;
    border: 1px solid #DDDDDD;
    border-radius: 2px;
    padding: 15px 18px;
    font-family: var(--font-body); font-size: 0.95rem;
    color: var(--text-dark); outline: none;
    transition: all 0.3s var(--ease);
}.ftlp .form-group textarea { resize: vertical; min-height: 80px; }.ftlp .form-group input::placeholder, .ftlp .form-group textarea::placeholder {
    color: #999; font-weight: 300;
}.ftlp .form-group input:focus, .ftlp .form-group textarea:focus { 
    border-color: var(--gold); 
    background: #FFF;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}.ftlp .form-group:focus-within label { color: var(--gold-dark); }.ftlp .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }.ftlp .btn-submit {
    width: 100%; padding: 18px;
    background: var(--gold-subtle); color: #000;
    border: none; text-transform: uppercase;
    letter-spacing: 2px; font-weight: 700; font-size: 0.8rem;
    cursor: pointer; transition: all 0.3s var(--ease);
    margin-top: 10px;
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
}.ftlp .btn-submit:hover { background: var(--gold-subtle-hover); transform: translateY(-2px); }.ftlp .form-disclaimer {
    margin-top: 18px; font-size: 0.72rem; color: #777;
    text-align: center;
    display: flex; align-items: center; justify-content: center; gap: 6px;
}.ftlp .form-disclaimer i { font-size: 0.9rem; color: var(--gold-dark); }.ftlp .form-success { display: none; text-align: center; padding: 40px 10px; }.ftlp .form-success i { font-size: 4.5rem; color: var(--gold); margin-bottom: 20px; display: inline-block; }.ftlp .form-success h3 { color: var(--text-dark); margin-bottom: 12px; }.ftlp .form-success p { color: var(--text-dark-muted); }.ftlp /* SECTION 1: SPLIT SECTION */
.split-header { text-align: center; margin-bottom: 6vw; max-width: 840px; margin-left: auto; margin-right: auto; }.ftlp .split-header h2 { margin-bottom: 24px; }.ftlp .split-header p { color: var(--text-muted); }.ftlp .split-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2rem 4vw; align-items: end;
}.ftlp .split-label {
    text-align: center; padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}.ftlp .split-label .eyebrow { margin-bottom: 10px; }.ftlp .split-img img {
    width: 100%; height: 500px; object-fit: cover;
    border-radius: 2px; box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    transition: transform 0.8s var(--ease);
}.ftlp .split-img:hover img { transform: scale(1.02); }.ftlp /* EDITORIAL GALLERY (Mosaic) */
.gallery-section { background: var(--bg-2); }.ftlp .gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 120px;
    gap: 16px;
}.ftlp .gallery-item {
    overflow: hidden; position: relative; border-radius: 2px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}.ftlp .gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.8s var(--ease);
}.ftlp .gallery-item::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.6));
    opacity: 0; transition: opacity 0.4s;
}.ftlp .gallery-item:hover img { transform: scale(1.08); }.ftlp .gallery-item:hover::after { opacity: 1; }.ftlp .g-1 { grid-column: span 5; grid-row: span 3; }.ftlp .g-2 { grid-column: span 4; grid-row: span 2; }.ftlp .g-3 { grid-column: span 3; grid-row: span 2; }.ftlp .g-4 { grid-column: span 4; grid-row: span 2; }.ftlp .g-5 { grid-column: span 3; grid-row: span 2; }.ftlp .g-6 { grid-column: span 6; grid-row: span 3; }.ftlp .g-7 { grid-column: span 6; grid-row: span 3; }.ftlp /* PROCESS & FEATURES */
.process-section { background: var(--bg); }.ftlp .process-header { text-align: center; margin-bottom: 6vw; max-width: 760px; margin-left: auto; margin-right: auto; }.ftlp .process-header h2 { margin-bottom: 24px; }.ftlp .process-header p { color: var(--text-muted); }.ftlp .process-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 3vw; position: relative;
}.ftlp .process-grid::before {
    content: ''; position: absolute; top: 40px;
    left: 12%; width: 76%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--line) 20%, var(--line) 80%, transparent);
    z-index: 0;
}.ftlp .process-step { text-align: center; position: relative; z-index: 1; }.ftlp .process-num {
    width: 80px; height: 80px;
    background: var(--bg-2); border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; font-family: var(--font-heading);
    background: var(--gold-metallic);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 auto 24px;
    box-shadow: 0 0 0 8px var(--bg);
    transition: all 0.4s var(--ease);
}.ftlp .process-step:hover .process-num {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4), 0 0 0 8px var(--bg);
}.ftlp .process-step h4 { margin-bottom: 12px; color: var(--text); }.ftlp .process-step p { color: var(--text-muted); font-size: 0.9rem; }.ftlp /* USP / FEATURES (Moved to just above bottom form) */
.features-section { background: var(--bg-2); padding: 6vw 0; border-top: 1px solid var(--line); }.ftlp .features-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 3vw; max-width: 1400px; margin: 0 auto;
    width: 88%;
}.ftlp .feature-box { text-align: center; }.ftlp .feature-icon {
    width: 90px; height: 90px;
    border: 1px solid var(--line); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.4s var(--ease);
    background: var(--bg);
}.ftlp .feature-icon i { font-size: 2.2rem; color: var(--gold); transition: color 0.4s; }.ftlp .feature-box:hover .feature-icon {
    border-color: var(--gold); background: var(--bg-card);
    transform: translateY(-5px);
}.ftlp .feature-box h4 { margin-bottom: 12px; }.ftlp .feature-box p { color: var(--text-muted); font-size: 0.9rem; }.ftlp /* THE MECHANICS (Easy-Lift & Flat Pocket) */
.mechanics-section { background: var(--bg-2); }.ftlp .mechanics-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6vw; align-items: center;
}.ftlp .mechanics-content h2 { margin-bottom: 30px; }.ftlp .mechanics-block {
    margin-bottom: 40px;
    display: flex; gap: 20px;
}.ftlp .mech-icon {
    min-width: 60px; height: 60px;
    border: 1px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 1.5rem;
    border-radius: 2px;
}.ftlp .mech-text h4 { color: var(--text); margin-bottom: 8px; }.ftlp .mech-text p { color: var(--text-muted); font-size: 0.95rem; }.ftlp .mechanics-visual {
    position: relative; height: 600px;
}.ftlp .mech-img-1 {
    position: absolute; top: 0; right: 0; width: 75%; height: 450px;
    object-fit: cover; border-radius: 2px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}.ftlp .mech-img-2 {
    position: absolute; bottom: 0; left: 0; width: 55%; height: 350px;
    object-fit: cover; border-radius: 2px;
    border: 5px solid var(--bg-2);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}.ftlp /* MATERIAL CRAFTSMANSHIP */
.materials-section { background: var(--bg); }.ftlp .materials-header { text-align: center; max-width: 760px; margin: 0 auto 6vw; }.ftlp .materials-header h2 { margin-bottom: 24px; }.ftlp .materials-header p { color: var(--text-muted); }.ftlp .materials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}.ftlp .material-card {
    background: var(--bg-card); border: 1px solid var(--line);
    padding: 40px 30px; border-radius: 2px;
    transition: all 0.4s var(--ease);
    position: relative; overflow: hidden;
}.ftlp .material-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
    background: var(--gold-subtle);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s var(--ease);
}.ftlp .material-card:hover { border-color: rgba(212, 175, 55, 0.3); transform: translateY(-5px); }.ftlp .material-card:hover::before { transform: scaleX(1); }.ftlp .mat-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 25px; }.ftlp .material-card h4 { margin-bottom: 12px; color: var(--text); }.ftlp .material-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }.ftlp .mat-spec { font-size: 0.8rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }.ftlp /* TRUST STATS */
.stats-section {
    background: var(--bg-2);
    padding: 6vw 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}.ftlp .stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 2vw; text-align: center;
}.ftlp .stat-item h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    background: var(--gold-metallic);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px; line-height: 1;
}.ftlp .stat-item p { color: var(--text-muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; }.ftlp /* NEW VISUAL SECTIONS */
.visual-section { background: var(--bg); padding: 0; position: relative; overflow: hidden; }.ftlp .visual-full {
    width: 100%; height: 70vh; object-fit: cover;
}.ftlp .visual-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(8,8,8,0.3) 0%, rgba(8,8,8,0.7) 100%);
    display: flex; align-items: center; justify-content: center;
    text-align: center;
}.ftlp .visual-overlay-content { max-width: 800px; padding: 0 20px; }.ftlp .visual-overlay-content h2 { margin-bottom: 20px; }.ftlp .visual-overlay-content p { color: #fff; font-size: 1.2rem; }.ftlp .lifestyle-split {
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 600px;
}.ftlp .lifestyle-img img { width: 100%; height: 100%; object-fit: cover; }.ftlp .lifestyle-text {
    padding: 6vw; display: flex; flex-direction: column; justify-content: center;
    background: var(--bg-2);
}.ftlp .lifestyle-text h2 { margin-bottom: 24px; }.ftlp .lifestyle-text p { color: var(--text-muted); margin-bottom: 30px; }.ftlp /* PRODUCT SHOWCASE */
.product-section { background: var(--bg-card); }.ftlp .product-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6vw; align-items: start;
}.ftlp .product-gallery { display: flex; flex-direction: column; gap: 2vw; }.ftlp .product-image {
    border-radius: 2px; overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}.ftlp .product-image img { width: 100%; height: auto; display: block; transition: transform 0.8s var(--ease); }.ftlp .product-image:hover img { transform: scale(1.03); }.ftlp .sticky-info { position: sticky; top: 110px; }.ftlp .sticky-info h2 { margin: 14px 0 30px; }.ftlp .swatch-section { margin-top: 30px; }.ftlp .swatch-section h5 {
    font-family: var(--font-body); font-size: 0.7rem;
    text-transform: uppercase; letter-spacing: 1.8px;
    color: var(--gold); margin-bottom: 8px; font-weight: 700;
}.ftlp .swatch-section .desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 15px; }.ftlp .swatch-section .desc strong { color: var(--text); font-weight: 600; }.ftlp .swatch-group { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }.ftlp .swatch {
    width: 36px; height: 36px; border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.1);
    cursor: pointer; position: relative;
    transition: all 0.3s var(--ease);
}.ftlp .swatch:hover { transform: scale(1.15); border-color: var(--gold); box-shadow: 0 5px 15px rgba(0,0,0,0.5); }.ftlp .swatch.active { border-color: var(--gold); box-shadow: 0 0 0 2px var(--gold-dim); }.ftlp .swatch.swatch-more { border: 1px dashed rgba(255,255,255,0.3); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; color: #fff; background: transparent; }.ftlp .swatch::after {
    content: attr(data-title); position: absolute; bottom: -32px; left: 50%; transform: translateX(-50%);
    font-size: 0.65rem; color: #000; background: var(--gold);
    padding: 4px 8px; border-radius: 2px; white-space: nowrap;
    opacity: 0; pointer-events: none; transition: opacity 0.3s; z-index: 10;
}.ftlp .swatch:hover::after { opacity: 1; }.ftlp /* FAQ */
.faq-section { margin-top: 60px; border-top: 1px solid var(--line); padding-top: 30px; }.ftlp .faq-item { border-bottom: 1px solid var(--line); }.ftlp .faq-question {
    display: flex; justify-content: space-between; align-items: center;
    padding: 25px 0; cursor: pointer; transition: color 0.3s;
}.ftlp .faq-question:hover { color: var(--gold); }.ftlp .faq-question h4 { margin: 0; }.ftlp .faq-question i { font-size: 1.4rem; color: var(--gold); transition: transform 0.4s var(--ease); }.ftlp .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.6s var(--ease); }.ftlp .faq-item.active .faq-answer { max-height: 800px; }.ftlp .faq-item.active .faq-question i { transform: rotate(45deg); }.ftlp .faq-answer-inner { padding-bottom: 25px; }.ftlp .faq-answer-inner p { margin-bottom: 12px; color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; }.ftlp .faq-answer-inner p.label { color: var(--gold); font-weight: 600; font-size: 0.8rem; margin-top: 20px; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 1px; }.ftlp .faq-answer-inner p.label:first-child { margin-top: 0; }.ftlp /* TESTIMONIAL */
.testimonial-section {
    background: var(--bg-2);
    text-align: center;
    position: relative; overflow: hidden;
}.ftlp .testimonial-section::before {
    content: '"'; position: absolute; top: -20px; left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading); font-size: 20rem;
    color: var(--bg-card); z-index: 0; line-height: 1;
}.ftlp .testimonial-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }.ftlp .testimonial-content .body-xl {
    font-family: var(--font-heading); font-style: italic;
    font-size: clamp(1.4rem, 2vw, 2rem); line-height: 1.6;
    color: var(--text); margin-bottom: 40px;
}.ftlp .testimonial-author { font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; }.ftlp .testimonial-role { color: var(--text-muted); font-size: 0.85rem; margin-top: 5px; }.ftlp /* SHOWROOM / CTA */
.cta-section {
    background: var(--bg); padding: clamp(5rem, 10vw, 9rem) 0;
    text-align: center; position: relative; overflow: hidden;
}.ftlp .cta-section::before {
    content: ''; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, var(--gold-dim) 0%, transparent 70%);
    pointer-events: none;
}.ftlp .cta-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }.ftlp .cta-content h2 { margin-bottom: 24px; }.ftlp .cta-content > p { color: var(--text-muted); margin-bottom: 40px; }.ftlp .contact-info {
    margin-top: 50px; display: flex; gap: 40px;
    justify-content: center; flex-wrap: wrap;
    color: var(--text-muted); font-size: 0.9rem;
}.ftlp .contact-info span { display: inline-flex; align-items: center; }.ftlp .contact-info i { color: var(--gold); margin-right: 10px; font-size: 1.2rem; }.ftlp /* FOOTER */
.footer { background: #030303; padding: 70px 0 40px; border-top: 1px solid var(--line); }.ftlp .footer-grid {
    display: grid; grid-template-columns: 1.6fr 1fr 1fr;
    gap: 4vw; margin-bottom: 60px;
}.ftlp .footer-brand .logo { margin-bottom: 25px; }.ftlp .footer-brand p { color: var(--text-muted); font-size: 0.9rem; max-width: 320px; }.ftlp .footer-col h5 {
    font-family: var(--font-body); font-size: 0.75rem;
    text-transform: uppercase; letter-spacing: 2px;
    color: var(--gold); margin-bottom: 20px; font-weight: 700;
}.ftlp .footer-col ul { list-style: none; }.ftlp .footer-col li { margin-bottom: 12px; }.ftlp .footer-col a { color: var(--text-muted); font-size: 0.9rem; transition: color 0.3s; }.ftlp .footer-col a:hover { color: var(--gold); }.ftlp .footer-bottom {
    border-top: 1px solid var(--line); padding-top: 30px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.8rem; color: var(--text-dim);
}.ftlp .footer-social { display: flex; gap: 15px; }.ftlp .footer-social a {
    width: 40px; height: 40px; border: 1px solid var(--line);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    transition: all 0.3s var(--ease); color: var(--text-muted); font-size: 1.1rem;
}.ftlp .footer-social a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }.ftlp /* REVEAL */
.reveal { opacity: 0; transform: translateY(40px); }

/* RESPONSIVE */
@media (max-width: 992px) {.ftlp .nav-links {
        display: none; position: fixed; top: 70px; left: 0; right: 0;
        background: rgba(8,8,8,0.98); flex-direction: column;
        padding: 40px 5%; gap: 25px;
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--line);
        height: calc(100vh - 70px);
    }.ftlp .nav-links.open { display: flex; }.ftlp .menu-toggle { display: block; }.ftlp .hero { padding: 120px 0 60px; min-height: auto; }.ftlp .hero-content { grid-template-columns: 1fr; gap: 50px; }.ftlp .split-grid { grid-template-columns: 1fr; gap: 1rem; }.ftlp .process-grid, .ftlp .features-grid, .ftlp .product-layout, .ftlp .footer-grid, .ftlp .materials-grid, .ftlp .stats-grid, .ftlp .lifestyle-split {
        grid-template-columns: 1fr; gap: 40px;
    }.ftlp .process-grid::before { display: none; }.ftlp .sticky-info { position: static; }.ftlp .form-row { grid-template-columns: 1fr; }.ftlp .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }.ftlp .gallery-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 100px; }.ftlp .g-1, .ftlp .g-2, .ftlp .g-3, .ftlp .g-4, .ftlp .g-5, .ftlp .g-6, .ftlp .g-7 { grid-column: span 6; grid-row: span 2; }.ftlp .g-1 { grid-row: span 3; }.ftlp .mechanics-layout { grid-template-columns: 1fr; }.ftlp .mechanics-visual { height: 400px; margin-top: 40px; }.ftlp .mech-img-1 { width: 100%; height: 300px; position: relative; }.ftlp .mech-img-2 { display: none; }

}

@media (max-width: 600px) {.ftlp .container { width: 92%; }.ftlp .section { padding: 4rem 0; }.ftlp .lead-panel { padding: 35px 25px; }.ftlp .split-img img { height: 320px; }.ftlp .process-num { width: 60px; height: 60px; font-size: 1.3rem; }.ftlp .nav { padding: 18px 5%; }.ftlp .logo-text strong { font-size: 1rem; }.ftlp .logo-text small { font-size: 0.6rem; }.ftlp .contact-info { gap: 20px; flex-direction: column; }.ftlp .stats-grid { grid-template-columns: 1fr 1fr; gap: 30px; }

}

.ftlp .wpcf7-form .input-group { margin-bottom: 24px; position: relative; }
.ftlp .wpcf7-form .input-group label {
    display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1.8px;
    font-weight: 700; color: var(--text-dark-muted); margin-bottom: 10px;
}
.ftlp .wpcf7-form input[type=text], .ftlp .wpcf7-form input[type=tel], .ftlp .wpcf7-form input[type=email], .ftlp .wpcf7-form textarea {
    width: 100%; background: #F9F9F9; border: 1px solid #DDDDDD; border-radius: 2px;
    padding: 15px 18px; font-family: var(--font-body); font-size: 0.95rem; color: var(--text-dark);
    outline: none; transition: all 0.3s var(--ease);
}
.ftlp .wpcf7-form textarea { resize: vertical; min-height: 80px; }
.ftlp .wpcf7-form input:focus, .ftlp .wpcf7-form textarea:focus { border-color: var(--gold); background: #FFF; box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15); }
.ftlp .wpcf7-form .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ftlp .wpcf7-form input[type=submit] {
    width: 100%; padding: 18px; background: var(--gold-subtle); color: #000; border: none;
    text-transform: uppercase; letter-spacing: 2px; font-weight: 700; font-size: 0.8rem;
    cursor: pointer; transition: all 0.3s var(--ease); margin-top: 10px;
}
.ftlp .wpcf7-form input[type=submit]:hover { background: var(--gold-subtle-hover); transform: translateY(-2px); }
.ftlp .wpcf7-form .custom-success-message i { color: var(--gold); }
.ftlp .wpcf7-form .custom-success-message h3 { color: var(--text-dark); font-family: var(--font-heading); font-size: clamp(1.6rem, 2.2vw, 2.4rem); margin-bottom: 12px; }
.ftlp .wpcf7-form .custom-success-message p { color: var(--text-dark-muted); }
.ftlp .wpcf7-form.sent .form-inner-wrapper { display: none !important; }
.ftlp .wpcf7-form.sent .wpcf7-response-output { display: none !important; }
.ftlp .wpcf7-form.sent .custom-success-message { display: block !important; animation: ftlpSuccessIn 0.6s cubic-bezier(0.25,1,0.5,1); }
.ftlp .wpcf7-response-output { font-size: 0.8rem; border-radius: 2px; margin-top: 15px !important; }
@keyframes ftlpSuccessIn { from { opacity: 0; transform: translateY(14px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
@media (max-width: 992px) {
  .ftlp .wpcf7-form .grid-2 { grid-template-columns: 1fr; }
}
.ftlp .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.25,1,0.5,1), transform 0.8s cubic-bezier(0.25,1,0.5,1); }
.ftlp .reveal.is-visible { opacity: 1; transform: translateY(0); }


/* --- WP theme integration (page-scoped) --- */
body.page-id-3098 { background: #080808 !important; }
.ftlp .title-xl { font-size: clamp(2.4rem, 4vw, 4.2rem) !important; line-height: 1.1 !important; }
body.page-id-3098 .content-area,
body.page-id-3098 .middle-align,
body.page-id-3098 .site-main,
body.page-id-3098 article.page,
body.page-id-3098 .entry-content { margin: 0 !important; padding: 0 !important; max-width: none !important; width: 100% !important; }
body.page-id-3098 .innerbanner, body.page-id-3098 .entry-header { display: none !important; }
.ftlp h1, .ftlp h2, .ftlp h3, .ftlp h4, .ftlp h5,
.ftlp .title-xl, .ftlp .title-l, .ftlp .title-m, .ftlp .title-s,
.entry-content .ftlp h1, .entry-content .ftlp h2, .entry-content .ftlp h3, .entry-content .ftlp h4, .entry-content .ftlp h5 {
    font-family: 'Titillium Web', sans-serif !important;
}
.ftlp p, .ftlp li, .ftlp a, .ftlp span, .ftlp label, .ftlp input, .ftlp textarea, .ftlp select, .ftlp button {
    font-family: 'Montserrat', sans-serif;
}
.ftlp i[class^="ph-"], .ftlp i[class*=" ph-"] { font-family: 'Phosphor-Light' !important; }


/* ================= FEEDBACK ROUND 2 ================= */

/* Left-align all body copy (theme forces justify -> ugly word gaps) */
.ftlp p, .ftlp li, .ftlp .desc, .ftlp label, .ftlp td, .ftlp div,
.entry-content .ftlp p, .entry-content .ftlp li { text-align: left !important; }
.ftlp .visual-overlay-content p,
.ftlp .stat-item p,
.ftlp .process-step p,
.ftlp .split-header p,
.ftlp .feature-card p,
.ftlp .cta-header p,
.ftlp .section-header p,
.ftlp .text-center, .ftlp [style*="text-align:center"] { text-align: center !important; }

/* Subtitles (paragraph under the heading) centred */
.ftlp .split-header p, .ftlp .process-header p, .ftlp .gallery-header p,
.ftlp .materials-header p, .ftlp .visual-overlay-content p, .ftlp .cta-header p,
.ftlp .section-header p, .ftlp .feature-card p, .ftlp .stat-item p, .ftlp .process-step p,
.ftlp .split-header, .ftlp .process-header, .ftlp .gallery-header, .ftlp .materials-header,
.ftlp .visual-overlay-content, .ftlp .cta-header, .ftlp .stat-item, .ftlp .process-step,
.ftlp .feature-card { text-align: center !important; }

/* Material elevation-3 text shadow for light text over imagery / lighter backgrounds */
.ftlp .hero-text h1, .ftlp .hero-text .body-xl, .ftlp .hero-text .eyebrow, .ftlp .hero-list li,
.ftlp .visual-overlay-content h2, .ftlp .visual-overlay-content p, .ftlp .visual-overlay-content .eyebrow,
.ftlp .lifestyle-text h2, .ftlp .lifestyle-text p, .ftlp .lifestyle-text .eyebrow,
.ftlp .gallery-item figcaption {
    text-shadow: 0 3px 3px rgba(0,0,0,0.20), 0 3px 4px rgba(0,0,0,0.14), 0 1px 8px rgba(0,0,0,0.12);
}

/* Hero: wider lead panel on desktop */
@media (min-width: 993px) {
    .ftlp .hero-content { grid-template-columns: 1fr 0.92fr; gap: 4.5vw; }
    .ftlp .lead-panel { padding: 50px 50px; }
}

/* Hero form submit == the removed .btn-gold text style */
.ftlp .wpcf7-form input[type=submit] {
    font-family: var(--font-body);
    font-weight: 600 !important;
    font-size: 0.78rem !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 18px 40px !important;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}
.ftlp .wpcf7-form input[type=submit]:hover { box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25); transform: translateY(-3px); }

/* Two-way gold arrow between the split images */
.ftlp .split-grid { position: relative; }
.ftlp .split-arrow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    z-index: 3; width: 68px; height: 68px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: #080808; border: 1px solid var(--gold);
    color: var(--gold); font-size: 1.9rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}
@media (max-width: 992px) { .ftlp .split-arrow { display: none; } }

/* Stats: labels centred under the numbers */
.ftlp .stat-item h2 { text-align: center !important; }

/* Process: solid black circles so the connector line is hidden behind them */
.ftlp .process-num {
    background: #080808 !important;
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    -webkit-text-fill-color: var(--gold) !important;
    color: var(--gold);
    border: 1px solid var(--gold);
}

/* Product section: wider title column, gold text stays on one line, right column sticks */
.ftlp .product-layout { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); }
.ftlp .sticky-info h2 { white-space: nowrap; font-size: clamp(1.4rem, 2.05vw, 2.3rem); }
@media (max-width: 992px) { .ftlp .sticky-info h2 { white-space: normal; font-size: clamp(2.2rem, 3.6vw, 3.8rem); } }
@media (min-width: 993px) {
    .ftlp .product-layout { align-items: start; }
    .ftlp .sticky-info { position: sticky; top: 110px; align-self: start; }
}


/* sticky needs a non-scrolling ancestor: clip, never hidden */
.ftlp { overflow-x: clip; overflow-y: visible; }

/* ===== FEEDBACK ROUND 3: centring fixes ===== */
.ftlp .feature-box, .ftlp .feature-box p, .ftlp .feature-box h4 { text-align: center !important; }
.ftlp .feature-box .feature-icon { margin-left: auto; margin-right: auto; }
.ftlp .cta-content > .eyebrow, .ftlp .cta-content > h2, .ftlp .cta-content > p { text-align: center !important; }
.ftlp .cta-content { text-align: center; }
.ftlp .cta-content .lead-panel, .ftlp .cta-content .lead-panel * { text-align: left !important; }
.ftlp .cta-content .lead-panel .wpcf7-form input[type=submit] { text-align: center !important; }

/* ===== FEEDBACK ROUND 4 ===== */

/* Desktop: testimonial eyebrow/quote/author were inheriting the blanket
   ".ftlp div{text-align:left!important}" left-align from their container. */
.ftlp .testimonial-content { text-align: center !important; }
.ftlp .testimonial-content .eyebrow, .ftlp .testimonial-content .body-xl,
.ftlp .testimonial-content .testimonial-author, .ftlp .testimonial-content .testimonial-role {
    text-align: center !important;
}

/* Mobile: theme's style.css has a bare "@media(max-width:767px){h2{font-size:17px!important}}"
   rule. It beats our non-!important .title-l/.title-m/.title-s (only .title-xl had !important). */
.ftlp .title-l { font-size: clamp(2.2rem, 3.6vw, 3.8rem) !important; }
.ftlp .title-m { font-size: clamp(1.6rem, 2.2vw, 2.4rem) !important; }
.ftlp .title-s { font-size: clamp(1.2rem, 1.4vw, 1.5rem) !important; }

/* Mobile: hero-content grid children default to min-width:auto, so the wider child's
   intrinsic min-content width can blow out the single grid column and skew the margins. */
@media (max-width: 992px) {
    .ftlp .hero-content > .hero-text, .ftlp .hero-content > .lead-panel { min-width: 0; }
}

/* Data-policy disclaimer (CF7 "text-muted-dark" p) inherits the theme's
   ".wpcf7{color:#d6d6d6}" — nearly invisible on the white lead-panel. */
.ftlp .text-muted-dark { color: var(--text-dark-muted) !important; }

/* Mobile: Kettős funkció collapses to one column but DOM order is label,label,img,img.
   Reorder so each label visually sits directly above its own image (variant A, 2 photos). */
@media (max-width: 992px) {
    .ftlp .split-grid .split-label:nth-child(2) { order: 1; }
    .ftlp .split-grid .split-img:nth-child(4) { order: 2; }
    .ftlp .split-grid .split-label:nth-child(3) { order: 3; }
    .ftlp .split-grid .split-img:nth-child(5) { order: 4; }
}

/* ===== FLOATING WIDGETS (unscoped: moved to <body> at runtime) ===== */
.ftw-phone, .ftw-chat { font-family: 'Montserrat', sans-serif; }

.ftw-phone {
    position: fixed; bottom: 104px; right: 28px; z-index: 9998;
    height: 58px; width: 58px; border-radius: 29px;
    display: flex; align-items: center; overflow: hidden;
    background: #111; border: 1px solid rgba(212,175,55,0.45);
    color: #F5F5F5; text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.55);
    transition: width .4s cubic-bezier(.175,.885,.32,1.275), background .3s, border-color .3s;
}
.ftw-phone .ftw-icon { min-width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: #D4AF37; }
.ftw-phone .ftw-label { white-space: nowrap; font-weight: 600; font-size: 0.95rem; letter-spacing: .5px; padding-right: 24px; opacity: 0; transition: opacity .25s; }
.ftw-phone:hover, .ftw-phone:focus-visible { width: 232px; background: #0a0a0a; border-color: #D4AF37; }
.ftw-phone:hover .ftw-label, .ftw-phone:focus-visible .ftw-label { opacity: 1; transition-delay: .12s; }

.ftw-chat { position: fixed; bottom: 28px; right: 28px; z-index: 9999; }
.ftw-chat-toggle {
    height: 58px; width: 58px; border-radius: 29px; cursor: pointer;
    background: linear-gradient(135deg, #E6C266 0%, #D4AF37 50%, #B8860B 100%);
    color: #000; border: none; font-size: 1.65rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 30px rgba(212,175,55,0.35);
    transition: transform .3s, box-shadow .3s;
    margin-left: auto;
}
.ftw-chat-toggle:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(212,175,55,0.45); }
.ftw-chat-toggle .ftw-ico-close { display: none; }
.ftw-chat.is-open .ftw-chat-toggle .ftw-ico-open { display: none; }
.ftw-chat.is-open .ftw-chat-toggle .ftw-ico-close { display: block; }

.ftw-chat-window {
    position: absolute; bottom: 72px; right: 0;
    width: 420px; max-height: min(720px, calc(100vh - 118px));
    background: #fff; color: #111; border-radius: 4px; overflow: auto;
    box-shadow: 0 40px 90px rgba(0,0,0,0.6);
    opacity: 0; transform: translateY(12px) scale(.98); pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.ftw-chat.is-open .ftw-chat-window { opacity: 1; transform: none; pointer-events: auto; }
.ftw-chat-header { background: #0a0a0a; color: #fff; padding: 20px 28px; border-bottom: 3px solid #D4AF37; }
.ftw-chat-header h4 { font-family: 'Titillium Web', sans-serif; font-size: 1.5rem; margin: 0 0 6px; color: #fff; }
.ftw-chat-header p { font-size: 0.9rem; color: rgba(255,255,255,.75); margin: 0; line-height: 1.5; }
.ftw-chat-body { padding: 22px 28px 24px; }
.ftw-chat-body .wpcf7-form label { color: #595959; }
.ftw-chat-body .wpcf7-form input[type=submit] { width: 100%; }

@media (max-width: 600px) {
    .ftw-phone { bottom: 94px; right: 18px; }
    .ftw-chat { bottom: 20px; right: 18px; }
    .ftw-chat-window {
        position: fixed; left: 12px; right: 12px; bottom: 90px; width: auto;
        max-height: calc(100vh - 120px);
    }
}


/* chat widget lives outside .ftlp -> re-apply the CF7 form styling there */
.ftw-chat-body { --gold:#D4AF37; --gold-subtle:linear-gradient(135deg,#E6C266 0%,#D4AF37 50%,#B8860B 100%); --gold-subtle-hover:linear-gradient(135deg,#F3D266 0%,#E6C266 50%,#D4AF37 100%); --ease:cubic-bezier(0.25,1,0.5,1); --text-dark:#0a0a0a; --text-dark-muted:#555555; --font-heading:'Titillium Web',sans-serif; --font-body:'Montserrat',sans-serif; }
.ftw-chat-body .wpcf7-form, .ftw-chat-body .wpcf7-form input, .ftw-chat-body .wpcf7-form textarea, .ftw-chat-body .wpcf7-form label, .ftw-chat-body .wpcf7-form p { font-family:'Montserrat',sans-serif !important; }
.ftw-chat-body .wpcf7-form p { text-align:left !important; }
.ftw-chat-body .wpcf7-form .input-group { margin-bottom: 24px; position: relative; }
.ftw-chat-body .wpcf7-form .input-group label {
    display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1.8px;
    font-weight: 700; color: var(--text-dark-muted); margin-bottom: 10px;
}
.ftw-chat-body .wpcf7-form input[type=text], .ftw-chat-body .wpcf7-form input[type=tel], .ftw-chat-body .wpcf7-form input[type=email], .ftw-chat-body .wpcf7-form textarea {
    width: 100%; background: #F9F9F9; border: 1px solid #DDDDDD; border-radius: 2px;
    padding: 15px 18px; font-family: var(--font-body); font-size: 0.95rem; color: var(--text-dark);
    outline: none; transition: all 0.3s var(--ease);
}
.ftw-chat-body .wpcf7-form textarea { resize: vertical; min-height: 80px; }
.ftw-chat-body .wpcf7-form input:focus, .ftw-chat-body .wpcf7-form textarea:focus { border-color: var(--gold); background: #FFF; box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15); }
.ftw-chat-body .wpcf7-form .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ftw-chat-body .wpcf7-form input[type=submit] {
    width: 100%; padding: 18px; background: var(--gold-subtle); color: #000; border: none;
    text-transform: uppercase; letter-spacing: 2px; font-weight: 700; font-size: 0.8rem;
    cursor: pointer; transition: all 0.3s var(--ease); margin-top: 10px;
}
.ftw-chat-body .wpcf7-form input[type=submit]:hover { background: var(--gold-subtle-hover); transform: translateY(-2px); }
.ftw-chat-body .wpcf7-form .custom-success-message i { color: var(--gold); }
.ftw-chat-body .wpcf7-form .custom-success-message h3 { color: var(--text-dark); font-family: var(--font-heading); font-size: clamp(1.6rem, 2.2vw, 2.4rem); margin-bottom: 12px; }
.ftw-chat-body .wpcf7-form .custom-success-message p { color: var(--text-dark-muted); }
.ftw-chat-body .wpcf7-form.sent .form-inner-wrapper { display: none !important; }
.ftw-chat-body .wpcf7-form.sent .wpcf7-response-output { display: none !important; }
.ftw-chat-body .wpcf7-form.sent .custom-success-message { display: block !important; animation: ftlpSuccessIn 0.6s cubic-bezier(0.25,1,0.5,1); }
.ftw-chat-body .wpcf7-response-output { font-size: 0.8rem; border-radius: 2px; margin-top: 15px !important; }
@media (max-width: 992px) {
  .ftw-chat-body .wpcf7-form .grid-2 { grid-template-columns: 1fr; }
}
.ftw-chat-body .wpcf7-form input[type=submit] {
    font-family: var(--font-body);
    font-weight: 600 !important;
    font-size: 0.78rem !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 18px 40px !important;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}
.ftw-chat-body .wpcf7-form input[type=submit]:hover { box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25); transform: translateY(-3px); }


@media (max-width: 600px) {
    /* the open panel would sit on top of the phone pill -> get it out of the way */
    body.ftw-chat-open .ftw-phone { opacity: 0; pointer-events: none; }
}
.ftw-phone { transition: width .4s cubic-bezier(.175,.885,.32,1.275), background .3s, border-color .3s, opacity .2s; }


/* the * { box-sizing } reset is scoped to .ftlp; the widget lives outside it */
.ftw-chat, .ftw-chat *, .ftw-phone, .ftw-phone * { box-sizing: border-box !important; }
.ftw-chat-body .wpcf7-form input, .ftw-chat-body .wpcf7-form textarea { width: 100% !important; max-width: 100% !important; margin-right: 0 !important; }
.ftw-chat-window { scrollbar-width: thin; overflow-x: hidden; overflow-y: auto; scrollbar-gutter: stable; }
.ftw-chat-body .wpcf7-form textarea { min-height: 76px; height: 76px; }
.ftw-chat-body .wpcf7-form .input-group { margin-bottom: 14px; }
.ftw-chat-body .wpcf7-form input[type=submit] { margin-top: 4px; }
.ftw-chat-body .wpcf7-form .body-s { font-size: 0.68rem; }


.ftw-chat-body .wpcf7-form .grid-2 { grid-template-columns: 1fr !important; }

.ftlp .contact-info a.ftlp-tel { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(212,175,55,.4); }
.ftlp .contact-info a.ftlp-tel:hover { color: #D4AF37; }

/* ===== FINAL BUILD (2026-07-14): hero 1, split A (two photos), full masonry gallery ===== */
.ftlp .hero {
    background-image: linear-gradient(105deg, rgba(8,8,8,0.98) 0%, rgba(8,8,8,0.85) 45%, rgba(8,8,8,0.4) 100%),
                      url('dizajn-biliard-es-etkezoasztal.webp');
}

/* Masonry gallery: Márta's full photo set, mixed portrait/landscape, never cropped. */
.ftlp .gallery-masonry { column-count: 3; column-gap: 1.2rem; }
.ftlp .gallery-masonry .gallery-item {
    break-inside: avoid; -webkit-column-break-inside: avoid;
    margin: 0 0 1.2rem; display: block; position: relative; overflow: hidden;
}
.ftlp .gallery-masonry .gallery-item img {
    width: 100%; height: auto; display: block;
    transition: transform 0.7s var(--ease);
}
.ftlp .gallery-masonry .gallery-item:hover img { transform: scale(1.05); }
@media (max-width: 992px) { .ftlp .gallery-masonry { column-count: 2; column-gap: 1rem; }
    .ftlp .gallery-masonry .gallery-item { margin-bottom: 1rem; }
    .ftlp .gallery-masonry.is-collapsed { max-height: 900px; } }
/* Collapsed to roughly three rows until "További fotók" is clicked. A multicol
   masonry has no real rows, so we clip the column height and fade the cut edge. */
.ftlp .gallery-masonry.is-collapsed {
    max-height: 1080px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
            mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
}
.ftlp .gallery-more { display: flex; justify-content: center; margin-top: 2.5rem; }
.ftlp .gallery-more-btn { cursor: pointer; background: transparent; }
.ftlp .gallery-more-btn i { font-size: 1.1rem; transition: transform 0.3s var(--ease); }
.ftlp .gallery-more-btn[aria-expanded="true"] i { transform: rotate(180deg); }

/* Mobile: drop multicol entirely. A single ~14,000px-tall column inside an
   `overflow-x: clip` ancestor hits a Chromium paint bug — the items keep correct
   geometry and opacity but render blank. One column gains nothing from multicol,
   so stack as a plain flex column instead. */
@media (max-width: 600px) {
    .ftlp .gallery-masonry {
        column-count: auto; columns: auto;
        display: flex; flex-direction: column;
    }
    /* one column, so "three rows" = three stacked photos */
    .ftlp .gallery-masonry.is-collapsed { max-height: 1000px; }
}

