:root {
    /* Standardized Typography (Max 4 Sizes) */
    --level-1: 64px;
    /* Hero Titles */
    --level-2: 36px;
    /* Section Headings */
    --level-3: 20px;
    /* Subheadings / Cards / Buttons */
    --level-4: 16px;
    /* Body / Meta */

    /* Mapping Legacy to New Standards */
    --fs-hero: var(--level-1);
    --fs-xxl: var(--level-2);
    --fs-xl: var(--level-2);
    --fs-lg: var(--level-3);
    --fs-sm: var(--level-3);
    --fs-base: var(--level-4);
    --fs-xs: var(--level-4);
    --fs-tiny: var(--level-4);

    /* Config Colors (Fallback) */
    --heroOverlay: rgba(0, 0, 0, 0.45);
    --container: 9999px;
    --headerH: 82px;
}

body {
    overflow-x: hidden;
    /* Prevent horizontal scroll */
    width: 100%;
}

/* Global Reset */
img,
iframe {
    max-width: 100%;
    height: auto;
    border: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.reveal {
    opacity: 0;
    will-change: opacity, transform;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: none;
}

.fade-up {
    transform: translate3d(0, 30px, 0);
}

.scale-in {
    transform: scale(0.95);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Apply Standard Sizes Globally */
h1 {
    font-size: var(--level-1) !important;
}

h2 {
    font-size: var(--level-2) !important;
}

h3 {
    font-size: var(--level-3) !important;
}

h4,
h5,
h6 {
    font-size: var(--level-3) !important;
}

p,
a,
li,
span,
button,
input {
    font-size: var(--level-4);
}

/* =========
   Layout helpers
========= */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0;
}

.page {
    min-height: 60vh
}

/* =========
   Header
========= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    height: var(--headerH);
    background: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    height: auto;
    /* Allow padding to define height */
}

/* Mobile Header Fixes */
@media (max-width: 768px) {
    .site-header.scrolled {
        height: auto;
    }

    .site-header .header-inner {
        padding: 10px 5vw !important;
        /* Reduce padding significantly */
        gap: 10px;
    }

    .brand img {
        width: 140px !important;
        /* Smaller logo on mobile to prevent overflow */
        max-width: 50vw;
    }

    .brand-text {
        display: none !important;
        /* Force hide text on mobile */
    }
}

.site-header.scrolled .header-inner {
    padding-top: 10px;
    padding-bottom: 10px;
}

.header-inner {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 18px 10vw 18px 10vw;
    /* Added 15vw left padding */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff
}

/* Brand Size (25% increase from 180px) */
.brand img {
    width: 225px;
    /* 180px * 1.25 */
    height: auto;
    object-fit: contain
}

/* Reduced Stats Text */
.stat strong {
    display: block;
    font-size: 2.5rem;
    /* Reduced from default level-1/2 if applicable */
    font-weight: 700;
    color: #A0522D;
    line-height: 1;
    margin-bottom: 5px;
}

.stat span {
    display: block;
    font-size: var(--level-4);
    /* Standard body size */
    text-transform: uppercase;
    color: #555;
    letter-spacing: 1px;
}

/* Contact Hero Background */
.contact-hero {
    height: 70vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    /* Ensure background image is loaded via inline style in PHP, but fallback here */
    background-color: #1a1a1a;
}

.brand-text {
    display: none;
    /* Hidden as requested */
}

.brand-text strong {
    font-size: var(--fs-lg);
    letter-spacing: .4px
}

.brand-text small {
    font-size: var(--fs-xs);
    opacity: .95
}

/* Nav desktop */
.nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: #fff;
    font-size: var(--fs-xs);
    letter-spacing: 1px;
}

.nav a {
    opacity: .9;
    position: relative;
    padding: 6px 0
}

.nav a:hover {
    opacity: 1
}

.nav a.active {
    opacity: 1
}

.nav a.active:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background: #fff;
    opacity: .9;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .35);
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px
}

/* =========
   Hero
========= */
.hero {
    height: 100vh;
    min-height: 550px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--heroOverlay)
}

.hero-content {
    position: relative;
    color: #fff;
    padding: 0 0 52px 10vw;
    /* Added 15vw left padding */
    width: 100%;
}

.hero-content h1 {
    margin: 0 0 10px 0;
    font-size: calc(var(--fs-xxl) * 1.0);
    font-weight: 400;
    letter-spacing: .2px;
}

.hero-content p {
    margin: 0;
    font-size: var(--fs-xs);
    opacity: .9
}

.hero-down {
    position: absolute;
    /* Changed to absolute for centering */
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .45);
    background: transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    /* Removed margin-top */
}

.hero-down .chev {
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    margin-top: -4px;
}

/* =========
   Brands slider
========= */
.brands {
    background: #fff;
    padding: 0;
    /* Reduced padding */
    border-bottom: 1px solid var(--line);
    width: 100%;
    /* removed min-height: 100vh */
    display: flex;
    align-items: center;
}

