:root {
    --bg: #f4f1ea;
    --paper: #fffaf2;
    --ink: #1f1c1a;
    --muted: #66605a;
    --accent: #bf5c2b;
    --accent-dark: #8f3e17;
    --line: #e4d9cc;
    --radius: 16px;
    --shadow: 0 16px 32px rgba(44, 31, 20, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    color: var(--ink);
    background: radial-gradient(circle at 20% 10%, #f9e9d8 0, transparent 35%),
                radial-gradient(circle at 80% 20%, #f7e5cf 0, transparent 30%),
                var(--bg);
    line-height: 1.6;
}

@keyframes orbFloatOne {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(20px, 26px, 0) scale(1.06); }
    100% { transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes orbFloatTwo {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(-18px, -24px, 0) scale(0.94); }
    100% { transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes heroRise {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sheenSweep {
    from { transform: translateX(-120%) skewX(-20deg); }
    to { transform: translateX(220%) skewX(-20deg); }
}

@keyframes floatDrift {
    0% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -10px, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

@keyframes softPulse {
    0% { box-shadow: 0 0 0 0 rgba(191, 92, 43, 0.18); }
    70% { box-shadow: 0 0 0 18px rgba(191, 92, 43, 0); }
    100% { box-shadow: 0 0 0 0 rgba(191, 92, 43, 0); }
}

@keyframes fadeScaleUp {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes revealMask {
    from {
        opacity: 0;
        clip-path: inset(0 0 22% 0 round 20px);
    }
    to {
        opacity: 1;
        clip-path: inset(0 0 0 0 round 20px);
    }
}

.bg-orb {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    filter: blur(6px);
}

.orb-one {
    width: 300px;
    height: 300px;
    background: rgba(191, 92, 43, 0.18);
    top: -90px;
    left: -120px;
    animation: orbFloatOne 16s ease-in-out infinite;
}

.orb-two {
    width: 380px;
    height: 380px;
    background: rgba(38, 95, 101, 0.12);
    right: -140px;
    bottom: -140px;
    animation: orbFloatTwo 19s ease-in-out infinite;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

/* ── Top bar ── */
.site-topbar {
    background: var(--ink);
    color: rgba(255,255,255,0.82);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.topbar-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.topbar-link,
.topbar-addr {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    white-space: nowrap;
}

.topbar-link:hover {
    color: #fff;
}

.topbar-sep {
    color: rgba(255,255,255,0.28);
    font-size: 0.7em;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

.topbar-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.topbar-social:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
}

.site-header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(10px);
    background: rgba(255, 250, 242, 0.86);
    border-bottom: 1px solid var(--line);
    z-index: 20;
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 250, 242, 0.94);
    box-shadow: 0 10px 28px rgba(44, 31, 20, 0.08);
    border-bottom-color: rgba(191, 92, 43, 0.14);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 90px;
}

.brand {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo {
    height: 100px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: opacity 0.2s ease;
}

.brand:hover .brand-logo {
    opacity: 0.85;
}

.site-nav {
    display: flex;
    gap: 18px;
    align-items: center;
}

.site-nav a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 500;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--accent-dark);
    border-bottom-color: var(--accent-dark);
}

.site-nav .admin-link {
    background: var(--accent);
    color: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    border-bottom: none;
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > button {
    color: var(--ink);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: inherit;
    font-family: inherit;
    transition: all 0.25s ease;
    border-radius: 6px;
    position: relative;
}

.nav-dropdown > button:hover,
.nav-dropdown > button.active,
.nav-dropdown > button[aria-expanded="true"] {
    color: var(--accent-dark);
    background: rgba(206, 103, 29, 0.08);
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.25s ease;
    display: inline-block;
}

.nav-dropdown > button[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: -20px;
    background: white;
    border: 1px solid #e8e0d5;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
    min-width: 340px;
    max-width: 400px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: 8px 0;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown > button[aria-expanded="true"] ~ .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-header {
    padding: 12px 20px 8px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.nav-dropdown-all {
    color: var(--accent-dark);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: inline-block;
    padding: 6px 10px;
    border-radius: 6px;
}

.nav-dropdown-all:hover {
    color: white;
    background: var(--accent-dark);
}

.nav-dropdown-group {
    display: flex;
    flex-direction: column;
}

.nav-dropdown-title {
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 20px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
    margin: 0;
}

.nav-dropdown-title:hover {
    background-color: #faf7f2;
    color: var(--accent-dark);
    padding-left: 22px;
}

.nav-dropdown-submenu {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #faf7f2 0%, #fff9f5 100%);
    border-left: 4px solid var(--accent-dark);
    padding: 4px 0;
}

.nav-dropdown-submenu a {
    color: #555;
    text-decoration: none;
    padding: 10px 20px 10px 28px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    position: relative;
}

.nav-dropdown-submenu a::before {
    content: "›";
    position: absolute;
    left: 20px;
    color: var(--accent-dark);
    font-size: 1rem;
    opacity: 0;
    transition: all 0.2s ease;
}

.nav-dropdown-submenu a:hover {
    color: var(--accent-dark);
    background-color: rgba(206, 103, 29, 0.06);
    padding-left: 32px;
}

.nav-dropdown-submenu a:hover::before {
    opacity: 1;
    left: 24px;
}

/* Custom Menu Dropdown Styling */
.custom-menu-dropdown {
    position: relative;
}

.custom-menu-dropdown > button {
    color: var(--ink);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: inherit;
    font-family: inherit;
    transition: all 0.25s ease;
    border-radius: 6px;
    position: relative;
}

.custom-menu-dropdown > button:hover,
.custom-menu-dropdown > button[aria-expanded="true"] {
    color: var(--accent-dark);
    background: rgba(206, 103, 29, 0.08);
}

.custom-menu-dropdown .dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.25s ease;
    display: inline-block;
}

.custom-menu-dropdown > button[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg);
}

.menu-toggle {
    display: none;
    border: 1px solid rgba(90, 72, 56, 0.18);
    background: rgba(255, 250, 242, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    width: 44px;
    height: 40px;
    padding: 8px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(44, 31, 20, 0.12);
    transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.menu-toggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(44, 31, 20, 0.16);
}

.menu-toggle:focus-visible {
    outline: 2px solid var(--accent-dark);
    outline-offset: 2px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--ink);
    border-radius: 999px;
    transform-origin: center;
    transition: transform 0.28s ease, opacity 0.22s ease, width 0.22s ease;
}

.menu-toggle span:nth-child(2) {
    width: 17px;
}

.menu-toggle.open {
    background: rgba(191, 92, 43, 0.14);
    border-color: rgba(143, 62, 23, 0.32);
}

.menu-toggle.open span:nth-child(2) {
    width: 0;
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    display: grid;
    gap: 24px;
    grid-template-columns: 1.3fr 1fr;
    padding: 64px 0 44px;
    animation: heroRise 0.9s ease both;
}

.hero-full {
    width: 100%;
    padding: 26px 0 46px;
    animation: heroRise 0.9s ease both;
}

.hero h1,
.page-intro h1,
.post-single h1 {
    margin: 6px 0 14px;
    font-family: 'Playfair Display', serif;
    line-height: 1.15;
}

.hero h1 {
    font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.eyebrow {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.82rem;
    color: var(--accent-dark);
    font-weight: 700;
}

.hero-card,
.card,
.blog-card,
.highlight-box,
.form-box,
.post-single {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-card {
    padding: 28px;
    transform: translateY(16px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-slider {
    position: relative;
    width: 100%;
    min-height: 560px;
    border-radius: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: none;
    border-right: none;
    box-shadow: var(--shadow);
    overflow: hidden;
    transform: none;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-slide img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
}

.hero-slide-overlay {
    position: absolute;
    left: 50%;
    right: auto;
    bottom: 0;
    width: min(1120px, 92%);
    transform: translateX(-50%);
    padding: 28px 0;
    color: #fff;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.05) 0%, rgba(18, 18, 18, 0.78) 86%);
}

.hero-slide-overlay p {
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-slide.is-active .hero-slide-overlay > * {
    animation: fadeScaleUp 0.7s ease both;
}

.hero-slide.is-active .hero-slide-overlay > *:nth-child(1) { animation-delay: 0.08s; }
.hero-slide.is-active .hero-slide-overlay > *:nth-child(2) { animation-delay: 0.16s; }
.hero-slide.is-active .hero-slide-overlay > *:nth-child(3) { animation-delay: 0.24s; }
.hero-slide.is-active .hero-slide-overlay > *:nth-child(4) { animation-delay: 0.32s; }
.hero-slide.is-active .hero-slide-overlay > *:nth-child(5) { animation-delay: 0.4s; }
.hero-slide.is-active .hero-slide-overlay > *:nth-child(6) { animation-delay: 0.48s; }

.hero-highlight {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
    background: rgba(255, 159, 95, 0.22);
    border: 1px solid rgba(255, 218, 191, 0.85);
    color: #fff2e6;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
}

.hero-punch {
    margin: 0 0 10px;
    font-size: clamp(1rem, 1.7vw, 1.25rem);
    font-weight: 700;
    color: #fff;
    max-width: 760px;
    text-wrap: balance;
}

.hero-slide-overlay .eyebrow {
    color: #ffe6d5;
    margin-bottom: 12px;
}

.hero-slide-overlay h3 {
    margin: 0 0 12px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.8rem);
    max-width: 720px;
}

.hero-note {
    max-width: 700px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.94);
}

.hero-slide-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.btn-ghost-light {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn-accent-strong {
    background: #f28a50;
    color: #fff;
}

.btn-accent-strong:hover {
    background: #de6f30;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.8);
    color: #2e2722;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.hero-nav:hover {
    transform: translateY(-50%) scale(1.08);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 24px rgba(20, 17, 14, 0.18);
}

.hero-nav.prev { left: 12px; }
.hero-nav.next { right: 12px; }

.hero-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 2;
}

.hero-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.92);
    background: transparent;
    cursor: pointer;
}

.hero-dot.active {
    background: #fff;
    animation: softPulse 1.8s ease-out infinite;
}

.hero-card:hover {
    transform: translateY(8px);
    box-shadow: 0 22px 36px rgba(44, 31, 20, 0.16);
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.btn {
    display: inline-block;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    padding: 11px 18px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(44, 31, 20, 0.15);
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 44%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.36), transparent);
    transform: translateX(-120%) skewX(-20deg);
}

.btn:hover::after {
    animation: sheenSweep 0.8s ease;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-dark);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
}

.section {
    padding: 24px 0 56px;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 12px;
    right: 5%;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(191, 92, 43, 0.08) 0%, rgba(191, 92, 43, 0) 72%);
    pointer-events: none;
    animation: floatDrift 8s ease-in-out infinite;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.card-grid,
.blog-grid {
    display: grid;
    gap: 18px;
}

.card-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Projects Layout with Sidebar */
.projects-section {
    position: relative;
}

.projects-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    margin-top: 28px;
    align-items: start;
}

.projects-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Search Box */
.projects-search {
    position: relative;
    display: flex;
    align-items: center;
}

.projects-search-input {
    width: 100%;
    padding: 12px 16px 12px 40px;
    border: 1px solid #d9c7b7;
    border-radius: 8px;
    background: white;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.2s ease;
}

.projects-search-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(191, 92, 43, 0.1);
}

.search-icon {
    position: absolute;
    left: 12px;
    width: 18px;
    height: 18px;
    color: var(--muted);
    pointer-events: none;
}

/* Filter Groups */
.filter-group {
    background: white;
    border: 1px solid #e4d9cc;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.filter-group-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
}

.filter-group-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.filter-group-section-title {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subcategory-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px 0;
}

.subcategory-label {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 4px 0;
}

.filter-checkbox input[type="checkbox"] {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--accent);
}

.filter-checkbox input[type="checkbox"]:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.checkbox-label {
    font-size: 0.95rem;
    color: var(--ink);
    user-select: none;
    flex: 1;
}

.filter-checkbox:hover .checkbox-label {
    color: var(--accent-dark);
}

.filter-checkbox-sub .checkbox-label {
    font-size: 0.9rem;
    color: #555;
    padding-left: 4px;
}

/* Projects Content */
.projects-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.project-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.project-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 0 18px;
}

.project-filter__chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid #d9c7b7;
    background: rgba(255, 250, 242, 0.85);
    color: #4a3a2e;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.project-filter__chip:hover {
    background: #fff;
    border-color: #bf5c2b;
    color: #8f3e17;
    transform: translateY(-1px);
}

.project-filter__chip.is-active {
    background: #bf5c2b;
    border-color: #bf5c2b;
    color: #fff;
    box-shadow: 0 8px 18px rgba(191, 92, 43, 0.22);
}

.project-filter-empty {
    margin: 10px 0 0;
    color: var(--muted);
    font-weight: 600;
}

.team-section {
    position: relative;
}

.team-section::after {
    content: '';
    position: absolute;
    left: 2%;
    bottom: 10px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(191, 92, 43, 0.1) 0%, rgba(191, 92, 43, 0) 70%);
    pointer-events: none;
}

.team-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.team-card {
    background: linear-gradient(155deg, #fffaf4 0%, #fdf2e5 100%);
    border: 1px solid #e9d5bf;
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease, background 0.32s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: #d5b393;
    box-shadow: 0 24px 42px rgba(44, 31, 20, 0.18);
    background: linear-gradient(155deg, #fffdf8 0%, #fff2e1 100%);
}

.team-card__media {
    position: relative;
    padding: 12px 12px 0;
}

.team-card__media::after {
    content: '';
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(34, 24, 16, 0.24) 100%);
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    pointer-events: none;
}

.team-card img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    border-radius: 14px;
}

.team-badge {
    position: absolute;
    top: 22px;
    left: 22px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(34, 24, 16, 0.72);
    color: #fff4e6;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
}

.team-content {
    padding: 16px 18px 18px;
}

.team-name {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.22rem;
    color: #2a211c;
}

.team-role {
    margin: 8px 0 10px;
    color: #95431b;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.team-content p {
    color: #4a3d34;
}

.team-actions {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.team-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border: 1px solid #dbc0a7;
    border-radius: 999px;
    color: #784022;
    background: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.84rem;
    transition: all 0.2s ease;
}

.team-link:hover {
    background: #fff;
    border-color: #bf5c2b;
    color: #8f3e17;
    transform: translateY(-1px);
}

.team-link--accent {
    background: #bf5c2b;
    border-color: #bf5c2b;
    color: #fff7ef;
}

.team-link--accent:hover {
    background: #9d4b22;
    border-color: #9d4b22;
    color: #fff;
}

/* Counter Section Styles */
.counter-section {
    background: linear-gradient(135deg, #f9e9d8 0%, #faf7f2 100%);
    border-radius: 20px;
    padding: 60px 40px;
}

.counter-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.counter-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    animation: slideUp 0.6s ease-out backwards;
}

.counter-card:nth-child(1) { animation-delay: 0.1s; }
.counter-card:nth-child(2) { animation-delay: 0.2s; }
.counter-card:nth-child(3) { animation-delay: 0.3s; }
.counter-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.counter-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.counter-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.counter-number {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--accent-dark);
    margin: 16px 0;
    font-family: 'Playfair Display', serif;
}

