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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 5%;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        nav .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #8B7355;
        }

        nav ul {
            display: flex;
            flex-direction: row;
            list-style: none;
            gap: 2rem;
        }

        nav a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #B8860B;
        }

        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding: 0 5%;
            overflow: hidden;
        }
        
        /* Parallax background image */
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('images/dome-hero.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed; /* Parallax effect */
            z-index: 1;
        }
        
        /* Gold overlay */
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(201, 169, 97, 0.85) 0%, rgba(218, 165, 32, 0.85) 100%);
            z-index: 2;
        }
        
        /* Content above overlay */
        .hero-content {
            position: relative;
            z-index: 3;
        }

        .hero h1 {
            font-size: 6rem;
            margin-bottom: 1rem;
            font-weight: 700;
            letter-spacing: 8px;
            color: white;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
        }

        .hero .tagline-top,
        .hero .tagline-bottom {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            opacity: 0.95;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 3rem;
            background: white;
            color: #8B7355;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            background: #f5f5f5;
        }

        .feature-section {
            display: flex;
            min-height: 80vh;
            align-items: center;
        }

        .feature-section:nth-child(even) {
            flex-direction: row-reverse;
            background: #f8f9fa;
        }

        .feature-image {
            flex: 1;
            height: 80vh;
            background-size: cover;
            background-position: center;
        }

        .feature-content {
            flex: 1;
            padding: 5rem;
        }

        .feature-content h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: #DAA520;
            font-weight: 700;
        }

        .feature-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 1rem;
        }

        .inspiration-section {
            padding: 5rem 5%;
            background: white;
        }

        .inspiration-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .inspiration-item {
            text-align: center;
        }

        .inspiration-icon {
            width: 120px;
            height: 120px;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .inspiration-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

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

        /* Feature Benefits Grid */
        .feature-benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .benefit-item {
            text-align: center;
            cursor: pointer;
            transition: transform 0.3s ease;
            padding: 1rem;
            border-radius: 10px;
        }

        .benefit-item:hover {
            transform: translateY(-5px);
            background: rgba(218, 165, 32, 0.05);
        }

        .benefit-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
            border-radius: 50%;
            font-size: 2rem;
        }

        .benefit-item h4 {
            color: #5D4E37;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .benefit-item p {
            color: #666;
            font-size: 0.85rem;
            line-height: 1.4;
        }

        @media (max-width: 768px) {
            .feature-benefits-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }

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

        /* Preset Configuration Cards */
        .preset-section {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            margin-bottom: 3rem;
            border: 3px solid #DAA520;
        }

        .preset-section h4 {
            color: #5D4E37;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            text-align: center;
        }

        .preset-section p {
            color: #666;
            font-size: 1rem;
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .preset-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .preset-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid #DAA520;
        }

        .preset-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border-color: #B8860B;
            border-width: 3px;
        }

        .preset-card.selected {
            border-color: #B8860B;
            border-width: 3px;
            box-shadow: 0 8px 20px rgba(218,165,32,0.3);
        }

        .preset-image {
            width: 100%;
            height: 150px;
            object-fit: contain;
            padding: 0.5rem;
            background: white;
        }

        .preset-info {
            padding: 0.01rem;
            text-align: center;
            background: white;
        }

        .preset-info h5 {
            color: #5D4E37;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .preset-info .preset-specs {
            font-size: 0.85rem;
            color: #888;
            line-height: 1.6;
        }

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

        @media (max-width: 640px) {
            .preset-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Configuration Summary Animations */
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
                max-height: 0;
            }
            to {
                opacity: 1;
                transform: translateY(0);
                max-height: 500px;
            }
        }

        @keyframes pulseGlow {
            0%, 100% {
                box-shadow: 0 0 20px rgba(218, 165, 32, 0.3);
            }
            50% {
                box-shadow: 0 0 30px rgba(218, 165, 32, 0.6);
            }
        }

        @keyframes checkmarkAppear {
            from {
                opacity: 0;
                transform: translateX(-50%) scale(0);
            }
            to {
                opacity: 1;
                transform: translateX(-50%) scale(1);
            }
        }

        #config-summary.show {
            animation: slideDown 0.8s ease-out forwards, pulseGlow 2s ease-in-out 1.3s 2;
        }

        #config-summary.show .config-checkmark {
            animation: checkmarkAppear 0.5s ease-out 0.8s forwards;
            opacity: 0;
        }

        .pricing {
            padding: 5rem 5%;
            text-align: center;
            background: linear-gradient(135deg, #DAA520 0%, #C9A961 100%);
        }

        .pricing h2 {
            font-size: 4rem;
            margin-bottom: 1rem;
            color: white;
            font-weight: 700;
        }

        .pricing-card {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            max-width: 700px;
            margin: 2rem auto;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .config-section {
            margin-bottom: 2rem;
            text-align: left;
        }

        .config-label {
            font-weight: 600;
            color: #DAA520;
            display: block;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .option-grid {
            display: grid;
            gap: 1rem;
        }

        .option-grid.three-col {
            grid-template-columns: repeat(3, 1fr);
        }

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

        .option-card {
            border: 2px solid #ddd;
            padding: 1rem;
            border-radius: 10px;
            cursor: pointer;
            text-align: center;
            transition: all 0.3s;
        }

        .option-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: #5D4E37;
        }

        .option-subtitle {
            font-size: 0.9rem;
            color: #555;
            margin-top: 0.5rem;
        }

        .option-price {
            font-weight: 600;
            color: #B8860B;
            margin-top: 0.5rem;
        }

        .price-summary {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }

        .price-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            color: #555;
        }

        .price-total {
            border-top: 2px solid #ddd;
            padding-top: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 1rem;
        }

        .total-label {
            font-size: 1.2rem;
            font-weight: 600;
            color: #5D4E37;
        }

        .total-amount {
            font-size: 2rem;
            font-weight: bold;
            color: #B8860B;
        }

        /* Modal Styles */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(8px);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            opacity: 0;
            transition: opacity 0.3s ease;
            padding: 2rem;
        }

        .modal-overlay.active {
            display: flex;
            opacity: 1;
        }

        .modal-content {
            background: white;
            border-radius: 20px;
            max-width: 900px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            transform: scale(0.9);
            transition: transform 0.3s ease;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .modal-overlay.active .modal-content {
            transform: scale(1);
        }

        .modal-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.95);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #333;
            transition: all 0.3s;
            z-index: 10;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .modal-close:hover {
            background: #DAA520;
            color: white;
            transform: rotate(90deg);
        }

        .modal-header {
            padding: 3rem 3rem 2rem;
            border-bottom: 2px solid #f0f0f0;
        }

        .modal-header h2 {
            font-size: 2.5rem;
            color: #DAA520;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .modal-header .modal-subtitle {
            font-size: 1.2rem;
            color: #666;
        }

        .modal-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            padding: 2rem 3rem;
        }

        .modal-gallery img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 12px;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
        }

        .modal-gallery img:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        }

        .modal-body {
            padding: 2rem 3rem 3rem;
        }

        /* Feature Benefit Modal Layout */
        .feature-modal-content {
            display: flex;
            gap: 2rem;
            align-items: flex-start;
        }

        .feature-modal-image {
            flex: 0 0 300px;
            height: 300px;
            border-radius: 12px;
            overflow: hidden;
        }

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

        .feature-modal-text {
            flex: 1;
        }

        @media (max-width: 768px) {
            .feature-modal-content {
                flex-direction: column;
            }

            .feature-modal-image {
                flex: 0 0 auto;
                width: 100%;
                height: 200px;
            }
        }

        /* Manufacturing Slot Timeline */
        .slot-timeline {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            margin: 2rem 0;
        }

        .slot-card {
            background: white;
            border: 3px solid #ddd;
            border-radius: 12px;
            padding: 1.5rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .slot-card:hover:not(.reserved):not(.selected) {
            border-color: #DAA520;
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(218, 165, 32, 0.3);
        }

        .slot-card.selected {
            border-color: #B8860B;
            background: linear-gradient(135deg, #FFF8DC 0%, #FAEBD7 100%);
            box-shadow: 0 8px 20px rgba(218, 165, 32, 0.4);
        }

        .slot-card.reserved {
            background: #f5f5f5;
            border-color: #ccc;
            cursor: not-allowed;
            opacity: 0.6;
        }

        .slot-badge {
            position: absolute;
            top: -10px;
            right: -10px;
            background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .slot-badge.reserved-badge {
            background: #999;
        }

        .slot-month {
            font-size: 1.3rem;
            font-weight: 700;
            color: #5D4E37;
            margin-bottom: 0.5rem;
        }

        .slot-year {
            font-size: 0.9rem;
            color: #888;
            margin-bottom: 1rem;
        }

        .slot-delivery {
            font-size: 0.85rem;
            color: #666;
            margin-top: 0.5rem;
            padding-top: 0.5rem;
            border-top: 1px solid #ddd;
        }

        .slot-status {
            font-weight: 600;
            margin-top: 0.5rem;
        }

        .slot-status.available {
            color: #2d6a4f;
        }

        .slot-status.reserved {
            color: #999;
        }

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

        @media (max-width: 640px) {
            .slot-timeline {
                grid-template-columns: 1fr;
            }
        }

        .modal-body h3 {
            color: #5D4E37;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .modal-body p {
            color: #555;
            line-height: 1.8;
            margin-bottom: 1rem;
            font-size: 1.05rem;
        }

        .modal-body ul {
            margin-left: 1.5rem;
            color: #555;
            line-height: 2;
        }

        .modal-body ul li {
            margin-bottom: 0.5rem;
        }

        .inspiration-item {
            cursor: pointer;
            transition: transform 0.3s;
        }

        .inspiration-item:hover {
            transform: translateY(-5px);
        }

        footer {
            background: linear-gradient(135deg, #B8860B 0%, #8B7355 100%);
            color: white;
            text-align: center;
            padding: 2rem;
        }

        @media (max-width: 768px) {
            .modal-gallery {
                grid-template-columns: 1fr;
                padding: 1.5rem;
            }

            .modal-header,
            .modal-body {
                padding: 1.5rem;
            }

            .modal-header h2 {
                font-size: 2rem;
            }

            .modal-close {
                top: 1rem;
                right: 1rem;
            }
            
            /* Disable parallax on mobile for better performance */
            .hero::before {
                background-attachment: scroll;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }

            .feature-section {
                flex-direction: column !important;
            }

            .feature-image {
                height: 50vh;
            }

            .feature-content {
                padding: 2rem;
            }

            nav ul {
                gap: 1rem;
                font-size: 0.9rem;
            }

            .option-grid.three-col,
            .option-grid.two-col {
                grid-template-columns: 1fr;
            }
        }
		.hero-content {
    max-width: 900px;               /* or whatever fits your design */
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}

.hero .tagline-top,
.hero .tagline-bottom {
    margin: 0.6rem 0;          /* base spacing between the two lines */
}

.hero .tagline-top {
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero .tagline-bottom {
    font-size: 1.4rem;
    font-weight: 400;
    font-style: italic;
    opacity: 0.92;
    margin-bottom: 4rem !important;   /* force it – increase to 4rem or 5rem to test */
}

/* Make sure the CTA wrapper has breathing room */
.hero .cta-wrapper {
    margin-top: 1rem;
}

/* Override the generic .hero p rule just for these */
.hero .tagline-top,
.hero .tagline-bottom {
    margin-bottom: inherit !important;  /* neutralize the 2rem from .hero p */
}
section.hero div.hero-content p.tagline-bottom {
    margin-bottom: 4rem !important;
}
.tagline-slogan,
p.tagline-slogan,
.feature-content .tagline-slogan {
   font-weight: 600;
    color: #DAA520 !important;
    font-style: italic;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    text-align: center;     /* recommended – looks balanced in most sections */
    line-height: 1.4;       /* optional – improves readability */
}