/* ---- CSS Variables ---- */
:root {
    /* Colors */
    --clr-bg: #FDFCF8; /* Ultra warm white */
    --clr-bg-alt: #F4F3ED; /* Very soft stone */
    --clr-bg-dark: #111111; /* Almost black */
    
    --clr-text: #1C1C1C;
    --clr-text-light: #5A5A5A;
    --clr-text-inverse: #FFFFFF;
    
    --clr-accent: #A89073; /* Refined muted antique gold */
    --clr-accent-hover: #8A735A;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --sp-sm: 0.5rem;
    --sp-md: 1.5rem;
    --sp-lg: 3rem;
    --sp-xl: 4rem;
    --sp-xxl: 7rem;
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Reset & Base Styles ---- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--clr-text);
    background-color: var(--clr-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--clr-text);
    font-weight: 400; /* Lighter font weights for luxury feel */
    line-height: 1.15;
}

i, em {
    font-style: italic;
    font-weight: 300;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

.container {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center { text-align: center; }
.mt-xl { margin-top: var(--sp-xl); }

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    border-radius: 0; /* Square corners for a high-end editorial look */
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.75rem;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--clr-bg-dark);
    color: var(--clr-bg);
}

.btn-primary:hover {
    background-color: var(--clr-accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-secondary {
    background-color: transparent;
    color: var(--clr-text);
    border: 1px solid rgba(0,0,0,0.1);
}

.btn-secondary:hover {
    border-color: var(--clr-text);
    background-color: transparent;
}

.btn-outline {
    background-color: transparent;
    color: var(--clr-text);
    border-color: var(--clr-text);
}

.btn-outline:hover {
    background-color: var(--clr-text);
    color: var(--clr-bg);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--clr-text-inverse);
    border-color: rgba(255,255,255,0.4);
}

.btn-outline-light:hover {
    background-color: var(--clr-text-inverse);
    color: var(--clr-text);
    border-color: var(--clr-text-inverse);
}

/* ---- Header Nav ---- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: var(--clr-bg);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
    padding: 2rem 0;
}

.header.scrolled {
    padding: 1rem 0;
    background-color: rgba(253, 252, 248, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 80px; /* Drastically increased size to be seen properly */
    width: auto;
    object-fit: contain;
}

.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-list a {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 6px;
    color: var(--clr-text-light);
    white-space: nowrap; /* Forces Tailoring & Alterations onto 1 line */
}

.nav-list a:hover {
    color: var(--clr-text);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--clr-text);
    transition: width 0.4s ease;
}

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

.header-actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.header-actions .btn {
    height: 46px;      /* Force identical height */
    padding: 0 1.25rem; /* Slightly reduced padding to precisely fit 3 buttons nicely */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border-radius: 4px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 101;
}

.hamburger {
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--clr-text);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: var(--clr-text);
    left: 0;
    transition: var(--transition);
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* ---- Hero Section ---- */
.hero {
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.hero-eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--clr-text-light);
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-title {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    line-height: 1.05;
    margin-bottom: 2rem;
    letter-spacing: -1.5px;
}

.hero-title i {
    color: var(--clr-text);
    font-weight: 400;
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--clr-text-light);
    margin-bottom: 3.5rem;
    max-width: 90%;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--clr-text-light);
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 2rem;
    letter-spacing: 0.5px;
}

.stars {
    color: var(--clr-accent);
    letter-spacing: 2px;
    font-size: 1.1rem;
}

.hero-image-wrapper {
    position: relative;
    overflow: hidden;
}

.hero-visual {
    display: flex;
    justify-content: flex-end; /* Align right to eliminate empty space */
    align-items: center;
    width: 100%;
}

.hero-large-logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.05));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* ---- Brand Video ---- */
.brand-video-section {
    padding: 0 0 var(--sp-xxl) 0;
    margin-top: -60px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background-color: var(--clr-bg-alt);
}