.brands-inner {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
    max-width: 100%;
    width: 100%;
    height: 100%;
    position: relative;
    /* Context for absolute arrows */
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    color: #fff;
    cursor: pointer;
    font-size: var(--fs-xl);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow.left {
    left: 20px;
}

.slider-arrow.right {
    right: 20px;
}

.brands-viewport {
    overflow: hidden;
    flex: 1;
    height: 100%;
}

.brands-track {
    display: flex;
    gap: 0;
    transition: transform .4s ease;
    will-change: transform;
    height: 100%;
}

.brand-card {
    min-width: calc(100% / 3);
    width: 100%;
    aspect-ratio: 1.2 / 1;
    /* Explicit ratio */
    height: auto;
    min-height: 0;
    /* Override any inline min-height */
    border-radius: 0;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.brand-dim {
    position: absolute;
    inset: 0;
    background: var(--cardOverlay)
}

.brand-card-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    gap: 20px;
    text-align: left;
    /* Reset text align */
}

.brand-badge {
    text-transform: uppercase;
    font-size: var(--fs-lg);
    letter-spacing: 1px;
    font-weight: 700;
    color: #fff;
    flex: 1;
    text-align: right;
    display: block;
    /* Ensure block behavior */
    margin: 0;
    /* Reset margins */
}

.brand-card-content p {
    font-size: var(--fs-xs);
    line-height: 1.5;
    color: rgba(255, 255, 255, .9);
    flex: 1;
    text-align: left;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    padding-left: 20px;
    margin: 0;
    /* Reset margins */
}

/* =========
   Stats
========= */
.stats {
    padding: 18px 0;
    background: #fff;
    width: 100%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    text-align: center;
    padding: 0 24px;
    max-width: 100%;
}

@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
        /* Tighter gap */
        padding: 0 10px;
        /* Reduced padding */
    }

    .stat strong {
        font-size: 1.0rem !important;
        /* Significantly smaller */
        word-break: break-all;
        /* Prevent overflow */
    }

    .stat span {
        font-size: 0.8rem !important;
    }
}

.stat strong {
    display: block;
    font-size: var(--fs-xl);
    font-weight: 400
}

.stat span {
    display: block;
    font-size: var(--fs-sm);
    color: var(--muted);
    margin-top: 6px
}

/* =========
   CTA strip
========= */
.cta-strip {
    padding: 10px 0 26px;
    background: #fff;
    width: 100%;
}

.cta-inner {
    display: flex;
    justify-content: center;
    padding: 0 24px;
}

.cta-form {
    display: flex;
    width: min(640px, 100%);
}

.cta-form input {
    flex: 1;
    border: 1px solid var(--line);
    padding: 12px 14px;
    outline: none;
    text-transform: uppercase;
    font-size: var(--fs-xs);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border: 1px solid transparent;
    cursor: pointer;
    text-transform: uppercase;
    font-size: var(--fs-xs);
    letter-spacing: .6px;
}

.btn-dark {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff
}

.btn-outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary)
}

/* =========
   Recent blogs
========= */
/* =========
   Recent blogs
   (Magazine Layout)
========= */
.recent-blogs {
    padding: 20px 0;
    background: #fff;
    width: 100%;
}

.blog-layout {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Left align */
    max-width: 100% !important;
    margin: 0;
    text-align: left;
    padding: 0 5% 0 10vw !important;
    /* 10% left padding for section */
}

/* Header Group */
.blog-header-group {
    width: 100%;
    margin-bottom: 40px;
    padding-left: 2vw;
    /* Adds up to ~12% total relative to viewport (10vw + 2vw) */
}

.blog-heading {
    margin: 0;
    font-size: var(--fs-lg);
    letter-spacing: 2px;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
}

.blog-accent-line {
    width: 60px;
    height: 3px;
    background: #FF4D30;
    /* The red emphasis color */
    margin: 12px 0 24px 0;
}

.blog-intro {
    font-size: var(--fs-xs);
    line-height: 1.6;
    color: #666;
    max-width: 800px;
}

/* Blog Entry */
.blog-entry {
    width: 100%;
    margin-bottom: 50px;
}

.blog-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    font-size: var(--fs-xs);
    color: #999;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Custom Icons mimicking the image */
.icon-user::before {
    content: "👤";
    /* Simple unicode fallback for now */
    font-size: var(--fs-xs);
    color: #999;
}

.icon-cal::before {
    content: "📅";
    font-size: var(--fs-xs);
    color: #999;
}

/* Body with vertical divider */
.blog-body {
    border-left: 3px solid #FF4D30;
    padding-left: 24px;
}

.blog-body h3 {
    margin: 0 0 16px 0;
    font-size: var(--fs-sm);
    line-height: 1.4;
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
    letter-spacing: 0.5px;
}

.blog-body p {
    margin: 0;
    font-size: var(--fs-xs);
    line-height: 1.7;
    color: #444;
}

/* Action Button */
.blog-actions {
    display: flex;
    justify-content: center;
    width: 100%;
}

.blog-actions .btn-outline {
    border: 1px solid #000;
    color: #000;
    padding: 14px 28px;
    font-size: var(--fs-xs);
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s;
}

.blog-actions .btn-outline:hover {
    background: #000;
    color: #fff;
}

