:root {
    --font-heading: 'EB Garamond', serif;
    --font-body: 'Roboto Flex', sans-serif;

    --color-black: #000000;
    --color-white: #ffffff;
    --color-light-bg: #efe2da;
    /* Matches the warm cream of the form background in Figma */
    --color-text-main: #000;
    --color-text-light: #555;
    --color-border: #000;
    /* Input borders are solid dark */
}

html {
    scroll-behavior: smooth;
}

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

img,
video {
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    line-height: 1.5;
    background-color: var(--color-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Global Container */
.container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
}

/* ============================
   Navbar
   ============================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 2rem 0;
}

@media(max-width: 767px) {
    .navbar {
        padding: 1.25rem 0;
    }
}

/* 80% white with blur on scroll */
.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1001;
    /* Above nav-menu */
}

/* Toggle + Menu label (Left) */
.nav-toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex: 0 0 auto;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
}

.nav-toggle-label {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--color-white);
    cursor: pointer;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled .nav-toggle-label,
.navbar.menu-active .nav-toggle-label {
    color: var(--color-black);
}

.navbar.scrolled .nav-toggle span {
    background-color: var(--color-black);
}

/* Logo (Center) */
.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    transition: color 0.3s ease;
    flex: 1;
    margin: 0 auto;
}

@media(max-width: 767px) {
    .nav-logo {
        justify-content: flex-end;
    }
}

.logo-white {
    display: block;
}

.logo-black {
    display: none;
}

.logo-black,
.logo-white {
    transition: all 0.3s ease;
    width: 150px;
    height: auto;
}

@media(min-width: 1200px) {

    .logo-black,
    .logo-white {
        margin-left: 104px;
    }
}

@media(max-width: 767px) {

    .logo-black,
    .logo-white {
        width: 120px;
    }
}

.navbar.scrolled .nav-logo {
    color: var(--color-black);
}

/* Ensure black logo when menu is active regardless of scroll */
.navbar.scrolled .logo-black {
    display: block;
}

.navbar.menu-active .logo-black {
    display: block;
}

.navbar.menu-active .logo-white,
.navbar.scrolled .logo-white {
    display: none;
}

.nav-logo svg {
    height: 50px;
    width: auto;
}

/* Full Screen Menu Revamp */
.nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    z-index: 998;
    /* Just below toggle */
    opacity: 0;
    visibility: hidden;
    clip-path: circle(0% at 30px 40px);
    /* Start from the toggle position approximately */
    transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.4s ease;
    pointer-events: none;
}

.nav-menu.active {
    opacity: 1;
    visibility: visible;
    clip-path: circle(150% at 30px 40px);
    pointer-events: auto;
}

.nav-menu li {
    width: auto;
    padding: 0;
    border-bottom: none;
    overflow: hidden;
    /* For reveal animation */
    margin: 1rem 0;
}

.nav-menu li a {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: 500;
    color: var(--color-black);
    display: block;
    line-height: 1.1;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    position: relative;
    padding: 0.2rem 0;
}

.nav-menu li a span {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-menu.active li a span {
    transform: translateY(0);
}

/* Staggered Delays for links */
.nav-menu li:nth-child(1) a span {
    transition-delay: 0.1s;
}

.nav-menu li:nth-child(2) a span {
    transition-delay: 0.18s;
}

.nav-menu li:nth-child(3) a span {
    transition-delay: 0.26s;
}

.nav-menu li:nth-child(4) a span {
    transition-delay: 0.34s;
}

.nav-menu li:nth-child(5) a span {
    transition-delay: 0.42s;
}

/* Hover effect */
.nav-menu li a:hover {
    opacity: 0.6;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-black);
    transition: width 0.4s ease;
}

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

/* Menu Business Info Section */
.menu-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 2rem 0 !important;
    padding: 0 !important;
    border: none !important;
}

.menu-business-info {
    width: 100% !important;
    padding: 0 !important;
    border: none !important;
    margin: 0 !important;
    overflow: visible !important;
}

.business-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.call-now-btn {
    display: inline-block;
    padding: 1.5rem 2rem;
    border: 2px solid var(--color-black);
    background-color: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    line-height: 1.4;
    position: relative;
    overflow: hidden;
}

.call-now-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -80%;
    width: 45%;
    height: 200%;
    background: rgba(255, 255, 255, 0.14);
    transform: skewX(-18deg);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.call-now-btn span {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.call-now-btn:hover {
    background-color: #111;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.menu-business-info {
    display: none;

    .call-now-btn {
        font-size: 1rem;
        width: calc(100% - 2rem);
        max-width: 300px;
        color: white !important;
        margin: 0 auto;
        text-align: center;
        padding: 1rem 2.5rem;
        cursor: pointer;
        font-family: var(--font-body);
        box-sizing: border-box;
    }
}

.business-details {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.menu-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.menu-info-label {
    font-size: 1rem !important;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-black);
    text-transform: uppercase;
    font-family: var(--font-body);
}

.menu-info-value {
    font-size: 1.1rem !important;
    color: #555;
    font-family: var(--font-body);
    line-height: 1.6;
}

.menu-info-value a {
    color: #555;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.menu-info-value a:hover {
    opacity: 0.7;
}

.menu-social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.menu-social-icon {
    width: 44px;
    height: 44px;
    background-color: var(--color-black);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.menu-social-icon:hover {
    transform: translateY(-5px);
    background-color: #333;
}

/* CTA Wrapper (Right) */
.nav-cta-wrapper {
    flex: 0 0 auto;
}

@media(max-width: 767px) {
    .nav-cta-wrapper {
        display: none;
    }
}

.btn-outline {
    padding: 0.75rem 2.5rem;
    border: 2px solid var(--color-black);
    background: transparent;
    color: var(--color-black);
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    border-radius: 0;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--color-black);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-cta-wrapper .btn-outline {
    color: var(--color-white);
    border-color: var(--color-white);
}

.navbar.scrolled .btn-outline {
    border-color: var(--color-black);
    background-color: var(--color-black);
}

.btn-outline:hover {
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.btn-outline:hover::before {
    left: 0;
}

/* Toggle Button */
.nav-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.nav-toggle span {
    width: 28px;
    height: 2.5px;
    background-color: var(--color-white);
    transition: all 0.3s ease;
    display: block;
}

.nav-toggle span.half {
    width: 14px;
}

.nav-toggle span.two-half {
    width: 22px;
}

.nav-toggle.active span {
    background-color: var(--color-black) !important;
}

.navbar.menu-active .nav-toggle-label {
    color: var(--color-black);
}

.nav-toggle.active span {
    width: 28px !important;
}

.nav-toggle.active span:first-child {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:last-child {
    transform: translateY(-12px) rotate(-45deg);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-logo svg {
        height: 40px;
    }

    .nav-toggle-label {
        font-size: 1rem;
    }

    .btn-outline {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        padding: 1.5rem 5vw;
    }

    .nav-menu li {
        padding: 0.25rem 0;
        margin: 0.25rem 0;
    }

    .nav-menu li a {
        font-size: 1.75rem;
    }

    .nav-logo svg {
        height: 35px;
    }

    .btn-outline {
        padding: 0.5rem 0.75rem;
        font-size: 0.7rem;
    }
}

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

.divider-container {
    margin-top: 0px;
    width: 100%;
    position: relative;
    z-index: 2;
    margin-top: -32px;
    transform: rotate(180deg);
    height: 64px;
    overflow: hidden;

    svg {
        width: 100%;
        height: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
    }
}

.divider-reverse {
    transform: rotate(0deg);
    margin-bottom: -32px;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* padding-top ensures content is below navbar, though in design it's centered in viewport */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Dark gradient overlay on the left for text readability, blending into transparent */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    /* Very subtle light overlay to maintain image clarity */
}

/* ============================
   Crafting Legacies Section
   ============================ */
.crafting-section {
    background-color: var(--color-light-bg);
    padding-top: 1.5rem;
    padding-bottom: 0;
}

.crafting-container {
    display: flex;
    align-items: flex-start;
    gap: 8rem;
}

.crafting-image-wrapper {
    flex: 1;
    margin-bottom: -190px;
    z-index: 3;
    position: relative;
    aspect-ratio: 0.95;
    /* Taller than wide, matching the screenshot proportion */
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.crafting-image-wrapper img,
.crafting-image-wrapper video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 20;
}

.play-icon:hover {
    transform: scale(1.1);
}

.crafting-content {
    flex: 0.9;
    margin-top: 24px;
    margin-left: 84px;
}

.crafting-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.1;
    margin-bottom: 3rem;
    color: var(--color-black);
}

.crafting-text {
    max-width: 520px;
}

.crafting-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #808080;
    /* Lighter text as seen in screenshot */
    margin-bottom: 2rem;
}

.crafting-text p:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .crafting-container {
        gap: 4rem;
    }
}

@media(max-width: 480px) {
    body .crafting-section.site-section {
        padding-bottom: 100px !important;
    }

    body .projects-section.site-section {
        padding-top: 20px !important;
        padding-bottom: 0 !important;
    }

    body .services-section.site-section {
        padding-top: 0 !important;
    }
}

@media (max-width: 900px) {
    .crafting-section {
        padding: 4rem 0 3rem;
    }

    .crafting-container {
        flex-direction: column;
        text-align: left;
        gap: 2.5rem;
    }

    .crafting-image-wrapper {
        flex: none;
        width: 100%;
        margin-bottom: 0;
        aspect-ratio: 16 / 10;
    }

    .crafting-content {
        flex: none;
        width: 100%;
        margin-top: 0;
        margin-left: 0;
    }

    .crafting-title {
        font-size: 2.8rem;
        margin-bottom: 2rem;
    }

    .crafting-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .crafting-title {
        font-size: 2.5rem;
    }
}


.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-top: 4rem;
    /* give space for nav */
}