.counter-card h3 {
    margin: 12px 0 8px;
    font-size: 1.1rem;
    color: var(--ink);
    font-weight: 600;
}

.counter-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Location Section Styles */
.location-section {
    position: relative;
    overflow: hidden;
}

.location-section .section-head {
    text-align: center;
    margin-bottom: 48px;
}

.location-section .section-head p {
    color: var(--muted);
    margin-top: 8px;
    font-size: 1rem;
}

.location-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.location-slider {
    flex: 1;
    overflow: hidden;
    border-radius: 16px;
}

.location-slides {
    display: flex;
    gap: 16px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    scroll-snap-type: x mandatory;
}

.location-slide {
    flex: 0 0 calc(25% - 12px);
    min-width: 200px;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(206, 103, 29, 0.08) 0%, rgba(143, 62, 23, 0.04) 100%);
    border: 1px solid #e4d9cc;
    border-radius: 12px;
    text-align: center;
    scroll-snap-align: start;
    transition: all 0.3s ease;
    cursor: pointer;
}

.location-slide:hover {
    background: linear-gradient(135deg, rgba(206, 103, 29, 0.15) 0%, rgba(143, 62, 23, 0.08) 100%);
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(206, 103, 29, 0.15);
}

.location-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

.location-slide:nth-child(1) .location-icon { animation-delay: 0s; }
.location-slide:nth-child(2) .location-icon { animation-delay: 0.1s; }
.location-slide:nth-child(3) .location-icon { animation-delay: 0.2s; }
.location-slide:nth-child(4) .location-icon { animation-delay: 0.3s; }
.location-slide:nth-child(5) .location-icon { animation-delay: 0.4s; }
.location-slide:nth-child(6) .location-icon { animation-delay: 0.5s; }

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.location-slide h4 {
    margin: 12px 0 6px;
    font-size: 1.05rem;
    color: var(--ink);
    font-weight: 600;
}