.blog-small {
    margin: 0 0 10px 0;
    font-size: 11px;
    color: var(--muted);
    line-height: 1.5
}

.blog-meta {
    display: flex;
    gap: 14px;
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 8px
}

.blog-text h3 {
    margin: 10px 0;
    font-size: 14px
}

.blog-desc {
    margin: 0 0 14px 0;
    font-size: 11px;
    color: var(--muted);
    line-height: 1.55
}

/* =========
   Tiles
========= */
/* =========
   Tiles (Testimonial Section)
========= */
.tiles {
    padding: 0;
    background: #fff;
    width: 100%;
    border-bottom: 1px solid var(--line);
}

.tiles-grid {
    display: flex;
    /* Flex is easier for full bleed 33% */
    width: 100%;
    margin: 0;
}

.tile {
    width: 33.333%;
    min-width: 33.333%;
    aspect-ratio: 1.2 / 1;
    /* Match Brand Cards */
    height: auto;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
}

.tile-dim {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
}

.tile-dim-dark {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    /* Darker overlay for center card */
}

/* Side Tile Logos */
.tile-logo {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
}

.tile-logo img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
    /* Ensure white logo if original is dark */
}

/* Central Testimonial Content */
.tile-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    text-align: center;
    color: #fff;
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testi-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    text-align: left;
}

.testi-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.testi-avatar img {
    width: 32px;
    height: auto;
    filter: brightness(0) invert(1);
}

.testi-info {
    display: flex;
    flex-direction: column;
}

.testi-info strong {
    font-size: var(--fs-xs);
    font-weight: 600;
    display: block;
}

.testi-info span {
    font-size: var(--fs-xs);
    opacity: 0.8;
    margin-bottom: 4px;
    display: block;
}

.testi-stars {
    color: #FFB400;
    /* Star color */
    font-size: var(--fs-xs);
    letter-spacing: 2px;
}

.testi-quote {
    font-size: var(--fs-xs);
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
}

.testi-line {
    width: 80px;
    height: 1px;
    background: #FF4D30;
    margin-bottom: 30px;
}