.hero-content {
    display: block;
    flex: 1;
    color: var(--color-white);
    max-width: 600px;
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4.75rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 480px;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-form-box {
    background-color: #FDF8F3;
    padding: 1.5rem;
    width: 100%;
    max-width: 520px;
    margin-right: 32px;
}

.hero-form-box h2 {
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
    color: var(--color-black);
    letter-spacing: -0.01em;
}

#consultationForm {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-group label {
    font-size: 0.85rem;
    color: #B0A69D;
    /* Light warm gray for labels */
    font-family: var(--font-body);
}

.form-group input {
    width: 100%;
    padding: 0 0 0.4rem 0;
    border: none;
    border-bottom: 1px solid #1A1A1A;
    background: transparent;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #1A1A1A;
    transition: border-color 0.3s ease;
}

.form-group textarea {
    width: 100%;
    padding: 0.6rem 0;
    border: none;
    border-bottom: 1px solid #1A1A1A;
    background: transparent;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #1A1A1A;
    transition: border-color 0.3s ease;
    resize: none;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-bottom: 2px solid var(--color-black);
    padding-bottom: 0.5rem;
    /* Comp for 2px border */
}

.form-group textarea:focus {
    outline: none;
    border-bottom: 2px solid var(--color-black);
}

.form-checkbox {
    /* Reduce gap before checkbox */
    margin-bottom: 0.5rem;
}

.form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--color-text-light);
    cursor: pointer;
    line-height: 1.4;
}

.form-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background-color: #e1e1e1;
    /* White box instead of default blue */
    border: none;
    cursor: pointer;
    margin-top: 0.1rem;
    flex-shrink: 0;
    display: grid;
    place-content: center;
}

.form-checkbox input[type="checkbox"]::before {
    content: "";
    width: 12px;
    height: 12px;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    background-color: var(--color-black);
}

