/* ══════════════════════════════════════════
    RESET & TOKENS
══════════════════════════════════════════ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy-deep: #0D1525;
    --navy-dark: #162038;
    --navy-mid: #243A6A;
    --navy-light: #3A5490;
    --brown-deep: #0D1525;
    --brown-dark: #162038;
    --brown-mid: #243A6A;
    --brown-warm: #3A5490;
    --gold: #C9A030;
    --gold-light: #E0BE55;
    --cream: #EEF2FA;
    --cream-light: #F4F7FD;
    --white: #FAFBFF;
    --text-dark: #0D1525;
    --text-body: #1E2D4A;
    --text-muted: #4A5E82;

    --nav-h: 100px;
    --section-pad: clamp(64px, 8vw, 112px);
    --radius-sm: 6px;
    --radius-md: 14px;
    --radius-lg: 24px;

    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);

    --shadow-card: 0 4px 24px rgba(30, 17, 10, .10), 0 1px 4px rgba(30, 17, 10, .08);
    --shadow-hover: 0 16px 48px rgba(30, 17, 10, .18), 0 4px 12px rgba(30, 17, 10, .10);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--text-body);
    line-height: 1.65;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* ══════════════════════════════════════════
    UTILITY
══════════════════════════════════════════ */
/* .container {
    width: min(1200px, 100% - 48px);
    max-width: none;
    margin-inline: auto;
    padding-left: 0;
    padding-right: 0;
} */

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--brown-dark);
    line-height: 1.2;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .04em;
    cursor: pointer;
    border: none;
    transition: all .3s var(--ease-out-quart);
}

.btn-primary {
    background: var(--gold);
    color: var(--brown-deep);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 149, 74, .35);
    color: var(--brown-deep);
}

.btn-primary:active {
    background: var(--gold-light) !important;
    transform: translateY(0);
    box-shadow: none;
    color: var(--brown-deep) !important;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, .45);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .8);
    transform: translateY(-2px);
    color: var(--white);
}

.btn svg {
    flex-shrink: 0;
}

/* ══════════════════════════════════════════
    SCROLL REVEAL
══════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .7s var(--ease-out-quart), transform .7s var(--ease-out-quart);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .7s var(--ease-out-quart), transform .7s var(--ease-out-quart);
}

.reveal-left.visible {
    opacity: 1;
    transform: none;
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .7s var(--ease-out-quart), transform .7s var(--ease-out-quart);
}

.reveal-right.visible {
    opacity: 1;
    transform: none;
}

.delay-1 {
    transition-delay: .1s;
}

.delay-2 {
    transition-delay: .2s;
}

.delay-3 {
    transition-delay: .3s;
}

.delay-4 {
    transition-delay: .4s;
}

.delay-5 {
    transition-delay: .5s;
}

/* ══════════════════════════════════════════
    NAVIGATION
══════════════════════════════════════════ */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    transition: background .4s ease, box-shadow .4s ease, backdrop-filter .4s ease;
}

#nav.scrolled {
    background: rgba(13, 21, 37, .94);
    backdrop-filter: blur(16px);
    box-shadow: 0 2px 24px rgba(0, 0, 0, .30);
}

#nav .navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    height: 84px;
    width: auto;
    object-fit: contain;
}

.nav-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.nav-logo-text span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
    margin-right: 24px;
    margin-bottom: 0;
}

.nav-links>li>a {
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .03em;
    transition: color .25s;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links>li>a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1.5px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease-out-quart);
}

.nav-links>li>a:hover {
    color: var(--white);
}

.nav-links>li>a:hover::after {
    transform: scaleX(1);
}

.nav-links>li.current-menu-item>a,
.nav-links>li.current-menu-parent>a,
.nav-links>li.current-menu-ancestor>a,
.nav-links>li.current_page_item>a,
.nav-links>li.current_page_parent>a,
.nav-links>li.current_page_ancestor>a {
    color: var(--white);
}

.nav-links>li.current-menu-item>a::after,
.nav-links>li.current-menu-parent>a::after,
.nav-links>li.current-menu-ancestor>a::after,
.nav-links>li.current_page_item>a::after,
.nav-links>li.current_page_parent>a::after,
.nav-links>li.current_page_ancestor>a::after {
    transform: scaleX(1);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    height: 18px;
}

.nav-dropdown-arrow {
    transition: transform .25s var(--ease-out-quart);
    flex-shrink: 0;
}

.nav-dropdown:hover .nav-dropdown-arrow,
.nav-dropdown:focus-within .nav-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: rgba(10, 17, 32, .97);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 160, 48, .2);
    border-radius: 14px;
    padding: 8px;
    min-width: 230px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s var(--ease-out-quart), transform .25s var(--ease-out-quart);
    box-shadow: 0 20px 56px rgba(0, 0, 0, .4);
    z-index: 100;
}

/* little caret */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: rgba(10, 17, 32, .97);
    border-left: 1px solid rgba(201, 160, 48, .2);
    border-top: 1px solid rgba(201, 160, 48, .2);
    border-radius: 2px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, .75);
    transition: background .2s, color .2s;
    white-space: nowrap;
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-dropdown-menu a:hover {
    background: rgba(201, 160, 48, .12);
    color: var(--gold-light);
}

