/* ============================================================
   LASERSHOT LTD - STYLESHEET
   Brand: laser clay pigeon shooting hire
   Signature device: a red "beam" line + crosshair/reticle motif
   echoing the logo, used as section dividers, arrows and corner
   framing throughout the site instead of generic stock icons.
   ============================================================ */

:root {
    /* Brand colours - sampled directly from the Lasershot logo */
    --color-ink: #181818;
    --color-ink-soft: #242424;
    --color-red: #fc1d26;
    --color-red-dark: #d3141c;
    --color-white: #ffffff;
    --color-paper: #f6f5f3;
    --color-grey: #6e6e6e;
    --color-border: #e3e1dd;

    /* Type */
    --font-display: 'Saira Condensed', 'Arial Narrow', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Layout */
    --container-width: 1240px;
    --radius: 0px; /* sharp, square edges throughout */
    --slant: 18px; /* default clip-path slant amount for buttons/cards */

    /* Motion */
    --transition: 0.25s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; padding: 0; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
    font-family: var(--font-body);
    color: var(--color-ink);
    background: var(--color-white);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Accessibility ---------- */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--color-red);
    color: var(--color-white);
    padding: 10px 18px;
    z-index: 1000;
    font-weight: 700;
}
.skip-link:focus { left: 0; }

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
    outline: 3px solid var(--color-red);
    outline-offset: 3px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.05;
    letter-spacing: 0.5px;
    color: var(--color-ink);
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); font-weight: 900; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 1.6vw, 1.5rem); }

p { color: var(--color-ink); }
p + p { margin-top: 14px; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: var(--color-red);
    margin-bottom: 10px;
}
.eyebrow--light { color: var(--color-white); }

.section-heading { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-heading__cta { text-align: center; margin-top: 40px; }

/* Signature "trajectory" divider - a dashed red tracer line under headings */
.divider-dash {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 14px 0 22px;
}
.divider-dash::before,
.divider-dash::after { content: ''; }
.divider-dash {
    background-image: linear-gradient(90deg, var(--color-red) 0 22px, transparent 22px 30px, var(--color-red) 30px 40px, transparent 40px 48px, var(--color-ink) 48px 64px);
    background-repeat: no-repeat;
    height: 4px;
    width: 100px;
}
.divider-dash--center { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    padding: 14px 30px;
    transition: transform var(--transition), background var(--transition), color var(--transition);
    border: 2px solid transparent;
}
.btn-slant { clip-path: polygon(0 0, 100% 0, calc(100% - var(--slant)) 100%, 0 100%); }
.btn-primary {
    background: var(--color-red);
    color: var(--color-white);
}
.btn-primary:hover { background: var(--color-red-dark); transform: translateY(-2px); }
.btn-outline {
    background: transparent;
    border-color: var(--color-white);
    color: var(--color-white);
}
.btn-outline:hover { background: var(--color-white); color: var(--color-ink); }
.btn-large { padding: 18px 40px; font-size: 1.15rem; }
.btn-small { padding: 8px 18px; font-size: 0.85rem; }

.btn-link {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-ink);
    border-bottom: 2px solid var(--color-red);
    padding-bottom: 4px;
}
.btn-link:hover { color: var(--color-red); }
.btn-link--light { color: var(--color-white); border-color: var(--color-red); }
.btn-link--small { font-size: 0.85rem; }

/* "Beam arrow" - a streak + arrowhead echoing the logo's laser beam,
   used instead of a generic icon-font arrow */
.beam-arrow {
    display: inline-block;
    width: 26px;
    height: 2px;
    background: var(--color-red);
    margin-left: 10px;
    position: relative;
    top: -1px;
    transition: width var(--transition);
}
.beam-arrow::after {
    content: '';
    position: absolute;
    right: -1px;
    top: -4px;
    border-style: solid;
    border-width: 5px 0 5px 8px;
    border-color: transparent transparent transparent var(--color-red);
}
.btn-link:hover .beam-arrow { width: 34px; }

/* Crosshair tick used as a bullet marker, ties to the targeting theme */
.tick {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 8px;
    position: relative;
}
.tick::before, .tick::after { content: ''; position: absolute; background: var(--color-red); }
.tick::before { width: 10px; height: 2px; top: 4px; left: 0; }
.tick::after { width: 2px; height: 10px; left: 4px; top: 0; }