.form-checkbox input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.form-checkbox a {
    color: var(--color-black);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.btn-solid {
    background-color: var(--color-black);
    color: var(--color-white);
    border: none;
    padding: 1.1rem;
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-solid::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -80%;
    width: 45%;
    height: 200%;
    background: rgba(255, 255, 255, 0.14);
    transform: skewX(-18deg);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.btn-solid:hover {
    background-color: #111;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.btn-solid:hover::after {
    left: 130%;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
        margin-bottom: 1rem;
    }

    .hero-form-box {
        padding: 1.5rem;
        max-width: 450px;
    }

    .nav-menu {
        gap: 1.5rem;
    }
}

@media (max-width: 900px) {
    .hero {
        align-items: flex-start;
        padding-top: 120px;
        padding-bottom: 4rem;
    }

    .hero-container {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 2rem;
        margin-top: 0;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-subtitle br {
        display: none;
    }

    .hero-form-box {
        max-width: 100%;
        width: 100%;
        margin-right: 0;
    }

    .hero-overlay {
        background: rgba(0, 0, 0, 0.5);
    }
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .form-row {
        flex-direction: column;
        gap: 2rem;
    }

    .hero {
        padding-top: 140px;
        padding-bottom: 5rem;
    }

    .hero-form-box {
        padding: 1.25rem;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-form-box h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

/* ============================
   Features Section
   ============================ */
.features-section {
    background-color: var(--color-light-bg);
    padding-top: 14rem;
    text-align: center;
}

.features-section.site-section {
    padding-bottom: 10rem !important;
}

@media(max-width: 480px) {
    body .features-section.site-section {
        padding-bottom: 60px !important;
    }
}

.features-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.15;
    color: var(--color-black);
    margin-bottom: 5rem;
}

.features-carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.carousel-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-black);
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: all 0.4s cubic-bezier(0.2, 0.5, 0.4, 1);
    opacity: 1;
    transform: scale(1);
    margin-top: 7rem;
}

.carousel-btn:hover {
    opacity: 1;
    transform: translateY(-2px) scale(1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.features-content {
    flex: 1;
}

.features-slider-viewport {
    overflow: visible;
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 2rem;
}

.features-slide {
    display: contents;
}

.features-slide.active {
    display: contents;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.features-dots {
    display: none;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid var(--color-black);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease;
}

.dot.active {
    background: var(--color-black);
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
}

.feature-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
    max-width: 280px;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-title {
        font-size: 3rem;
    }

    .features-section {
        padding-top: 10rem;
        padding-bottom: 8rem;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding-top: 6rem;
        padding-bottom: 5rem;
    }

    .features-slider-viewport {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-title {
        font-size: 2.6rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .features-slider-viewport {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .feature-item {
        gap: 0.5rem;
    }

    .feature-item p {
        font-size: .8rem;
    }

    .features-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }
}

/* ============================
   Projects Section
   ============================ */
.projects-section {
    padding-top: 12rem;
    padding-bottom: 0rem;
    margin-bottom: -204px;
    position: relative;
    z-index: 3;
}

.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
    gap: 4rem;
}

.projects-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.1;
    color: var(--color-black);
    flex: 1;
}

.projects-header-text {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 600px;
    margin-top: 26px;
}

.projects-grid {
    display: flex;
    gap: 30px;
    width: 100%;
}

.projects-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.col-1 {
    width: calc(33.333% - 10px);
}

.col-23 {
    width: calc(66.666% - 10px);
}

.col-23-bottom {
    display: flex;
    gap: 30px;
    flex: 1;
}

.col-23-bottom .project-card {
    width: calc(50% - 10px);
}

/* Card Styling */
.project-card {
    position: relative;
    overflow: hidden;
    display: flex;
    background: #eee;
}

.card-tall {
    height: 670px;
}

.card-square {
    height: 450px;
}

.card-wide {
    height: 560px;
}

.card-vertical {
    height: 560px;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.project-card:hover img {
    transform: scale(1.03);
}

.project-info {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-white);
    pointer-events: none;
    z-index: 2;
}

.project-info::before {
    content: '';
    position: absolute;
    top: -2.5rem;
    left: -2.5rem;
    right: -2.5rem;
    height: 180px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: -1;
    pointer-events: none;
}

/* ============================
   Service Areas Section
   ============================ */
.service-areas-section {
    padding-top: 6rem;
    padding-bottom: 4rem;
    background-color: var(--color-white);
}


.service-areas-container {
    display: flex;
    flex-direction: column;
}

.service-areas-content {
    flex: 1;
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
}

.service-areas-header {
    max-width: 1000px;
}

.service-areas-title {
    font-size: clamp(2.5rem, 3.5vw, 3.5rem);
    line-height: 1.1;
    font-weight: 700;
    color: var(--color-black);
    flex: 1;
}

.service-stamp {
    position: absolute;
    top: 5px;
    right: 0;
    width: 200px;
    height: 200px;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.stamp-svg {
    width: 100%;
    height: 100%;
}

.stamp-text {
    font-size: 18px;
    font-family: var(--font-body);
    font-weight: 400;
    fill: var(--color-black);
    letter-spacing: 2px;
}

.stamp-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-black);
    animation: counter-rotate 20s linear infinite;

    img {
        max-width: 120px;
        height: auto;
    }
}

@keyframes counter-rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

.service-areas-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: #808080;
    margin-bottom: 0;
    max-width: 600px;
    margin-top: 1.5rem;
}

/* --- Service area cards list --- */
.service-areas-grid {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    margin-top: 2rem;
}

.service-areas-cards-scroll-wrapper {
    flex: 0.5;
    display: flex;
    flex-direction: column;
}

.states-cards-scroll-inner {
    flex: 1;
}

.service-areas-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* No-results state */
.states-no-results {
    padding: 3rem 2rem;
    text-align: center;
    color: #aaa;
    font-size: 1rem;
    font-family: var(--font-body);
}

.area-card {
    background-color: var(--color-light-bg);
    padding: 2.5rem;
    width: 100%;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 auto;
    cursor: pointer;
}

.area-card:hover {
    border-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.area-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0rem;
    color: var(--color-black);
}

.card-label {
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 0;
    color: var(--color-black);
}

.card-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #808080;
    margin-top: 0.5rem;
}

.service-areas-map-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    min-height: 680px;
}

.service-map {
    width: 100%;
    height: 100%;
    min-height: 600px;
    background-color: var(--color-white);
}

@media(max-width: 480px) {

    .service-map,
    .service-areas-map-wrapper {
        max-height: 200px;
    }
}

/* Map popup - kitchen design */
.maplibregl-popup-content {
    border-radius: 0 !important;
    padding: 12px 16px !important;
    font-family: var(--font-body), system-ui, sans-serif;
    font-size: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
}

.km-popup-county {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-black);
}

.km-popup-state {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 2px;
    font-family: var(--font-body);
}

/* --- Pills variant layout --- */
.service-areas-pills-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.service-areas-single-card {
    flex: 1;
    background-color: var(--color-light-bg);
    padding: 3rem;
}

.service-areas-single-card .service-areas-title {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 1rem;
}

.service-areas-single-card .service-areas-subtitle {
    max-width: 100%;
    margin-bottom: 2rem;
}

.county-pills-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.county-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--color-black);
    background-color: rgba(0, 0, 0, 0.04);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    user-select: none;
}

.county-pill svg {
    flex-shrink: 0;
    color: #bbb;
    transition: color 0.25s ease;
}