.btn-outline-white {
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
    padding: 12px 24px;
    font-size: var(--fs-xs);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-outline-white:hover {
    background: #fff;
    color: #000;
}

/* Mobile Stack */
@media (max-width: 768px) {
    .tiles-grid {
        flex-direction: column;
    }

    .tile {
        width: 100%;
        min-width: 100%;
        aspect-ratio: 1.2;
    }
}

.t-stars {
    font-size: 12px;
    margin: 6px 0
}

.testimonial p {
    margin: 0 0 12px 0;
    font-size: 11px;
    line-height: 1.5;
    opacity: .95
}

/* =========
   Video block
========= */
/* =========
   Video block
========= */
.video-block {
    padding: 22px 0;
    background: #fff;
    border-top: 1px solid var(--line);
    width: 100%;
    /* Standard height to match brands section roughly (approx 28vw) */
    min-height: 28vw;
    display: flex;
    align-items: center;
}

.video-grid {
    display: grid;
    grid-template-columns: 1.6fr 0.8fr;
    /* Favor video width */
    gap: 40px;
    align-items: center;
    padding: 0 5%;
}

@media (max-width: 900px) {
    .video-grid {
        grid-template-columns: 1fr;
        padding: 40px 5%;
        gap: 30px;
        text-align: center;
    }
}

.video-wrapper {
    position: relative;
    border-radius: 4px;
    /* Slight radius or sharp as per image */
    overflow: hidden;
    /* Box shadow/Border to match "framed" look */
    box-shadow: 0 0 0 8px #000;
    background: #000;
    line-height: 0;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

/* Play Overlay */
.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.play-overlay:hover {
    background: rgba(0, 0, 0, 0.1);
}

.play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Red Play Button Triangle */
.play-btn {
    width: 0;
    height: 0;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 45px solid #FF4D30;
    /* Red Color */
    transform: translateX(4px);
    /* Optical center */
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

/* Right Content */
.video-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cta-icon img {
    width: 120px;
    /* Increased from 80px */
    height: auto;
    margin-bottom: 24px;
}

.video-cta h2 {
    font-size: calc(var(--fs-xxl) * 1.0);
    /* Increased from 32px */
    line-height: 1.1;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    margin: 0;
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .video-cta {
        order: -1;
        /* CTA on top? Or keep bottom? */
    }
}

/* Showroom specific CTA (Horizontal) */
/* Showroom specific CTA (Horizontal 50/50) */
.showroom-cta {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    /* Safety for small screens */
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 0;
    /* Gap handled by 50% width */
}

/* Icon Container (Right Column) */
.showroom-cta .cta-icon {
    order: 2;
    flex: 0 0 50%;
    display: flex;
    justify-content: center;
    /* Horizontally centered in its col */
    align-items: center;
    margin: 0;
}

/* Text (Left Column) */
.showroom-cta h2 {
    order: 1;
    flex: 0 0 50%;
    text-align: center !important;
    /* Horizontally centered in its col */
    font-size: 3.5rem !important;
    line-height: 1;
    margin: 0;
}

@media (max-width: 768px) {
    .showroom-cta {
        flex-direction: column !important;
        gap: 30px;
        text-align: center;
    }

    .showroom-cta .cta-icon {
        order: 0;
        margin-bottom: 20px;
    }

    .showroom-cta h2 {
        order: 1;
    }
}

/* =========
   About strip
========= */
/* =========
   About strip
========= */
.about-strip {
    padding: 0;
    background: #fff;
    border-top: 1px solid var(--line);
    width: 100%;
    /* Standard height to match brands/video sections roughly */
    min-height: 28vw;
    display: flex;
    align-items: center;
}

.about-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 20px 5%;
    gap: 20px;
}

.about-col-left,
.about-col-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
}

.about-col-center {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Left: Book Profile */
.profile-book-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.profile-book-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transform: rotate(-10deg) translateX(-20px);
    /* Tweak to look "tossed" like image */
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.profile-btn-container {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 2;
}

.profile-btn {
    background: #444;
    color: #fff;
    padding: 8px 24px;
    border-radius: 20px;
    font-family: 'Dancing Script', cursive, serif;
    /* Or keep secondary font italic */
    font-style: italic;
    font-size: var(--fs-xs);
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    display: inline-block;
}

/* Center: Socials */
.about-col-center h3 {
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    border-bottom: 1px solid #333;
    padding-bottom: 4px;
    display: inline-block;
}

.social-row {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: var(--fs-sm);
    transition: transform 0.2s;
}

.social-icon:hover {
    transform: scale(1.1);
}

.icon-fb {
    background: #FF4D30;
}

/* Using the brand red/orange aesthetic from image */
.icon-ig {
    background: #FF4D30;
}

.icon-pin {
    background: #FF4D30;
}

/* Right: Wood Slice */
.wood-wrapper {
    width: 100%;
    max-width: 350px;
}

.wood-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
}

/* Responsive */
@media (max-width: 900px) {
    .about-grid {
        flex-direction: column;
        padding: 40px 20px;
    }

    .profile-book-wrapper img {
        transform: rotate(0);
    }

    .about-strip {
        height: auto;
        min-height: 0;
    }
}



/* =========
   Footer
========= */
.site-footer {
    background: var(--secondary);
    color: #fff;
    margin-top: 18px
}

.footer-inner {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 26px 12px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 16px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px
}

/* =========
   Footer
========= */
.site-footer {
    background: #252424;
    /* Dark grey from design */
    color: #fff;
    margin-top: 0;
    width: 100%;
}

.footer-inner {
    width: 100%;
    /* 10vw Padding as requested */
    padding: 80px 10vw;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

/* Footer Brand */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-brand img {
    width: 240px;
    /* Increased from 60px (~4-5x larger) */
    height: auto;
    object-fit: contain;
}

.brand-text {
    font-size: var(--fs-lg);
    line-height: 1.3;
    color: #ccc;
    font-weight: 300;
}

.footer-text {
    font-size: var(--fs-base);
    opacity: .7;
    line-height: 1.6;
    margin: 0;
    max-width: 400px;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--fontPrimary);
    font-size: var(--fs-base);
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: var(--fs-base);
    opacity: .8;
    line-height: 1.5;
}

.footer-list li {
    display: block;
}

.footer-list span {
    opacity: .6;
    margin-right: 6px;
}

/* Footer Actions (Directions + Ar) */
.footer-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
}

/* Bottom Bar */
.footer-bottom {
    background: #fff;
    color: #888;
    padding: 30px 10vw;
    width: 100%;
    border-top: none;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: calc(var(--fs-xs) * 1.0);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-social {
    display: flex;
    gap: 30px;
    /* More spacing for larger icons */
}

.footer-social a {
    color: #555;
    font-size: var(--fs-icon);
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #000;
}

.lang-bubble {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    cursor: pointer;
    text-transform: lowercase;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px 20px;
        padding: 60px 5vw;
    }
}

