/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #050505; 
    --text-main: #d1d1d1; 
    --text-heading: #ffffff;
    --accent: #bda069; 
    --muted-accent: #9a8a72;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-main);
    line-height: 1.8;
    background-color: var(--bg-color);
}

h1, h2, h3, .manifesto-quote {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    color: var(--text-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Fixed Navbar with Clean Dark Luxury Aesthetic */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%; /* Tightened padding so the navbar doesn't get too tall */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
   background: #000000;  /* fallback for old browsers */
background: -webkit-linear-gradient(to left, #434343, #000000);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to left, #434343, #000000); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

.brand-logo {
    height: 120px; /* Scaled up to counteract the empty transparent space in the image file */
    width: auto;
    object-fit: contain;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: drop-shadow(0 0 5px rgba(189, 160, 105, 0.15));
}

.brand-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 12px rgba(189, 160, 105, 0.4)); /* Enhanced gold glow on hover */
}

/* Stacked Logo Group */
.brand-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 6px;
    transition: transform 0.4s ease;
}

.brand-group:hover {
    transform: scale(1.03);
}

.brand-emblem {
    height: 55px; /* Sized specifically for the stacked look */
    width: auto;
    object-fit: contain;
    mix-blend-mode: lighten;
    filter: drop-shadow(0 0 5px rgba(189, 160, 105, 0.2));
}

.brand-text {
    font-family: 'Playfair Display', serif;
    color: var(--accent);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Right Side Grouping */
.nav-right {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--muted-accent);
    font-family: 'Playfair Display', serif;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    transition: color 0.3s, text-shadow 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
    text-shadow: 0 0 8px rgba(189, 160, 105, 0.3);
}

/* Gold Outline Apply Button */
.btn-primary {
    text-decoration: none;
    color: var(--accent);
    font-family: 'Playfair Display', serif;
    background: transparent;
    border: 1px solid var(--accent);
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: rgba(189, 160, 105, 0.1);
    box-shadow: inset 0 0 10px rgba(189, 160, 105, 0.2);
}

/* Story Block Layout */
.story-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 8rem; 
}

.story-block.intro {
    padding-top: 12rem; /* Increased to account for taller stacked navbar */
}

/* Text Container Styling */
.text-content {
    max-width: 800px;
    width: 90%;
    text-align: center;
    margin-bottom: 4rem; 
}

.text-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.text-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.text-content p strong {
    color: var(--text-heading);
    font-weight: 400;
}

.manifesto-quote {
    font-size: 1.6rem;
    font-style: italic;
    color: var(--accent);
    line-height: 1.6;
    margin: 2rem 0;
    text-transform: none;
    letter-spacing: 1px;
}

/* Image Container Styling */
.image-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.image-content img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    filter: brightness(0.8); 
    transition: filter 0.5s ease;
}

.image-content img:hover {
    filter: brightness(1);
}

/* CTA Section */
.cta-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.link-item {
    color: var(--text-heading);
    text-decoration: none;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 5px;
    align-self: center;
    transition: color 0.3s;
}

.link-item:hover {
    color: var(--accent);
}

/* Detailed Services Grid */
.services-detail-block {
    padding-bottom: 6rem;
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 4rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    text-align: left;
}

.service-category h3 {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 0.3rem;
    letter-spacing: 1px;
}

.service-subtitle {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--muted-accent);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.service-list {
    list-style: none;
}

.service-list li {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-main);
}

/* Custom Gold Dash for Bullet Points */
.service-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.service-list li strong {
    color: var(--text-heading);
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    font-weight: 400;
    display: block; /* Puts the bold title on its own line */
    margin-bottom: 0.2rem;
}

/* =========================================
   Footer & Contacts Section 
   ========================================= */
footer {
    margin-top: 0; /* Removes the double-gap from the services section above */
    padding: 6rem 5% 3rem 5%;
    text-align: center;
    background-color: #000; /* Pure black to anchor the bottom of the page */
    border-top: 1px solid #1a1a1a;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    margin-bottom: 2rem;
    opacity: 0.4; /* Keeps the bottom logo subtle */
    transition: opacity 0.4s ease;
}

.footer-logo:hover {
    opacity: 1;
}

footer h2 {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--accent);
    letter-spacing: 2px;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-details p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

/* Styles the "Email:" and "Direct Line:" labels */
.contact-details strong {
    color: var(--muted-accent);
    font-weight: 400;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    margin-right: 10px;
}

/* Styles the actual email address and phone number */
.contact-details a {
    color: var(--text-heading);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.contact-details a:hover {
    color: var(--accent);
    text-shadow: 0 0 8px rgba(189, 160, 105, 0.3);
}

.locations {
    margin-bottom: 4rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--muted-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.locations .dot {
    color: var(--accent);
    margin: 0 15px;
}

.footer-bottom {
    border-top: 1px solid #111;
    width: 100%;
    max-width: 600px;
    padding-top: 2rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #444;
    letter-spacing: 1px;
}