.county-pill:hover {
    background-color: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.county-pill:hover svg {
    color: var(--color-black);
}

.county-pill.active {
    background-color: var(--color-black);
    border-color: var(--color-black);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transform: translateY(-1px);
}

.county-pill.active svg {
    color: var(--color-white);
}

/* --- Responsive --- */
@media (max-width: 1200px) {
    .service-areas-container {
        flex-direction: column;
    }

    .service-stamp {
        right: 0;
        top: -20px;
    }

    .service-areas-content {
        max-width: 100%;
    }

    .service-map {
        min-height: 400px;
    }
}

/* --- Tablet mode ≤1024px --- */
@media (max-width: 1024px) {
    .service-areas-cards {
        flex-basis: 100%;
        width: 100%;
    }

    .area-card {
        padding: 2rem;
    }
}

@media (max-width: 900px) {
    .service-areas-section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .service-areas-grid {
        flex-direction: column;
        gap: 0rem;
    }

    .service-areas-cards-scroll-wrapper {
        flex: none;
        width: 100%;
    }

    .service-areas-title {
        font-size: 2.8rem;
    }

    .service-areas-map-wrapper {
        min-height: 400px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .service-stamp {
        display: none;
    }

    .service-areas-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .service-areas-title {
        font-size: 2.4rem;
    }

    .service-areas-subtitle {
        font-size: 0.95rem;
    }

    .service-areas-map-wrapper {
        min-height: 350px;
    }

    .service-areas-single-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .service-areas-grid {
        margin-top: 1rem;
    }

    .service-areas-section {
        padding-top: 1rem;
        padding-bottom: 3rem;
    }

    .service-areas-title {
        font-size: 2rem;
    }

    .area-card {
        padding: 1.2rem;
        width: 100%;
    }

    .area-card h3 {
        font-size: 1.1rem;
    }

    .service-areas-map-wrapper {
        min-height: 300px;
    }

    .card-desc {
        font-size: 0.875rem;
    }
}



.project-info h3 {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.1rem;
    margin-bottom: 0rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

@media(max-width: 481px) {
    .project-info h3 {
        font-size: 0.9rem;
    }
}

.project-info p {
    font-size: 0.9rem;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.btn-read-more {
    display: inline-block;
    padding: 0.5rem 1.75rem;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    font-size: 0.875rem;
    pointer-events: auto;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    position: relative;
    overflow: hidden;
}

.btn-read-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-read-more:hover {
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.btn-read-more:hover::before {
    left: 0;
}

@media(max-width: 481px) {
    .btn-read-more {
        padding: 0.5rem 1rem;
    }
}

/* ============================
   Project Modal
   ============================ */
.project-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.project-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.modal-content {
    position: relative;
    z-index: 2;
    background-color: var(--color-white);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    animation: modalSlideIn 0.3s ease-out;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 100;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0.5rem;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
}

.modal-close span {
    width: 24px;
    height: 2px;
    background-color: var(--color-white);
    transition: all 0.3s ease;
    display: block;
    position: absolute;
}

.modal-close span:first-child {
    transform: rotate(45deg);
}

.modal-close span:last-child {
    transform: rotate(-45deg);
}

.modal-close:hover span:first-child {
    transform: rotate(45deg) scale(1.1);
}

.modal-close:hover span:last-child {
    transform: rotate(-45deg) scale(1.1);
}

.modal-image {
    width: 100%;
    height: auto;
    max-height: 50vh;
    object-fit: cover;
    display: block;
}

.modal-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modal-info h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    color: var(--color-black);
    margin: 0;
}

.modal-location {
    font-size: 1.1rem;
    color: #888;
    margin: 0;
}

.modal-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    max-width: 700px;
    margin: 0;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
    }

    .modal-info {
        padding: 2rem;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        max-height: 80vh;
        margin-top: 70px;
    }

    .modal-image {
        max-height: 200px;
    }

    .modal-info {
        padding: 1.5rem;
        gap: 0.5rem;
    }

    .modal-info h2 {
        font-size: 1.8rem;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .projects-header {
        flex-direction: column;
        gap: 0rem;
    }

    .projects-section {
        padding-top: 6rem;
        margin-bottom: -120px;
    }

    .projects-grid {
        flex-direction: column;
    }

    .col-1,
    .col-23,
    .col-23-bottom .project-card {
        width: 100%;
    }

    .col-23-bottom {
        flex-direction: column;
    }

    .project-card,
    .card-tall,
    .card-square,
    .card-wide,
    .card-vertical {
        height: 420px;
    }
}

@media (max-width: 768px) {

    .project-card,
    .card-tall,
    .card-square,
    .card-wide,
    .card-vertical {
        height: 320px;
    }

    .projects-header h2 {
        font-size: 2.6rem;
    }
}

@media (max-width: 480px) {
    .projects-section {
        padding-top: 4rem;
        margin-bottom: -80px;
    }

    .project-card,
    .card-tall,
    .card-square,
    .card-wide,
    .card-vertical {
        height: 260px;
    }

    .projects-header {
        margin-bottom: 2rem;
    }

    .projects-header h2 {
        font-size: 2.2rem;
    }

    .projects-header-text {
        font-size: 0.95rem;
        margin-top: 1rem;
    }
}

/* ============================
   Services Section
   ============================ */
.services-section {
    padding-top: 4rem;
    padding-bottom: 0;
    background-color: var(--color-white);
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5rem;
    gap: 4rem;
}

.services-header-content {
    max-width: 1000px;
}

.services-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--color-black);
}

.services-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    max-width: 650px;
}

.btn-talk {
    display: inline-block;
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 1rem 2.8rem;
    font-size: 0.95rem;
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    min-width: 197px;
    text-align: center;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.btn-talk::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -80%;
    width: 45%;
    height: 200%;
    background: rgba(255, 255, 255, 0.14);
    transform: skewX(-18deg);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.btn-talk:hover {
    background-color: #111;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.btn-talk:hover::after {
    left: 130%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.service-overlay {
    width: calc(100% - 40px);
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #FDF8F3;
    /* Changed to solid cream */
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 200px;
}

.service-overlay h3 {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--color-black);
}

.service-overlay p {
    font-size: 1rem;
    line-height: 1.55;
    color: #444;
}

/* Responsive adjustments for Services */
@media (max-width: 1400px) {
    .service-card {
        height: 650px;
    }
}

@media (max-width: 1200px) {
    .services-header {
        margin-bottom: 3rem;
    }

    .service-card {
        height: 550px;
    }

    .service-overlay {
        padding: 2rem;
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
}

@media (max-width: 1024px) {
    .services-section {
        padding: 6rem 0;
    }

    .services-header {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        height: 500px;
    }

    .btn-talk {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 4rem 0;
    }

    .services-title {
        font-size: 2.6rem;
    }

    .service-card {
        height: 420px;
    }

    .service-overlay {
        height: auto;
        min-height: 160px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 3rem 0;
    }

    .services-title {
        font-size: 2.2rem;
    }

    .services-subtitle {
        font-size: 0.95rem;
    }

    .service-card {
        height: 360px;
    }

    .service-overlay {
        padding: 1.5rem;
        height: auto;
        bottom: 10px;
        left: 10px;
        right: 10px;
        width: calc(100% - 20px);
    }

    .service-overlay h3 {
        font-size: 1.3rem;
    }

    .service-overlay p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

/* ============================
   Studio Section
   ============================ */
.studio-section {
    background-color: var(--color-light-bg);
    padding-bottom: 6rem;
}

.studio-content,
.studio-map {
    z-index: 3;
    position: relative;
}

.studio-content {
    margin-top: 36px;
}

x .studio-container {
    display: flex;
    justify-content: space-between;
    gap: 8rem;
    align-items: flex-start;
}

.studio-content {
    flex: 1;
    max-width: 580px;
}

.studio-title {
    font-size: clamp(2.5rem, 3.5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--color-black);
}

.studio-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #808080;
    margin-bottom: 2rem;
    max-width: 520px;
}

.studio-cta {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #808080;
    margin-bottom: 2rem;
}

.studio-cta a {
    color: var(--color-black);
    text-decoration: underline;
    text-underline-offset: 6px;
    font-weight: 500;
}

.studio-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.info-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-black);
    text-transform: none;
}

.info-value {
    font-size: 1.05rem;
    color: #666;
    font-style: normal;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    width: 48px;
    height: 48px;
    background-color: var(--color-black);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
    background-color: #333;
}

