@import url("https://fonts.googleapis.com/css2?family=ADLaM+Display&family=Cormorant+Garamond:wght@500;600;700&family=Great+Vibes&family=Manrope:wght@400;500;600;700&display=swap");

:root {
    --brown: #5a3a32;
    --brown-deep: #3f2822;
    --cream: #f5f3ee;
    --gold: #f5a623;
    --ink: #2c2320;
    --text-dark: #6A5A2E;
    --text-light: #ffffff;
    --accent: #f5a623;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text-dark);
    background: linear-gradient(180deg, #f8f5ef 0%, #f5f3ee 60%, #f2efe8 100%);
    font-family: "ADLaM Display", cursive;
    overflow-x: hidden;
}

body.nav-menu-open {
    overflow: hidden;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 10, 10, 0.45);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    animation: headerReveal 0.72s ease both;
    transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.site-header::after {
    display: none;
}

.site-header.scrolled {
    background: linear-gradient(135deg, rgba(62, 39, 35, 0.96), rgba(41, 24, 21, 0.98));
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    border-bottom-color: rgba(244, 166, 42, 0.15);
}

.site-header.hero-transparent {
    position: fixed;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(15, 10, 10, 0.5), rgba(15, 10, 10, 0));
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: none;
}

.site-header.hero-transparent::after {
    display: none;
}

.site-header.hero-transparent.scrolled {
    background: linear-gradient(135deg, rgba(62, 39, 35, 0.96), rgba(41, 24, 21, 0.98));
    border-bottom: 1px solid rgba(244, 166, 42, 0.15);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.site-header.solid-dark,
.site-header.solid-dark.scrolled {
    background: linear-gradient(135deg, rgba(62, 39, 35, 0.98), rgba(41, 24, 21, 1));
    border-bottom: 1px solid rgba(244, 166, 42, 0.15);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.site-header.solid-dark::after {
    display: none;
}

.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: visible;
    gap: 22px;
    padding: 10px 0;
    transition: padding 0.35s ease;
}

.site-header.scrolled .header-inner {
    padding: 3px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    text-decoration: none;
}

.brand-name-wrap {
    transition: transform 0.35s ease;
}

.brand:hover .brand-name-wrap {
    transform: scale(1.04);
}

.brand-name-wrap {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 0;
}

.brand-logo {
    display: block;
    width: auto;
    height: clamp(62px, 6.8vw, 94px);
    max-width: min(380px, 58vw);
    object-fit: contain;
    transform-origin: left center;
    animation: brandZoom 0.82s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.site-header.scrolled .brand-logo {
    height: clamp(58px, 6.3vw, 88px);
}

.site-header.hero-transparent .brand-logo {
    filter: drop-shadow(0 4px 16px rgba(11, 8, 7, 0.4));
}

.site-header.solid-dark .brand-logo {
    filter: drop-shadow(0 4px 16px rgba(11, 8, 7, 0.4));
}

.brand-title {
    color: var(--cream);
    font-family: "Great Vibes", cursive;
    font-size: clamp(1.6rem, 2vw, 1.95rem);
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1;
    white-space: nowrap;
    text-shadow: 0 4px 16px rgba(11, 8, 7, 0.42);
}

.site-header.hero-transparent .brand-title,
.site-header.solid-dark .brand-title {
    color: var(--cream);
    text-shadow: 0 4px 16px rgba(11, 8, 7, 0.42);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 42px;
    padding: 8px;
    border: 1px solid rgba(245, 243, 238, 0.25);
    border-radius: 10px;
    background: rgba(34, 25, 22, 0.4);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.nav-toggle:hover {
    border-color: rgba(244, 166, 42, 0.45);
    transform: translateY(-1px);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--cream);
    transition: transform 0.3s ease, opacity 0.22s ease;
}

.site-header.hero-transparent .nav-toggle,
.site-header.solid-dark .nav-toggle {
    border-color: rgba(245, 243, 238, 0.38);
    background: rgba(34, 25, 22, 0.4);
}

.site-header.hero-transparent .nav-toggle span,
.site-header.solid-dark .nav-toggle span {
    background: var(--cream);
}

.site-header.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: visible;
    gap: 20px;
}

.main-nav {
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
    overflow: visible;
    min-width: 0;
}

.header-cta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.btn-get-started {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f5a623, #d4af37);
    color: #111;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-get-started:hover {
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.6);
    transform: translateY(-2px);
    color: #000;
    background: linear-gradient(135deg, #f7b733, #e6c25a);
}

.main-nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 1px;
    transition: color 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}

.site-header.hero-transparent .main-nav a,
.site-header.solid-dark .main-nav a {
    color: rgba(255, 255, 255, 0.85);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, #d4af37, #f5a623);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.main-nav a.active,
.main-nav li.active>.nav-link-row>a,
.main-nav a:hover,
.main-nav li:hover>.nav-link-row>a {
    color: #ffffff;
    filter: brightness(1.1);
}

.site-header.hero-transparent .main-nav a.active,
.site-header.hero-transparent .main-nav li.active>.nav-link-row>a,
.site-header.hero-transparent .main-nav a:hover,
.site-header.hero-transparent .main-nav li:hover>.nav-link-row>a,
.site-header.solid-dark .main-nav a.active,
.site-header.solid-dark .main-nav li.active>.nav-link-row>a,
.site-header.solid-dark .main-nav a:hover,
.site-header.solid-dark .main-nav li:hover>.nav-link-row>a {
    color: #ffffff;
}

.site-header.hero-transparent .main-nav a::after,
.site-header.solid-dark .main-nav a::after {
    background: linear-gradient(90deg, #d4af37, #f5a623);
}

.main-nav a.active::after,
.main-nav li.active>.nav-link-row>a::after,
.main-nav a:hover::after,
.main-nav li:hover>.nav-link-row>a::after {
    transform: scaleX(1);
    transform-origin: left;
}

.main-nav a:hover {
    transform: translateY(-1px);
}

.has-dropdown {
    position: relative;
}

.has-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 12px;
}

.nav-link-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.has-dropdown.open .dropdown-toggle {
    background: var(--brown);
    color: var(--cream);
    transform: rotate(45deg);
}

.site-header.hero-transparent .dropdown-toggle,
.site-header.solid-dark .dropdown-toggle {
    border-color: rgba(245, 243, 238, 0.35);
    background: rgba(245, 243, 238, 0.1);
    color: var(--cream);
}

.site-header.hero-transparent .has-dropdown.open .dropdown-toggle,
.site-header.solid-dark .has-dropdown.open .dropdown-toggle {
    background: var(--gold);
    border-color: rgba(244, 166, 42, 0.72);
    color: #231713;
}

.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: -12px;
    display: grid;
    gap: 8px;
    min-width: 250px;
    padding: 14px;
    margin: 0;
    list-style: none;
    border: 1px solid rgba(244, 166, 42, 0.15);
    border-radius: 14px;
    background: rgba(15, 10, 10, 0.95);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px) scale(0.98);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.site-header.hero-transparent .dropdown,
.site-header.solid-dark .dropdown {
    background: rgba(15, 10, 10, 0.95);
    border-color: rgba(244, 166, 42, 0.15);
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.4);
}

.dropdown li {
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.has-dropdown:focus-within .dropdown,
.has-dropdown.open .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.has-dropdown:focus-within .dropdown li,
.has-dropdown.open .dropdown li {
    opacity: 1;
    transform: translateY(0);
}

.has-dropdown:focus-within .dropdown li:nth-child(1),
.has-dropdown.open .dropdown li:nth-child(1) {
    transition-delay: 0.015s;
}

.has-dropdown:focus-within .dropdown li:nth-child(2),
.has-dropdown.open .dropdown li:nth-child(2) {
    transition-delay: 0.03s;
}

.has-dropdown:focus-within .dropdown li:nth-child(3),
.has-dropdown.open .dropdown li:nth-child(3) {
    transition-delay: 0.045s;
}

.has-dropdown:focus-within .dropdown li:nth-child(4),
.has-dropdown.open .dropdown li:nth-child(4) {
    transition-delay: 0.06s;
}

.has-dropdown:focus-within .dropdown li:nth-child(5),
.has-dropdown.open .dropdown li:nth-child(5) {
    transition-delay: 0.075s;
}

.dropdown a {
    display: block;
    padding: 10px 11px;
    border-radius: 10px;
    text-transform: none;
    letter-spacing: 0.03em;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.dropdown a::after {
    display: none;
}

.dropdown a:hover {
    color: #d4af37;
    background: rgba(244, 166, 42, 0.1);
    transform: translateX(4px);
}

.site-header.hero-transparent .dropdown a,
.site-header.solid-dark .dropdown a {
    color: rgba(255, 255, 255, 0.8);
}

.site-header.hero-transparent .dropdown a:hover,
.site-header.solid-dark .dropdown a:hover {
    color: #d4af37;
    background: rgba(244, 166, 42, 0.1);
}

@media (min-width: 981px) {
    .has-dropdown:hover .dropdown {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .has-dropdown:hover .dropdown li {
        opacity: 1;
        transform: translateY(0);
    }

    .has-dropdown:hover .dropdown li:nth-child(1) {
        transition-delay: 0.015s;
    }

    .has-dropdown:hover .dropdown li:nth-child(2) {
        transition-delay: 0.03s;
    }

    .has-dropdown:hover .dropdown li:nth-child(3) {
        transition-delay: 0.045s;
    }

    .has-dropdown:hover .dropdown li:nth-child(4) {
        transition-delay: 0.06s;
    }

    .has-dropdown:hover .dropdown li:nth-child(5) {
        transition-delay: 0.075s;
    }
}

/* Mobile-only CTA inside nav */
.mobile-only-cta {
    display: none;
}

@media (max-width: 980px) {
    .mobile-only-cta {
        display: block;
        margin-top: 6px;
        padding: 0 14px 4px;
    }

    .mobile-only-cta .btn-get-started {
        display: block;
        width: 100%;
        text-align: center;
        padding: 13px 20px;
        border-radius: 999px;
        font-size: 0.82rem;
    }
}

.page-content {
    min-height: calc(100vh - 150px);
    padding: 56px 0;
}

/* Page Back Button */
.page-back-button {
    display: inline-block;
    margin-bottom: 24px;
    color: #f5a623;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: pointer;
}

.page-back-button:hover {
    color: #d4af37;
    transform: translateX(-4px);
}

body:not(.page-home) .page-content {
    padding-top: 118px;
}

.page-home-content {
    min-height: auto;
    padding: 0;
}

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    background: #17110f;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(23, 16, 14, 0.08);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(23, 16, 14, 0.06);
}

.hero-slider {
    --hero-parallax: 0px;
    position: absolute;
    inset: 0;
    transform: translate3d(0, calc(var(--hero-parallax) * -1), 0);
    will-change: transform;
}

.hero-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.hero-slide.is-active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 3.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide.is-active img {
    transform: scale(1.08);
}

.hero-content {
    position: absolute;
    z-index: 2;
    top: auto;
    bottom: 40px;
    left: clamp(16px, 5vw, 40px);
    right: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 4px;
    max-width: 980px;
    padding: 0;
    margin: 0;
}

.hero-kicker {
    margin: 0;
    color: rgba(245, 243, 238, 0.84);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    animation: heroFadeUp 0.5s ease 0.18s both;
}

.hero-title {
    margin: 0;
    color: #5a3a32;
    font-family: "Great Vibes", cursive;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    line-height: 1.1;
    font-weight: 700;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 0 10px rgba(244, 166, 42, 0.2);
    animation: heroFadeUp 0.8s ease 0.35s both;
    background: linear-gradient(135deg, rgba(245, 243, 238, 0.58), rgba(255, 255, 255, 0.32));
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(244, 166, 42, 0.24);
    backdrop-filter: blur(8px);
    display: inline-block;
}

.hero-title-tagline {
    display: inline-block;
    color: #f4a62a;
    font-family: "Great Vibes", cursive;
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.1;
    margin: 0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);

    /* Box styles matching hero-title */
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 4px 10px;
    border-radius: 6px;
    background: linear-gradient(135deg, #1a1210 0%, #2d1f1a 30%, #3a2518 60%, #1a1210 100%);
    background-size: 400% 400%;
    border: 1px solid rgba(244, 166, 42, 0.38);
    box-shadow: 0 8px 16px rgba(10, 8, 7, 0.26);
    animation: heroFadeUp 0.8s ease 0.62s both, heroGradientFlow 12s ease infinite;
}

.hero-title-tagline::before {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(30deg, transparent 48%, rgba(244, 166, 42, 0.04) 49%, rgba(244, 166, 42, 0.04) 51%, transparent 52%),
        linear-gradient(150deg, transparent 48%, rgba(244, 166, 42, 0.03) 49%, rgba(244, 166, 42, 0.03) 51%, transparent 52%),
        linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.015) 49%, rgba(255, 255, 255, 0.015) 51%, transparent 52%);
    background-size: 52px 52px, 78px 78px, 40px 40px;
    animation: heroPatternDrift 20s linear infinite;
}

.hero-tagline {
    margin: 0;
    color: var(--gold);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.05rem, 2.1vw, 1.5rem);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: heroFadeUp 0.9s ease 0.62s both;
}

.hero-subline {
    margin: 4px 0 10px 0;
    color: #1a1a1a;
    font-size: clamp(0.7rem, 1.2vw, 0.8rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 900;
    animation: heroFadeUp 0.9s ease 0.96s both;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(245, 243, 238, 0.48), rgba(255, 255, 255, 0.22));
    border: 1px solid rgba(244, 166, 42, 0.15);
    backdrop-filter: blur(8px);
}

.hero-bottom-glass {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 20px 28px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.88));
    border: 1px solid rgba(244, 166, 42, 0.24);
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 0 30px rgba(244, 166, 42, 0.14);
    max-width: calc(100% - 32px);
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 16px;
    border: 2px solid #fff;
    border-radius: 999px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: background 0.32s ease, color 0.32s ease, transform 0.32s ease;
    animation: heroFadeUp 1s ease 1.24s both;
    margin-bottom: 0;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.28);
}

.hero-btn:hover {
    background: #fff;
    color: #1a1a1a;
    transform: translateY(-2px);
    border-color: #fff;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.hero-btn--ghost {
    background: rgba(244, 166, 42, 0.88);
    border-color: rgba(244, 166, 42, 0.92);
    color: #1b1210;
}

.hero-btn--ghost:hover {
    background: #f4a62a;
    border-color: #f4a62a;
    color: #1b1210;
}

.hero-slide-captions {
    margin-top: 24px;
    height: 30px;
    position: relative;
    width: 100%;
}

.slide-caption {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.slide-caption.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .slide-caption {
        left: 50%;
        transform: translate(-50%, 10px);
        width: 100%;
    }
    .slide-caption.active {
        transform: translate(-50%, 0);
    }
}

.hero-controls {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.hero-arrow {
    pointer-events: auto;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(245, 243, 238, 0.42);
    border-radius: 999px;
    background: rgba(15, 10, 9, 0.32);
    color: var(--cream);
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.hero-arrow:hover {
    background: rgba(15, 10, 9, 0.58);
    border-color: rgba(245, 243, 238, 0.68);
    transform: scale(1.06);
}

@media (min-width: 981px) {
    .hero-controls.container {
        top: 58%;
        right: 4%;
        left: auto;
        bottom: auto;
        transform: translateY(-50%);
        width: auto;
        margin: 0;
        display: inline-flex;
        gap: 12px;
        align-items: center;
        justify-content: flex-end;
        pointer-events: auto;
    }

    .hero-arrow {
        width: 52px;
        height: 52px;
        background: rgba(43, 30, 26, 0.68);
        border-color: rgba(244, 166, 42, 0.74);
    }

    .hero-arrow:hover {
        background: rgba(244, 166, 42, 0.9);
        color: var(--brown-deep);
        border-color: #f4a62a;
        transform: translateY(-2px);
    }
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 180px;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(245, 243, 238, 0.44);
    cursor: pointer;
    transition: width 0.28s ease, background 0.28s ease;
}

.hero-dot.is-active {
    width: 30px;
    background: var(--gold);
}

.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 50px;
    z-index: 3;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(245, 243, 238, 0.9);
    text-decoration: none;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.66rem;
    font-weight: 700;
    transform: translateX(-50%);
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(244, 166, 42, 0.15);
    backdrop-filter: blur(8px);
}

.scroll-indicator::after {
    content: "";
    width: 1px;
    height: 20px;
    background: linear-gradient(180deg, rgba(245, 243, 238, 0.9), rgba(245, 243, 238, 0));
    animation: scrollLine 1.8s ease-in-out infinite;
}

@media (min-width: 981px) {}

/* Custom About Section (Compact) */
.custom-about-section {
    position: relative;
    padding: 84px 16px;
    background: linear-gradient(180deg, #fffaf2 0%, #f7f2e9 100%);
    overflow: hidden;
}

.custom-about-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(to right, rgba(163, 163, 163, 0.18) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(163, 163, 163, 0.18) 1px, transparent 1px);
    background-size: 70px 70px;
    -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 100%, #000 70%, transparent 110%);
    mask-image: radial-gradient(ellipse 80% 50% at 50% 100%, #000 70%, transparent 110%);
}

.custom-about-glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: radial-gradient(125% 125% at 50% 90%, transparent 40%, rgba(19, 19, 19, 0) 100%);
    background-size: 100% 100%;
}

.page-home .custom-about-section .clip-svgs,
.page-home .custom-about-section>.custom-about-content {
    display: none;
}

.home-about-modern {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: clamp(34px, 6vw, 78px);
    align-items: center;
}

.home-about-title {
    margin: 0;
    color: #4b312b;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.1rem, 5vw, 4.45rem);
    line-height: 0.98;
    letter-spacing: 0;
}

.home-about-text {
    max-width: 610px;
    margin: 22px 0 0;
    color: #5b4e4a;
    font-size: 1rem;
    line-height: 1.85;
}

.home-about-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 28px;
}

.home-about-points span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(90, 58, 50, 0.16);
    background: rgba(255, 255, 255, 0.64);
    color: #4b312b;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home-about-visual {
    position: relative;
    min-height: clamp(430px, 48vw, 560px);
}

.home-about-photo {
    position: absolute;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #e6d8c8;
    box-shadow: 0 24px 54px rgba(44, 35, 32, 0.18);
}

.home-about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-about-photo:hover img {
    transform: scale(1.05);
}

.home-about-photo--main {
    top: 0;
    right: 0;
    width: 78%;
    height: 76%;
}

.home-about-photo--side {
    left: 0;
    bottom: 0;
    width: 48%;
    height: 48%;
    border: 8px solid #fffaf2;
}

.home-about-badge {
    position: absolute;
    right: 5%;
    bottom: 8%;
    display: grid;
    gap: 3px;
    max-width: 220px;
    padding: 16px 18px;
    border-radius: 8px;
    background: rgba(25, 16, 13, 0.86);
    color: #fff;
    box-shadow: 0 18px 42px rgba(25, 16, 13, 0.26);
    backdrop-filter: blur(12px);
}

.home-about-badge strong {
    color: #f4a62a;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.35rem;
    line-height: 1;
}

.home-about-badge span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    line-height: 1.45;
}

.custom-about-label {
    color: #2563eb;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.custom-about-section--compact {
    padding: 54px 16px;
}

.custom-about-section--compact .custom-about-content {
    grid-template-columns: 1fr;
    max-width: 980px;
    gap: 12px;
}

.custom-about-section--compact .custom-about-title {
    font-size: clamp(1.65rem, 4vw, 2.4rem);
    margin-bottom: 10px;
}

.custom-about-section--compact .custom-about-desc {
    margin-bottom: 12px;
    display: block;
}

.custom-about-section--compact .custom-about-desc p {
    margin: 0 0 10px;
}

.custom-about-section--compact .custom-about-desc p:last-child {
    margin-bottom: 0;
}

@media (min-width: 981px) {
    .custom-about-section--compact .custom-about-desc {
        column-count: 2;
        column-gap: 34px;
    }

    .custom-about-section--compact .custom-about-desc p {
        break-inside: avoid-column;
    }
}

@media (max-width: 600px) {
    .custom-about-section--compact {
        padding: 42px 16px;
    }

    .custom-about-section--compact .custom-about-btn {
        width: 100%;
        justify-content: center;
    }
}

.about-company-title {
    margin: 0 0 12px;
    color: #5a3a32;
    font-family: "Cormorant Garamond", serif;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.2;
}

.section-glass-headline,
.page-title,
.inner-section-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 24px;
    border: 1px solid rgba(90, 58, 50, 0.22);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(245, 243, 238, 0.36));
    box-shadow: 0 14px 28px rgba(44, 35, 32, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.section-glass-headline::before,
.section-glass-headline::after,
.page-title::before,
.page-title::after,
.inner-section-title::before,
.inner-section-title::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 166, 42, 0.9) 0%, rgba(244, 166, 42, 0.45) 68%, rgba(244, 166, 42, 0) 100%);
    box-shadow: 0 0 10px rgba(244, 166, 42, 0.28);
    flex-shrink: 0;
}

.custom-about-btn {
    background-color: #2563eb;
    color: white;
    padding: 12px 24px;
    border-radius: 9999px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.4);
    border: 1px solid #2563eb;
    transition: all 0.3s ease-in-out;
    margin: 0;
}

