:root {
  --black: #080707;
  --ink: #171111;
  --charcoal: #22191a;
  --white: #fffaf7;
  --muted: #d9cdc6;
  --gold: #d8ad58;
  --gold-soft: #f2d390;
  --red: #9f2734;
  --red-soft: #d86a74;
  --line: rgba(255, 250, 247, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius: 8px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: var(--font-body);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(216, 173, 88, 0.16);
  background: rgba(8, 7, 7, 0.82);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 173, 88, 0.7);
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-weight: 800;
  background: linear-gradient(135deg, rgba(216, 173, 88, 0.2), rgba(159, 39, 52, 0.12));
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0;
}

.brand-text span {
  color: var(--gold-soft);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  position: relative;
  padding: 9px 12px;
  color: rgba(255, 250, 247, 0.82);
  font-size: 0.92rem;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

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

.btn-primary {
  color: #1d1110;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 14px 36px rgba(216, 173, 88, 0.22);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 250, 247, 0.22);
  background: rgba(255, 250, 247, 0.06);
}

.btn-secondary:hover {
  border-color: rgba(216, 173, 88, 0.55);
}

.btn-red {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-soft));
  box-shadow: 0 14px 34px rgba(159, 39, 52, 0.25);
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 7, 7, 0.9), rgba(8, 7, 7, 0.56), rgba(8, 7, 7, 0.14)),
    var(--hero-image) center/cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(0deg, var(--black), transparent);
}

.hero-inner,
.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 760px;
  padding: 96px 0 120px;
}

.eyebrow,
.offer-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
}

.offer-pill {
  margin-bottom: 20px;
  padding: 10px 14px;
  border: 1px solid rgba(216, 173, 88, 0.34);
  border-radius: 999px;
  color: var(--white);
  text-transform: none;
  letter-spacing: 0;
  background: rgba(159, 39, 52, 0.34);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 840px;
  font-size: clamp(3rem, 8vw, 6.6rem);
}

h2 {
  font-size: clamp(2.15rem, 5vw, 4.15rem);
}

h3 {
  font-size: clamp(1.28rem, 2.5vw, 1.7rem);
}

p {
  margin: 0;
  color: rgba(255, 250, 247, 0.76);
}

.lead {
  max-width: 760px;
  margin-top: 18px;
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  color: rgba(255, 250, 247, 0.88);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section.alt {
  background: #100c0d;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
}

.section-head p {
  max-width: 560px;
}

.stats-grid,
.services-grid,
.pricing-grid,
.testimonial-grid,
.feature-grid,
.faq-grid,
.contact-grid,
.policy-grid {
  display: grid;
  gap: 18px;
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  padding: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 250, 247, 0.065), rgba(255, 250, 247, 0.025));
}

.stat strong {
  display: block;
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1;
}

.stat span {
  color: rgba(255, 250, 247, 0.74);
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.price-card,
.testimonial,
.feature-card,
.faq-item,
.contact-panel,
.policy-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 250, 247, 0.075), rgba(255, 250, 247, 0.026));
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.16);
}

.service-card {
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 173, 88, 0.5);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.service-card:hover img {
  transform: scale(1.06);
}

.card-body {
  padding: 22px;
}

.card-body p,
.price-card p,
.testimonial p,
.feature-card p,
.faq-item p,
.policy-card p,
.contact-panel p {
  margin-top: 10px;
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.slider {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 247, 0.04);
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  flex: 0 0 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: min(68vh, 620px);
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: min(520px, calc(100% - 48px));
  padding: 18px;
  border: 1px solid rgba(255, 250, 247, 0.16);
  border-radius: var(--radius);
  background: rgba(8, 7, 7, 0.72);
  backdrop-filter: blur(12px);
}

.slider-controls {
  position: absolute;
  right: 18px;
  top: 18px;
  display: flex;
  gap: 8px;
}

.slider-btn {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 250, 247, 0.22);
  border-radius: 50%;
  color: var(--white);
  background: rgba(8, 7, 7, 0.66);
  cursor: pointer;
}

.testimonial {
  padding: 24px;
}

.stars {
  color: var(--gold-soft);
  margin-bottom: 14px;
  letter-spacing: 0.08em;
}

.client {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  color: var(--white);
  font-weight: 800;
}

.client img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.cta-band {
  padding: 72px 0;
  background:
    linear-gradient(90deg, rgba(8, 7, 7, 0.92), rgba(159, 39, 52, 0.58)),
    url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
}

.cta-box {
  max-width: 800px;
}

.page-hero {
  padding: 112px 0 76px;
  background:
    linear-gradient(90deg, rgba(8, 7, 7, 0.92), rgba(8, 7, 7, 0.55)),
    var(--page-image) center/cover no-repeat;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  padding: 26px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #1d1110;
  background: var(--gold);
  border-radius: 50%;
  font-weight: 900;
}