.location-slide p {
    margin: 0;
    color: var(--muted);
    font-size: 0.85rem;
}

.location-slider-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #d9c7b7;
    background: white;
    color: var(--ink);
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-slider-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: scale(1.1);
}

.location-slider-btn:active {
    transform: scale(0.95);
}

.testimonial-section {
    position: relative;
}

.testimonial-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.testimonial-card {
    background: linear-gradient(160deg, #fffaf2 0%, #fff4e6 100%);
    border: 1px solid #ead8c2;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 22px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 12px;
    right: 16px;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    line-height: 1;
    color: rgba(191, 92, 43, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 38px rgba(44, 31, 20, 0.16);
}

.testimonial-stars {
    margin: 0 0 10px;
    color: #d87a2b;
    letter-spacing: 0.08em;
}

.testimonial-text {
    margin: 0 0 14px;
    color: #3d342d;
}

.testimonial-client {
    margin: 0;
    font-weight: 700;
}

.testimonial-role {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.project-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    scroll-margin-top: 140px;
    overflow: hidden;
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.card,
.blog-card,
.project-card,
.team-card,
.testimonial-card,
.highlight-box,
.about-process-card,
.about-metric-card {
    transform-style: preserve-3d;
}

.card::before,
.blog-card::before,
.project-card::before,
.team-card::before,
.testimonial-card::before,
.highlight-box::before,
.about-process-card::before,
.about-metric-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0%, transparent 42%, transparent 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.card:hover::before,
.blog-card:hover::before,
.project-card:hover::before,
.team-card:hover::before,
.testimonial-card:hover::before,
.highlight-box:hover::before,
.about-process-card:hover::before,
.about-metric-card:hover::before {
    opacity: 1;
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: #d8bfa8;
    box-shadow: 0 22px 38px rgba(44, 31, 20, 0.16);
}

.project-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-content {
    padding: 18px;
}

.project-meta {
    color: var(--accent-dark);
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.project-facts {
    margin-top: 10px;
    color: var(--muted);
    font-weight: 500;
}

.project-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.project-actions .btn {
    text-align: center;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #25D366;
    color: #fff;
    border: none;
    font-weight: 600;
    letter-spacing: .01em;
    transition: background 0.22s ease, transform 0.18s ease, box-shadow 0.22s ease;
    box-shadow: 0 2px 10px rgba(37,211,102,.28);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
    background: #1ebe5d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,.40);
}

.btn-whatsapp:active {
    transform: translateY(0);
}

.wa-icon {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}

.enquiry-trigger {
    font: inherit;
}

.faq-section {
    position: relative;
}

.faq-grid {
    display: grid;
    gap: 14px;
}

.faq-item {
    background: linear-gradient(135deg, #fffaf2 0%, #fff4e8 100%);
    border: 1px solid #ead8c5;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(44, 31, 20, 0.08);
    overflow: hidden;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    border-color: #d9bda1;
    box-shadow: 0 16px 28px rgba(44, 31, 20, 0.12);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 48px 16px 18px;
    font-weight: 700;
    color: #2b221c;
    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(191, 92, 43, 0.13);
    color: var(--accent-dark);
    font-size: 1rem;
    line-height: 1;
    font-weight: 700;
}

.faq-item[open] summary::after {
    content: '-';
    background: rgba(191, 92, 43, 0.2);
}

.faq-item p {
    margin: 0;
    padding: 0 18px 18px;
    color: #52463d;
}

.card,
.blog-card {
    padding: 20px;
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.card:hover,
.blog-card:hover {
    transform: translateY(-6px);
    border-color: #d8bfa8;
    box-shadow: 0 22px 38px rgba(44, 31, 20, 0.16);
}

.card-large {
    min-height: 220px;
}

.icon-badge {
    display: inline-block;
    min-width: 44px;
    text-align: center;
    background: #efe2d4;
    color: var(--accent-dark);
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 700;
}

.blog-card {
    padding: 0;
    overflow: hidden;
}

.blog-card img,
.post-single img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.blog-card:hover img {
    transform: scale(1.05);
}

.blog-card div {
    padding: 18px;
}

.post-date {
    color: var(--muted);
    font-size: 0.9rem;
}

.page-intro {
    padding-top: 44px;
}

.about-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 28px;
    align-items: center;
    padding-top: 26px;
}

.about-hero__copy {
    padding-top: 0;
}

.about-hero__actions {
    margin-top: 22px;
}

.about-visual {
    position: relative;
    min-height: 520px;
}

.about-visual::before,
.about-visual::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
}

.about-visual::before {
    width: 180px;
    height: 180px;
    top: 14px;
    right: 10px;
    background: radial-gradient(circle, rgba(191, 92, 43, 0.2) 0%, rgba(191, 92, 43, 0) 72%);
}

.about-visual::after {
    width: 220px;
    height: 220px;
    left: -20px;
    bottom: 8px;
    background: radial-gradient(circle, rgba(38, 95, 101, 0.14) 0%, rgba(38, 95, 101, 0) 74%);
}

.about-visual__frame {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 170px;
    gap: 16px;
    min-height: 100%;
    padding: 22px;
    border-radius: 28px;
    background: linear-gradient(160deg, rgba(255, 250, 242, 0.9) 0%, rgba(241, 231, 220, 0.96) 100%);
    border: 1px solid rgba(228, 217, 204, 0.9);
    box-shadow: 0 28px 60px rgba(44, 31, 20, 0.16);
    overflow: hidden;
}

.about-visual__frame::before {
    content: '';
    position: absolute;
    inset: 16px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    pointer-events: none;
}

.about-visual__panel {
    position: relative;
    border-radius: 22px;
    padding: 22px;
    overflow: hidden;
}

.about-visual__panel--tall {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 470px;
    background:
        linear-gradient(180deg, rgba(22, 18, 15, 0.08) 0%, rgba(22, 18, 15, 0.64) 100%),
        linear-gradient(140deg, #d8b293 0%, #7f5a45 100%);
    color: #fff8f1;
}

.about-visual__panel--tall::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 24%),
        linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.06) 48%, transparent 100%);
}

.about-visual__panel--tall h3,
.about-visual__panel--tall p,
.about-visual__label {
    position: relative;
    z-index: 1;
}

.about-visual__label {
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    color: rgba(255, 245, 235, 0.84);
}

.about-visual__panel--tall h3 {
    margin: 0 0 10px;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    line-height: 1.1;
}

.about-visual__panel--tall p {
    margin: 0;
    max-width: 320px;
    color: rgba(255, 248, 241, 0.9);
}

.about-visual__stack {
    display: grid;
    gap: 16px;
}

.about-visual__panel--metric {
    background: linear-gradient(180deg, #fff9f2 0%, #f3e7d8 100%);
    border: 1px solid rgba(228, 217, 204, 0.94);
}

.about-visual__panel--metric strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--accent-dark);
    margin-bottom: 10px;
}