@media (max-width: 600px) {
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-list {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    .footer-bottom {
        padding: 30px 20px;
    }
}

/* WhatsApp floating */
.wa-float {
    position: fixed;
    right: 18px;
    top: 55%;
    transform: translateY(-50%);
    width: var(--waSize);
    height: var(--waSize);
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    z-index: 60;
}

.wa-float img {
    width: 34px;
    height: 34px
}

/* Inner page hero */
.simple-hero {
    margin-top: var(--headerH);
    padding: 26px 0;
    border-bottom: 1px solid var(--line);
    background: #fafafa;
}

.simple-hero h1 {
    margin: 0;
    font-size: var(--fs-xl)
}

.page-body {
    padding: 18px 0
}

/* Forms */
.form {
    max-width: 720px;
}

.field {
    display: grid;
    gap: 6px;
    margin-bottom: 12px
}

.field label {
    font-size: var(--fs-xs);
    color: var(--muted)
}

.field input,
.field textarea {
    border: 1px solid var(--line);
    padding: 12px 12px;
    border-radius: 10px;
    outline: none;
}

.notice {
    border: 1px solid var(--line);
    background: #fafafa;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 12px;
    font-size: var(--fs-xs);
}

/* =========
   Responsive
========= */
@media (max-width: 980px) {
    .hero-content h1 {
        font-size: calc(var(--fs-xxl) * 1.0)
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .tiles-grid {
        grid-template-columns: 1fr
    }

    .tile {
        height: 190px
    }

    .video-grid {
        grid-template-columns: 1fr
    }

    .about-inner {
        grid-template-columns: 1fr;
        text-align: center
    }

    .about-right {
        justify-content: center
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 780px) {
    .site-header {
        background: rgba(0, 0, 0, .25);
        backdrop-filter: blur(6px)
    }

    .nav-toggle {
        display: inline-flex
    }

    .nav {
        position: fixed;
        top: calc(var(--headerH) - 0px);
        left: 12px;
        right: 12px;
        background: rgba(25, 25, 25, .95);
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 14px;
        padding: 12px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav.open {
        display: flex
    }

    .nav a {
        width: 100%;
        padding: 10px 10px;
        border-radius: 10px
    }

    .nav a.active:after {
        display: none
    }

    .brand-card {
        min-width: 92%;
    }

    .slider-arrow {
        display: none
    }

    .footer-inner {
        grid-template-columns: 1fr
    }

    .wa-float {
        right: 12px
    }

    .container,
    .header-inner,
    .footer-inner,
    .footer-bottom,
    .hero-content {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* =========
   Contact Page
   (Design Match)
========= */
.contact-hero {
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    margin-bottom: 0;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    /* As per dark hero in image */
}

.contact-hero-content {
    position: relative;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 10vw 60px 10vw;
    color: #fff;
}

.contact-hero-content h1 {
    font-size: var(--fs-hero);
    /* 50px */
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.5px;
}

.contact-scroll-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 24px;
    opacity: 0.8;
}

/* Split Section */
.contact-split-section {
    padding: var(--section-spacing-px) 0;
    width: 100%;
    background: #fff;
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 50/50 split */
    gap: 80px;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 10vw;
    align-items: flex-start;
}

/* Left: Info */
.contact-info h3 {
    font-size: var(--fs-xl);
    font-weight: 500;
    margin: 0 0 10px 0;
    color: #333;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
    padding-bottom: 4px;
    margin-bottom: 30px;
}

.contact-info p {
    font-size: var(--fs-base);
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
    max-width: 90%;
}

.contact-info h4 {
    font-size: var(--fs-lg);
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 24px;
    font-weight: 400;
    color: #333;
    display: inline-block;
}

.contact-details {
    margin-bottom: 30px;
    font-size: var(--fs-sm);
    line-height: 1.8;
    color: #333;
}

.contact-details strong {
    font-weight: 600;
    text-transform: uppercase;
    font-size: var(--fs-xs);
    /* slightly smaller label */
    display: block;
    margin-top: 10px;
    color: #000;
}

.contact-social-row {
    display: flex;
    gap: 15px;
}

.contact-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: opacity 0.3s;
}

.contact-social-icon:hover {
    opacity: 0.8;
}

.cs-fb {
    background: #3b5998;
}

.cs-ig {
    background: #d62976;
}

.cs-tk {
    background: #000;
}

.cs-yt {
    background: #FF0000;
}

.cs-wa {
    background: #25D366;
}


/* Right: Form */
.contact-form-wrapper h3 {
    font-size: var(--fs-xl);
    font-weight: 500;
    color: #333;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
    padding-bottom: 4px;
    margin: 0 0 40px 0;
}

.contact-field-group {
    margin-bottom: 20px;
}

.contact-field-group label {
    display: block;
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #333;
}

.contact-field-group input,
.contact-field-group textarea {
    width: 100%;
    border: 1px solid #ccc;
    padding: 12px;
    font-size: var(--fs-base);
    border-radius: 0;
    outline: none;
    transition: border 0.3s;
}

.contact-field-group input:focus,
.contact-field-group textarea:focus {
    border-color: #333;
}

/* Showroom Banner */
.showroom-banner {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showroom-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.showroom-content {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 2;
    padding: 0 20px;
}

.showroom-content h2 {
    font-size: 42px;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.showroom-content p {
    font-size: var(--fs-lg);
    margin: 0 0 40px 0;
    opacity: 0.9;
    font-weight: 300;
}

.btn-orange {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-orange:hover {
    background: #e0432b;
}

/* Map Section */
.contact-map {
    width: 100%;
    height: auto;
    line-height: 0;
    background: #eee;
}

.contact-map img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Stacking */
@media (max-width: 900px) {
    .contact-split {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 5vw;
    }

    .contact-hero {
        height: 40vh;
    }


    .contact-hero-content h1 {
        font-size: 40px;
    }
}

/* =========
   Awareness Page
========= */
.awareness-hero {
    height: 70vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.awareness-hero-content {
    position: relative;
    color: #fff;
    padding: 0 0 80px 10vw;
    width: 100%;
}

.awareness-hero-content h1 {
    font-size: 5rem;
    font-weight: 300;
    margin: 0;
    letter-spacing: 1px;
}

/* ZigZag Sections */
.zigzag-section {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.zigzag-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 0;
}

.zigzag-row.reverse {
    flex-direction: row-reverse;
}

.zigzag-text {
    flex: 1;
    padding: 0 20px;
}

.zigzag-image {
    flex: 1;
    position: relative;
}

.zigzag-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.zigzag-text h2 {
    font-size: 2rem;
    font-weight: 400;
    margin: 0 0 30px 0;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    color: #333;
}

.zigzag-text h2:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #A0522D;
    /* Brownish accent color from image */
}

.zigzag-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    max-width: 500px;
}

.zigzag-link {
    display: inline-block;
    margin-top: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Discovery Banner */
.discovery-banner {
    padding: 40px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    background: #fafafa;
}

.discovery-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 10vw;
}

.discovery-text {
    font-size: 1.1rem;
    color: #555;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.discovery-logo {
    background: #888;
    color: #fff;
    padding: 10px 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

/* Expert Grid */
.expert-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.expert-section h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: #333;
}

.expert-btn {
    display: inline-block;
    border: 1px solid #333;
    padding: 12px 30px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 50px;
    transition: all 0.3s;
}

.expert-btn:hover {
    background: #333;
    color: #fff;
}

.expert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    padding: 0 5vw;
}

.expert-item {
    aspect-ratio: 1;
    overflow: hidden;
    background: #eee;
}

.expert-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.expert-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {

    .zigzag-row,
    .zigzag-row.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .zigzag-text {
        padding: 0;
        text-align: left;
    }

    .discovery-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .awareness-hero-content h1 {
        font-size: 3rem;
    }
}

/* Expert Slider */
.expert-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
    overflow: hidden;
}

.expert-section h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: #333;
}

.expert-btn {
    display: inline-block;
    border: 1px solid #333;
    padding: 12px 30px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 50px;
    transition: all 0.3s;
}

.expert-btn:hover {
    background: #333;
    color: #fff;
}

.expert-slider-viewport {
    width: 100%;
    overflow: hidden;
    cursor: grab;
    position: relative;
    touch-action: pan-y;
}

.expert-slider-viewport:active {
    cursor: grabbing;
}

.expert-slider-track {
    display: flex;
    width: max-content;
    gap: 0;
    will-change: transform;
}

.expert-slide {
    width: 200px;
    height: 160px;
    flex-shrink: 0;
    background: #eee;
    border-right: 2px solid #fff;
    box-sizing: border-box;
}

.expert-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    display: block;
}

@media (max-width: 768px) {
    .expert-slide {
        width: 150px;
        height: 120px;
    }
}

/* =========
   Showroom Page
========= */
.showroom-hero {
    height: 70vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.showroom-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    /* Slight overlay for text readability */
}

/* Reusing .awareness-hero-content for consistency or creating new if needed.
   Let's ensure .showroom-hero-content matches the simple "Our Showroom" bottom left style. */
.showroom-hero-content {
    position: relative;
    color: #fff;
    padding: 0 0 60px 10vw;
    width: 100%;
    z-index: 1;
}

.showroom-hero-content h1 {
    font-size: 4rem;
    font-weight: 300;
    margin: 0;
    letter-spacing: 1px;
}

/* Showroom Intro */
.showroom-intro {
    padding: 80px 0;
    background: #fff;
}

.showroom-intro-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.showroom-intro-text {
    flex: 1;
    padding-left: 10vw;
}

.showroom-intro-text h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin: 0 0 30px 0;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
    border-bottom: 2px solid #A0522D;
    /* Reuse accent color */
    color: #333;
}

.showroom-intro-text p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    max-width: 500px;
}

