.testimonial {
  background: var(--sand);
  padding: 130px 0 140px;
  text-align: center;
}

.testimonial-toggle {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 32px auto 48px;
  background: rgba(28,26,22,0.05);
  padding: 5px;
  border-radius: 50px;
  width: fit-content;
}

.toggle-btn {
  padding: 11px 26px;
  border-radius: 40px;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(28,26,22,0.5);
  background: transparent;
  transition: all 0.3s ease;
  font-weight: 500;
}

.toggle-btn.active {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 4px 14px rgba(28,26,22,0.12);
}

.toggle-btn:hover:not(.active) {
  color: var(--ink);
}

.testimonial-mode {
  display: none;
}

.testimonial-mode.active {
  display: block;
}

.testimonial-slider {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}

.testimonial-track {
  position: relative;
  min-height: 190px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s 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(21px, 2.8vw, 30px);
  max-width: 700px;
  margin: 0 auto 24px;
  line-height: 1.45;
  color: var(--ink);
}

.testimonial-name {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(28,26,22,0.5);
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 44px;
}

.testimonial-prev,
.testimonial-next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(28,26,22,0.15);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.testimonial-prev svg,
.testimonial-next svg {
  width: 18px;
  height: 18px;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.testimonial-dots {
  display: flex;
  gap: 9px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(28,26,22,0.18);
  transition: all 0.25s ease;
  padding: 0;
}

.dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.video-slider {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

.video-track {
  position: relative;
  min-height: 360px;
}

.video-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
  display: flex;
  justify-content: center;
}

.video-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
}

.video-card {
  width: 100%;
  max-width: 400px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(28,26,22,0.07);
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 56px rgba(28,26,22,0.11);
}

.video-thumb {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: #1C1A16;
}

.video-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.video-card:hover .video-thumb-img {
  transform: scale(1.06);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.25) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.video-play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.35s ease;
  box-shadow: 0 8px 22px rgba(0,0,0,0.22);
}

.video-card:hover .video-play {
  transform: scale(1.1);
  background: #fff;
  color: var(--ink);
}

.video-play svg {
  width: 26px;
  height: 26px;
  margin-left: 3px;
}

.video-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.video-info {
  padding: 26px 24px 30px;
  text-align: center;
}

.video-quote {
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 12px;
}

.video-name {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(28,26,22,0.45);
}

.video-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 36px;
}

.video-prev,
.video-next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(28,26,22,0.15);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.video-prev svg,
.video-next svg {
  width: 18px;
  height: 18px;
}

.video-prev:hover,
.video-next:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.video-dots {
  display: flex;
  gap: 9px;
}

.vdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(28,26,22,0.18);
  transition: all 0.25s ease;
  padding: 0;
}

.vdot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 4000;
  background: rgba(8,6,4,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 40px;
}

.video-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.video-lightbox-content {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 9/16;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  transform: scale(0.94);
  opacity: 0;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.video-lightbox.open .video-lightbox-content {
  transform: scale(1);
  opacity: 1;
}

.video-lightbox-content iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-lightbox-close {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 46px;
  height: 46px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: background 0.3s ease;
  z-index: 2;
}

.video-lightbox-close:hover {
  background: rgba(255,255,255,0.22);
}

.video-lightbox-close svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 600px) {
  .video-lightbox { padding: 20px; }
  .video-lightbox-content { max-width: 100%; }
  .video-lightbox-close { top: 16px; right: 16px; width: 40px; height: 40px; }
  .toggle-btn { padding: 10px 18px; font-size: 11.5px; }
}

.cta {
  padding: 110px 0;
  background: linear-gradient(160deg, #2a241c 0%, #1C1A16 100%);
  color: #fff;
  text-align: center;
}

.cta-box h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(34px, 4.2vw, 48px);
  margin-bottom: 18px;
}

.cta-box p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 460px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.contact {
  padding: 140px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}

@media (max-width: 980px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.contact-info-side h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(34px, 4.2vw, 48px);
  margin-bottom: 20px;
}

.contact-info-side > p {
  font-size: 15.5px;
  color: rgba(28,26,22,0.65);
  margin-bottom: 40px;
  max-width: 360px;
  line-height: 1.7;
}

.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.contact-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-list span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-form {
  background: #fff;
  padding: 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 6px;
  box-shadow: 0 22px 50px rgba(28,26,22,0.06);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
  font-family: var(--sans);
  font-size: 15px;
  background: transparent;
  resize: vertical;
  color: var(--ink);
  transition: border-color 0.3s ease;
}

.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: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

footer {
  background: var(--ink);
  color: rgba(247,244,238,0.68);
  padding: 90px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(247,244,238,0.1);
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-logo {
  height: 84px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  margin-bottom: 18px;
}

footer p {
  font-size: 14px;
  margin-bottom: 7px;
}

footer h4 {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 18px;
}

footer a {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.25s ease;
}

footer a:hover {
  color: var(--gold);
}

.instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 11px 20px;
  border: 1px solid rgba(247,244,238,0.2);
  border-radius: 6px;
  color: var(--cream);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.instagram-btn svg {
  width: 17px;
  height: 17px;
}

.instagram-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
}

@media (max-width: 480px) {
  .wrap { padding: 0 20px; }
  .contact-form { padding: 30px 22px; }
}

.map-section {
  padding: 0 0 140px;
}

.map-frame {
  width: 100%;
  height: 420px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(28,26,22,0.09);
  border: 1px solid rgba(28,26,22,0.04);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-note {
  text-align: center;
  margin-top: 22px;
  font-size: 13.5px;
  color: rgba(28,26,22,0.5);
  letter-spacing: 0.04em;
}

@media (max-width: 760px) {
  .map-frame { height: 320px; }
}

@media (max-width: 480px) {
  .map-frame { height: 270px; }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(8,6,4,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s 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.45s ease, opacity 0.45s ease;
}

.lightbox.open .lightbox-content img {
  transform: scale(1);
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 46px;
  height: 46px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: background 0.3s ease;
  z-index: 2;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.22);
}

.lightbox-close svg {
  width: 20px;
  height: 20px;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s 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: 22px;
  height: 22px;
}

@media (max-width: 700px) {
  .lightbox { padding: 20px; }
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
  }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  .lightbox-close {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
  }
}