.word-reveal-item {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    filter: blur(10px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
    will-change: opacity, transform, filter;
    margin-right: 0.25em;
}

.about-word-reveal.is-visible .word-reveal-item {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.custom-about-btn:hover {
    background-color: #1d4ed8;
    gap: 16px;
    box-shadow: 0 15px 20px -3px rgba(37, 99, 235, 0.5);
}

.custom-about-photos {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 40px;
    height: clamp(220px, 40vw, 416px);
    max-width: 1152px;
    margin: 0 auto;
}

.custom-about-photo {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin: 0;
}

.custom-about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.custom-about-photo .rotate-left {
    transform: rotate(6deg) scale(1.1);
}

.custom-about-photo .rotate-right {
    transform: rotate(-6deg) scale(1.1);
}

.custom-about-photo:hover img {
    transform: rotate(0deg) scale(1.15);
}

.js-animate .about-reveal {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 0.86s;
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--about-delay, 0s);
    will-change: opacity, transform;
}

.js-animate .about-reveal-left {
    transform: translateX(-42px);
}

.js-animate .about-reveal-up {
    transform: translateY(24px);
}

.js-animate .about-reveal.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

.js-animate .process-reveal {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 0.7s;
    transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: var(--process-delay, 0s);
    transform: translateY(25px);
}

.js-animate .process-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Our Process Premium Section */
.process-section {
    padding: 70px 0 80px;
    background: linear-gradient(180deg, #f5f3ee 0%, #f9f7f4 100%);
    position: relative;
    overflow: hidden;
}

.process-header {
    text-align: left;
    margin-bottom: 56px;
}

.process-heading {
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    margin-bottom: 14px;
    color: #5a3a32;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.process-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    color: rgba(90, 58, 50, 0.72);
    letter-spacing: 0.06em;
    max-width: 600px;
    margin: 0 auto;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    width: 100%;
    margin: 0;
    padding: 0;
    align-items: stretch;
}

.process-section>.container {
    max-width: 1400px;
}

.process-step {
    background: #fffaf2;
    border: 1px solid rgba(90, 58, 50, 0.2);
    border-radius: 20px;
    padding: 32px 24px 28px;
    text-align: left;
    box-shadow: 0 12px 26px rgba(44, 35, 32, 0.08);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: 320px;
    gap: 12px;
}

.process-step::after {
    content: none;
}

.process-step>* {
    position: relative;
    z-index: 1;
}

.process-step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #f5a623, transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 22px 22px 0 0;
}

.process-step:hover {
    transform: translateY(-6px);
    border-color: rgba(244, 166, 42, 0.7);
    box-shadow: 0 18px 36px rgba(244, 166, 42, 0.18);
    background: #ffffff;
}

.process-step:hover::before {
    opacity: 1;
}

.process-icon {
    width: 95px;
    height: 95px;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 166, 35, 0.08);
    border: 2px solid rgba(245, 166, 35, 0.3);
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.process-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(245, 166, 35, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.process-step:hover .process-icon {
    background: rgba(245, 166, 35, 0.16);
    border-color: rgba(245, 166, 35, 0.6);
    transform: scale(1.1);
    box-shadow: inset 0 0 20px rgba(245, 166, 35, 0.1), 0 0 24px rgba(245, 166, 35, 0.2);
}

.process-step:hover .process-icon::before {
    opacity: 1;
}

.process-icon svg {
    width: 60%;
    height: 60%;
    stroke: #f5a623;
    fill: none;
    transition: all 0.5s ease;
}

.process-step:hover .process-icon svg {
    transform: scale(1.15);
}

.step-title {
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    color: var(--text-dark);
    font-weight: 700;
    margin: 0;
    margin-top: 0;
    letter-spacing: 0.04em;
    transition: all 0.4s ease;
    line-height: 1.3;
    text-align: left;
}

 .process-step:hover .step-title {
    color: var(--text-dark);
}

.step-description {
    font-size: 0.93rem;
    color: rgba(106, 90, 46, 0.85);
    line-height: 1.6;
    transition: all 0.4s ease;
    margin: 0;
    max-width: 30ch;
    width: 100%;
    text-align: left;
    flex: 1 1 auto;
}

.process-step:hover .step-description {
    color: rgba(106, 90, 46, 0.95);
}

.step-line {
    display: none !important;
}

.home-overview {
    padding-top: 86px;
    padding-bottom: 80px;
}

.custom-services-section {
    position: relative;
    padding: 84px 0 96px;
    background:
        linear-gradient(180deg, #17100e 0%, #261a16 58%, #f7f2e9 58%, #f7f2e9 100%);
    overflow: hidden;
}

.custom-services-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(30deg, transparent 48%, rgba(244, 166, 42, 0.035) 49%, rgba(244, 166, 42, 0.035) 51%, transparent 52%),
        linear-gradient(150deg, transparent 48%, rgba(255, 255, 255, 0.025) 49%, rgba(255, 255, 255, 0.025) 51%, transparent 52%);
    background-size: 90px 90px, 130px 130px;
    pointer-events: none;
}

.services-showcase-intro {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-showcase-heading {
    margin: 0 0 10px;
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.04em;
}

.services-showcase-subtitle {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.8;
    max-width: 680px;
}

.services-strip {
    position: relative;
    z-index: 1;
    max-width: 1120px;
}

.services-strip-gallery {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 230px;
    gap: 14px;
}

.service-thumb {
    position: relative;
    display: block;
    min-width: 0;
    overflow: hidden;
    border-radius: 8px;
    text-decoration: none;
    background: #211512;
    box-shadow: 0 22px 48px rgba(18, 12, 10, 0.28);
}

.service-thumb--featured {
    grid-column: span 3;
    grid-row: span 2;
}

.service-thumb:not(.service-thumb--featured) {
    grid-column: span 2;
}

.service-thumb-media {
    position: absolute;
    inset: 0;
    display: block;
    background: #2b201d;
}

.service-thumb-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(12, 8, 7, 0.1) 0%, rgba(12, 8, 7, 0.45) 46%, rgba(12, 8, 7, 0.88) 100%);
    transition: opacity 0.35s ease;
}

.service-thumb:hover .service-thumb-media img {
    transform: scale(1.08);
}

.service-thumb-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: grid;
    gap: 8px;
    padding: 22px;
    color: #fff;
    transform: translateY(0);
    transition: transform 0.35s ease;
}

.service-thumb-content small {
    color: #f4a62a;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.service-thumb-content strong {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    line-height: 1;
}

.service-thumb-content span {
    max-width: 92%;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
    line-height: 1.55;
}

.service-thumb:hover .service-thumb-content {
    transform: translateY(-4px);
}

.service-thumb--featured .service-thumb-content {
    padding: 28px;
}

.service-thumb--featured .service-thumb-content strong {
    font-size: clamp(2rem, 4.2vw, 3.4rem);
}

.home-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #9a6719;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.home-section-kicker::before {
    content: "";
    width: 32px;
    height: 1px;
    background: currentColor;
}

.home-featured-projects {
    padding: 84px 0 92px;
    background: linear-gradient(180deg, #f7f2e9 0%, #fffaf2 100%);
    overflow: hidden;
}

.home-featured-head {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
    gap: 28px;
    align-items: end;
    margin-bottom: 28px;
}

.home-featured-title {
    margin: 0;
    color: var(--brown);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.04em;
}

.home-featured-head p {
    margin: 0;
    color: #554946;
    line-height: 1.75;
}

.home-featured-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 230px;
    gap: 14px;
}

.home-featured-card {
    position: relative;
    min-width: 0;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    color: #fff;
    background: #2b201d;
    text-decoration: none;
    box-shadow: 0 18px 40px rgba(44, 35, 32, 0.16);
}

.home-featured-card--large {
    grid-column: span 2;
    grid-row: span 2;
}

.home-featured-media {
    position: absolute;
    inset: 0;
}

.home-featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}

.home-featured-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 6, 5, 0.05), rgba(9, 6, 5, 0.82));
}

.home-featured-card:hover .home-featured-media img {
    transform: scale(1.07);
    filter: saturate(1.04);
}

.home-featured-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: grid;
    gap: 6px;
    padding: 20px;
}

.home-featured-info small {
    color: #f4a62a;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.home-featured-info strong {
    max-width: 92%;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.35rem, 2.6vw, 2rem);
    line-height: 1.05;
}

.home-final-cta {
    padding: 88px 0;
    background:
        linear-gradient(135deg, rgba(18, 12, 10, 0.94), rgba(63, 40, 34, 0.92)),
        url("../images/architecture1.jpeg") center/cover;
    color: #fff;
}

.home-final-cta-inner {
    max-width: 840px;
    text-align: center;
}

.home-final-cta .home-section-kicker {
    justify-content: center;
    color: #f4a62a;
}

.home-final-cta h2 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.3rem, 5vw, 4.8rem);
    line-height: 1;
}

.home-final-cta p {
    max-width: 680px;
    margin: 20px auto 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
}

.home-final-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

@media (max-width: 980px) {
    .home-about-modern {
        grid-template-columns: 1fr;
    }

    .home-about-visual {
        min-height: 460px;
        order: -1;
    }

    .services-strip-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 280px;
        gap: 16px 14px;
    }

    .service-thumb--featured,
    .service-thumb:not(.service-thumb--featured) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .home-featured-head {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .home-featured-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 230px;
    }
}

@media (max-width: 620px) {
    .home-about-visual {
        min-height: 390px;
    }

    .home-about-photo--main {
        width: 86%;
        height: 72%;
    }

    .home-about-photo--side {
        width: 56%;
        height: 44%;
        border-width: 6px;
    }

    .home-about-badge {
        right: 0;
        bottom: 4%;
        max-width: 190px;
    }

    .home-about-points span {
        width: 100%;
        justify-content: center;
    }

    .home-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .home-hero-actions .hero-btn {
        min-width: 220px;
    }

    .services-strip-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 320px;
    }

    .service-thumb-content,
    .service-thumb--featured .service-thumb-content {
        padding: 20px;
    }

    .service-thumb-content span {
        max-width: 100%;
    }

    .home-featured-projects,
    .home-final-cta {
        padding: 62px 0;
    }

    .home-featured-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }

    .home-featured-card--large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .home-final-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

.custom-services-layout {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .custom-services-layout {
        flex-direction: row;
        gap: 56px;
    }
}

.custom-services-photos {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    overflow-x: auto;
    padding-bottom: 8px;
    width: 100%;
    scrollbar-width: none;
}

.custom-services-photos::-webkit-scrollbar {
    display: none;
}

@media (min-width: 768px) {
    .custom-services-photos {
        width: auto;
        padding-bottom: 0;
    }
}

.custom-services-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.custom-services-col.col-2 {
    margin-top: 48px;
}

.custom-services-col.col-3 {
    margin-top: 120px;
}

@media (min-width: 768px) {
    .custom-services-col.col-2 {
        margin-top: 68px;
    }

    .custom-services-col.col-3 {
        margin-top: 156px;
    }
}

.service-photo-card {
    display: block;
    width: 130px;
    height: 140px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    transition: opacity 0.4s ease;
    opacity: 1;
}

.custom-services-photos.has-hover .service-photo-card {
    opacity: 0.6;
}

.custom-services-photos.has-hover .service-photo-card.is-active,
.service-photo-card.is-active {
    opacity: 1;
}

@media (min-width: 768px) {
    .service-photo-card {
        width: 155px;
        height: 165px;
    }

    .custom-services-col.col-2 .service-photo-card {
        width: 172px;
        height: 182px;
    }

    .custom-services-col.col-3 .service-photo-card {
        width: 162px;
        height: 172px;
    }
}

.our-art-section {
    padding: 70px 0 86px;
    background: linear-gradient(180deg, #f7f2e9 0%, #fffaf2 52%, #f3eadc 100%);
    overflow: hidden;
}

.our-art-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.our-art-title {
    margin: 0;
}

.our-art-subtitle {
    margin: 14px 0 0;
    color: #554946;
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    max-width: 620px;
}

.our-art-accordion {
    display: flex;
    align-items: stretch;
    gap: 10px;
    overflow-x: auto;
    padding: 8px 4px 14px;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

.our-art-accordion::-webkit-scrollbar {
    display: none;
}

.our-art-item {
    appearance: none;
    border: 1px solid rgba(90, 58, 50, 0.12);
    padding: 0;
    margin: 0;
    background: #ece5d8;
    position: relative;
    width: 58px;
    height: clamp(280px, 38vw, 360px);
    flex: 0 0 auto;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    scroll-snap-align: center;
    transition: width 0.62s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
    box-shadow: 0 12px 24px rgba(44, 35, 32, 0.08);
}

.our-art-item.is-active {
    width: clamp(250px, 31vw, 360px);
    background: #14110f;
    border-color: rgba(244, 166, 42, 0.22);
    box-shadow: 0 18px 38px rgba(44, 35, 32, 0.16);
}

.our-art-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
}

.our-art-item:hover img,
.our-art-item.is-active img {
    transform: scale(1.045);
    filter: saturate(1.04);
}

.our-art-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 12, 10, 0.08) 0%, rgba(18, 12, 10, 0.7) 100%);
    opacity: 0.82;
    transition: opacity 0.35s ease;
}

.our-art-item.is-active .our-art-overlay {
    opacity: 1;
}

.our-art-caption {
    position: absolute;
    color: rgba(255, 255, 255, 0.95);
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.74rem;
    white-space: nowrap;
    left: 50%;
    bottom: 92px;
    transform: translateX(-50%) rotate(90deg);
    transition: transform 0.3s ease, bottom 0.3s ease, opacity 0.3s ease;
    text-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.our-art-item.is-active .our-art-caption {
    left: 18px;
    right: 18px;
    bottom: 16px;
    transform: translateX(-50%) rotate(0deg);
    text-align: left;
    white-space: normal;
    font-size: 0.86rem;
}

.our-art-item:hover {
    transform: translateY(-3px);
}

/* Contact Page Redesign */
.contact-modern {
    padding: 100px 0;
    background: #fff;
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-tag {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 20px;
}

.contact-title {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--brown);
    margin-bottom: 40px;
}

.contact-title span {
    color: var(--gold);
    font-family: "Great Vibes", cursive;
    text-transform: none;
}

.contact-info-blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--brown);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.info-text, .info-text a {
    color: #666;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: var(--gold);
}

.modern-form {
    background: #fdfcf9;
    padding: 50px;
    border-radius: 40px;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 20px 60px rgba(0,0,0,0.04);
}

.form-row {
    margin-bottom: 20px;
}

.form-row input, .form-row select, .form-row textarea {
    width: 100%;
    padding: 18px 24px;
    border-radius: 16px;
    border: 1px solid #eee;
    background: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 4px rgba(244, 166, 42, 0.05);
}

.modern-submit-btn {
    width: 100%;
    padding: 20px;
    border-radius: 16px;
    background: var(--brown);
    color: white;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modern-submit-btn:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(244, 166, 42, 0.2);
}

.contact-map-full {
    line-height: 0;
}

@media (max-width: 980px) {
    .contact-split {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    .modern-form {
        padding: 30px;
    }
}

/* Team Page Redesign */
.team-modern {
    padding: 100px 0;
    background: #fdfcf9;
}

.team-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    transition: transform 0.4s ease;
}

.team-member-card:hover {
    transform: translateY(-10px);
}

.member-image {
    height: 350px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-member-card:hover .member-image img {
    transform: scale(1.05);
}

.member-details {
    padding: 30px;
    text-align: center;
}

.member-name {
    font-size: 1.5rem;
    color: var(--brown);
    margin-bottom: 5px;
}

.member-role {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.member-bio {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.6;
}

/* Modern Services Page */
.services-modern {
    padding: 100px 0;
    background: #fff;
}

.services-list-vertical {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.service-block {
    display: grid;
    grid-template-columns: 80px 1fr 1.2fr;
    align-items: center;
    gap: 60px;
}

.service-meta {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(244, 166, 42, 0.1);
    font-family: "Manrope", sans-serif;
}

.service-title {
    font-size: 2.5rem;
    color: var(--brown);
    margin-bottom: 20px;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

.service-link {
    display: inline-block;
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.service-link:hover {
    border-color: var(--gold);
    padding-left: 5px;
}

.service-media {
    border-radius: 30px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 980px) {
    .service-block {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .service-meta {
        font-size: 3rem;
    }
    .service-media {
        height: 300px;
        order: -1;
    }
}

/* About Us Redesign */
.about-philosophy {
    padding: 100px 0;
    background: #fff;
}

.philosophy-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.philosophy-tag {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 20px;
}

.philosophy-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    color: var(--brown);
    margin-bottom: 30px;
}

.philosophy-title span {
    color: var(--gold);
    font-family: "Great Vibes", cursive;
    text-transform: none;
}

.philosophy-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.philosophy-visual {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.philosophy-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-values {
    padding: 100px 0;
    background: #f9f8f4;
}

.values-header {
    text-align: center;
    margin-bottom: 60px;
}

.values-title {
    font-size: 3rem;
    color: var(--brown);
}

.values-title span {
    color: var(--gold);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.value-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(244, 166, 42, 0.1);
    line-height: 1;
    margin-bottom: 20px;
}

.value-name {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--brown);
}

.value-text {
    color: #777;
    line-height: 1.6;
}

@media (max-width: 980px) {
    .philosophy-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

/* Projects Page Staggered Grid */
.projects-showcase {
    padding: 80px 0;
    background: #fdfcf9;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: repeat(2, 300px);
    gap: 24px;
}

.showcase-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.arch-detail-gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.arch-detail-photo {
    margin: 0;
    position: relative;
}

.showcase-main {
    grid-row: span 2;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.showcase-item:hover img {
    transform: scale(1.08);
}

.showcase-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.showcase-item:hover .showcase-info {
    transform: translateY(0);
}

.showcase-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}

.showcase-name {
    font-size: 1.8rem;
    margin: 0;
    font-weight: 600;
}

@media (max-width: 980px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .showcase-main {
        height: 400px;
    }
    .showcase-side {
        height: 300px;
    }
}

@media (max-width: 820px) {
    .our-art-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .our-art-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 560px) {
    .our-art-section {
        padding: 58px 0 66px;
    }

    .our-art-item {
        width: 72vw;
        height: 320px;
    }

    .our-art-item.is-active {
        width: 72vw;
    }

    .our-art-caption,
    .our-art-item.is-active .our-art-caption {
        left: 16px;
        right: 16px;
        bottom: 14px;
        transform: none;
        text-align: left;
        white-space: normal;
    }
}

.projects-grid-section {
    padding: 34px 0 88px;
    background: linear-gradient(180deg, #f6f3ed 0%, #f5f3ee 64%, #efe9dd 100%);
}

.projects-grid-intro {
    text-align: center;
    margin-bottom: 24px;
}

.projects-grid-heading {
    margin: 0 0 10px;
    color: var(--brown);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.04em;
}

.projects-grid-subtitle {
    margin: 0;
    color: #554946;
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.projects-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0 0 26px;
}

.projects-filter-btn {
    appearance: none;
    border: 1px solid rgba(90, 58, 50, 0.24);
    background: rgba(255, 255, 255, 0.82);
    color: #5a3a32;
    font-family: "Manrope", sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 16px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.28s ease, color 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}

.projects-filter-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(244, 166, 42, 0.38);
}

.projects-filter-btn.is-active {
    background: linear-gradient(135deg, #5a3a32, #7b5145);
    color: #fff;
    border-color: rgba(90, 58, 50, 0.68);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px 14px;
}

.project-grid-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
}

.project-grid-card.is-hidden {
    display: none;
}

.project-grid-media {
    width: 100%;
    aspect-ratio: 1;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(90, 58, 50, 0.18);
    box-shadow: 0 10px 24px rgba(44, 35, 32, 0.1);
    background: #ece5d8;
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.project-grid-media.is-horizontal {
    aspect-ratio: 4 / 3;
}

.project-grid-media.is-vertical {
    aspect-ratio: 3 / 4;
}

.project-grid-media.is-square {
    aspect-ratio: 1 / 1;
}

.project-grid-card:hover .project-grid-media {
    border-color: rgba(244, 166, 42, 0.24);
    box-shadow: 0 14px 32px rgba(244, 166, 42, 0.16);
}

.project-grid-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
}

.project-grid-card:hover .project-grid-media img {
    transform: scale(1.08);
}

.project-grid-label {
    color: #f4a62a;
    font-family: "Manrope", sans-serif;
    font-size: clamp(0.82rem, 1.2vw, 1rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-align: center;
    transition: color 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    padding: 10px 18px;
    border-radius: 12px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);

    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1210 0%, #2d1f1a 30%, #3a2518 60%, #1a1210 100%);
    background-size: 400% 400%;
    border: 1px solid rgba(244, 166, 42, 0.38);
    box-shadow: 0 14px 28px rgba(10, 8, 7, 0.26);
    animation: heroGradientFlow 12s ease infinite;
}

.project-grid-label::before {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(30deg, transparent 48%, rgba(244, 166, 42, 0.04) 49%, rgba(244, 166, 42, 0.04) 51%, transparent 52%),
        linear-gradient(150deg, transparent 48%, rgba(244, 166, 42, 0.03) 49%, rgba(244, 166, 42, 0.03) 51%, transparent 52%),
        linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.015) 49%, rgba(255, 255, 255, 0.015) 51%, transparent 52%);
    background-size: 52px 52px, 78px 78px, 40px 40px;
    animation: heroPatternDrift 20s linear infinite;
}

.project-grid-card:hover .project-grid-label {
    color: #fff;
    box-shadow: 0 0 24px rgba(244, 166, 42, 0.24);
    border-color: rgba(244, 166, 42, 0.42);
}

/* Projects Heading & Subtitle Reveal Animations */
.projects-heading-reveal {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    transform: translateY(14px);
}

.projects-heading-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.projects-subtitle-reveal {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.16s, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.16s;
    transform: translateY(14px);
}

.projects-subtitle-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Projects Lightbox Modal */
.projects-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(0px);
}

.projects-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(8px);
}

.projects-lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 19, 17, 0.62);
    z-index: -1;
}

.projects-lightbox-container {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 40px 80px rgba(44, 35, 32, 0.26);
    border: 1px solid rgba(90, 58, 50, 0.16);
    animation: lightboxSlideUp 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes lightboxSlideUp {
    from {
        opacity: 0;
        transform: translateY(32px) scale(0.92);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.projects-lightbox-content {
    width: 100%;
    max-height: calc(90vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
}

.projects-lightbox-content img {
    width: 100%;
    height: auto;
    max-height: calc(90vh - 100px);
    object-fit: contain;
    border-radius: 12px;
}

.projects-lightbox-title {
    margin-top: 16px;
    color: var(--brown);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.4rem, 2.8vw, 1.8rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-align: center;
}

.projects-lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(244, 166, 42, 0.88);
    color: #fff;
    cursor: pointer;
    z-index: 2010;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 20px rgba(244, 166, 42, 0.28);
}

.projects-lightbox-close:hover {
    background: rgba(244, 166, 42, 0.96);
    transform: scale(1.12) rotate(90deg);
    box-shadow: 0 10px 28px rgba(244, 166, 42, 0.38);
}

.projects-lightbox-close span {
    position: absolute;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
}

.projects-lightbox-close span:first-child {
    transform: rotate(45deg);
}

.projects-lightbox-close span:last-child {
    transform: rotate(-45deg);
}

.projects-grid-cta {
    margin-top: 30px;
    text-align: center;
}

.projects-view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border: 2px solid #f4a62a;
    border-radius: 999px;
    color: #5a3a32;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.projects-view-all-btn:hover {
    background: #f4a62a;
    color: #fff;
    transform: translateY(-2px);
}

/* Service detail and project gallery pages */
.service-detail-page,
.projects-page,
.project-detail-page {
    padding-top: 0;
}

body:not(.page-home) .service-detail-page,
body:not(.page-home) .projects-page,
body:not(.page-home) .project-detail-page {
    padding-top: 0;
}

.service-hero,
.project-index-hero,
.project-detail-hero {
    position: relative;
    min-height: min(760px, 92vh);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    isolation: isolate;
    background: #17110f;
}

.service-hero-media,
.project-index-hero-bg,
.project-detail-hero-media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.service-hero-media img,
.project-index-hero-bg img,
.project-detail-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    animation: projectHeroDrift 14s ease-in-out infinite alternate;
}

.service-hero-overlay,
.project-index-hero-overlay,
.project-detail-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(12, 8, 7, 0.88) 0%, rgba(12, 8, 7, 0.56) 42%, rgba(12, 8, 7, 0.2) 100%),
        linear-gradient(0deg, rgba(12, 8, 7, 0.88) 0%, rgba(12, 8, 7, 0.1) 50%);
}

