﻿:root {
  --navy: #14356d;
  --red: #c92e33;
  --gold: #efb529;
  --ink: #10243d;
  --stone: #f4f1eb;
  --white: #ffffff;
  --muted: #5e6978;
  --radius: 16px;
  --shadow: 0 14px 30px rgba(16, 36, 61, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Source Sans 3", sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background:
    radial-gradient(circle at 10% 0%, rgba(239, 181, 41, 0.14), transparent 45%),
    radial-gradient(circle at 90% 8%, rgba(201, 46, 51, 0.09), transparent 35%),
    var(--white);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.slim {
  width: min(780px, 100%);
}

h1,
h2,
h3,
h4 {
  line-height: 1.1;
  margin: 0 0 0.7rem;
}

h1,
h2,
h3 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.03em;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 4.8rem);
}

h2 {
  font-size: clamp(1.8rem, 4.2vw, 3rem);
}

h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

p {
  margin: 0 0 1rem;
}

.eyebrow {
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 62ch;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(20, 53, 109, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  min-height: 82px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand span {
  font-size: 1.02rem;
  color: var(--navy);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav > a {
  font-weight: 600;
  color: var(--ink);
}

.site-nav > a.btn {
  color: var(--white);
}

.site-nav > a:not(.btn).is-active {
  color: var(--red);
}

.site-nav .btn.is-active-cta {
  background: linear-gradient(135deg, var(--navy), #0e2a56);
  color: var(--white);
}

.menu-toggle {
  display: none;
}

.menu-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.menu-icon span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #b52228;
}

.btn {
  display: inline-block;
  border: 0;
  cursor: pointer;
  background: linear-gradient(135deg, var(--red), #ad1d24);
  color: var(--white);
  border-radius: 999px;
  padding: 0.76rem 1.35rem;
  font-weight: 700;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-small {
  padding: 0.55rem 1rem;
}

.hero {
  padding: 4.4rem 0 3.4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2.2rem;
  align-items: center;
}

.hero-image {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.hero-actions {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-hero {
  padding: 3rem 0 1.5rem;
}

.intro-block,
.content-section,
.gallery,
.feature-strip,
.cta-band {
  padding: 3rem 0;
}

.feature-strip {
  background: var(--stone);
}

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

.grid-3 article {
  background: var(--white);
  padding: 1.3rem;
  border-radius: 14px;
  border: 1px solid rgba(16, 36, 61, 0.07);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 1rem;
}

.shot {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 240px;
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shot-a img {
  object-position: center 50%;
}

.shot-b img {
  object-position: center 30%;
}

.shot-c img {
  object-position: center 70%;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  align-items: start;
}

.about-image {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  min-height: 380px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.service-card {
  background: var(--white);
  border: 1px solid rgba(16, 36, 61, 0.08);
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow: 0 8px 20px rgba(16, 36, 61, 0.06);
}

.contact-card,
.form-card {
  background: var(--white);
  border: 1px solid rgba(16, 36, 61, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.35rem;
}

.form-card label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.form-card input,
.form-card textarea,
.form-card select {
  width: 100%;
  margin-bottom: 0.95rem;
  padding: 0.74rem;
  border-radius: 10px;
  border: 1px solid rgba(16, 36, 61, 0.2);
  font: inherit;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.95rem;
}

.form-grid > div {
  min-width: 0;
}

.form-feedback {
  margin-top: 0.6rem;
  font-weight: 700;
  color: var(--navy);
}

.form-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.cta-band {
  background: linear-gradient(120deg, var(--navy), #0e2a56);
  color: var(--white);
}

.cta-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.site-footer {
  background: #0f284f;
  color: #e8edf6;
  margin-top: 1.5rem;
  padding-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 1.4rem;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin-bottom: 0.45rem;
}

.footer-logo {
  width: 88px;
  margin-bottom: 0.7rem;
}

.copyright {
  margin: 0;
  text-align: center;
  padding: 1.1rem 0 1.3rem;
  border-top: 1px solid rgba(232, 237, 246, 0.15);
  margin-top: 1.2rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .services-grid,
  .footer-grid,
  .grid-3,
  .gallery-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.8rem;
  }

  .cta-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(16, 36, 61, 0.14);
    border-radius: 999px;
    padding: 0;
    background: #f8f7f5;
    box-shadow: 0 6px 16px rgba(16, 36, 61, 0.12);
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 82px;
    background: var(--white);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    padding: 0.8rem 4%;
    border-bottom: 1px solid rgba(16, 36, 61, 0.1);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav .btn-small {
    width: 100%;
    text-align: center;
    margin-top: 0.2rem;
  }

  .container.slim{
    padding-left: 20px;
    padding-right: 20px;
  }
}