.studio-map {
    flex: 0.5;
    height: 800px;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.studio-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Responsive for Studio Section */
@media (max-width: 1200px) {
    .studio-container {
        gap: 4rem;
    }

    .studio-map {
        height: 600px;
    }
}

@media (max-width: 900px) {
    .studio-section {
        padding: 4rem 0;
    }

    .studio-container {
        flex-direction: column;
    }

    .studio-content,
    .studio-map {
        flex: none;
        width: 100%;
        max-width: 100%;
        margin-top: 0;
    }

    .studio-map {
        height: 420px;
    }

    .studio-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    .studio-section {
        padding: 3rem 0;
    }

    .studio-title {
        font-size: 2.2rem;
    }

    .studio-description,
    .studio-cta {
        font-size: 0.95rem;
    }

    .studio-map {
        height: 320px;
    }

    .social-links {
        gap: 1rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }
}

/* ============================
   Kitchen Styles Accordion
   ============================ */
.site-section.styles-accordion-section {
    padding-top: 3rem !important;
    padding-bottom: 0 !important;
}

@media(max-width: 481px) {
    .site-section.styles-accordion-section {
        padding-top: 0 !important;
    }
}

.styles-accordion-section {
    width: 100%;
    overflow: hidden;

    .services-header-content {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        max-width: 1600px;
        margin: 0 auto;
        padding: 0 20px;
        margin-bottom: 3rem;
    }
}

.accordion-track {
    display: flex;
    width: 100%;
    height: 100vh;
    min-height: 680px;
    max-height: 860px;
    max-width: 1600px;
    margin: 0rem auto;
    padding: 0 20px;
}

.accordion-panel {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    flex: 0 0 140px;
    transition: flex 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.accordion-panel.active {
    flex: 1 1 auto;
    cursor: default;
}

/* Inactive label (number + rotated name) */
.accordion-inactive-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 140px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
    gap: 1rem;
    opacity: 1;
    transition: opacity 0.3s ease;
    padding: 1rem;
}

.accordion-panel.active .accordion-inactive-label {
    opacity: 0;
    pointer-events: none;
}

.panel-number {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.panel-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    white-space: nowrap;
    letter-spacing: 0.5px;
}

/* Swatch indicator on inactive label */
.accordion-inactive-label::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.accordion-panel[data-index="0"] .accordion-inactive-label::before {
    background-color: #0B0B0B;
}

.accordion-panel[data-index="1"] .accordion-inactive-label::before {
    background-color: #5A5A5A;
}

.accordion-panel[data-index="2"] .accordion-inactive-label::before {
    background-color: #1C2E4D;
}

.accordion-panel[data-index="3"] .accordion-inactive-label::before {
    background-color: #808080;
}

.accordion-panel[data-index="4"] .accordion-inactive-label::before {
    background-color: #F8F8F8;
}

.accordion-panel[data-index="5"] .accordion-inactive-label::before {
    background-color: #909090;
}

.accordion-panel[data-index="6"] .accordion-inactive-label::before {
    background-color: #1C2E4D;
}

.accordion-panel:not(.active):hover .accordion-inactive-label::before {
    transform: scale(1.15);
}

/* Inner container (image + content overlay) */
.accordion-inner {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.accordion-inner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.accordion-panel:not(.active):hover .accordion-inner img {
    transform: scale(1.03);
}

/* Gradient overlay on all panels */
.accordion-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    transition: background 0.5s ease;
}

.accordion-panel:not(.active) .accordion-inner::after {
    background: rgba(0, 0, 0, 0.52);
}

/* Content overlay */
.accordion-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 3.5rem 4rem;
    color: var(--color-white);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease 0.15s, transform 0.4s ease 0.15s;
    pointer-events: none;
}