.showroom-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 4px;
    border-bottom: 2px solid #A0522D;
    text-decoration: none;
    /* Using border instead */
}

.showroom-intro-image {
    flex: 1.2;
    height: 400px;
}

.showroom-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Address Strip */
.address-strip {
    text-align: center;
    padding: 40px 0;
    background: #fff;
}

.address-strip h3 {
    font-size: 1.2rem;
    font-weight: 400;
    color: #333;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
    border-bottom: 1px solid #999;
}

/* Map Section */
.map-section {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    background: #eee;
    overflow: hidden;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%);
    /* Match the grey style in image */
}

.hours-bar {
    text-align: center;
    padding: 30px 0;
    background: #fff;
    font-size: 1rem;
    color: #555;
    letter-spacing: 0.5px;
}

/* Customer Stories */
.customer-stories {
    padding: 60px 0;
    background: #fff;
}

.customer-stories h2 {
    font-size: 1.2rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 40px;
    padding-left: 10vw;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-color: #A0522D;
}

.stories-slider {
    display: flex;
    gap: 20px;
    /* Slight gap */
    padding: 0 5vw;
    overflow-x: auto;
    /* Allow scroll if needed on mobile */
}

/* Hide scrollbar */
.stories-slider::-webkit-scrollbar {
    display: none;
}

.stories-slider {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.story-card {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
}

.story-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}

.story-content {
    position: relative;
    z-index: 2;
}

.story-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.story-logo {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.story-info strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
}

.story-info span {
    font-size: 0.8rem;
    opacity: 0.8;
}

.story-stars {
    color: #FFB400;
    font-size: 0.8rem;
    margin-top: 4px;
}