.premium-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.video-fallback {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--clr-text-dark);
    font-family: var(--font-heading);
    font-size: 2rem;
    z-index: -1;
    opacity: 0.5;
}

/* ---- Shop Page Dedicated ---- */
.shop-page-wrap {
    padding: 160px 0 80px;
    background-color: var(--clr-bg);
    min-height: 100vh;
}

.hero-image-wrapper:hover .hero-img {
    transform: scale(1.05);
}

/* ---- Trust Bar ---- */
.trust-bar {
    background-color: var(--clr-bg-alt);
    padding: 3rem 0;
    border-top: 1px solid rgba(0,0,0,0.02);
    border-bottom: 1px solid rgba(0,0,0,0.02);
}

.trust-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--clr-text-light);
}

.trust-item span {
    color: var(--clr-accent);
    font-size: 1rem;
}

/* ---- Sections Common ---- */
section {
    padding: var(--sp-xxl) 0;
}

.section-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.section-header {
    margin-bottom: var(--sp-xl);
    max-width: 700px;
}

.section-header h2 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.section-header p {
    color: var(--clr-text-light);
    font-size: 1.25rem;
    line-height: 1.8;
}

/* ---- Services ---- */
.services {
    background-color: var(--clr-bg);
    padding: 110px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem; /* Increased gap */
}

.service-card {
    background-color: var(--clr-bg);
    padding: 3.5rem 2.5rem; /* More padding */
    border: 1px solid rgba(0,0,0,0.05); /* Very subtle border */
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-accent);
    transition: width 0.4s ease;
}

.service-card:hover::after {
    width: 100%;
}

.service-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.02);
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

.service-card p {
    color: var(--clr-text-light);
    font-size: 1rem;
    line-height: 1.8;
}

/* ---- Why Us ---- */
.why-us {
    background-color: var(--clr-bg-alt);
    padding: 160px 0;
}

.why-us-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.why-us-image {
    position: relative;
}

.why-us-image img {
    width: 100%;
}

.why-us-content h2 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 3rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    margin-bottom: 3rem;
    position: relative;
    padding-left: 0;
}

.benefit-list strong {
    display: block;
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--clr-text);
}

.benefit-list p {
    color: var(--clr-text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    border-left: 1px solid rgba(0,0,0,0.1);
    padding-left: 1.5rem;
    margin-top: 1rem;
}

/* ---- About ---- */
.about {
    background-color: var(--clr-bg);
    padding: 200px 0;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.lead-text {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--clr-text);
    margin-bottom: 3rem;
    line-height: 1.4;
    letter-spacing: -0.5px;
}

.about-content p:not(.lead-text) {
    color: var(--clr-text-light);
    font-size: 1.15rem;
    line-height: 1.9;
    max-width: 700px;
    margin: 0 auto;
}

/* ---- Reviews ---- */
.reviews {
    background-color: var(--clr-bg-alt);
    padding: 160px 0;
}

.rating-summary {
    color: var(--clr-text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-top: 1rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.review-card {
    background-color: transparent;
    padding: 0;
}

.review-card p {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    margin: 2rem 0;
    line-height: 1.6;
    color: var(--clr-text);
}

.review-author {
    font-style: normal !important;
    font-family: var(--font-body) !important;
    font-size: 0.8rem !important;
    font-weight: 500;
    color: var(--clr-text-light) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-author::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background-color: rgba(0,0,0,0.2);
}

/* ---- Process Section ---- */
.process {
    background-color: var(--clr-bg);
    padding: 160px 0;
}

.process h2 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 6rem;
    letter-spacing: -1px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    position: relative;
    text-align: left;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0,0,0,0.06);
    z-index: 0;
}

.step {
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--clr-bg);
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--clr-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.9rem;
    margin: 0 0 2.5rem;
    border-radius: 50%;
}

.step h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.step p {
    color: var(--clr-text-light);
    font-size: 1rem;
    line-height: 1.7;
}

/* ---- CTA Section ---- */
.cta-section {
    background-color: var(--clr-bg-dark);
    color: var(--clr-text-inverse);
    padding: 180px 0;
}

