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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', Arial, Helvetica, sans-serif;
  background: #0b0b0b;
  color: #f5f1e8;
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: rgba(11, 11, 11, 0.65);
  backdrop-filter: blur(12px);
}

.logo {
  color: #f5f1e8;
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.main-nav {
  display: flex;
  gap: 32px;
}

.main-nav a {
  color: #f5f1e8;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.75;
  transition: 0.3s;
}

.main-nav a:hover {
  opacity: 1;
  color: #c9a46a;
}

/* Hero */

.hero {
  min-height: 100vh;
  padding: 160px 48px 80px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.85)),
    url("images/hero.jpg");
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 780px;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c9a46a;
  margin-bottom: 24px;
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 32px;
  font-weight: 600;
}

.hero-text {
  max-width: 560px;
  font-size: 20px;
  line-height: 1.6;
  color: rgba(245, 241, 232, 0.78);
  margin-bottom: 40px;
  font-weight: 300;
}

.button {
  display: inline-block;
  padding: 16px 28px;
  border: 1px solid #c9a46a;
  color: #f5f1e8;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  transition: 0.3s;
}

.button:hover {
  background: #c9a46a;
  color: #0b0b0b;
}

/* Portfolio */

.portfolio {
  padding: 120px 48px;
  background: #111111;
}

.section-title {
  margin-bottom: 64px;
}

.section-title p {
  color: #c9a46a;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  margin-bottom: 12px;
  font-weight: 500;
}

.section-title h2 {
  font-size: clamp(32px, 5vw, 64px);
  letter-spacing: -2px;
  font-weight: 600;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.portfolio-item {
  overflow: hidden;
  background: #1a1a1a;
  min-height: 420px;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

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

/* About */

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  background: #0b0b0b;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-content {
  padding: 120px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content h2 {
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 32px;
  font-weight: 600;
}

.about-content p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(245, 241, 232, 0.78);
  margin-bottom: 20px;
  font-weight: 300;
}

/* Services */

.services {
  padding: 120px 48px;
  background: #111111;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
}

.service-card {
  padding: 48px;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.3s ease;
  min-height: 280px;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #c9a46a;
}

.service-card h3 {
  font-size: 28px;
  margin-bottom: 20px;
  letter-spacing: -1px;
  font-weight: 500;
}

.service-card p {
  line-height: 1.7;
  color: rgba(245,241,232,0.72);
  font-weight: 300;
}

/* Contact */

.contact {
  min-height: 70vh;
  padding: 120px 48px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.9)),
    url("images/contact.jpg");
  background-size: cover;
  background-position: center;
}

.contact-content {
  max-width: 780px;
}

.contact-content h2 {
  font-size: clamp(38px, 6vw, 82px);
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 32px;
  font-weight: 600;
}

.contact-content p {
  max-width: 560px;
  font-size: 19px;
  line-height: 1.7;
  color: rgba(245,241,232,0.78);
  margin-bottom: 40px;
  font-weight: 300;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-links a {
  color: #f5f1e8;
  text-decoration: none;
  border-bottom: 1px solid #c9a46a;
  padding-bottom: 6px;
  transition: 0.3s;
}

.contact-links a:hover {
  color: #c9a46a;
}

/* Footer */

.footer {
  padding: 40px 48px;
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(245,241,232,0.65);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: rgba(245,241,232,0.65);
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #c9a46a;
}

/* Scroll Animation */

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

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

/* Mobile */

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

@media (max-width: 768px) {
  .site-header {
    padding: 0 24px;
  }

  .main-nav {
    display: none;
  }

  .hero {
    padding: 140px 24px 64px;
  }

  .hero h1 {
    letter-spacing: -1.5px;
  }

  .portfolio {
    padding: 80px 24px;
  }

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

  .portfolio-item {
    min-height: 360px;
  }

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

  .about-content {
    padding: 80px 24px;
  }

  .about-image {
    min-height: 420px;
  }

  .services {
    padding: 80px 24px;
  }

  .contact {
    padding: 90px 24px;
  }

  .contact-content h2 {
    letter-spacing: -1.5px;
  }

  .footer {
    padding: 32px 24px;
    flex-direction: column;
    gap: 20px;
  }
}

/* Mobile Menu */

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 300;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: #f5f1e8;
  margin: 7px auto;
  transition: 0.3s ease;
}

.menu-toggle.active span:first-child {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:last-child {
  transform: rotate(-45deg) translate(0px, 0px);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.96);
  backdrop-filter: blur(18px);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s ease;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  color: #f5f1e8;
  text-decoration: none;
  font-size: 34px;
  letter-spacing: -1px;
  font-weight: 500;
  transition: 0.3s;
}

.mobile-menu a:hover {
  color: #c9a46a;
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
  }
}

/* Portfolio Button */

.portfolio-button {
  margin-top: 48px;
}

/* Gallery Page */

.gallery-hero {
  min-height: 70vh;
  padding: 160px 48px 80px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.9)),
    url("images/hero.jpg");
  background-size: cover;
  background-position: center;
}

