/* ============================================
   BRASPENNING - BRIGHT, BOLD, APPROACHABLE
   Energetic, playful, trustworthy
============================================ */

:root {
    --cobalt: #1E4FD8;
    --cobalt-dark: #1640B0;
    --cobalt-light: #4A73E8;
    --tangerine: #FF6B35;
    --tangerine-light: #FF8F5A;
    --cream: #FDF8F3;
    --sand: #F5EDE4;
    --ink: #1A1A2E;
    --slate: #4A4A5A;
    --mist: #8A8A9A;
    --whatsapp: #25D366;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@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;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
}

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

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
}

/* ============================================
   HEADER
============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: all 0.4s ease;
}

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 48px;
    height: 48px;
    background: var(--cobalt);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 600;
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
}

.logo:hover .logo-mark {
    transform: rotate(0deg) scale(1.05);
}

.logo-text {
    font-family: 'Fraunces', serif;
    font-size: 1.3rem;
    font-weight: 600;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 40px);
}

.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--slate);
    position: relative;
    padding: 8px 0;
}

.main-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--tangerine);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.main-nav a:hover {
    color: var(--ink);
}

.main-nav a:hover::before {
    transform: scaleX(1);
}

.nav-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--whatsapp);
    color: white !important;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.2;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.nav-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.nav-whatsapp::before {
    display: none;
}

.nav-whatsapp svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
============================================ */
.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: 600;
    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;
}

/* ============================================
   HERO
============================================ */
.hero {
    min-height: 100vh;
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: -10%;
    width: 60%;
    height: 100%;
    background: var(--sand);
    border-radius: 0 0 0 200px;
    z-index: 0;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--cobalt-light) 0%, transparent 70%);
    top: 10%;
    right: 20%;
    animation: float 8s ease-in-out infinite;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    background: var(--tangerine);
    bottom: 20%;
    right: 10%;
    animation: float 6s ease-in-out infinite reverse;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: slideIn 1s ease forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--slate);
    margin-bottom: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--tangerine);
    border-radius: 50%;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--ink);
}

.hero-title .highlight {
    color: var(--cobalt);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--tangerine);
    opacity: 0.3;
    z-index: -1;
    border-radius: 4px;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--slate);
    max-width: 480px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--tangerine);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    background: var(--tangerine-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
    background: white;
    color: var(--ink);
    border: 2px solid var(--ink);
}

.btn-secondary:hover {
    background: var(--ink);
    color: white;
}

.hero-image {
    position: relative;
    animation: scaleIn 1s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.hero-image-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    transform: rotate(2deg);
}

.hero-image-main img {
    width: 100%;
    display: block;
}

.hero-card {
    position: absolute;
    background: white;
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.hero-card-1 {
    bottom: -30px;
    left: -40px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-card-icon {
    width: 50px;
    height: 50px;
    background: var(--cobalt);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.hero-card-text strong {
    display: block;
    font-size: 1.3rem;
    color: var(--ink);
}

.hero-card-text span {
    font-size: 0.85rem;
    color: var(--mist);
}

/* ============================================
   MARQUEE
============================================ */
.marquee {
    background: var(--cobalt);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 30px;
    flex-shrink: 0;
}

.marquee-item {
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 12px;
}

.marquee-item .star {
    color: var(--tangerine);
}

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

.page-hero + .services,
.page-hero + .projects {
    padding-top: clamp(40px, 6vh, 60px);
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, var(--cream), white);
}

.section-intro {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--sand);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cobalt);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

.section-desc {
    font-size: 1.1rem;
    color: var(--slate);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: var(--cream);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    display: flex;
    flex-direction: column;
}

a.service-card {
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--cobalt);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:nth-child(2)::before { background: var(--tangerine); }
.service-card:nth-child(3)::before { background: var(--cobalt); }
.service-card:nth-child(4)::before { background: var(--tangerine); }
.service-card:nth-child(5)::before { background: var(--cobalt); }
.service-card:nth-child(6)::before { background: var(--tangerine); }

.service-icon {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    color: var(--cobalt);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.service-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--slate);
    margin-bottom: 20px;
}