.cta-section h2 {
    color: var(--clr-text-inverse);
    font-size: clamp(3.5rem, 6vw, 5rem);
    margin-bottom: 2rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

.cta-section h2 i {
    color: var(--clr-accent);
    font-weight: 300;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 4rem;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.7);
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- Contact ---- */
.contact {
    background-color: var(--clr-bg);
    padding: 160px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.contact-card {
    background-color: var(--clr-bg);
    padding: 0;
}

.contact-card h2 {
    font-size: 3.5rem;
    margin-bottom: 3.5rem;
    letter-spacing: -1px;
}

.info-group {
    margin-bottom: 3rem;
}

.info-group h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--clr-text-light);
    margin-bottom: 0.75rem;
}

.info-group p {
    font-size: 1.25rem;
    line-height: 1.7;
}

.accent-text {
    color: var(--clr-accent);
    font-weight: 400;
}

.phone-link {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--clr-text);
    font-family: var(--font-heading);
}

.phone-link:hover {
    color: var(--clr-accent);
}

.social-link {
    display: inline-block;
    font-weight: 400;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    padding-bottom: 4px;
    font-size: 1.1rem;
}

.social-link:hover {
    border-color: var(--clr-text);
}

.map-container {
    height: 100%;
    min-height: 500px;
    position: relative;
    background-color: var(--clr-bg-alt);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: grayscale(100%) contrast(90%);
}

/* ---- Footer ---- */
.footer {
    background-color: var(--clr-bg-dark);
    color: var(--clr-text-inverse);
    padding-top: 6rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {
    color: var(--clr-text-inverse);
    display: block;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-links a:hover {
    color: var(--clr-text-inverse);
}

.footer-bottom {
    padding: 2rem 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
}

/* Floating CTA (Mobile) */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--clr-bg-dark);
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    z-index: 99;
    transition: var(--transition);
}

.floating-cta:hover {
    transform: scale(1.05);
    background-color: var(--clr-accent);
}

/* ---- Media Queries ---- */
@media (max-width: 1024px) {
    .hero-container {
        gap: 3rem;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem 3rem;
    }
    
    .process-steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    section {
        padding: 100px 0;
    }
    
    .hero {
        padding: 160px 0 80px;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .hero-image-wrapper {
        order: -1;
        margin-bottom: 2rem;
    }

    .why-us-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .why-us-image {
        order: -1;
    }

    .header-inner {
        display: flex;
        justify-content: space-between;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--clr-bg);
        z-index: 100;
        padding: 8rem 3rem;
        transition: var(--transition);
        box-shadow: 20px 0 50px rgba(0,0,0,0.05);
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .nav-list a {
        font-size: 1.1rem;
        color: var(--clr-text);
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .header-actions .btn {
        display: none;
    }
    
    .trust-bar-inner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-inner {
        flex-direction: column;
        gap: 3rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }

    .floating-cta {
        display: flex;
    }
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Modal System ---- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 2rem;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background: var(--clr-bg);
    padding: 3.5rem;
    max-width: 600px;
    width: 100%;
    position: relative;
    border-radius: 4px;
    box-shadow: 0 40px 60px rgba(0,0,0,0.1);
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-box {
    transform: translateY(0);
}

.modal-box-large {
    max-width: 700px;
}

.modal-box-product {
    max-width: 900px;
    padding: 2rem;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    color: var(--clr-text-light);
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--clr-text);
}

.modal-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
    font-family: var(--font-heading);
}

.modal-price {
    font-size: 1.35rem;
    color: var(--clr-text);
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
}

.lead-text-small {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--clr-accent);
    margin-bottom: 2rem;
}

.modal-section {
    margin-bottom: 1.5rem;
}

.modal-section h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-text-light);
    margin-bottom: 0.5rem;
}

.modal-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--clr-text);
}

.modal-actions {
    margin-top: 3rem;
}

.w-100 {
    width: 100%;
}

