:root {
  --black: #111111;
  --gold: #c9a85a;
  --dark-gold: #72551b;
  --cream: #f7f1e7;
  --beige: #efe4d2;
  --white: #ffffff;
  --grey: #666666;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--black);
  background: var(--cream);
}

img {
  max-width: 100%;
  display: block;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  background: rgba(17, 17, 17, 0.95);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 0 0 8px 8px;
  z-index: 1200;
  transition: top 0.25s ease;
}

.skip-link:focus-visible {
  top: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  padding: 0 6%;
  background: rgba(17, 17, 17, 0.88);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-bottom: 1px solid rgba(201, 168, 90, 0.25);
}

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

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

.nav a {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}

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

.hero {
  min-height: 100vh;
  background: image-set(
      url("images/optimized/hero-bg.webp") type("image/webp"),
      url("images/optimized/hero-bg.jpg") type("image/jpeg")
    )
    center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 60px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.6));
}

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

.hero-logo {
  width: 150px;
  height: auto;
  margin: 0 auto 28px;
}

.hero h1 {
  font-family: "Cinzel", serif;
  font-size: clamp(42px, 7vw, 86px);
  font-weight: 500;
  letter-spacing: 5px;
  color: var(--gold);
  margin-bottom: 18px;
}

.hero p {
  font-size: clamp(16px, 2vw, 24px);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 38px;
}

.btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: 0.3s;
}

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

.btn-primary:hover {
  background: var(--dark-gold);
  color: var(--white);
  transform: translateY(-3px);
}

.section-padding {
  padding: 95px 6%;
}

.section-title {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-title span,
.about-content span {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 600;
}

.section-title span {
  color: var(--dark-gold);
}

.about-content span {
  color: var(--gold);
}

.section-title h2,
.about-content h2,
.contact-box h2 {
  font-family: "Cinzel", serif;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 500;
  margin: 15px 0;
}

.section-title p,
.about-content p,
.contact-box p {
  color: var(--grey);
  line-height: 1.8;
}

.experiences {
  background: var(--cream);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 350px));
    justify-content: center;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  background: var(--white);
  border: 1px solid rgba(201, 168, 90, 0.25);
  border-radius: 24px;
  padding: 32px;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.gallery-item h3 {
  font-family: "Cinzel", serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

.gallery-images {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.gallery-images img {
  width: 100%;
  height: 180px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.25s ease;
}

.gallery-images img:nth-child(n + 5) {
  display: none;
}

.gallery-images img:hover {
  transform: scale(1.03);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 2000;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-panel {
  width: min(760px, 100%);
  max-height: calc(100vh - 80px);
  background: var(--cream);
  border-radius: 22px;
  padding: 34px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.lightbox-title {
  font-family: "Cinzel", serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--black);
}

.lightbox-viewer {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 18px;
}

.lightbox-image {
  width: 100%;
  max-height: calc(100vh - 250px);
  object-fit: contain;
  border-radius: 16px;
  background: #ffffff;
}

.lightbox-nav {
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  cursor: pointer;
  font-size: 38px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.lightbox-nav:hover {
  background: var(--dark-gold);
  color: var(--white);
  transform: translateY(-2px);
}

.lightbox-counter {
  margin-top: 18px;
  color: var(--grey);
  font-size: 14px;
  font-weight: 600;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.order-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    max-width: 1500px;
    margin: 0 auto;
    align-items: stretch;
}

.experience-card,
.order-step {
    background: var(--white);
    border: 1px solid rgba(201, 168, 90, 0.25);
    border-radius: 24px;
    padding: 40px 28px;
    text-align: center;
    min-height: 320px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.experience-card:hover,
.order-step:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}

.experience-card img {
  width: 170px;
  height: 170px;
  object-fit: contain;
  margin: 0 auto 24px;
}

.experience-card h3,
.order-step h3 {
  font-family: "Cinzel", serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.experience-card p,
.order-step p {
  color: var(--grey);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.experience-card span {
  color: var(--dark-gold);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.how-to-order {
  background: var(--cream);
}

.order-step {
  background: var(--cream);
  padding: 40px 28px;
}

.order-icon {
  width: 85px;
  height: 85px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-icon svg {
  width: 36px;
  height: 36px;
  color: #fff;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about {
  background: var(--black);
  color: var(--white);
}

.about-content {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  color: #d6d6d6;
}

.contact {
  background: linear-gradient(135deg, var(--beige), var(--cream));
}

.contact-box {
  max-width: 850px;
  margin: 0 auto;
  background: var(--white);
  text-align: center;
  padding: 70px 40px;
  border-radius: 28px;
  border: 1px solid rgba(201, 168, 90, 0.3);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.08);
}

.contact-box p {
  margin-bottom: 30px;
}

.footer {
  background: #111111;
  color: var(--white);
  padding: 55px 6% 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1.5fr;
  gap: 40px;
  align-items: center;
}

.footer-logo {
  width: 120px;
  height: auto;
}

.footer h3 {
  font-family: "Cinzel", serif;
  color: var(--gold);
  margin-bottom: 12px;
  font-size: 20px;
}

.footer p {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 35px;
  padding-top: 22px;
  text-align: center;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  background: #25d366;
  color: white;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
}

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

@media (max-width: 768px) {
  .site-header {
    height: auto;
    padding: 15px 5%;
    flex-direction: column;
    gap: 12px;
  }

  .logo img {
    width: 58px;
  }

  .nav {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav a {
    font-size: 13px;
  }

  .hero {
    padding-top: 150px;
  }

  .hero-logo {
    width: 120px;
  }

  .hero p {
    letter-spacing: 2px;
  }

  .experience-grid,
  .order-grid {
    grid-template-columns: 1fr;
  }

  .section-padding {
    padding: 70px 5%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }

  .lightbox {
    padding: 16px;
  }

  .lightbox-panel {
    max-height: calc(100vh - 32px);
    padding: 24px 18px;
  }

  .lightbox-viewer {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 10px;
  }

  .lightbox-image {
    max-height: calc(100vh - 230px);
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 32px;
  }
}
