/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    overflow-x: hidden;
    padding-top: 220px; /* Clear fixed header (top bar + navbar + logo) */
}

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

/* Color Variables */
:root {
    --gold: #d4af37;
    --gold-dark: #b8941f;
    --gold-light: #f4e794;
    --black: #0a0a0a;
    --gray-dark: #1a1a1a;
    --gray-medium: #333333;
    --gray-light: #666666;
    --white: #ffffff;
    --white-soft: #f8f8f8;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.gold {
    color: var(--gold);
}

.white {
    color: var(--white);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(212,175,55,0.08);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.18);
}

/* New button variants */
.btn-lg { padding: 16px 34px; font-size: 18px; }
.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--black); }

.btn-outline-dark {
    background: transparent;
    color: #111;
    border: 3px solid #111;
}
.btn-outline-dark:hover { background: #111; color: #f5f5f5; }

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    min-height: 60px;
}

.header-top {
    background: var(--gray-dark);
    padding: 8px 0;
    font-size: 14px;
}

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

.contact-info span {
    margin-right: 20px;
    color: var(--gray-light);
}

.contact-info i {
    color: var(--gold);
    margin-right: 5px;
}

.header-actions {
    color: var(--gold);
    font-weight: 500;
}

.navbar {
    padding: 20px 0;
}

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

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}


.nav-menu li {
    margin: 0 25px;
    position: relative;
}

.nav-menu .dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: #111;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    z-index: 100;
    border-radius: 0 0 8px 8px;
    padding: 8px 0;
}
.nav-menu .dropdown:hover .dropdown-menu,
.nav-menu .dropdown:focus-within .dropdown-menu {
    display: block;
}
.nav-menu .dropdown-menu li {
    list-style: none;
}
.nav-menu .dropdown-menu a {
    display: block;
    padding: 10px 24px;
    color: #eee;
    font-weight: 400;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.nav-menu .dropdown-menu a:hover {
    background: #222;
    color: var(--gold);
}
.nav-menu .dropdown > a {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s, box-shadow 0.3s, transform 0.2s;
    position: relative;
    box-shadow: 0 0 0 rgba(212,175,55,0);
    border-radius: 4px;
}

.nav-menu a:hover,
    .nav-menu a.active {
    color: var(--gold);
    box-shadow: 0 2px 10px rgba(212,175,55,0.15);
    transform: translateY(-2px) scale(1.05);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-dark) 100%);
    position: relative;
    overflow: hidden;
}

/* New hero variant to match Image1 */
.hero-v2 {
    display: flex;
    align-items: center;
    min-height: 88vh;
}
.hero-v2::before { display: none; }
.hero-v2 {
    background-image: linear-gradient(90deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.7) 40%, rgba(10,10,10,0.35) 60%, rgba(10,10,10,0.05) 100%), var(--hero-bg);
    background-size: cover;
    background-position: center right;
}
.hero-v2 .hero-content { max-width: 760px; padding: 0; }
.hero-eyebrow {
    display: inline-block;
    color: #d9d9d9;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 18px;
}
.hero-eyebrow.big {
    font-size: clamp(1.25rem, 2.2vw, 2rem);
    font-weight: 700;
    letter-spacing: 4px;
    white-space: nowrap; /* keep in one line */
    display: block;
}
.hero-title.big {
    font-size: clamp(3.2rem, 8vw, 6rem);
    font-weight: 800;
}
.hero-actions { margin-top: 26px; display: flex; gap: 16px; flex-wrap: wrap; }

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23d4af37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-description {
    font-size: 18px;
    color: var(--gray-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Sections */
.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--white);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray-light);
    margin-bottom: 60px;
    font-style: italic;
}

/* Categories Section */
.categories-section {
    padding: 100px 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.categories-section .section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--white);
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.categories-section .section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: var(--gold);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    background: var(--gray-dark);
    border-radius: 14px;
    padding: 0;
    text-align: left;
    transition: all 0.3s ease;
    color: var(--white);
    text-decoration: none;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: 0.5s;
    z-index: -1;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--gold);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold);
    font-size: 32px;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    background: var(--gold);
    color: var(--black);
    transform: rotateY(180deg);
}

.category-image {
    width: 100%;
    height: 200px;
    border-radius: 14px 14px 0 0;
    margin: 0;
    overflow: hidden;
    background: #111;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.07);
}

/* Text area padding to mimic card body */
.category-card h3,
.category-card p,
.category-card .category-link {
    padding: 0 20px;
}

.category-card h3 { margin-top: 14px; }
.category-card p { margin: 8px 0 12px; }
.category-card .category-link { margin-bottom: 18px; display: inline-block; }

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.category-card p {
    color: #b3b3b3;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.category-link {
    color: var(--gold);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.category-card:hover .category-link i {
    transform: translateX(5px);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: var(--gray-dark);
    position: relative;
}

.why-choose-us .section-title {
    text-align: center;
    margin-bottom: 70px;
    color: var(--white);
    font-size: 2.5rem;
    position: relative;
}

.why-choose-us .section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: var(--gold);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(26, 26, 26, 0.7);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--gold);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--gold);
    font-size: 32px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--white);
}

