/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --bg-color: #e8e6e0;
    --nav-bg: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #999;
    --text-muted: #bbb;
    --footer-bg: #0a0a0a;
    --footer-text: #fff;
    --border-color: #b8a88a;
    --services-divider-gold: #c5a059;
    /* Slightly darker than pure white — services / Our Services canvas */
    --canvas-soft-white: #f3f2ee;
    --transition: all 0.3s ease;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

/* Navigation */
.navbar {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: var(--nav-bg);
    padding: 1.5rem 0 1rem;
    transition: background-color 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 101;
}

.logo {
    text-decoration: none;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
}

.logo-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1;
}

.logo-amp {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.25rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin: 0 0.1rem;
}

.logo-reg {
    font-size: 0.9rem;
    vertical-align: super;
    margin-left: 0.1rem;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: flex-end;
    padding-bottom: 0.15rem;
}

.nav-links a {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a.active {
    color: var(--text-primary);
    font-weight: 500;
}

/* Main Content */
.main-content {
    padding: 2rem 0 6rem;
}

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

.page-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.title-underline {
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
    margin-bottom: 3rem;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.project-card {
    display: block;
    text-decoration: none;
    color: inherit;
    aspect-ratio: 4/5;
}

.project-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #e8e7e1;
}

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(240, 239, 233, 0.85);
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-name {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    padding: 0 1.5rem;
    text-align: left;
}

/* Hover Effects */
.project-card:hover .project-overlay {
    opacity: 1;
}

/* Footer */
.footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 4rem 0 3rem;
    overflow: hidden;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    position: relative;
}

.footer-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 2px;
    background: #ffffff;
}

.footer-brand {
    max-width: 400px;
}

.footer-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.footer-tagline {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.6;
    font-weight: 600;
}

.footer-nav {
    display: flex;
    gap: 10rem;
    margin-right: 3rem;
}

.footer-nav-column ul {
    list-style: none;
}

.footer-nav-column li {
    margin-bottom: 0.75rem;
}

.footer-nav-column a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: var(--transition);
}

.footer-nav-column a:hover {
    color: var(--footer-text);
}

.footer-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 400;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo-icon {
    width: 140px;
    height: 140px;
    color: var(--footer-text);
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-logo-icon svg {
    width: 100%;
    height: 100%;
}

.footer-legal {
    display: flex;
    gap: 5rem;
    align-items: flex-end;
}

.footer-legal p {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
    font-weight: 600;
}

/* ================================
   Project Detail Page
   ================================ */

.project-hero {
    width: 100%;
    padding: 0 3rem;
    max-width: 1400px;
    margin: 4rem auto 0;
}

.project-hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.project-info {
    padding: 4rem 0 3rem;
}

.project-info-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.project-info-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.25rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.project-info-divider {
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
    margin-bottom: 2rem;
}

.project-info-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.35rem;
    font-weight: 300;
    line-height: 1.55;
    color: var(--text-primary);
    max-width: 720px;
    margin-bottom: 2rem;
    font-style: italic;
}

