@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --charcoal: #050507;
  --ink: #0f1115;
  --midnight: #181c20;
  --paper: #f6f6f4;
  --red: #c52d2d;
  --glow: rgba(197, 45, 45, 0.3);
  --border: rgba(255, 255, 255, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--charcoal);
  color: var(--paper);
  min-height: 100vh;
}

a {
  color: inherit;
}

a.no-underline {
  text-decoration: none;
}

a:hover {
  color: var(--red);
}

.video-wrapper,
.video-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.85);
}

.video-overlay {
  background: linear-gradient(180deg, rgba(5, 5, 7, 0.8), rgba(8, 8, 10, 0.95));
}

.page {
  position: relative;
  z-index: 1;
}

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

.hero {
  min-height: 90vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 0 3rem;
}

.hero__content {
  background: rgba(10, 10, 10, 0.75);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 4rem 6rem 3rem 3rem;
  text-align: left;
  position: relative;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(18px);
  max-width: 1100px;
  width: min(100%, 1100px);
  overflow: visible;
}

.hero__logo {
  display: none;
}

.hero__logo--desktop {
  display: block;
  width: 320px;
  position: fixed;
  top: 60px;
  right: 40px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  z-index: 5;
}

.hero__logo--mobile {
  display: none;
  width: 120px;
  margin: 0 auto 1rem;
  padding: 0;
  border-radius: 12px;
  background: transparent;
  border: none;
}

.hero__tag {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.hero__content h1 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: clamp(2.5rem, 4vw, 3.9rem);
  margin: 0.4rem 0 1rem;
}

.hero__content p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.hero__badge {
  border: 1px solid var(--border);
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.primary {
  background: linear-gradient(120deg, var(--red), #ff6b6b);
  color: #fff;
  box-shadow: 0 12px 30px var(--glow);
}

.btn.secondary {
  border-color: var(--border);
  color: #fff;
}

.btn:hover {
  transform: translateY(-2px);
}

main {
  padding-bottom: 4rem;
}

.section {
  padding: 3rem 0;
}

.services-section .services-block {
  background: rgba(20, 20, 24, 0.92);
  border-radius: 24px;
  border: 1px solid var(--border);
  padding: 2.5rem;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.45);
}

.services-block h2 {
  margin-top: 0;
}

.services-block p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.services-block ul {
  margin: 1.25rem 0 0;
  padding-left: 1.25rem;
  color: rgba(255, 255, 255, 0.75);
  display: grid;
  gap: 0.35rem;
}

.contact-gallery-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(420px, 1.2fr);
  grid-template-areas:
    "contact gallery"
    "services gallery";
  gap: 1.5rem;
  align-items: stretch;
}

.contact-panel,
.gallery-panel,
.services-panel {
  background: rgba(15, 15, 18, 0.95);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.75rem;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.45);
}

.contact-panel h2,
.gallery-panel h2 {
  margin-top: 0;
  font-size: 2rem;
}

.contact-icons {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  margin: 1rem 0 0.9rem;
}

.contact-icon {
  flex: 1;
  min-width: 90px;
  border-radius: 16px;
  background: #fff;
  border: none;
  color: var(--charcoal);
  font-weight: 600;
  padding: 0.7rem 0.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-decoration: none;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.contact-icon img {
  width: 100px;
}

.contact-lead {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.3rem;
}

.contact-note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.gallery-panel__header {
  margin-bottom: 1rem;
  text-align: center;
}

.gallery-slider {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.45);
  background: rgba(20, 20, 24, 0.95);
}

.gallery-slider .slide {
  display: none;
  width: 100%;
  height: 450px;
  text-align: center;
  padding: 1.25rem;
}

.gallery-slider .slide.active {
  display: block;
  animation: slideFade 0.6s ease;
}

.gallery-slider img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}

@keyframes slideFade {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.45);
}

.gallery-arrow.prev {
  left: 1rem;
}

.gallery-arrow.next {
  right: 1rem;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.gallery-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.gallery-dots .dot.active {
  background: var(--red);
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  margin-bottom: 1.5rem;
}

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

.service-card,
.gallery-card {
  background: rgba(20, 20, 24, 0.9);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.35);
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.gallery-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.75rem;
}

.gallery-card figcaption {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.contact-card {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(9, 9, 11, 0.85);
  padding: 1.25rem;
  text-align: center;
}

.contact-card img {
  width: 48px;
  margin-bottom: 0.5rem;
}

.contact-card a {
  color: var(--paper);
  font-weight: 600;
}

.footer {
  padding: 2rem 0 3rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer a {
  color: var(--red);
  text-decoration: none;
}

@media (max-width: 1024px) {
  .hero__logo--desktop {
    opacity: 0;
    pointer-events: none;
  }

  .hero__logo--mobile {
    display: block;
    padding: 0;
    width: 200px;
    margin: 0 auto 0.5rem;
    border-radius: 12px;
  }
}

@media (max-width: 960px) {
  .contact-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "gallery"
      "contact"
      "services";
  }

  .contact-icons {
    flex-direction: row;
  }

  .gallery-panel,
  .contact-panel,
  .services-panel {
    margin-bottom: 1rem;
  }

  .gallery-slider .slide {
    height: 340px;
  }
}

@media (max-width: 768px) {
  .hero__content {
    padding: 2.5rem 2rem 2.5rem;
  }

}

@media (max-width: 480px) {
  .gallery-slider .slide {
    height: 260px;
    padding: 0.5rem;
  }

  .contact-icons {
    flex-direction: column;
  }

  
}
