:root {
    --bg-tobacco: #2C1A0E;
    --bg-sepia: #1A0F07;
    --bg-darker: #1A0C06;
    --primary-crimson: #B01A1A;
    --accent-gold: #C9942A;
    --section-green: #1B3A2D;
    --text-ivory: #FAF0E0;

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-tobacco);
    color: var(--text-ivory);
    font-family: var(--font-body);
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
    /* Keep space on right for scissor */
    padding-right: 80px; 
}

/* Custom cursor hidden */
#custom-cursor {
    display: none !important;
}

/* Noise overlay hidden */
.noise-overlay {
    display: none !important;
}

/* Typography */
h1, h2, h3, h4, .logo, .hero-heading {
    font-family: var(--font-heading);
}

h1 { font-size: 5rem; line-height: 1.1; font-weight: 600; }
h2 { font-size: 3rem; font-weight: 400; margin-bottom: 2rem; }

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100% - 80px); /* Avoid scissor track */
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(44, 26, 14, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: border-bottom 0.3s ease;
    border-bottom: 1px solid transparent;
}
.navbar.scrolled {
    border-bottom: 1px solid var(--accent-gold);
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    height: 54px;
    width: auto;
    object-fit: contain;
    display: block;
}
.nav-links {
    display: flex;
    gap: 2rem;
}
.nav-links a {
    color: var(--text-ivory);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    cursor: pointer;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 0; height: 1px;
    background: var(--primary-crimson);
    transition: width 0.3s ease;
}
.nav-links a:hover {
    color: var(--primary-crimson);
}
.nav-links a:hover::after {
    width: 100%;
}

/* Scroll Mechanic: Scissor & Thread */
.thread-container {
    position: fixed;
    top: 0;
    right: 40px;
    width: 2px;
    height: 100vh;
    z-index: 500;
    pointer-events: none;
}
.thread-dashed {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(to bottom, var(--accent-gold) 50%, transparent 50%);
    background-size: 2px 12px;
    opacity: 0.5;
}
.thread-solid {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 0; /* Updated via JS */
    background-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(201, 148, 42, 0.8);
}
.scissor-wrapper {
    position: fixed;
    top: 0; /* Handled by JS for transform */
    right: 15px; /* Offset to center blade on thread */
    width: 50px;
    height: 125px;
    transform: translateY(0);
    will-change: transform;
    z-index: 501;
}

/* Scissor Animation */
.blade {
    transform-origin: 50px 150px;
    transition: transform 0.1s ease-out;
}

/* Keyframes for looping snip while moving */
@keyframes scissor-cut {
    0%   { transform: rotate(0deg); }
    50%  { transform: rotate(-10deg); } /* left blade moves out */
    100% { transform: rotate(0deg); }
}
@keyframes scissor-cut-right {
    0%   { transform: rotate(0deg); }
    50%  { transform: rotate(10deg); } /* right blade moves out */
    100% { transform: rotate(0deg); }
}

/* Apply active cut class via JS */
.scissor-wrapper.cutting .left-blade {
    animation: scissor-cut 0.5s infinite;
}
.scissor-wrapper.cutting .right-blade {
    animation: scissor-cut-right 0.5s infinite;
}

/* Snip animation when entering section */
.scissor-wrapper.snapping .left-blade {
    animation: scissor-snap 0.4s ease-out forwards;
}
.scissor-wrapper.snapping .right-blade {
    animation: scissor-snap-right 0.4s ease-out forwards;
}
@keyframes scissor-snap {
    0% { transform: rotate(-25deg); }
    100% { transform: rotate(5deg); }
}
@keyframes scissor-snap-right {
    0% { transform: rotate(25deg); }
    100% { transform: rotate(-5deg); }
}