.project-info-credits {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.project-info-credits p {
    margin: 0;
    font-style: italic;
}

.project-info-credits a {
    color: var(--text-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.project-info-credits a:hover {
    color: var(--text-secondary);
}

/* Project Gallery */
.project-gallery {
    padding: 2rem 0 4rem;
}

.project-gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.gallery-row-offset {
    align-items: start;
}

.gallery-item-short img {
    aspect-ratio: 4/3;
}

.gallery-item-tall img {
    aspect-ratio: 4/3;
}

/* Next/Prev Project */
.project-next {
    padding: 3rem 0 5rem;
}

.project-next-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-next-link,
.project-prev-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
}

.project-next-link:hover,
.project-prev-link:hover {
    opacity: 0.6;
}

.project-next-name,
.project-prev-name {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.project-next-arrow,
.project-prev-arrow {
    font-size: 1.75rem;
    line-height: 1;
}

/* Project Detail Responsive */
@media (max-width: 768px) {
    .project-hero {
        padding: 0 1rem;
    }

    .project-info-container,
    .project-gallery-container,
    .project-next-container {
        padding: 0 1rem;
    }

    .project-info-title {
        font-size: 1.5rem;
    }

    .project-info-description {
        font-size: 1.1rem;
    }

    .gallery-row {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .project-next-name,
    .project-prev-name {
        font-size: 0.85rem;
    }

    .project-next-arrow,
    .project-prev-arrow {
        font-size: 1.25rem;
    }
}

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 101;
}

.menu-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    position: relative;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.menu-icon::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: rotate(90deg);
    left: 0;
}

/* Plus to X transformation */
.menu-toggle.active .menu-icon {
    transform: rotate(45deg);
}

/* Mobile Menu */
.mobile-menu {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-color);
    z-index: 90;
    padding: 0 2rem;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.mobile-nav-links li {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-menu.active .mobile-nav-links li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-nav-links li:nth-child(5) { transition-delay: 0.3s; }

.mobile-nav-links a {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: -0.02em;
}

.mobile-nav-links a:hover {
    color: var(--text-secondary);
}

/* Navbar menu open state */
.navbar.menu-open {
    background-color: var(--bg-color);
}

body.menu-open {
    overflow: hidden;
}

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .footer-nav {
        gap: 3rem;
        margin-right: 0;
    }
    
    .footer-bottom {
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
    }
    
    .footer-legal {
        text-align: left;
        flex-direction: column;
        gap: 0.75rem;
        margin-left: auto;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
        align-items: center;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-amp {
        font-size: 1.25rem;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .projects-grid {
        gap: 3.5rem;
    }
    
    .project-card {
        aspect-ratio: 3/4;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-main {
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-title {
        font-size: 1.25rem;
    }
    
    .footer-tagline {
        font-size: 0.85rem;
    }
    
    .footer-nav {
        flex-direction: row;
        gap: 3rem;
    }
    
    .footer-nav-column a,
    .footer-nav-column .footer-label {
        font-size: 0.85rem;
    }
    
    .footer-logo-icon {
        width: 110px;
        height: 110px;
    }
    
    .footer-legal {
        gap: 0.75rem;
    }
    
    .footer-legal p {
        font-size: 0.65rem;
    }
    
    .mobile-menu {
        padding: 0 1rem;
    }

    .mobile-nav-links a {
        font-size: 2.25rem;
    }
}
/ *   H o m e   H e r o   S e c t i o n   * / 
 . h e r o - s e c t i o n   { 
         p o s i t i o n :   r e l a t i v e ; 
         w i d t h :   1 0 0 % ; 
         h e i g h t :   8 5 v h ; 
 } 
 . h e r o - i m a g e   { 
         w i d t h :   1 0 0 % ; 
         h e i g h t :   1 0 0 % ; 
         o b j e c t - f i t :   c o v e r ; 
         d i s p l a y :   b l o c k ; 
 } 
 . s c r o l l - a r r o w   { 
         p o s i t i o n :   a b s o l u t e ; 
         b o t t o m :   3 r e m ; 
         l e f t :   5 0 % ; 
         t r a n s f o r m :   t r a n s l a t e X ( - 5 0 % ) ; 
         c o l o r :   # f f f ; 
         f o n t - s i z e :   2 . 5 r e m ; 
         f o n t - f a m i l y :   ' I n t e r ' ,   s a n s - s e r i f ; 
         f o n t - w e i g h t :   3 0 0 ; 
         p o i n t e r - e v e n t s :   n o n e ; 
 } 
 
 / *   I n t r o   S e c t i o n   * / 
 . i n t r o - s e c t i o n   { 
         b a c k g r o u n d - c o l o r :   # 0 0 0 ; 
         c o l o r :   # f f f ; 
         p a d d i n g :   8 r e m   0 ; 
 } 
 . i n t r o - c o n t a i n e r   { 
         m a x - w i d t h :   1 4 0 0 p x ; 
         m a r g i n :   0   a u t o ; 
         p a d d i n g :   0   2 r e m ; 
 } 
 . i n t r o - h e a d i n g   { 
         f o n t - f a m i l y :   ' I n t e r ' ,   s a n s - s e r i f ; 
         f o n t - s i z e :   4 r e m ; 
         f o n t - w e i g h t :   4 0 0 ; 
         l i n e - h e i g h t :   1 . 1 ; 
         m a x - w i d t h :   8 0 0 p x ; 
         m a r g i n - b o t t o m :   2 r e m ; 
         l e t t e r - s p a c i n g :   - 0 . 0 2 e m ; 
 } 
 . i n t r o - t e x t   { 
         f o n t - s i z e :   1 . 1 r e m ; 
         l i n e - h e i g h t :   1 . 6 ; 
         m a x - w i d t h :   6 0 0 p x ; 
         m a r g i n - b o t t o m :   3 r e m ; 
         c o l o r :   # f f f ; 
 } 
 . b t n - o u t l i n e   { 
         d i s p l a y :   i n l i n e - b l o c k ; 
         b o r d e r :   1 p x   s o l i d   # f f f ; 
         c o l o r :   # f f f ; 
         p a d d i n g :   1 r e m   2 r e m ; 
         b o r d e r - r a d i u s :   5 0 p x ; 
         t e x t - d e c o r a t i o n :   n o n e ; 
         f o n t - s i z e :   0 . 7 5 r e m ; 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
         l e t t e r - s p a c i n g :   0 . 0 5 e m ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 } 
 . b t n - o u t l i n e : h o v e r   { 
         b a c k g r o u n d - c o l o r :   # f f f ; 
         c o l o r :   # 0 0 0 ; 
 } 
 
 / *   T e s t i m o n i a l   S e c t i o n   * / 
 . t e s t i m o n i a l - s e c t i o n   { 
         p o s i t i o n :   r e l a t i v e ; 
         h e i g h t :   9 0 v h ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         o v e r f l o w :   h i d d e n ; 
 } 
 . t e s t i m o n i a l - b g   { 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   0 ; 
         l e f t :   0 ; 
         w i d t h :   1 0 0 % ; 
         h e i g h t :   1 0 0 % ; 
         o b j e c t - f i t :   c o v e r ; 
         z - i n d e x :   1 ; 
 } 
 . t e s t i m o n i a l - o v e r l a y   { 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   0 ; 
         l e f t :   0 ; 
         w i d t h :   1 0 0 % ; 
         h e i g h t :   1 0 0 % ; 
         b a c k g r o u n d - c o l o r :   r g b a ( 0 ,   0 ,   0 ,   0 . 4 ) ; 
         z - i n d e x :   2 ; 
 } 
 . t e s t i m o n i a l - c o n t a i n e r   { 
         p o s i t i o n :   r e l a t i v e ; 
         z - i n d e x :   3 ; 
         m a x - w i d t h :   1 4 0 0 p x ; 
         m a r g i n :   0   a u t o ; 
         p a d d i n g :   0   2 r e m ; 
         w i d t h :   1 0 0 % ; 
         d i s p l a y :   f l e x ; 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
         a l i g n - i t e m s :   f l e x - e n d ; 
 } 
 . t e s t i m o n i a l - c o n t e n t   { 
         m a x - w i d t h :   8 0 0 p x ; 
         m a r g i n - l e f t :   a u t o ; 
 } 
 . t e s t i m o n i a l - q u o t e   { 
         f o n t - s i z e :   2 . 2 5 r e m ; 
         l i n e - h e i g h t :   1 . 3 ; 
         f o n t - w e i g h t :   5 0 0 ; 
         c o l o r :   # f f f ; 
         m a r g i n - b o t t o m :   1 . 5 r e m ; 
         l e t t e r - s p a c i n g :   - 0 . 0 1 e m ; 
 } 
 . t e s t i m o n i a l - a u t h o r   { 
         f o n t - s i z e :   1 r e m ; 
         c o l o r :   # f f f ; 
         t e x t - a l i g n :   r i g h t ; 
         f o n t - w e i g h t :   5 0 0 ; 
 } 
 . b t n - c i r c l e   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         t e x t - a l i g n :   c e n t e r ; 
         w i d t h :   1 4 0 p x ; 
         h e i g h t :   1 4 0 p x ; 
         b o r d e r :   1 p x   s o l i d   # f f f ; 
         b o r d e r - r a d i u s :   5 0 % ; 
         c o l o r :   # f f f ; 
         t e x t - d e c o r a t i o n :   n o n e ; 
         f o n t - s i z e :   0 . 7 5 r e m ; 
         l e t t e r - s p a c i n g :   0 . 0 5 e m ; 
         l i n e - h e i g h t :   1 . 4 ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         m a r g i n - l e f t :   3 r e m ; 
         f l e x - s h r i n k :   0 ; 
 } 
 . b t n - c i r c l e : h o v e r   { 
         b a c k g r o u n d - c o l o r :   # f f f ; 
         c o l o r :   # 0 0 0 ; 
 } 
 . t e s t i m o n i a l - f l e x   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   f l e x - e n d ; 
         j u s t i f y - c o n t e n t :   f l e x - e n d ; 
         w i d t h :   1 0 0 % ; 
 } 
 
 / *   H o m e   W o r k   S e c t i o n   * / 
 . h o m e - w o r k - s e c t i o n   { 
         b a c k g r o u n d - c o l o r :   # a 2 a 3 9 d ; 
         p a d d i n g :   6 r e m   0   8 r e m ; 
 } 
 . h o m e - w o r k - c o n t a i n e r   { 
         m a x - w i d t h :   1 4 0 0 p x ; 
         m a r g i n :   0   a u t o ; 
         p a d d i n g :   0   2 r e m ; 
 } 
 . h o m e - w o r k - t i t l e   { 
         f o n t - s i z e :   2 . 5 r e m ; 
         f o n t - w e i g h t :   5 0 0 ; 
         c o l o r :   # f f f ; 
         m a r g i n - b o t t o m :   3 r e m ; 
         l e t t e r - s p a c i n g :   - 0 . 0 2 e m ; 
 } 
 . h o m e - g r i d   { 
         d i s p l a y :   g r i d ; 
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 3 ,   1 f r ) ; 
         g a p :   1 . 5 r e m ; 
         m a r g i n - b o t t o m :   4 r e m ; 
 } 
 . h o m e - g r i d - i t e m   { 
         a s p e c t - r a t i o :   1 / 1 ; 
         d i s p l a y :   b l o c k ; 
         o v e r f l o w :   h i d d e n ; 
 } 
 . h o m e - g r i d - i m g   { 
         w i d t h :   1 0 0 % ; 
         h e i g h t :   1 0 0 % ; 
         o b j e c t - f i t :   c o v e r ; 
         t r a n s i t i o n :   t r a n s f o r m   0 . 5 s   e a s e ; 
 } 
 . h o m e - g r i d - i t e m : h o v e r   . h o m e - g r i d - i m g   { 
         t r a n s f o r m :   s c a l e ( 1 . 0 5 ) ; 
 } 
 . b t n - p i l l   { 
         d i s p l a y :   i n l i n e - b l o c k ; 
         b a c k g r o u n d - c o l o r :   # e 5 e 6 d f ; 
         c o l o r :   # 4 a 4 a 4 a ; 
         p a d d i n g :   1 r e m   2 . 5 r e m ; 
         b o r d e r - r a d i u s :   5 0 p x ; 
         t e x t - d e c o r a t i o n :   n o n e ; 
         f o n t - s i z e :   0 . 7 5 r e m ; 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
         f o n t - w e i g h t :   5 0 0 ; 
         l e t t e r - s p a c i n g :   0 . 0 5 e m ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 } 
 . b t n - p i l l : h o v e r   { 
         b a c k g r o u n d - c o l o r :   # f f f ; 
         c o l o r :   # 0 0 0 ; 
 } 
 
 / *   M a k e   N a v b a r   b l e n d   w i t h   h e r o   f o r   t h i s   p a g e   i f   n e e d e d   -   e l s e   k e e p   i t   s o l i d   * / 
 
 
/* ========================================================================
   HOME PAGE STYLES (Match Kestrel Design)
   ======================================================================== */

/* Home Nav */
.navbar.home-nav {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    background: none !important;
    background-color: transparent !important;
    z-index: 100;
}

.navbar.home-nav.menu-open {
    background-color: var(--bg-color) !important;
}

/* ================================
   About Page
   ================================ */

/* About Intro */
.about-intro {
    padding: 1rem 0 5rem;
}

.about-intro-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-intro-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.75rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.about-intro-divider {
    width: 100%;
    height: 2px;
    background-color: var(--border-color);
    margin-bottom: 2rem;
}

.about-intro-text {
    max-width: 520px;
}

.about-intro-text p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.45;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

/* Services page (Kestrel-style): soft off-white canvas */
body.page-services {
    background-color: var(--canvas-soft-white);
}

/* About Services — Kestrel-style layout */
.about-services {
    padding: 2.5rem 0 5.5rem;
    background-color: var(--canvas-soft-white);
}

.about-services-heading-row {
    margin-bottom: 2.75rem;
}

.about-services-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2.125rem, 4vw, 2.75rem);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.about-services-rule {
    width: 100%;
    height: 1px;
    background-color: var(--services-divider-gold);
    border: none;
    margin: 0;
    display: block;
}

.about-services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-services-content {
    display: grid;
    grid-template-columns: minmax(0, 1.62fr) minmax(0, 1fr);
    gap: 3rem 4.5rem;
    align-items: start;
}

.about-services-left {
    min-width: 0;
}

.about-services-intro {
    margin-bottom: 2.25rem;
    max-width: 42rem;
}

.about-services-subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1.25rem, 2.2vw, 1.5rem);
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    letter-spacing: -0.015em;
}

