*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bark: #2E2318;
    --bark-mid: #4A3828;
    --umber: #7A5C3E;
    --sand: #C4A882;
    --sand-light: #DDD0BC;
    --parchment: #F5EFE4;
    --linen: #FBF8F3;
    --sage: #6B7A5A;
    --sage-light: #EBF0E4;
    --rust: #A05C35;
    --rule: rgba(46, 35, 24, 0.12);
    --serif: 'Playfair Display', serif;
    --sans: 'Jost', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    background: var(--linen);
    color: var(--bark);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
}

.nav-top {
    background: var(--parchment);
    height: 140px;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 4rem;
    position: relative;
    justify-content: flex-end;
}

.nav-logo {
    position: absolute;
    top: 50%;
    left: 4rem;
    transform: translateY(-50%);
    z-index: 101;
    text-decoration: none;
    display: block;
}

.nav-logo img {
    width: 180px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--umber);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--bark);
}

.nav-cta {
    padding: 0.55rem 1.35rem;
    background: var(--rust) !important;
    color: var(--linen) !important;
    border-radius: 30px;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 102;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background: var(--rust);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
}

/* HERO */
.hero {
    min-height: 100vh;
    background: var(--parchment);
    display: grid;
    grid-template-columns: 55% 45%;
    position: relative;
    overflow: hidden;
}

.hero-left {
    padding: 12rem 4rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
}

.hero-contact-strip {
    margin-bottom: 1in;
}

.hero-contact-rule {
    width: 100%;
    height: 1.5px;
    background: var(--rust);
    margin-top: 0.25in;
    margin-bottom: 0.2rem;
}

.hero-contact-info {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    justify-content: space-between;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    color: var(--umber);
    font-weight: 300;
    white-space: normal;
    flex-wrap: wrap;
}

.hero-contact-info a {
    color: var(--umber);
    text-decoration: none;
    transition: color 0.2s;
}

.hero-contact-info a:hover {
    color: var(--rust);
}

.hero-contact-sep {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--rust);
    flex-shrink: 0;
}

.hero h1 {
    font-family: var(--serif);
    font-size: clamp(2.75rem, 4.5vw, 4.25rem);
    font-weight: 400;
    line-height: 1.12;
    color: var(--bark);
    margin-bottom: 1.75rem;
}

.hero h1 em {
    font-style: italic;
    color: var(--rust);
}

.hero-body {
    font-size: 1rem;
    color: var(--umber);
    max-width: 42ch;
    line-height: 1.85;
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.btn-bark {
    display: inline-block;
    padding: 0.9rem 2.25rem;
    background: var(--bark);
    color: var(--linen);
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 400;
    text-decoration: none;
    transition: background 0.25s;
    border-radius: 40px;
}

.btn-bark:hover {
    background: var(--bark-mid);
}

.btn-ghost {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--umber);
    text-decoration: none;
    border-bottom: 1px solid var(--sand);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
    color: var(--rust);
    border-color: var(--rust);
}

.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-right img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: rgba(46, 35, 24, 0.85);
}

.stat {
    padding: 1.5rem 1.5rem;
    border-right: 0.5px solid rgba(196, 168, 130, 0.2);
    text-align: center;
}

.stat:last-child {
    border-right: none;
}

.stat-num {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--linen);
    line-height: 1;
}

.stat-label {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sand);
    margin-top: 0.3rem;
}

/* MARQUEE */
.marquee-bar {
    background: var(--bark);
    padding: 0.85rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-inner {
    display: inline-flex;
    animation: marquee 35s linear infinite;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sand);
    padding: 0 2.5rem;
}

.marquee-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--rust);
    flex-shrink: 0;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ABOUT */
.about {
    background: var(--linen);
    padding: 80px 60px;
}

.about-container {
    max-width: 1300px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-badge {
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--rust);
    display: inline-block;
    margin-bottom: 16px;
    position: relative;
}

.about-badge::before,
.about-badge::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--rust);
    position: absolute;
    top: 50%;
    opacity: 0.4;
}

.about-badge::before { left: -40px; }
.about-badge::after { right: -40px; }

.about-header h2 {
    font-family: var(--serif);
    font-size: 44px;
    font-weight: 400;
    color: var(--bark);
    line-height: 1.2;
}