/* General Layout */
.section {
    padding: 6rem 10%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Hero */
.hero {
    height: 100vh;
    padding-top: 100px;
    background: url('assets/hero-bg.png') center/cover no-repeat fixed;
    position: relative;
}
.hero::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg-tobacco);
    mix-blend-mode: multiply; opacity: 0.85; z-index: 1;
}
.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 10;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201, 148, 42, 0.08);
    border: 1px solid rgba(201, 148, 42, 0.3);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    backdrop-filter: blur(4px);
}
.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #27ae60;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.7);
    animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(39, 174, 96, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(39, 174, 96, 0); }
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
}
.cta-button:hover .cta-arrow {
    transform: translateX(5px);
}
.cta-arrow {
    display: inline-block;
    margin-left: 12px;
    transition: transform 0.3s ease;
}
.hero-heading {
    margin-bottom: 2rem;
}
.hero-heading .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
}
.hero-subheading {
    font-size: 1.4rem;
    color: rgba(250, 240, 224, 0.8);
    margin-bottom: 3rem;
    opacity: 0;
}
.cta-button {
    background: linear-gradient(135deg, var(--primary-crimson) 0%, #600b0b 100%);
    color: var(--text-ivory);
    border: 1px solid var(--accent-gold);
    padding: 1.2rem 3.5rem;
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
    transform: translateY(20px);
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(176, 26, 26, 0.5), inset 0 0 15px rgba(201, 148, 42, 0.3);
    z-index: 1;
    animation: luxury-pulse 4s infinite alternate;
}

/* Shine Sweep Effect */
.cta-button::before {
    content: '';
    position: absolute;
    top: 0; 
    left: -100%;
    width: 60%; 
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 150%;
}

.cta-button:hover {
    background: linear-gradient(135deg, #801313 0%, var(--primary-crimson) 100%);
    color: #fff;
    border-color: #fff;
    box-shadow: 0 8px 40px rgba(201, 148, 42, 0.7), 0 0 25px rgba(176, 26, 26, 0.8);
    transform: translateY(-5px) scale(1.03);
}

@keyframes luxury-pulse {
    0% { box-shadow: 0 0 25px rgba(176, 26, 26, 0.4), inset 0 0 10px rgba(201, 148, 42, 0.2); }
    50% { box-shadow: 0 0 40px rgba(201, 148, 42, 0.6), inset 0 0 25px rgba(201, 148, 42, 0.5); }
    100% { box-shadow: 0 0 25px rgba(176, 26, 26, 0.4), inset 0 0 10px rgba(201, 148, 42, 0.2); }
}

/* Responsive UI thresholds managed at the end of file */



/* Services Showcase */
.services-showcase {
    background-color: var(--bg-sepia);
}
.services-intro {
    font-size: 1.15rem;
    color: rgba(250, 240, 224, 0.7);
    max-width: 700px;
    margin-bottom: 3rem;
    line-height: 1.8;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.service-card {
    background: rgba(44, 26, 14, 0.6);
    border: 1px solid rgba(201, 148, 42, 0.3);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}
.scroll-reveal.revealed .service-card {
    opacity: 1;
    transform: translateY(0);
}
.scroll-reveal.revealed .service-card:nth-child(2) { transition-delay: 0.1s; }
.scroll-reveal.revealed .service-card:nth-child(3) { transition-delay: 0.2s; }
.scroll-reveal.revealed .service-card:nth-child(4) { transition-delay: 0.3s; }
.scroll-reveal.revealed .service-card:nth-child(5) { transition-delay: 0.4s; }
.scroll-reveal.revealed .service-card:nth-child(6) { transition-delay: 0.5s; }
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    transition: left 0.6s ease;
}
.service-card:hover::before {
    left: 100%;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-gold);
}
.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}
.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}
.service-card p {
    font-size: 0.95rem;
    color: rgba(250, 240, 224, 0.7);
    line-height: 1.6;
}

/* Section Titles */
.section-title { color: var(--accent-gold); }
.title-underline {
    display: block; width: 60px; height: 2px;
    background: var(--primary-crimson); margin-top: 10px;
}

