.testimonial {
  background: var(--sand);
  padding: 120px 0 130px;
  text-align: center;
}

.testimonial-slider {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}

.testimonial-track {
  position: relative;
  min-height: 200px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
}

.testimonial-quote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(22px, 3vw, 32px);
  max-width: 720px;
  margin: 0 auto 28px;
  line-height: 1.45;
  color: var(--ink);
}

.testimonial-name {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(11, 27, 43, 0.55);
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 48px;
}

.testimonial-prev,
.testimonial-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(11, 27, 43, 0.18);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.testimonial-prev svg,
.testimonial-next svg {
  width: 20px;
  height: 20px;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.testimonial-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(11, 27, 43, 0.2);
  transition: background 0.25s ease, transform 0.25s ease;
  padding: 0;
}

.dot.active {
  background: var(--gold);
  transform: scale(1.25);
}

.cta {
  padding: 100px 0;
  background: linear-gradient(160deg, #10263a 0%, #0B1B2B 100%);
  color: #fff;
  text-align: center;
}

.cta-inner h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 46px);
  margin-bottom: 18px;
}

.cta-inner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  margin: 0 auto 36px;
}

.cta .btn-solid {
  margin-top: 0;
}

.contact {
  padding: 130px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.contact-copy h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 46px);
  margin-bottom: 20px;
}

.contact-copy p {
  font-size: 16px;
  color: rgba(11, 27, 43, 0.68);
  margin-bottom: 40px;
  max-width: 380px;
}

.contact-info li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.contact-info li:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-info span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-form {
  background: #fff;
  padding: 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(11, 27, 43, 0.06);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  font-family: var(--sans);
  font-size: 15px;
  background: transparent;
  resize: vertical;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form button {
  margin-top: 10px;
  background: var(--ink);
  color: #fff;
  padding: 16px;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.25s ease;
}

.contact-form button:hover {
  background: var(--gold);
}

footer {
  background: var(--ink);
  color: rgba(241, 247, 251, 0.7);
  padding: 90px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(241, 247, 251, 0.14);
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-logo {
  height: 90px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  margin-bottom: 18px;
}

footer p {
  font-size: 14px;
  margin-bottom: 8px;
}

footer h4 {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 18px;
}

footer a {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

footer a:hover {
  color: var(--gold-mid);
}

.instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 11px 20px;
  border: 1px solid rgba(241, 247, 251, 0.25);
  border-radius: 6px;
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.instagram-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.instagram-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
}

@media (max-width: 480px) {
  .wrap {
    padding: 0 20px;
  }

  .contact-form {
    padding: 28px 24px;
  }
}

.map-section {
  padding: 0 0 130px;
}

.map-frame {
  width: 100%;
  height: 420px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(11, 27, 43, 0.1);
  border: 1px solid rgba(11, 27, 43, 0.06);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-note {
  text-align: center;
  margin-top: 22px;
  font-size: 14px;
  color: rgba(11, 27, 43, 0.55);
  letter-spacing: 0.04em;
}

@media (max-width: 760px) {
  .map-frame {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .map-frame {
    height: 280px;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(3, 8, 14, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  padding: 40px;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 1100px;
  max-height: 88vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.94);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.lightbox.open .lightbox-content img {
  transform: scale(1);
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 48px;
  height: 48px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.25s ease;
  z-index: 2;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lightbox-close svg {
  width: 22px;
  height: 22px;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
  z-index: 2;
}

.lightbox-prev {
  left: 28px;
}

.lightbox-next {
  right: 28px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lightbox-prev svg,
.lightbox-next svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 700px) {
  .lightbox {
    padding: 20px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 42px;
    height: 42px;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }

  .lightbox-close {
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
  }
}