.about-header h2 span {
    font-style: italic;
    color: var(--rust);
    display: inline-block;
    position: relative;
}

.about-header h2 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--rust);
    opacity: 0.3;
}

.about-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.about-image {
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about-image:hover img { transform: scale(1.02); }

.years-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--rust);
    color: white;
    padding: 8px 18px;
    border-radius: 40px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

.about-details {
    flex: 1.2;
}

.about-desc {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.75;
    color: var(--umber);
    margin-bottom: 20px;
    font-weight: 300;
}

.about-quote-block {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: var(--parchment);
    padding: 25px;
    border-radius: 16px;
    margin: 30px 0;
    border-left: 4px solid var(--rust);
}

.about-quote-block p {
    font-family: var(--serif);
    font-size: 20px;
    font-style: italic;
    color: var(--bark);
    margin: 0;
    line-height: 1.4;
}

.about-service-area {
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.7;
    color: var(--sage);
    margin: 20px 0 30px;
    padding: 15px 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}

.creds-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cred {
    display: flex;
    align-items: baseline;
    gap: 12px;
    font-family: var(--sans);
    font-size: 14px;
    color: var(--umber);
    padding: 6px 0;
}

.cred-symbol {
    color: var(--rust);
    font-weight: 500;
    font-size: 16px;
}

/* TESTIMONIALS */
.testimonials {
    background: var(--parchment);
    padding: 80px 60px;
}

.testimonials-container {
    max-width: 1300px;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-badge {
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--rust);
    display: inline-block;
    margin-bottom: 16px;
    position: relative;
}

.testimonials-badge::before,
.testimonials-badge::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--rust);
    position: absolute;
    top: 50%;
    opacity: 0.4;
}

.testimonials-badge::before { left: -40px; }
.testimonials-badge::after { right: -40px; }

.testimonials-header h2 {
    font-family: var(--serif);
    font-size: 44px;
    font-weight: 400;
    color: var(--bark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.testimonials-header h2 span { font-style: italic; color: var(--rust); }

.testimonials-rule {
    width: 60px;
    height: 2px;
    background: var(--rust);
    margin: 0 auto;
}

.testimonials-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.testimonials-image {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.25);
}

.testimonials-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.testimonials-image:hover img { transform: scale(1.03); }

.project-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(46, 35, 24, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-badge span:first-child {
    font-family: var(--serif);
    font-size: 16px;
    color: var(--linen);
    font-weight: 500;
}

.project-badge span:last-child {
    font-family: var(--sans);
    font-size: 12px;
    color: var(--sand);
    letter-spacing: 1px;
}

.testimonials-content {
    flex: 1.2;
}

.testimonial-text {
    font-family: var(--serif);
    font-size: 22px;
    line-height: 1.5;
    color: var(--bark);
    font-weight: 400;
    margin-bottom: 35px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    padding-top: 20px;
    border-top: 1px solid var(--rule);
}

.author-info h4 {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 500;
    color: var(--bark);
    margin-bottom: 5px;
}

.author-info p {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--umber);
}

.houzz-rating {
    display: inline-block;
    margin-left: 8px;
    color: var(--rust);
    font-weight: 500;
}

.testimonial-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: var(--linen);
    padding: 1.25rem 2rem;
    border-radius: 60px;
    border: 1px solid var(--rule);
    width: auto;
    max-width: 100%;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-align: center;
}

.stat-number {
    font-family: var(--serif);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--rust);
    line-height: 1.2;
    white-space: nowrap;
}

.stat-item .stat-label {
    font-family: var(--sans);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--umber);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 2rem;
    background: var(--rule);
}

/* SERVICES */
.services {
    background: var(--linen);
    padding: 80px 60px;
}

.services-container {
    max-width: 1300px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-badge {
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--rust);
    display: inline-block;
    margin-bottom: 16px;
    position: relative;
}

.services-badge::before,
.services-badge::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--rust);
    position: absolute;
    top: 50%;
    opacity: 0.4;
}

.services-badge::before { left: -40px; }
.services-badge::after { right: -40px; }