.about-visual__panel--metric span {
    display: block;
    color: var(--muted);
    font-size: 0.92rem;
}

.about-visual__panel--swatches {
    display: grid;
    align-content: center;
    gap: 12px;
    background: #f5ecdf;
    border: 1px solid rgba(228, 217, 204, 0.94);
}

.about-visual__panel--swatches span {
    display: block;
    width: 100%;
    height: 62px;
    border-radius: 16px;
}

.about-visual__panel--swatches span:nth-child(1) {
    background: linear-gradient(135deg, #d4b79a 0%, #b48d6b 100%);
}

.about-visual__panel--swatches span:nth-child(2) {
    background: linear-gradient(135deg, #4b6667 0%, #7f9d9b 100%);
}

.about-visual__panel--swatches span:nth-child(3) {
    background: linear-gradient(135deg, #f1e6d8 0%, #d9c4a9 100%);
}

.about-visual__badge {
    position: absolute;
    right: 30px;
    bottom: 26px;
    z-index: 2;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(35, 29, 24, 0.88);
    color: #f6ede4;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
}

.about-story__box {
    background: linear-gradient(160deg, #fffaf2 0%, #f8efe2 100%);
}

.about-feature-list {
    margin: 0;
    padding-left: 18px;
}

.about-feature-list li + li {
    margin-top: 10px;
}

.about-metrics-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.about-metric-card {
    min-height: 220px;
    background: linear-gradient(180deg, rgba(255, 250, 242, 0.92) 0%, rgba(246, 236, 224, 0.96) 100%);
}

.about-metric-card__value {
    margin: 0 0 12px;
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    line-height: 1.2;
}

.about-process-wrap {
    position: relative;
}

.about-process-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.about-process-card {
    padding: 24px;
    border-radius: 20px;
    background: linear-gradient(160deg, #fffaf2 0%, #fff2e5 100%);
    border: 1px solid #ead8c2;
    box-shadow: var(--shadow);
}

.about-process-card__step {
    margin: 0 0 12px;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--accent-dark);
}

.about-process-card h3 {
    margin: 0 0 10px;
}

.about-signature {
    padding-bottom: 68px;
}

.about-signature__content {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #231d18 0%, #4e3528 100%);
    color: #f5ece2;
}

.about-signature__content::before {
    content: '';
    position: absolute;
    inset: auto -60px -60px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 138, 80, 0.28) 0%, rgba(242, 138, 80, 0) 72%);
}

.about-signature__content .eyebrow,
.about-signature__content p,
.about-signature__content h2 {
    position: relative;
    z-index: 1;
}

.about-signature__content .eyebrow {
    color: #ffd5bf;
}

.about-signature__content h2 {
    margin-top: 0;
    color: #fff8f1;
}

.about-signature__content p {
    max-width: 780px;
    color: rgba(245, 236, 226, 0.88);
}

.project-overview {
    align-items: stretch;
}

.empty-state {
    max-width: 760px;
}

.project-page-alert {
    margin-top: 18px;
}

.modal-open {
    position: fixed;
    inset: 0;
    width: 100%;
    overflow: hidden;
    touch-action: none;
}

.enquiry-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(16px, 4vh, 32px) 20px;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.enquiry-modal[hidden] {
    display: none;
}

.enquiry-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(24, 19, 15, 0.62);
}

.enquiry-modal__dialog {
    position: relative;
    width: min(100%, 620px);
    margin: auto 0;
    padding: 28px;
    border-radius: 18px;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: 0 28px 60px rgba(18, 13, 9, 0.28);
    max-height: calc(100dvh - 40px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.enquiry-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    border: none;
    background: transparent;
    color: var(--ink);
    font-size: 1.6rem;
    cursor: pointer;
}

.enquiry-modal__lead {
    margin-bottom: 18px;
    color: var(--muted);
}

.enquiry-form {
    margin-top: 8px;
}

/* PDF Viewer Modal */
.pdf-viewer-modal {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow: hidden;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.pdf-viewer-modal[hidden] {
    display: none;
}

.pdf-viewer-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(24, 19, 15, 0.78);
    cursor: pointer;
    backdrop-filter: blur(2px);
}

.pdf-viewer-modal__dialog {
    position: relative;
    width: min(100%, 95vw);
    height: min(100vh - 30px, 92vh);
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--paper) 0%, #faf5ed 100%);
    border: 1px solid var(--line);
    box-shadow: 0 32px 80px rgba(18, 13, 9, 0.35), 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 10;
    overflow: hidden;
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.pdf-viewer-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    border-bottom: 2px solid var(--line);
    background: linear-gradient(135deg, var(--paper) 0%, #fffaf2 100%);
    gap: 16px;
}

.pdf-viewer-modal__header h2 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.3px;
    flex: 0;
}

.pdf-viewer-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    justify-content: center;
    flex-wrap: wrap;
}