.service-hero-inner,
.project-index-hero-inner,
.project-detail-hero-inner {
    width: min(1120px, 92%);
    padding: 190px 0 76px;
    color: #fff;
}

.service-kicker,
.project-kicker,
.service-section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: #f4a62a;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.service-kicker::before,
.project-kicker::before,
.service-section-label::before {
    content: "";
    width: 30px;
    height: 1px;
    background: currentColor;
}

.service-title,
.project-index-title,
.project-detail-title {
    max-width: 780px;
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.7rem, 6.6vw, 6.2rem);
    font-weight: 700;
    line-height: 0.95;
    color: #fff;
}

.service-lede,
.project-index-copy,
.project-detail-copy {
    max-width: 640px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 1.7vw, 1.18rem);
    line-height: 1.78;
}

.service-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.service-primary-btn,
.service-secondary-btn,
.project-back-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.service-primary-btn {
    background: #f4a62a;
    color: #211512;
    border: 1px solid #f4a62a;
}

.service-secondary-btn,
.project-back-link {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.08);
}

.service-primary-btn:hover,
.service-secondary-btn:hover,
.project-back-link:hover {
    transform: translateY(-2px);
}

.service-overview-section,
.service-projects-section,
.project-index-section,
.project-gallery-section {
    padding: 88px 0;
    background: #f7f2e9;
}

.service-process-section,
.project-detail-info-section {
    padding: 84px 0;
    background: #fffaf2;
}

.service-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: clamp(34px, 6vw, 76px);
    align-items: start;
}

.service-overview-copy h2,
.service-section-head h2 {
    margin: 0;
    color: #4b312b;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 4.2vw, 3.45rem);
    line-height: 1.05;
}

.service-overview-copy p {
    margin: 20px 0 0;
    color: #5b4e4a;
    font-size: 1rem;
    line-height: 1.85;
}

.service-points {
    display: grid;
    gap: 12px;
}

.service-point {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 14px;
    align-items: center;
    padding: 18px;
    border: 1px solid rgba(90, 58, 50, 0.13);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
}

.service-point strong {
    color: #f4a62a;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.6rem;
}

.service-point span {
    color: #3b302d;
    font-weight: 700;
    line-height: 1.45;
}

.service-section-head {
    max-width: 720px;
    margin-bottom: 34px;
}

.service-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.service-process-card {
    min-height: 260px;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid rgba(90, 58, 50, 0.14);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 14px 34px rgba(44, 35, 32, 0.07);
}

.service-process-card span {
    color: #f4a62a;
    font-family: "Cormorant Garamond", serif;
    font-size: 2.2rem;
    font-weight: 700;
}

.service-process-card h3 {
    margin: 22px 0 10px;
    color: #4b312b;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.42rem;
}

.service-process-card p {
    margin: 0;
    color: #635653;
    font-size: 0.92rem;
    line-height: 1.7;
}

.service-project-grid,
.project-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-project-card,
.project-card-link {
    display: block;
    min-width: 0;
    color: inherit;
    text-decoration: none;
}

.service-project-media,
.project-card-media {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
    background: #ded3c3;
}

.service-project-media img,
.project-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-project-card:hover img,
.project-card-link:hover img {
    transform: scale(1.07);
}

.service-project-info,
.project-card-body {
    display: grid;
    gap: 8px;
    padding: 16px 2px 0;
}

.service-project-info span,
.project-card-meta {
    color: #f4a62a;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.service-project-info strong,
.project-card-body strong {
    color: #4b312b;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.25rem, 2.2vw, 1.55rem);
    line-height: 1.12;
}

.project-card-body span:last-child {
    color: #625653;
    font-size: 0.9rem;
    line-height: 1.55;
}

.project-filters-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.project-category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 0;
}

.project-download-ppt {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fffaf2;
    padding: 10px 18px;
    border-radius: 12px;
    border: 1px solid rgba(244, 166, 42, 0.3);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.ppt-highlight-text {
    font-size: 0.75rem;
    color: #5a3a32;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: right;
    line-height: 1.3;
}

.ppt-arrow {
    color: #f4a62a;
    animation: bounceRight 1.5s infinite;
}

@keyframes bounceRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(4px); }
}

.ppt-buttons-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-download-ppt {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #d4af37, #f5a623);
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 10px 20px;
    border-radius: 999px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-download-ppt:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
    background: linear-gradient(135deg, #f7b733, #e6c25a);
    color: #111;
}

.project-category-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border: 1px solid rgba(90, 58, 50, 0.2);
    border-radius: 999px;
    color: #5a3a32;
    background: rgba(255, 255, 255, 0.68);
    text-decoration: none;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.project-category-tab.is-active,
.project-category-tab:hover {
    color: #fff;
    background: #4b312b;
    border-color: #4b312b;
}

@media (max-width: 768px) {
    .project-filters-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .project-download-ppt {
        width: 100%;
        justify-content: space-between;
    }
    
    .ppt-highlight-text {
        text-align: left;
    }
}

.project-detail-info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.project-info-item {
    padding: 22px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(90, 58, 50, 0.13);
}

.project-info-item span {
    display: block;
    margin-bottom: 8px;
    color: #9a7c41;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.project-info-item strong {
    color: #4b312b;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.35rem;
    line-height: 1.1;
}

.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}

.project-gallery-item {
    position: relative;
    grid-column: span 4;
    min-height: 260px;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 8px;
    background: #ded3c3;
    cursor: pointer;
}

.project-gallery-item--wide {
    grid-column: span 6;
}

.project-gallery-item--portrait {
    grid-column: span 3;
    min-height: 360px;
}

.project-gallery-item--square {
    grid-column: span 4;
}

.project-gallery-item img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}

.project-gallery-item:hover img {
    transform: scale(1.06);
    filter: saturate(1.04);
}

.project-gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    gap: 4px;
    padding: 48px 16px 16px;
    color: #fff;
    text-align: left;
    background: linear-gradient(180deg, rgba(10, 7, 6, 0), rgba(10, 7, 6, 0.78));
}

.project-gallery-caption small {
    color: #f4a62a;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.project-gallery-caption strong {
    font-size: 0.95rem;
    line-height: 1.25;
}

.project-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.project-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.project-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 7, 6, 0.78);
    backdrop-filter: blur(12px);
}

.project-lightbox-panel {
    position: relative;
    z-index: 1;
    width: min(1080px, 94vw);
    max-height: 88vh;
    display: grid;
    gap: 12px;
}

.project-lightbox-panel img {
    width: 100%;
    max-height: calc(88vh - 54px);
    object-fit: contain;
    border-radius: 8px;
    background: #1b1210;
}

.project-lightbox-panel p {
    margin: 0;
    color: #fff;
    text-align: center;
    font-weight: 700;
}

.project-lightbox-close {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #f4a62a;
    cursor: pointer;
}

.project-lightbox-close span {
    position: absolute;
    left: 12px;
    top: 21px;
    width: 20px;
    height: 2px;
    background: #fff;
}

.project-lightbox-close span:first-child {
    transform: rotate(45deg);
}

.project-lightbox-close span:last-child {
    transform: rotate(-45deg);
}

.service-detail-reveal,
.project-reveal,
.home-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0s);
}

.service-detail-reveal.is-visible,
.project-reveal.is-visible,
.home-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.project-empty-copy {
    max-width: 560px;
    color: #5b4e4a;
    line-height: 1.7;
}

@keyframes projectHeroDrift {
    from {
        transform: scale(1.04) translate3d(0, 0, 0);
    }

    to {
        transform: scale(1.1) translate3d(-1.5%, 1%, 0);
    }
}

@media (max-width: 980px) {
    .service-hero,
    .project-index-hero,
    .project-detail-hero {
        min-height: 680px;
    }

    .service-hero-inner,
    .project-index-hero-inner,
    .project-detail-hero-inner {
        padding-top: 168px;
        padding-bottom: 58px;
    }

    .service-overview-grid,
    .service-process-grid,
    .service-project-grid,
    .project-card-grid,
    .project-detail-info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .project-gallery-item,
    .project-gallery-item--wide,
    .project-gallery-item--portrait,
    .project-gallery-item--square {
        grid-column: span 6;
        min-height: 280px;
    }
}

@media (max-width: 640px) {
    .service-hero,
    .project-index-hero,
    .project-detail-hero {
        min-height: 620px;
    }

    .service-hero-overlay,
    .project-index-hero-overlay,
    .project-detail-hero-overlay {
        background:
            linear-gradient(0deg, rgba(12, 8, 7, 0.9) 0%, rgba(12, 8, 7, 0.58) 55%, rgba(12, 8, 7, 0.32) 100%);
    }

    .service-title,
    .project-index-title,
    .project-detail-title {
        font-size: clamp(2.2rem, 13vw, 3.6rem);
    }

    .service-hero-actions,
    .project-category-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .service-primary-btn,
    .service-secondary-btn,
    .project-category-tab {
        width: 100%;
    }

    .service-overview-section,
    .service-process-section,
    .service-projects-section,
    .project-index-section,
    .project-gallery-section,
    .project-detail-info-section {
        padding: 58px 0;
    }

    .service-overview-grid,
    .service-process-grid,
    .service-project-grid,
    .project-card-grid,
    .project-detail-info-grid {
        grid-template-columns: 1fr;
    }

    .service-process-card {
        min-height: auto;
    }

    .project-gallery-grid {
        grid-template-columns: 1fr;
    }

    .project-gallery-item,
    .project-gallery-item--wide,
    .project-gallery-item--portrait,
    .project-gallery-item--square {
        grid-column: 1;
        min-height: 310px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-reveal,
    .service-detail-reveal,
    .project-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .home-featured-media img,
    .service-thumb-media img,
    .hero-slide img {
        animation: none;
        transition: none;
    }
}

/* Our Team Premium Section */
.team-section {
    padding: 74px 0 84px;
    background: linear-gradient(180deg, #f5f3ee 0%, #faf8f5 100%);
    position: relative;
    overflow: hidden;
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-heading {
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    margin-bottom: 16px;
    color: #5a3a32;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.team-description {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: rgba(90, 58, 50, 0.76);
    letter-spacing: 0.05em;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(90, 58, 50, 0.08);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 400px;
    opacity: 0;
    transform: translateY(30px);
    animation: teamSlideUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.team-card:nth-child(1) {
    --team-delay: 0.2s;
    animation-delay: var(--team-delay);
}

.team-card:nth-child(2) {
    --team-delay: 0.4s;
    animation-delay: var(--team-delay);
}

.team-card:nth-child(3) {
    --team-delay: 0.6s;
    animation-delay: var(--team-delay);
}

.team-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(245, 166, 35, 0.15);
}

.team-image-wrapper {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.08) 0%, rgba(90, 58, 50, 0.04) 100%);
    flex-shrink: 0;
}

.team-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.team-card:hover .team-image-wrapper img {
    transform: scale(1.05);
}

.team-contact-icons {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 10;
    padding: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(90, 58, 50, 0.8) 100%);
    backdrop-filter: blur(10px);
}

.team-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(245, 166, 35, 0.9);
    border: 1.5px solid rgba(245, 166, 35, 0.6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    backdrop-filter: blur(8px);
    opacity: 0;
    transform: translateY(30px);
    animation: iconSlideUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    transition: all 0.4s ease;
}

.team-icon-btn:nth-of-type(1) {
    --icon-delay: 0.5s;
    animation-delay: var(--icon-delay);
}

.team-icon-btn:nth-of-type(2) {
    --icon-delay: 0.65s;
    animation-delay: var(--icon-delay);
}

.team-icon-btn:nth-of-type(3) {
    --icon-delay: 0.8s;
    animation-delay: var(--icon-delay);
}

.team-card:hover .team-icon-btn {
    transform: translateY(0);
}

.team-icon-btn:hover {
    background: #f4a62a;
    color: #fff;
    border-color: #f4a62a;
    box-shadow: 0 8px 20px rgba(245, 166, 35, 0.4);
    transform: translateY(-4px) scale(1.1);
}

.team-info {
    padding: 8px 20px 4px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-grow: 0;
}

.team-name {
    font-size: 1.3rem;
    color: #5a3a32;
    font-weight: 800;
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    letter-spacing: 0.03em;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.7);
    padding: 8px 12px;
    border-radius: 8px;
    backdrop-filter: blur(8px);
    display: inline-block;
    margin-top: 0;
}

.team-card:hover .team-name {
    background: rgba(244, 166, 42, 0.15);
    color: #f4a62a;
}

.team-role {
    font-size: 0.75rem;
    color: #f4a62a;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 4px 0 0;
    transition: all 0.4s ease;
    display: block;
}

.team-tagline {
    font-size: 0.8rem;
    color: #8a7a72;
    font-style: italic;
    margin: 6px 0 0;
    line-height: 1.4;
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
}

@keyframes teamSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes iconSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.js-animate .team-reveal {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 0.8s;
    transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: var(--team-delay, 0s);
    transform: translateY(30px);
}

.js-animate .team-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Why Choose Us Premium Section */
.choose-us-section {
    padding: 64px 0 74px;
    background: linear-gradient(180deg, #f5f3ee 0%, #f1ece4 70%, #efe9dd 100%);
    position: relative;
    overflow: hidden;
}

.choose-us-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
    padding: 0 20px;
    max-width: 1240px;
    margin: 0 auto;
}

.choose-us-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.choose-us-heading {
    margin: 0 0 16px;
    color: var(--brown);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.04em;
}

.choose-us-subtitle {
    margin: 0 0 28px;
    color: #554946;
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    max-width: 500px;
}

.choose-us-list {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.choose-us-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--brown);
    font-family: "Manrope", sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 600;
    letter-spacing: 0.01em;
}

.choose-us-check {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f4a62a, #f0912a);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(244, 166, 42, 0.28);
    transform: scale(1);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.choose-us-item:hover .choose-us-check {
    transform: scale(1.16) rotateZ(8deg);
    box-shadow: 0 8px 22px rgba(244, 166, 42, 0.4);
}

.choose-us-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 32px;
    border: 2px solid #5a3a32;
    border-radius: 30px;
    color: #5a3a32;
    background: transparent;
    text-decoration: none;
    font-family: "Manrope", sans-serif;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    width: fit-content;
    transition: background 0.38s ease, color 0.38s ease, transform 0.38s ease, box-shadow 0.38s ease;
    cursor: pointer;
    box-shadow: none;
}

.choose-us-btn:hover {
    background: #5a3a32;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(90, 58, 50, 0.26);
}

.choose-us-visual-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.choose-us-visual-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid rgba(244, 166, 42, 0.55);
    box-shadow: 0 24px 48px rgba(44, 35, 32, 0.16), 0 0 0 6px rgba(244, 166, 42, 0.08);
    background: #ece5d8;
}

.choose-us-visual-card::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    pointer-events: none;
    z-index: 1;
}

.choose-us-visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.choose-us-visual-wrap:hover .choose-us-visual-card img {
    transform: scale(1.06);
}

.choose-us-badge {
    position: absolute;
    padding: 10px 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(244, 166, 42, 0.94), rgba(240, 145, 42, 0.88));
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(244, 166, 42, 0.3);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.choose-us-badge-top {
    top: 18px;
    right: 18px;
    animation: badgeSlideIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

.choose-us-badge-bottom {
    bottom: 18px;
    left: 18px;
    animation: badgeSlideIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.62s both;
}

@keyframes badgeSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Reveal Animation for Choose Us Items */
.js-animate .choose-reveal {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 0.86s;
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--choose-delay, 0s);
    will-change: opacity, transform;
    transform: translateY(24px);
}

.js-animate .choose-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.page-title {
    margin: 0 0 10px;
    color: var(--brown);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
}

.page-subtitle {
    margin: 0 0 28px;
    max-width: 780px;
    line-height: 1.7;
}

.card-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.info-card {
    padding: 18px;
    border: 1px solid rgba(90, 58, 50, 0.18);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.65);
    box-shadow: 0 8px 20px rgba(44, 35, 32, 0.05);
}

.info-card h3 {
    margin-top: 0;
    color: var(--brown);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.4rem;
}

.info-card a {
    color: var(--brown);
    text-decoration: none;
}

.list-links {
    display: grid;
    gap: 12px;
    max-width: 720px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.list-links a {
    display: block;
    padding: 14px 16px;
    border: 1px solid rgba(90, 58, 50, 0.2);
    border-radius: 10px;
    color: var(--ink);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.72);
    transition: border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.list-links a:hover {
    border-color: var(--brown);
    color: var(--brown);
    transform: translateY(-1px);
}

.site-footer {
    position: relative;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    animation: footerFadeIn 0.75s ease both;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(90, 58, 50, 0) 0%, rgba(90, 58, 50, 0.3) 50%, rgba(90, 58, 50, 0) 100%);
    pointer-events: none;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    padding: 27px 0;
}

.footer-left {
    justify-self: start;
}

.footer-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-right {
    justify-self: end;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.footer-copy {
    margin: 0;
    color: #5a3a32;
    font-size: 14px;
    letter-spacing: 0.03em;
    font-weight: 500;
}

.footer-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #5a3a32;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(244, 166, 42, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.footer-icon-btn:hover {
    color: #f4a62a;
    border-color: #f4a62a;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 24px rgba(244, 166, 42, 0.3);
}

.footer-dev-label {
    color: #5a3a32;
    font-size: 14px;
    letter-spacing: 0.04em;
    font-weight: 500;
    line-height: 1.1;
}

.footer-dev-link {
    color: #5a3a32;
    font-size: 14px;
    letter-spacing: 0.04em;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-dev-link:hover {
    color: #f4a62a;
    text-shadow: 0 2px 10px rgba(244, 166, 42, 0.35);
}

@media (max-width: 820px) {
    .footer-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 14px;
        padding: 25px 0;
    }

    .footer-left,
    .footer-right {
        justify-self: center;
    }

    .footer-right {
        align-items: center;
    }

    .footer-copy,
    .footer-dev-label,
    .footer-dev-link {
        font-size: 14px;
    }
}

