
/* =============================================
    RESET
    Removes default browser spacing and ensures
    consistent sizing across all elements
============================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html { scroll-behavior: smooth; }

/* Base page: black background, light text */
body {
    background-color: #0a0a0a;
    color: #f0f0f0;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.6;
}

/* Brand red pulled from the logo */
:root {
    --red: #c0181a;
}


/* =============================================
    HEADER
    Takes up the full screen height on arrival so the
    logo is the only thing the visitor sees. Everything
    else begins when they scroll down.
============================================= */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: relative;
    border-bottom: 1px solid #1a1a1a;
    background: #0a0a0a;
}

/* Logo fades in and scales up gently on page load */
.site-logo {
    width: 780px;
    max-width: 85%;
    height: auto;
    display: block;
    mix-blend-mode: lighten;
    opacity: 0;
    animation: logoFadeIn 4s ease forwards;
}

@keyframes logoFadeIn {
    0%   { opacity: 0; transform: scale(0.96); }
    100% { opacity: 1; transform: scale(1); }
}

/* Subtle animated arrow at the bottom nudging the visitor to scroll */
.scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #333;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    animation: bounce 2s infinite;
}

.scroll-hint svg {
    width: 18px;
    height: 18px;
    stroke: #333;
    fill: none;
    stroke-width: 1.5;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}


/* =============================================
    HERO SECTION
    Headline, subheading, tagline, and CTA button
============================================= */
.hero {
    text-align: center;
    padding: 70px 24px 60px;
    border-bottom: 1px solid #1a1a1a;
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    letter-spacing: 0.1em;
    color: #f0f0f0;
    line-height: 1.1;
    margin-bottom: 20px;
}

/* Red accent on "Securing" to match brand colour */
.hero h1 span { color: var(--red); }

/* Subheading describing the services */
.hero p {
    font-size: 1rem;
    color: #999;
    max-width: 580px;
    margin: 0 auto 12px;
    line-height: 1.8;
}

/* Tagline line inside the h1 */
.hero-tagline-heading {
    color: #f0f0f0;
    letter-spacing: 0.08em;
}

/* Single CTA button */
.hero-btns {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.btn-primary {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 14px 36px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
}

.btn-primary:hover { background: #a01416; }


/* =============================================
    NAVIGATION
    Sticky bar that stays at the top while scrolling.
    Links get a red underline on hover to match the brand.
============================================= */
nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 18px 20px;
    background: #0a0a0a;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #1a1a1a;
}

nav a {
    color: #888;
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: color 0.2s, border-color 0.2s;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
}

/* Red underline and white text on hover */
nav a:hover {
    color: #f0f0f0;
    border-bottom-color: var(--red);
}


/* =============================================
    SHARED SECTION LAYOUT
    All content sections are centred with a max width
============================================= */
section {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Section heading e.g. "About", "Our Services" */
.section-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 0.1em;
    color: #f0f0f0;
    margin-bottom: 16px;
    width: 100%;
}

/* Thin rule below each heading */
.divider {
    width: 100%;
    height: 1px;
    background: #1e1e1e;
    margin-bottom: 48px;
}

/* Thin horizontal separator between major sections */
.section-sep {
    border: none;
    border-top: 1px solid #111;
}


/* =============================================
    ABOUT SECTION
    Company overview text, centred
============================================= */
#about .about-text {
    max-width: 640px;
    color: #bbb;
    font-size: 1rem;
    line-height: 1.9;
}

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


/* =============================================
    SERVICES SECTION
    Four service cards in a 2x2 grid
============================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.service-card {
    border: 1px solid #1e1e1e;
    padding: 32px 28px;
    text-align: left;
    transition: border-color 0.2s;
}

.service-card:hover { border-color: var(--red); }

/* Red marker bar above each service title */
.service-card .card-marker {
    width: 28px;
    height: 2px;
    background: var(--red);
    margin-bottom: 16px;
}

.service-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    color: #f0f0f0;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.88rem;
    color: #888;
    line-height: 1.7;
}


/* =============================================
    WHY CHOOSE US SECTION
    Checklist of selling points
============================================= */
#why .why-list {
    list-style: none;
    width: 100%;
    max-width: 560px;
    text-align: left;
}