.services-header h2 {
    font-family: var(--serif);
    font-size: 44px;
    font-weight: 400;
    color: var(--bark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.services-header h2 span { font-style: italic; color: var(--rust); }

.services-subtitle {
    font-family: var(--serif);
    font-size: 18px;
    color: var(--umber);
    margin-bottom: 20px;
    font-style: italic;
}

.services-rule {
    width: 60px;
    height: 2px;
    background: var(--rust);
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
    margin-bottom: 60px;
}

.service-card {
    padding: 30px;
    background: var(--parchment);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--rule);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--rust);
    transition: height 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before { height: 100%; }

.service-number {
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 400;
    color: var(--rust);
    opacity: 0.5;
    margin-bottom: 20px;
    line-height: 1;
}

.service-title {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--bark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-description {
    font-family: var(--sans);
    font-size: 14px;
    line-height: 1.7;
    color: var(--umber);
    font-weight: 300;
}

.services-cta {
    background: var(--parchment);
    border-radius: 20px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border: 1px solid var(--rule);
}

.cta-icon {
    font-size: 48px;
    color: var(--rust);
    font-family: var(--serif);
    flex-shrink: 0;
}

.cta-content {
    flex: 1;
}

.cta-content h3 {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
    color: var(--bark);
    margin-bottom: 8px;
}

.cta-content p {
    font-family: var(--sans);
    font-size: 15px;
    color: var(--umber);
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    padding: 12px 28px;
    background: var(--rust);
    color: var(--linen);
    font-family: var(--sans);
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 400;
    border-radius: 40px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.cta-button:hover {
    background: var(--bark);
    transform: translateX(5px);
}

/* TESTIMONIALS 2 */
.testimonials-two {
    background: var(--linen);
    padding: 80px 60px;
}

.testimonials-two-container {
    max-width: 1300px;
    margin: 0 auto;
}

.testimonials-two-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    background: var(--parchment);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

.testimonials-two-image {
    flex: 1;
    position: relative;
    min-height: 450px;
    overflow: hidden;
}

.testimonials-two-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.testimonials-two-image:hover img { transform: scale(1.05); }

.image-overlay-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--rust);
    color: var(--linen);
    padding: 6px 16px;
    border-radius: 30px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.testimonials-two-content {
    flex: 1.2;
    padding: 50px 50px 50px 0;
}

.testimonials-two-text {
    font-family: var(--serif);
    font-size: 22px;
    line-height: 1.5;
    color: var(--bark);
    font-weight: 400;
    margin-bottom: 35px;
    font-style: italic;
}

.testimonials-two-author {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.author-line {
    width: 50px;
    height: 2px;
    background: var(--rust);
}

.author-details h4 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--bark);
    margin-bottom: 6px;
}

.author-details p {
    font-family: var(--sans);
    font-size: 14px;
    color: var(--umber);
}

.rating-angi {
    display: inline-block;
    margin-left: 10px;
    color: var(--rust);
    font-weight: 500;
}

.trust-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--linen);
    padding: 8px 18px;
    border-radius: 40px;
    border: 1px solid var(--rule);
    transition: all 0.2s ease;
}

.badge:hover {
    border-color: var(--rust);
    transform: translateY(-2px);
}

.badge-text {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    color: var(--umber);
}

/* PORTFOLIO */
.portfolio {
    background: var(--linen);
    padding: 80px 60px;
}

.portfolio-container {
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 60px;
}

.portfolio-badge {
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--rust);
    display: inline-block;
    margin-bottom: 16px;
    position: relative;
}

.portfolio-badge::before,
.portfolio-badge::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--rust);
    position: absolute;
    top: 50%;
    opacity: 0.4;
}

.portfolio-badge::before { left: -40px; }
.portfolio-badge::after { right: -40px; }

.portfolio-header h2 {
    font-family: var(--serif);
    font-size: 44px;
    font-weight: 400;
    color: var(--bark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.portfolio-header h2 span {
    font-style: italic;
    color: var(--rust);
}

.portfolio-rule {
    width: 60px;
    height: 2px;
    background: var(--rust);
    margin: 0 auto;
}

.portfolio-categories-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    text-align: center;
    padding: 0 1rem;
}

.category-title-item {
    font-family: var(--sans);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--umber);
    font-weight: 500;
    white-space: nowrap;
}