.pdf-viewer-zoom-level {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.95rem;
    white-space: nowrap;
    color: var(--ink);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.5);
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid rgba(100, 96, 90, 0.2);
    min-width: 60px;
    justify-content: center;
}

.pdf-viewer-btn {
    padding: 10px 16px;
    background: linear-gradient(135deg, var(--line), #e8dccf);
    border: 1px solid var(--accent);
    color: var(--ink);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    user-select: none;
}

.pdf-viewer-btn:hover {
    background: linear-gradient(135deg, var(--accent), #d14a1f);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(191, 92, 43, 0.3);
}

.pdf-viewer-btn:active {
    transform: translateY(0);
}

.pdf-viewer-page-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    white-space: nowrap;
    color: var(--muted);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.4);
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(100, 96, 90, 0.2);
}

.pdf-viewer-page-info input {
    border: 1px solid var(--accent);
    border-radius: 6px;
    padding: 6px 10px;
    font-family: 'Outfit', monospace;
    font-weight: 600;
    background: white;
    color: var(--ink);
    width: 50px;
    text-align: center;
    transition: all 0.2s;
}

.pdf-viewer-page-info input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(191, 92, 43, 0.15);
    border-color: var(--accent);
}

.pdf-viewer-modal__close {
    border: none;
    background: linear-gradient(135deg, #f0e6d8, #e8dccf);
    color: var(--ink);
    font-size: 1.6rem;
    cursor: pointer;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid var(--line);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
}

.pdf-viewer-modal__close:hover {
    background: linear-gradient(135deg, var(--accent), #d14a1f);
    color: white;
    transform: rotate(90deg);
    box-shadow: 0 4px 12px rgba(191, 92, 43, 0.25);
}

.pdf-viewer-modal__content {
    flex: 1;
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #faf5ed 0%, #f5ede0 100%);
    padding: 16px;
    position: relative;
    min-height: 400px;
}

#pdf-canvas {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    display: block;
}

/* Scrollbar styling for PDF modal */
.pdf-viewer-modal__content::-webkit-scrollbar {
    width: 10px;
}

.pdf-viewer-modal__content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}

.pdf-viewer-modal__content::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 5px;
    transition: background 0.3s;
}

.pdf-viewer-modal__content::-webkit-scrollbar-thumb:hover {
    background: var(--accent-dark);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pdf-viewer-modal {
        padding: 4px;
    }

    .pdf-viewer-modal__dialog {
        width: min(100%, 98vw);
        height: min(100vh - 20px, 94vh);
        border-radius: 12px;
    }

    .pdf-viewer-modal__header {
        flex-wrap: wrap;
        padding: 12px 16px;
        gap: 8px;
    }

    .pdf-viewer-modal__header h2 {
        font-size: 1rem;
        flex: 0 0 100%;
    }

    .pdf-viewer-controls {
        flex: 0 0 100%;
        gap: 6px;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .pdf-viewer-zoom-level {
        font-size: 0.8rem;
        padding: 4px 6px;
        min-width: 55px;
    }

    .pdf-viewer-btn {
        padding: 8px 10px;
        font-size: 0.75rem;
        flex-shrink: 0;
    }

    .pdf-viewer-page-info {
        font-size: 0.8rem;
        padding: 4px 6px;
        gap: 3px;
        flex-shrink: 0;
    }

    .pdf-viewer-page-info input {
        width: 35px;
        padding: 4px 4px;
        font-size: 0.8rem;
    }

    .pdf-viewer-modal__close {
        padding: 6px 8px;
        font-size: 1.2rem;
    }

    .pdf-viewer-modal__content {
        padding: 8px;
        min-height: 300px;
    }
}

.pdf-viewer-modal__content {
    flex: 1;
    overflow: hidden;
}

/* Disable print in PDF */
@media print {
    .pdf-viewer-modal {
        display: none !important;
    }
}

.split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 24px;
}

.highlight-box,
.form-box,
.post-single {
    padding: 24px;
}

.post-excerpt {
    font-weight: 500;
    color: var(--muted);
}

.post-content {
    margin-top: 16px;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px 12px;
    margin: 6px 0 14px;
    font: inherit;
    background: #fff;
}

.alert {
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 0.92rem;
}

.alert.success {
    background: #e4f4e7;
    color: #1e6d30;
}