.nav-dropdown-menu a.current-menu-item,
.nav-dropdown-menu a.current_page_item {
    background: rgba(201, 160, 48, .12);
    color: var(--gold-light);
}

.nav-dropdown-menu a svg {
    color: var(--gold);
    flex-shrink: 0;
    opacity: .75;
}

.nav-dropdown-menu a img {
    flex-shrink: 0;
    opacity: .75;
    width: 15px;
    height: 15px;
    object-fit: contain;
}

.nav-dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, .07);
    margin: 4px 8px;
}

.nav-cta {
    padding: 10px 22px;
    font-size: 13px;
    flex-shrink: 0;
}

.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
    width: 44px;
    height: 44px;
}

.nav-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all .3s;
}

/* ══════════════════════════════════════════
    HERO
══════════════════════════════════════════ */
#hero {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    min-height: 100vh;
}

/* ── Hero slideshow ── */
.hero-slides {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.6s ease, transform 8s ease;
    will-change: opacity, transform;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* gradient overlay on top of slides */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg,
            rgba(10, 16, 30, .92) 0%,
            rgba(16, 28, 54, .82) 45%,
            rgba(22, 40, 70, .55) 100%);
    z-index: 1;
}

/* slide indicator dots */
.hero-indicators {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.hero-indicator {
    width: 28px;
    height: 3px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .25);
    cursor: pointer;
    transition: background .35s, width .35s;
    border: none;
    padding: 0;
}

.hero-indicator.active {
    background: var(--gold);
    width: 44px;
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding-top: var(--section-pad);
    padding-bottom: var(--section-pad);
    /*display: grid;
    grid-template-columns: 1fr 420px;
    gap: 56px;
    align-items: center;
    width: 100%;*/
}

.hero-content {
    /* left column */
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 149, 74, .18);
    border: 1px solid rgba(201, 149, 74, .4);
    border-radius: 50px;
    padding: 6px 16px 6px 8px;
    margin-bottom: 28px;
    animation: fadeDown .8s var(--ease-out-quart) both;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

.hero-badge span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    color: var(--gold-light);
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeUp .9s .15s var(--ease-out-quart) both;
}

.hero-title span {
    font-style: normal;
    color: var(--gold-light);
    display: block;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, .72);
    max-width: 520px;
    margin-bottom: 40px;
    font-weight: 300;
    animation: fadeUp .9s .28s var(--ease-out-quart) both;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    animation: fadeUp .9s .38s var(--ease-out-quart) both;
}

/* Hero form card */
.hero-form-card {
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 20px;
    padding: 36px 32px !important;
    animation: fadeUp .9s .4s var(--ease-out-quart) both;
}

.hero-form-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 4px;
}

.hero-form-card p {
    font-size: .82rem;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 22px;
}

.hero-form-card .form-group {
    margin-bottom: 14px;
}

.hero-form-card .form-group label {
    font-size: .78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .65);
    letter-spacing: .04em;
    display: block;
    margin-bottom: 6px;
}

.hero-form-card .form-group input,
.hero-form-card .form-group select,
.hero-form-card .form-group textarea {
    width: 100%;
    padding: 11px 14px;
    background-color: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: .88rem;
    color: var(--white);
    outline: none;
    transition: border-color .25s, background-color .25s;
}

.hero-form-card .form-group input::placeholder,
.hero-form-card .form-group textarea::placeholder {
    color: rgba(255, 255, 255, .35);
}

.hero-form-card .form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 38px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23E0BE55' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 13px;
}

.hero-form-card .form-group select option {
    background: var(--brown-dark);
    color: var(--white);
}

.hero-form-card .form-group input:focus,
.hero-form-card .form-group select:focus,
.hero-form-card .form-group textarea:focus {
    border-color: var(--gold);
    background-color: rgba(255, 255, 255, .12);
}

.hero-form-card .form-group textarea {
    resize: none;
    height: 80px;
}

.hero-form-card .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hero-form-submit {
    width: 100%;
    padding: 13px;
    font-size: 14px;
    border-radius: 8px;
    margin-top: 4px;
    justify-content: center;
}

.hero-form-note {
    text-align: center;
    font-size: .74rem;
    color: rgba(255, 255, 255, .35);
    margin-top: 10px;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 52px;
    right: 48px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .4);
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    animation: fadeUp .9s .7s var(--ease-out-quart) both;
}

.scroll-line {
    width: 1.5px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, .5), transparent);
    animation: scrollLine 2s ease infinite;
}


/* ══════════════════════════════════════════
    SERVICES
══════════════════════════════════════════ */
#services {
    padding: var(--section-pad) 0;
    background: var(--cream-light);
}

.services-header {
    text-align: center;
    margin-bottom: 64px;
}

.services-header p {
    max-width: 520px;
    margin: 16px auto 0;
    color: var(--text-muted);
    font-size: 1.05rem;
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform .4s var(--ease-out-quart), box-shadow .4s var(--ease-out-quart);
    cursor: default;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

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

.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--brown-deep);
}

.service-img-wrap {
    height: 210px;
    overflow: hidden;
    position: relative;
}

.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease-out-quart);
}

.service-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28, 16, 8, .5) 0%, transparent 60%);
}