.about-services-desc {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.45;
    color: var(--text-primary);
    max-width: 40rem;
}

.about-services-right {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.about-services-img {
    width: 100%;
    max-width: 420px;
    height: auto;
    min-height: 520px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    display: block;
}

/* Accordion — default dividers (FAQs, etc.) */
.about-accordion {
    border-top: 1px solid var(--border-color);
}

.about-accordion .accordion-item {
    border-bottom: 1px solid var(--border-color);
}

/* Our Services: golden dividers on accordion rows */
.about-services .about-accordion {
    border-top-color: var(--services-divider-gold);
}

.about-services .about-accordion .accordion-item {
    border-bottom-color: var(--services-divider-gold);
}

.about-services .accordion-body p {
    font-size: 1.125rem;
    line-height: 1.7;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.35rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
    transition: color 0.2s ease;
    letter-spacing: -0.01em;
}

.accordion-header:hover {
    color: var(--text-secondary);
}

.accordion-icon {
    position: relative;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-left: 1rem;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background-color: var(--text-primary);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.accordion-icon::before {
    width: 14px;
    height: 1px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.accordion-icon::after {
    width: 1px;
    height: 14px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.accordion-item.active .accordion-icon::before {
    transform: translateY(-50%) rotate(0);
}

.accordion-item.active .accordion-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.35s ease;
}

.accordion-item.active .accordion-body {
    max-height: 320px;
    padding-bottom: 1.35rem;
}

.accordion-body p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text-primary);
    font-weight: 400;
    max-width: 38rem;
}

/* FAQs accordion: match divider style on light sections */
.about-faqs .about-accordion {
    border-top: 1px solid var(--border-color);
}

.about-faqs .accordion-item {
    border-bottom: 1px solid var(--border-color);
}

/* About Values — Kestrel-style (photo, scrim, gold rule + copy, white accordion) */
.about-values {
    position: relative;
    padding: 5rem 0 5.5rem;
    overflow: hidden;
}

.about-values-media {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1487958449943-2429e8be8625?w=2000&q=80');
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    transform: scale(1.03);
}

.about-values-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(8, 8, 8, 0.82) 0%,
        rgba(12, 12, 12, 0.88) 50%,
        rgba(10, 10, 10, 0.9) 100%
    );
}