@keyframes footerFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes headerReveal {
    from {
        opacity: 0;
        transform: translateY(-14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes brandZoom {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.92);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollLine {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.95;
    }

    50% {
        transform: translateY(8px);
        opacity: 0.35;
    }
}

@keyframes servicesLoopLeftToRight {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

@media (max-width: 1120px) {
    .nav-list {
        gap: 14px;
    }

    .main-nav a {
        font-size: 0.78rem;
        letter-spacing: 0.06em;
    }
}

@media (max-width: 980px) {

    .site-header,
    .site-header.scrolled,
    .site-header.hero-transparent,
    .site-header.hero-transparent.scrolled,
    .site-header.solid-dark,
    .site-header.solid-dark.scrolled {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .site-header.hero-transparent {
        background: transparent;
        border-bottom: none;
        box-shadow: none;
    }
    .site-header,
    .site-header.solid-dark,
    .site-header.scrolled,
    .site-header.hero-transparent.scrolled,
    .site-header.solid-dark.scrolled {
        background: linear-gradient(135deg, rgba(62, 39, 35, 0.98), rgba(41, 24, 21, 1));
        border-bottom: 1px solid rgba(244, 166, 42, 0.16);
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
    }

    .header-inner {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 8px 12px;
        padding: 8px 0;
    }

    .brand-logo {
        height: clamp(55px, 13vw, 80px);
        max-width: min(250px, 70vw);
    }

    .site-header.scrolled .brand-logo {
        height: clamp(50px, 11vw, 70px);
    }

    .header-cta {
        display: none;
    }

    .brand-title {
        font-size: clamp(1.45rem, 5.2vw, 2.1rem);
    }

    .page-about-us .header-inner {
        padding-top: 16px;
        padding-bottom: 10px;
    }

    .page-about-us .site-header.scrolled .header-inner {
        padding-top: 14px;
        padding-bottom: 9px;
    }

    .page-about-us .brand-title {
        line-height: 1.14;
    }

    .nav-toggle {
        display: inline-flex;
        justify-self: end;
        width: 42px;
        height: 40px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.08);
    }

    .main-nav {
        grid-column: 1 / -1;
        justify-self: center;
        display: block;
        width: 100%;
        max-width: 420px;
        margin: 4px auto 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-8px);
        background: transparent;
        border: none;
        border-radius: 12px;
        padding: 0;
        transition: max-height 0.26s ease, opacity 0.22s ease, transform 0.22s ease;
        will-change: max-height, opacity, transform;
    }

    .site-header.hero-transparent .main-nav,
    .site-header.solid-dark .main-nav {
        background: transparent;
        border: none;
    }

    .site-header.nav-open .main-nav {
        max-height: 75vh;
        opacity: 1;
        transform: translateY(0);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 8px;
        background: rgba(22, 14, 12, 0.96);
        border: 1px solid rgba(244, 166, 42, 0.16);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
    }

    .site-header.hero-transparent.nav-open .main-nav,
    .site-header.solid-dark.nav-open .main-nav {
        background: rgba(26, 19, 17, 0.92);
        border: 1px solid rgba(245, 243, 238, 0.16);
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
        gap: 7px;
        padding: 4px 0 6px;
    }

    .main-nav li {
        width: 100%;
    }

    .main-nav a {
        display: block;
        width: 100%;
        padding: 11px 14px;
        text-align: center;
        border-radius: 9px;
        color: var(--cream);
        background: rgba(245, 243, 238, 0.08);
    }

    .site-header.hero-transparent .main-nav a,
    .site-header.solid-dark .main-nav a {
        color: var(--cream);
        background: rgba(245, 243, 238, 0.08);
    }

    .main-nav a:hover {
        transform: none;
    }

    .main-nav a::after {
        bottom: 7px;
    }

    .nav-link-row {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
        gap: 8px;
    }

    .nav-link-row>a {
        flex: 1;
    }

    .dropdown-toggle {
        display: inline-flex;
        width: 32px;
        height: 32px;
        flex: 0 0 32px;
        transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
    }

    .has-dropdown::after {
        display: none;
    }

    .has-dropdown .dropdown {
        position: static;
        top: auto;
        left: auto;
        min-width: 0;
        margin-top: 0;
        padding: 0;
        border: none;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.24s ease, padding-top 0.2s ease;
        will-change: max-height;
    }

    .has-dropdown.open .dropdown {
        max-height: 600px;
        padding-top: 6px;
    }

    .has-dropdown .dropdown li {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .dropdown a {
        padding: 10px 12px;
        text-align: center;
        border-radius: 9px;
        border: 1px solid rgba(90, 58, 50, 0.18);
        background: rgba(255, 255, 255, 0.84);
    }

    .site-header.hero-transparent .dropdown a,
    .site-header.solid-dark .dropdown a {
        color: var(--cream);
        border-color: rgba(245, 243, 238, 0.2);
        background: rgba(245, 243, 238, 0.08);
    }

    .dropdown a:hover {
        transform: none;
    }

    .page-content {
        padding-top: 42px;
    }

    body.page-home .page-content.page-home-content {
        padding-top: 0;
    }

    body:not(.page-home) .page-content {
        padding-top: 110px;
    }

    .hero-content {
        align-items: center;
        text-align: center;
        padding-top: 170px;
        padding-bottom: 130px;
    }

    .hero-kicker {
        letter-spacing: 0.26em;
    }

    .hero-subline {
        line-height: 1.8;
    }

    .hero-controls {
        padding-inline: 4%;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .scroll-indicator {
        bottom: 34px;
    }

    .hero-dots {
        bottom: 18px;
    }

    .home-overview {
        padding-top: 64px;
    }

    .services-showcase-section {
        padding: 38px 0 68px;
    }

    .projects-grid-section {
        padding: 24px 0 74px;
    }

    .projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 12px;
    }

    .services-showcase-intro {
        margin-bottom: 18px;
    }

    .services-marquee-track {
        animation-duration: 29s;
    }

    .services-marquee-set {
        gap: 20px;
        padding-right: 20px;
    }

    .service-marquee-card {
        width: 200px;
        gap: 10px;
    }

    .service-marquee-media {
        width: 170px;
        height: 170px;
    }

    .service-marquee-media img {
        transform: scale(1.1);
    }

    .service-marquee-title {
        min-height: 40px;
        padding: 8px 12px;
        font-size: 1.08rem;
        font-weight: 600;
        letter-spacing: 0.03em;
    }

    .about-company-section {
        padding: 60px 0 42px;
    }

    .about-company {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-company-media img {
        min-height: 300px;
    }

    .about-company-title {
        font-size: clamp(2rem, 5.6vw, 2.25rem);
    }

    .section-glass-headline {
        padding: 9px 20px;
    }

    .choose-us-section {
        padding: 54px 0 62px;
    }

    .choose-us-layout {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 20px;
    }

    .choose-us-visual-card {
        max-width: 380px;
        margin: 0 auto;
    }

    .process-section {
        padding: 56px 0 64px;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .process-step {
        padding: 28px 20px 24px;
    }

    .process-icon {
        width: 85px;
        height: 85px;
        margin-bottom: 18px;
    }

    .step-title {
        font-size: 1.15rem;
        margin-bottom: 8px;
    }

    .step-description {
        font-size: 0.9rem;
    }

    .team-section {
        padding: 56px 0 64px;
    }

    .team-heading {
        font-size: clamp(1.6rem, 5vw, 2.4rem);
        margin-bottom: 14px;
    }

    .team-description {
        font-size: 0.95rem;
        max-width: 600px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .team-card {
        height: 100%;
    }

    .team-image-wrapper {
        height: 240px;
    }

    .team-info {
        padding: 8px 18px 4px;
    }

    .team-name {
        font-size: 1.15rem;
        margin-bottom: 3px;
    }

    .team-role {
        font-size: 0.7rem;
        margin: 2px 0 0;
    }

    .team-tagline {
        font-size: 0.75rem;
        margin: 4px 0 0;
    }

    .team-icon-btn {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}

@media (max-width: 620px) {
    .brand-logo {
        height: clamp(42px, 12vw, 56px);
        max-width: min(178px, 58vw);
        animation: none;
        transform: none;
        transform-origin: left center;
    }

    .site-header.scrolled .brand-logo {
        height: clamp(40px, 11vw, 52px);
        transform: none;
    }

    .brand-title {
        font-size: clamp(1.45rem, 7.2vw, 2rem);
    }

    .page-about-us .header-inner {
        padding-top: 15px;
        padding-bottom: 9px;
    }

    .page-about-us .site-header.scrolled .header-inner {
        padding-top: 13px;
        padding-bottom: 8px;
    }

    .main-nav a {
        font-size: 0.76rem;
        letter-spacing: 0.05em;
    }

    body:not(.page-home) .page-content {
        padding-top: 102px;
    }

    .hero-title {
        font-size: clamp(2.0rem, 10vw, 3.2rem);
        padding: 8px 14px;
        white-space: nowrap;
        border-radius: 10px;
    }

    .hero-title-tagline {
        padding: 0;
        font-size: clamp(1.8rem, 6vw, 2.4rem);
        margin-bottom: 12px;
    }

    .hero-subline {
        font-size: 0.62rem;
        letter-spacing: 0.08em;
        padding: 6px 12px;
        font-weight: 900;
    }

    .hero-btn {
        font-size: 0.68rem;
        padding: 8px 18px;
    }

    .scroll-indicator {
        font-size: 0.58rem;
        padding: 6px 10px;
        bottom: 45px;
    }

    .hero-controls {
        display: none;
    }

    .about-company-section {
        padding: 50px 0 34px;
    }

    .about-company-media img {
        min-height: 240px;
    }

    .about-company-title {
        letter-spacing: 0.5px;
    }

    .about-company-subtitle {
        font-size: 1.05rem;
        letter-spacing: 0.03em;
    }

    .about-company-btn {
        width: 100%;
        max-width: 230px;
    }

    .services-showcase-section {
        padding: 30px 0 56px;
    }

    .projects-grid-section {
        padding: 20px 0 58px;
    }

    .projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .projects-filter {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
    }

    .projects-filter-btn {
        white-space: nowrap;
    }

    .project-grid-card {
        gap: 10px;
    }

    .project-grid-media.is-vertical {
        aspect-ratio: 4 / 5;
    }

    .project-grid-label {
        font-size: 1rem;
        padding: 6px 12px;
    }

    .projects-grid-cta {
        margin-top: 22px;
    }

    .projects-view-all-btn {
        width: 100%;
        max-width: 260px;
    }

    .projects-lightbox-close {
        width: 40px;
        height: 40px;
    }

    .projects-lightbox-close span {
        width: 18px;
    }

    .projects-lightbox-container {
        width: 95%;
        padding: 16px;
        max-height: calc(100vh - 40px);
    }

    .projects-lightbox-content {
        max-height: calc(100vh - 120px);
    }

    .projects-lightbox-content img {
        max-height: calc(100vh - 120px);
    }

    .process-section {
        padding: 48px 0 56px;
    }

    .process-header {
        margin-bottom: 40px;
    }

    .process-heading {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
        margin-bottom: 10px;
    }

    .process-subtitle {
        font-size: 0.88rem;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .process-step {
        padding: 24px 18px 20px;
    }

    .process-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 16px;
    }

    .step-title {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }

    .step-description {
        font-size: 0.86rem;
        line-height: 1.55;
    }

    .team-section {
        padding: 48px 0 56px;
    }

    .team-heading {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
        margin-bottom: 12px;
    }

    .team-description {
        font-size: 0.88rem;
        max-width: 100%;
        line-height: 1.6;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }

    .team-card {
        height: 100%;
        min-height: auto;
    }

    .team-image-wrapper {
        height: 260px;
    }

    .team-info {
        padding: 18px 16px;
    }

    .team-name {
        font-size: 1.1rem;
        margin-bottom: 2px;
    }

    .team-role {
        font-size: 0.65rem;
        margin: 1px 0 0;
    }

    .team-tagline {
        font-size: 0.7rem;
        margin: 3px 0 0;
    }

    .team-icon-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .team-contact-icons {
        gap: 8px;
    }

    .choose-us-section {
        padding: 42px 0 50px;
    }

    .choose-us-layout {
        gap: 24px;
        padding: 0 16px;
    }

    .choose-us-heading {
        font-size: clamp(1.6rem, 8vw, 2.4rem);
        margin-bottom: 12px;
    }

    .choose-us-subtitle {
        margin-bottom: 18px;
        font-size: 0.92rem;
    }

    .choose-us-list {
        gap: 12px;
        margin-bottom: 22px;
    }

    .choose-us-item {
        font-size: 1rem;
        gap: 12px;
    }

    .choose-us-check {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }

    .choose-us-btn {
        width: 100%;
        max-width: 240px;
        padding: 11px 28px;
        font-size: 0.78rem;
    }

    .choose-us-visual-card {
        max-width: 320px;
        aspect-ratio: 1;
    }

    .choose-us-badge {
        padding: 8px 14px;
        font-size: 0.7rem;
    }

    .choose-us-badge-top {
        top: 12px;
        right: 12px;
    }

    .choose-us-badge-bottom {
        bottom: 12px;
        left: 12px;
    }


    .services-marquee-track {
        animation-duration: 25s;
    }

    .services-marquee-set {
        gap: 14px;
        padding-right: 14px;
    }

    .service-marquee-card {
        width: 180px;
    }

    .service-marquee-media {
        width: 150px;
        height: 150px;
    }

    .service-marquee-title {
        min-height: 42px;
        padding: 10px 14px;
        font-size: 1.08rem;
    }

    .section-glass-headline {
        padding: 8px 16px;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(245, 243, 238, 0.7) 0%, rgba(250, 248, 244, 0.9) 100%);
    position: relative;
}

.reviews-header {
    text-align: center;
    margin-bottom: 60px;
}

.reviews-heading {
    font-size: 2.4rem;
    color: var(--brown);
    margin: 0 0 16px 0;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
}

.reviews-subtitle {
    font-size: 1.1rem;
    color: #8a7a72;
    margin: 0;
    font-weight: 400;
}

.reviews-carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.reviews-carousel {
    display: flex;
    gap: 20px;
    width: 100%;
}

.review-card {
    flex: 0 0 calc((100% - 60px) / 4);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(90, 58, 50, 0.15);
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(90, 58, 50, 0.08);
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(90, 58, 50, 0.15);
    border-color: rgba(245, 166, 42, 0.3);
}

.reviews-carousel {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5a3a32 0%, #8a5a4d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(90, 58, 50, 0.2);
}

.review-initials {
    color: #f5f3ee;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: "Manrope", sans-serif;
}

.review-client-name {
    margin: 0 0 4px 0;
    font-size: 1.1rem;
    color: var(--brown);
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
}

.review-service {
    margin: 0 0 12px 0;
    font-size: 0.85rem;
    color: #f5a623;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review-text {
    margin: 0 0 16px 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6b6b6b;
    flex-grow: 1;
}

.review-rating {
    display: flex;
    gap: 6px;
    margin-top: auto;
}

.star {
    color: #f5a623;
    font-size: 0.9rem;
}

.reviews-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.reviews-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brown);
    color: #f5f3ee;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.35s ease;
    box-shadow: 0 4px 12px rgba(90, 58, 50, 0.2);
}

.reviews-nav:hover {
    background: #f5a623;
    box-shadow: 0 6px 16px rgba(245, 166, 42, 0.25);
}

.reviews-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.review-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(90, 58, 50, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.35s ease;
}

.review-dot.active {
    background: var(--brown);
    width: 24px;
    border-radius: 5px;
}

/* Tablet Styles - Reviews */
@media (max-width: 980px) {
    .reviews-section {
        padding: 60px 0;
    }

    .reviews-heading {
        font-size: 2rem;
    }

    .reviews-carousel {
        gap: 18px;
    }

    .review-card {
        flex: 0 0 calc((100% - 36px) / 3);
    }
}

/* Mobile Styles - Reviews */
@media (max-width: 620px) {
    .reviews-section {
        padding: 40px 0;
    }

    .reviews-heading {
        font-size: 1.6rem;
    }

    .reviews-subtitle {
        font-size: 0.95rem;
    }

    .reviews-carousel {
        gap: 0;
    }

    .review-card {
        flex: 0 0 100%;
        padding: 18px;
    }

    .reviews-controls {
        gap: 16px;
    }

    .reviews-nav {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}

/* Contact Office Assistance Section */
.contact-assist-section {
    position: relative;
    padding: 24px 0 14px;
    background: linear-gradient(180deg, rgba(245, 243, 238, 0.46) 0%, rgba(255, 255, 255, 0.95) 40%, #ffffff 100%);
}

.contact-assist-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(90, 58, 50, 0), rgba(90, 58, 50, 0.28), rgba(90, 58, 50, 0));
}

.contact-assist-intro {
    text-align: center;
    margin-bottom: 14px;
}

.contact-assist-section-title {
    margin: 0;
}

.contact-assist-section-subtitle {
    margin: 10px auto 0;
    max-width: 700px;
    color: rgba(90, 58, 50, 0.76);
    font-size: 0.92rem;
    line-height: 1.55;
}

.contact-assist-wrap {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 420px minmax(0, 1fr);
    align-items: stretch;
    gap: 0;
    min-height: 420px;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(90, 58, 50, 0.18);
    box-shadow: 0 8px 28px rgba(90, 58, 50, 0.1);
}

.contact-assist-media {
    margin: 0;
    position: relative;
    min-height: 420px;
    height: 420px;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.08) 0%, rgba(90, 58, 50, 0.04) 100%);
    border-right: 1px solid rgba(90, 58, 50, 0.14);
}

.contact-assist-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
    transition: transform 0.5s ease;
}

.contact-assist-wrap:hover .contact-assist-media img {
    transform: scale(1.05);
}

.contact-assist-photo-label {
    position: absolute;
    left: 10px;
    bottom: 10px;
    margin: 0;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(63, 40, 34, 0.78);
    color: var(--cream);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.contact-assist-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
    padding: 20px 22px;
    background: #ffffff;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.contact-assist-kicker {
    margin: 0;
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-assist-title {
    margin: 0;
    color: var(--brown);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.4rem, 2vw, 1.9rem);
    line-height: 1.1;
}

.contact-assist-text {
    margin: 0;
    color: #5f4a43;
    font-size: 0.86rem;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.contact-assist-line {
    margin: 0;
    color: #5a3a32;
    font-size: 0.82rem;
    line-height: 1.45;
    font-weight: 600;
}

.contact-assist-extra {
    margin: 0;
    color: rgba(90, 58, 50, 0.84);
    font-size: 0.74rem;
    line-height: 1.42;
}

.contact-assist-info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: -2px;
}

.contact-assist-info-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(245, 166, 35, 0.12);
    border: 1px solid rgba(245, 166, 35, 0.28);
    color: #6a4a40;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.contact-assist-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 4px;
}

.contact-assist-btn {
    min-width: 0;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    font-weight: 700;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.contact-assist-btn-call {
    background: linear-gradient(135deg, #5a3a32 0%, #3f2822 100%);
    border: 1px solid rgba(90, 58, 50, 0.65);
    color: #ffffff;
    box-shadow: 0 6px 12px rgba(63, 40, 34, 0.16);
}

.contact-assist-btn-call:hover {
    background: linear-gradient(135deg, #f5a623 0%, #ee9322 100%);
    border-color: rgba(244, 166, 42, 0.7);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(244, 166, 42, 0.2);
}

.contact-assist-btn-mail {
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(90, 58, 50, 0.42);
    color: #5a3a32;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 11px rgba(44, 35, 32, 0.07);
}

.contact-assist-btn-mail:hover {
    border-color: rgba(244, 166, 42, 0.8);
    color: #f5a623;
    transform: translateY(-1px);
    box-shadow: 0 8px 15px rgba(244, 166, 42, 0.15);
}

.contact-assist-reveal {
    opacity: 1;
    transform: translateY(0);
}

.js-animate .contact-assist-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition-property: opacity, transform;
    transition-duration: 0.76s;
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--assist-delay, 0s);
}

.js-animate .contact-assist-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .contact-assist-section {
        padding: 16px 0 10px;
    }

    .contact-assist-intro {
        margin-bottom: 12px;
    }

    .contact-assist-section-subtitle {
        font-size: 0.85rem;
    }

    .contact-assist-wrap {
        max-width: 860px;
        grid-template-columns: 380px minmax(0, 1fr);
        min-height: 380px;
    }

    .contact-assist-media {
        min-height: 380px;
        height: 380px;
    }

    .contact-assist-content {
        padding: 16px;
    }

    .contact-assist-actions {
        gap: 8px;
    }

    .contact-assist-btn {
        padding: 9px 10px;
        font-size: 0.66rem;
    }
}

@media (max-width: 620px) {
    .contact-assist-section {
        padding: 14px 0 8px;
    }

    .contact-assist-intro {
        margin-bottom: 10px;
    }

    .contact-assist-section-subtitle {
        margin-top: 8px;
        font-size: 0.76rem;
        line-height: 1.4;
        max-width: 95%;
    }

    .contact-assist-wrap {
        max-width: 420px;
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .contact-assist-media {
        min-height: 340px;
        height: 340px;
        border-right: 0;
        border-bottom: 1px solid rgba(90, 58, 50, 0.14);
    }

    .contact-assist-content {
        gap: 8px;
        padding: 12px 12px 11px;
    }

    .contact-assist-title {
        font-size: 1.1rem;
    }

    .contact-assist-text,
    .contact-assist-line {
        font-size: 0.74rem;
        line-height: 1.32;
    }

    .contact-assist-extra {
        font-size: 0.68rem;
        line-height: 1.3;
    }

    .contact-assist-info-pill {
        font-size: 0.56rem;
        padding: 3px 7px;
    }

    .contact-assist-actions {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .contact-assist-btn {
        padding: 8px 8px;
        font-size: 0.6rem;
    }

    .contact-assist-photo-label {
        font-size: 0.56rem;
        padding: 4px 8px;
    }
}




/* ========== INNER PAGES STYLES ========== */

/* --- Inner Hero Banner (Animated, No Image) --- */
.inner-hero {
    position: relative;
    min-height: 326px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1210 0%, #2d1f1a 30%, #3a2518 60%, #1a1210 100%);
    background-size: 400% 400%;
    animation: heroGradientFlow 12s ease infinite;
}

/* Animated geometric lines */
.inner-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(30deg, transparent 48%, rgba(244, 166, 42, 0.04) 49%, rgba(244, 166, 42, 0.04) 51%, transparent 52%),
        linear-gradient(150deg, transparent 48%, rgba(244, 166, 42, 0.03) 49%, rgba(244, 166, 42, 0.03) 51%, transparent 52%),
        linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.015) 49%, rgba(255, 255, 255, 0.015) 51%, transparent 52%);
    background-size: 80px 80px, 120px 120px, 60px 60px;
    animation: heroPatternDrift 20s linear infinite;
    z-index: 1;
}

/* Floating architectural shapes */
.inner-hero::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(244, 166, 42, 0.08);
    border-radius: 50%;
    top: -200px;
    right: -150px;
    animation: heroCircleFloat 18s ease-in-out infinite;
    z-index: 1;
}

/* Animated decorative elements */
.inner-hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.inner-hero-shapes span {
    position: absolute;
    display: block;
    border: 1px solid rgba(244, 166, 42, 0.06);
}

.inner-hero-shapes span:nth-child(1) {
    width: 120px;
    height: 120px;
    left: 8%;
    top: 15%;
    border-radius: 4px;
    transform: rotate(25deg);
    animation: heroShapeFloat1 14s ease-in-out infinite;
}

.inner-hero-shapes span:nth-child(2) {
    width: 60px;
    height: 60px;
    right: 12%;
    bottom: 20%;
    border-radius: 50%;
    animation: heroShapeFloat2 10s ease-in-out infinite;
    border-color: rgba(255, 255, 255, 0.05);
}

.inner-hero-shapes span:nth-child(3) {
    width: 200px;
    height: 1px;
    left: 5%;
    bottom: 30%;
    background: linear-gradient(90deg, transparent, rgba(244, 166, 42, 0.12), transparent);
    border: none;
    animation: heroLineSweep 8s ease-in-out infinite;
}

.inner-hero-shapes span:nth-child(4) {
    width: 80px;
    height: 80px;
    right: 25%;
    top: 10%;
    border-radius: 2px;
    transform: rotate(45deg);
    animation: heroShapeFloat1 16s ease-in-out infinite reverse;
    border-color: rgba(244, 166, 42, 0.05);
}

.inner-hero-shapes span:nth-child(5) {
    width: 1px;
    height: 140px;
    left: 20%;
    top: 5%;
    background: linear-gradient(180deg, transparent, rgba(244, 166, 42, 0.1), transparent);
    border: none;
    animation: heroLineSweepV 10s ease-in-out infinite;
}

@keyframes heroGradientFlow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    25% {
        background-position: 100% 25%;
    }

    50% {
        background-position: 100% 50%;
    }

    75% {
        background-position: 0% 75%;
    }
}

@keyframes heroPatternDrift {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(80px, 80px);
    }
}

@keyframes heroCircleFloat {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.15) rotate(180deg);
        opacity: 1;
    }
}

@keyframes heroShapeFloat1 {

    0%,
    100% {
        transform: rotate(25deg) translateY(0);
        opacity: 0.5;
    }

    50% {
        transform: rotate(35deg) translateY(-20px);
        opacity: 1;
    }
}

@keyframes heroShapeFloat2 {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.8;
    }
}

@keyframes heroLineSweep {

    0%,
    100% {
        transform: translateX(0);
        opacity: 0.3;
    }

    50% {
        transform: translateX(100px);
        opacity: 1;
    }
}

@keyframes heroLineSweepV {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.2;
    }

    50% {
        transform: translateY(40px);
        opacity: 0.8;
    }
}

@keyframes heroGradientFlowSoft {

    0%,
    100% {
        background-position: 0% 50%;
    }

    25% {
        background-position: 65% 35%;
    }

    50% {
        background-position: 70% 50%;
    }

    75% {
        background-position: 10% 65%;
    }
}

@keyframes heroPatternDriftSoft {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(36px, 36px);
    }
}

@keyframes heroCircleFloatSoft {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.45;
    }

    50% {
        transform: scale(1.07) rotate(90deg);
        opacity: 0.72;
    }
}

@keyframes heroShapeFloat1Soft {

    0%,
    100% {
        transform: rotate(25deg) translateY(0);
        opacity: 0.36;
    }

    50% {
        transform: rotate(30deg) translateY(-9px);
        opacity: 0.62;
    }
}