.alert.error {
    background: #f7e2e2;
    color: #8c2424;
}

.site-footer {
    margin-top: 30px;
    padding: 56px 0 26px;
    background:
        radial-gradient(1200px 280px at 10% -10%, rgba(191, 92, 43, 0.22), transparent 60%),
        radial-gradient(900px 260px at 90% -20%, rgba(255, 198, 128, 0.16), transparent 56%),
        linear-gradient(145deg, #1b1612 0%, #231a13 45%, #2b1f16 100%);
    color: #f5e8d8;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(191, 92, 43, 0), rgba(191, 92, 43, 0.9), rgba(191, 92, 43, 0));
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.site-footer:hover {
    box-shadow: 0 -12px 36px rgba(0, 0, 0, 0.22);
}

.site-footer:hover::before {
    opacity: 1;
}

.hero > div,
.hero-slider,
.section-head,
.card,
.blog-card,
.project-card,
.team-card,
.testimonial-card,
.highlight-box,
.form-box,
.post-single,
.split > div {
    will-change: transform, opacity;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.reveal-scale {
    transform: translateY(20px) scale(0.97);
}

.reveal.reveal-mask {
    transform: none;
    clip-path: inset(0 0 18% 0 round 20px);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal.reveal-mask.is-visible {
    animation: revealMask 0.85s ease both;
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

.footer-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    position: relative;
    z-index: 1;
}

.footer-grid--enhanced {
    gap: 28px;
}

.footer-col h4 {
    margin: 0 0 12px;
    color: #ffe3c2;
    font-size: 1.02rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.02em;
}

.footer-col {
    padding: 14px 14px 12px;
    border: 1px solid transparent;
    border-radius: 12px;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.footer-col:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 215, 171, 0.22);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.footer-brand h3 {
    margin: 0 0 12px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.35rem, 2vw, 1.6rem);
    color: #fff3e4;
}

.footer-col p {
    margin: 0 0 7px;
    color: #ddcab6;
    font-size: 0.96rem;
}

.footer-founder {
    margin-top: 10px;
    color: #f2d4b2;
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 9px;
}

.footer-links a,
.footer-col a {
    color: #e8d2bb;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover,
.footer-col a:hover {
    color: #fff7ee;
    transform: translateX(2px);
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-social a {
    border: 1px solid rgba(255, 213, 166, 0.32);
    border-radius: 999px;
    padding: 6px 11px;
    font-size: 0.83rem;
    font-weight: 500;
    color: #ffe5cb;
    background: rgba(255, 255, 255, 0.02);
    line-height: 1.2;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    border-color: rgba(255, 213, 166, 0.72);
    background: rgba(255, 213, 166, 0.14);
    color: #fffaf5;
}

.footer-hours {
    margin-top: 18px;
}

.copyright {
    text-align: center;
    margin-top: 20px;
    color: #c7b29b;
    letter-spacing: 0.015em;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 15px;
}

/* Admin */
.admin-body {
    background: #f7f4ef;
}

.admin-shell {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background: #201a16;
    color: #f5ece2;
    padding: 24px 16px;
}

.admin-sidebar a {
    display: block;
    color: #e9ddcf;
    text-decoration: none;
    padding: 9px 10px;
    border-radius: 8px;
    margin-bottom: 6px;
}

.admin-sidebar a.active,
.admin-sidebar a:hover {
    background: #3c3029;
}

.admin-main {
    padding: 24px;
}

.table-wrap {
    overflow-x: auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}

.admin-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 18px;
    margin-bottom: 20px;
}

.inline-actions {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .topbar-addr,
    .topbar-sep {
        display: none;
    }

    .topbar-wrap {
        justify-content: space-between;
    }
}

@media (max-width: 900px) {
    .hero,
    .split,
    .about-hero {
        grid-template-columns: 1fr;
    }

    .hero-slider,
    .hero-slide img {
        min-height: 420px;
    }

    .hero-slide-overlay {
        padding: 20px 0;
    }

    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: sticky;
        top: 0;
        z-index: 30;
    }

    .about-visual {
        min-height: auto;
    }

    .about-visual__frame {
        grid-template-columns: 1fr;
    }

    .about-visual__panel--tall {
        min-height: 360px;
    }

    .about-visual__stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .team-card img {
        height: 240px;
    }
}

@media (max-width: 600px) {
    body:not(.admin-body) {
        text-align: center;
        font-weight: 600;
    }

    body:not(.admin-body) p,
    body:not(.admin-body) a,
    body:not(.admin-body) li,
    body:not(.admin-body) span,
    body:not(.admin-body) label,
    body:not(.admin-body) input,
    body:not(.admin-body) textarea,
    body:not(.admin-body) select,
    body:not(.admin-body) button {
        font-weight: 600;
    }

    body:not(.admin-body) h1,
    body:not(.admin-body) h2,
    body:not(.admin-body) h3,
    body:not(.admin-body) h4,
    body:not(.admin-body) h5,
    body:not(.admin-body) h6 {
        font-weight: 700;
    }

    body:not(.admin-body) .section-head {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    body:not(.admin-body) .hero-slide-actions,
    body:not(.admin-body) .hero-actions,
    body:not(.admin-body) .project-actions,
    body:not(.admin-body) .topbar-left,
    body:not(.admin-body) .topbar-right,
    body:not(.admin-body) .footer-social,
    body:not(.admin-body) .inline-actions {
        justify-content: center;
    }

    .hero-slider,
    .hero-slide img {
        min-height: 360px;
    }

    .hero-note {
        font-size: 0.92rem;
    }

    .project-actions .btn {
        width: 100%;
    }

    .project-filter {
        justify-content: center;
    }

    .enquiry-modal {
        padding: 12px;
    }

    .enquiry-modal__dialog {
        width: 100%;
        max-height: calc(100dvh - 24px);
        padding: 22px 18px;
        border-radius: 16px;
    }

    .about-visual__stack {
        grid-template-columns: 1fr;
    }

    .team-grid {
        gap: 16px;
    }

    .team-card__media {
        padding: 10px 10px 0;
    }

    .team-card img {
        height: 225px;
    }

    .team-content {
        padding: 14px 14px 16px;
    }

    .team-name {
        font-size: 1.1rem;
    }

    .team-actions {
        justify-content: center;
        gap: 8px;
    }

    .faq-grid {
        gap: 11px;
    }

    .faq-item summary {
        padding: 14px 42px 14px 14px;
        font-size: 0.97rem;
    }

    .faq-item p {
        padding: 0 14px 14px;
        font-size: 0.93rem;
    }

    .site-footer {
        padding: 40px 0 20px;
        background:
            radial-gradient(620px 220px at 0% -5%, rgba(191, 92, 43, 0.24), transparent 60%),
            linear-gradient(165deg, #1b1510 0%, #241a12 55%, #2c1f15 100%);
    }

    .footer-grid--enhanced {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .footer-brand h3 {
        font-size: 1.4rem;
        line-height: 1.25;
    }

    .footer-col h4 {
        font-size: 1.06rem;
        margin-bottom: 10px;
    }

    .footer-col p,
    .footer-links a,
    .footer-col a {
        font-size: 0.98rem;
        line-height: 1.55;
        color: #f3e3d1;
    }

    .footer-social {
        gap: 10px;
    }

    .footer-social a {
        padding: 7px 12px;
        font-size: 0.9rem;
    }

    .copyright {
        font-size: 0.84rem;
        line-height: 1.5;
        margin-top: 16px;
        color: #ddcab5;
    }

    .about-visual__badge {
        position: static;
        justify-self: start;
        margin-top: 4px;
    }

    /* Counter Section Tablet */
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Location Slider Tablet */
    .location-slide {
        flex: 0 0 calc(33.333% - 11px);
    }
}

@media (max-width: 760px) {
    .menu-toggle {
        display: flex;
    }

    .site-nav {
        position: absolute;
        top: 76px;
        right: 4%;
        flex-direction: column;
        background: #fff7ef;
        border: 1px solid var(--line);
        border-radius: 12px;
        padding: 12px;
        width: 220px;
        display: none;
    }

    .site-nav.open {
        display: flex;
    }

    /* Mobile dropdown menu styles */
    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown > button {
        width: 100%;
        justify-content: space-between;
        padding: 12px 12px;
        border-radius: 8px;
        font-weight: 500;
    }

    .nav-dropdown > button[aria-expanded="true"] {
        background-color: rgba(206, 103, 29, 0.08);
        color: var(--accent-dark);
    }

    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 1px solid #e8e0d5;
        background: linear-gradient(135deg, #faf7f2 0%, #fff9f5 100%);
        border-radius: 8px;
        min-width: auto;
        margin: 6px 0 0 0;
        display: none;
        padding: 6px 0;
    }

    .nav-dropdown > button[aria-expanded="true"] ~ .nav-dropdown-menu {
        display: block;
        animation: slideDown 0.25s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-dropdown-header {
        padding: 10px 16px 8px 16px;
        border-bottom: 1px solid #e8e0d5;
    }

    .nav-dropdown-all {
        font-size: 0.9rem;
        padding: 8px 12px;
        border-radius: 6px;
        display: inline-block;
    }

    .nav-dropdown-all:hover {
        background: var(--accent-dark);
        color: white;
    }

    .nav-dropdown-group {
        display: flex;
        flex-direction: column;
    }

    .nav-dropdown-title {
        padding: 12px 16px;
        font-size: 0.9rem;
        border-bottom: 1px solid transparent;
    }

    .nav-dropdown-title:hover {
        background-color: rgba(206, 103, 29, 0.06);
        padding-left: 18px;
    }

    .nav-dropdown-submenu {
        flex-direction: column;
        border-left: 4px solid var(--accent-dark);
        width: 100%;
        background: white;
        padding: 4px 0;
    }

    .nav-dropdown-submenu a {
        padding: 10px 16px 10px 24px;
        font-size: 0.85rem;
        color: #666;
    }

    .nav-dropdown-submenu a::before {
        content: "›";
        position: absolute;
        left: 16px;
        color: var(--accent-dark);
    }

    .nav-dropdown-submenu a:hover {
        background-color: rgba(206, 103, 29, 0.05);
        padding-left: 28px;  
    }
}

/* Responsive Projects Layout */
@media (max-width: 1024px) {
    .projects-layout {
        grid-template-columns: 240px 1fr;
        gap: 24px;
    }

    .projects-sidebar {
        top: 80px;
    }
}

@media (max-width: 768px) {
    .projects-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .projects-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 16px;
        margin-bottom: 16px;
    }

    .projects-search {
        grid-column: 1/-1;
    }

    .filter-group {
        padding: 16px;
    }

    .filter-group-title {
        font-size: 0.95rem;
    }

    .checkbox-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .projects-sidebar {
        grid-template-columns: 1fr;
    }

    .projects-search-input {
        padding: 10px 14px 10px 36px;
        font-size: 0.9rem;
    }

    .search-icon {
        left: 10px;
        width: 16px;
        height: 16px;
    }

    .filter-group {
        padding: 14px;
    }

    .filter-checkbox {
        padding: 2px 0;
    }

    .filter-checkbox input[type="checkbox"] {
        width: 18px;
        height: 18px;
    }

    /* Counter Section Mobile */
    .counter-section {
        padding: 40px 20px;
        border-radius: 16px;
    }

    .counter-grid {
        gap: 20px;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .counter-card {
        padding: 20px 15px;
        border-radius: 12px;
    }

    .counter-icon {
        font-size: 2rem;
    }

    .counter-number {
        font-size: 2.5rem;
        margin: 12px 0;
    }

    .counter-card h3 {
        font-size: 1rem;
        margin: 8px 0 6px;
    }

    .counter-card p {
        font-size: 0.85rem;
    }

    /* Location Slider Mobile */
    .location-slider-wrapper {
        gap: 8px;
    }

    .location-slide {
        flex: 0 0 calc(50% - 8px);
        min-width: 130px;
        padding: 20px 15px;
        border-radius: 10px;
    }

    .location-icon {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .location-slide h4 {
        font-size: 0.9rem;
        margin: 8px 0 4px;
    }

    .location-slide p {
        font-size: 0.75rem;
    }

    .location-slider-btn {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
}

/* Modern Home Page Redesign Styles */

/* Section Enhancement */
.section-subtitle {
    color: var(--muted);
    font-size: 1rem;
    margin-top: 8px !important;
    font-weight: 400;
}

/* Services Section Modern */
.services-section-modern {
    background: linear-gradient(135deg, #fff9f5 0%, #faf7f2 100%);
    border-radius: 20px;
    padding: 60px 40px;
}

.services-grid-modern {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: 40px;
}

.service-card-modern {
    background: white;
    padding: 40px 28px;
    border-radius: 16px;
    border: 1px solid #e4d9cc;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    animation: slideUp 0.6s ease-out backwards;
}

.service-card-modern:hover {
    transform: translateY(-12px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(191, 92, 43, 0.15);
}

.service-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(206, 103, 29, 0.1) 0%, rgba(143, 62, 23, 0.05) 100%);
    border-radius: 14px;
    font-size: 2.2rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-card-icon {
    background: linear-gradient(135deg, rgba(206, 103, 29, 0.2) 0%, rgba(143, 62, 23, 0.1) 100%);
    transform: scale(1.1);
}

.service-card-modern h3 {
    margin: 16px 0 12px;
    font-size: 1.2rem;
    color: var(--ink);
}

.service-card-modern p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 12px 0;
}

.service-link {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    margin-top: 16px;
    transition: all 0.2s ease;
}

.service-link:hover {
    color: var(--accent-dark);
    transform: translateX(4px);
}

/* Featured Projects Grid */
.featured-projects-section {
    position: relative;
}

.featured-projects-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    margin-top: 40px;
}

.featured-project-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e4d9cc;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideUp 0.6s ease-out backwards;
}

.featured-project-card:hover {
    border-color: var(--accent);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
}

.featured-project-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #f0f0f0;
}

.featured-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-project-card:hover .featured-project-image img {
    transform: scale(1.06);
}

.featured-project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(206, 103, 29, 0) 0%, rgba(143, 62, 23, 0.3) 100%);
    display: flex;
    align-items: flex-start;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-project-card:hover .featured-project-overlay {
    opacity: 1;
}

.featured-project-badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-project-content {
    padding: 24px;
}

.featured-project-content h3 {
    margin: 0 0 12px;
    font-size: 1.15rem;
    color: var(--ink);
}

.featured-project-meta {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.featured-project-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.featured-project-actions {
    display: flex;
    gap: 10px;
}

.featured-project-actions .btn {
    flex: 1;
}

/* Blog Section Modern */
.blog-section-modern {
    position: relative;
}

.blog-grid-modern {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-top: 40px;
}

.blog-card-modern {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e4d9cc;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideUp 0.6s ease-out backwards;
    display: flex;
    flex-direction: column;
}

.blog-card-modern:hover {
    border-color: var(--accent);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
}

.blog-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card-modern:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-posted-date {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent);
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-card-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-modern h3 {
    margin: 0 0 12px;
    font-size: 1.15rem;
    color: var(--ink);
    line-height: 1.3;
}

.blog-card-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 16px;
    flex-grow: 1;
}

.blog-read-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.blog-read-link:hover {
    color: var(--accent-dark);
    transform: translateX(4px);
}

/* Team Section Modern */
.team-section-modern {
    position: relative;
}

.team-grid-modern {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin-top: 40px;
}

.team-card-modern {
    text-align: center;
    animation: slideUp 0.6s ease-out backwards;
}

.team-card-image {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    background: #f0f0f0;
    margin-bottom: 20px;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card-modern:hover .team-card-image img {
    transform: scale(1.08);
}

.team-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card-modern:hover .team-card-overlay {
    opacity: 1;
}

.team-social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social-link {
    padding: 8px 16px;
    background: white;
    color: var(--accent);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}

.team-card-info h3 {
    margin: 0 0 6px;
    font-size: 1.2rem;
    color: var(--ink);
}

.team-designation {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.team-bio {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Testimonials Section Modern */
.testimonials-section-modern {
    background: linear-gradient(135deg, #fff9f5 0%, #faf7f2 100%);
    border-radius: 20px;
    padding: 60px 40px;
}

.testimonials-grid-modern {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-top: 40px;
}

.testimonial-card-modern {
    background: white;
    padding: 28px;
    border-radius: 14px;
    border: 1px solid #e4d9cc;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card-modern:hover {
    border-color: var(--accent);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-6px);
}

.testimonial-stars {
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid #f0f0f0;
    padding-top: 16px;
}

.author-name {
    margin: 0;
    font-weight: 600;
    color: var(--ink);
    font-size: 1rem;
}

.author-role {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 0.85rem;
}

/* CTA Section Modern */
.cta-section-modern {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
    padding: 80px 40px;
    margin-top: 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-section-modern h2 {
    color: white;
    margin-bottom: 12px;
    font-size: 2.5rem;
}

.cta-section-modern p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-outline {
    border: 2px solid var(--accent);
    background: transparent;
    color: var(--accent);
}

.btn-primary-outline:hover {
    background: var(--accent);
    color: white;
}

.btn-outline {
    border: 2px solid white;
    background: transparent;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--accent-dark);
}

/* Responsive */
@media (max-width: 900px) {
    .services-section-modern {
        padding: 40px 20px;
        border-radius: 16px;
    }

    .services-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .service-card-modern {
        padding: 30px 20px;
    }

    .featured-projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .testimonials-section-modern {
        padding: 40px 20px;
        border-radius: 16px;
    }

    .team-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .cta-section-modern {
        padding: 60px 20px;
    }

    .cta-section-modern h2 {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .services-section-modern {
        padding: 30px 16px;
    }

    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card-modern {
        padding: 24px 16px;
    }

    .featured-project-card {
        border-radius: 12px;
    }

    .featured-project-image {
        height: 180px;
    }

    .featured-project-content {
        padding: 16px;
    }

    .blog-card-modern {
        border-radius: 12px;
    }

    .blog-card-image {
        height: 150px;
    }

    .blog-card-content {
        padding: 16px;
    }

    .team-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 16px;
    }

    .team-card-image {
        height: 180px;
        margin-bottom: 12px;
    }

    .testimonials-section-modern {
        padding: 30px 16px;
    }

    .testimonials-grid-modern {
        grid-template-columns: 1fr;
    }

    .cta-section-modern {
        padding: 40px 16px;
    }

    .cta-section-modern h2 {
        font-size: 1.6rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .reveal,
    .reveal.is-visible {
        opacity: 1;
        transform: none;
    }

    .reveal.reveal-mask,
    .reveal.reveal-mask.is-visible {
        clip-path: none;
    }
}
/* ── Floating Contact Buttons ── */
/* ── Floating Contact Buttons ── */

.floating-btns {
    position: fixed;
    bottom: 28px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.floating-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    flex-shrink: 0;
}

.floating-btn svg {
    flex-shrink: 0;
}

.floating-btn__label {
    position: absolute;
    right: calc(100% + 12px);
    background: rgba(20, 12, 6, 0.88);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 11px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    letter-spacing: 0.02em;
}

.floating-btn:hover .floating-btn__label {
    opacity: 1;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.32);
}

.floating-btn--call {
    background: var(--accent, #ff6b00);
}

.floating-btn--call:hover {
    background: var(--accent-dark, #e55d00);
}

.floating-btn--wa {
    background: #25D366;
}

.floating-btn--wa:hover {
    background: #1ebe5d;
    box-shadow: 0 8px 26px rgba(37, 211, 102, 0.4);
}

@media (max-width: 600px) {
    .floating-btns {
        bottom: 16px;
        right: 14px;
        gap: 10px;
    }

    .floating-btn {
        width: 46px;
        height: 46px;
    }
}