.category-sep {
    color: var(--rust);
    font-size: 0.7rem;
    opacity: 0.6;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.portfolio-item {
    position: relative;
    cursor: pointer;
}

.portfolio-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--parchment);
    box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.2);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    width: 100%;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 35, 24, 0.95) 0%, rgba(74, 56, 40, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    padding: 20px;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.portfolio-card:hover .overlay-content {
    transform: translateY(0);
}

.project-title {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 500;
    color: var(--linen);
    margin-bottom: 6px;
}

.project-location {
    font-family: var(--sans);
    font-size: 12px;
    color: var(--sand);
    margin-bottom: 15px;
}

.view-btn {
    background: transparent;
    border: 2px solid var(--rust);
    padding: 8px 20px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--rust);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px;
    text-transform: uppercase;
}

.view-btn:hover {
    background: var(--rust);
    color: var(--linen);
    transform: translateX(3px);
}

/* TESTIMONIALS 3 */
.testimonials-three {
    background: var(--parchment);
    padding: 80px 60px;
}

.testimonials-three-container {
    max-width: 1300px;
    margin: 0 auto;
}

.testimonials-three-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    background: var(--linen);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--rule);
}

.testimonials-three-content {
    flex: 1.2;
    padding: 50px;
}

.testimonials-three-text {
    font-family: var(--serif);
    font-size: 20px;
    line-height: 1.55;
    color: var(--bark);
    font-weight: 400;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonials-three-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-top: 15px;
    border-top: 1px solid var(--rule);
}

.author-info-three h4 {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 500;
    color: var(--bark);
    margin-bottom: 4px;
}

.author-info-three p {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--umber);
}

.angi-rating {
    display: inline-block;
    margin-left: 8px;
    color: var(--rust);
    font-weight: 500;
}

.trust-badges-three {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.badge-three {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--parchment);
    padding: 6px 14px;
    border-radius: 40px;
    border: 1px solid var(--rule);
    transition: all 0.2s ease;
}

.badge-three:hover {
    border-color: var(--rust);
    transform: translateY(-2px);
}

.badge-text-three {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    color: var(--umber);
}

.testimonials-three-image {
    flex: 1;
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.testimonials-three-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.testimonials-three-image:hover img {
    transform: scale(1.05);
}

/* APPROACH SECTION */
.approach {
    background: var(--linen);
    padding: 80px 60px;
}

.approach-container {
    max-width: 1300px;
    margin: 0 auto;
}

.approach-header {
    text-align: center;
    margin-bottom: 50px;
}

.approach-badge {
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--rust);
    display: inline-block;
    margin-bottom: 16px;
    position: relative;
}

.approach-badge::before,
.approach-badge::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--rust);
    position: absolute;
    top: 50%;
    opacity: 0.4;
}

.approach-badge::before { left: -40px; }
.approach-badge::after { right: -40px; }

.approach-header h2 {
    font-family: var(--serif);
    font-size: 44px;
    font-weight: 400;
    color: var(--bark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.approach-header h2 span {
    font-style: italic;
    color: var(--rust);
}

.approach-subtitle {
    font-family: var(--serif);
    font-size: 18px;
    color: var(--umber);
    max-width: 800px;
    margin: 0 auto 20px;
    font-style: italic;
}

.approach-rule {
    width: 60px;
    height: 2px;
    background: var(--rust);
    margin: 0 auto;
}

.approach-intro {
    text-align: center;
    margin-bottom: 60px;
    padding: 30px 40px;
    background: var(--parchment);
    border-radius: 16px;
    border-left: 4px solid var(--rust);
    border-right: 4px solid var(--rust);
}

.approach-intro-text {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--bark);
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-bottom: 60px;
}

.approach-card {
    padding: 30px;
    background: var(--parchment);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--rule);
    position: relative;
    overflow: hidden;
}

.approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--rust);
    transition: height 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
}

.approach-card:hover::before { height: 100%; }

.approach-number {
    font-family: var(--serif);
    font-size: 48px;
    font-weight: 400;
    color: var(--rust);
    opacity: 0.4;
    margin-bottom: 15px;
    line-height: 1;
}

.approach-card-title {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--bark);
    margin-bottom: 12px;
}

.approach-card-text {
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.65;
    color: var(--umber);
    font-weight: 300;
}

.approach-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
    padding: 40px;
    background: var(--parchment);
    border-radius: 20px;
    border: 1px solid var(--rule);
}