.accordion-panel.active .accordion-content {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.accordion-meta {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.accordion-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.accordion-swatch {
    display: inline-block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.accordion-subtitle {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 300;
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.accordion-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.75;
    max-width: 420px;
    margin: 0 0 2rem;
}

.accordion-colours {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.colour-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    opacity: 0.65;
}

.colour-swatches {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.colour-swatches .swatch {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.colour-swatches .swatch:hover {
    transform: scale(1.15);
    border-color: rgba(255, 255, 255, 0.8);
}

.colour-swatches .swatch.active {
    border-color: var(--color-white);
    transform: scale(1.15);
}

.btn-accordion {
    display: inline-block;
    padding: 0.9rem 2.8rem;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.btn-accordion::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-accordion:hover {
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.btn-accordion:hover::before {
    left: 0;
}

/* Mobile: stack vertically */
@media (max-width: 900px) {
    .accordion-track {
        flex-direction: column;
        height: auto;
        max-height: none;
        padding: 0 15px;
    }

    .accordion-panel {
        flex: 0 0 60px;
        height: 60px;
        width: 100%;
        transition: height 0.4s cubic-bezier(0.77, 0, 0.175, 1), flex 0.4s;
        margin-bottom: 8px;
    }

    .accordion-panel.active {
        flex: 0 0 auto;
        height: auto;
        min-height: 480px;
    }

    .accordion-inactive-label {
        flex-direction: row;
        width: 100%;
        height: 60px;
        padding: 0 1.5rem;
        gap: 1rem;
        align-items: center;
        justify-content: flex-start;
        position: relative;
    }

    .panel-name {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 1rem;
        font-weight: 300;
    }

    .panel-number {
        font-size: 0.75rem;
        font-weight: 300;
    }

    .accordion-content {
        position: relative;
        padding: 2rem 1.75rem;
        opacity: 1;
        transform: none;
        bottom: auto;
        left: auto;
        right: auto;
        pointer-events: auto;
    }

    .accordion-inner::after {
        background: transparent;
    }

    .accordion-title {
        font-size: 1.75rem;
        gap: 0.75rem;
    }

    .accordion-swatch {
        width: 18px;
        height: 18px;
    }

    .accordion-subtitle {
        font-size: 0.95rem;
    }

    .accordion-desc {
        display: block;
        font-size: 0.9rem;
        max-width: 100%;
        margin-bottom: 1.25rem;
    }

    .accordion-colours {
        margin-bottom: 1.5rem;
    }

    .colour-swatches .swatch {
        width: 28px;
        height: 28px;
    }

    .btn-accordion {
        padding: 0.8rem 2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .accordion-track {
        padding: 0 12px;
    }

    .accordion-panel {
        flex: 0 0 50px;
        height: 50px;
        margin-bottom: 6px;
    }

    .accordion-panel.active {
        flex: 0 0 auto;
        height: auto;
        min-height: 380px;
    }

    .accordion-inactive-label {
        height: 50px;
        padding: 0 1rem;
        gap: 0.75rem;
    }

    .panel-name {
        font-size: 1.1rem;
    }

    .panel-number {
        font-size: 0.65rem;
    }

    .accordion-content {
        padding: 1.5rem 1.25rem;
        position: relative;
    }

    .accordion-title {
        font-size: 1.5rem;
        gap: 0.6rem;
        font-weight: 300;
        margin-bottom: 0.5rem;
    }

    .accordion-swatch {
        width: 16px;
        height: 16px;
    }

    .accordion-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .accordion-desc {
        display: none;
    }

    .accordion-meta {
        font-size: 0.65rem;
        margin-bottom: 0.5rem;
    }

    .accordion-content {
        display: none;
    }

    .accordion-panel.active .accordion-content {
        display: block;
        background: #00000036;
        position: absolute;
        bottom: 0;
        width: 100%;
        padding: 12px;
    }

    .btn-accordion {
        padding: 0.7rem 1.5rem;
        font-size: 0.75rem;
    }

    .styles-accordion-section {
        .services-header-content {
            flex-direction: column;
        }
    }

}

.reviews-header {
    margin-bottom: 4rem;
}

.reviews-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--color-black);
    font-weight: 500;
    text-align: center;
}

.rating-summary {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
    justify-content: center;
}

.rating-summary .stars,
.card-stars {
    display: flex;
    gap: 6px;
    font-size: 1.2rem;
    color: #000;
}

.rating-summary p {
    font-size: 1.2rem;
    color: #888;
    font-family: var(--font-body);
}

.reviews-ticker {
    overflow: hidden;
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    display: flex;
    align-items: center;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.reviews-track {
    display: flex;
    gap: 40px;
    animation: scrollReviews 40s linear infinite;
    width: fit-content;
    align-items: stretch;
}

.reviews-track:hover {
    animation-play-state: paused;
}

@keyframes scrollReviews {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .reviews-track {
        animation-play-state: paused;
    }
}

.review-card {
    background-color: #FDF8F3;
    /* Warm cream background */
    padding: 2.5rem;
    width: 100%;
    max-width: 580px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-initials {
    width: 36px;
    height: 36px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-body);
}

.user-name {
    font-size: 1rem;
    font-weight: 500;
    color: #000;
    font-family: var(--font-body);
}

.card-stars {
    display: flex;
    gap: 4px;
    font-size: 1.1rem;
    color: #000;
}

.card-body p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #1A1A1A;
    font-family: var(--font-body);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.review-date {
    font-size: 0.95rem;
    color: #888;
    font-family: var(--font-body);
}

.platform-logo svg {
    display: block;
    width: 20px;
    height: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .reviews-section {
        padding: 4rem 0;
    }

    .reviews-header h2 {
        font-size: 2.6rem;
    }

    .review-card {
        min-width: 300px;
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding: 3rem 0;
    }

    .reviews-header h2 {
        font-size: 2.2rem;
    }

    .rating-summary {
        flex-direction: column;
        gap: 0.5rem;
    }

    .review-card {
        min-width: calc(100vw - 10vw);
        padding: 1.75rem;
        gap: 1.5rem;
        max-width: 200px;
    }

    .card-body p {
        font-size: .9rem;
    }
}

/* ============================
   Final CTA Section
   ============================ */
.final-cta-section {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 8rem;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.final-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.final-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.final-cta-container {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 700px;
}

.final-cta-content h2 {
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--color-black);
}

.final-cta-content {
    display: none;
}

.final-cta-subtitle {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.final-cta-form-box {
    background: #FDF8F3;
    padding: 4rem 4.5rem;
    border-radius: 0;
    width: 100%;
}

.final-cta-form-box h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: var(--color-black);
    letter-spacing: -0.3px;
}

#finalCtaForm {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.final-cta-form-box .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.final-cta-form-box .form-group {
    display: flex;
    flex-direction: column;
}

.final-cta-form-box .form-group label {
    font-size: 0.85rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #B0A69D;
    letter-spacing: 0.3px;
    font-family: var(--font-body);
}

.final-cta-form-box .form-group input,
.final-cta-form-box .form-group textarea {
    padding: 0;
    border: none;
    border-bottom: 1px solid #1A1A1A;
    background: transparent;
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 0;
    transition: border-color 0.3s ease;
    color: #1A1A1A;
}

.final-cta-form-box .form-group input::placeholder,
.final-cta-form-box .form-group textarea::placeholder {
    color: #bbb;
}

.final-cta-form-box .form-group input:focus,
.final-cta-form-box .form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--color-black);
    background: transparent;
}

.final-cta-form-box .form-group textarea {
    resize: vertical;
    font-family: var(--font-body);
}

.final-cta-form-box .form-checkbox {
    display: flex;
    align-items: flex-start;
    margin-top: 0rem;
}

.final-cta-form-box .form-checkbox label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.final-cta-form-box .form-checkbox input {
    margin-top: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.final-cta-form-box .checkbox-text {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.5;
}

.final-cta-form-box .checkbox-text a {
    color: var(--color-black);
    text-decoration: underline;
}

.final-cta-form-box .btn-solid {
    padding: 0.95rem 2rem;
    background-color: var(--color-black);
    color: var(--color-white);
    border: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.3s ease;
    margin-top: 0rem;
    width: 100%;
    letter-spacing: 0.5px;
}

.final-cta-form-box .btn-solid:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

@media (max-width: 768px) {
    .final-cta-section {
        padding: 60px 0;
        min-height: 400px;
    }

    .final-cta-container {
        width: 100%;
    }

    .final-cta-content h2 {
        font-size: 2.2rem;
    }

    .final-cta-form-box {
        padding: 2.5rem 2rem;
    }

    .final-cta-form-box .form-row {
        grid-template-columns: 1fr;
    }

    .form-checkbox label {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .final-cta-section {
        padding: 50px 0;
    }

    .final-cta-form-box {
        padding: 2rem 1.5rem;
    }

    .final-cta-form-box h3 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
}

/* ============================
   Footer Section
   ============================ */
.footer {
    background-color: #1a1b1e;
    color: var(--color-white);
    padding: 4rem 0 4rem;
    font-family: var(--font-body);
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: var(--color-white);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-col ul li a {
    font-size: 1rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

/* Trusted Logos */
.trusted-logos {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trusted-logo {
    width: 130px;
    height: 52px;
    background: transparent;
    border-radius: 4px;
    overflow: hidden;
}

.trusted-logo svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Business Info */
.business-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.business-info .info-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.business-info .info-label {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
    color: white;
}

.business-info p {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.7;
}

/* Footer Bottom */


.footer-bottom-container {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    font-size: 0.9rem;
    opacity: 0.6;
}

.footer-social {
    display: flex;
    gap: 1.2rem;
    flex: 0.32;

    .social-icon {
        background-color: #fff;
    }

    .social-icon svg,
    .social-icon svg path {
        fill: black;
    }
}

.social-circle {
    width: 44px;
    height: 44px;
    background-color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1b1e;
    transition: all 0.3s ease;
}

.social-circle:hover {
    transform: translateY(-5px);
    background-color: #ddd;
}

.social-circle svg {
    display: block;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem 2rem;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .footer-logo {
        order: -1;
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 4rem 0 3rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-col h3 {
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 3.5rem 0 2.5rem;
    }

    .footer-col h3 {
        font-size: 1.5rem;
    }

    .footer-top {
        gap: 2.5rem;
    }

    .footer-bottom-container {
        gap: 2rem;
        padding-top: 2.5rem;
    }

    .social-circle {
        width: 38px;
        height: 38px;
    }
}

/* ============================
   Process Section
   ============================ */
.process-section {
    background-color: var(--color-light-bg);
    padding-top: 4rem;
}

.process-section.site-section {
    padding-bottom: 0 !important;
}

.process-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
    gap: 4rem;
}

.process-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.1;
    color: var(--color-black);
    flex: 1.2;
    letter-spacing: -0.01em;
}

.process-header-text {
    flex: 0.8;
    color: #666;
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 600px;
    margin-top: 24px;
}

.process-steps {
    position: relative;
    display: flex;
    justify-content: space-between;
    max-width: 1240px;
    margin: 0 auto 3rem;
    padding: 0;
}

.process-progress-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 0;
    background-image: linear-gradient(to right, black 50%, rgba(255, 255, 255, 0) 0%);
    background-position: top;
    background-size: 20px 2px;
    /* 12px controls the dash+gap length, 2px is thickness */
    background-repeat: repeat-x;
    border: none;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.8;
    height: 1.5px;
}

.process-step-indicator {
    position: relative;
    width: 48px;
    height: 48px;
    background-color: var(--color-black);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 1.2rem;
    z-index: 2;
    font-family: var(--font-body);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    z-index: 3;
    position: relative;
    margin-bottom: -84px;
}

.process-card {
    background-color: white;
    display: flex;
    flex-direction: column;
}

.process-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    height: 280px;
}

.process-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.process-card-content {
    padding: 2rem;
    background-color: #FDF8F3;
    flex-grow: 1;
}

.process-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--color-black);
    font-family: var(--font-body);
    font-weight: 600;
}

.process-card-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #888;
}

.reviews-section.site-section {
    padding-bottom: 8rem !important;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .process-section {
        padding: 6rem 0 4rem;
    }

    .process-header {
        flex-direction: column;
        margin-bottom: 3rem;
        gap: 0rem;
    }

    .process-title {
        font-size: 3.5rem;
    }

    .process-header-text {
        max-width: 100%;
        font-size: 1.1rem;
    }

    .process-steps {
        padding: 0 5%;
        margin-bottom: 4rem;
    }

    .process-progress-line {
        left: 5%;
        right: 5%;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 4rem 0 3rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 0;
    }

    .process-steps {
        display: none;
    }

    .process-card-content {
        padding: 2rem;
    }

    .process-title {
        font-size: 2.8rem;
    }

    #consultationForm {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .process-section {
        padding: 3rem 0 2.5rem;
    }

    .process-title {
        font-size: 2.2rem;
    }

    .process-header-text {
        font-size: 0.95rem;
        margin-top: 1rem;
    }

    .process-image {
        height: 240px;
    }

    .process-card-content h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .form-group input {
        padding-bottom: 0;
    }
}

/* ============================
   360px — Ultra-Small Screen
   ============================ */
@media (max-width: 360px) {

    /* Container */
    .container {
        padding: 0 14px;
    }

    /* Navbar */
    .navbar {
        padding: 1rem 0;
    }

    .nav-toggle-label {
        font-size: 0.85rem;
    }

    .nav-logo img {
        height: 32px;
    }

    .nav-menu li a {
        font-size: 1.55rem;
    }

    .menu-info-value,
    .menu-info-label {
        font-size: 0.85rem;
    }

    .call-now-btn {
        font-size: 0.85rem;
        padding: 0.75rem 1.25rem;
    }

    /* Hero */
    .hero {
        padding-top: 88px;
        padding-bottom: 2.5rem;
    }

    .hero-title {
        font-size: 1.9rem;
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .hero-form-box {
        padding: 1.5rem 1rem;
    }

    .hero-form-box h2 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    #consultationForm {
        gap: 1rem;
    }

    .form-group input {
        font-size: 0.95rem;
    }

    .btn-solid {
        font-size: 0.9rem;
        padding: 1rem;
    }

    /* Crafting / About */
    .crafting-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .crafting-text p {
        font-size: 0.92rem;
    }

    /* Features */
    .features-title {
        font-size: 1.9rem;
        margin-bottom: 2rem;
    }

    .feature-item p {
        font-size: 0.88rem;
    }

    .features-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    /* Projects */
    .projects-section {
        padding-top: 3rem;
        margin-bottom: -50px;
    }

    .projects-header h2 {
        font-size: 1.9rem;
    }

    .projects-header-text {
        font-size: 0.9rem;
    }

    .projects-header {
        margin-bottom: 2rem;
    }

    .project-card,
    .card-tall,
    .card-square,
    .card-wide,
    .card-vertical {
        height: 220px;
    }

    .project-info h3 {
        font-size: 0.95rem;
    }

    .project-info p {
        font-size: 0.8rem;
    }

    .btn-read-more {
        padding: 0.4rem 1.1rem;
        font-size: 0.78rem;
    }

    /* Modal */
    .modal-info {
        padding: 1.25rem;
        gap: 1rem;
    }

    .modal-info h2 {
        font-size: 1.5rem;
    }

    .modal-location {
        font-size: 0.95rem;
    }

    .modal-description {
        font-size: 0.92rem;
        line-height: 1.55;
    }

    .modal-close {
        top: 0.75rem;
        right: 0.75rem;
    }

    /* Services */
    .services-title {
        font-size: 1.9rem;
    }

    .services-subtitle {
        font-size: 0.9rem;
    }

    .service-card {
        height: 300px;
    }

    .service-overlay {
        padding: 1.25rem;
        min-height: 0;
    }

    .service-overlay h3 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }

    .service-overlay p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .btn-talk {
        padding: 0.8rem 2rem;
        font-size: 0.88rem;
    }

    /* Accordion */
    .accordion-track {
        padding: 0 10px;
        margin: 2rem auto;
    }

    .accordion-panel {
        flex: 0 0 48px;
        height: 48px;
        margin-bottom: 5px;
    }

    .accordion-panel.active {
        flex: 0 0 auto;
        height: auto;
        min-height: 390px;
    }

    .accordion-inactive-label {
        width: 100%;
        height: 48px;
        padding: 0 0.75rem;
        gap: 0.6rem;
        justify-content: flex-start;
        position: relative;
    }

    .panel-name {
        font-size: 0.8rem;
        font-weight: 300;
    }

    .panel-number {
        font-size: 0.65rem;
        font-weight: 300;
    }

    .accordion-content {
        padding: 1.25rem 1rem;
        position: relative;
    }

    .accordion-title {
        font-size: 1.4rem;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
        font-weight: 300;
    }

    .accordion-swatch {
        width: 14px;
        height: 14px;
    }

    .accordion-subtitle {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .accordion-meta {
        font-size: 0.6rem;
        letter-spacing: 1.5px;
        margin-bottom: 0.5rem;
    }

    .colour-swatches .swatch {
        width: 22px;
        height: 22px;
    }

    .btn-accordion {
        padding: 0.6rem 1.25rem;
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    /* Reviews */
    .reviews-section {
        padding: 2.5rem 0;
    }

    .reviews-header h2 {
        font-size: 1.9rem;
    }

    .rating-summary p {
        font-size: 1rem;
    }

    .review-card {
        min-width: calc(100vw - 28px);
        padding: 1.5rem;
        gap: 1.25rem;
    }

    .card-body p {
        font-size: 0.92rem;
        line-height: 1.55;
    }

    .user-name {
        font-size: 0.95rem;
    }

    .user-initials {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }

    /* Service Areas */
    .service-areas-section {
        padding-top: 2.5rem;
        padding-bottom: 3rem;
    }

    .service-areas-title {
        font-size: 1.75rem;
    }

    .service-areas-subtitle {
        font-size: 0.9rem;
    }

    .area-card {
        padding: 1.5rem;
    }

    .area-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.6rem;
    }

    .card-label {
        font-size: 0.95rem;
    }

    .card-desc {
        font-size: 0.88rem;
    }

    .service-areas-map-wrapper {
        min-height: 250px;
    }

    /* Final CTA Form */
    .final-cta-section {
        padding: 40px 0;
    }

    .final-cta-container {
        width: 97%;
    }

    .final-cta-form-box {
        padding: 1.5rem 1rem;
    }

    .final-cta-form-box h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    #finalCtaForm {
        gap: 1rem;
    }

    .final-cta-form-box .form-group label {
        font-size: 0.78rem;
    }

    .final-cta-form-box .checkbox-text {
        font-size: 0.75rem;
    }

    /* Studio */
    .studio-title {
        font-size: 1.9rem;
    }

    .studio-description,
    .studio-cta {
        font-size: 0.9rem;
    }

    .studio-map {
        height: 260px;
    }

    .info-label {
        font-size: 0.95rem;
    }

    .info-value {
        font-size: 0.92rem;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    /* Process */
    .process-section {
        padding: 2.5rem 0 2rem;
    }

    .process-title {
        font-size: 1.9rem;
    }

    .process-header-text {
        font-size: 0.9rem;
    }

    .process-image {
        height: 200px;
    }

    .process-card-content {
        padding: 1.5rem 1.25rem 2rem;
    }

    .process-card-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .process-card-content p {
        font-size: 0.92rem;
    }

    /* Footer */
    .footer {
        padding: 2.5rem 0 2rem;
    }

    .footer-top {
        gap: 2rem;
    }

    .footer-col h3 {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }

    .footer-col ul {
        gap: 0.9rem;
    }

    .footer-col ul li a {
        font-size: 0.9rem;
    }

    .business-info p {
        font-size: 0.88rem;
    }

    .footer-bottom-container {
        gap: 1.5rem;
        padding-top: 2rem;
    }

    .copyright p {
        font-size: 0.8rem;
    }

    .social-circle {
        width: 34px;
        height: 34px;
    }

    .footer-social {
        gap: 0.75rem;
    }
}

/* Footer County List & Separator */
.footer-col-wide {
    flex: 1.5 !important;
}

.county-list {
    font-size: 1rem;
    line-height: 2.2;
    color: var(--color-white);
    opacity: 0.8;
    max-width: 400px;
}

.rect-sep {
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: var(--color-white);
    margin: 0 4px;
    vertical-align: middle;
    opacity: 0.5;
}

@media (max-width: 991px) {
    .footer-col-wide {
        flex: 1 !important;
    }
}

/* ==========================================================================
   GLOBAL RESPONSIVE FIXES & STANDARDIZATIONS (APPENDIX)
   ========================================================================== */

/* 1. Unified Site Section Padding */
.site-section {
    padding: 100px 0 !important;
}

@media (max-width: 992px) {
    .site-section {
        padding: 80px 0 !important;
    }
}

@media (max-width: 768px) {
    .site-section {
        padding: 60px 0 !important;
    }
}

/* 2. Unified Button Hover Effect */

.btn-solid,
.btn-outline,
.btn-read-more,
.btn-talk,
.btn-accordion {
    transition: all 0.3s ease !important;
}

.btn-solid:hover,
.btn-outline:hover,
.btn-read-more:hover,
.btn-talk:hover,
.btn-accordion:hover,
.final-cta-form-box .btn-solid:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15) !important;
    opacity: 0.85 !important;
}