.service-body {
    padding: 28px;
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(201, 149, 74, .12);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: background .3s, color .3s;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--brown-dark);
    margin-bottom: 10px;
}

.service-card p {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    transition: gap .3s var(--ease-out-quart);
}

.service-link svg {
    transition: transform .3s var(--ease-out-quart);
}

.service-link:hover {
    gap: 10px;
}

.service-link:hover svg {
    transform: translateX(2px);
}

/* ══════════════════════════════════════════
    ABOUT / CRAFTSMANSHIP
══════════════════════════════════════════ */
#about {
    padding: var(--section-pad) 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-hover);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-float {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 220px;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: var(--shadow-hover);
    border: 6px solid var(--white);
}

.about-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-years-badge {
    position: absolute;
    top: 24px;
    left: -24px;
    background: var(--gold);
    color: var(--brown-deep);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(201, 149, 74, .35);
}

.about-years-badge strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.about-years-badge span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
}

.about-content .section-title {
    margin-bottom: 20px;
}

.about-content>p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: .97rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(201, 149, 74, .12);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-feature h4 {
    font-size: .88rem;
    font-weight: 600;
    color: var(--brown-dark);
    margin-bottom: 3px;
}

.about-feature p {
    font-size: .82rem;
    color: var(--text-muted);
}

/* ══════════════════════════════════════════
    GALLERY
══════════════════════════════════════════ */
#gallery-home {
    padding: var(--section-pad) 0;
    background: var(--cream-light);
}

#gallery-home .gallery-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 20px;
}

#gallery-home .gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(4, 240px);
    gap: 16px;
}

#gallery-home .gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

#gallery-home .gallery-item:nth-child(1) {
    grid-column: span 5;
    grid-row: span 2;
}

#gallery-home .gallery-item:nth-child(2) {
    grid-column: span 4;
}

#gallery-home .gallery-item:nth-child(3) {
    grid-column: span 3;
}

#gallery-home .gallery-item:nth-child(4) {
    grid-column: span 3;
}

#gallery-home .gallery-item:nth-child(5) {
    grid-column: span 4;
}

#gallery-home .gallery-item:nth-child(6) {
    grid-column: span 5;
    grid-row: span 2;
}

#gallery-home .gallery-item:nth-child(7) {
    grid-column: span 4;
}

#gallery-home .gallery-item:nth-child(8) {
    grid-column: span 3;
}

#gallery-home .gallery-item:nth-child(9) {
    grid-column: span 3;
}

#gallery-home .gallery-item:nth-child(10) {
    grid-column: span 4;
}

#gallery-home .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease-out-quart);
}

#gallery-home .gallery-item:hover img {
    transform: scale(1.07);
}

#gallery-home .gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 16, 30, .93) 0%, rgba(10, 16, 30, .6) 55%, rgba(10, 16, 30, .1) 100%);
    opacity: 0;
    transition: opacity .4s var(--ease-out-quart);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px 20px 20px;
}

#gallery-home .gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

#gallery-home .gallery-testimonial {
    transform: translateY(12px);
    transition: transform .4s var(--ease-out-quart);
}

#gallery-home .gallery-item:hover .gallery-testimonial {
    transform: none;
}

#gallery-home .gallery-testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 8px;
}

#gallery-home .gallery-testimonial-stars svg {
    color: var(--gold);
}

#gallery-home .gallery-testimonial-quote {
    font-size: .82rem;
    color: rgba(255, 255, 255, .88);
    line-height: 1.6;
    margin-bottom: 12px;
    font-style: italic;
}

#gallery-home .gallery-testimonial-divider {
    height: 1px;
    background: rgba(201, 160, 48, .3);
    margin-bottom: 10px;
}

#gallery-home .gallery-testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#gallery-home .gallery-testimonial-name {
    font-size: .78rem;
    font-weight: 600;
    color: var(--gold-light);
}

#gallery-home .gallery-testimonial-project {
    font-size: .72rem;
    color: rgba(255, 255, 255, .45);
}

/* ══════════════════════════════════════════
    PROCESS
══════════════════════════════════════════ */
#process {
    padding: var(--section-pad) 0;
    background: var(--brown-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

#process::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 160, 48, .08) 0%, transparent 70%);
    pointer-events: none;
}

.process-header {
    text-align: center;
    margin-bottom: 64px;
}

.process-header .section-title {
    color: var(--white);
}

.process-header p {
    color: rgba(255, 255, 255, .6);
    max-width: 480px;
    margin: 12px auto 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.process-steps-c {
    position: relative;
}

@media (min-width: 992px) {
    .process-steps-c::before {
        content: '';
        position: absolute;
        top: 32px;
        left: calc(12.5% + 32px);
        right: calc(12.5% + 32px);
        height: 1.5px;
        background: linear-gradient(to right, transparent, var(--gold), transparent);
    }
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.process-step-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    background: var(--brown-dark);
    position: relative;
    z-index: 1;
    transition: background .3s, color .3s;
}

.process-step:hover .process-step-num {
    background: var(--gold);
    color: var(--brown-deep);
}

.process-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--white);
}

.process-step p {
    font-size: .875rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.65;
}

/* ══════════════════════════════════════════
    TESTIMONIALS
══════════════════════════════════════════ */
#reviews {
    padding: var(--section-pad) 0;
    background: var(--white);
}