.feature-card p {
    color: #b3b3b3;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Featured Products */
.featured-products {
    padding: 100px 0;
    background: var(--black);
}

/* Curated Collections (Image2) */
.curated-section {
    padding: 0 0 40px;
    background: var(--black);
    position: relative;
}
/* Remove the top black strip */
.curated-section::before { content: none !important; }
.curated-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* equal halves like the mock */
    gap: 0;
    align-items: stretch;
    min-height: 440px; /* moderate overall height */
}
.curated-media { 
    min-height: 440px; 
    overflow: hidden; 
    position: relative; 
    /* Layered backgrounds: if the first (var) fails, the second shows */
    background-image: var(--curated-img), url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
}
/* remove the cutout overlay */
.curated-media::after { content: none; }
.curated-panel {
    background: var(--gold); /* theme gold */
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 48px;
    text-align: center;
    border-bottom-right-radius: 140px; /* curve at the far right end */
}
.curated-content { max-width: 700px; margin: 0 auto; text-align: center; }
.curated-content h2 { font-size: clamp(2.4rem, 5.2vw, 4rem); line-height: 1.12; margin-bottom: 20px; color: #111; font-weight: 800; letter-spacing: 0.1px; }
.curated-content p { color: #1f1f1f; font-size: 1rem; margin: 0 auto 28px; line-height: 1.75; max-width: 560px; }
/* Center the CTA like the reference */
.curated-content .btn { margin: 0 auto; display: inline-block; padding: 16px 32px; border-radius: 8px; }

/* Button refinements to match outlined dark button */
.btn-outline-dark { border-radius: 8px; box-shadow: 0 2px 0 rgba(0,0,0,0.1); text-transform: none; letter-spacing: .5px; }
.curated-panel .btn { padding: 14px 28px; font-weight: 600; }

.craftsmanship-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--black) 0%, #0d0d0d 100%);
}

.craftsmanship-section .section-title {
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-light);
    margin-top: 12px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.craft-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.craft-card {
    background: var(--gray-dark);
    border: 1px solid var(--gray-medium);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.craft-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
    border-color: var(--gold);
}

.craft-media {
    height: 160px;
    overflow: hidden;
}

.craft-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

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

.craft-content {
    padding: 18px 18px 22px;
}

.craft-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(212,175,55,0.12);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.craft-content h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.craft-content p {
    color: #b3b3b3;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 1100px) {
    .craft-grid { grid-template-columns: repeat(2, 1fr); }
    .craft-media { height: 180px; }
}

@media (max-width: 575px) {
    .craft-grid { grid-template-columns: 1fr; }
    .craft-media { height: 200px; }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}

/* Responsive columns for products grid (global) */
@media (max-width: 1279px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .products-grid { grid-template-columns: 1fr; }
}

.product-card {
    background: var(--gray-dark);
    border: 1px solid var(--gray-medium);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
    border-color: var(--gold);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.product-details {
    padding: 22px 22px 20px;
}

.product-name {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 1.32;
}

.product-description {
    color: var(--gray-light);
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
}

.product-price {
    font-size: 22px;
    color: var(--gold);
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

/* Featured badge */
.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: var(--black);
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    z-index: 2;
}

.product-meta {
    margin-top: 15px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.product-tag {
    background: var(--gold);
    color: var(--black);
    padding: 4px 8px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--gray-dark);
}

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

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.about-text p {
    color: var(--gray-light);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.about-features {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature i {
    color: var(--gold);
    font-size: 24px;
    margin-top: 5px;
}

.feature h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 18px;
}

.feature p {
    color: var(--gray-light);
    font-size: 14px;
    margin: 0;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 20px;
    border-top: 1px solid var(--gray-medium);
    min-height: 100px; /* Ensure minimum height */
    display: block !important; /* Force display */
    visibility: visible !important; /* Force visibility */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 18px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gray-medium);
    background: transparent;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a i { font-size: 18px; line-height: 1; }

.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

.contact-details p {
    color: var(--gray-light);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-details i {
    color: var(--gold);
    width: 16px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--gray-medium);
    color: var(--gray-light);
}

/* Form Styles */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--gray-medium);
    background: var(--gray-dark);
    color: var(--white);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

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

/* Loading Spinner */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    border-top-color: var(--gold);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Alerts */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeaa7;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 260px; /* header is taller on mobile */
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--black);
        flex-direction: column;
        padding: 20px 0;
        border-top: 1px solid var(--gray-medium);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 0 60px;
    }

    .hero-v2 { min-height: 70vh; background-position: center; }
    .hero-v2 .hero-content { max-width: none; padding: 0 20px; }
    .hero-actions { justify-content: center; }

    .hero-content {
        margin-bottom: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }


    .header-top-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact-info {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 300px; /* extra space for compact/mobile header stacks */
    }
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    /* Curated section small screens */
    .curated-media { min-height: 260px; background-position: center; }
    .curated-media::after { width: 55%; height: 40%; border-top-left-radius: 180px; right: -1px; bottom: -1px; left: auto; top: auto; background: var(--gold); }
    .curated-content h2 { font-size: 2.2rem; text-align: center; }
    .curated-content button { margin: 0 auto; }
}