.service-card .cta-btn {
    background: var(--tangerine);
    color: white;
    padding: 12px 28px;
    font-size: 0.95rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    margin-top: auto;
    align-self: center;
    width: fit-content;
}

.service-card .cta-btn:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--cobalt);
    font-size: 0.9rem;
}

.service-link .arrow {
    transition: transform 0.3s ease;
}

.service-card:hover .service-link .arrow {
    transform: translateX(5px);
}

/* ============================================
   PROJECTS
============================================ */
.projects {
    padding: clamp(80px, 12vh, 140px) 0;
    background: var(--ink);
    color: white;
    position: relative;
    overflow: hidden;
}

.projects--light {
    background: var(--cream);
    color: var(--ink);
}

.projects--light .project-overlay {
    color: white;
    opacity: 1;
}

/* ============================================
   LIGHTBOX / SLIDER
============================================ */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-container {
    position: relative;
    max-width: 80vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-container img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -48px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: none;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
    left: -64px;
}

.lightbox-next {
    right: -64px;
}

.lightbox-caption {
    position: absolute;
    bottom: -34px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    white-space: nowrap;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.lightbox-counter {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .lightbox-container {
        max-width: 92vw;
    }
    .lightbox-prev {
        left: 8px;
    }
    .lightbox-next {
        right: 8px;
    }
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

.projects::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--cobalt) 0%, transparent 70%);
    opacity: 0.3;
}

.projects .section-intro {
    color: white;
}

.projects .section-label {
    background: rgba(255,255,255,0.1);
    color: var(--tangerine);
}

.projects .section-desc {
    color: rgba(255,255,255,0.7);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.project-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.project-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,46,0.95) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(20px, 3vw, 32px);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.project-type {
    display: inline-block;
    background: var(--tangerine);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    width: fit-content;
}

.project-name {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
}

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

.btn-ghost {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 600;
}

.btn-ghost:hover {
    background: white;
    color: var(--ink);
}

/* ============================================
   ABOUT
============================================ */
.about {
    padding: clamp(80px, 12vh, 140px) 0;
    background: var(--cream);
}

.about-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(40px, 8vw, 100px);
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.about-img-main img {
    width: 100%;
    display: block;
}

.about-img-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 6px solid white;
}

.about-img-accent img {
    width: 100%;
    display: block;
}

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

.about-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 24px;
}

.about-text {
    font-size: 1.05rem;
    color: var(--slate);
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature .check {
    width: 28px;
    height: 28px;
    background: var(--cobalt);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.about-feature span {
    font-weight: 500;
}

/* ============================================
   CTA
============================================ */
.cta {
    padding: clamp(60px, 10vh, 100px) 0;
    background: linear-gradient(135deg, var(--tangerine) 0%, #FF8F5A 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' stroke='%23fff' stroke-opacity='0.1' fill='none' stroke-width='2'/%3E%3C/svg%3E");
    background-size: 80px 80px;
}

.cta-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

.cta-btn {
    background: white;
    color: var(--tangerine);
    padding: 18px 40px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* ============================================
   FOOTER
============================================ */
.site-footer {
    background: var(--ink);
    color: white;
    padding: clamp(60px, 10vw, 100px) 0 30px;
}

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

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-mark {
    background: var(--cobalt);
}

.footer-brand .logo-text {
    color: white;
}

.footer-brand p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    max-width: 280px;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    color: var(--tangerine);
}

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

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

.footer-col a {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: white;
}

.footer-contact p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
}

.footer-contact .phone {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--tangerine);
    margin-top: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

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

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--sand);
    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: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--ink);
}

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

.contact-whatsapp {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--whatsapp);
    color: white;
    padding: 16px 24px;
    border-radius: 16px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.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(--cobalt);
    color: white;
    padding: 16px 24px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

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