.story-quote {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* Bottom CTA */
.bottom-cta {
    padding: 80px 0;
    background: #fff;
    text-align: center;
    position: relative;
}

.bottom-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.1;
    text-transform: uppercase;
}

.whatsapp-float-large {
    position: absolute;
    right: 20vw;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
}

.whatsapp-float-large img {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .showroom-intro-row {
        flex-direction: column;
        gap: 30px;
    }

    .showroom-intro-text {
        padding: 0 5vw;
        text-align: left;
    }

    .stories-slider {
        flex-direction: column;
        padding: 0;
        /* Remove horizontal padding constraints */
    }

    .story-card {
        width: 100%;
        min-height: 400px;
        /* Allow content to fit */
        height: auto;
    }

    /* Mobile Stats Text */
    .stat strong {
        font-size: 1rem !important;
    }

    .bottom-cta h2 {
        font-size: 2rem;
    }

    .whatsapp-float-large {
        position: static;
        width: 50px;
        margin: 20px auto 0;
        transform: none;
    }
}

/* =========
   Contact Page Redesign
========= */
.contact-hero {
    height: 70vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.contact-hero-content {
    position: relative;
    padding: 0 0 80px 10vw;
    width: 100%;
    color: #fff;
    z-index: 1;
}

.contact-hero-content h1 {
    font-size: 4rem;
    font-weight: 300;
    margin: 0;
}

/* Split Section */
.contact-split-section {
    padding: 80px 0;
    background: #fff;
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 10vw;
}

/* Left Info */
.contact-info h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    margin: 0 0 20px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #A0522D;
    display: inline-block;
}

.contact-info p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.contact-info h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    margin: 0 0 20px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #A0522D;
    display: inline-block;
}

.contact-details {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.contact-details strong {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    display: inline-block;
    width: 140px;
    /* Align labels */
}

/* Social Icons */
.contact-social-row {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.contact-social-icon {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: opacity 0.3s;
}

.contact-social-icon:hover {
    opacity: 0.8;
}

.cs-fb {
    background: #3b5998;
}

.cs-ig {
    background: #d62976;
}

.cs-tk {
    background: #000;
}

.cs-yt {
    background: #FF0000;
}

.cs-wa {
    background: #25D366;
}

/* Right Form */
.contact-form-wrapper h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    margin: 0 0 30px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #A0522D;
    display: inline-block;
}

.contact-field-group {
    margin-bottom: 25px;
}

.contact-field-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.contact-field-group input,
.contact-field-group textarea {
    width: 100%;
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 0.9rem;
    color: #333;
    outline: none;
    border-radius: 0;
}

.contact-field-group input:focus,
.contact-field-group textarea:focus {
    border-color: #333;
}

.btn-submit {
    background: #E05A47;
    /* Match image red/orange */
    color: #fff;
    border: none;
    padding: 10px 30px;
    font-size: 0.9rem;
    cursor: pointer;
    text-transform: capitalize;
    font-weight: 500;
}

.btn-submit:hover {
    background: #c94636;
}

/* Showroom Banner */
.contact-showroom-banner {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.contact-showroom-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    /* Darker wooden feel */
}

.contact-showroom-content {
    position: relative;
    z-index: 2;
}

.contact-showroom-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.contact-showroom-content p {
    font-size: 1.2rem;
    font-weight: 300;
    margin: 0;
    opacity: 0.9;
}

/* Customer Stories Button Section */
.customer-stories-section {
    padding: 40px 0;
    text-align: center;
    background: #fff;
}

.btn-stories {
    display: inline-block;
    background: #E05A47;
    color: #fff;
    padding: 12px 40px;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-stories:hover {
    background: #c94636;
}

@media (max-width: 900px) {
    .contact-split {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 5vw;
    }

    .contact-hero-content h1 {
        font-size: 3rem;
    }
}

/* =========
   About Page Redesign
========= */
.about-hero {
    height: 85vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 0 40px 10vw;
    color: #fff;
}

.about-hero-content h1 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 60px;
}

.about-subnav {
    display: flex;
    gap: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    margin-right: 10vw;
    /* Keep aligned with container logic usually, or just 10vw padding right */
}

.about-subnav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.about-subnav a:hover {
    opacity: 1;
}

.about-subnav a.active {
    opacity: 1;
    border-bottom: 2px solid #fff;
}

/* Our Story */
.about-story-section {
    padding: 80px 0;
    background: #fff;
    display: flex;
    align-items: center;
    /* Center vertically if image/text differ in height */
    justify-content: center;
}

.about-story-container {
    display: flex;
    /* Side by side */
    gap: 60px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 5vw;
    align-items: center;
}

.about-story-text {
    flex: 1;
}

.about-story-text h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #A0522D;
    /* Accent color */
    display: inline-block;
}

