/* ===== VARIABLES ===== */
:root {
    --gold: #c9a84c;
    --gold-light: #f0d080;
    --dark: #0e0e0e;
    --dark2: #1a1a1a;
    --dark3: #252525;
    --white: #f5f5f5;
    --text-muted: #aaa;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--dark);
    color: var(--white);
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
}
a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-light); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== HEADER ===== */
header {
    background: rgba(10,10,10,0.97);
    border-bottom: 1px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}
.logo { display: flex; align-items: center; gap: 0.7rem; }
.logo-icon { font-size: 1.8rem; color: var(--gold); }
.logo h1 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--gold); line-height: 1; }
.logo p { font-size: 0.7rem; letter-spacing: 3px; color: var(--text-muted); text-transform: uppercase; }
nav { margin-left: auto; }
nav ul { display: flex; gap: 0.3rem; }
nav ul li a {
    padding: 0.45rem 0.9rem;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}
nav ul li a:hover, nav ul li a.active {
    color: var(--gold);
    background: rgba(201,168,76,0.1);
}
.header-phone a {
    background: var(--gold);
    color: var(--dark);
    padding: 0.45rem 1rem;
    border-radius: 2px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
}
.header-phone a:hover { background: var(--gold-light); }
.hamburger {
    display: none;
    background: none;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 1.3rem;
    padding: 0.3rem 0.6rem;
    cursor: pointer;
    margin-left: auto;
}
.mobile-nav {
    display: none;
    background: var(--dark2);
    border-bottom: 1px solid var(--gold);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { flex-direction: column; }
.mobile-nav ul li a {
    display: block;
    padding: 0.9rem 1.5rem;
    border-bottom: 1px solid #333;
    color: var(--white);
    font-size: 0.95rem;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1200 50%, #0a0a0a 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.15) 0%, transparent 70%);
}
.hero-content { position: relative; z-index: 1; padding: 2rem; }
.hero-badge {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    margin-bottom: 1.5rem;
}
.hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 7vw, 5rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}
.hero h2 span { color: var(--gold); }
.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 520px;
    margin: 1rem auto 2rem;
    letter-spacing: 1px;
}
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--gold);
    color: var(--dark);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    border-radius: 2px;
    transition: all 0.3s;
}
.btn:hover { background: var(--gold-light); color: var(--dark); transform: translateY(-2px); }
.btn-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    margin-left: 1rem;
}
.btn-outline:hover { background: var(--gold); color: var(--dark); }

/* ===== SECTION ===== */
.section { padding: 5rem 1.5rem; }
.section-alt { background: var(--dark2); }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .sub {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--white);
}
.divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 1rem auto 0;
}

/* ===== HIGHLIGHTS (Home) ===== */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}
.highlight-card {
    background: var(--dark3);
    border: 1px solid #333;
    border-top: 3px solid var(--gold);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s;
}
.highlight-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.highlight-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.highlight-card h3 { font-family: 'Playfair Display', serif; color: var(--gold); margin-bottom: 0.5rem; }
.highlight-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== SERVICES OVERVIEW ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.service-card {
    background: var(--dark3);
    border: 1px solid #333;
    padding: 2rem;
    border-radius: 3px;
    transition: all 0.3s;
}
.service-card:hover { border-color: var(--gold); }
.service-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid #333;
}
.service-card ul li {
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 0.3rem 0;
    padding-left: 1rem;
    position: relative;
}
.service-card ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.6rem;
    top: 0.45rem;
}
.service-card .view-more {
    display: inline-block;
    margin-top: 1.2rem;
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* ===== PRICE TABLE ===== */
.price-section { margin-bottom: 3rem; }
.price-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--gold);
    text-align: center;
    padding: 0.7rem 2rem;
    border: 1px solid var(--gold);
    display: inline-block;
    margin: 0 auto 1.5rem;
    letter-spacing: 2px;
}
.price-section-wrap { text-align: center; }
.price-table {
    width: 100%;
    border-collapse: collapse;
}
.price-table tr {
    border-bottom: 1px solid #2a2a2a;
    transition: background 0.2s;
}
.price-table tr:hover { background: rgba(201,168,76,0.05); }
.price-table td {
    padding: 0.9rem 1.2rem;
    font-size: 0.95rem;
}
.price-table td:first-child { color: var(--white); }
.price-table td:last-child {
    text-align: right;
    color: var(--gold);
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
}
.price-table .separator td {
    text-align: center;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    letter-spacing: 2px;
    padding: 1rem;
    background: rgba(201,168,76,0.07);
    border-bottom: none;
}
.price-note {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(201,168,76,0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    letter-spacing: 1px;
}

/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1200 100%);
    padding: 4rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--gold);
}
.page-hero .sub {
    color: var(--gold);
    letter-spacing: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
}
.page-hero p { color: var(--text-muted); margin-top: 0.8rem; }