.check-list { margin: 22px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 6px; }
.check-list .tick { margin-top: 6px; flex-shrink: 0; }

/* ---------- Image placeholders (swap for real photography) ---------- */
.img-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: repeating-linear-gradient(135deg, #1f1f1f 0 18px, #2a2a2a 18px 36px);
    overflow: hidden;
}
.img-placeholder::after {
    content: attr(data-label);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px;
    color: rgba(255,255,255,0.55);
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}
.img-placeholder--tall { aspect-ratio: 4 / 5; }

.corner-frame {
    position: absolute;
    inset: 16px;
    pointer-events: none;
    border: 0;
}
.corner-frame::before, .corner-frame::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    border: 3px solid var(--color-red);
}
.corner-frame::before { top: 0; left: 0; border-right: none; border-bottom: none; }
.corner-frame::after { bottom: 0; right: 0; border-left: none; border-top: none; }
.split__media { position: relative; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar { background: var(--color-ink); color: var(--color-white); font-size: 0.85rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; padding: 8px 24px; flex-wrap: wrap; gap: 8px; }
.topbar__contact { display: flex; gap: 22px; }
.topbar__contact a { display: inline-flex; align-items: center; gap: 6px; transition: color var(--transition); }
.topbar__contact a:hover { color: var(--color-red); }
.topbar__icon { color: var(--color-red); }
.topbar__meta { color: #bdbdbd; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 500;
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    gap: 24px;
}
.site-logo img { height: 56px; width: auto; }

.main-nav ul { display: flex; gap: 28px; align-items: center; }
.main-nav > ul > li { position: relative; }
.main-nav a {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1rem;
    padding: 8px 0;
    border-bottom: 3px solid transparent;
    transition: color var(--transition), border-color var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--color-red); border-color: var(--color-red); }

.has-dropdown .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    min-width: 240px;
    padding: 10px 0;
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    z-index: 50;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { display: block; padding: 10px 20px; border-bottom: none; font-size: 0.9rem; }
.dropdown li a:hover { background: var(--color-paper); color: var(--color-red); }