.about-values-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-values-heading-row {
    margin-bottom: 1.75rem;
}

.about-values-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2rem, 4vw, 2.65rem);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 1rem;
}

.about-values-rule {
    width: 100%;
    height: 1px;
    background-color: var(--services-divider-gold);
    margin: 0;
}

.about-values-acknowledgment {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1.0625rem, 2.1vw, 1.3125rem);
    font-weight: 400;
    line-height: 1.55;
    color: var(--services-divider-gold);
    margin-bottom: 4.25rem;
    max-width: none;
    width: 100%;
}

/* Accordion aligned right (Kestrel-style); left column open */
.about-values-accordion-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, min(58vw, 720px));
    gap: 2rem 2.5rem;
    align-items: start;
}

.about-values-list {
    grid-column: 2;
    width: 100%;
    justify-self: stretch;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.about-values .accordion-dark {
    border-bottom: 1px solid rgba(255, 255, 255, 0.35) !important;
}

.about-values .accordion-dark .accordion-header {
    color: #ffffff;
    font-size: clamp(1.1875rem, 2.2vw, 1.375rem);
    font-weight: 600;
    padding: 1.65rem 0;
    letter-spacing: -0.012em;
}

.about-values .accordion-dark .accordion-header:hover {
    color: rgba(255, 255, 255, 0.72);
}

.about-values .accordion-dark .accordion-icon {
    width: 18px;
    height: 18px;
}

.about-values .accordion-dark .accordion-icon::before,
.about-values .accordion-dark .accordion-icon::after {
    background-color: #ffffff;
}

.about-values .accordion-dark .accordion-icon::before {
    width: 18px;
}

.about-values .accordion-dark .accordion-icon::after {
    height: 18px;
}

.about-values .accordion-dark .accordion-body p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 500;
    max-width: none;
}

