:root {
  --bg: #08111f;
  --bg-soft: #101c2f;
  --card: #ffffff;
  --text: #172033;
  --muted: #64748b;
  --line: #dbe3ef;
  --accent: #0f6fb7;
  --accent-dark: #084b7c;
  --accent-soft: #e7f3fb;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(8, 17, 31, 0.16);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #f7f9fc;
  line-height: 1.6;
}

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

ul {
  padding-left: 1.2rem;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  max-width: 860px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

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

.logo {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent-dark);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

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

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  font-weight: 700;
}

.hero {
  background:
    linear-gradient(135deg, rgba(8, 17, 31, 0.94), rgba(15, 111, 183, 0.82)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent 32%);
  color: var(--white);
  padding: 6rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.hero .eyebrow {
  color: #9cd7ff;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
  max-width: 780px;
}

.hero-text {
  margin-top: 1.5rem;
  max-width: 660px;
  color: #d7e6f5;
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 12px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn.primary {
  background: var(--accent);
  color: var(--white);
}

.btn.primary:hover {
  background: var(--accent-dark);
}

.btn.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero-card {
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
  padding: 2rem;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  font-size: 1.55rem;
  color: var(--accent-dark);
  margin-bottom: 0.35rem;
}

.hero-card > p {
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.hero-card li {
  margin-bottom: 0.45rem;
}

.quick-contact {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.55rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--accent-dark);
  font-weight: 700;
  word-break: break-word;
}

.section {
  padding: 5rem 0;
}

.intro-section {
  background: var(--white);
}

.intro-section h2,
.section-heading h2,
.split-grid h2,
.credentials-card h2,
.contact-grid h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.intro-section p:not(.section-label),
.section-heading p,
.split-grid p,
.credentials-card p,
.contact-grid p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

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

.service-card {
  background: var(--card);
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 14px 40px rgba(8, 17, 31, 0.06);
}

.service-card h3 {
  color: var(--accent-dark);
  font-size: 1.2rem;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.service-card li {
  margin-bottom: 0.7rem;
  color: #334155;
}

.split-section {
  background: var(--bg);
  color: var(--white);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.split-section .section-label {
  color: #9cd7ff;
}

.split-section p {
  color: #d7e6f5;
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.feature-item span {
  color: #9cd7ff;
  font-weight: 900;
}

.feature-item p {
  color: var(--white);
  font-weight: 700;
}

.credentials {
  background: linear-gradient(180deg, var(--accent-soft), #f7f9fc);
}

.credentials-card {
  background: var(--white);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.contact-details {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: 20px;
  background: var(--accent-soft);
}

.contact-details p {
  margin-bottom: 0.5rem;
  color: var(--text);
}

.contact-details a {
  color: var(--accent-dark);
  font-weight: 800;
}

.contact-form {
  background: #f7f9fc;
  padding: 1.5rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  display: grid;
  gap: 0.75rem;
}

.contact-form label {
  font-weight: 800;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font: inherit;
  outline: none;
  background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(15, 111, 183, 0.12);
}

.full-width {
  width: 100%;
  border: 0;
  margin-top: 0.5rem;
}

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

.footer {
  padding: 1.5rem 0;
  background: var(--bg);
  color: #d7e6f5;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer a {
  color: #9cd7ff;
  font-weight: 800;
}

@media (max-width: 900px) {
  .hero-grid,
  .cards-grid,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    align-items: flex-start;
    padding: 1rem 0;
  }

  .nav-links {
    justify-content: flex-end;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .nav {
    flex-direction: column;
  }

  .hero {
    padding: 4rem 0;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .section {
    padding: 3.5rem 0;
  }
}

/*
Everything below is for the photo gallery.
*/


.gallery-link,
.btn {
  display: inline-block;
  padding: 0.9rem 1.4rem;
  background: #1f7fcf;
  color: white;
  text-decoration: none;
  border-radius: 0.8rem;
  font-weight: 700;
  transition: 0.2s ease;
}

.gallery-link:hover,
.btn:hover {
  background: #155f9c;
  transform: translateY(-2px);
}

.gallery-header {
  padding: 2rem 8% 4rem;
  background: #eef4fb;
}

.gallery-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
}

.logo {
  color: #102a43;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.1rem;
}

.back-link {
  color: #1f7fcf;
  text-decoration: none;
  font-weight: 700;
}

.back-link:hover {
  text-decoration: underline;
}

.gallery-hero {
  max-width: 760px;
}

.gallery-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #102a43;
  margin-bottom: 1rem;
}

.gallery-hero p {
  color: #55708f;
  font-size: 1.1rem;
  line-height: 1.7;
}

.gallery-page {
  padding: 4rem 8%;
  background: #ffffff;
}

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

.gallery-card {
  background: white;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(16, 42, 67, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(16, 42, 67, 0.16);
}

.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  background: #d9e2ec;
}

.gallery-caption {
  padding: 1.25rem;
}

.gallery-caption h2 {
  color: #102a43;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.gallery-caption p {
  color: #55708f;
  line-height: 1.5;
  font-size: 0.95rem;
}

@media (max-width: 950px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .gallery-header {
    padding: 1.5rem 1.25rem 3rem;
  }

  .gallery-nav {
    margin-bottom: 3rem;
  }

  .gallery-page {
    padding: 3rem 1.25rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card img {
    height: 220px;
  }
}
