/* ============================================
   VAN GURP - LIGHT LUXURY CRAFTSMAN AESTHETIC
   Clean, elegant, warm
============================================ */

:root {
    --gold: #C6A962;
    --gold-light: #E8D5A3;
    --gold-dark: #8B7355;
    --charcoal: #2A2A2A;
    --ink: #1A1A1A;
    --smoke: #F8F6F3;
    --ash: #E8E4DD;
    --cream: #FFFDF9;
    --paper: #F5F0E8;
    --white: #FFFFFF;
    --whatsapp: #25D366;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6); }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
}

/* ============================================
   HEADER
============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 32px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
    background: rgba(255, 253, 249, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-block;
}

.logo img {
    height: clamp(36px, 5vw, 50px);
    width: auto;
    display: block;
}

.main-nav {
    display: flex;
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
}

.main-nav a {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.main-nav a.header-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--ink);
    padding: 14px 28px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-transform: none;
}

.main-nav a.header-contact:hover {
    background: var(--gold-dark);
    color: var(--cream);
    transform: translateY(-2px);
}

.main-nav a.header-contact svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex-shrink: 0;
}

.main-nav a.header-contact::after {
    display: none;
}

/* ============================================
   HERO
============================================ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(100px, 15vh, 160px) clamp(24px, 5vw, 80px);
    padding-left: calc(max(0px, (100vw - 1400px) / 2) + clamp(24px, 5vw, 80px));
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.3s;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.5s;
}

.hero-title em {
    font-style: italic;
    color: var(--gold-dark);
}

.hero-desc {
    font-size: 1.1rem;
    max-width: 400px;
    color: var(--charcoal);
    opacity: 0.7;
    margin-bottom: 48px;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.7s;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.9s;
}

.hero-cta .line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.hero-cta:hover .line {
    width: 100px;
}

.hero-image {
    position: relative;
    overflow: hidden;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--cream) 0%, transparent 50%);
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
    animation-delay: 0.2s;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.5;
}

.hero-scroll .bar {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: pulse 2s ease infinite;
}

/* ============================================
   STATEMENT
============================================ */
.statement {
    padding: clamp(100px, 15vh, 180px) 0;
    background: var(--paper);
    position: relative;
}

.statement::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(200px, 30vw, 400px);
    position: absolute;
    top: -50px;
    left: 5%;
    color: var(--ash);
    line-height: 1;
    pointer-events: none;
}

.statement-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    line-height: 1.3;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    color: var(--charcoal);
}

.statement-text em {
    font-style: italic;
    color: var(--gold-dark);
}

/* ============================================
   SECTION HEADER
============================================ */
.section-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 40px;
    margin-bottom: 80px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--ash);
}

.section-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    color: var(--gold-dark);
    letter-spacing: 0.2em;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    color: var(--charcoal);
}

.section-link {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ============================================
   SERVICES
============================================ */
.services {
    padding: clamp(80px, 12vh, 140px) 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--ash);
}

.services-grid--gallery {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid--gallery .service-item {
    padding: clamp(20px, 3vw, 36px);
}


@media (max-width: 900px) {
    .services-grid--gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid--gallery {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-grid--gallery {
        grid-template-columns: 1fr;
    }
}

.service-item {
    background: var(--white);
    padding: clamp(40px, 6vw, 80px);
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

a.service-item {
    cursor: default;
    text-decoration: none;
    color: inherit;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--paper);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover::before {
    transform: translateY(0);
}

.service-item > * {
    position: relative;
    z-index: 1;
}

.service-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: var(--ash);
    line-height: 1;
    margin-bottom: 24px;
    transition: color 0.4s ease;
}

.service-item:hover .service-num {
    color: var(--gold-dark);
}

.service-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 16px;
    color: var(--charcoal);
}

.service-desc {
    font-size: 0.95rem;
    color: var(--charcoal);
    opacity: 0.7;
    max-width: 320px;
}

.service-arrow {
    position: absolute;
    bottom: 40px;
    right: 40px;
    padding: 10px 24px;
    border: 1px solid var(--ash);
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--charcoal);
    transition: all 0.4s ease;
    white-space: nowrap;
}