.about-values .accordion-item.active .accordion-body {
    max-height: 420px;
}

/* About Principle — Kestrel-style (soft canvas, title + gold rule, two columns) */
.about-principle {
    padding: 5rem 0 5.5rem;
    background-color: var(--canvas-soft-white);
}

.about-principle-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-principle-heading-row {
    margin-bottom: 2.75rem;
}

.about-principle-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2rem, 4vw, 2.65rem);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.about-principle-rule {
    width: 100%;
    height: 1px;
    background-color: var(--services-divider-gold);
    margin: 0;
}

.about-principle-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
    gap: 3.5rem 4.5rem;
    align-items: start;
}

.about-principle-image {
    max-width: 520px;
}

.about-principle-portrait {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 3 / 4;
    border-radius: 12px;
}

.about-principle-bio-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1.125rem, 2vw, 1.35rem);
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 1.35rem;
    color: var(--text-primary);
    letter-spacing: -0.015em;
}

.about-principle-bio p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 1.1rem;
    max-width: 38rem;
}

.about-principle-quals {
    margin-top: 2.25rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--services-divider-gold);
    max-width: 38rem;
}

.about-principle-quals h4 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.85rem;
    color: var(--text-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    letter-spacing: -0.01em;
}

.about-principle-quals ul {
    list-style: none;
}

.about-principle-quals li {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--text-secondary);
}

/* About Mission */
.about-mission {
    padding: 2rem 0 5rem;
}

.about-mission-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: flex-end;
}

.about-mission-content {
    max-width: 480px;
}

.about-mission-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-mission-content p {
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

/* About CTA */
.about-cta {
    background-color: #1a1a1a;
    padding: 5rem 0;
}

.about-cta-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-cta-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--border-color);
    margin-bottom: 2rem;
}