/* Gallery & Testimonials */
.gallery { background-color: var(--bg-darker); }
.gallery-filters { display: flex; gap: 1rem; margin-bottom: 3rem; flex-wrap: wrap; }
.filter-btn {
    background: transparent; border: 1px solid var(--accent-gold);
    color: var(--text-ivory); padding: 0.6rem 1.5rem; border-radius: 20px;
    cursor: pointer; font-family: var(--font-body); transition: var(--transition-smooth);
}
.filter-btn.active, .filter-btn:hover { background: var(--accent-gold); color: var(--bg-darker); }
.masonry-grid { column-count: 3; column-gap: 2rem; }
.masonry-item {
    background: #2a1c13; margin-bottom: 2rem; display: inline-block; width: 100%;
    border: 1px solid var(--accent-gold); opacity: 0;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 1s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s ease;
}
.scroll-reveal.revealed .masonry-item {
    opacity: 1; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.testimonials { background-color: var(--bg-sepia); overflow: hidden; }
.carousel-container { display: flex; overflow: hidden; width: 100%; }
.carousel-track {
    display: flex; gap: 2rem;
    animation: scroll-carousel 20s linear infinite;
}
@keyframes scroll-carousel { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.testimonial-card {
    min-width: 350px; background: var(--bg-darker); border: 1px solid var(--accent-gold);
    padding: 2rem; text-align: center;
    transform: rotate(5deg) translateY(-20px); opacity: 0; transition: transform 0.6s ease, opacity 0.6s ease;
}
.scroll-reveal.revealed .testimonial-card { transform: rotate(0deg) translateY(0); opacity: 1; }
.t-photo { width: 80px; height: 80px; border-radius: 50%; border: 2px solid var(--accent-gold); margin: 0 auto 1.5rem; background: #332115; }
.testimonial-card:nth-child(even) .t-photo { background: url('https://images.unsplash.com/photo-1534528741775-53994a69daeb?w=150&h=150&fit=crop') center/cover; }
.testimonial-card:nth-child(odd) .t-photo { background: url('https://images.unsplash.com/photo-1506794778202-cad84cf45f1d?w=150&h=150&fit=crop') center/cover; }
.testimonial-card:nth-child(3n) .t-photo { background: url('https://images.unsplash.com/photo-1531746020798-e6953c6e8e04?w=150&h=150&fit=crop') center/cover; }
.t-text { font-style: italic; margin-bottom: 1.5rem; line-height: 1.6; }
.t-rating { color: var(--accent-gold); margin-bottom: 0.5rem; }
.t-name { font-family: var(--font-heading); font-size: 1.2rem; color: var(--primary-crimson); }

/* About Split Reveal & Timeline */
.section-divider { padding: 4rem 0; text-align: center; }
.section-divider svg { width: 100px; height: 20px; }
.about {
    display: flex; flex-direction: row; align-items: center; gap: 4rem;
    position: relative; overflow: hidden;
}
.split-left, .split-right {
    flex: 1; opacity: 0; transition: transform 1s ease, opacity 1s ease;
}
.split-left { transform: translateX(-100px); }
.split-right { transform: translateX(100px); }
.split-reveal.revealed .split-left, .split-reveal.revealed .split-right {
    opacity: 1; transform: translateX(0);
}
.about-heading { font-size: 2.8rem; line-height: 1.2; margin-bottom: 2rem; }
.gold-line { width: 80px; height: 2px; background: var(--accent-gold); margin-bottom: 1.5rem; }
.value-pillars { display: flex; flex-direction: column; gap: 1rem; }
.pillar-card {
    background: var(--section-green); padding: 1.5rem; border: 1px solid var(--accent-gold);
    display: flex; align-items: center; gap: 1rem; font-size: 1.2rem;
}
.vintage-image {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 9/16;
    height: auto;
    margin: 0 auto;
    background-color: #111;
    position: relative; border: 2px solid var(--accent-gold); overflow: hidden;
    border-radius: 4px;
}
.ambient-video {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    pointer-events: none;
    filter: sepia(0.5) brightness(0.8) contrast(1.1);
}
.vignette {
    position: absolute; top:0; left:0; width:100%; height:100%;
    box-shadow: inset 0 0 100px var(--bg-tobacco); z-index: 2;
}
.timeline-section { padding-top: 0; min-height: 50vh; }
.timeline {
    display: flex; justify-content: space-between; position: relative; margin-top: 5rem;
}
.timeline-node {
    display: flex; flex-direction: column; align-items: center; z-index: 2;
    background: var(--bg-tobacco); padding: 1rem; border-radius: 5px;
    border: 1px solid var(--accent-gold); color: var(--accent-gold); font-family: var(--font-heading);
    opacity: 0; transform: scale(0.8); transition: all 0.5s ease;
}
.timeline-node::before {
    content: attr(data-year); font-size: 1.5rem; color: var(--text-ivory); margin-bottom: 0.5rem;
}
.timeline-thread {
    position: absolute; top: 50%; left: 0; width: 100%; height: 2px;
    background-image: linear-gradient(to right, var(--accent-gold) 50%, transparent 50%); background-size: 12px 2px; z-index: 1; transform: translateY(-50%); opacity: 0.5;
}
.scroll-reveal.revealed .timeline-node { opacity: 1; transform: scale(1); }
.scroll-reveal.revealed .timeline-node:nth-child(2) { transition-delay: 0.2s; }
.scroll-reveal.revealed .timeline-node:nth-child(3) { transition-delay: 0.4s; }
.scroll-reveal.revealed .timeline-node:nth-child(4) { transition-delay: 0.6s; }
.scroll-reveal.revealed .timeline-node:nth-child(5) { transition-delay: 0.8s; }

/* Contact Section */
.contact-section {
    background-color: var(--bg-tobacco);
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}
.contact-card {
    background: rgba(27, 58, 45, 0.4);
    border: 1px solid rgba(201, 148, 42, 0.25);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: transform 0.4s ease, border-color 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}
.scroll-reveal.revealed .contact-card {
    opacity: 1;
    transform: translateY(0);
}
.scroll-reveal.revealed .contact-card:nth-child(2) { transition-delay: 0.1s; }
.scroll-reveal.revealed .contact-card:nth-child(3) { transition-delay: 0.2s; }
.scroll-reveal.revealed .contact-card:nth-child(4) { transition-delay: 0.3s; }
.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}
.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.contact-card h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}
.contact-card p {
    color: rgba(250, 240, 224, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.3rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}
.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(-110%) translateY(-50%) scale(1);
}
.whatsapp-tooltip {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateX(-110%) translateY(-50%) scale(0.8);
    background: var(--bg-darker);
    color: var(--text-ivory);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: 1px solid rgba(201, 148, 42, 0.3);
}
@keyframes whatsapp-pulse {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* Mobile Hamburger Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    z-index: 1001;
}
.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--accent-gold);
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Booking & Footer */
.booking { background-color: var(--section-green); }
.how-it-works { display: flex; justify-content: space-between; position: relative; margin-bottom: 4rem; }
.step { text-align: center; z-index: 2; background: var(--section-green); padding: 0 1rem; }
.step-circle {
    width: 50px; height: 50px; border-radius: 50%; border: 2px solid var(--accent-gold);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
    font-family: var(--font-heading); font-size: 1.5rem; color: var(--accent-gold); background: var(--bg-darker);
}
.step-line-dashed {
    position: absolute; top: 25px; left: 0; width: 100%; height: 1px;
    background-image: linear-gradient(to right, var(--accent-gold) 50%, transparent 50%); background-size: 10px 1px; z-index: 1;
}
.booking-card {
    background: var(--text-ivory); padding: 3rem; border: 1px solid var(--accent-gold);
    border-radius: 4px; box-shadow: inset 0 0 40px rgba(201,148,42,0.1); max-width: 800px; margin: 0 auto;
}
#booking-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; }
.form-group.full-width { grid-column: span 2; }
.form-group input, .form-group select, .form-group textarea {
    padding: 1rem; background: transparent; border: none; border-bottom: 1px solid var(--bg-tobacco);
    font-family: var(--font-body); font-size: 1rem; color: var(--bg-tobacco); transition: border-bottom 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-bottom: 1px solid var(--primary-crimson);
}
.submit-btn {
    grid-column: span 2; background: var(--primary-crimson); color: var(--text-ivory);
    border: 1px solid var(--accent-gold); padding: 1.2rem; font-size: 1.1rem;
    text-transform: uppercase; letter-spacing: 2px; cursor: pointer; transition: var(--transition-smooth); margin-top: 1rem;
}
.submit-btn:hover { background: var(--accent-gold); color: var(--primary-crimson); }