.reviews-header {
    text-align: center;
    margin-bottom: 56px;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.stars svg {
    color: var(--gold);
}

.reviews-slider {
    position: relative;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 24px;
    transition: transform .6s var(--ease-in-out-quart);
}

.review-card {
    flex: 0 0 calc(33.333% - 16px);
    background: var(--cream-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1.5px solid rgba(201, 149, 74, .15);
    transition: border-color .3s, box-shadow .3s;
    margin-bottom: 5px;
}

.review-card:hover {
    border-color: rgba(201, 149, 74, .4);
    box-shadow: var(--shadow-card);
}

.review-quote {
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.review-text {
    font-size: .92rem;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 24px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brown-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-light);
    flex-shrink: 0;
}

.review-author-name {
    font-weight: 600;
    font-size: .9rem;
    color: var(--brown-dark);
}

.review-author-loc {
    font-size: .8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.reviews-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
}

.reviews-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(201, 149, 74, .35);
    background: transparent;
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}

.reviews-btn:hover {
    background: var(--gold);
    color: var(--brown-deep);
    border-color: var(--gold);
}

.reviews-dots {
    display: flex;
    gap: 8px;
}

.reviews-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(201, 149, 74, .25);
    transition: background .3s, transform .3s;
    cursor: pointer;
}

.reviews-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* ══════════════════════════════════════════
    CTA BAND
══════════════════════════════════════════ */
#cta {
    padding: var(--section-pad) 0;
    position: relative;
    overflow: hidden;
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-inner .section-label {
    justify-content: center;
}

.cta-inner .section-title {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-inner>p {
    color: rgba(255, 255, 255, .68);
    max-width: 480px;
    margin: 0 auto 40px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.cta-actions svg {
    height: 20px;
    overflow: visible;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-light);
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin: 24px 0 0;
    transition: color .25s;
}

.cta-phone:hover {
    color: var(--white);
}

/* ══════════════════════════════════════════
    CONTACT
══════════════════════════════════════════ */
#contact {
    padding: var(--section-pad) 0;
    background: var(--cream-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--brown-dark);
    margin-bottom: 16px;
}

.contact-info>p {
    color: var(--text-muted);
    margin-bottom: 36px;
    font-size: .95rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(201, 149, 74, .12);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    height: 24px;
    overflow: visible;
}

.contact-detail h4 {
    font-size: .85rem;
    font-weight: 600;
    color: var(--brown-dark);
    margin-bottom: 3px;
}

.contact-detail p,
.contact-detail a {
    font-size: .88rem;
    color: var(--text-muted);
}

.contact-detail a:hover {
    color: var(--gold);
}

.contact-areas {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1.5px solid rgba(201, 149, 74, .15);
}

.contact-areas h4 {
    font-size: .85rem;
    font-weight: 600;
    color: var(--brown-dark);
    margin-bottom: 12px;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.area-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(201, 149, 74, .08);
    border: 1px solid rgba(201, 149, 74, .22);
    border-radius: 50px;
    padding: 4px 12px;
    font-size: .78rem;
    font-weight: 500;
    color: var(--brown-mid);
}

/* Form */
.contact-form {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 40px !important;
    box-shadow: var(--shadow-card);
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--brown-dark);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 18px;
}

.form-group label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--brown-dark);
    letter-spacing: .03em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid rgba(107, 63, 34, .2);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: .9rem;
    color: var(--text-body);
    background-color: var(--white);
    transition: border-color .25s, box-shadow .25s;
    outline: none;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23C9A030' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 13px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 149, 74, .15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    padding: 15px;
    font-size: 15px;
    border-radius: var(--radius-sm);
}

/* ══════════════════════════════════════════
    FOOTER
══════════════════════════════════════════ */
footer {
    background: var(--brown-deep);
    color: rgba(255, 255, 255, .65);
    padding: 56px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .nav-logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: .87rem;
    line-height: 1.7;
    max-width: 260px;
}

.footer-col h4 {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ol,
ul {
    padding-left: 0;
}

.footer-col ul li a {
    font-size: .87rem;
    transition: color .25s;
}

.footer-col ul li a:hover {
    color: var(--gold-light);
}

.footer-col ul li.current-menu-item a,
.footer-col ul li.current-menu-parent a,
.footer-col ul li.current-menu-ancestor a,
.footer-col ul li.current_page_item a,
.footer-col ul li.current_page_parent a,
.footer-col ul li.current_page_ancestor a {
    color: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .8rem;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-bottom a:hover {
    color: var(--gold-light);
}

.footer-bottom a.current-menu-item,
.footer-bottom a.current_page_item {
    color: var(--gold-light);
}

/* ══════════════════════════════════════════
    MOBILE NAV DRAWER
══════════════════════════════════════════ */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 950;
    display: flex;
    pointer-events: none;
}

.mobile-nav-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    opacity: 0;
    transition: opacity .35s;
}

.mobile-nav-drawer {
    position: absolute;
    top: 0;
    right: 0;
    width: min(340px, 85vw);
    height: 100%;
    background: var(--brown-deep);
    padding: 32px 28px;
    transform: translateX(100%);
    transition: transform .35s var(--ease-out-quart);
    overflow-y: auto;
}

.mobile-nav.open {
    pointer-events: auto;
}