.service-item:hover .service-arrow {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
}

/* Service thumbnail image (replaces number) */
.service-thumb {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 24px;
}

.service-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-item--gallery:hover .service-thumb img {
    transform: scale(1.05);
}

.service-thumb--placeholder {
    background: var(--ash);
}

/* Carousel overlay */
.carousel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}

.carousel-close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10001;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.carousel-close:hover {
    opacity: 0.7;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 2.5rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.carousel-arrow:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}

.carousel-arrow--left {
    left: 32px;
}

.carousel-info {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
}

.carousel-counter {
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    letter-spacing: 0.05em;
    opacity: 0.85;
}

.carousel-arrow--right {
    right: 32px;
}

.carousel-image-wrapper {
    max-width: 60vw;
    max-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.carousel-caption {
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    letter-spacing: 0.05em;
    opacity: 0.85;
}

.carousel-image-wrapper img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.8rem;
    }

    .carousel-arrow--left {
        left: 12px;
    }

    .carousel-arrow--right {
        right: 12px;
    }

    .carousel-close {
        top: 16px;
        right: 16px;
    }
}

/* ============================================
   PROJECTS
============================================ */
.projects {
    padding: clamp(80px, 12vh, 140px) 0;
    background: var(--paper);
}

.projects-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.projects-intro p {
    font-size: 1.1rem;
    color: var(--charcoal);
    opacity: 0.7;
    max-width: 500px;
    align-self: end;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.project-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
}

.project-card:nth-child(1) {
    grid-column: span 7;
    aspect-ratio: 16/10;
}

.project-card:nth-child(2) {
    grid-column: span 5;
    aspect-ratio: 4/5;
}

.project-card:nth-child(3) {
    grid-column: span 5;
    aspect-ratio: 4/5;
}

.project-card:nth-child(4) {
    grid-column: span 7;
    aspect-ratio: 16/10;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover img {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42,42,42,0.85) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(24px, 4vw, 48px);
    opacity: 1;
    transition: background 0.4s ease;
}

.project-card:hover .project-overlay {
    background: linear-gradient(to top, rgba(42,42,42,0.95) 0%, transparent 60%);
}

.project-tag {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.project-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    color: var(--cream);
}

/* ============================================
   ABOUT
============================================ */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 50%, var(--cream) 100%);
}

.about-content {
    background: var(--cream);
    padding: clamp(60px, 10vw, 120px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content .section-number {
    margin-bottom: 24px;
}

.about-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 40px;
    color: var(--charcoal);
}

.about-text {
    font-size: 1.05rem;
    color: var(--charcoal);
    opacity: 0.7;
    margin-bottom: 24px;
    max-width: 480px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--ash);
}

.about-feature {
    display: flex;
    gap: 16px;
}

.about-feature .icon {
    width: 48px;
    height: 48px;
    border: 1px solid var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-feature h4 {
    font-size: 1rem;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    margin-bottom: 4px;
    color: var(--charcoal);
}

.about-feature p {
    font-size: 0.85rem;
    color: var(--charcoal);
    opacity: 0.5;
}

/* ============================================
   CTA
============================================ */
.cta {
    padding: clamp(100px, 15vh, 180px) 0;
    background: var(--gold);
    color: var(--ink);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::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%3Cpath d='M30 0L30 60M0 30L60 30' stroke='%23000' stroke-opacity='0.05' fill='none'/%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
    color: var(--ink);
}

.cta-text {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 500px;
    margin: 0 auto 48px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: var(--ink);
    color: var(--cream);
    padding: 20px 48px;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.cta-btn:hover {
    gap: 24px;
    padding-right: 56px;
}

/* ============================================
   FOOTER
============================================ */
.site-footer {
    background: linear-gradient(to bottom, var(--paper) 0%, var(--cream) 100%);
    color: var(--charcoal);
    padding: clamp(60px, 10vw, 100px) 0 40px;
    border-top: 3px solid var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand .logo {
    margin-bottom: 24px;
    color: var(--charcoal);
}

.footer-brand p {
    font-size: 0.95rem;
    color: var(--charcoal);
    opacity: 0.7;
    max-width: 280px;
}

.footer-col h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--gold-dark);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    font-size: 0.95rem;
    color: var(--charcoal);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--gold-dark);
}

