:root {
  --gold: #d4af37;
  --gold-light: #e9d18c;
  --black: #0a0a0a;
  --black-soft: #141414;
  --text-light: #f5f1e6;
  --text-muted: #b8b2a3;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--black);
  color: var(--text-light);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(10, 10, 10, 0.92);
  border-bottom: 1px solid var(--gold);
  backdrop-filter: blur(6px);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
}

.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: color 0.25s ease;
}

.nav-link:hover {
  color: var(--gold);
}

.header-phone {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  border: 1px solid var(--gold);
  padding: 8px 18px;
  border-radius: 2px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.header-phone:hover {
  background-color: var(--gold);
  color: var(--black);
}

/* ---------- Hero ---------- */
.hero {
  display: flex;
  align-items: stretch;
  min-height: 80vh;
  position: relative;
}

.side-image {
  flex: 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--black);
  position: relative;
  display: none;
}

.side-image-left {
  background-image: url('images/plane-1.jpg');
}

.side-image-right {
  background-image: url('images/plane-2.jpg');
}

.hero-content {
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  background: radial-gradient(circle at 50% 30%, rgba(212,175,55,0.08), transparent 60%);
}

.hero-content h1 {
  font-size: 3.2rem;
  color: var(--text-light);
  margin-bottom: 18px;
  max-width: 720px;
}

.motto {
  font-size: 1.3rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

.hero-phone {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--black);
  background-color: var(--gold);
  padding: 12px 32px;
  border-radius: 2px;
  text-decoration: none;
  margin-bottom: 28px;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.hero-phone:hover {
  background-color: var(--gold-light);
  transform: translateY(-2px);
}

.hero-text {
  max-width: 560px;
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* ---------- Home Photos ---------- */
.home-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.home-photos img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

@media (max-width: 600px) {
  .home-photos img {
    height: 160px;
  }
}

/* ---------- Services ---------- */
.services {
  max-width: 800px;
  margin: 0 auto;
  padding: 90px 24px;
  text-align: center;
}

.services h2 {
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 36px;
}

.services-list {
  list-style: none;
  text-align: left;
  display: inline-block;
  margin: 0 auto 48px;
}

.services-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: var(--text-light);
}

.services-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 38px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
  letter-spacing: 0.05em;
  transition: all 0.25s ease;
}

.btn-solid {
  background-color: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}

.btn-solid:hover {
  background-color: transparent;
  color: var(--gold);
}

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

.btn-outline:hover {
  background-color: var(--gold);
  color: var(--black);
}

/* ---------- Testimonials ---------- */
.testimonials {
  background-color: var(--black-soft);
  padding: 90px 24px;
  text-align: center;
  border-top: 1px solid rgba(212,175,55,0.25);
}

.testimonials h2 {
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 48px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: var(--black);
  border: 1px solid rgba(212,175,55,0.25);
  padding: 32px 26px;
  border-radius: 4px;
  text-align: left;
}

.testimonial-card .quote {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 0.98rem;
}

.testimonial-card .author {
  color: var(--gold);
  font-weight: 500;
  font-size: 0.92rem;
}

/* ---------- Gallery ---------- */
.gallery-page-header {
  max-width: 800px;
  margin: 0 auto;
  padding: 70px 24px 30px;
  text-align: center;
}

.gallery-page-header h1 {
  font-size: 2.6rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.gallery-page-header p {
  color: var(--text-muted);
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 24px 90px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.gallery-grid figure {
  margin: 0;
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--black-soft);
}

.gallery-grid img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.05);
}

/* ---------- Lightbox ---------- */
.gallery-grid figure {
  cursor: pointer;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(10, 10, 10, 0.95);
  z-index: 200;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-image {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border: 1px solid rgba(212,175,55,0.4);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 12px;
}

.lightbox-prev {
  left: 12px;
}

.lightbox-next {
  right: 12px;
}

@media (max-width: 600px) {
  .lightbox-close {
    top: 12px;
    right: 16px;
    font-size: 2rem;
  }

  .lightbox-arrow {
    font-size: 1.4rem;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  text-align: center;
  padding: 48px 24px;
  border-top: 1px solid var(--gold);
}

.site-footer p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.footer-phone {
  display: inline-block;
  color: var(--text-light);
  text-decoration: none;
  font-size: 1.1rem;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

.service-area {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer-nav {
  margin-bottom: 14px;
}

.copyright {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ---------- Responsive ---------- */
@media (min-width: 900px) {
  .side-image {
    display: block;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .motto {
    font-size: 1.05rem;
  }

  .hero-phone {
    font-size: 1.3rem;
    padding: 10px 24px;
  }

  .header-inner {
    flex-wrap: wrap;
    gap: 8px;
  }

  .brand {
    font-size: 1rem;
    flex: 1 1 100%;
  }

  .header-nav {
    flex: 1 1 100%;
    justify-content: space-between;
  }

  .services h2, .testimonials h2 {
    font-size: 1.8rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}