.footer { background: var(--bg-darker); padding: 5rem 10% 2rem; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; position: relative; }
.footer-logo { margin-bottom: 1.5rem; }
.footer-logo img { height: 70px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }
.footer h4 { color: var(--accent-gold); margin-bottom: 1.5rem; font-family: var(--font-heading); font-size: 1.4rem; letter-spacing: 1px; }
.footer p { color: rgba(250, 240, 224, 0.7); margin-bottom: 1rem; display: block; line-height: 1.8; }
.footer a { color: rgba(250, 240, 224, 0.7); text-decoration: none; margin-bottom: 1rem; display: inline-block; transition: transform 0.3s ease, color 0.3s ease; }
.footer a:hover { color: var(--accent-gold); transform: translateX(5px); }

/* Stylish minimal newsletter */
.newsletter-form { display: flex; margin-top: 2rem; border-bottom: 1px solid rgba(201, 148, 42, 0.5); padding-bottom: 0.5rem; max-width: 350px; }
.newsletter-form input { background: transparent; border: none; color: var(--text-ivory); flex: 1; font-family: var(--font-body); font-size: 0.95rem; outline: none; }
.newsletter-form input::placeholder { color: rgba(250, 240, 224, 0.4); }
.newsletter-form button { background: transparent; border: none; color: var(--accent-gold); font-family: var(--font-heading); font-size: 1.1rem; cursor: pointer; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s; }
.newsletter-form button:hover { color: var(--text-ivory); }