@keyframes heroShapeFloat2Soft {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.32;
    }

    50% {
        transform: scale(1.12);
        opacity: 0.56;
    }
}

@keyframes heroLineSweepSoft {

    0%,
    100% {
        transform: translateX(0);
        opacity: 0.24;
    }

    50% {
        transform: translateX(44px);
        opacity: 0.62;
    }
}

@keyframes heroLineSweepVSoft {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.18;
    }

    50% {
        transform: translateY(18px);
        opacity: 0.46;
    }
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    padding: 52px 20px 42px;
    animation: heroFadeUp 0.9s ease both;
}

.inner-hero-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 22px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
    box-shadow: 0 14px 28px rgba(10, 8, 7, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px;
    letter-spacing: 1px;
}

.inner-hero-title::before,
.inner-hero-title::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.5) 70%, rgba(255, 255, 255, 0) 100%);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.28);
    flex-shrink: 0;
}

.inner-hero-title span {
    color: #F4A62A;
}

.inner-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.inner-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.inner-breadcrumb a:hover {
    color: #F4A62A;
}

.inner-breadcrumb .bc-sep {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
}

.inner-breadcrumb .bc-current {
    color: #F4A62A;
}

/* --- Inner Content Sections --- */
.inner-section {
    padding: 70px 0;
}

.inner-section:nth-child(even) {
    background: rgba(244, 166, 42, 0.03);
}

.inner-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.inner-section-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #5A3A32;
    margin: 0 auto 12px;
    width: fit-content;
}

.inner-section-subtitle {
    font-size: 0.95rem;
    color: rgba(90, 58, 50, 0.7);
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Two Column Grid --- */
.inner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.inner-grid.reverse {
    direction: rtl;
}

.inner-grid.reverse>* {
    direction: ltr;
}

.inner-grid-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
}

.inner-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.inner-grid-image:hover img {
    transform: scale(1.04);
}

.inner-grid-image::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 1px solid rgba(244, 166, 42, 0.15);
    pointer-events: none;
}

.inner-grid-text h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #5A3A32;
    margin: 0 0 16px;
}

.inner-grid-text p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(90, 58, 50, 0.8);
    margin: 0 0 16px;
}

.inner-grid-text p:last-child {
    margin-bottom: 0;
}

/* --- Feature Cards --- */
.inner-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.inner-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(244, 166, 42, 0.18);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.inner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(244, 166, 42, 0.12);
}

.inner-card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(244, 166, 42, 0.1);
    color: #F4A62A;
}

.inner-card-icon svg {
    width: 24px;
    height: 24px;
}

.inner-card h4 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #5A3A32;
    margin: 0 0 10px;
}

.inner-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(90, 58, 50, 0.75);
    margin: 0;
}

/* --- Stats Row --- */
.inner-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 50px 0;
}

.inner-stat {
    text-align: center;
    padding: 24px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(244, 166, 42, 0.12);
}

.inner-stat-number {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #F4A62A;
    line-height: 1;
    margin-bottom: 8px;
}

.inner-stat-label {
    font-size: 0.82rem;
    color: rgba(90, 58, 50, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Founder Message Block --- */
.founder-block {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: start;
    padding: 40px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(244, 166, 42, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

.founder-block+.founder-block {
    margin-top: 40px;
}

.founder-photo-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.founder-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founder-photo-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    border: 2px solid rgba(244, 166, 42, 0.2);
    pointer-events: none;
}

.founder-text .founder-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #5A3A32;
    margin: 0 0 4px;
}

.founder-text .founder-role {
    font-size: 0.85rem;
    color: #F4A62A;
    font-weight: 600;
    margin: 0 0 20px;
    letter-spacing: 0.5px;
}

.founder-text .founder-quote {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.2rem;
    font-style: italic;
    color: rgba(90, 58, 50, 0.7);
    border-left: 3px solid #F4A62A;
    padding-left: 20px;
    margin: 0 0 20px;
    line-height: 1.6;
}

.founder-text p {
    font-size: 0.92rem;
    line-height: 1.75;
    color: rgba(90, 58, 50, 0.8);
    margin: 0 0 14px;
}

/* --- Timeline --- */
.inner-timeline {
    position: relative;
    padding: 20px 0;
    max-width: 700px;
    margin: 0 auto;
}

.inner-timeline::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(244, 166, 42, 0.1) 0%, rgba(244, 166, 42, 0.5) 50%, rgba(244, 166, 42, 0.1) 100%);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    padding-bottom: 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 15px;
    top: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #F4A62A;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 3px rgba(244, 166, 42, 0.2), 0 4px 12px rgba(244, 166, 42, 0.3);
}

.timeline-year {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #F4A62A;
    margin: 0 0 6px;
}

.timeline-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #5A3A32;
    margin: 0 0 8px;
}

.timeline-desc {
    font-size: 0.88rem;
    line-height: 1.65;
    color: rgba(90, 58, 50, 0.75);
    margin: 0;
}

/* --- Promise / Highlight Cards --- */
.promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.promise-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(244, 166, 42, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promise-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(244, 166, 42, 0.1);
}

.promise-card-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(244, 166, 42, 0.1);
    color: #F4A62A;
}

.promise-card-icon svg {
    width: 22px;
    height: 22px;
}

.promise-card h4 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #5A3A32;
    margin: 0 0 8px;
}

.promise-card p {
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(90, 58, 50, 0.7);
    margin: 0;
}

/* --- Team Page: Heads + Work Process --- */
.team-head-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.team-head-card {
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(244, 166, 42, 0.2);
    box-shadow: 0 16px 40px rgba(44, 35, 32, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.team-head-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(44, 35, 32, 0.12);
}

.team-head-media {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.team-head-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.team-head-card:hover .team-head-media img {
    transform: scale(1.05);
}

.team-head-content {
    padding: 20px 18px 22px;
}

.team-head-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 62px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    background: linear-gradient(135deg, #5a3a32, #7b5145);
    margin-bottom: 10px;
}

.team-head-name {
    margin: 0 0 6px;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.4rem;
    color: #5a3a32;
}

.team-head-role {
    margin: 0 0 10px;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #f4a62a;
    font-weight: 700;
}

.team-head-focus {
    margin: 0;
    font-size: 0.87rem;
    line-height: 1.65;
    color: rgba(90, 58, 50, 0.8);
}

.team-work-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.team-work-card {
    border-radius: 16px;
    padding: 20px 16px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(244, 166, 42, 0.16);
    box-shadow: 0 12px 30px rgba(44, 35, 32, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-work-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(44, 35, 32, 0.1);
}

.team-work-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f4a62a;
    background: rgba(244, 166, 42, 0.12);
    margin-bottom: 10px;
}

.team-work-icon svg {
    width: 24px;
    height: 24px;
}

.team-work-step {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(90, 58, 50, 0.72);
    font-weight: 700;
    margin-bottom: 6px;
}

.team-work-title {
    margin: 0 0 8px;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.16rem;
    color: #5a3a32;
}

.team-work-text {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.64;
    color: rgba(90, 58, 50, 0.8);
}

/* --- Inner CTA Button --- */
.inner-cta-btn {
    display: inline-block;
    padding: 14px 36px;
    background: #F4A62A;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(244, 166, 42, 0.3);
}

.inner-cta-btn:hover {
    background: #e09520;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(244, 166, 42, 0.4);
}

.inner-cta-center {
    text-align: center;
    padding: 20px 0 0;
}

/* --- Inner Page Reveal Animations --- */
.inner-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: var(--inner-delay, 0s);
}

.inner-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.inner-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--inner-delay, 0s);
}

.inner-reveal-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.inner-reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--inner-delay, 0s);
}

.inner-reveal-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* --- Inner Pages Responsive --- */
@media (max-width: 980px) {
    .inner-hero {
        min-height: 272px;
        animation: heroGradientFlowSoft 20s ease infinite;
    }

    .inner-hero::before {
        animation: heroPatternDriftSoft 28s linear infinite;
    }

    .inner-hero::after {
        animation: heroCircleFloatSoft 22s ease-in-out infinite;
    }

    .inner-hero-shapes span:nth-child(1),
    .inner-hero-shapes span:nth-child(4) {
        animation: heroShapeFloat1Soft 18s ease-in-out infinite;
    }

    .inner-hero-shapes span:nth-child(2) {
        animation: heroShapeFloat2Soft 14s ease-in-out infinite;
    }

    .inner-hero-shapes span:nth-child(3) {
        animation: heroLineSweepSoft 14s ease-in-out infinite;
    }

    .inner-hero-shapes span:nth-child(5) {
        animation: heroLineSweepVSoft 14s ease-in-out infinite;
    }

    body:not(.page-home) .inner-hero {
        margin-top: 8px;
    }

    body:not(.page-home) .inner-hero-content {
        padding-top: 56px;
        padding-bottom: 40px;
    }

    .inner-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .inner-grid.reverse {
        direction: ltr;
    }

    .inner-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .inner-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .founder-block {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px 24px;
    }

    .founder-photo-wrap {
        max-width: 220px;
        margin: 0 auto;
    }

    .founder-text .founder-quote {
        border-left: none;
        border-top: 3px solid #F4A62A;
        padding-left: 0;
        padding-top: 16px;
    }

    .promise-grid {
        grid-template-columns: 1fr;
    }

    .team-head-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .team-work-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .inner-section {
        padding: 50px 0;
    }
}

@media (max-width: 600px) {
    .inner-hero {
        min-height: 232px;
    }

    body:not(.page-home) .inner-hero {
        margin-top: 8px;
    }

    body:not(.page-home) .inner-hero-content {
        padding-top: 38px;
        padding-bottom: 30px;
    }

    .inner-hero-content {
        padding: 34px 16px 30px;
    }

    .section-glass-headline,
    .page-title,
    .inner-section-title,
    .inner-hero-title {
        padding: 8px 16px;
        gap: 8px;
    }

    .inner-cards {
        grid-template-columns: 1fr;
    }

    .inner-stats {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .inner-stat-number {
        font-size: 2rem;
    }

    .inner-grid-text h3 {
        font-size: 1.3rem;
    }

    .inner-section-title {
        font-size: 1.4rem;
    }

    .founder-block {
        padding: 20px 16px;
    }

    .timeline-item {
        padding-left: 50px;
    }

    .team-head-grid {
        grid-template-columns: 1fr;
    }

    .team-head-content {
        padding: 18px 15px 20px;
    }

    .team-work-grid {
        grid-template-columns: 1fr;
    }

    .team-work-card {
        padding: 17px 14px;
    }
}

/* ========== COMPREHENSIVE PREMIUM FOOTER STYLES ========== */

.comprehensive-footer {
    background-color: #fefbf8;
    background-image: none;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    color: #5A3A32;
    font-family: "Manrope", sans-serif;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

#footerWebGL {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    display: block;
    opacity: 1;
    mix-blend-mode: normal;
    filter: none;
}

.comprehensive-footer .footer-top-inner,
.comprehensive-footer .footer-bottom,
.comprehensive-footer .footer-grid {
    position: relative;
    z-index: 1;
}

.comprehensive-footer.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-top-inner {
    padding: 32px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 22px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 8px;
}

.footer-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: auto;
    max-width: none;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    flex: 0 0 auto;
}

.footer-brand-logo {
    display: block;
    width: auto;
    height: clamp(62px, 6.8vw, 94px);
    max-width: min(380px, 100%);
    object-fit: contain;
}

.footer-brand-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    min-width: 0;
}

.footer-brand-text {
    font-family: "Great Vibes", cursive;
    font-size: 1.95rem;
    color: #F4A62A;
    font-weight: 400;
    line-height: 1.1;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

.footer-brand-sub {
    font-family: "Cormorant Garamond", serif;
    font-size: 0.74rem;
    color: #5A3A32;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-top: 0;
}

.footer-tagline {
    font-size: 12px;
    line-height: 1.45;
    color: rgba(90, 58, 50, 0.8);
    margin: 0 0 12px 0;
}

.footer-social-icons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(244, 166, 42, 0.5);
    color: #F4A62A;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.footer-social:hover {
    background: #F4A62A;
    color: #ffffff;
    border-color: #F4A62A;
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(244, 166, 42, 0.25);
}

.footer-heading {
    font-family: "Cormorant Garamond", serif;
    font-size: 1rem;
    font-weight: 700;
    color: #5A3A32;
    margin: 0 0 10px;
    letter-spacing: 0.5px;
}

.footer-menu,
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-menu a {
    color: rgba(90, 58, 50, 0.8);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-menu a::before {
    content: "→";
    margin-right: 8px;
    opacity: 0;
    color: #F4A62A;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    font-weight: bold;
}

.footer-menu a:hover {
    color: #F4A62A;
}

.footer-menu a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(90, 58, 50, 0.8);
    font-weight: 500;
    flex-wrap: wrap;
}

.footer-contact-list a {
    color: rgba(90, 58, 50, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-list a:hover {
    color: #F4A62A;
}

.footer-contact-icon {
    width: 14px;
    height: 14px;
    color: #F4A62A;
}

.footer-bottom {
    background: rgba(244, 166, 42, 0.05);
    border-top: 1px solid rgba(244, 166, 42, 0.15);
    padding: 10px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 0.76rem;
    color: rgba(90, 58, 50, 0.8);
    font-weight: 500;
}

.footer-dev {
    font-size: 0.76rem;
    color: rgba(90, 58, 50, 0.8);
    font-weight: 500;
}

.dev-link {
    font-weight: 700;
    color: #5A3A32;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dev-link:hover {
    color: #F4A62A;
}

/* Tablet Layout */
@media (max-width: 980px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px 14px;
    }

    .footer-top-inner {
        padding: 24px 0 16px;
    }

    .footer-brand-logo {
        height: clamp(64px, 13vw, 98px);
        max-width: min(340px, 90vw);
    }
}

/* Mobile Layout */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 16px;
    }

    .footer-brand {
        align-items: center;
        justify-content: center;
    }

    .footer-brand-mark {
        justify-content: center;
        margin: 0;
    }

    .footer-brand-logo {
        height: clamp(78px, 20vw, 122px);
        max-width: min(360px, 94vw);
    }

    .footer-brand-copy {
        align-items: flex-start;
        text-align: left;
    }

    .footer-social-icons {
        justify-content: center;
    }

    .footer-contact-list li {
        justify-content: center;
    }

    .footer-menu a,
    .footer-contact-list li,
    .footer-copy,
    .footer-dev {
        font-size: 0.75rem;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}

/* Footer hero-style replacement (WebGL removed) */
.comprehensive-footer {
    background: linear-gradient(135deg, #1a1210 0%, #2d1f1a 30%, #3a2518 60%, #1a1210 100%) !important;
    background-size: 400% 400% !important;
    animation: heroGradientFlow 12s ease infinite;
    border-top: 1px solid rgba(244, 166, 42, 0.24);
    color: #ffffff;
}

.comprehensive-footer::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    height: auto;
    pointer-events: none;
    z-index: 0;
    background:
        linear-gradient(30deg, transparent 48%, rgba(244, 166, 42, 0.04) 49%, rgba(244, 166, 42, 0.04) 51%, transparent 52%),
        linear-gradient(150deg, transparent 48%, rgba(244, 166, 42, 0.03) 49%, rgba(244, 166, 42, 0.03) 51%, transparent 52%),
        linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.015) 49%, rgba(255, 255, 255, 0.015) 51%, transparent 52%);
    background-size: 80px 80px, 120px 120px, 60px 60px;
    animation: heroPatternDrift 20s linear infinite;
}

.comprehensive-footer::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -200px;
    right: -150px;
    border-radius: 50%;
    border: 1px solid rgba(244, 166, 42, 0.08);
    pointer-events: none;
    z-index: 0;
    animation: heroCircleFloat 18s ease-in-out infinite;
}

.comprehensive-footer .inner-hero-shapes {
    z-index: 0;
}

.comprehensive-footer .footer-heading,
.comprehensive-footer .footer-tagline,
.comprehensive-footer .footer-menu a,
.comprehensive-footer .footer-contact-list li,
.comprehensive-footer .footer-contact-list a,
.comprehensive-footer .footer-copy,
.comprehensive-footer .footer-dev,
.comprehensive-footer .dev-link,
.comprehensive-footer .footer-brand-text,
.comprehensive-footer .footer-brand-sub {
    color: #ffffff !important;
    font-weight: 700 !important;
}

.comprehensive-footer .footer-heading {
    font-family: "Manrope", sans-serif !important;
    letter-spacing: 0.04em;
}

.comprehensive-footer .footer-social {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.38);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.comprehensive-footer .footer-social:hover {
    background: #f4a62a;
    border-color: #f4a62a;
    color: #ffffff;
}

.comprehensive-footer .footer-menu a::before,
.comprehensive-footer .footer-contact-icon {
    color: #ffffff;
}

.comprehensive-footer .footer-bottom {
    background: rgba(255, 255, 255, 0.06);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

/* Contact Page Premium Layout */
.contact-board {
    border-radius: 14px;
    border: 2px solid rgba(43, 62, 92, 0.84);
    background: #f8f8f8;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(44, 35, 32, 0.08);
}

.contact-board-services {
    margin: 0;
    padding: 18px 24px 16px;
    text-align: center;
    color: #202020;
    font-size: clamp(1rem, 2.1vw, 1.38rem);
    line-height: 1.3;
    font-weight: 600;
}

.contact-board-strip {
    background: linear-gradient(180deg, #5f4948 0%, #5a4545 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    padding: 14px 16px 10px;
    text-align: center;
}

.contact-board-brand {
    margin: 0;
    color: #c79a8f;
    font-family: "Great Vibes", cursive;
    font-size: clamp(2.2rem, 7vw, 5.2rem);
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.contact-board-tagline {
    margin: 2px 0 0;
    color: #f4a62a;
    font-family: "Manrope", sans-serif;
    font-size: clamp(0.85rem, 1.8vw, 1.1rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    line-height: 1;
}

.contact-board-list {
    margin: 0;
    padding: 20px 22px 24px;
    list-style: none;
    display: grid;
    gap: 14px;
}

.contact-board-list li {
    display: grid;
    justify-items: center;
    gap: 2px;
}

.contact-board-person {
    color: #1f1f1f;
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.02rem, 2.25vw, 1.28rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-align: center;
}

.contact-board-list a {
    color: #111111;
    text-decoration: none;
    font-size: clamp(1.02rem, 2.2vw, 1.22rem);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.contact-board-list a:hover {
    color: var(--brown);
}

.contact-enquiry-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.contact-enquiry-card,
.contact-map-card {
    border-radius: 15px;
    border: 1px solid rgba(244, 166, 42, 0.2);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 14px 34px rgba(44, 35, 32, 0.08);
    padding: 20px 18px;
    min-height: 430px;
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.contact-enquiry-card:hover,
.contact-map-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(44, 35, 32, 0.13);
}

.contact-enquiry-kicker {
    margin: 0 0 8px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f4a62a;
    font-weight: 700;
}

.contact-enquiry-title {
    margin: 0 0 14px;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.4rem;
    color: #5a3a32;
}

.contact-enquiry-form {
    display: grid;
    gap: 10px;
}

.contact-enquiry-field {
    display: grid;
    gap: 4px;
}

.contact-enquiry-field span {
    color: rgba(90, 58, 50, 0.85);
    font-size: 0.75rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-weight: 700;
}

.contact-enquiry-field input,
.contact-enquiry-field select,
.contact-enquiry-field textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(90, 58, 50, 0.22);
    background: rgba(255, 255, 255, 0.92);
    color: #5a3a32;
    font-family: "Manrope", sans-serif;
    font-size: 0.86rem;
    padding: 10px 12px;
    outline: none;
    transition: border-color 0.24s ease, box-shadow 0.24s ease;
}

.contact-enquiry-field input:focus,
.contact-enquiry-field select:focus,
.contact-enquiry-field textarea:focus {
    border-color: rgba(244, 166, 42, 0.58);
    box-shadow: 0 0 0 3px rgba(244, 166, 42, 0.14);
}

.contact-enquiry-field textarea {
    resize: vertical;
    min-height: 96px;
}

.contact-enquiry-submit {
    margin-top: 4px;
    min-height: 44px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #5a3a32, #7b5145);
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.26s ease, box-shadow 0.26s ease;
    box-shadow: 0 10px 22px rgba(90, 58, 50, 0.26);
}

.contact-enquiry-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(90, 58, 50, 0.32);
}

.contact-map-card {
    display: flex;
    flex-direction: column;
}

.contact-map-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(90, 58, 50, 0.18);
    box-shadow: 0 10px 24px rgba(44, 35, 32, 0.08);
    flex: 1;
    min-height: 0;
}

.contact-map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 290px;
    border: 0;
    display: block;
}

.contact-map-address {
    margin: 10px 0 0;
    color: rgba(90, 58, 50, 0.82);
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    font-size: 0.84rem;
    line-height: 1.55;
}

.contact-flow-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.contact-flow-card {
    border-radius: 15px;
    border: 1px solid rgba(244, 166, 42, 0.18);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 12px 30px rgba(44, 35, 32, 0.06);
    padding: 20px 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-flow-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(44, 35, 32, 0.12);
}

.contact-flow-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 166, 42, 0.12);
    color: #f4a62a;
    margin-bottom: 12px;
}

.contact-flow-icon svg {
    width: 22px;
    height: 22px;
}

.contact-flow-card h3 {
    margin: 0 0 8px;
    color: #5a3a32;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.22rem;
}

.contact-flow-card p {
    margin: 0;
    color: rgba(90, 58, 50, 0.78);
    font-size: 0.86rem;
    line-height: 1.66;
}

.contact-address-card {
    border-radius: 16px;
    border: 1px solid rgba(244, 166, 42, 0.2);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(245, 243, 238, 0.84));
    box-shadow: 0 16px 34px rgba(44, 35, 32, 0.08);
    padding: 26px 22px;
    text-align: center;
}

.contact-address-kicker {
    margin: 0 0 8px;
    color: #f4a62a;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-address-line {
    margin: 0;
    color: #5a3a32;
    font-family: "Manrope", sans-serif !important;
    font-weight: 600;
    letter-spacing: 0.02em;
    font-size: clamp(1rem, 2vw, 1.22rem);
    line-height: 1.32;
}

.contact-address-actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.contact-address-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    border: 1px solid transparent;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.contact-address-btn-map {
    background: #f4a62a;
    color: #fff;
    box-shadow: 0 8px 18px rgba(244, 166, 42, 0.3);
}

.contact-address-btn-map:hover {
    transform: translateY(-2px);
    background: #df9524;
}