.site-header__actions { display: flex; align-items: center; gap: 18px; }

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 24px;
}
.mobile-toggle span { display: block; height: 3px; background: var(--color-ink); transition: transform var(--transition), opacity var(--transition); }
.mobile-toggle.is-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-toggle.is-active span:nth-child(2) { opacity: 0; }
.mobile-toggle.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 86%);
    height: 100%;
    background: var(--color-ink);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 900;
    overflow-y: auto;
    padding: 90px 28px 40px;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu a {
    display: block;
    color: var(--color-white);
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu a.active { color: var(--color-red); }
.mobile-submenu ul { padding-left: 16px; }
.mobile-submenu a { font-size: 0.95rem; color: #cfcfcf; border-bottom: none; padding: 8px 0; }
.mobile-cta { margin-top: 18px; text-align: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    background: var(--color-ink);
    overflow: hidden;
}
.hero__media {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
    opacity: 0.95;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(24,24,24,0.55) 0%, rgba(24,24,24,0.92) 100%);
}
.hero__beam {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 60%;
    height: 4px;
    background: var(--color-red);
    transform: rotate(-18deg);
    box-shadow: 0 0 24px rgba(252,29,38,0.7);
    z-index: 1;
}
.hero__inner {
    position: relative;
    z-index: 2;
    padding: 130px 24px 70px;
    max-width: 820px;
}
.hero h1 { color: var(--color-white); margin-bottom: 18px; }
.hero__subtext { color: #e7e7e7; font-size: 1.15rem; max-width: 600px; margin-bottom: 30px; }
.hero__actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

.trust-strip {
    position: relative;
    z-index: 2;
    background: var(--color-red);
}
.trust-strip__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 36px;
    padding: 16px 24px;
    justify-content: center;
}
.trust-strip span {
    display: inline-flex;
    align-items: center;
    color: var(--color-white);
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}
.trust-strip .tick::before, .trust-strip .tick::after { background: var(--color-ink); }

/* ============================================================
   SECTIONS / SPLIT LAYOUT
   ============================================================ */
.section { padding: 90px 0; }
.section--alt { background: var(--color-paper); }

.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.split--reverse .split__media { order: -1; }
.split__text p { max-width: 540px; }
.split__text p + a {
  margin-top: 28px;
}

/* ============================================================
   STEPS (THE EXPERIENCE)
   ============================================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.step-card {
    background: var(--color-ink);
    color: var(--color-white);
    padding: 36px 26px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%);
    position: relative;
    transition: transform var(--transition);
}
.step-card:hover { transform: translateY(-6px); }
.step-card__num {
    display: block;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 900;
    font-size: 2.6rem;
    color: var(--color-red);
    line-height: 1;
    margin-bottom: 14px;
}
.step-card h3 { color: var(--color-white); margin-bottom: 10px; }
.step-card p { color: #d6d6d6; font-size: 0.95rem; }

/* ============================================================
   EVENTS GRID
   ============================================================ */
.events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.event-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.event-card:hover { transform: translateY(-6px); box-shadow: 0 18px 30px rgba(0,0,0,0.08); }
.event-card__media {
    aspect-ratio: 5 / 4;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 26px));
}
.event-card__body { padding: 24px 22px 28px; }
.event-card__body h3 { margin-bottom: 10px; }
.event-card__body p { font-size: 0.92rem; margin-bottom: 18px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    position: relative;
    background: var(--color-ink);
    overflow: hidden;
    padding: 64px 0;
}
.cta-banner--alt { background: var(--color-red-dark); }
.cta-banner__beam {
    position: absolute;
    top: 50%;
    left: -10%;
    width: 70%;
    height: 6px;
    background: rgba(255,255,255,0.12);
    transform: rotate(-10deg);
}
.cta-banner__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.cta-banner h2 { color: var(--color-white); margin-bottom: 8px; }
.cta-banner__text p { color: #e9e9e9; max-width: 480px; }
.cta-banner__actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.cta-banner__phone {
    color: var(--color-white);
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--color-red);
    padding-bottom: 4px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-top: 4px solid var(--color-red);
    padding: 30px 26px;
}
.testimonial-card__stars { color: var(--color-red); margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: 0.98rem; line-height: 1.65; color: var(--color-ink); }
.testimonial-card figcaption {
    margin-top: 18px;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--color-grey);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--color-ink); color: #d6d6d6; padding-top: 70px; }
.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__logo { height: 48px; margin-bottom: 18px; }
.footer__col--brand p { font-size: 0.9rem; color: #b9b9b9; }
.footer__col h3 {
    color: var(--color-white);
    font-size: 1.05rem;
    margin-bottom: 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 0.92rem; transition: color var(--transition); }
.footer__col a:hover { color: var(--color-red); }
.footer__contact li { color: #b9b9b9; font-size: 0.92rem; }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 22px 24px;
    font-size: 0.82rem;
    color: #9a9a9a;
}
.footer__legal { display: flex; gap: 20px; }
.footer__legal a:hover { color: var(--color-red); }

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-ink);
    color: var(--color-white);
    border-top: 4px solid var(--color-red);
    z-index: 1000;
    padding: 18px 24px;
}
.cookie-consent__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.cookie-consent__inner p { font-size: 0.88rem; color: #d6d6d6; flex: 1; min-width: 240px; }
.cookie-consent__inner a { color: var(--color-red); text-decoration: underline; }
.cookie-consent__actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 46px;
    height: 46px;
    background: var(--color-red);
    color: var(--color-white);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity var(--transition), transform var(--transition), background var(--transition);
    z-index: 400;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 12px);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--color-red-dark); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
    .steps-grid, .events-grid { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .main-nav { display: none; }
    .mobile-toggle { display: flex; }
    .split { grid-template-columns: 1fr; gap: 40px; }
    .split--reverse .split__media { order: 0; }
    .topbar__meta { display: none; }
}

@media (max-width: 700px) {
    .steps-grid, .events-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; }
    .cta-banner__inner { flex-direction: column; align-items: flex-start; text-align: left; }
    .hero__inner { padding: 110px 20px 50px; }
}

@media (max-width: 480px) {
    .topbar__contact { gap: 12px; font-size: 0.78rem; }
    .btn-large { width: 100%; }
}