.social-icons { display: flex; gap: 1rem; margin-top: 1rem; margin-bottom: 3rem; }
.social-icons .icon { padding: 0.6rem; border: 1px solid rgba(201, 148, 42, 0.5); border-radius: 50%; color: var(--accent-gold); font-size: 0.8rem; display: flex; align-items:center; justify-content:center; width:40px; height:40px; text-decoration: none; transition: all 0.3s ease; }
.social-icons .icon:hover { background: var(--accent-gold); color: var(--bg-darker); transform: translateY(-4px); border-color: var(--accent-gold); }

.footer-bottom { grid-column: span 3; text-align: center; border-top: 1px solid rgba(201,148,42,0.15); padding-top: 2rem; margin-top: 2rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }

/* ═══════════════════════════════════════════════════════ */
/*  RESPONSIVE ENGINE                                     */
/* ═══════════════════════════════════════════════════════ */

/* ── Tablet (≤ 1024px) ── */
@media (max-width: 1024px) {
    .section { padding: 4rem 5%; }
    h1 { font-size: 4rem; }
    h2 { font-size: 2.6rem; }
    .hero-subheading { font-size: 1.2rem; }
    .navbar { padding: 1.5rem 2rem; width: calc(100% - 80px); }
    .masonry-grid { column-count: 2; column-gap: 1.5rem; }
    .about { gap: 2rem; }
    .footer { gap: 2rem; }
    .testimonial-card { min-width: 280px; padding: 1.5rem; }
}