.contact-address-btn-mail,
.contact-address-btn-call {
    background: rgba(255, 255, 255, 0.8);
    color: #5a3a32;
    border-color: rgba(90, 58, 50, 0.22);
}

.contact-address-btn-mail:hover,
.contact-address-btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(44, 35, 32, 0.1);
    color: #f4a62a;
    border-color: rgba(244, 166, 42, 0.3);
}

@media (max-width: 980px) {
    .contact-enquiry-layout {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .contact-enquiry-card,
    .contact-map-card {
        min-height: auto;
    }

    .contact-map-frame iframe {
        min-height: 260px;
    }

    .contact-flow-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
}

@media (max-width: 620px) {

    .contact-enquiry-card,
    .contact-map-card {
        padding: 16px 14px;
    }

    .contact-enquiry-title {
        font-size: 1.22rem;
    }

    .contact-map-frame iframe {
        min-height: 220px;
    }

    .contact-board-services {
        padding: 16px 14px 14px;
    }

    .contact-board-strip {
        padding: 12px 10px 10px;
    }

    .contact-board-list {
        padding: 16px 14px 18px;
    }

    .contact-flow-grid {
        grid-template-columns: 1fr;
    }

    .contact-flow-card {
        padding: 18px 14px;
    }

    .contact-address-card {
        padding: 20px 14px;
    }

    .contact-address-actions {
        flex-direction: column;
    }

    .contact-address-btn {
        width: 100%;
    }
}

.section-glass-headline::before,
.section-glass-headline::after,
.page-title::before,
.page-title::after,
.inner-section-title::before,
.inner-section-title::after,
.inner-hero-title::after {
    content: none !important;
    display: none !important;
}

/* Unified hero-style background for all major headline boxes */
.section-glass-headline,
.page-title,
.inner-section-title,
.inner-hero-title,
.about-company-title,
.contact-assist-section-title,
.contact-assist-title,
.contact-enquiry-title,
.hero-title,
.service-marquee-title,
.step-title,
.team-work-title,
.timeline-title,
.projects-lightbox-title,
.footer-heading {
    position: relative !important;
    isolation: isolate;
    overflow: hidden !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #1a1210 0%, #2d1f1a 30%, #3a2518 60%, #1a1210 100%) !important;
    background-size: 400% 400% !important;
    border: 1px solid rgba(244, 166, 42, 0.38) !important;
    box-shadow: 0 14px 28px rgba(10, 8, 7, 0.26) !important;
    animation: heroGradientFlow 12s ease infinite !important;
}

.section-glass-headline::before,
.page-title::before,
.inner-section-title::before,
.inner-hero-title::before,
.about-company-title::before,
.contact-assist-section-title::before,
.contact-assist-title::before,
.contact-enquiry-title::before,
.hero-title::before,
.service-marquee-title::before,
.team-work-title::before,
.timeline-title::before,
.projects-lightbox-title::before,
.footer-heading::before {
    content: "" !important;
    display: block !important;
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(30deg, transparent 48%, rgba(244, 166, 42, 0.04) 49%, rgba(244, 166, 42, 0.04) 51%, transparent 52%),
        linear-gradient(150deg, transparent 48%, rgba(244, 166, 42, 0.03) 49%, rgba(244, 166, 42, 0.03) 51%, transparent 52%),
        linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.015) 49%, rgba(255, 255, 255, 0.015) 51%, transparent 52%);
    background-size: 52px 52px, 78px 78px, 40px 40px;
    animation: heroPatternDrift 20s linear infinite !important;
    opacity: 1;
}

.section-glass-headline span,
.page-title span,
.inner-section-title span,
.inner-hero-title span,
.about-company-title span,
.contact-assist-section-title span,
.contact-assist-title span,
.contact-enquiry-title span,
.hero-title span,
.service-marquee-title span,
.team-work-title span,
.timeline-title span,
.projects-lightbox-title span,
.footer-heading span {
    color: #ffffff !important;
}

/* Process step titles: dark text on light cards */
.process-step .step-title,
.process-step .step-title span {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    animation: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    color: var(--text-dark) !important;
    font-family: "ADLaM Display", cursive !important;
    font-weight: 800 !important;
    letter-spacing: 0.03em !important;
}

.process-step .step-title::before,
.process-step .step-title::after {
    content: none !important;
    display: none !important;
}

.service-marquee-title {
    background: linear-gradient(135deg, #1a1210 0%, #2d1f1a 30%, #3a2518 60%, #1a1210 100%);
    background-size: 400% 400%;
    border-color: rgba(244, 166, 42, 0.38);
    color: #ffffff;
    animation: heroGradientFlow 12s ease infinite;
}

.project-grid-label {
    color: #ffffff;
}

.team-card {
    background: linear-gradient(135deg, #1a1210 0%, #2d1f1a 30%, #3a2518 60%, #1a1210 100%);
    background-size: 400% 400%;
    border: 1px solid rgba(244, 166, 42, 0.38);
    box-shadow: 0 14px 28px rgba(10, 8, 7, 0.26);
    animation: heroGradientFlow 12s ease infinite;
    color: #ffffff;
}

.team-info,
.team-name,
.team-role,
.team-tagline {
    color: #ffffff;
}

.team-name {
    background: none;
    padding: 0;
}

.review-card {
    background: linear-gradient(135deg, #1a1210 0%, #2d1f1a 30%, #3a2518 60%, #1a1210 100%);
    background-size: 400% 400%;
    border: 1px solid rgba(244, 166, 42, 0.38);
    box-shadow: 0 14px 28px rgba(10, 8, 7, 0.26);
    animation: heroGradientFlow 12s ease infinite;
    color: #ffffff;
}

.review-client-name,
.review-service,
.review-text {
    color: #ffffff;
}

.info-card,
.inner-card,
.promise-card,
.team-head-card,
.team-work-card,
.contact-enquiry-card,
.contact-map-card,
.contact-flow-card,
.contact-address-card {
    background: linear-gradient(135deg, #1a1210 0%, #2d1f1a 30%, #3a2518 60%, #1a1210 100%);
    background-size: 400% 400%;
    border: 1px solid rgba(244, 166, 42, 0.38);
    box-shadow: 0 14px 28px rgba(10, 8, 7, 0.26);
    animation: heroGradientFlow 12s ease infinite;
    color: #ffffff;
}

/* Index page typography override (ADLaM everywhere on Home) */
body.page-home,
body.page-home * {
    font-family: "ADLaM Display", cursive !important;
}

body :where(h1, h2, h3, h4, h5, h6, p, span, a, li, small, strong, em, label, button, input, textarea, select) {
    color: var(--text-dark) !important;
}

:where(
    .site-header,
    .hero,
    .custom-services-section,
    .service-thumb,
    .home-featured-card,
    .home-final-cta,
    .service-hero,
    .project-index-hero,
    .project-detail-hero,
    .inner-hero,
    .section-glass-headline,
    .page-title,
    .inner-section-title,
    .inner-hero-title,
    .about-company-title,
    .contact-assist-section-title,
    .contact-assist-title,
    .contact-enquiry-title,
    .hero-title,
    .service-marquee-title,
    .step-title,
    .team-work-title,
    .timeline-title,
    .projects-lightbox-title,
    .footer-heading,
    .projects-lightbox,
    .project-lightbox,
    .comprehensive-footer,
    .team-card,
    .review-card,
    .info-card,
    .inner-card,
    .promise-card,
    .team-head-card,
    .team-work-card,
    .contact-enquiry-card,
    .contact-map-card,
    .contact-flow-card,
    .contact-address-card,
    .contact-board-strip,
    .service-thumb-content,
    .home-featured-info,
    .project-grid-label,
    .projects-filter-btn.is-active,
    .project-category-tab.is-active
) :where(h1, h2, h3, h4, h5, h6, p, span, a, li, small, strong, em, label, button, input, textarea, select) {
    color: var(--text-light) !important;
}

:where(
    .home-section-kicker,
    .service-thumb-content small,
    .home-featured-info small,
    .service-kicker,
    .project-kicker,
    .service-section-label,
    .contact-tag,
    .info-label,
    .member-role,
    .service-link,
    .project-gallery-caption small,
    .project-info-item span,
    .service-project-info span,
    .project-card-meta,
    .project-grid-label,
    .review-service,
    .contact-enquiry-kicker,
    .contact-address-kicker,
    .contact-assist-kicker,
    .contact-assist-info-pill,
    .contact-board-tagline
) {
    color: var(--accent) !important;
}

a:hover,
button:hover,
.footer-icon-btn:hover,
.footer-social:hover,
.nav-toggle:hover,
.main-nav a:hover,
.dropdown a:hover,
.projects-view-all-btn:hover,
.service-primary-btn:hover,
.service-secondary-btn:hover,
.project-back-link:hover {
    color: var(--accent) !important;
}

:where(
    .btn-get-started,
    .service-primary-btn,
    .hero-btn--ghost,
    .hero-btn:hover,
    .projects-view-all-btn:hover,
    .contact-assist-btn-mail,
    .contact-address-btn-mail,
    .contact-address-btn-call
) {
    color: var(--text-dark) !important;
}

.main-nav a::after,
.projects-view-all-btn:hover,
.choose-us-check,
.projects-filter-btn.is-active,
.project-category-tab.is-active {
    background: var(--accent) !important;
}

.info-card h3,
.info-card a,
.inner-card h4,
.inner-card p,
.promise-card h4,
.promise-card p,
.team-head-name,
.team-head-role,
.team-head-focus,
.team-work-step,
.team-work-title,
.team-work-text,
.contact-enquiry-kicker,
.contact-enquiry-title,
.contact-map-address,
.contact-flow-card h3,
.contact-flow-card p,
.contact-address-kicker,
.contact-address-line,
.contact-enquiry-field span {
    color: #ffffff !important;
}

/* Form fields fix only - Headlines restored to original */
.contact-enquiry-field input,
.contact-enquiry-field select,
.contact-enquiry-field textarea {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(244, 166, 42, 0.3) !important;
    color: #ffffff !important;
}

.contact-enquiry-field input::placeholder,
.contact-enquiry-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.contact-enquiry-field select option {
    background: #2d1f1a !important;
    color: #ffffff !important;
}

.custom-about-section .team-grid {
    margin-top: 40px;
    margin-bottom: 20px;
}

/* ==========================================================================
   ABOUT PAGES (About Us, Our Story, Direct Message)
   ========================================================================== */

/* Shared Typography & Components */
.about-section-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    display: block;
    margin-bottom: 15px;
}
.about-section-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--brown);
    margin: 0 0 20px;
    line-height: 1.1;
}
.about-section-title em {
    font-style: italic;
    color: var(--gold);
}
.about-section-title--center {
    text-align: center;
}
.about-hero-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}
.about-hero-btn--primary {
    background: var(--gold);
    color: #fff;
    border: 2px solid var(--gold);
    box-shadow: 0 10px 24px rgba(244, 166, 42, 0.3);
}
.about-hero-btn--primary:hover {
    background: #e09520;
    border-color: #e09520;
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(244, 166, 42, 0.4);
}
.about-hero-btn--ghost {
    background: transparent;
    color: var(--brown);
    border: 2px solid rgba(90, 58, 50, 0.2);
}
.about-hero-btn--ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

/* ==========================================
   ABOUT US PAGE
   ========================================== */
.about-page-hero {
    position: relative;
    padding: 180px 0 100px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: #fdfcf9;
    overflow: hidden;
}
.about-page-hero-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 80% -20%, rgba(244, 166, 42, 0.1) 0%, transparent 50%);
    z-index: 1;
}
.about-page-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
}
.about-page-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    color: var(--brown);
    line-height: 1.05;
    margin: 0 0 24px;
}
.about-page-title em {
    font-style: italic;
    color: var(--gold);
}
.about-page-tagline {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: #666;
    margin: 0 0 40px;
    max-width: 600px;
    line-height: 1.6;
}
.about-page-hero-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Stats Bar */
.about-stats-bar {
    background: var(--brown);
    padding: 60px 0;
    color: #fff;
}
.about-stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
.about-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.about-stat-num {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
    font-family: "Cormorant Garamond", serif;
}
.about-stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}
.about-stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
}

/* Philosophy */
.about-philosophy-section {
    padding: 120px 0;
    background: #fff;
}
.about-philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-philosophy-img-wrap {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.about-philosophy-img-wrap img {
    width: 100%;
    display: block;
}
.about-philosophy-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: #fff;
    padding: 15px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--brown);
}
.about-philosophy-desc {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 24px;
}
.about-philosophy-pillars {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.about-pillar {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--brown);
}
.about-pillar-icon {
    color: var(--gold);
    font-size: 1.2rem;
}

/* Values */
.about-values-section {
    padding: 100px 0;
    background: #fdfcf9;
}
.about-values-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.about-values-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.about-value-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.about-value-num {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(244, 166, 42, 0.08);
    font-family: "Cormorant Garamond", serif;
}
.about-value-icon {
    width: 60px;
    height: 60px;
    background: rgba(244, 166, 42, 0.1);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.about-value-title {
    font-size: 1.5rem;
    color: var(--brown);
    margin-bottom: 16px;
}
.about-value-desc {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Services Overview */
.about-services-overview {
    padding: 120px 0;
    background: #fff;
}
.about-services-header {
    margin-bottom: 60px;
}
.about-services-list {
    display: flex;
    flex-direction: column;
}
.about-service-row {
    display: flex;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    text-decoration: none;
    color: var(--brown);
    transition: background 0.3s ease;
    gap: 40px;
}
.about-service-row:first-child {
    border-top: 1px solid rgba(0,0,0,0.08);
}
.about-service-row:hover {
    background: #fdfcf9;
}
.about-service-row-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    width: 50px;
}
.about-service-row-info {
    flex: 1;
}
.about-service-row-name {
    font-size: 2rem;
    margin: 0 0 10px;
    font-family: "Cormorant Garamond", serif;
}
.about-service-row-desc {
    color: #666;
    margin: 0;
    font-size: 1.1rem;
    max-width: 500px;
}
.about-service-row-img {
    width: 200px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s ease;
}
.about-service-row-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-service-row:hover .about-service-row-img {
    opacity: 1;
    transform: scale(1);
}
.about-service-row-arrow {
    font-size: 2rem;
    color: var(--gold);
    transition: transform 0.3s ease;
}
.about-service-row:hover .about-service-row-arrow {
    transform: translateX(10px);
}

/* Team Snapshot */
.about-team-snapshot {
    padding: 100px 0;
    background: #fdfcf9;
}
.about-team-snap-header {
    text-align: center;
    margin-bottom: 60px;
}
.about-team-snap-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}
.about-team-snap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}
.about-team-snap-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}
.about-team-snap-img {
    height: 340px;
}
.about-team-snap-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-team-snap-info {
    padding: 30px;
}
.about-team-snap-name {
    font-size: 1.5rem;
    color: var(--brown);
    margin: 0 0 5px;
}
.about-team-snap-role {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 15px;
}
.about-team-snap-bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 0.95rem;
}
.about-team-snap-links {
    display: flex;
    gap: 12px;
}
.about-team-snap-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #fdfcf9;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    color: var(--brown);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}
.about-team-snap-link:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

/* CTA Band */
.about-cta-band {
    padding: 100px 0;
    background: var(--brown);
    color: #fff;
    text-align: center;
    position: relative;
}
.about-cta-band-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin: 0 0 20px;
    line-height: 1.1;
}
.about-cta-band-title em {
    color: var(--gold);
    font-style: italic;
}
.about-cta-band-desc {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 40px;
}
.about-cta-band-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}
.about-cta-band .about-hero-btn--ghost {
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}
.about-cta-band .about-hero-btn--ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ==========================================
   DIRECT MESSAGE PAGE
   ========================================== */
.dm-hero {
    padding: 180px 0 100px;
    background: #fdfcf9;
    text-align: center;
}
.dm-hero-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    color: var(--brown);
    margin: 0 0 20px;
    line-height: 1.1;
}
.dm-hero-title em {
    color: var(--gold);
    font-style: italic;
}
.dm-hero-sub {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* DM Leaders */
.dm-leaders-section {
    padding: 80px 0;
}
.dm-leaders-header {
    margin-bottom: 60px;
}
.dm-leaders-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin: 0 auto;
    max-width: 600px;
}
.dm-leaders-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}
.dm-leader-card {
    display: flex;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.05);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.03);
}
.dm-leader-img-wrap {
    width: 320px;
    position: relative;
}
.dm-leader-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dm-leader-status {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255,255,255,0.9);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--brown);
}
.dm-status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
}
.dm-leader-body {
    padding: 40px;
    flex: 1;
}
.dm-leader-name {
    font-size: 2rem;
    color: var(--brown);
    margin: 0 0 5px;
    font-family: "Cormorant Garamond", serif;
}
.dm-leader-role {
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    margin: 0 0 5px;
}
.dm-leader-speciality {
    color: #888;
    font-size: 0.95rem;
    margin: 0 0 20px;
}
.dm-leader-desc {
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}
.dm-leader-channels {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.dm-channel-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.dm-channel-call {
    background: #fdfcf9;
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--brown);
}
.dm-channel-call:hover {
    background: var(--brown);
    color: #fff;
}
.dm-channel-whatsapp {
    background: #25D366;
    color: #fff;
    border: 1px solid #25D366;
}
.dm-channel-whatsapp:hover {
    background: #128C7E;
}
.dm-channel-linkedin {
    background: #0077B5;
    color: #fff;
    border: 1px solid #0077B5;
}
.dm-channel-linkedin:hover {
    background: #005E93;
}

/* DM Form Section */
.dm-form-section {
    padding: 100px 0;
    background: #f9f8f4;
}
.dm-form-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}
.dm-form-desc {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}
.dm-form-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.dm-form-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.dm-form-info-icon {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.dm-form-info-item div {
    display: flex;
    flex-direction: column;
}
.dm-form-info-item strong {
    font-size: 1.1rem;
    color: var(--brown);
    margin-bottom: 4px;
}
.dm-form-info-item span {
    color: #666;
}
.dm-quick-form {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    position: relative;
}
.dm-form-row {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}
.dm-form-row--half {
    grid-template-columns: 1fr 1fr;
}
.dm-field {
    margin-bottom: 20px;
}
.dm-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 8px;
}
.dm-input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    background: #fdfcf9;
    font-size: 1rem;
    color: var(--brown);
    transition: all 0.3s ease;
    font-family: inherit;
}
.dm-input:focus {
    outline: none;
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(244, 166, 42, 0.1);
}
.dm-textarea {
    resize: vertical;
    min-height: 120px;
}
.dm-submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}
.dm-submit-btn:hover {
    background: #e09520;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(244, 166, 42, 0.2);
}
.dm-form-success {
    position: absolute;
    inset: 0;
    background: #fff;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 10;
}
.dm-form-success.is-visible {
    opacity: 1;
    visibility: visible;
}
.dm-form-success svg {
    color: #10b981;
    margin-bottom: 20px;
}
.dm-form-success strong {
    font-size: 2rem;
    color: var(--brown);
    margin-bottom: 10px;
    font-family: "Cormorant Garamond", serif;
}
.dm-form-success p {
    color: #666;
    font-size: 1.1rem;
}

/* FAQ */
.dm-faq-section {
    padding: 100px 0;
    background: #fff;
}
.dm-faq-header {
    margin-bottom: 60px;
}
.dm-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.dm-faq-item {
    background: #fdfcf9;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.03);
}
.dm-faq-q {
    font-size: 1.2rem;
    color: var(--brown);
    margin: 0 0 15px;
}
.dm-faq-a {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* ==========================================
   OUR STORY PAGE
   ========================================== */
.story-hero {
    position: relative;
    padding: 180px 0 120px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
}
.story-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.story-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.story-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,10,10,0.7) 0%, rgba(15,10,10,0.85) 100%);
    z-index: 1;
}
.story-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.story-eyebrow {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 20px;
}
.story-hero-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    color: #fff;
    line-height: 1.1;
    margin: 0 0 24px;
}
.story-hero-title em {
    font-style: italic;
    color: var(--gold);
}
.story-hero-sub {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    max-width: 700px;
    margin: 0 0 50px;
    line-height: 1.6;
}
.story-scroll-cta {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.story-scroll-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.story-scroll-cta:hover .story-scroll-arrow {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    transform: translateY(5px);
}

/* Timeline */
.story-timeline-section {
    padding: 120px 0;
    background: #fdfcf9;
}
.story-timeline-header {
    margin-bottom: 80px;
}
.story-timeline {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.story-chapter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.story-chapter--right .story-chapter-media {
    order: 2;
}
.story-chapter--right .story-chapter-content {
    order: 1;
}
.story-chapter-media {
    position: relative;
}
.story-chapter-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.story-chapter-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}
.story-chapter-year-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--gold);
    color: #fff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(244, 166, 42, 0.3);
}
.story-chapter--right .story-chapter-year-badge {
    left: auto;
    right: -20px;
}
.story-chapter-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 15px;
}
.story-chapter-title {
    font-size: 2.5rem;
    color: var(--brown);
    font-family: "Cormorant Garamond", serif;
    margin: 0 0 20px;
    line-height: 1.1;
}
.story-chapter-title em {
    font-style: italic;
    color: var(--gold);
}
.story-chapter-text {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.story-chapter-highlight {
    margin-top: 30px;
    padding: 20px;
    background: rgba(244, 166, 42, 0.08);
    border-left: 4px solid var(--gold);
    border-radius: 0 12px 12px 0;
}
.story-highlight-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brown);
    font-family: "Cormorant Garamond", serif;
    line-height: 1;
    margin-bottom: 5px;
}
.story-highlight-label {
    font-weight: 600;
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.story-timeline-connector {
    height: 80px;
    width: 2px;
    background: rgba(0,0,0,0.1);
    margin: 0 auto;
}

/* Founders Quote */
.story-founders-section {
    padding: 120px 0;
    background: var(--brown);
    color: #fff;
    position: relative;
}
.story-founders-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.story-quote-mark {
    font-family: "Cormorant Garamond", serif;
    font-size: 8rem;
    color: var(--gold);
    line-height: 0.5;
    opacity: 0.5;
}
.story-founders-quote {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.2rem;
    line-height: 1.4;
    font-style: italic;
    margin: 0 0 40px;
}
.story-founders-attribution {
    display: flex;
    align-items: center;
    gap: 20px;
}
.story-founder-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}
.story-founders-attribution strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 4px;
}
.story-founders-attribution span {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}
.story-founders-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.story-founders-img-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
}
.story-founders-img-grid img:nth-child(2) {
    transform: translateY(40px);
}
.story-founders-img-grid img:nth-child(3) {
    transform: translateY(-40px);
}

