:root {
    --primary: #ffffff;
    --secondary: #000000;
    --accent: #c9a84c;
    --accent-light: #e8c96a;
    --bg-dark: #0d0d0d;
    --bg-mid: #141414;
    --bg-card: #181818;
    --bg-light: #f5f4f0;
    --text-main: #f0ede8;
    --text-muted: #888;
    --text-dark: #1a1a1a;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 2px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, .display-font {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

/* ─── Navbar ─────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.18);
    transition: padding 0.3s ease;
}

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

.logo img {
    height: 46px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.25rem;
}

.nav-links a {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-weight: 500;
    color: rgba(240, 237, 232, 0.75);
    position: relative;
    padding-bottom: 2px;
}

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

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ─── Hero ───────────────────────────────────────────── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.35) 50%,
        rgba(0,0,0,0.75) 100%
    );
}

.hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55) saturate(0.9);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: clamp(2.8rem, 7.5vw, 5.5rem);
    margin-bottom: 1.1rem;
    letter-spacing: -1px;
    color: #fff;
    text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 3rem;
    font-style: italic;
    font-family: var(--font-display);
    color: rgba(240, 237, 232, 0.7);
    letter-spacing: 0.5px;
}

.hero-btns {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── Buttons ────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 0.9rem 2.4rem;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: #0d0d0d;
    border-color: var(--accent);
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--accent);
    color: var(--accent);
}

.btn-outline {
    border-color: rgba(255,255,255,0.6);
    color: var(--text-main);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ─── Sections ───────────────────────────────────────── */
section {
    padding: 9rem 0;
}

.section-title {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    margin-bottom: 3.5rem;
    text-align: center;
    letter-spacing: -0.5px;
}

.section-title em {
    color: var(--accent);
    font-style: italic;
}

/* ─── About ──────────────────────────────────────────── */
.about {
    background-color: var(--bg-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

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

.about-text p {
    font-size: 1.05rem;
    margin-bottom: 1.6rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image img {
    border-radius: var(--radius);
    box-shadow: 18px 18px 0px var(--accent);
    width: 100%;
    height: 480px;
    object-fit: cover;
}

/* ─── Why Choose Us ──────────────────────────────────── */
.why-us {
    background-color: var(--bg-light);
    color: var(--text-dark);
    position: relative;
}

.why-us .section-title {
    color: var(--text-dark);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.why-card {
    padding: 2.75rem 2.25rem;
    background: #fff;
    border: 1px solid #e8e4dc;
    border-top: 3px solid var(--accent);
    transition: var(--transition);
    position: relative;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.09);
}

.why-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary);
    font-family: var(--font-display);
}

.why-card p {
    color: #5a5a5a;
    font-size: 0.93rem;
    line-height: 1.7;
}

/* ─── Pricing ────────────────────────────────────────── */
.pricing {
    background-color: var(--bg-mid);
    background-image: radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.04) 0%, transparent 60%),
                      radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.03) 0%, transparent 50%);
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin-top: -1.5rem;
}

.pricing-header p strong,
.pricing-header p span {
    color: var(--accent);
}

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

.price-card {
    background: var(--bg-card);
    padding: 3rem 2.5rem;
    border: 1px solid #2a2a2a;
    border-radius: var(--radius);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.price-card:hover {
    border-color: #3a3a3a;
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.price-card.featured {
    border-color: var(--accent);
    background: linear-gradient(160deg, #1e1a10 0%, var(--bg-card) 60%);
}

.price-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -1px;
    right: 2rem;
    background: var(--accent);
    color: #0d0d0d;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 0 0 4px 4px;
}

.price-card h5 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    font-weight: 700;
}

.price-value {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    font-family: var(--font-display);
    color: var(--accent);
    line-height: 1;
}

.price-value span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 400;
}

.price-card .price-divider {
    height: 1px;
    background: #2a2a2a;
    margin: 1.75rem 0;
}

.price-features {
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.price-features li {
    margin-bottom: 0.75rem;
    color: #aaa;
    font-size: 0.88rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.price-features li::before {
    content: '✓';
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.8rem;
}

.price-card .btn {
    width: 100%;
    text-align: center;
}

/* ─── Gallery ────────────────────────────────────────── */
.gallery {
    background-color: var(--bg-dark);
    color: var(--text-main);
}

.gallery .section-title {
    color: var(--text-main);
}

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

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.4s ease;
}

.gallery-item:hover::after {
    background: rgba(201, 168, 76, 0.12);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ─── Contact ────────────────────────────────────────── */
.contact {
    background-color: var(--bg-mid);
    border-top: 1px solid #1e1e1e;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 6rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-main);
}

.info-item {
    margin-bottom: 2.25rem;
    padding-bottom: 2.25rem;
    border-bottom: 1px solid #222;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-item label {
    display: block;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.info-item p {
    font-size: 1.05rem;
    color: var(--text-main);
}

.info-item a:hover {
    color: var(--accent);
}

.enquiry-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: var(--radius);
    padding: 0.9rem 1rem;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.25s ease, background 0.25s ease;
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #444;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: #161616;
}

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

.form-group.full .btn {
    width: auto;
    align-self: flex-start;
}

/* ─── Footer ─────────────────────────────────────────── */
footer {
    padding: 4rem 0 3rem;
    background: #000;
    border-top: 1px solid #1a1a1a;
    text-align: center;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 56px;
    margin: 0 auto;
    opacity: 0.9;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-links a {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.25s ease;
}

.social-links a:hover {
    color: var(--accent);
}

.copyright {
    color: #444;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-image {
        order: -1;
    }
    .about-image img {
        height: 360px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    .nav-links {
        display: none;
    }
    section {
        padding: 6rem 0;
    }
    .hero-content h1 {
        font-size: clamp(2.4rem, 10vw, 3.5rem);
        letter-spacing: -0.5px;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    .about-grid {
        gap: 2.5rem;
    }
    .about-image img {
        height: 280px;
        box-shadow: 10px 10px 0px var(--accent);
    }
    .enquiry-form {
        grid-template-columns: 1fr;
    }
    .form-group.full {
        grid-column: span 1;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .price-card {
        padding: 2.25rem 1.75rem;
    }
}