#why .why-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #161616;
    font-size: 0.95rem;
    color: #ccc;
}

#why .why-list li:last-child { border-bottom: none; }

/* Red tick before each item */
#why .why-list li::before {
    content: '\2713';
    color: var(--red);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
    transition: text-shadow 0.3s;
}

#why .why-list li:hover::before {
    text-shadow: 0 0 8px var(--red), 0 0 18px rgba(192, 24, 26, 0.5);
}


/* =============================================
    MISSION STATEMENT SECTION
    Full-width dark panel with a centred pull quote
============================================= */
#mission {
    background: #0d0d0d;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
    max-width: 100%;
    width: 100%;
    padding: 80px 24px;
}

#mission .mission-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

#mission blockquote {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #ddd;
    line-height: 1.8;
    font-style: italic;
    font-weight: 300;
}

/* Large red opening quote mark */
#mission blockquote::before {
    content: '\201C';
    display: block;
    font-size: 3rem;
    color: var(--red);
    line-height: 1;
    margin-bottom: 12px;
    font-style: normal;
}

/* Large red closing quote mark */
#mission blockquote::after {
    content: '\201D';
    display: block;
    font-size: 3rem;
    color: var(--red);
    line-height: 1;
    margin-top: 12px;
    font-style: normal;
}

#mission .mission-label {
    margin-top: 28px;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #555;
}


/* =============================================
    CORE VALUES SECTION
    Six value cards in a 3-column grid
============================================= */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.value-card {
    border: 1px solid #1a1a1a;
    padding: 28px 24px;
    text-align: left;
    transition: border-color 0.2s;
}

.value-card:hover { border-color: var(--red); }

.value-card h4::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--red);
    margin-bottom: 14px;
}

.value-card h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem;
    letter-spacing: 0.1em;
    color: #f0f0f0;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.82rem;
    color: #777;
    line-height: 1.7;
}


/* =============================================
    TESTIMONIALS SECTION
============================================= */
.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    margin-top: 40px;
}

.video-testimonial-card {
    border: 1px solid #1e1e1e;
    overflow: hidden;
    transition: border-color 0.2s;
}

.video-testimonial-card:hover { border-color: var(--red); }

.video-testimonial-card video {
    width: 100%;
    display: block;
    background: #000;
}

.video-caption {
    padding: 12px 16px;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #666;
    border-top: 1px solid #1a1a1a;
}


/* =============================================
    CONTACT SECTION
    Bordered enquiry form, centred on the page.
    Already connected to Formspree.
============================================= */
#contact .contact-form {
    border: 1px solid #1e1e1e;
    padding: 40px;
    max-width: 560px;
    width: 100%;
    text-align: left;
}

/* Wraps each label and input pair */
.field-group { margin-bottom: 24px; }

.field-group label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 8px;
}

/* Shared styles for text inputs and textarea */
.field-group input,
.field-group textarea {
    width: 100%;
    background: #0f0f0f;
    border: 1px solid #1e1e1e;
    color: #f0f0f0;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.2s;
}

/* Input highlights red on focus to match the brand */
.field-group input:focus,
.field-group textarea:focus { border-color: var(--red); }

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

/* Submit button uses brand red */
.submit-btn {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
}

.submit-btn:hover { background: #a01416; }


/* =============================================
    FOOTER
============================================= */
footer {
    border-top: 1px solid #111;
    text-align: center;
    padding: 36px 20px;
    color: #333;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
}

footer span { color: var(--red); }

.socials-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #444;
    margin-bottom: 12px;
}

/* Instagram icon link in the footer */
.instagram-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #444;
    transition: color 0.3s, filter 0.3s;
}

.instagram-link:hover {
    color: var(--red);
    filter: drop-shadow(0 0 8px var(--red)) drop-shadow(0 0 16px rgba(192, 24, 26, 0.5));
}

.instagram-link svg {
    width: 54px;
    height: 54px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =============================================
    RESPONSIVE
    Adjustments for smaller screens
============================================= */
@media (max-width: 640px) {
    .services-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .video-testimonials-grid { grid-template-columns: 1fr; }
    nav { gap: 10px; padding: 14px 10px; }
    nav a { font-size: 0.6rem; letter-spacing: 0.1em; }
    #contact .contact-form { padding: 24px 20px; }
}

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