/* Milestones */
.story-milestones-section {
    padding: 120px 0;
    background: #fff;
}
.story-milestones-header {
    margin-bottom: 80px;
}
.story-milestones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.story-milestone-card {
    text-align: center;
    padding: 40px;
    background: #fdfcf9;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}
.story-milestone-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
.story-milestone-num {
    font-size: 4rem;
    font-weight: 800;
    color: var(--gold);
    font-family: "Cormorant Garamond", serif;
    line-height: 1;
    margin-bottom: 15px;
}
.story-milestone-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 15px;
}
.story-milestone-desc {
    color: #666;
    line-height: 1.6;
}

/* ==========================================
   RESPONSIVE DESIGN FOR NEW PAGES
   ========================================== */
@media (max-width: 1024px) {
    .about-philosophy-grid,
    .dm-form-wrap,
    .story-founders-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .story-chapter {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .story-chapter--right .story-chapter-media {
        order: 1;
    }
    .story-chapter--right .story-chapter-content {
        order: 2;
    }
}

@media (max-width: 768px) {
    .about-stats-grid {
        flex-direction: column;
        gap: 40px;
    }
    .about-stat-divider {
        width: 60px;
        height: 1px;
    }
    .about-service-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .about-service-row-img {
        width: 100%;
        height: 200px;
    }
    .about-service-row-arrow {
        display: none;
    }
    .dm-leader-card {
        flex-direction: column;
    }
    .dm-leader-img-wrap {
        width: 100%;
        height: 300px;
    }
    .dm-form-row--half {
        grid-template-columns: 1fr;
    }
    .dm-faq-grid,
    .story-founders-img-grid {
        grid-template-columns: 1fr;
    }
    .story-founders-img-grid img:nth-child(2),
    .story-founders-img-grid img:nth-child(3) {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .about-page-hero-links,
    .about-cta-band-actions {
        flex-direction: column;
        width: 100%;
    }
    .about-hero-btn {
        width: 100%;
        justify-content: center;
    }
    .dm-leader-channels {
        flex-direction: column;
    }
    .dm-channel-btn {
        width: 100%;
        justify-content: center;
    }
}


/* ==========================================
   MODERN AUTO SLIDER (REVIEWS)
   ========================================== */
.modern-reviews-section {
    padding: 100px 0;
    background: #fdfcf9;
    overflow: hidden;
}
.modern-reviews-header {
    text-align: center;
    margin-bottom: 60px;
}
.modern-reviews-eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    display: block;
    margin-bottom: 12px;
}
.modern-reviews-heading {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--brown);
    margin: 0;
}
.modern-reviews-heading em {
    font-style: italic;
    color: var(--gold);
}
.modern-reviews-slider-wrap {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    cursor: grab;
}
.modern-reviews-slider-wrap:active {
    cursor: grabbing;
}
.modern-reviews-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.modern-review-card {
    flex: 0 0 calc(33.333% - 20px);
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.modern-review-icon {
    color: var(--gold);
    margin-bottom: 24px;
    opacity: 0.5;
}
.modern-review-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
}
.modern-review-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}
.modern-review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: "Cormorant Garamond", serif;
}
.modern-review-info {
    display: flex;
    flex-direction: column;
}
.modern-review-name {
    margin: 0 0 4px;
    font-size: 1.1rem;
    color: var(--brown);
}
.modern-review-role {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Dots */
.modern-reviews-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
}
.modern-review-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(90, 58, 50, 0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}
.modern-review-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .modern-review-card {
        flex: 0 0 calc(50% - 15px);
    }
}
@media (max-width: 768px) {
    .modern-review-card {
        flex: 0 0 100%;
    }
    .modern-reviews-section {
        padding: 70px 0;
    }
}

/* Mobile CTA Button */
.mobile-only-cta { display: none; }
@media (max-width: 980px) {
    .mobile-only-cta {
        display: block;
        margin-top: 15px;
        text-align: center;
        width: 100%;
        padding: 0 10px;
    }
    .mobile-only-cta .btn-get-started {
        display: inline-block !important;
        width: auto !important;
        background: linear-gradient(135deg, #f5a623, #d4af37) !important;
        color: #111 !important;
        padding: 12px 28px !important;
        font-size: 0.9rem !important;
        border-radius: 999px !important;
        border: none !important;
        font-weight: 700 !important;
        text-align: center !important;
    }
    .mobile-only-cta .btn-get-started::after {
        display: none !important;
    }
}

/* Mobile Header Solid Override */
@media (max-width: 980px) {
    .site-header.hero-transparent {
        background: rgba(8, 5, 5, 0.95) !important;
        border-bottom: 1px solid rgba(244, 166, 42, 0.15) !important;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35) !important;
        backdrop-filter: blur(14px) !important;
        -webkit-backdrop-filter: blur(14px) !important;
    }
}

/* --- NEW NAVBAR STYLES --- */
.new-site-header {
    background-color: #E6D5C3;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

/* Transparent state — only on homepage hero before scroll */
.page-home .new-site-header:not(.scrolled) {
    background-color: transparent;
    box-shadow: none;
}

/* Nav links white on transparent hero */
.page-home .new-site-header:not(.scrolled) .new-nav-list a {
    color: #ffffff;
}
.page-home .new-site-header:not(.scrolled) .new-nav-list a:hover {
    color: rgba(255,255,255,0.75);
}

/* Hamburger lines white on transparent hero (mobile) */
.page-home .new-site-header:not(.scrolled) .new-nav-toggle span {
    background-color: #ffffff;
}

.new-header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    min-height: 70px;
}

.new-logo-box {
    width: 160px;
    height: 70px;
    background-color: transparent;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border: none;
}

.new-logo-box a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
}

.new-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.new-main-nav {
    display: flex;
    align-items: center;
}

.new-nav-list {
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.new-nav-list > li {
    position: relative;
    display: inline-block;
}

.new-nav-list a {
    color: var(--text-dark);
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding: 10px 0;
    display: block;
}

.new-nav-list a:hover, .new-nav-list a.active {
    color: #5a3a32;
}

/* Dropdown */
.new-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #E6D5C3;
    min-width: 200px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-top: 2px solid #5a3a32;
    z-index: 1001;
}

.has-dropdown:hover .new-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.new-dropdown li {
    display: block;
}

.new-dropdown a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    color: var(--text-dark);
}

.new-dropdown a:hover {
    background-color: rgba(0,0,0,0.05);
}

/* Sidebar Toggle Button */
.new-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
    padding: 0;
}

.new-nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Transform hamburger to X when open */
#siteHeader.nav-open .new-nav-toggle span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}
#siteHeader.nav-open .new-nav-toggle span:nth-child(2) {
    opacity: 0;
}
#siteHeader.nav-open .new-nav-toggle span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

@media (max-width: 980px) {
    .new-header-container {
        padding: 5px 20px;
    }

    .new-nav-toggle {
        display: flex;
    }

    .new-main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: #E6D5C3;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.4s ease;
        z-index: 1001;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 80px;
        overflow-y: auto;
    }

    #siteHeader.nav-open .new-main-nav {
        right: 0;
    }

    .new-nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
        align-items: flex-start;
    }

    .new-nav-list > li {
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .new-nav-list a {
        padding: 15px 25px;
        width: 100%;
    }

    .new-nav-list .nav-link-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .new-nav-list .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: transparent;
        border: none;
        color: #000;
        font-size: 24px;
        margin-right: 15px;
        cursor: pointer;
    }

    .has-dropdown.open .dropdown-toggle {
        transform: rotate(45deg);
    }

    /* Dropdown on mobile inside sidebar */
    .new-dropdown {
        position: static;
        display: none;
        background-color: rgba(0,0,0,0.03);
        box-shadow: none;
        border-top: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
    }

    .has-dropdown.open .new-dropdown {
        display: block;
    }

    .new-dropdown a {
        padding: 12px 25px 12px 45px;
        font-size: 14px;
        color: #333;
    }
}

/* --- CINEMATIC HERO SLIDER --- */
.cinematic-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: min(108vh, 60vw);
    overflow: hidden;
    background-color: #000;
}

.cinematic-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.cinematic-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10%);
    transition: opacity 1s ease-in-out, transform 1s cubic-bezier(0.25, 1, 0.5, 1), visibility 1s;
    z-index: 1;
    margin: 0;
    padding: 0;
}

.cinematic-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 2;
}

.cinematic-slide.is-prev {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10%);
    z-index: 1;
}

.cinematic-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.cinematic-slide[data-slide-index="0"] img,
.cinematic-slide[data-slide-index="4"] img {
    object-position: center 22%;
}

.cinematic-slide[data-slide-index="1"] img,
.cinematic-slide[data-slide-index="2"] img,
.cinematic-slide[data-slide-index="3"] img {
    object-position: center 35%;
}

.cinematic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 2;
    pointer-events: none;
}

.cinematic-caption {
    position: absolute;
    bottom: 60px;
    left: 60px;
    text-align: left;
    max-width: 500px;
    background: transparent;
    padding: 0;
    z-index: 3;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.cinematic-slide.is-active .cinematic-caption {
    opacity: 1;
    transform: translateY(0);
}

.cinematic-slide.is-prev .cinematic-caption {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.cinematic-title {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.cinematic-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.35rem;
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
    font-weight: 600;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .cinematic-hero {
        aspect-ratio: auto;
        height: 100vh;
    }

    .expertise-section {
        margin-top: 0;
    }

    .cinematic-caption {
        bottom: 40px;
        left: 40px;
        max-width: 400px;
    }
    .cinematic-title {
        font-size: 1.8rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cinematic-hero {
        height: 40vh;
    }

    .cinematic-slide {
        transition: opacity 0.8s ease-in-out, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.8s;
    }
    .cinematic-caption {
        bottom: 0;
        right: 0;
        left: 0;
        text-align: center;
        max-width: none;
        padding: 0 10px 6px;
        margin: 0 auto;
    }
    .cinematic-title {
        font-size: 1.2rem;
        margin-bottom: 4px;
        text-align: left;
    }
    .cinematic-subtitle {
        font-size: 0.95rem;
        text-align: left;
    }
}

/* --- EXPERTISE SECTION --- */
.expertise-section {
    background-color: #ffffff;
    margin-top: 0;
    padding: 80px 0;
}

.expertise-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.expertise-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: left;
    margin: 0 0 40px 0;
    line-height: 1.2;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.expertise-card {
    display: block;
    text-decoration: none;
    width: 100%;
}

.expertise-image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.expertise-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}

.expertise-card:hover .expertise-image-wrapper img {
    transform: scale(1.05);
}

.expertise-label {
    text-align: center;
    font-size: 18px;
    color: #333;
    margin: 12px 0 0 0;
    font-weight: 600;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .expertise-title {
        font-size: 42px;
    }
    .expertise-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .expertise-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
    }
    .expertise-title {
        font-size: 36px;
        margin-bottom: 30px;
    }
    .expertise-label {
        font-size: 16px;
    }
}

/* --- SIMPLE FOOTER --- */
.simple-footer {
    background-color: #E6D5C3;
    color: #1a1a1a;
    padding: 15px 0 10px 0;
}

.footer-simple-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 15px;
}

.footer-simple-logo {
    max-width: 100px;
    height: auto;
    display: block;
}

.footer-simple-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-simple-heading {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.footer-simple-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-simple-contact li {
    margin: 0;
}

.footer-hover-link {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-hover-link:hover {
    color: var(--text-dark);
    transform: translateY(-2px);
}

.floating-whatsapp-btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1100;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25D366, #1ebe57);
    color: #ffffff;
    box-shadow: 0 18px 34px rgba(37, 211, 102, 0.32), 0 10px 24px rgba(0, 0, 0, 0.16);
    text-decoration: none;
    opacity: 0;
    transform: translateY(14px) scale(0.92);
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
    pointer-events: none;
}

.floating-whatsapp-btn.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    animation: whatsappFadeIn 0.62s ease-out both;
}

.floating-whatsapp-btn:hover,
.floating-whatsapp-btn:focus-visible {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 22px 40px rgba(37, 211, 102, 0.38), 0 12px 28px rgba(0, 0, 0, 0.18);
    filter: brightness(1.02);
}

.floating-whatsapp-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

@keyframes whatsappFadeIn {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.footer-simple-bottom .footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    color: #555;
}

.dev-link {
    font-weight: 600;
}

/* Mobile Responsive Footer */
@media (max-width: 768px) {
    .footer-simple-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-simple-right {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }

    .footer-simple-contact {
        justify-content: center;
    }
    
    .footer-simple-bottom .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
    }

    .floating-whatsapp-btn {
        right: 14px;
        bottom: 14px;
        width: 44px;
        height: 44px;
    }

    .floating-whatsapp-btn svg {
        width: 18px;
        height: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .floating-whatsapp-btn,
    .floating-whatsapp-btn.is-visible {
        animation: none;
        transition: none;
    }
}

/* --- DIRECTORS PAGE --- */
body.page-directors {
    background: #ffffff;
}

.directors-main {
    min-height: calc(100vh - 150px);
    background: #ffffff;
    color: #1a1a1a;
    padding: 0;
}

.directors-section {
    padding: 86px 0 72px;
    background: #ffffff;
}

.directors-container {
    width: min(930px, 92%);
    margin: 0 auto;
}

.directors-header {
    max-width: 680px;
    margin: 0 auto 34px;
    text-align: center;
}

.directors-eyebrow {
    display: block;
    margin-bottom: 12px;
    color: #777;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.directors-title {
    margin: 0 0 12px;
    color: #111;
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.05;
}

.directors-intro {
    max-width: 560px;
    margin: 0 auto;
    color: #666;
    font-size: 1rem;
    line-height: 1.65;
}

.directors-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.director-card {
    position: relative;
    padding: 15px;
    border: 3px solid #E6D5C3;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.035);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.director-card:hover,
.director-card:focus-within,
.director-card:active {
    transform: translateY(-5px);
    border-color: rgba(90, 58, 50, 0.25);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.06), 0 0 28px rgba(90, 58, 50, 0.18);
}

.director-image-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 10px;
    background: #f5f5f5;
}

.director-image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.director-card:hover .director-image-wrap img,
.director-card:focus-within .director-image-wrap img {
    transform: scale(1.05);
}

.director-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(17, 17, 17, 0.38);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.director-card:hover .director-overlay,
.director-card:focus-within .director-overlay {
    opacity: 1;
}

.director-contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: #111111;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.director-contact-link:hover,
.director-contact-link:focus-visible {
    background: var(--brown);
    color: #ffffff;
    transform: translateY(-2px);
}

.director-contact-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.director-card h2 {
    margin: 13px 0 4px;
    color: #111111;
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.25;
}

.director-role {
    margin: 0 0 7px;
    color: #777777;
    font-size: 0.84rem;
    line-height: 1.4;
}

.director-tagline {
    display: -webkit-box;
    min-height: 2.9em;
    margin: 0;
    overflow: hidden;
    color: #333333;
    font-size: 0.88rem;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

@media (max-width: 1024px) {
    .directors-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .directors-section {
        padding: 72px 0 54px;
    }

    .directors-header {
        margin-bottom: 32px;
    }

    .directors-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .director-card {
        padding: 15px;
    }
}

/* --- SIMPLE OUR STORY PAGE --- */
body.page-our-story-simple {
    background: #ffffff;
}

body.page-our-story-simple,
body.page-our-story-simple * {
    font-family: "ADLaM Display", cursive !important;
}

.story-simple-main {
    min-height: calc(100vh - 150px);
    padding: 0;
    background: #ffffff;
    color: #111111;
}

.story-simple-section {
    padding: 86px 0 66px;
    background: #ffffff;
}

.story-simple-container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.story-simple-intro {
    max-width: 720px;
    margin-bottom: 54px;
}

.story-simple-intro h1 {
    margin: 0 0 18px;
    color: #111111;
    font-size: clamp(36px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.15;
}

.story-simple-intro p {
    margin: 0 0 10px;
    color: #444444;
    font-size: 16px;
    line-height: 1.65;
}

.story-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.story-process-card {
    padding: 25px;
    border: 3px solid #E6D5C3;
    border-radius: 10px;
    background: #ffffff;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.story-process-card:hover,
.story-process-card:focus-within,
.story-process-card:active {
    transform: translateY(-5px);
    border-color: rgba(90, 58, 50, 0.25);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.045), 0 0 28px rgba(90, 58, 50, 0.18);
}

.story-process-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border: 3px solid #E6D5C3;
    border-radius: 8px;
    color: #111111;
}

.story-process-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.story-process-card h2 {
    margin: 0 0 10px;
    color: #111111;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
}

.story-process-card p {
    margin: 0;
    color: #555555;
    font-size: 14px;
    line-height: 1.55;
}

@media (max-width: 1024px) {
    .story-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .story-simple-section {
        padding: 120px 0 70px;
    }

    .story-simple-intro {
        margin-bottom: 36px;
    }

    .story-process-grid {
        grid-template-columns: 1fr;
    }
}

/* --- SIMPLE ABOUT US PAGE --- */
body.page-about-simple {
    background: #ffffff;
}

.about-simple-main {
    min-height: calc(100vh - 150px);
    padding: 0;
    background: #ffffff;
    color: #111111;
}

.about-simple-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.about-simple-hero {
    padding: 170px 0 52px;
    background: #ffffff;
}

.about-simple-hero h1 {
    margin: 0 0 18px;
    color: #111111;
    font-size: clamp(38px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.15;
}

.about-simple-hero .about-simple-container {
    padding-bottom: 8px;
}

.about-simple-hero p {
    width: 100%;
    max-width: none;
    margin: 0 0 10px;
    color: #444444;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}

.about-simple-section {
    padding: 72px 0;
    background: #ffffff;
    border-top: 1px solid #f2f2f2;
}

.about-simple-section-last {
    padding-bottom: 90px;
}

.about-simple-title {
    margin: 0 0 28px;
    color: #111111;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
}

.about-services-grid,
.about-steps-grid,
.about-choose-grid {
    display: grid;
    gap: 24px;
}

.about-services-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: stretch;
}

.about-steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-choose-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-simple-card,
.about-detail-card,
.about-choose-item {
    padding: 25px;
    border: 3px solid #E6D5C3;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-simple-card {
    min-height: 100%;
}

.about-simple-card:hover,
.about-simple-card:focus-within,
.about-simple-card:active,
.about-detail-card:hover,
.about-detail-card:focus-within,
.about-detail-card:active,
.about-choose-item:hover,
.about-choose-item:focus-within,
.about-choose-item:active {
    transform: translateY(-5px);
    border-color: rgba(90, 58, 50, 0.25);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.045), 0 0 28px rgba(90, 58, 50, 0.18);
}

.about-detail-card {
    max-width: none;
}

.about-detail-card p {
    margin: 0 0 14px;
    color: #444444;
    font-size: 16px;
    line-height: 1.7;
    text-align: justify;
}

.about-detail-card p:last-child {
    margin-bottom: 0;
}

.about-simple-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border: 3px solid #E6D5C3;
    border-radius: 8px;
    color: #111111;
}

.about-simple-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.about-simple-card h3 {
    margin: 0 0 10px;
    color: #111111;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
}

.about-simple-card p {
    margin: 0;
    color: #555555;
    font-size: 14px;
    line-height: 1.55;
}

.about-step-number {
    display: block;
    margin-bottom: 18px;
    color: #777777;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.about-choose-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-choose-item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border: 3px solid #E6D5C3;
    border-radius: 50%;
    color: #111111;
    font-size: 14px;
    font-weight: 800;
}

.about-choose-item p {
    margin: 0;
    color: #222222;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .about-services-grid,
    .about-steps-grid,
    .about-choose-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .about-simple-hero {
        padding: 120px 0 64px;
    }

    .about-simple-section {
        padding: 64px 0;
    }

    .about-services-grid,
    .about-steps-grid,
    .about-choose-grid {
        grid-template-columns: 1fr;
    }
}

/* --- SIMPLE CONTACT PAGE --- */
body.page-contact-simple {
    background: #ffffff;
}

.contact-simple-main {
    min-height: calc(100vh - 150px);
    padding: 0;
    background: #ffffff;
    color: #111111;
}

.contact-simple-container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.contact-simple-hero {
    padding: 150px 0 70px;
    background: #ffffff;
}

.contact-simple-hero h1 {
    margin: 0 0 14px;
    color: #111111;
    font-size: clamp(38px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.15;
}

.contact-simple-hero p {
    margin: 0;
    color: #555555;
    font-size: 16px;
    line-height: 1.6;
}

.contact-simple-section,
.contact-map-section,
.contact-cta-section {
    padding: 70px 0;
    background: #ffffff;
    border-top: 1px solid #f2f2f2;
}

.contact-simple-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
    align-items: start;
}

.contact-info-card,
.contact-form-card,
.contact-map-card,
.contact-cta-card {
    padding: 25px;
    border: 3px solid #E6D5C3;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.02);
}

body.page-contact-simple .contact-map-card:hover {
    transform: none;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.02);
}

.contact-info-card h2,
.contact-form-card h2,
.contact-map-card h2,
.contact-cta-card h2 {
    margin: 0 0 22px;
    color: #111111;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.25;
}

.contact-info-group {
    padding-top: 18px;
    margin-top: 18px;
    border-top: 1px solid #eeeeee;
}

.contact-info-group:first-of-type {
    padding-top: 0;
    margin-top: 0;
    border-top: 0;
}

.contact-info-group h3 {
    margin: 0 0 8px;
    color: #777777;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-info-group a,
.contact-info-group p {
    display: block;
    margin: 0 0 7px;
    color: #222222;
    font-size: 15px;
    line-height: 1.55;
    text-decoration: none;
}

.contact-info-group a:hover {
    color: #000000;
    text-decoration: underline;
}

.contact-form-card {
    display: grid;
    gap: 16px;
}

.contact-form-card label {
    display: grid;
    gap: 8px;
}

.contact-form-card span {
    color: #222222;
    font-size: 14px;
    font-weight: 700;
}

.contact-form-card input,
.contact-form-card textarea {
    width: 100%;
    border: 1px solid #dddddd;
    border-radius: 8px;
    background: #ffffff;
    color: #111111;
    font-size: 15px;
    line-height: 1.4;
    padding: 13px 14px;
    outline: none;
    transition: border-color 0.2s ease;
}

.contact-form-card textarea {
    resize: vertical;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
    border-color: var(--brown);
}

.contact-form-card button,
.contact-map-card a,
.contact-cta-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid var(--brown);
    border-radius: 8px;
    background: var(--brown);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.contact-form-card button:hover,
.contact-map-card a:hover,
.contact-cta-card a:hover {
    background: var(--accent);
    color: #ffffff;
}

.contact-map-card,
.contact-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.contact-map-card {
    align-items: stretch;
}

.contact-map-copy {
    flex: 1 1 280px;
}

.contact-map-frame {
    flex: 1.4 1 420px;
    min-height: 260px;
    overflow: hidden;
    border: 3px solid #E6D5C3;
    border-radius: 10px;
    background: #f5f5f5;
}

.contact-map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 260px;
    border: 0;
}