.mobile-nav.open .mobile-nav-backdrop {
    opacity: 1;
}

.mobile-nav.open .mobile-nav-drawer {
    transform: none;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, .7);
    cursor: pointer;
    padding: 8px;
}

.mobile-nav-links {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-links a {
    display: block;
    padding: 14px 0;
    color: rgba(255, 255, 255, .8);
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    transition: color .25s;
}

.mobile-nav-links a:hover {
    border: 0;
}

.mobile-nav-links .btn {
    margin-top: 24px;
    width: 100%;
    justify-content: center;
}

.mobile-dropdown-items {
    border-left: 2px solid rgba(201, 160, 48, .3);
    margin: -4px 0 4px 8px;
}

.mobile-sub-link {
    display: block !important;
    padding: 8px 16px !important;
    font-size: .85rem !important;
    color: rgba(255, 255, 255, .55) !important;
    border-bottom: none !important;
}

.mobile-sub-link:hover {
    color: var(--gold-light) !important;
}

/* ══════════════════════════════════════════
    KEYFRAMES
══════════════════════════════════════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .6;
        transform: scale(.8);
    }
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}


/* ══════════════════════════════════════════
       PAGE HERO
    ══════════════════════════════════════════ */
#work-hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(110deg, rgba(10, 16, 30, .93) 0%, rgba(16, 28, 54, .82) 50%, rgba(22, 40, 70, .65) 100%),
        url('../images/pictures/photo-31.jpeg') center/cover no-repeat;
    padding-top: var(--nav-h);
    padding-bottom: var(--nav-h);
}

.work-hero-inner {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 28px;
}

.breadcrumb a {
    transition: color .2s;
}

.breadcrumb a:hover {
    color: var(--gold-light);
}

.breadcrumb svg {
    flex-shrink: 0;
    opacity: .5;
}

.work-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    animation: fadeUp .8s .1s both;
}

.work-hero-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .72);
    max-width: 560px;
    line-height: 1.7;
    animation: fadeUp .8s .22s both;
}

/* ══════════════════════════════════════════
       FILTER BAR
    ══════════════════════════════════════════ */
#work-filter {
    padding: 48px 0 0;
    background: var(--cream-light);
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.filter-btn {
    padding: 11px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    border: 1.5px solid rgba(36, 58, 106, .15);
    background: var(--white);
    color: var(--text-muted);
    cursor: pointer;
    transition: all .25s var(--ease-out-quart);
}

.filter-btn:hover {
    border-color: var(--gold);
    color: var(--navy-dark);
}

.filter-btn.active {
    background: var(--navy-deep);
    border-color: var(--navy-deep);
    color: var(--white);
}

.filter-count {
    display: block;
    text-align: center;
    margin-top: 20px;
    font-size: .82rem;
    color: var(--text-muted);
}

/* ══════════════════════════════════════════
       WORK GRID
    ══════════════════════════════════════════ */
#work-grid-section {
    padding: 40px 0 var(--radius-lg);
    background: var(--cream-light);
    padding-bottom: 96px;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.work-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-card);
    opacity: 0;
    animation: fadeUp .6s var(--ease-out-quart) both;
}

.work-item.is-hidden {
    display: none;
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease-out-quart);
}

.work-item:hover img {
    transform: scale(1.07);
}

.work-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 16, 30, .94) 0%, rgba(10, 16, 30, .55) 48%, rgba(10, 16, 30, .05) 100%);
    opacity: 0;
    transition: opacity .35s var(--ease-out-quart);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.work-item:hover .work-item-overlay {
    opacity: 1;
}

.work-item-category {
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 8px;
}

.work-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.08rem;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.25;
}

.work-item-desc {
    font-size: .82rem;
    color: rgba(255, 255, 255, .82);
    line-height: 1.55;
}

@media (hover: none) {
    .work-item-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(10, 16, 30, .92) 0%, rgba(10, 16, 30, .5) 55%, rgba(10, 16, 30, 0) 100%);
    }
}

/* ══════════════════════════════════════════
       SERVICE HERO
    ══════════════════════════════════════════ */
#service-hero {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    padding-top: var(--nav-h);
}

.service-hero-inner {
    padding-bottom: var(--nav-h);
    position: relative;
    z-index: 2;
    flex: 1;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 24px;
    letter-spacing: .04em;
}

.breadcrumb a {
    color: rgba(255, 255, 255, .5);
    transition: color .2s;
}

.breadcrumb a:hover {
    color: var(--gold-light);
}

.breadcrumb svg {
    flex-shrink: 0;
}

.service-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 160, 48, .15);
    border: 1px solid rgba(201, 160, 48, .35);
    border-radius: 50px;
    padding: 5px 14px;
    margin-bottom: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.service-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 680px;
}

.service-hero-sub {
    font-size: clamp(.95rem, 1.5vw, 1.1rem);
    color: rgba(255, 255, 255, .7);
    max-width: 560px;
    margin-bottom: 36px;
    font-weight: 300;
}

.service-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.service-hero-actions .btn-outline svg {
    height: 20px;
    overflow: visible;
}

/* Quick facts strip */
.service-facts {
    position: relative;
    z-index: 2;
    background: rgba(10, 16, 30, .7);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(201, 160, 48, .15);
}