.about-cta-btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    transition: var(--transition);
}

.about-cta-btn:hover {
    background-color: #fff;
    color: #1a1a1a;
}

/* About FAQs */
.about-faqs {
    padding: 4rem 0 5rem;
}

.about-faqs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-faqs-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-faqs-divider {
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
    margin-bottom: 0;
}

/* About Page Responsive */
@media (max-width: 768px) {
    .about-intro-title {
        font-size: 2rem;
    }

    .about-services-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-services-right {
        order: -1;
        justify-content: stretch;
    }

    .about-services-img {
        max-width: 100%;
        min-height: 320px;
    }

    .about-services-heading-row {
        margin-bottom: 2rem;
    }

    .about-values {
        padding: 3.5rem 0 4rem;
    }

    .about-values-media {
        transform: scale(1.08);
    }

    .about-values-accordion-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-values-list {
        grid-column: 1;
        max-width: none;
    }

    .about-principle-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-principle-image {
        max-width: none;
    }

    .about-principle-heading-row {
        margin-bottom: 2rem;
    }

    .about-cta-title {
        font-size: 1.35rem;
    }
}

@media (max-width: 640px) {
    .about-intro-container,
    .about-services-container,
    .about-values-container,
    .about-principle-container,
    .about-mission-container,
    .about-cta-container,
    .about-faqs-container {
        padding: 0 1rem;
    }

    .about-intro-title {
        font-size: 1.5rem;
    }

    .about-services-title,
    .about-values-title,
    .about-mission-title,
    .about-faqs-title {
        font-size: 1.35rem;
    }

    .about-principle-title {
        font-size: clamp(1.65rem, 5.5vw, 2.15rem);
    }
}

/* Home Hero */
.home-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background-color: #000;
    overflow: hidden;
}

.home-hero-section img.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slideshow .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slideshow .hero-image.active {
    opacity: 1;
}

.hero-scroll-arrow {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    z-index: 10;
    pointer-events: none;
    opacity: 0.9;
}

/* Home Intro (Black Section) */
.home-intro-section {
    background-color: #0a0a0a;
    color: #ffffff;
    padding: 5rem 0;
}

.home-intro-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.home-intro-heading {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 3.25rem;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    max-width: 900px;
}

.home-intro-text {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #f2f2f2;
    margin-bottom: 3.5rem;
    font-weight: 400;
}

.home-intro-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.home-intro-btn:hover {
    background-color: #ffffff;
    color: #0a0a0a;
    border-color: #ffffff;
}

/* Home Testimonial Section */
.home-testimonial-section {
    position: relative;
    width: 100%;
    padding: 6rem 0;
    background-color: #000;
    overflow: hidden;
}

.home-testimonial-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    opacity: 0.6;
    z-index: 1;
}

.home-testimonial-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.1), rgba(0,0,0,0.6));
    z-index: 2;
}

.home-testimonial-container {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: flex-end;
}

.home-testimonial-content {
    max-width: 650px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.home-testimonial-quote {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.35;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.home-testimonial-author {
    color: #ffffff;
    font-size: 0.8rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    opacity: 0.8;
}

.home-testimonial-pill-btn {
    display: inline-block;
    padding: 1.25rem 3.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-align: center;
    transition: all 0.3s ease;
}

.home-testimonial-pill-btn:hover {
    background-color: #ffffff;
    color: #000000;
}

.home-testimonial-circle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    transition: all 0.3s ease;
}

.home-testimonial-circle-btn:hover {
    background-color: #ffffff;
    color: #000000;
}

/* Home Google Reviews Section */
.home-reviews-section {
    background-color: #ffffff;
    padding: 5rem 0 6rem;
}

.home-reviews-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.home-reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.home-reviews-google {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.google-icon {
    flex-shrink: 0;
}

.home-reviews-label {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.home-reviews-stars {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.home-reviews-star-row {
    display: flex;
    gap: 0.15rem;
}

.home-reviews-rating {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
}

.home-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.home-review-card {
    background-color: #f8f8f6;
    border: 1px solid #e8e7e3;
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.home-review-card-stars {
    display: flex;
    gap: 0.1rem;
}

.home-review-card-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.6;
    color: #444;
    flex-grow: 1;
}

.home-review-card-author {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.02em;
}

.home-reviews-cta {
    display: inline-block;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    color: #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 0.25rem;
    transition: opacity 0.2s ease;
}

.home-reviews-cta:hover {
    opacity: 0.6;
}

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

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

    .home-reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-reviews-grid {
        grid-template-columns: 1fr;
    }

    .home-reviews-label {
        font-size: 1.4rem;
    }
}

/* Home Work Section (Grey Background) */
.home-work-section {
    background-color: #9f9e9a; /* Specific grey from screenshot */
    padding: 5rem 0 6rem;
}

.home-work-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.home-work-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.25rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 2.5rem;
    letter-spacing: -0.01em;
}

.home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 4rem;
}

.home-grid-item {
    display: block;
    aspect-ratio: 1/1;
    overflow: hidden;
    background-color: #e8e6e0;
}

.home-grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.home-grid-item:hover .home-grid-img {
    transform: scale(1.03);
}

.home-work-btn {
    display: inline-block;
    padding: 1.25rem 3rem;
    background-color: #e8e6e0;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: background-color 0.3s ease;
}

.home-work-btn:hover {
    background-color: #ffffff;
}

/* Mobile Responsiveness for Home */
@media (max-width: 1024px) {
    .home-intro-heading {
        font-size: 3rem;
    }
    .home-testimonial-quote {
        font-size: 2rem;
    }
    .home-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .home-intro-heading {
        font-size: 2.5rem;
    }
    .home-intro-text {
        font-size: 1rem;
    }
    .home-testimonial-section {
        padding: 6rem 0;
    }
    .home-testimonial-quote {
        font-size: 1.5rem;
    }
    .home-grid {
        grid-template-columns: 1fr;
    }
    .home-testimonial-circle-btn {
        width: 120px;
        height: 120px;
    }
}

/* ================================
   Reviews Page
   ================================ */
.reviews-page {
    padding: 1rem 0 6rem;
}

.reviews-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.reviews-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.75rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.reviews-divider {
    width: 100%;
    height: 2px;
    background-color: var(--border-color);
    margin-bottom: 3rem;
}

.reviews-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 5rem;
}