.approach-stat {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.stat-letter {
    font-family: var(--serif);
    font-size: 48px;
    font-weight: 500;
    color: var(--rust);
    line-height: 1;
    flex-shrink: 0;
}

.stat-number-large {
    font-family: var(--serif);
    font-size: 48px;
    font-weight: 500;
    color: var(--rust);
    line-height: 1;
    flex-shrink: 0;
}

.stat-content h4 {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 500;
    color: var(--bark);
    margin-bottom: 8px;
}

.stat-content p {
    font-family: var(--sans);
    font-size: 14px;
    line-height: 1.5;
    color: var(--umber);
    font-weight: 300;
}

.approach-quote {
    text-align: center;
    padding: 50px 60px;
    background: linear-gradient(135deg, var(--parchment) 0%, var(--linen) 100%);
    border-radius: 24px;
    border: 1px solid var(--rule);
}

.approach-quote p {
    font-family: var(--serif);
    font-size: 26px;
    font-style: italic;
    color: var(--bark);
    line-height: 1.4;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.quote-author {
    font-family: var(--sans);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--rust);
    font-weight: 500;
}

/* CLIENT REVIEWS SLICK SLIDER */
.client-reviews {
    background: var(--parchment);
    padding: 80px 60px;
}

.client-reviews-container {
    max-width: 1400px;
    margin: 0 auto;
}

.client-reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-badge {
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--rust);
    display: inline-block;
    margin-bottom: 16px;
    position: relative;
}

.reviews-badge::before,
.reviews-badge::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--rust);
    position: absolute;
    top: 50%;
    opacity: 0.4;
}

.reviews-badge::before { left: -40px; }
.reviews-badge::after { right: -40px; }

.client-reviews-header h2 {
    font-family: var(--serif);
    font-size: 44px;
    font-weight: 400;
    color: var(--bark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.client-reviews-header h2 span {
    font-style: italic;
    color: var(--rust);
}

.reviews-rule {
    width: 60px;
    height: 2px;
    background: var(--rust);
    margin: 0 auto;
}

.responsive {
    margin: 0 -15px;
}

.review-card {
    background: var(--linen);
    border-radius: 20px;
    padding: 35px 30px;
    margin: 20px 15px;
    box-shadow: 0 15px 35px -12px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--rule);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 45px -15px rgba(0, 0, 0, 0.12);
}

.review-quote-icon {
    font-family: var(--serif);
    font-size: 70px;
    font-weight: 500;
    color: var(--rust);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 15px;
}

.review-text {
    font-family: var(--serif);
    font-size: 16px;
    line-height: 1.65;
    color: var(--bark);
    font-weight: 400;
    margin-bottom: 25px;
}

.review-author {
    border-top: 1px solid var(--rule);
    padding-top: 18px;
}

.review-author h4 {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 500;
    color: var(--bark);
    margin-bottom: 5px;
}

.review-author p {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--umber);
}

.review-rating {
    display: inline-block;
    margin-left: 8px;
    color: var(--rust);
    font-weight: 500;
}

/* Slick Slider Custom Styling */
.slick-prev,
.slick-next {
    width: 45px;
    height: 45px;
    background: var(--linen);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.slick-prev:hover,
.slick-next:hover {
    background: var(--rust);
}

.slick-prev:before,
.slick-next:before {
    font-size: 20px;
    color: var(--rust);
    opacity: 1;
}

.slick-prev:hover:before,
.slick-next:hover:before {
    color: var(--linen);
}

.slick-prev {
    left: -25px;
}

.slick-next {
    right: -25px;
}

.slick-dots {
    bottom: -45px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: var(--sand);
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    color: var(--rust);
    opacity: 1;
}

/* CONTACT SECTION */
.contact {
    background: var(--linen);
    padding: 80px 60px;
    position: relative;
}

.contact-container {
    max-width: 1300px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-badge {
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--rust);
    display: inline-block;
    margin-bottom: 16px;
    position: relative;
}

.contact-badge::before,
.contact-badge::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--rust);
    position: absolute;
    top: 50%;
    opacity: 0.4;
}

.contact-badge::before { left: -40px; }
.contact-badge::after { right: -40px; }

.contact-header h2 {
    font-family: var(--serif);
    font-size: 44px;
    font-weight: 400;
    color: var(--bark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.contact-header h2 span {
    font-style: italic;
    color: var(--rust);
    display: inline-block;
    position: relative;
}

.contact-header h2 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--rust);
    opacity: 0.3;
}