.service-facts .container {
    display: flex;
    align-items: stretch;
    min-height: 68px;
}

.service-fact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    flex: 1;
    border-right: 1px solid rgba(255, 255, 255, .07);
}

.service-fact:last-child {
    border-right: none;
}

.service-fact svg {
    color: var(--gold);
    flex-shrink: 0;
}

.service-fact-text strong {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: var(--white);
}

.service-fact-text span {
    font-size: .75rem;
    color: rgba(255, 255, 255, .45);
}

/* ══════════════════════════════════════════
       WHAT'S INCLUDED
    ══════════════════════════════════════════ */
#included {
    padding: 96px 0 80px;
    background: var(--white);
}

.included-header {
    text-align: center;
    margin-bottom: 60px;
}

.included-header p {
    max-width: 520px;
    margin: 14px auto 0;
    color: var(--text-muted);
    font-size: 1rem;
}

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

.included-card {
    background: var(--cream-light);
    border: 1.5px solid rgba(36, 58, 106, .1);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: border-color .3s, box-shadow .3s, transform .3s var(--ease-out-quart);
}

.included-card:hover {
    border-color: rgba(201, 160, 48, .4);
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.included-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(201, 160, 48, .12);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: background .3s, color .3s;
}

.included-card:hover .included-icon {
    background: var(--gold);
    color: var(--navy-deep);
}

.included-card:hover .included-icon svg path {
    stroke: var(--navy-deep);
}

.included-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--navy-dark);
    margin-bottom: 10px;
}

.included-card p {
    font-size: .875rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ══════════════════════════════════════════
       WHY US
    ══════════════════════════════════════════ */
#why-us {
    padding: 80px 0;
    background: var(--navy-dark);
    position: relative;
    overflow: hidden;
}

#why-us::before {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 160, 48, .07) 0%, transparent 70%);
    pointer-events: none;
}

.why-us-header {
    text-align: center;
    margin-bottom: 52px;
}

.why-us-header .section-title {
    color: var(--white);
}

.why-us-header p {
    color: rgba(255, 255, 255, .55);
    max-width: 480px;
    margin: 12px auto 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.why-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: background .3s, border-color .3s;
    text-align: center;
}

.why-card:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(201, 160, 48, .25);
}

.why-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: background .3s, color .3s;
}

.why-card:hover .why-card-icon {
    background: var(--gold);
    color: var(--navy-deep);
}

.why-card:hover .why-card-icon svg path {
    stroke: var(--navy-deep);
}

.why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 12px;
}

.why-card p {
    font-size: .875rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.7;
}

/* ══════════════════════════════════════════
       PROCESS
    ══════════════════════════════════════════ */
#process-2 {
    padding: 96px 0;
    background: var(--cream-light);
}

#process-2 .process-header {
    text-align: center;
    margin-bottom: 60px;
}

#process-2 .section-title {

    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1.2;
}

#process-2 .process-header p {
    max-width: 480px;
    margin: 12px auto 0;
    color: var(--text-muted);
}

#process-2 .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

#process-2 .process-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(12.5% + 32px);
    right: calc(12.5% + 32px);
    height: 1.5px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

#process-2 .process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
    margin-top: 0;
}

#process-2 .process-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    background: var(--cream-light);
    position: relative;
    z-index: 1;
    transition: background .3s, color .3s;
}

#process-2 .process-step:hover .process-num {
    background: var(--gold);
    color: var(--navy-deep);
}

#process-2 .process-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--navy-dark);
}

#process-2 .process-step p {
    font-size: .855rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ══════════════════════════════════════════
       GALLERY
    ══════════════════════════════════════════ */
#gallery {
    padding: 96px 0;
    background: var(--white);
}

.gallery-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 20px;
}

#gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 360px;
    gap: 16px;
}

#gallery .gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

#gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#gallery .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 16, 30, .93) 0%, rgba(10, 16, 30, .6) 55%, rgba(10, 16, 30, .1) 100%);
    opacity: 0;
    transition: opacity .4s var(--ease-out-quart);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px 20px 20px;
    color: var(--white);
}

#gallery .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

#gallery .gallery-testimonial {
    transform: translateY(12px);
    transition: transform .4s var(--ease-out-quart);
}

#gallery .gallery-item:hover .gallery-testimonial {
    transform: none;
}

#gallery .gallery-testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 8px;
}

#gallery .gallery-testimonial-stars svg {
    color: var(--gold);
}

#gallery .gallery-testimonial-quote {
    font-size: .82rem;
    color: rgba(255, 255, 255, .88);
    line-height: 1.6;
    margin-bottom: 12px;
    font-style: italic;
}

#gallery .gallery-testimonial-divider {
    height: 1px;
    background: rgba(201, 160, 48, .3);
    margin-bottom: 10px;
}

#gallery .gallery-testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#gallery .gallery-testimonial-name {
    font-size: .78rem;
    font-weight: 600;
    color: var(--gold-light);
}

#gallery .gallery-testimonial-project {
    font-size: .72rem;
    color: rgba(255, 255, 255, .45);
}

/* ══════════════════════════════════════════
       FAQ
    ══════════════════════════════════════════ */
#faq {
    padding: 96px 0;
    background: var(--cream-light);
}

.faq-header {
    text-align: center;
    margin-bottom: 56px;
}