/* ── Mobile (≤ 768px) ── */
@media (max-width: 768px) {
    html { overflow-x: hidden; }
    body { padding-right: 0; padding-top: 0; }
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2rem; }



    /* Completely disable Scissor thread on mobile */
    .thread-container, .scissor-wrapper { display: none !important; }

    /* ── Navbar: hamburger ── */
    .navbar {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 1rem 1.5rem;
        gap: 0;
        background: rgba(26, 15, 7, 0.95);
        justify-content: space-between;
        align-items: center;
    }
    .mobile-menu-btn { display: flex; }
    .logo img { height: 40px; margin: 0; }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        font-size: 0.95rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(201, 148, 42, 0.2);
        margin-top: 0.8rem;
        text-align: center;
    }
    .nav-links.open { display: flex; }

    /* ── Services ── */
    .services-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .service-card { padding: 1.8rem 1.2rem; }
    .service-icon { font-size: 2.2rem; margin-bottom: 1rem; }
    .service-card h3 { font-size: 1.3rem; }

    /* ── Contact ── */
    .contact-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .contact-card { padding: 1.8rem 1rem; }

    /* WhatsApp button */
    .whatsapp-float { bottom: 20px; right: 20px; width: 55px; height: 55px; }
    .whatsapp-tooltip { display: none; }

    /* ── Hero ── */
    .hero { padding-top: 130px; text-align: center; }
    .hero-content { margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
    .hero-subheading { font-size: 1.1rem; }
    .cta-button { padding: 1rem 2rem; font-size: 1rem; }





    /* ── Gallery: 2-col masonry ── */
    .masonry-grid { column-count: 2; column-gap: 1rem; }

    /* ── Testimonials ── */
    .testimonial-card { min-width: 260px; padding: 1.5rem; }
    .t-text { font-size: 0.95rem; }

    /* ── About ── */
    .about { flex-direction: column; text-align: center; gap: 2rem; }
    .about-heading { font-size: 1.8rem; }
    .gold-line { margin: 0 auto 1.5rem; }
    .value-pillars { text-align: left; }
    .vintage-image { max-width: 300px; }
    .pillar-card { font-size: 1rem; padding: 1rem; }

    /* ── Timeline ── */
    .timeline { flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
    .timeline-thread { top: 0; left: 50%; width: 2px; height: 100%; transform: translateX(-50%); background-image: linear-gradient(to bottom, var(--accent-gold) 50%, transparent 50%); }
    .timeline-node { font-size: 0.9rem; }
    .timeline-node::before { font-size: 1.2rem; }

    /* ── Booking ── */
    .how-it-works { flex-direction: column; gap: 1.5rem; }
    .step-line-dashed { display: none; }
    .booking-card { padding: 2rem 1.5rem; }
    #booking-form { grid-template-columns: 1fr; }
    .form-group.full-width { grid-column: 1; }
    .submit-btn { grid-column: 1; font-size: 1rem; }

    /* ── Footer ── */
    .footer { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 5% 2rem; text-align: center; }
    .footer-bottom { grid-column: 1; }
    .social-icons { justify-content: center; }
    .newsletter-form { margin: 1.5rem auto 0; max-width: 100%; }
    .footer a { display: block; }
}

/* ── Small Phone (≤ 480px) ── */
@media (max-width: 480px) {
    .section { padding: 2.5rem 4%; }

    /* Even tighter navbar */
    .navbar { padding: 0.7rem 1rem; }
    .logo { font-size: 1.5rem; }
    .nav-links { gap: 0.8rem; font-size: 0.82rem; }

    /* Services & Contact single column */
    .services-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    .hero { padding-top: 110px; }
    .hero-subheading { font-size: 0.95rem; margin-bottom: 2rem; }
    .cta-button { padding: 0.9rem 1.5rem; font-size: 0.9rem; letter-spacing: 1px; }


    .stat-number { font-size: 2.2rem; }
    .stat-label { font-size: 0.75rem; }

    .cards-grid { gap: 0.8rem; }
    .card-img-placeholder { height: 160px; }
    .card-label { font-size: 0.9rem; }

    .masonry-grid { column-gap: 0.6rem; }

    .testimonial-card { min-width: 220px; padding: 1.2rem; }
    .t-photo { width: 55px; height: 55px; margin-bottom: 0.8rem; }
    .t-text { font-size: 0.85rem; }
    .t-name { font-size: 1rem; }

    .vintage-image { max-width: 100%; }
    .about-heading { font-size: 1.5rem; }
    .pillar-card { font-size: 0.9rem; padding: 0.8rem; gap: 0.6rem; }

    .timeline-node { padding: 0.7rem; font-size: 0.8rem; }

    .booking-card { padding: 1.5rem 1rem; }
    .step-circle { width: 40px; height: 40px; font-size: 1.2rem; }

    .footer { padding: 2.5rem 4% 1.5rem; }
    .footer-logo { font-size: 1.8rem; }
    .footer h4 { font-size: 1.2rem; }
}

@keyframes slowPan { 0% { transform: scale(1) translate(0, 0); } 50% { transform: scale(1.05) translate(-2%, -1%); } 100% { transform: scale(1) translate(0, 0); } }
.ambient-image { animation: slowPan 25s infinite ease-in-out alternate; }