/* ===== CTA BAND ===== */
.cta-band {
    background: var(--gold);
    padding: 3rem 1.5rem;
    text-align: center;
}
.cta-band h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}
.cta-band p { color: rgba(0,0,0,0.7); margin-bottom: 1.5rem; }
.cta-band .btn { background: var(--dark); color: var(--gold); }
.cta-band .btn:hover { background: #111; }

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}
.contact-card {
    background: var(--dark3);
    border: 1px solid #333;
    padding: 2rem;
    text-align: center;
    border-top: 3px solid var(--gold);
}
.contact-card .icon { font-size: 2rem; margin-bottom: 1rem; color: var(--gold); }
.contact-card h4 { color: var(--gold); margin-bottom: 0.5rem; font-family: 'Playfair Display', serif; }
.contact-card p, .contact-card a { color: var(--text-muted); font-size: 0.95rem; }

/* ===== TESTIMONIALS ===== */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.testimonial-card {
    background: var(--dark3);
    border: 1px solid #333;
    padding: 1.5rem;
    border-left: 3px solid var(--gold);
}
.testimonial-card p { color: var(--text-muted); font-style: italic; margin-bottom: 1rem; }
.testimonial-card .author { color: var(--gold); font-size: 0.9rem; }
.stars { color: var(--gold); margin-bottom: 0.5rem; }

/* ===== FOOTER ===== */
footer {
    background: #080808;
    border-top: 1px solid var(--gold);
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}
.footer-brand h2 { font-family: 'Playfair Display', serif; color: var(--gold); margin-bottom: 0.5rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; }
.footer-links h4, .footer-contact h4 { color: var(--gold); margin-bottom: 1rem; letter-spacing: 1px; font-size: 0.9rem; text-transform: uppercase; }
.footer-links ul li { margin-bottom: 0.5rem; }
.footer-links ul li a { color: var(--text-muted); font-size: 0.9rem; }
.footer-links ul li a:hover { color: var(--gold); }
.footer-contact p, .footer-contact a { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.4rem; display: block; }
.footer-bottom {
    text-align: center;
    padding: 1rem;
    border-top: 1px solid #222;
    color: #555;
    font-size: 0.8rem;
}

/* ===== HERO BANNER SLIDER ===== */
.hero-banner {
    position: relative;
    height: 90vh;
    min-height: 500px;
    overflow: hidden;
}
.banner-slides { position: relative; width: 100%; height: 100%; }
.banner-slide {
    position: absolute;
    inset: 0;
    background-color: #0a0800;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-slide .banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}
.banner-slide.active { opacity: 1; z-index: 1; }
.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}
.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 750px;
}
.banner-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 7vw, 5rem);
    color: var(--white);
    line-height: 1.1;
    margin: 0.8rem 0;
}
.banner-content h1 span { color: var(--gold); }
.banner-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}
/* Dots */
.banner-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.5rem;
}
.dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    border: none;
}
.dot.active { background: var(--gold); transform: scale(1.3); }
/* Arrows */
.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--gold);
    color: var(--gold);
    width: 46px; height: 46px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex; align-items: center; justify-content: center;
}
.banner-arrow:hover { background: var(--gold); color: var(--dark); }
.banner-arrow.prev { left: 1.5rem; }
.banner-arrow.next { right: 1.5rem; }

/* ===== INFO STRIP ===== */
.info-strip {
    background: var(--gold);
    padding: 0.7rem 1.5rem;
}
.info-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}
.strip-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--dark);
    font-weight: 600;
}
.strip-icon { font-size: 1rem; }
.strip-item a { color: var(--dark); font-weight: 700; }

/* ===== GALLERY PREVIEW (Home) ===== */
.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}
.gal-thumb {
    position: relative;
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    background: var(--dark3);
}
.gal-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
    display: block;
}
.gal-thumb:hover img { transform: scale(1.08); }
.gal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(201,168,76,0.0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.gal-thumb:hover .gal-overlay { background: rgba(0,0,0,0.5); }
.gal-overlay span {
    color: #fff;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.3s;
}
.gal-thumb:hover .gal-overlay span { opacity: 1; }

/* Placeholder cards */
.gal-ph {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #444;
}
.gal-ph-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: var(--muted);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.gal-ph-icon { font-size: 1.5rem; }
.gal-ph-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
.gal-ph-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-top: 1rem;
}
.gal-ph-note code {
    background: var(--dark3);
    padding: 0.1rem 0.4rem;
    color: var(--gold);
    border-radius: 2px;
    font-size: 0.82rem;
}