.faq-header p {
    max-width: 480px;
    margin: 12px auto 0;
    color: var(--text-muted);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1.5px solid rgba(36, 58, 106, .1);
    overflow: hidden;
    transition: border-color .3s;
}

.faq-item.open {
    border-color: rgba(201, 160, 48, .4);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
}

.faq-question span {
    font-weight: 600;
    font-size: .95rem;
    color: var(--navy-dark);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(201, 160, 48, .1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .3s var(--ease-out-quart), background .3s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--gold);
    color: var(--navy-deep);
}

.faq-item.open .faq-icon svg {
    stroke: var(--navy-deep);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease-out-quart);
}

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

/* ══════════════════════════════════════════
       Kitchen cta
    ══════════════════════════════════════════ */
#cta-kitchen {
    padding: 96px 0;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(13, 21, 37, .94) 0%, rgba(36, 58, 106, .88) 100%),
        url('../images/pictures/photo-15.jpeg') center/cover no-repeat;
}

#cta-bathroom {
    padding: 96px 0;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(13, 21, 37, .94) 0%, rgba(36, 58, 106, .88) 100%),
        url('../images/pictures/photo-12.jpeg') center/cover no-repeat;
}

#cta-cab {
    padding: 96px 0;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(13, 21, 37, .94) 0%, rgba(36, 58, 106, .88) 100%),
        url('../images/pictures/photo-41.jpeg') center/cover no-repeat;
}

.gallery-grid-cab {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 260px 260px;
    gap: 16px;
}

.gallery-grid-cab .gallery-item:first-child {
    grid-row: span 2;
}

#cta-carp {
    padding: 96px 0;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(13, 21, 37, .94) 0%, rgba(36, 58, 106, .88) 100%),
        url('../images/pictures/photo-28.jpeg') center/cover no-repeat;
}

#cta-workout {
    padding: 96px 0;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(13, 21, 37, .94) 0%, rgba(36, 58, 106, .88) 100%),
        url('../images/pictures/photo-04.jpeg') center/cover no-repeat;
}

#cta-window {
    padding: 96px 0;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(13, 21, 37, .94) 0%, rgba(36, 58, 106, .88) 100%),
        url('../images/pictures/photo-07.jpeg') center/cover no-repeat;
}

#cta-garden {
    padding: 96px 0;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(13, 21, 37, .94) 0%, rgba(36, 58, 106, .88) 100%),
        url('../images/pictures/photo-17.jpeg') center/cover no-repeat;
}


.kitchen-hero {
    background:
        linear-gradient(110deg, rgba(10, 16, 30, .93) 0%, rgba(16, 28, 54, .82) 50%, rgba(22, 40, 70, .65) 100%),
        url('../images/pictures/photo-11.jpeg') center/cover no-repeat;
}

.bath-hero {
    background:
        linear-gradient(110deg, rgba(10, 16, 30, .93) 0%, rgba(16, 28, 54, .82) 50%, rgba(22, 40, 70, .65) 100%),
        url('../images/pictures/photo-01.jpeg') center/cover no-repeat;
}

.cabi-hero {
    background:
        linear-gradient(110deg, rgba(10, 16, 30, .93) 0%, rgba(16, 28, 54, .82) 50%, rgba(22, 40, 70, .65) 100%),
        url('../images/pictures/photo-04.jpeg') center/cover no-repeat;
}

.carpen-hero {
    background:
        linear-gradient(110deg, rgba(10, 16, 30, .93) 0%, rgba(16, 28, 54, .82) 50%, rgba(22, 40, 70, .65) 100%),
        url('../images/pictures/photo-39.jpeg') center/cover no-repeat;
}

.window-hero {
    background:
        linear-gradient(110deg, rgba(10, 16, 30, .93) 0%, rgba(16, 28, 54, .82) 50%, rgba(22, 40, 70, .65) 100%),
        url('../images/pictures/photo-02.jpeg') center/cover no-repeat;
}

.garden-hero {
    background:
        linear-gradient(110deg, rgba(10, 16, 30, .93) 0%, rgba(16, 28, 54, .82) 50%, rgba(22, 40, 70, .65) 100%),
        url('../images/pictures/photo-16.jpeg') center/cover no-repeat;
}


/* ══════════════════════════════════════════
       PAGE HERO
    ══════════════════════════════════════════ */
#page-hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(110deg, rgba(10, 16, 30, .93) 0%, rgba(16, 28, 54, .82) 50%, rgba(22, 40, 70, .65) 100%),
        url('../images/pictures/photo-27.jpeg') center/cover no-repeat;
    padding-top: var(--nav-h);
    padding-bottom: var(--nav-h);
}

.page-hero-inner {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 28px;
}

.breadcrumb a {
    transition: color .2s;
}

.breadcrumb a:hover {
    color: var(--gold-light);
}

.breadcrumb svg {
    flex-shrink: 0;
    opacity: .5;
}

.page-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4.6vw, 3.4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 18px;
    animation: fadeUp .8s .1s both;
}

.page-hero-sub {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, .72);
    max-width: 560px;
    line-height: 1.7;
    animation: fadeUp .8s .22s both;
}

/* ══════════════════════════════════════════
       CONTACT
    ══════════════════════════════════════════ */