.contact-subtitle {
    font-family: var(--serif);
    font-size: 18px;
    color: var(--umber);
    max-width: 800px;
    margin: 0 auto 20px;
    font-style: italic;
    line-height: 1.6;
}

.contact-rule {
    width: 60px;
    height: 2px;
    background: var(--rust);
    margin: 0 auto;
}

.contact-grid {
    display: flex;
    gap: 50px;
    margin-top: 20px;
}

.contact-form-wrapper {
    flex: 1.4;
    background: var(--parchment);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--rule);
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-group.full-width {
    width: 100%;
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--bark);
    margin-bottom: 8px;
}

.required {
    color: var(--rust);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--sans);
    font-size: 15px;
    color: var(--bark);
    background: var(--linen);
    border: 1px solid var(--rule);
    border-radius: 12px;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--rust);
    box-shadow: 0 0 0 3px rgba(160, 92, 53, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--sand);
    font-weight: 300;
}

.submit-btn {
    background: var(--rust);
    color: var(--linen);
    border: none;
    padding: 14px 32px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: var(--bark);
    transform: translateX(5px);
}

.form-status {
    margin-top: 20px;
    padding: 12px;
    border-radius: 10px;
    font-family: var(--sans);
    font-size: 14px;
    text-align: center;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(107, 122, 90, 0.15);
    color: var(--sage);
    border: 1px solid var(--sage);
}

.form-status.error {
    display: block;
    background: rgba(160, 92, 53, 0.15);
    color: var(--rust);
    border: 1px solid var(--rust);
}

.contact-info-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-block {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 25px;
    background: var(--parchment);
    border-radius: 16px;
    border: 1px solid var(--rule);
    transition: all 0.3s ease;
}

.info-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -12px rgba(0, 0, 0, 0.1);
}

.info-icon {
    font-size: 32px;
    line-height: 1;
    flex-shrink: 0;
}

.info-details {
    flex: 1;
}

.info-details h3 {
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 600;
    color: var(--bark);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.info-details a {
    font-family: var(--sans);
    font-size: 15px;
    color: var(--rust);
    text-decoration: none;
    transition: color 0.2s ease;
}

.info-details a:hover {
    color: var(--bark);
}

.info-details p {
    font-family: var(--sans);
    font-size: 14px;
    color: var(--umber);
    line-height: 1.5;
}

.license-row {
    display: flex;
    gap: 12px;
    padding: 3px 0;
    font-family: var(--sans);
    font-size: 14px;
}

.license-label {
    font-weight: 600;
    color: var(--bark);
    min-width: 40px;
}

.license-value {
    color: var(--rust);
    font-weight: 500;
}

.service-block .info-details p {
    font-size: 13px;
    line-height: 1.6;
}

/* FOOTER */
footer {
    background: var(--bark);
    padding: 1.75rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-brand {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 400;
    color: var(--linen);
    letter-spacing: 0.04em;
}

.footer-nav {
    display: flex;
    gap: 1rem;
    list-style: none;
}

.footer-nav a {
    font-size: 0.66rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sand);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--linen);
}

.footer-copy {
    font-size: 0.7rem;
    color: var(--umber);
}

/* FANCYBOX */
.fancybox-custom-caption {
    text-align: center;
    padding: 15px 25px;
}

.fancybox-custom-caption h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 500;
    color: #A05C35;
    margin-bottom: 8px;
}

.fancybox-custom-caption p {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    color: #DDD0BC;
    margin-bottom: 8px;
}

.fancybox-custom-caption span {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    color: #C4A882;
    display: inline-block;
    padding: 4px 12px;
    background: rgba(160, 92, 53, 0.2);
    border-radius: 20px;
}

.fancybox__container {
    --fancybox-bg: rgba(46, 35, 24, 0.96);
}