.contact-map-card h2,
.contact-cta-card h2 {
    margin-bottom: 8px;
}

.contact-map-card p {
    margin: 0;
    color: #555555;
    font-size: 15px;
    line-height: 1.55;
}

.contact-cta-card {
    background: #fafafa;
}

@media (max-width: 900px) {
    .contact-simple-layout {
        grid-template-columns: 1fr;
    }

    .contact-map-card,
    .contact-cta-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-map-frame {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .contact-simple-hero {
        padding: 120px 0 58px;
    }

    .contact-simple-section,
    .contact-map-section,
    .contact-cta-section {
        padding: 58px 0;
    }
}

/* --- ARCHITECTURE PAGE --- */
body.page-architecture {
    background: #ffffff;
}

.architecture-main {
    min-height: calc(100vh - 150px);
    padding: 0;
    background: #ffffff;
    color: #111111;
}

.arch-hero-section {
    padding: 90px 20px 24px;
    background: #ffffff;
    text-align: center;
}

.arch-hero-container {
    max-width: 700px;
    margin: 0 auto;
}

.arch-eyebrow {
    display: block;
    margin-bottom: 14px;
    color: #999;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.arch-hero-title {
    margin: 0 0 16px;
    color: #111;
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.05;
}

.arch-hero-subtitle {
    max-width: 520px;
    margin: 0 auto;
    color: #666;
    font-size: 1.05rem;
    line-height: 1.65;
}

.arch-projects-section {
    padding: 20px 0 80px;
    background: #ffffff;
}

.arch-projects-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.arch-project-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.arch-project-card.arch-card-reverse {
    grid-template-columns: 1fr 1.2fr;
}

.arch-project-card.arch-card-reverse .arch-project-image-wrap {
    order: 2;
}

.arch-project-card.arch-card-reverse .arch-project-info {
    order: 1;
    text-align: right;
}

.arch-project-image-wrap {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.arch-project-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.arch-project-card:hover .arch-project-image-wrap img {
    transform: scale(1.04);
}

.arch-project-info {
    padding: 10px 0;
}

.arch-project-number {
    display: block;
    margin-bottom: 12px;
    color: #ccc;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.arch-project-name {
    margin: 0;
    color: #1a1a1a;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

/* Tablet */
@media (max-width: 1024px) {
    .arch-project-card,
    .arch-project-card.arch-card-reverse {
        grid-template-columns: 1fr 1fr;
    }
    
    .arch-projects-container {
        gap: 50px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .arch-hero-section {
        padding: 120px 20px 40px;
    }

    .arch-project-card,
    .arch-project-card.arch-card-reverse {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .arch-project-card.arch-card-reverse .arch-project-image-wrap {
        order: 1;
    }

    .arch-project-card.arch-card-reverse .arch-project-info {
        order: 2;
        text-align: left;
    }

    .arch-projects-container {
        gap: 40px;
    }

    .arch-project-image-wrap {
        aspect-ratio: 16 / 9;
        border-radius: 10px;
    }

    .arch-project-name {
        font-size: 1.25rem;
    }
}

/* ================================================
   ARCHITECTURE HORIZONTAL SLIDER  — PREMIUM REDESIGN
   ================================================ */

/* ── Section shell ── */
.arch-slider-section {
    padding: 0 0 70px;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

/* Subtle warm background texture */
.arch-slider-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: none;
    pointer-events: none;
}

/* ── Header row above slider ── */
.arch-slider-header {
    max-width: 1280px;
    margin: 0 auto 36px;
    padding: 0 40px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.arch-slider-header-left {
    flex: 1 1 0;
}

.arch-label-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: #c8a040;
}

.arch-label-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1.5px;
    background: #c8a040;
    border-radius: 2px;
}

.arch-label-heading {
    margin: 0;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.05;
    color: #111;
    letter-spacing: -0.03em;
}

/* Right side: counter + nav inline */
.arch-slider-header-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 18px;
}

.arch-slider-counter {
    display: flex;
    align-items: baseline;
    gap: 3px;
    font-weight: 700;
}

.arch-counter-current {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: #111;
    min-width: 2ch;
    text-align: right;
}

.arch-counter-sep {
    font-size: 1rem;
    color: #ddd;
    padding: 0 2px;
    align-self: center;
}

.arch-counter-total {
    font-size: 0.9rem;
    color: #bbb;
    align-self: flex-end;
    padding-bottom: 3px;
}

/* Nav pills */
.arch-slider-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.arch-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(90, 58, 50, 0.18);
    background: #ffffff;
    color: #5a3a32;
    cursor: pointer;
    transition: background 0.28s cubic-bezier(0.34,1.56,0.64,1),
                color 0.28s ease,
                border-color 0.28s ease,
                transform 0.28s cubic-bezier(0.34,1.56,0.64,1),
                box-shadow 0.28s ease;
    box-shadow: 0 2px 12px rgba(90,58,50,0.07);
}

.arch-nav-btn:hover {
    background: #5a3a32;
    color: #f5f3ee;
    border-color: #5a3a32;
    transform: scale(1.12);
    box-shadow: 0 8px 24px rgba(90,58,50,0.26);
}

.arch-nav-btn--disabled {
    opacity: 0.28;
    pointer-events: none;
}

.arch-nav-next {
    background: #5a3a32;
    color: #f5f3ee;
    border-color: #5a3a32;
}

.arch-nav-next:hover {
    background: #7a4f44;
    border-color: #7a4f44;
}

/* ── Viewport + Track ── */
.arch-slider-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.arch-slider-viewport {
    overflow: hidden;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    border-radius: 0;
}

.arch-slider-viewport:active {
    cursor: grabbing;
}

.arch-slider-track {
    display: flex;
    align-items: stretch;
    gap: 22px;
    will-change: transform;
    touch-action: pan-y;
}

/* ── Premium Card ── */
.arch-slide-card {
    flex: 0 0 var(--arch-card-w, 360px);
    width: var(--arch-card-w, 360px);
    min-width: 0;
}

.arch-slide-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 18px rgba(0,0,0,0.09);
    transition: box-shadow 0.38s cubic-bezier(0.25,1,0.5,1),
                transform 0.38s cubic-bezier(0.25,1,0.5,1);
    height: 100%;
    border: 1px solid #ede9e3;
}

.arch-slide-link:hover {
    box-shadow: 0 12px 36px rgba(0,0,0,0.14);
    transform: translateY(-4px);
    border-color: #d4c4b0;
}

/* Image zone — landscape 16:9, photo fully visible */
.arch-slide-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f0ece6;
    flex-shrink: 0;
}

.arch-slide-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
    filter: none;
}

.arch-slide-link:hover .arch-slide-img-wrap img {
    transform: scale(1.04);
    filter: none;
}

.arch-slide-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ede9e3, #d9d4c8);
}

/* Overlay — hidden normally, subtle on hover */
.arch-slide-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    background: transparent;
    transition: background 0.35s ease;
}

.arch-slide-link:hover .arch-slide-overlay {
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.38) 0%,
        transparent 60%
    );
}

/* CTA pill inside overlay */
.arch-slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #111;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.96);
    border: none;
    transform: translateY(6px);
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.38s cubic-bezier(0.34,1.56,0.64,1);
}

.arch-slide-link:hover .arch-slide-cta {
    opacity: 1;
    transform: translateY(0);
}

/* ── Info footer below image ── */
.arch-slide-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px 14px;
    background: #ffffff;
    flex: 1;
}

.arch-slide-number {
    flex: 0 0 auto;
    font-size: 0.65rem;
    font-weight: 800;
    color: #ccc;
    letter-spacing: 0.14em;
    line-height: 1;
}

.arch-slide-text {
    flex: 1 1 0;
    min-width: 0;
}

.arch-slide-title {
    margin: 0 0 3px;
    font-size: clamp(0.82rem, 1.1vw, 0.95rem);
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.01em;
}

.arch-slide-location {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #a07840;
}

.arch-slide-location svg {
    flex-shrink: 0;
    opacity: 0.85;
}

/* ── Progress bar (replaces dots) ── */
.arch-slider-progress {
    max-width: 1280px;
    margin: 28px auto 0;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.arch-progress-track {
    flex: 1;
    height: 2px;
    background: rgba(0,0,0,0.1);
    border-radius: 999px;
    overflow: hidden;
}

.arch-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #c8a040, #8b6914);
    border-radius: 999px;
    transition: width 0.52s cubic-bezier(0.25, 1, 0.5, 1);
    width: 0%;
}

.arch-progress-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: #aaa;
    letter-spacing: 0.08em;
    flex: 0 0 auto;
    white-space: nowrap;
}

/* ── Dots (hidden — replaced by progress bar) ── */
.arch-slider-dots {
    display: none;
}

.arch-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: background 0.25s ease, width 0.3s ease;
    padding: 0;
}

.arch-dot--active {
    background: #5a3a32;
    width: 24px;
    border-radius: 4px;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .arch-slider-header,
    .arch-slider-wrapper,
    .arch-slider-progress {
        padding-left: 28px;
        padding-right: 28px;
    }
}

@media (max-width: 900px) {
    .arch-slider-track {
        gap: 16px;
    }
    .arch-slide-img-wrap {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 767px) {
    .arch-slider-section {
        padding: 0 0 56px;
    }

    .arch-slider-header {
        padding: 0 18px;
        margin-bottom: 22px;
        align-items: center;
    }

    .arch-label-heading {
        font-size: 1.5rem;
    }

    .arch-slider-header-right {
        gap: 12px;
    }

    .arch-counter-current {
        font-size: 1.5rem;
    }

    .arch-nav-btn {
        width: 38px;
        height: 38px;
    }

    .arch-slider-wrapper {
        padding: 0 18px;
    }

    .arch-slider-track {
        gap: 14px;
    }

    .arch-slide-card {
        flex: 0 0 var(--arch-card-w, 260px);
        width: var(--arch-card-w, 260px);
    }

    .arch-slide-img-wrap {
        aspect-ratio: 4 / 3;
    }

    .arch-slide-info {
        padding: 13px 14px 15px;
    }

    .arch-slide-title {
        font-size: 0.85rem;
    }

    .arch-slider-progress {
        padding: 0 18px;
        margin-top: 20px;
    }
}

@media (max-width: 420px) {
    .arch-label-heading {
        font-size: 1.25rem;
    }
    .arch-slider-header,
    .arch-slider-wrapper,
    .arch-slider-progress {
        padding-left: 14px;
        padding-right: 14px;
    }
}

/* --- SIMPLE SERVICE PAGES --- */
body.page-service-simple {
    background: #ffffff;
}

.coming-soon-main,
.service-simple-main {
    min-height: calc(100vh - 150px);
    padding: 0;
    background: #ffffff;
    color: #111111;
    font-family: Inter, Arial, sans-serif;
}

.simple-coming-soon,
.service-simple-section {
    min-height: 74vh;
    padding: 150px 20px 80px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.simple-coming-card,
.service-simple-container {
    width: min(420px, 92%);
    margin: 0 auto;
    padding: 28px;
    border: 3px solid #E6D5C3;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.02);
    text-align: center;
}

.simple-coming-card span,
.service-simple-container span {
    display: block;
    margin-bottom: 10px;
    color: #777777;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.simple-coming-card h1,
.service-simple-container h1 {
    margin: 0 0 10px;
    color: #111111;
    font-family: Inter, Arial, sans-serif !important;
    font-size: 30px;
    font-style: normal !important;
    font-weight: 800;
    line-height: 1.15;
}

.simple-coming-card p,
.service-simple-container p {
    margin: 0 auto 22px;
    color: #444444;
    font-size: 14px;
    line-height: 1.6;
}

.simple-coming-card a,
.service-simple-container a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 8px;
    border: 2px solid #5a3a32;
    background: transparent;
    color: #5a3a32;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.service-simple-container a:hover {
    background: #5a3a32;
    color: #fff;
}

/* Global override: ADLaM Display on every page */
body,
body * {
    font-family: "ADLaM Display", cursive !important;
}

/* Boxed buttons: force white text only on boxed backgrounds */
.btn-get-started,
.hero-btn,
.hero-btn--ghost,
.projects-view-all-btn,
.custom-about-btn,
.service-primary-btn,
.service-secondary-btn,
.project-back-link,
.contact-form-card button,
.contact-map-card a,
.contact-cta-card a,
.contact-address-btn,
.contact-assist-btn,
.about-hero-btn,
.inner-cta-btn,
.btn-download-ppt,
.projects-filter-btn.is-active,
.project-category-tab.is-active {
    color: #ffffff !important;
}

/* Index hero title should be white */
.page-home .cinematic-title,
.page-home .hero-title,
.page-home .cinematic-subtitle,
.page-home .hero-subline,
.page-home .hero-tagline,
.page-home .hero-kicker {
    color: #E6E1C9 !important;
}

/* --- ARCHITECTURE SEE PROJECT OVERLAY --- */
.arch-project-image-wrap {
    display: block;
    position: relative;
}

.arch-project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.arch-project-image-wrap:hover .arch-project-overlay {
    opacity: 1;
}

.arch-see-project {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.9);
    color: #111;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 30px;
    transform: translateY(20px);
    transition: transform 0.4s ease, background 0.3s ease, color 0.3s ease;
}

.arch-project-image-wrap:hover .arch-see-project {
    transform: translateY(0);
}

.arch-see-project:hover {
    background: #5a3a32;
    color: #fff;
}

/* --- ARCHITECTURE DETAIL PAGE --- */
body.page-arch-detail {
    background: #ffffff;
}

.arch-detail-main {
    min-height: calc(100vh - 150px);
    padding: 0;
    background: #ffffff;
    color: #111111;
}

.arch-detail-hero {
    padding: 90px 20px 28px;
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.arch-detail-hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.arch-detail-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: #5a3a32;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.arch-detail-back:hover {
    transform: translateX(-5px);
}

.arch-detail-title {
    margin: 0;
    color: #111;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 800;
    line-height: 1.1;
}

.arch-detail-desc {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.arch-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.arch-detail-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #777;
    font-size: 14px;
    font-weight: 600;
}

/* ── Detail Page Photo Grid ── */
.adp-grid-section {
    padding: 0 0 80px;
    background: #ffffff;
}

.adp-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Row patterns */
.adp-row-single {
    width: 100%;
}

.adp-row-double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.adp-gallery-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.adp-gallery-group + .adp-gallery-group {
    margin-top: 28px;
}

.adp-gallery-heading {
    margin: 0;
    color: #111111;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
}

.adp-row-compact {
    align-items: stretch;
    grid-template-columns: repeat(2, minmax(0, 360px));
    gap: 12px;
    justify-content: center;
}

.adp-row-compact-single {
    grid-template-columns: minmax(0, 360px);
}

.adp-row-compact-three {
    grid-template-columns: repeat(3, minmax(0, 360px));
}

/* Photo card — natural ratio */
.adp-photo-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #f0ece6;
    transition: box-shadow 0.35s ease, transform 0.35s ease;
    box-shadow: 0 3px 14px rgba(0,0,0,0.07);
}

.adp-photo-card-compact {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 3 / 4;
    background: #ffffff;
    justify-self: center;
}

.adp-photo-card:hover {
    box-shadow: 0 10px 32px rgba(0,0,0,0.14);
    transform: translateY(-3px);
}

.adp-photo-card img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.adp-photo-card-compact img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}



/* Hover zoom icon */
.adp-photo-hover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0);
    transition: background 0.3s ease;
}

.adp-photo-hover svg {
    color: #ffffff;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.28s ease, transform 0.32s cubic-bezier(0.34,1.56,0.64,1);
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.adp-photo-card:hover .adp-photo-hover {
    background: rgba(0,0,0,0.18);
}

.adp-photo-card:hover .adp-photo-hover svg {
    opacity: 1;
    transform: scale(1);
}

/* ── Lightbox ── */
.adp-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.adp-lightbox--open {
    opacity: 1;
    pointer-events: all;
}

.adp-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 6, 4, 0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.adp-lightbox-img-wrap {
    position: relative;
    z-index: 2;
    max-width: min(92vw, 1100px);
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adp-lightbox-img {
    max-width: 100%;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.5);
    transition: opacity 0.18s ease;
    display: block;
}

/* Close button — right side */
.adp-lightbox-close {
    position: fixed;
    top: 22px;
    right: 22px;
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.22s ease, transform 0.22s ease;
    backdrop-filter: blur(4px);
}

.adp-lightbox-close:hover {
    background: rgba(255,255,255,0.22);
    transform: rotate(90deg) scale(1.1);
}

/* Prev / Next inside lightbox */
.adp-lb-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.22s ease, transform 0.22s ease;
    backdrop-filter: blur(4px);
}

.adp-lb-prev { left: 16px; }
.adp-lb-next { right: 16px; }

.adp-lb-nav:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-50%) scale(1.1);
}

/* Counter at bottom */
.adp-lightbox-counter {
    position: fixed;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.1em;
    background: rgba(0,0,0,0.3);
    padding: 5px 14px;
    border-radius: 999px;
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .adp-grid {
        padding: 0 16px;
        gap: 12px;
    }

    .adp-row-double {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .adp-row-compact {
        grid-template-columns: minmax(0, 1fr);
    }

    .adp-photo-card-compact {
        max-width: min(360px, 100%);
    }

    .adp-gallery-group {
        gap: 10px;
    }

    .adp-gallery-group + .adp-gallery-group {
        margin-top: 22px;
    }

    .adp-photo-card {
        border-radius: 10px;
    }
}

@media (max-width: 1024px) {
    .adp-row-compact-three {
        grid-template-columns: repeat(2, minmax(0, 360px));
    }
}

@media (max-width: 640px) {
    .adp-lb-prev { left: 8px; }
    .adp-lb-next { right: 8px; }
    .adp-lightbox-close {
        top: 14px;
        right: 14px;
    }
}

.arch-detail-gallery {
    padding: 60px 20px 100px;
}
.service-simple-container h1 {
    margin: 0 0 10px;
    color: #111111;
    font-family: Inter, Arial, sans-serif !important;
    font-size: 30px;
    font-style: normal !important;
    font-weight: 800;
    line-height: 1.15;
}

.simple-coming-card p,
.service-simple-container p {
    margin: 0 auto 22px;
    color: #444444;
    font-size: 14px;
    line-height: 1.6;
}

.simple-coming-card a,
.service-simple-container a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 8px;
    border: 2px solid #5a3a32;
    background: transparent;
    color: #5a3a32;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.service-simple-container a:hover {
    background: #5a3a32;
    color: #fff;
}

/* Global override: ADLaM Display on every page */
body,
body * {
    font-family: "ADLaM Display", cursive !important;
}

/* Boxed buttons: force white text only on boxed backgrounds */
.btn-get-started,
.hero-btn,
.hero-btn--ghost,
.projects-view-all-btn,
.custom-about-btn,
.service-primary-btn,
.service-secondary-btn,
.project-back-link,
.contact-form-card button,
.contact-map-card a,
.contact-cta-card a,
.contact-address-btn,
.contact-assist-btn,
.about-hero-btn,
.inner-cta-btn,
.btn-download-ppt,
.projects-filter-btn.is-active,
.project-category-tab.is-active {
    color: #ffffff !important;
}

/* Index hero title should be white */
.page-home .cinematic-title,
.page-home .hero-title,
.page-home .cinematic-subtitle,
.page-home .hero-subline,
.page-home .hero-tagline,
.page-home .hero-kicker {
    color: #E6E1C9 !important;
}

/* --- ARCHITECTURE SEE PROJECT OVERLAY --- */
.arch-project-image-wrap {
    display: block;
    position: relative;
}

.arch-project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.arch-project-image-wrap:hover .arch-project-overlay {
    opacity: 1;
}

.arch-see-project {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.9);
    color: #111;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 30px;
    transform: translateY(20px);
    transition: transform 0.4s ease, background 0.3s ease, color 0.3s ease;
}

.arch-project-image-wrap:hover .arch-see-project {
    transform: translateY(0);
}

.arch-see-project:hover {
    background: #5a3a32;
    color: #fff;
}

/* --- ARCHITECTURE DETAIL PAGE --- */
body.page-arch-detail {
    background: #ffffff;
}

.arch-detail-main {
    min-height: calc(100vh - 150px);
    padding: 0;
    background: #ffffff;
    color: #111111;
}

.arch-detail-hero {
    padding: 140px 20px 60px;
    background: #fdfdfd;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.arch-detail-hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.arch-detail-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: #5a3a32;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.arch-detail-back:hover {
    transform: translateX(-5px);
}

.arch-detail-title {
    margin: 0 0 16px;
    color: #111;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
}

.arch-detail-desc {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.arch-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.arch-detail-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #777;
    font-size: 14px;
    font-weight: 600;
}

.arch-detail-gallery {
    padding: 60px 20px 100px;
}

.arch-detail-gallery-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.arch-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.arch-detail-row-reverse {
    grid-template-columns: 1fr 1fr;
}

.arch-detail-row-reverse .arch-detail-text {
    order: 2;
}

.arch-detail-row-reverse .arch-detail-photo {
    order: 1;
}

.arch-detail-text {
    padding: 20px;
}

.arch-detail-text h3 {
    margin: 0 0 16px 0;
    font-size: 24px;
    color: #111;
    font-weight: 800;
}

.arch-detail-text p {
    margin: 0;
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

.arch-detail-photo {
    margin: 0;
    position: relative;
    background: #fdfdfd;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    justify-content: center;
    align-items: center;
}

.arch-detail-photo img {
    max-width: 100%;
    max-height: 60vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

@media (max-width: 1024px) {
    .arch-detail-row,
    .arch-detail-row-reverse {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .arch-detail-hero {
        padding: 120px 20px 40px;
    }
    .arch-detail-gallery {
        padding: 40px 20px 60px;
    }
    .arch-detail-gallery-list {
        gap: 60px;
    }
    .arch-detail-row,
    .arch-detail-row-reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .arch-detail-row-reverse .arch-detail-text,
    .arch-detail-row .arch-detail-text {
        order: 2;
        padding: 0 10px;
    }
    .arch-detail-row-reverse .arch-detail-photo,
    .arch-detail-row .arch-detail-photo {
        order: 1;
    }
    .arch-detail-text h3 {
        font-size: 20px;
    }
}