.about-story-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-story-image {
    flex: 1;
    height: 400px;
    /* Or higher to match design ratio */
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.about-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-overlay-box {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(43, 30, 22, 0.85);
    /* Dark brown/black tint */
    padding: 30px;
    color: #fff;
    border-left: 4px solid #A0522D;
    /* Accent border */
}

.story-overlay-box h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.story-overlay-box p {
    color: #ddd;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* CEO Message */
.ceo-message-section {
    padding: 60px 0;
    background: #fff;
    text-align: left;
    max-width: var(--container);
    margin: 0 auto;
    padding: 60px 10vw;
}

.ceo-message-section h3 {
    font-size: 1.2rem;
    color: #A0522D;
    text-transform: uppercase;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    display: inline-block;
}

.ceo-message-content {
    max-width: 800px;
}

.ceo-message-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    font-style: italic;
}

.ceo-sign {
    margin-top: 30px;
}

.ceo-sign strong {
    display: block;
    font-size: 1rem;
    color: #222;
}

.ceo-sign span {
    font-size: 0.85rem;
    color: #777;
}

/* Mission / Vision Form Layout */
.mission-vision-section {
    padding: 80px 0;
    background: #fff;
}

.mv-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 10vw;
}

@media (max-width: 900px) {
    .mv-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.mv-left h2 {
    font-size: 1.5rem;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 5px;
    border-bottom: 2px solid #333;
    display: inline-block;
}

.mv-left p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.mv-vision {
    margin-top: 50px;
}

.mv-right-form {
    background: #f9f9f9;
    /* Or transparent depending on design, image has dark wood bg possibility? No, looks clean white in parts, or separate block. Image shows wood bg for form. */
    /* Let's follow the "Clean" look or the "Form next to Mission" look. */
    padding: 0;
}

/* The image shows a form "ENTER YOUR MOBILE NUMBER" next to Mission text roughly. */
.simple-join-form {
    display: flex;
    gap: 0;
    border: 1px solid #333;
    max-width: 400px;
}

.simple-join-form input {
    flex: 1;
    border: none;
    padding: 12px 15px;
    outline: none;
    font-size: 0.9rem;
}

.simple-join-form button {
    background: #333;
    color: #fff;
    border: none;
    padding: 0 20px;
    text-transform: uppercase;
    font-size: 0.8rem;
    cursor: pointer;
    font-size: var(--fs-xs);
    letter-spacing: 1px;
    height: 42px;
}

@media (max-width: 600px) {
    .cta-form {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .cta-form input,
    .cta-form button {
        width: 100%;
    }

    .cta-inner {
        padding: 0 15px;
    }
}

.mv-image-below {
    margin-top: 40px;
    width: 100%;
    height: 300px;
    background: #eee;
}

.mv-image-below img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Our Process */
.process-section {
    padding: 80px 0;
    background: #fff;
}

.process-header {
    text-align: left;
    padding: 0 10vw;
    margin-bottom: 50px;
}

.process-header h2 {
    font-size: 1.5rem;
    font-weight: 400;
    padding-bottom: 8px;
    border-bottom: 2px solid #A0522D;
    display: inline-block;
}

.process-icons-row {
    display: flex;
    justify-content: space-between;
    /* Space out the 6 icons */
    padding: 0 10vw;
    margin-bottom: 60px;
    gap: 20px;
    flex-wrap: wrap;
}

.p-icon-step {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.p-icon-step i,
.p-icon-step img {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
    margin: 0 auto 10px auto;
    color: #333;
}

.p-icon-step span {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #333;
    font-weight: 600;
}

/* Detailed Process Steps (Vertical list with icons) */
.process-detailed-list {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 15vw;
    /* More centered */
}

.process-step-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.process-step-icon {
    font-size: 2rem;
    color: #555;
    flex-shrink: 0;
    width: 60px;
    text-align: center;
    padding-top: 5px;
}

.process-step-content h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0 0 10px 0;
    color: #333;
}

.process-step-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
}

/* Our Brands (Img left, Text right, Alternating?) */
.about-brands-section {
    padding: 80px 0;
    background: #fff;
}

.about-brands-header {
    padding: 0 10vw;
    margin-bottom: 50px;
    font-size: 1.5rem;
    font-weight: 400;
    border-bottom: 2px solid #A0522D;
    display: inline-block;
    margin-left: 10vw;
    /* Align header */
}

.brand-item-row {
    display: flex;
    margin-bottom: 60px;
    padding: 0 10vw;
    gap: 50px;
    align-items: center;
}

.brand-item-row.reverse {
    flex-direction: row-reverse;
}

.brand-item-img {
    flex: 1;
    height: 350px;
    /* Or aspect ratio */
}

.brand-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-item-content {
    flex: 1;
    text-align: left;
}

.brand-item-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.brand-item-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
}

/* FAQ */
.faq-section {
    padding: 80px 0;
    background: #fff;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 15vw;
}

.faq-section h2 {
    font-size: 1.5rem;
    border-bottom: 2px solid #A0522D;
    display: inline-block;
    margin-bottom: 50px;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
}

@media (max-width: 900px) {
    .about-story-container {
        flex-direction: column;
    }

    .mv-container {
        grid-template-columns: 1fr;
    }

    .brand-item-row,
    .brand-item-row.reverse {
        flex-direction: column;
    }

    .about-subnav {
        flex-wrap: wrap;
        gap: 15px;
    }

    .process-icons-row {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Tab Logic */
.about-tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-tab-content.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}