.fancybox__content img {
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.fancybox__thumbs {
    background: rgba(46, 35, 24, 0.95);
    padding: 12px 0;
}

.fancybox__thumb {
    border-radius: 8px;
    border: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.fancybox__thumb.is-active {
    border-color: #A05C35;
}

.fancybox__nav .fancybox__arrow {
    background: rgba(46, 35, 24, 0.8);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    transition: all 0.2s ease;
}

.fancybox__nav .fancybox__arrow:hover {
    background: #A05C35;
}

.fancybox__close {
    background: #A05C35;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    transition: transform 0.2s ease;
}

.fancybox__close:hover {
    transform: scale(1.1);
    background: #2E2318;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .about, .testimonials, .services, .testimonials-two, .portfolio, .testimonials-three, .approach, .client-reviews, .contact {
        padding: 60px 40px;
    }
    .about-header h2, .testimonials-header h2, .services-header h2, .portfolio-header h2, .approach-header h2, .client-reviews-header h2, .contact-header h2 {
        font-size: 38px;
    }
}

@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }
    .nav-top {
        padding: 0 1.5rem;
    }
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--parchment);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 3rem;
        gap: 2rem;
        transition: left 0.3s ease;
        z-index: 99;
    }
    .nav-links.active {
        left: 0;
    }
    .nav-links a {
        font-size: 1rem;
    }
    .hero {
        grid-template-columns: 1fr;
    }
    .hero-right {
        min-height: 55vw;
    }
    .hero-left {
        padding: 8rem 2rem 4rem;
    }
    footer {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    .about-wrapper, .testimonials-wrapper, .testimonials-two-wrapper, .testimonials-three-wrapper, .contact-grid {
        flex-direction: column;
    }
    .about-image, .testimonials-image {
        max-width: 450px;
        margin: 0 auto;
    }
    .testimonials-two-image {
        min-height: 350px;
    }
    .testimonials-two-content {
        padding: 40px;
    }
    .testimonials-three-image {
        min-height: 300px;
    }
    .testimonials-three-content {
        padding: 40px;
    }
    .services-cta {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    .cta-icon {
        display: none;
    }
    .approach-grid {
        grid-template-columns: 1fr;
    }
    .approach-stats {
        flex-direction: column;
        padding: 30px;
    }
    .approach-stat {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .contact-info-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .info-block {
        flex: 1;
        min-width: calc(50% - 16px);
    }
    .service-block {
        min-width: 100%;
    }
    .portfolio-categories-line {
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    .category-title-item {
        font-size: 0.65rem;
        white-space: normal;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .contact-info-wrapper {
        flex-direction: column;
    }
    .info-block {
        width: 100%;
    }
    .portfolio-categories-line {
        flex-direction: column;
        gap: 0.5rem;
    }
    .category-sep {
        display: none;
    }
    .category-title-item {
        font-size: 0.7rem;
        white-space: normal;
        line-height: 1.4;
    }
}

@media (max-width: 600px) {
    .nav-top {
        height: 80px;
        padding: 0 1.25rem;
    }
    .nav-logo {
        left: 0px;
    }
    .nav-logo img {
        width: 110px;
        height: auto;
    }
    .hamburger {
        right: 1.25rem;
    }
    .hero-left {
        padding: 6rem 1.25rem 3rem;
    }
    .hero-right {
        min-height: 70vw;
    }
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }
    .hero-stats {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .stat {
        padding: 1rem 0.5rem;
    }
    .stat-num {
        font-size: 1.4rem;
    }
    .hero-contact-info {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: flex-start;
        font-size: 0.75rem;
        white-space: normal;
    }
    .hero-contact-info a {
        word-break: break-word;
    }
    .about, .testimonials, .services, .testimonials-two, .portfolio, .testimonials-three, .approach, .client-reviews, .contact {
        padding: 40px 20px;
    }
    .about-header h2, .testimonials-header h2, .services-header h2, .portfolio-header h2, .approach-header h2, .client-reviews-header h2, .contact-header h2 {
        font-size: 28px;
    }
    .testimonial-stats {
        gap: 1rem;
        padding: 0.75rem 1.25rem;
    }
    .stat-number {
        font-size: 1.25rem;
    }
    .stat-item .stat-label {
        font-size: 0.55rem;
    }
    .portfolio-categories-line {
        margin-bottom: 2rem;
        gap: 0.4rem;
    }
    .category-title-item {
        font-size: 0.65rem;
        letter-spacing: 0.08em;
    }
    .slick-prev, .slick-next {
        width: 35px;
        height: 35px;
    }
    .slick-prev:before, .slick-next:before {
        font-size: 16px;
    }
    .slick-prev {
        left: -10px;
    }
    .slick-next {
        right: -10px;
    }
}