/* Forms */
.booking-form .form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.booking-form label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--clr-text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(0,0,0,0.1);
    background: var(--clr-bg-alt);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    border-radius: 2px;
}

.booking-form input:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--clr-text);
    background: var(--clr-bg);
}

/* Product Modal Grid */
.product-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.product-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
}

.product-modal-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quantity-selector label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--clr-text-light);
    margin-bottom: 0.5rem;
}

.qty-controls {
    display: flex;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.1);
    width: max-content;
}

.qty-btn {
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--clr-text);
}

.qty-controls input {
    width: 50px;
    text-align: center;
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    pointer-events: none;
    background: transparent;
}

@media (max-width: 768px) {
    .product-modal-grid {
        grid-template-columns: 1fr;
    }
    .product-modal-image img {
        aspect-ratio: 1/1;
    }
    .modal-box {
        padding: 2rem;
    }
}

/* ---- Shop Editorial Grid ---- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.product-card {
    background: var(--clr-bg);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.product-img {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-details {
    padding: 1.5rem;
    text-align: center;
    background: var(--clr-bg);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 1024px) {
    .product-card:hover .product-details {
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-details {
        position: relative;
        transform: translateY(0);
        padding: 1rem;
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-name {
    font-size: 1rem;
    font-family: var(--font-heading);
    margin-bottom: 0.25rem;
}

.product-price {
    font-size: 0.85rem;
    color: var(--clr-text-light);
}

.quick-add {
    display: none; /* Hidden, full card implies click */
}

/* ---- TikTok Style Gallery ---- */
.style-gallery {
    padding: var(--sp-xxl) 0;
    background-color: var(--clr-bg);
}

.video-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.video-card {
    flex: 0 0 calc(25% - 1.5rem);
    max-width: 320px;
    min-width: 240px;
    cursor: pointer;
    position: relative;
    border-radius: 8px; /* High end portrait layout */
    overflow: hidden;
    background: #000;
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 9/16; /* Standard vertical video format */
    overflow: hidden;
}

.video-thumbnail img,
.video-thumbnail video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity 0.4s ease, transform 0.6s ease;
}

.video-card:hover .video-thumbnail img,
.video-card:hover .video-thumbnail video {
    opacity: 0.6;
    transform: scale(1.05);
}

.play-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
    transition: transform 0.3s ease;
}

.video-card:hover .play-icon-overlay {
    transform: translate(-50%, -50%) scale(1.1);
}

/* ---- Redesigned Collections Grid ---- */
.collections-square-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

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

@media (max-width: 600px) {
    .collections-square-grid {
        grid-template-columns: 1fr;
    }
}

.collection-card {
    display: flex;
    flex-direction: column;
    background: var(--clr-bg);
    border: 1px solid rgba(0,0,0,0.05);
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.collection-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.collection-img-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--clr-bg-alt);
}

.collection-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.collection-card:hover .collection-img-wrapper img {
    transform: scale(1.05);
}

.coming-soon-label {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--clr-bg-dark);
    color: var(--clr-text-inverse);
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.5rem 1rem;
    z-index: 2;
    border-radius: 2px;
}

.collection-details {
    padding: 1.5rem;
    text-align: center;
}

.collection-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-family: var(--font-heading);
    color: var(--clr-text);
}

.collection-details p {
    font-size: 0.85rem;
    color: var(--clr-text-light);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}
@media (max-width: 900px) {
    .video-card { flex: 0 0 calc(33.333% - 1rem); }
}

@media (max-width: 600px) {
    .video-card { flex: 0 0 calc(50% - 1rem); }
}

/* Modal Video Styling */
.modal-box-video {
    background: transparent;
    box-shadow: none;
    padding: 0;
    max-width: 450px; /* Forces portrait proportions */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.modal-box-video .modal-close {
    top: -40px;
    right: 0;
    color: #fff;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
}

.modal-box-video video {
    width: 100%;
    border-radius: 12px;
    max-height: 85vh;
}