.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(--cobalt);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.contact-form-wrapper h3 {
    font-family: 'Fraunces', 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: 2px solid var(--sand);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Outfit', 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(--cobalt);
    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(--tangerine);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 100px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    align-self: flex-start;
}

.form-submit:hover {
    background: var(--tangerine-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

/* ============================================
   SCROLL ANIMATION CLASSES
============================================ */
.service-card.visible,
.service-item.visible,
.service-row.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: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

body.nav-open {
    overflow: hidden;
}

/* ============================================
   PAGE HERO (generic for inner pages)
============================================ */
.page-hero {
    padding: 160px 0 60px;
    background: var(--cream);
    position: relative;
}

.page-hero-content {
    max-width: 700px;
}

.page-hero-content .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cobalt);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.page-hero-content .back-link:hover {
    color: var(--cobalt-dark);
}

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

.page-hero-desc {
    font-size: 1.15rem;
    color: var(--slate);
}

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

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

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

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,46,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 {
    display: inline-block;
    background: var(--tangerine);
    color: white;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    width: fit-content;
}

.gallery-name {
    color: white;
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
}

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

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mist);
    background: var(--sand);
}

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

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

/* ============================================
   PROJECT DETAIL
============================================ */
.project-hero {
    padding: 140px 0 40px;
    background: var(--cream);
}

.project-hero .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cobalt);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.project-hero .back-link:hover {
    color: var(--cobalt-dark);
}

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

.project-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--slate);
    font-size: 0.95rem;
}

.project-detail {
    padding: clamp(40px, 8vh, 80px) 0;
    background: white;
}

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

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

.project-body {
    max-width: 800px;
}

.project-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--slate);
}

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

.project-gallery-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: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    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.6);
    color: white;
    font-size: 0.85rem;
}

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

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.service-row {
    display: grid;
    grid-template-columns: 80px 1fr auto 60px;
    align-items: center;
    gap: 32px;
    padding: 32px 24px;
    background: var(--cream);
    border-radius: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.service-row:hover {
    background: var(--sand);
    transform: translateX(8px);
}

.service-row-number {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    color: var(--cobalt);
    font-weight: 600;
}

.service-row-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.service-row-desc {
    color: var(--slate);
    font-size: 0.95rem;
}

.service-row-image {
    width: 120px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
}

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

.service-row-arrow {
    font-size: 1.5rem;
    color: var(--cobalt);
    transition: transform 0.3s ease;
}

.service-row:hover .service-row-arrow {
    transform: translateX(8px);
}

/* ============================================
   SERVICE DETAIL
============================================ */
.service-detail {
    padding: clamp(60px, 10vh, 100px) 0;
    background: 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(--slate);
}

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

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

.related-projects {
    margin-top: 80px;
}

.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: white;
}

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

.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;
}

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

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

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

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

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

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-desc {
        margin: 0 auto 36px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-bg {
        display: none;
    }

    .hero-card-1 {
        left: 50%;
        transform: translateX(-50%);
    }

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

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

    .project-card:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }

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

    .about-img-accent {
        right: 20px;
        bottom: -20px;
        width: 150px;
    }

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

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

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

@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);
    }

    .service-row {
        grid-template-columns: 60px 1fr 60px;
    }

    .service-row-image {
        display: none;
    }
}

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

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(253, 248, 243, 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.3rem;
        font-weight: 600;
    }

    .nav-whatsapp {
        margin-top: 16px;
        font-size: 1rem;
        padding: 14px 24px;
        max-width: calc(100vw - 48px);
    }

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

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

    .project-card:nth-child(1) {
        grid-column: span 1;
    }

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

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

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

    .service-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service-row-number {
        font-size: 1rem;
    }

    .service-row-arrow {
        display: none;
    }

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

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

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

    .footer-brand p,
    .footer-col {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
    }

    .floating-whatsapp span {
        display: none;
    }

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

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

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