/* ===== PROMO BANNER ===== */
.promo-banner {
    background: linear-gradient(135deg, #1a0f00 0%, #0d0800 100%);
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
    padding: 2rem 1.5rem;
}
.promo-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.promo-text h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}
.promo-text p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== GALLERY PAGE ===== */
.gal-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    justify-content: center;
}
.gal-tab {
    padding: 0.5rem 1.1rem;
    border: 1px solid #444;
    color: var(--text-muted);
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.gal-tab:hover { border-color: var(--gold); color: var(--gold); }
.gal-tab.active { background: var(--gold); color: var(--dark); border-color: var(--gold); font-weight: 700; }
.tab-count {
    background: rgba(0,0,0,0.2);
    padding: 0.05rem 0.4rem;
    border-radius: 10px;
    font-size: 0.72rem;
}
.gal-tab.active .tab-count { background: rgba(0,0,0,0.25); color: var(--dark); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 0.8rem;
}
.gal-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    background: var(--dark3);
}
.gal-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
    display: block;
}
.gal-item:hover img { transform: scale(1.08); }
.gal-item .gal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.gal-item:hover .gal-overlay { background: rgba(0,0,0,0.5); }
.gal-zoom {
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s;
    color: #fff;
}
.gal-item:hover .gal-zoom { opacity: 1; }

/* Empty state */
.gal-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}
.gal-empty-icon { font-size: 4rem; margin-bottom: 1rem; }
.gal-empty h3 { font-family: 'Playfair Display', serif; color: var(--gold); margin-bottom: 0.5rem; }
.gal-upload-info {
    max-width: 500px;
    margin: 2rem auto 0;
    background: var(--dark3);
    border: 1px solid #333;
    padding: 1.5rem;
    text-align: left;
    border-left: 3px solid var(--gold);
}
.gal-upload-info h4 { color: var(--gold); margin-bottom: 0.8rem; }
.gal-upload-info ul { list-style: none; }
.gal-upload-info ul li {
    color: var(--text-muted);
    font-size: 0.88rem;
    padding: 0.25rem 0;
}
.gal-upload-info code {
    background: var(--dark2);
    color: var(--gold);
    padding: 0.1rem 0.4rem;
    border-radius: 2px;
    font-size: 0.82rem;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.lightbox.active { display: flex; }
.lb-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}
.lb-content img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border: 1px solid var(--gold);
    display: block;
    margin: 0 auto;
}
.lb-caption {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    margin-top: 0.8rem;
    text-transform: capitalize;
    letter-spacing: 1px;
}
.lb-counter { color: var(--text-muted); font-size: 0.8rem; margin-top: 0.3rem; }
.lb-close {
    position: fixed;
    top: 1.2rem;
    right: 1.5rem;
    background: none;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 1.2rem;
    width: 40px; height: 40px;
    cursor: pointer;
    z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
}
.lb-close:hover { background: var(--gold); color: var(--dark); }
.lb-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    border: 1px solid var(--gold);
    color: var(--gold);
    width: 48px; height: 48px;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
}
.lb-arrow:hover { background: var(--gold); color: var(--dark); }
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }

/* ===== CONTACT PAGE ===== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.form-title {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid #333;
}
.enquiry-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-group {
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: column;
}
.form-group label {
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}
.form-group label span { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
    background: var(--dark3);
    border: 1px solid #444;
    color: var(--white);
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-family: 'Lato', sans-serif;
    border-radius: 2px;
    outline: none;
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--dark2); }
.form-group textarea { resize: vertical; }
.btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    letter-spacing: 2px;
    cursor: pointer;
    border: none;
}
.alert-success {
    background: rgba(201,168,76,0.15);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 1rem 1.2rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}
.alert-error {
    background: rgba(200,50,50,0.12);
    border: 1px solid #c83232;
    color: #f88;
    padding: 1rem 1.2rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}
.alert-error p { margin-bottom: 0.2rem; }
.info-cards { margin-bottom: 1.5rem; }
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #2a2a2a;
}
.info-icon { font-size: 1.5rem; color: var(--gold); min-width: 30px; text-align: center; }
.info-item h4 { color: var(--gold); margin-bottom: 0.2rem; font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; }
.info-item p, .info-item a { color: var(--text-muted); font-size: 0.9rem; }
.map-wrap { border: 1px solid var(--gold); overflow: hidden; border-radius: 3px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    nav, .header-phone { display: none; }
    .hamburger { display: block; }
    .mobile-nav { display: none; }
    .mobile-nav.open { display: block; }
    .hero { min-height: 70vh; }
    .btn-outline { margin-left: 0; margin-top: 0.8rem; }
    .hero-buttons { display: flex; flex-direction: column; align-items: center; gap: 0.8rem; }
    .hero-buttons .btn { margin: 0; }
    .contact-layout { grid-template-columns: 1fr; }
    .enquiry-form .form-row { grid-template-columns: 1fr; }
    .hero-banner { height: 70vh; }
    .banner-arrow { display: none; }
    .gallery-preview-grid { grid-template-columns: repeat(2, 1fr); }
    .gal-ph-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .promo-inner { flex-direction: column; text-align: center; }
    .info-strip-inner { gap: 0.8rem; }
}