.story-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.story-image {
  min-height: 560px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.price-card {
  padding: 30px;
  position: relative;
}

.price-card.featured {
  border-color: rgba(216, 173, 88, 0.62);
  transform: translateY(-10px);
}

.price {
  display: block;
  margin: 18px 0;
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 2.45rem;
  line-height: 1;
}

.price-card ul,
.policy-card ul {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
  color: rgba(255, 250, 247, 0.78);
}

.price-card li,
.policy-card li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 250, 247, 0.08);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-btn {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 250, 247, 0.05);
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  color: #1d1110;
  border-color: var(--gold);
  background: var(--gold);
}

.gallery-grid {
  columns: 3 280px;
  column-gap: 18px;
}

.gallery-item {
  break-inside: avoid;
  margin: 0 0 18px;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 250, 247, 0.05);
  cursor: zoom-in;
}

.gallery-item[hidden] {
  display: none;
}

.gallery-item img {
  width: 100%;
  transition: transform 0.45s ease, filter 0.35s ease;
}

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

.gallery-item span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(8, 7, 7, 0.68);
  font-size: 0.8rem;
  font-weight: 800;
}

.video-badge::after {
  content: "Play";
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #1d1110;
  background: rgba(242, 211, 144, 0.94);
  font-weight: 900;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.9);
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-height: 86vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
}

.promo-popup.open {
  display: flex;
}

.promo-popup-link {
  display: block;
  width: min(100%, 980px);
  height: min(100%, 92vh);
}

.promo-popup-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 26px 70px rgba(0, 0, 0, 0.6));
}

.promo-popup-close {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 250, 247, 0.24);
  border-radius: 50%;
  color: var(--white);
  background: rgba(8, 7, 7, 0.72);
  cursor: pointer;
  font-size: 1.2rem;
}

.promo-whatsapp {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  background: #25d366;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.28);
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
}

.contact-panel {
  padding: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--gold-soft);
  font-size: 0.84rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 250, 247, 0.16);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--white);
  background: rgba(255, 250, 247, 0.06);
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-list a,
.contact-list span {
  display: block;
  padding: 14px;
  border: 1px solid rgba(255, 250, 247, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 250, 247, 0.04);
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-icons a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 173, 88, 0.32);
  border-radius: 50%;
  color: var(--gold-soft);
  background: rgba(255, 250, 247, 0.055);
  font-weight: 900;
  transition: transform 0.25s ease, background 0.25s ease;
}

.social-icons a:hover {
  transform: translateY(-3px);
  color: #1d1110;
  background: var(--gold);
}

.map {
  width: 100%;
  height: 360px;
  border: 0;
  filter: grayscale(0.7) contrast(1.05);
}

.instagram-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.instagram-strip img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: opacity 0.25s ease;
}

.instagram-strip img:hover {
  opacity: 0.82;
}

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

.faq-item {
  padding: 22px;
}

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

.policy-card {
  padding: 26px;
}

.site-footer {
  border-top: 1px solid rgba(216, 173, 88, 0.16);
  background: #070606;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 50px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--gold-soft);
}

.copyright {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 250, 247, 0.1);
  color: rgba(255, 250, 247, 0.66);
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.3);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    inset: 74px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: rgba(8, 7, 7, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav-actions .btn {
    display: none;
  }

  .stats-grid,
  .services-grid,
  .testimonial-grid,
  .feature-grid,
  .pricing-grid,
  .faq-grid,
  .policy-grid,
  .contact-grid,
  .story-layout,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story-layout,
  .contact-grid {
    gap: 28px;
  }

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

  .price-card.featured {
    transform: none;
  }

  .instagram-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 680px) {
  .nav {
    width: min(100% - 24px, 1180px);
  }

  .brand-text strong {
    font-size: 1.1rem;
  }

  .brand-text span {
    font-size: 0.62rem;
  }

  .hero-inner,
  .section-inner,
  .footer-inner {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(8, 7, 7, 0.5), rgba(8, 7, 7, 0.96)),
      var(--hero-image) center/cover no-repeat;
  }

  .hero-content {
    padding: 72px 0 96px;
  }

  .section {
    padding: 68px 0;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 14px;
  }

  .stats-grid,
  .services-grid,
  .testimonial-grid,
  .feature-grid,
  .pricing-grid,
  .faq-grid,
  .policy-grid,
  .contact-grid,
  .story-layout,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .story-image {
    min-height: 330px;
  }

  .service-card img {
    height: 210px;
  }

  .slide img {
    height: 420px;
  }

  .slide-caption {
    position: static;
    max-width: none;
    border-width: 1px 0 0;
    border-radius: 0;
  }

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

  .instagram-strip img {
    height: 145px;
  }

  .map {
    height: 300px;
  }
}
