/* ===== Custom Premium Scrollbar ===== */
::-webkit-scrollbar {
    width: 14px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-left: 1px solid rgba(212, 165, 116, 0.2);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #d4a574 0%, #c9a961 50%, #b89850 100%);
    border-radius: 10px;
    border: 3px solid #1a1a1a;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #e5b685 0%, #d4a574 50%, #c9a961 100%);
    box-shadow: 0 0 10px rgba(212, 165, 116, 0.5);
    border: 2px solid #1a1a1a;
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, #c9a961 0%, #b89850 100%);
}

/* ===== CSS Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: #d4a574 #1a1a1a;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #d4a574;
    --accent-gold: #c9a961;
    --text-dark: #0f0f0f;
    --text-light: #6b6b6b;
    --bg-light: #1c1c1c;
    --bg-medium: #252525;
    --white: #ffffff;
    --off-white: #f5f5f5;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #e0e0e0;
    line-height: 1.7;
    overflow-x: hidden;
    background-color: #0f0f0f;
}

::selection {
    background: #d4a574;
    color: #ffffff;
}

::-moz-selection {
    background: #d4a574;
    color: #ffffff;
}

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

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid rgba(212, 165, 116, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.logo-sub {
    font-size: 0.75rem;
    color: var(--secondary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: #e0e0e0;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4a574 0%, #c9a961 100%);
    box-shadow: 0 2px 8px rgba(212, 165, 116, 0.3);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: #ffffff;
    transition: var(--transition);
}

/* ===== Hero Section with Slideshow ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    /* background-attachment: fixed removed — kills mobile scroll perf */
    opacity: 0;
    transition: opacity 2s ease-in-out;
    animation: kenburns 20s ease-in-out infinite;
    will-change: opacity, transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

@keyframes kenburns {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }
.hero-slide:nth-child(4) { animation-delay: 18s; }

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(15, 15, 15, 0.75) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 400;
    letter-spacing: 6px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85), 0 0 24px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.hero-description {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #d4a574 0%, #c9a961 100%);
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 0;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e5b685 0%, #d4a574 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 165, 116, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background-color: var(--white);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { top: 8px; opacity: 1; }
    50%      { top: 20px; opacity: 0; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 1rem;
}

.title-underline {
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 0 auto;
}

/* ===== About Section ===== */
.about {
    padding: 8rem 0;
    background-color: #141414;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-intro {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.about-description {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 36px;
    height: 36px;
    background-color: var(--secondary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    font-weight: 600;
}

.feature-text h4 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.feature-text p {
    color: #9a9a9a;
    font-size: 0.95rem;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: var(--shadow-lg);
}

.image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: var(--transition);
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

/* ===== Services Section ===== */
.services {
    padding: 8rem 0;
    background-color: #0f0f0f;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.service-card {
    background-color: #1a1a1a;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(212, 165, 116, 0.2);
    border: 1px solid rgba(212, 165, 116, 0.3);
}

.service-image {
    overflow: hidden;
    height: 280px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-content p {
    color: #b0b0b0;
    line-height: 1.7;
}

/* ===== Process Section ===== */
.process {
    padding: 8rem 0;
    background-color: #141414;
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(212, 165, 116, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(212, 165, 116, 0.04) 0%, transparent 45%);
    pointer-events: none;
}

.process .container {
    position: relative;
    z-index: 1;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    counter-reset: step;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(212, 165, 116, 0.4) 15%,
        rgba(212, 165, 116, 0.4) 85%,
        transparent 100%);
    z-index: 0;
}

.process-step {
    background: rgba(26, 26, 26, 0.7);
    border: 1px solid rgba(212, 165, 116, 0.15);
    border-radius: 4px;
    padding: 2.5rem 1.75rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.process-step:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 165, 116, 0.4);
    box-shadow: 0 12px 35px rgba(212, 165, 116, 0.18);
}

.process-number {
    width: 76px;
    height: 76px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4a574 0%, #c9a961 100%);
    color: #0f0f0f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 6px 22px rgba(212, 165, 116, 0.35);
    border: 4px solid #141414;
}

.process-step h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.85rem;
    letter-spacing: 0.5px;
}

.process-step p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ===== Gallery Section ===== */
.gallery {
    padding: 8rem 0;
    background-color: #0f0f0f;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

/* Instagram embed mode — 2-column wide layout for full-size photos */
.gallery-grid--instagram {
    grid-template-columns: repeat(auto-fill, minmax(540px, 1fr));
    gap: 2.5rem;
    align-items: start;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

.gallery-item--ig {
    height: auto;
    overflow: hidden;
    cursor: default;
    position: relative;
    padding: 6px;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, rgba(212, 165, 116, 0.65), rgba(184, 152, 80, 0.25)) border-box;
    border: 1px solid transparent;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(212, 165, 116, 0.10);
    transition: var(--transition);
}

.gallery-item--ig:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 56px rgba(212, 165, 116, 0.25), 0 0 0 1px rgba(212, 165, 116, 0.4);
}