.reviews-column-heading {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.reviews-accordion {
    border-top: 1px solid var(--border-color);
}

.review-item {
    border-bottom: 1px solid var(--border-color);
}

.review-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.15rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-primary);
    text-align: left;
    transition: color 0.2s ease;
    letter-spacing: -0.01em;
}

.review-header:hover {
    color: var(--text-secondary);
}

.review-icon {
    position: relative;
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    margin-left: 1rem;
}

.review-icon::before,
.review-icon::after {
    content: '';
    position: absolute;
    background-color: var(--text-primary);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.review-icon::before {
    width: 12px;
    height: 1px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.review-icon::after {
    width: 1px;
    height: 12px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.review-item.active .review-icon::before {
    transform: translateY(-50%) rotate(0);
}

.review-item.active .review-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.review-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.35s ease;
}

.review-item.active .review-body {
    max-height: 400px;
    padding-bottom: 1.25rem;
}

.review-body p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text-primary);
    font-weight: 400;
    max-width: 38rem;
}

/* Reviews responsive */
@media (max-width: 768px) {
    .reviews-columns {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .reviews-title {
        font-size: 1.75rem;
    }

    .reviews-container {
        padding: 0 1rem;
    }
}

@media (max-width: 640px) {
    .reviews-page {
        padding: 1rem 0 4rem;
    }
}

/* ================================
   Contact Page
   ================================ */
.contact-page {
    padding: 1rem 0 0;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.75rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.contact-divider {
    width: 100%;
    height: 2px;
    background-color: var(--border-color);
    margin-bottom: 3rem;
}

/* Section headings */
.contact-section-heading {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-section-desc {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    max-width: 520px;
    margin-bottom: 2.5rem;
}

/* Form styles */
.contact-form {
    max-width: 480px;
    margin-bottom: 4rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-sublabel {
    display: block;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 0.35rem;
    margin-top: 0.5rem;
}

.required {
    font-weight: 400;
    color: var(--text-secondary);
    font-size: 0.7rem;
}

.form-row-half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 0.65rem 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9rem;
    color: var(--text-primary);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
    outline: none;
    transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--text-primary);
}

.contact-form textarea {
    resize: vertical;
    border: 1px solid var(--border-color);
    padding: 0.65rem;
    margin-top: 0.25rem;
}

/* Select wrapper */
.select-wrapper {
    position: relative;
}

.select-wrapper select {
    width: 100%;
    padding: 0.65rem 2rem 0.65rem 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9rem;
    color: var(--text-secondary);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color 0.2s ease;
}

.select-wrapper select:focus {
    border-color: var(--text-primary);
}

.select-wrapper::after {
    content: '';
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-right: 1.5px solid var(--text-secondary);
    border-bottom: 1.5px solid var(--text-secondary);
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
}

/* Checkbox group */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 0.25rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9rem;
    color: var(--text-primary);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.checkbox-label input[type="checkbox"]:checked {
    background-color: var(--text-primary);
    border-color: var(--text-primary);
}

/* Submit button */
.form-submit {
    display: inline-block;
    padding: 0.85rem 2.25rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background-color: var(--text-primary);
    border: 1px solid var(--text-primary);
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease;
    margin-top: 1rem;
}

.form-submit:hover {
    background-color: transparent;
    color: var(--text-primary);
}

/* General & Careers section */
.contact-general {
    padding: 4rem 0 5rem;
    border-top: 1px solid var(--border-color);
}

.contact-general-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-general-heading {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.contact-general-left p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-general-cta {
    font-weight: 500;
    margin-top: 1.5rem;
}

.contact-brand-name {
    display: flex;
    align-items: baseline;
    gap: 0.1rem;
    margin: 1.25rem 0 0.75rem;
}

.contact-brand-name .logo-text {
    font-size: 1.5rem;
}

.contact-brand-name .logo-amp {
    font-size: 1.35rem;
}

.contact-brand-name .logo-reg {
    font-size: 0.6rem;
}

.contact-links {
    margin-bottom: 1.5rem;
}

.contact-links a {
    color: var(--border-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-links a:hover {
    color: var(--text-primary);
}

.contact-details p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-details strong {
    font-weight: 600;
}

.contact-licence {
    font-size: 0.85rem;
    color: var(--text-primary);
}

.contact-licence a {
    color: var(--border-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-licence a:hover {
    color: var(--text-primary);
}

.contact-general-right {
    min-height: 400px;
}

.contact-general-right iframe {
    border-radius: 4px;
    filter: saturate(0.15) contrast(1.1) brightness(1.05);
}

/* Contact responsive */
@media (max-width: 768px) {
    .contact-title {
        font-size: 1.75rem;
    }

    .contact-container {
        padding: 0 1rem;
    }

    .contact-form {
        max-width: 100%;
    }

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

    .contact-general-content {
        grid-template-columns: 1fr;
    }

    .contact-general-right {
        min-height: 300px;
    }
}

@media (max-width: 640px) {
    .contact-page {
        padding: 1rem 0 0;
    }

    .contact-section-heading,
    .contact-general-heading {
        font-size: 1.35rem;
    }
}

/* ================================
   Services Page — Mayfair Sticky Scroll
   ================================ */

/* Intro */
.svc-intro {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
}

.svc-intro-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.svc-intro-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.75rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.svc-intro-divider {
    width: 100%;
    height: 2px;
    background-color: var(--border-color);
    margin-bottom: 2.5rem;
}

.svc-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.svc-intro-grid p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
}

/* Service Blocks (Residential / Commercial) */
.svc-block {
    padding: 6rem 2rem;
}

.svc-block--residential {
    background-color: #8B3A00;
}

.svc-block--commercial {
    background-color: #1a2a3a;
}

.svc-block-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.svc-block-heading {
    font-family: 'ABCFavorit', Georgia, 'Times New Roman', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.1;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.25rem;
}

.svc-block-tagline {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 2.5rem;
}

.svc-block-desc {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1.5rem;
    max-width: 750px;
}

.svc-block-link {
    display: inline-block;
    margin-top: 1rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 0.25rem;
    transition: opacity 0.2s ease;
}

.svc-block-link:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .svc-block {
        padding: 4rem 1.5rem;
    }

    .svc-block-heading {
        font-size: 2.25rem;
    }
}

/* Scroll Wrapper */
.svc-scroll-wrapper {
    position: relative;
}

/* Each panel = one service section */
.svc-panel {
    position: relative;
}

.svc-panel-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* Text side (colored bg) — sticky while images scroll */
.svc-panel-text {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 3.5rem;
    overflow: hidden;
}

.svc-panel-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.svc-panel-tagline {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 1.5rem;
}

.svc-panel-desc-large {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 400;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.25rem;
    max-width: 500px;
}

.svc-panel-desc-small {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.svc-panel-link {
    display: inline-block;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 0.25rem;
    transition: opacity 0.2s ease;
}

.svc-panel-link:hover {
    opacity: 0.7;
}

/* Images side — scrolls naturally */
.svc-panel-images {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-color);
}

.svc-panel-img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
}

/* Services responsive */
@media (max-width: 1024px) {
    .svc-panel-text {
        padding: 3.5rem 2.5rem;
    }

    .svc-panel-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .svc-intro {
        min-height: auto;
        padding: 2rem 0;
    }

    .svc-intro-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .svc-intro-title {
        font-size: 1.75rem;
    }

    .svc-intro-container {
        padding: 0 1rem;
    }

    .svc-panel-inner {
        grid-template-columns: 1fr;
    }

    .svc-panel-text {
        position: relative;
        height: auto;
        padding: 3rem 1.5rem;
    }

    .svc-panel-title {
        font-size: 2rem;
    }

    .svc-panel-images {
        padding: 1rem;
        gap: 1rem;
    }

    .svc-panel-img {
        height: auto;
        aspect-ratio: 4/3;
    }
}
