:root {
            --cream: #FAF8F3;
            --charcoal: #1A1A1A;
            --warm-gray: #4A4A4A;
            --accent: #8B7355;
            --border: #E8E3D8;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Cormorant Garamond', serif;
            background: var(--cream);
            color: var(--charcoal);
            overflow-x: hidden;
            cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20"><circle cx="10" cy="10" r="2" fill="%238B7355"/></svg>') 10 10, auto;
        }

        /* Custom cursor for links */
        a, button {
            cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><circle cx="12" cy="12" r="6" fill="none" stroke="%238B7355" stroke-width="2"/></svg>') 12 12, pointer;
        }

        /* Grain overlay */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" /></filter><rect width="200" height="200" filter="url(%23noise)" opacity="0.05"/></svg>');
            pointer-events: none;
            z-index: 9999;
            opacity: 0.4;
        }


        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            padding: 3.5rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
				--cream-rgb: 245, 240, 230;
            background: linear-gradient(
  to bottom,
  rgba(var(--cream-rgb), 1) 0%,
  rgba(var(--cream-rgb), 1) 5%,
  rgba(var(--cream-rgb), 0) 99%,
  rgba(var(--cream-rgb), 0) 100%
);
            animation: slideDown 0.8s ease-out;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 400;
            letter-spacing: 0.05em;
            color: var(--charcoal);
            text-decoration: none;
            font-style: italic;
        }

        nav {
            display: flex;
            gap: 3rem;
        }

        nav a {
            font-size: 1.2rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--warm-gray);
            text-decoration: none;
            transition: color 0.3s ease;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        nav a:hover {
            color: var(--accent);
        }

        nav a:hover::after {
            width: 100%;
        }

        /* Hero section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background-image: url(images/isabel_081.jpg);
            background-size: cover;
            background-position: center;
            /* background-attachment: fixed; */
        }

		   /* Fixed attachment only on larger screens */
        @media (min-width: 1024px) {
            .hero {
                background-attachment: fixed;
            }
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(26, 26, 26, 0.3) 0%, rgba(26, 26, 26, 0.6) 100%);
            z-index: 1;
        }

        .hero-content {
            text-align: center;
            z-index: 2;
            animation: fadeInUp 1.2s ease-out 0.3s both;
            color: var(--cream);
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
        }

        @keyframes fadeInUp {
            from {
                transform: translateY(40px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(3rem, 8vw, 6.5rem);
            font-weight: 400;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            font-style: italic;
            color: var(--cream);
        }

        .hero p {
            font-size: 1.6rem;
            color: var(--cream);
            letter-spacing: 0.05em;
            font-weight: 300;
            opacity: 0.95;
        }

        /* Decorative elements */
        .hero::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            border: 1px solid var(--border);
            border-radius: 50%;
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.3;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.1);
                opacity: 0.1;
            }
        }

        /* Gallery grid */
        .gallery {
            padding: 8rem 4rem;
            max-width: 1600px;
            margin: 0 auto;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 4rem;
            text-align: center;
            font-style: italic;
            opacity: 0;
            animation: fadeIn 1s ease-out forwards;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .grid-item {
            position: relative;
            overflow: hidden;
            aspect-ratio: 4/5;
            background: var(--border);
            opacity: 0;
            animation: fadeInScale 0.8s ease-out forwards;
        }

        .grid-item:nth-child(1) { animation-delay: 0.1s; }
        .grid-item:nth-child(2) { animation-delay: 0.2s; }
        .grid-item:nth-child(3) { animation-delay: 0.3s; }
        .grid-item:nth-child(4) { animation-delay: 0.4s; }
        .grid-item:nth-child(5) { animation-delay: 0.5s; }
        .grid-item:nth-child(6) { animation-delay: 0.6s; }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .grid-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .grid-item:hover img {
            transform: scale(1.08);
        }

        .grid-item-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            background: linear-gradient(to top, rgba(26, 26, 26, 0.9) 0%, transparent 100%);
            color: var(--cream);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .grid-item:hover .grid-item-overlay {
            opacity: 1;
        }

        .grid-item-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            font-style: italic;
        }

        .grid-item-desc {
            font-size: 0.95rem;
            letter-spacing: 0.05em;
            opacity: 0.9;
        }

        /* Featured section with different layout */
        .featured {
            padding: 4rem;
            max-width: 1800px;
            margin: 0 auto;
        }

        .featured-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .featured-image {
            aspect-ratio: 3/4;
            overflow: hidden;
            position: relative;
        }

        .featured-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .featured-content {
            padding: 2rem;
        }

        .featured-label {
            font-size: 1.2rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 1.5rem;
        }

        .featured-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .featured-content p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--warm-gray);
            margin-bottom: 3rem;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 3rem;
            border: 1px solid var(--charcoal);
            color: var(--charcoal);
            text-decoration: none;
            font-size: 1.2rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--charcoal);
            transition: left 0.4s ease;
            z-index: -1;
        }

        .cta-button:hover::before {
            left: 0;
        }

        .cta-button:hover {
            color: var(--cream);
        }

        /* About section */
        .about {
            padding: 5rem 1rem;
            max-width: 1300px;
            margin: 0 auto;
            text-align: center;
        }

        .about h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .about p {
            font-size: 1.3rem;
            line-height: 2;
            color: var(--warm-gray);
            margin-bottom: 1.5rem;
        }

        /* Footer */
        footer {
            padding: 4rem;
            border-top: 1px solid var(--border);
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .social-links a {
            font-size: 0.95rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--warm-gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: var(--accent);
        }

        .footer-text {
            font-size: 0.9rem;
            color: var(--warm-gray);
            letter-spacing: 0.05em;
        }

        /* Responsive */
        @media (max-width: 768px) {
            header {
                padding: 2rem;
                flex-direction: column;
                gap: 1.5rem;
            }

            nav {
                gap: 1.5rem;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .gallery {
                padding: 4rem 2rem;
            }

            .grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

				 .featured {
            padding: 2rem;
            
        }

            .featured-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

				.featured-content {
					order: 1;
				}

				.featured-image {
					order: 2;
				}

            .featured-content h2 {
                font-size: 2.5rem;
            }

            .about {
                padding: 4rem 2rem;
            }

            .about h2 {
                font-size: 2rem;
            }

            .about p {
                font-size: 1.1rem;
            }
        }