/* 4. Fix Footer Layout (from recent BBB/Yelp removal) */
.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

@media (max-width: 768px) {

    h1,
    .hero-title {
        font-size: clamp(2rem, 5vw, 2.5rem) !important;
    }
}

/* ============================
   Instagram Carousel Section
   ============================ */
.insta-carousel-section {
    background-color: var(--color-light-bg);
    padding: 5rem 0 8rem;
    overflow: hidden;
}

/* Header row: title left, arrows right */
.insta-carousel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
    gap: 2rem;
}

.insta-carousel-header-left {
    flex: 1;
}

.insta-carousel-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: 0.75rem;
    line-height: 1.1;
}

.insta-carousel-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: #666;
    max-width: 480px;
}

/* Navigation arrows */
.insta-carousel-nav {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.insta-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-black);
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
    flex-shrink: 0;

    svg {
        width: 24px;
        height: auto;
    }
}

.insta-nav-btn:hover {
    background: #1A1A1A;
    color: #fff;
    transform: scale(1.05);
}

/* The scrollable viewport — clips the track */
.insta-carousel-viewport {
    overflow: hidden;
    width: 100%;
    cursor: grab;
    user-select: none;
}

.insta-carousel-viewport:active {
    cursor: grabbing;
}

/* Track: the flex row of cards, slides via transform */
.insta-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    padding: 0 20px;
}