.footer-contact p {
    font-size: 0.95rem;
    color: var(--charcoal);
    opacity: 0.7;
    margin-bottom: 8px;
}

.footer-contact .highlight {
    color: var(--gold-dark);
    opacity: 1;
    font-size: 1.1rem;
    font-weight: 500;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--gold);
    font-size: 0.8rem;
    color: var(--charcoal);
    opacity: 0.5;
}

/* ============================================
   FLOATING WHATSAPP
============================================ */
.floating-whatsapp {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--whatsapp);
    color: white;
    padding: 16px 24px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulseGlow 2s ease-in-out infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* ============================================
   CONTACT PAGE
============================================ */
.contact-hero {
    padding: 180px 0 80px;
    background: var(--paper);
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--warm);
    border-radius: 0 0 0 200px;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.contact-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
}

.contact-intro {
    font-size: 1.15rem;
    color: var(--slate);
}

.contact-content {
    padding: clamp(60px, 10vh, 100px) 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-subtitle {
    font-size: 0.95rem;
    color: var(--slate);
    margin-bottom: 20px;
}

.contact-whatsapp {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #25D366;
    color: white;
    padding: 16px 24px;
    border-radius: 4px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-whatsapp:hover {
    transform: translateX(8px);
    background: #20BA5A;
}

.contact-whatsapp svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    flex-shrink: 0;
}

.contact-whatsapp span {
    display: flex;
    flex-direction: column;
}

.contact-whatsapp strong {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--charcoal);
    color: white;
    padding: 16px 24px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-phone:hover {
    transform: translateX(8px);
    background: var(--ink);
}

.contact-phone svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.contact-phone span {
    display: flex;
    flex-direction: column;
}

.contact-phone strong {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.contact-block address {
    font-style: normal;
    font-size: 1rem;
    color: var(--slate);
    line-height: 1.8;
}

.contact-block address strong {
    color: var(--ink);
}

.contact-email {
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-email:hover {
    color: var(--gold-dark);
}

.contact-form-wrapper h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.form-intro {
    color: var(--slate);
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    border: 1px solid var(--ash);
    border-radius: 0;
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s ease;
    background: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--gold);
    color: var(--ink);
    padding: 18px 40px;
    border: none;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.form-submit:hover {
    background: var(--gold-dark);
    color: var(--cream);
    transform: translateY(-3px);
}

/* ============================================
   SCROLL ANIMATION CLASSES
============================================ */
.service-item.visible,
.project-card.visible,
.gallery-card.visible,
.about-feature.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ============================================
   FLASH MESSAGES
============================================ */
.flash-message {
    padding: 16px 0;
    font-weight: 500;
    text-align: center;
}

.flash-success {
    background: #ECFDF5;
    color: #065F46;
}

/* ============================================
   HAMBURGER MENU
============================================ */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--charcoal);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

body.nav-open {
    overflow: hidden;
}

/* ============================================
   PAGE HERO (inner pages)
============================================ */
.page-hero {
    padding: 180px 0 80px;
    background: var(--paper);
}

.page-hero .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-dark);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.page-hero .back-link:hover {
    color: var(--gold);
}

.page-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 16px;
}

.page-hero-desc {
    font-size: 1.1rem;
    color: var(--charcoal);
    opacity: 0.7;
    max-width: 600px;
}

/* ============================================
   PROJECT GALLERY
============================================ */
.project-gallery {
    padding: clamp(60px, 10vh, 100px) 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: block;
    border-radius: 8px;
    background: var(--ash);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42,42,42,0.9) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-tag {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.gallery-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--cream);
}

.gallery-location {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: var(--ash);
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--charcoal);
    opacity: 0.7;
}

.empty-state p {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold);
    color: var(--ink);
    padding: 16px 40px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: var(--gold-dark);
    color: var(--cream);
}

.projects-cta {
    text-align: center;
    margin-top: 60px;
}

/* ============================================
   PROJECT DETAIL
============================================ */
.project-hero {
    padding: 160px 0 60px;
    background: var(--paper);
}

.project-hero .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-dark);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.project-hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 16px;
}