.gallery-item--ig iframe {
    display: block;
    width: 100%;
    height: 1080px;
    border: 0;
    border-radius: 4px;
    background: #fff;
}

@media (max-width: 1100px) {
    .gallery-grid--instagram {
        grid-template-columns: 1fr;
        max-width: 560px;
    }
}

@media (max-width: 600px) {
    .gallery-item--ig iframe { height: 920px; }
}

@media (max-width: 420px) {
    .gallery-item--ig iframe { height: 820px; }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 15, 15, 0.92) 0%, rgba(15, 15, 15, 0.2) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 400;
    font-family: 'Cormorant Garamond', serif;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ===== Gallery Footer & Social Links ===== */
.gallery-footer {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.gallery-footer p {
    color: #b0b0b0;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.social-links-gallery {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link-item {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #d4a574 0%, #c9a961 100%);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.social-link-item:hover {
    background: linear-gradient(135deg, #e5b685 0%, #d4a574 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 165, 116, 0.5);
}

.social-link-item svg {
    width: 24px;
    height: 24px;
}

/* ===== Contact Section ===== */
.contact {
    padding: 8rem 0;
    background-color: #141414;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #b0b0b0;
    line-height: 1.6;
}

.contact-details a {
    color: #b0b0b0;
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--secondary-color);
}

/* ===== Google Maps Section ===== */
.contact-map-wrapper {
    background-color: #1a1a1a;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.contact-map-wrapper h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.map-description {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.map-container {
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    display: block;
    width: 100%;
}

.btn-map {
    display: inline-block;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #d4a574 0%, #c9a961 100%);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.btn-map:hover {
    background: linear-gradient(135deg, #e5b685 0%, #d4a574 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 165, 116, 0.4);
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #141414 100%);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.7);
    position: relative;
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #d4a574 50%, transparent 100%);
}

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

.footer-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #d4a574 0%, #e5b685 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #d4a574 0%, #e5b685 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.footer-tagline {
    font-style: italic;
    margin-top: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.social-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
    background: rgba(212, 165, 116, 0.15);
    border-color: rgba(212, 165, 116, 0.4);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.2);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ===== Mobile Optimisations ===== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 78px;
        flex-direction: column;
        background-color: rgba(15, 15, 15, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: 2.5rem 0;
        gap: 2rem;
        border-top: 1px solid rgba(212, 165, 116, 0.2);
    }

    .nav-menu.active { left: 0; }

    .nav-link {
        padding: 0.8rem 1.5rem;
        font-size: 1rem !important;
    }

    .hamburger { display: flex; }

    .hamburger.active span:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }

    .hero {
        min-height: 100vh;
        height: auto;
        padding: 100px 20px 60px;
    }

    .hero-title { font-size: 2.5rem !important; letter-spacing: 4px !important; line-height: 1.2; }
    .hero-subtitle { font-size: 1.1rem !important; letter-spacing: 2px !important; }
    .hero-description { font-size: 1rem !important; padding: 0 1rem; }

    .btn-primary { padding: 1.2rem 2.5rem; font-size: 0.9rem; }

    .about, .services, .process, .gallery, .contact { padding: 5rem 0 !important; }

    .section-title { font-size: 2.2rem !important; margin-bottom: 0.5rem; }
    .section-header { margin-bottom: 3rem !important; }

    .about-content, .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem !important;
    }

    .about-intro { font-size: 1.5rem !important; line-height: 1.4; }
    .about-description { font-size: 1rem; line-height: 1.8; }

    .image-wrapper img { height: 400px !important; }

    .services-grid, .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem !important;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .process-grid::before { display: none; }

    .service-card { margin-bottom: 1rem; }
    .service-content { padding: 1.8rem !important; }
    .service-content h3 { font-size: 1.6rem !important; }

    .gallery-item { height: 280px !important; }

    .contact-item { gap: 1.2rem; }
    .contact-icon { width: 55px; height: 55px; }
    .contact-details h4 { font-size: 1.3rem; }
    .contact-details p { font-size: 1rem; }

    .contact-map-wrapper { padding: 2rem !important; }
    .map-container iframe { height: 350px !important; }

    .footer { padding: 3rem 0 1.5rem !important; }
    .footer-content { grid-template-columns: 1fr; gap: 2.5rem !important; }
    .footer-section h3 { font-size: 1.6rem !important; }
    .footer-section h4 { font-size: 1.2rem !important; }
    .footer-section p { font-size: 0.95rem; }
}

