/* ═══════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red:    #eb0e19;
  --white:  #ffffff;
  --black:  #000000;
  --gray:   #615d5d;
  --light:  #f5f5f5;
  --radius: 6px;
  --shadow: 0 2px 12px rgba(0,0,0,0.10);
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: var(--red);
  text-decoration: none;
  transition: opacity var(--transition);
}

a:hover {
  opacity: 0.75;
}

address {
  font-style: normal;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   HEADER
════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 3px solid var(--red);
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo img {
  width:250px;
  height:auto;
}

.site-nav {
  display: flex;
  gap: 1.75rem;
}

img.logo-icon {
  width:150px;
  height:auto;
  display:block;
  margin:0 auto;
}

.site-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

.site-nav a:hover {
  color: var(--red);
  opacity: 1;
}

/* ═══════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* Replace with: background-image: url('images/hero.jpg'); */
  background-image: url('images/hero_aerial.jpg');
  background-size: cover;
  background-position: center;
  padding-top: 70px; /* offset for fixed header */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 2rem;
  max-width: 750px;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.9);
}

/* ═══════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════ */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}

.btn-primary:hover {
  background: transparent;
  color: var(--white);
  opacity: 1;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   SECTION SHARED
════════════════════════════════════════════ */
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  color: var(--black);
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background: var(--red);
  margin-top: 0.5rem;
  border-radius: 2px;
}

.section-intro {
  color: var(--gray);
  max-width: 640px;
  margin-bottom: 2.5rem;
}

/* ═══════════════════════════════════════════
   SERVICES
════════════════════════════════════════════ */
/* ═══════════════════════════════════════════
   SERVICES – updated layout
════════════════════════════════════════════ */
.services {
  padding: 5rem 0;
  background: var(--white);
}

.services-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.services-intro p {
  color: var(--gray);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

.services-list h3 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 1rem;
}

.service-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-bullets li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.975rem;
  color: var(--black);
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 0.75rem;
}

.service-bullets li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.service-bullets svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .services-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ═══════════════════════════════════════════
   GALLERY
════════════════════════════════════════════ */
.gallery {
  padding: 5rem 0;
  background: var(--light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 4; /* width:height = 3:4 (vertical) */
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* ── Fade-up animation ── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger delay for each item */
.gallery-item:nth-child(1) { transition-delay: 0.05s; }
.gallery-item:nth-child(2) { transition-delay: 0.13s; }
.gallery-item:nth-child(3) { transition-delay: 0.21s; }
.gallery-item:nth-child(4) { transition-delay: 0.29s; }
.gallery-item:nth-child(5) { transition-delay: 0.37s; }
.gallery-item:nth-child(6) { transition-delay: 0.45s; }

/* ════════════════════════════════��══════════
   CONTACT
════════════════════════════════════════════ */
.contact {
  padding: 5rem 0;
  background: var(--white);
}

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

.contact-info .section-intro {
  margin-bottom: 1.75rem;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
}

.contact-list a,
.contact-list address {
  font-size: 1rem;
  color: var(--black);
}

.contact-list a:hover {
  color: var(--red);
  opacity: 1;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 380px;
  height: 100%;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  display: block;
}

/* ═══════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.65);
  text-align: center;
  padding: 1.25rem 0;
  font-size: 0.85rem;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    gap: 1rem;
  }

  .site-nav a {
    font-size: 0.8rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .logo-main {
    font-size: 1rem;
  }
}


@media print {

  @page {
    size: 1100px 2800px; /* width x height — adjust height to match your content */
    margin: 0;
  }
  /* Force a single reasonable page width */
  body { min-width: 1100px; }

  /* Hide nav and buttons */
  .site-header,
  .btn { display: none; }

  /* Prevent breaks inside these elements */
  .services-inner,
  .contact-grid,
  .gallery-grid,
  .card { break-inside: avoid; }

  /* Kill backgrounds/overlays for print */
  .hero-overlay { display: none; }
  .hero {
    min-height: 300px;
    background-size: cover;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}