.project-meta {
    display: flex;
    gap: 24px;
    font-size: 0.9rem;
    color: var(--charcoal);
    opacity: 0.6;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.project-detail {
    padding: clamp(60px, 10vh, 100px) 0;
    background: var(--white);
}

.project-main-image {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 48px;
    max-height: 600px;
}

.project-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-body {
    max-width: 800px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--charcoal);
    opacity: 0.8;
}

.project-photos-section {
    margin-top: 60px;
}

.project-photos-section h2 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.project-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.photo-item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.photo-item:hover img {
    transform: scale(1.05);
}

.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px 12px;
    background: rgba(0,0,0,0.5);
    color: white;
    font-size: 0.85rem;
}

/* ============================================
   SERVICES OVERVIEW
============================================ */
.services-overview {
    padding: clamp(60px, 10vh, 100px) 0;
    background: var(--white);
}

.services-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--ash);
}

.services-list .service-item {
    display: grid;
    grid-template-columns: 80px 1fr 60px;
    align-items: center;
    gap: 32px;
    padding: 40px 24px;
    border-bottom: 1px solid var(--ash);
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
    background: transparent;
}

.services-list .service-item::before {
    display: none;
}

.services-list .service-item:hover {
    padding-left: 48px;
}

.services-list .service-item .service-num {
    font-size: 1rem;
    color: var(--gold-dark);
    margin-bottom: 0;
}

.services-list .service-item .service-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.services-list .service-item .service-name {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.services-list .service-item .service-desc {
    max-width: 100%;
}

.services-list .service-item .service-arrow {
    position: static;
    width: 48px;
    height: 48px;
}

/* ============================================
   SERVICE DETAIL
============================================ */
.service-detail {
    padding: clamp(60px, 10vh, 100px) 0;
    background: var(--white);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-detail-content .prose {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--charcoal);
    opacity: 0.8;
}

.service-detail-image {
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    display: block;
}

.related-projects {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--ash);
}

.related-projects h2 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ============================================
   PAGE CONTENT (privacy etc)
============================================ */
.page-content {
    padding: clamp(60px, 10vh, 100px) 0;
    background: var(--white);
}

.prose {
    max-width: 800px;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--charcoal);
}

.prose h2 {
    font-size: 1.3rem;
    color: var(--ink);
    margin-top: 40px;
    margin-bottom: 16px;
}

.prose h2:first-child {
    margin-top: 0;
}

.prose p {
    margin-bottom: 16px;
    opacity: 0.8;
}

.prose ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.prose li {
    margin-bottom: 8px;
    opacity: 0.8;
}

.prose a {
    color: var(--gold-dark);
    text-decoration: underline;
}

.prose a:hover {
    color: var(--gold);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-image {
        position: absolute;
        inset: 0;
        z-index: 0;
    }

    .hero-image::before {
        background: linear-gradient(to right, var(--cream) 40%, transparent 100%);
    }

    .hero-content {
        position: relative;
        z-index: 1;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .projects-intro {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card:nth-child(n) {
        grid-column: span 1;
        aspect-ratio: 16/10;
    }

    .about {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 50vh;
    }

    .about-image::after {
        background: linear-gradient(to top, var(--cream) 20%, transparent 100%);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .project-photos {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 253, 249, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 100;
    }

    .main-nav.open {
        transform: translateX(0);
    }

    .main-nav a {
        font-size: 1.1rem;
    }

    .header-contact {
        margin-top: 16px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .project-photos {
        grid-template-columns: 1fr;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .services-list .service-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .services-list .service-item .service-arrow {
        display: none;
    }

    .services-grid .service-item {
        padding: 40px 28px;
    }

    .services-grid .service-arrow {
        position: static;
        margin-top: 28px;
        align-self: flex-start;
        width: fit-content;
    }

    .services-grid .service-desc {
        max-width: 100%;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-hero::before {
        display: none;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .floating-whatsapp span {
        display: none;
    }

    .floating-whatsapp {
        padding: 16px;
        border-radius: 50%;
        bottom: 20px;
        right: 20px;
    }

    .project-meta {
        flex-direction: column;
        gap: 8px;
    }
}