#contact {
    padding: 88px 0;
    background: var(--cream-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    color: var(--navy-dark);
    margin-bottom: 16px;
}

.contact-info>p {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: .95rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(201, 160, 48, .12);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail h4 {
    font-size: .85rem;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 3px;
}

.contact-detail p,
.contact-detail a {
    font-size: .88rem;
    color: var(--text-muted);
}

.contact-detail a:hover {
    color: var(--gold);
}

.contact-areas {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1.5px solid rgba(201, 160, 48, .15);
    margin-bottom: 24px;
}

.contact-areas h4 {
    font-size: .85rem;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 12px;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.area-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(201, 160, 48, .08);
    border: 1px solid rgba(201, 160, 48, .22);
    border-radius: 50px;
    padding: 4px 12px;
    font-size: .78rem;
    font-weight: 500;
    color: var(--navy-mid);
}

.contact-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1.5px solid rgba(201, 160, 48, .15);
}

.contact-map iframe {
    width: 100%;
    height: 280px;
    border: 0;
    display: block;
}

/* ══════════════════════════════════════════
       FAQ
    ══════════════════════════════════════════ */
#faq {
    padding: 88px 0;
    background: var(--white);
}

.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-header p {
    max-width: 500px;
    margin: 14px auto 0;
    color: var(--text-muted);
    font-size: 1rem;
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--cream-light);
    border-radius: var(--radius-md);
    border: 1.5px solid rgba(201, 160, 48, .15);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: .95rem;
    font-weight: 600;
    color: var(--navy-dark);
    font-family: 'Inter', sans-serif;
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform .3s var(--ease-out-quart);
    color: var(--gold);
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease-out-quart);
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 240px;
}

/* ══════════════════════════════════════════
       CTA BAND
    ══════════════════════════════════════════ */
#cta-contact {
    padding: 96px 0;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(13, 21, 37, .94) 0%, rgba(36, 58, 106, .88) 100%),
        url('../images/pictures/photo-04.jpeg') center/cover no-repeat;
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-inner .section-label {
    justify-content: center;
}

.cta-inner .section-title {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-inner>p {
    color: rgba(255, 255, 255, .65);
    max-width: 460px;
    margin: 0 auto 36px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--gold-light);
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-top: 24px;
    transition: color .25s;
}

.cta-phone:hover {
    color: var(--white);
}

.cta-phone svg {
    height: 30px;
    overflow: visible;
}

/* ══════════════════════════════════════════
    RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .about-images {
        max-width: 480px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .review-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-form-card {
        max-width: 520px;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-h: 64px;
    }

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

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    #hero {
        padding-top: calc(var(--nav-h) + 28px);
        padding-bottom: 40px;
        align-items: flex-start;
    }

    .hero-scroll-hint {
        display: none;
    }

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

    #gallery-home .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    #gallery-home .gallery-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        height: 180px;
    }

    .work-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 12px;
    }

    #process-2 .process-steps {
        grid-template-columns: 1fr 1fr;
    }

    #process-2 .process-steps::before {
        display: none;
    }

    .review-card {
        flex: 0 0 calc(100% - 0px);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-img-float {
        right: 0;
        bottom: -24px;
        width: 160px;
    }

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

    .service-facts .container {
        flex-wrap: wrap;
        flex-direction: column;
    }

    #gallery .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    #gallery .gallery-item {
        height: 240px;
    }
}

@media (max-width: 480px) {
    #gallery-home .gallery-grid {
        grid-template-columns: 1fr;
    }

    #gallery-home .gallery-item {
        height: 220px;
    }

    .about-years-badge {
        left: 0;
    }

    #process-2 .process-steps {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 24px 20px;
    }

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

/* ══════════════════════════════════════════
    BOOTSTRAP GRID INTEGRATION
    (these containers keep their own CSS-grid layout;
    this just cancels Bootstrap's .row gutter margins/padding
    so the two systems don't fight)
══════════════════════════════════════════ */
.hero-inner.row,
.services-grid.row,
.about-grid.row,
.about-features.row,
.process-steps.row,
.contact-grid.row,
.footer-grid.row,
.form-row.row {
    --bs-gutter-x: 0;
    margin-left: 0;
    margin-right: 0;
}

.hero-inner.row>.col-lg-7,
.hero-inner.row>.col-lg-5,
.services-grid.row>.col,
.about-grid.row>.col-lg-6,
.about-features.row>.col,
.process-steps.row>.col,
.contact-grid.row>.col-lg-6,
.footer-grid.row>[class*="col-"],
.form-row.row>[class*="col-"] {
    padding-left: 0;
    padding-right: 0;
    width: auto;
    max-width: none;
    flex: none;
}

#blank-content {
    min-height: 500px;
}

.field-err .error-msg,
.response .error-msg,
.response .success-msg {
    margin: 10px 0 0;
}

.field-err .error-msg p,
.response .error-msg p,
.response .success-msg p {
    margin-bottom: 0;
    font-size: 14px;
    padding: 10px;
    border-radius: 4px;
    color: #fff;
}

.field-err .error-msg p,
.response .error-msg p {
    background: #d63637;
}

.response .success-msg p {
    background: #1A6B3A;
}

.g-recaptcha {
    display: flex;
    align-content: center;
    justify-content: center;
}