@media (max-width: 600px) {
    .container { padding: 0 1.2rem !important; }
    .nav-container { padding: 1rem 1.2rem !important; }

    .logo-img { height: 38px !important; }
    .logo-main { font-size: 1rem !important; letter-spacing: 0.5px !important; }
    .logo-sub { font-size: 0.65rem !important; }

    .hero { padding: 80px 15px 50px; }
    .hero-title { font-size: 1.8rem !important; letter-spacing: 2px !important; }
    .hero-subtitle { font-size: 0.95rem !important; letter-spacing: 1.5px !important; }
    .hero-description { font-size: 0.9rem !important; }

    .btn-primary { padding: 1rem 2rem; font-size: 0.85rem; letter-spacing: 1px; }

    .section-title { font-size: 1.8rem !important; }
    .section-subtitle { font-size: 0.8rem !important; }

    .about-intro { font-size: 1.3rem !important; }
    .about-description { font-size: 0.95rem; }
    .feature-text h4 { font-size: 1rem !important; }
    .feature-text p { font-size: 0.9rem !important; }

    .service-content h3 { font-size: 1.4rem !important; }
    .service-content p { font-size: 0.95rem; }

    .process-grid { grid-template-columns: 1fr; }
    .process-step { padding: 2rem 1.5rem; }
    .process-number { width: 64px; height: 64px; font-size: 1.5rem; }

    .gallery-item { height: 220px !important; }

    .contact-icon { width: 48px !important; height: 48px !important; }
    .contact-details h4 { font-size: 1.1rem !important; }
    .contact-details p { font-size: 0.95rem !important; }

    .map-container iframe { height: 300px !important; }
    .btn-map { font-size: 0.9rem; padding: 0.9rem 1.5rem; }

    .social-link { padding: 0.7rem 1rem !important; font-size: 0.95rem; }
}

@media (max-width: 968px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 100px 20px 40px;
    }
    .hero-title { font-size: 2rem !important; }
    .scroll-indicator { display: none; }
}

@media (hover: none) and (pointer: coarse) {
    .nav-link, .btn-primary, .btn-map, .social-link {
        -webkit-tap-highlight-color: rgba(212, 165, 116, 0.2);
    }
    .service-card:active, .gallery-item:active, .process-step:active {
        transform: scale(0.98);
    }
}

/* ===== Mobile performance optimizations ===== */
/* Disable expensive Ken Burns animation on small devices to keep 60fps */
@media (max-width: 768px) {
    .hero-slide { animation: none; }
}
@media (prefers-reduced-motion: reduce) {
    .hero-slide { animation: none; transition: none; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Skip rendering offscreen sections (huge mobile win) */
.about, .services, .process, .gallery, .contact {
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
}

/* Smoother card transforms */
.service-card, .gallery-item, .process-step {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Kill heavy hover transforms on touch devices */
@media (hover: none) {
    .service-card:hover, .gallery-item:hover, .gallery-item--ig:hover, .process-step:hover {
        transform: none !important;
        box-shadow: inherit;
    }
}

/* ── Project tiles (server-driven gallery) ───────────────────────── */
button.gallery-item--project {
    border: 0;
    padding: 0;
    background: none;
    cursor: pointer;
    font: inherit;
    color: inherit;
    text-align: left;
    width: 100%;
}
.gallery-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: #888;
    padding: 3rem 1rem;
    font-style: italic;
}

/* ── Lightbox carousel ───────────────────────────────────────────── */
.mz-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1rem;
    overscroll-behavior: contain;
}
.mz-lightbox.is-open { display: flex; }
body.mz-no-scroll { overflow: hidden; }

.mz-lb-stage {
    position: relative;
    max-width: min(1400px, 96vw);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}
.mz-lb-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    background: #111;
    user-select: none;
    -webkit-user-drag: none;
    transition: opacity 0.18s ease;
    will-change: opacity;
}
.mz-lb-img.is-loading { opacity: 0.35; }
.mz-lb-stage { touch-action: pan-y pinch-zoom; }
.mz-lb-meta {
    color: #fff;
    text-align: center;
    max-width: 90vw;
}
.mz-lb-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.15rem;
    letter-spacing: 0.02em;
}
.mz-lb-counter {
    margin: 0;
    font-size: 0.85rem;
    color: #bbb;
    letter-spacing: 0.05em;
}

.mz-lb-close, .mz-lb-prev, .mz-lb-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.15s, transform 0.15s;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    line-height: 1;
    z-index: 2;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}
.mz-lb-close:hover, .mz-lb-prev:hover, .mz-lb-next:hover {
    background: rgba(255, 255, 255, 0.25);
}
.mz-lb-close {
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
}
.mz-lb-prev, .mz-lb-next {
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mz-lb-prev { left: 1rem; }
.mz-lb-next { right: 1rem; }

@media (max-width: 640px) {
    .mz-lb-prev, .mz-lb-next {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    .mz-lb-prev { left: 0.5rem; }
    .mz-lb-next { right: 0.5rem; }
    .mz-lb-close { top: 0.5rem; right: 0.5rem; width: 40px; height: 40px; }
    .mz-lb-img { max-height: 70vh; }
}