/* Individual instagram post card */
.insta-post {
    flex: 0 0 calc(25% - 16px);
    min-width: 0;
}

/* Inner wrapper gives us the aspect ratio + border-radius */
.insta-post-inner {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.insta-post-inner:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.insta-post-inner>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.insta-post-inner:hover>img {
    transform: scale(1.04);
}

/* Overlay: darkened gradient from top and bottom */
.insta-post-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.35) 0%,
            transparent 30%,
            transparent 55%,
            rgba(0, 0, 0, 0.65) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.25rem;
    opacity: 1;
    transition: transform 0.35s ease;
}

/* Top-right icon (gallery / video indicator) */
.insta-post-top {
    display: flex;
    justify-content: flex-end;
}

.insta-post-icon {
    color: #fff;
    opacity: 0.9;
    line-height: 0;
}

/* Bottom content: hashtags + engagement */
.insta-post-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.insta-hashtags {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    letter-spacing: 0.02em;
}

.insta-engagement {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.insta-stat {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
}

.insta-stat svg {
    flex-shrink: 0;
}

/* Dot indicators */
.insta-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.insta-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.insta-dot.active {
    background: #1A1A1A;
    transform: scale(1.3);
}

/* ── Responsive ── */
@media (max-width: 1199px) {
    .insta-post {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 900px) {
    .insta-carousel-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 2rem;
    }

    .insta-post {
        flex: 0 0 calc(50% - 10px);
    }

    .insta-carousel-section {
        padding: 3.5rem 0 3rem;
    }
}

@media (max-width: 480px) {
    .insta-post {
        flex: 0 0 calc(90vw - 40px);
    }

    .insta-carousel-track {
        gap: 12px;
    }

    .insta-carousel-title {
        font-size: 1.75rem;
    }

    /* Always show overlay on mobile (no hover) */
    .insta-post-overlay {
        opacity: 1;
    }
}