.gallery-hero-content {
  max-width: 820px;
}

.gallery-hero h1 {
  font-size: clamp(46px, 8vw, 100px);
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 32px;
  font-weight: 600;
}

.gallery-hero p {
  max-width: 620px;
  font-size: 20px;
  line-height: 1.6;
  color: rgba(245,241,232,0.78);
}

.gallery-page {
  padding: 100px 48px 120px;
  background: #111111;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.filter-btn {
  padding: 12px 22px;
  border: 1px solid rgba(245,241,232,0.22);
  background: transparent;
  color: #f5f1e8;
  font-family: inherit;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background: #c9a46a;
  border-color: #c9a46a;
  color: #0b0b0b;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-item {
  height: 420px;
  overflow: hidden;
  background: #1a1a1a;
  cursor: pointer;
  transition: 0.4s ease;
}

.gallery-item.hide {
  display: none;
}

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

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

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  pointer-events: none;
  transition: 0.35s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
}

.lightbox-close {
  position: fixed;
  top: 28px;
  right: 34px;
  background: transparent;
  border: none;
  color: #f5f1e8;
  font-size: 48px;
  cursor: pointer;
  line-height: 1;
}

/* Gallery Mobile */

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

@media (max-width: 768px) {
  .gallery-hero {
    padding: 140px 24px 70px;
  }

  .gallery-hero h1 {
    letter-spacing: -1.5px;
  }

  .gallery-page {
    padding: 80px 24px;
  }

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

  .gallery-item {
    height: 460px;
  }

  .filter-buttons {
    gap: 10px;
  }

  .filter-btn {
    padding: 11px 16px;
    font-size: 12px;
  }

  .lightbox {
    padding: 18px;
  }

  .lightbox-close {
    top: 20px;
    right: 24px;
    font-size: 42px;
  }
}

/* Legal Pages */

.legal-page {
  min-height: 100vh;
  padding: 180px 48px 120px;
  background: #0b0b0b;
}

.legal-content {
  max-width: 900px;
}

.legal-content h1 {
  font-size: clamp(42px, 7vw, 82px);
  margin-bottom: 48px;
  letter-spacing: -3px;
}

.legal-content h2 {
  font-size: 24px;
  margin-top: 48px;
  margin-bottom: 20px;
  color: #f5f1e8;
}

.legal-content p {
  line-height: 1.9;
  color: rgba(245,241,232,0.78);
  margin-bottom: 18px;
}

.legal-content a {
  color: #c9a46a;
  text-decoration: none;
}

@media (max-width: 768px) {

  .legal-page {
    padding: 140px 24px 80px;
  }

}

/* Kids Info Panel */

.kids-info {
  display: none;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  background: #0b0b0b;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 48px;
}

.kids-info.active {
  display: grid;
}

.kids-info-image {
  min-height: 460px;
  background: #1a1a1a;
  overflow: hidden;
}

.kids-info-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kids-info-text h2 {
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 32px;
}

.kids-info-text p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(245,241,232,0.78);
  margin-bottom: 20px;
}

.gallery-grid.hide {
  display: none;
}

@media (max-width: 900px) {
  .kids-info {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .kids-info-image {
    min-height: 360px;
  }
}

/* FAQ Hero */

.faq-hero {
  min-height: 70vh;
  padding: 160px 48px 80px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.9)),
    url("images/faq.jpg");
  background-size: cover;
  background-position: center;
}

.faq-hero-content {
  max-width: 820px;
}

.faq-hero h1 {
  font-size: clamp(46px, 8vw, 100px);
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 32px;
  font-weight: 600;
}

.faq-hero p {
  max-width: 620px;
  font-size: 20px;
  line-height: 1.6;
  color: rgba(245,241,232,0.78);
}

/* FAQ Page */

.faq-page {
  min-height: 100vh;
  padding: 100px 48px 120px;
  background: #0b0b0b;
}

.faq-header {
  max-width: 900px;
  margin-bottom: 72px;
}

.faq-header h2 {
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 32px;
  font-weight: 600;
}

.faq-list {
  max-width: 1000px;
}

.faq-item {
  border-top: 1px solid rgba(255,255,255,0.12);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.faq-question {
  width: 100%;
  padding: 28px 0;
  background: transparent;
  border: none;
  color: #f5f1e8;
  font-family: inherit;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 500;
  text-align: left;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.faq-arrow {
  font-size: 34px;
  color: #c9a46a;
  line-height: 1;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.faq-answer p {
  max-width: 820px;
  padding-bottom: 28px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(245,241,232,0.76);
}

.faq-answer a {
  color: #c9a46a;
  text-decoration: none;
}

@media (max-width: 768px) {
  .faq-hero {
    padding: 140px 24px 70px;
  }

  .faq-hero h1 {
    letter-spacing: -1.5px;
  }

  .faq-page {
    padding: 80px 24px;
  }

  .faq-header {
    margin-bottom: 48px;
  }

  .faq-question {
    padding: 24px 0;
  }

  .faq-answer p {
    font-size: 17px;
  }
}